rt mayasolovely as a woman you shouldnt complain about cleaning up your house amp as a man you should always take the trash out
\n",
- "
\n",
- "
\n",
- "
1
\n",
- "
1
\n",
- "
3
\n",
- "
0
\n",
- "
3
\n",
- "
0
\n",
- "
1
\n",
- "
rt boy dats coldtyga dwn bad for cuffin dat hoe in the place
\n",
- "
\n",
- "
\n",
- "
2
\n",
- "
2
\n",
- "
3
\n",
- "
0
\n",
- "
3
\n",
- "
0
\n",
- "
1
\n",
- "
rt urkindofbrand dawg rt you ever fuck a bitch and she start to cry you be confused as shit
\n",
- "
\n",
- "
\n",
- "
3
\n",
- "
3
\n",
- "
3
\n",
- "
0
\n",
- "
2
\n",
- "
1
\n",
- "
1
\n",
- "
rt cganderson vivabased she look like a tranny
\n",
- "
\n",
- "
\n",
- "
4
\n",
- "
4
\n",
- "
6
\n",
- "
0
\n",
- "
6
\n",
- "
0
\n",
- "
1
\n",
- "
rt shenikaroberts the shit you hear about me might be true or it might be faker than the bitch who told it to ya
\n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " Unnamed: 0 count hate_speech offensive_language neither class \\\n",
- "0 0 3 0 0 3 2 \n",
- "1 1 3 0 3 0 1 \n",
- "2 2 3 0 3 0 1 \n",
- "3 3 3 0 2 1 1 \n",
- "4 4 6 0 6 0 1 \n",
- "\n",
- " tweet \n",
- "0 rt mayasolovely as a woman you shouldnt complain about cleaning up your house amp as a man you should always take the trash out \n",
- "1 rt boy dats coldtyga dwn bad for cuffin dat hoe in the place \n",
- "2 rt urkindofbrand dawg rt you ever fuck a bitch and she start to cry you be confused as shit \n",
- "3 rt cganderson vivabased she look like a tranny \n",
- "4 rt shenikaroberts the shit you hear about me might be true or it might be faker than the bitch who told it to ya "
- ]
- },
- "execution_count": 19,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "df.head()"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 20,
- "id": "365b2881-b0ef-4e5b-96e3-80d60db8ffc3",
- "metadata": {},
- "outputs": [],
- "source": [
- "#dividing into classes\n",
- "\n",
- "\n",
- "nRowsRead = 100 # specify 'None' if want to read whole file\n",
- "# labeled_data.csv may have more rows in reality, but we are only loading/previewing the first 1000 rows\n",
- "df0 = df\n",
- "\n",
- "\n",
- "c=df0['class']\n",
- "df0.rename(columns={'tweet' : 'text',\n",
- " 'class' : 'category'}, \n",
- " inplace=True)\n",
- "a=df0['text']\n",
- "b=df0['category'].map({0: 'hate_speech', 1: 'offensive_language',2: 'neither'})\n",
- "\n",
- "df= pd.concat([a,b,c], axis=1)\n",
- "df.rename(columns={'class' : 'label'}, \n",
- " inplace=True)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 21,
- "id": "9808f731-04db-4275-b590-6ae2e512d110",
- "metadata": {},
- "outputs": [],
- "source": [
- "X_train_, X_test, y_train_, y_test = train_test_split(\n",
- " df.index.values,\n",
- " df.label.values,\n",
- " test_size=0.20,\n",
- " random_state=42,\n",
- " stratify=df.label.values, \n",
- ")\n",
- "\n",
- "X_train, X_val, y_train, y_val = train_test_split(\n",
- " df.loc[X_train_].index.values,\n",
- " df.loc[X_train_].label.values,\n",
- " test_size=0.20,\n",
- " random_state=42,\n",
- " stratify=df.loc[X_train_].label.values, \n",
- ")\n",
- "\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 22,
- "id": "44579e1b-474f-4eb5-a697-42b920a58c39",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/html": [
- "
\n",
- "\n",
- "
\n",
- " \n",
- "
\n",
- "
\n",
- "
\n",
- "
\n",
- "
text
\n",
- "
\n",
- "
\n",
- "
category
\n",
- "
label
\n",
- "
data_type
\n",
- "
\n",
- "
\n",
- " \n",
- " \n",
- "
\n",
- "
hate_speech
\n",
- "
0
\n",
- "
test
\n",
- "
286
\n",
- "
\n",
- "
\n",
- "
train
\n",
- "
915
\n",
- "
\n",
- "
\n",
- "
val
\n",
- "
229
\n",
- "
\n",
- "
\n",
- "
neither
\n",
- "
2
\n",
- "
test
\n",
- "
833
\n",
- "
\n",
- "
\n",
- "
train
\n",
- "
2664
\n",
- "
\n",
- "
\n",
- "
val
\n",
- "
666
\n",
- "
\n",
- "
\n",
- "
offensive_language
\n",
- "
1
\n",
- "
test
\n",
- "
3838
\n",
- "
\n",
- "
\n",
- "
train
\n",
- "
12281
\n",
- "
\n",
- "
\n",
- "
val
\n",
- "
3071
\n",
- "
\n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- " text\n",
- "category label data_type \n",
- "hate_speech 0 test 286\n",
- " train 915\n",
- " val 229\n",
- "neither 2 test 833\n",
- " train 2664\n",
- " val 666\n",
- "offensive_language 1 test 3838\n",
- " train 12281\n",
- " val 3071"
- ]
- },
- "execution_count": 22,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "df['data_type'] = ['not_set']*df.shape[0]\n",
- "df.loc[X_train, 'data_type'] = 'train'\n",
- "df.loc[X_val, 'data_type'] = 'val'\n",
- "df.loc[X_test, 'data_type'] = 'test'\n",
- "\n",
- "df.groupby(['category', 'label', 'data_type']).count()\n",
- "\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 23,
- "id": "20bf1673-d143-499f-8c94-7ce29b0ea986",
- "metadata": {},
- "outputs": [],
- "source": [
- "df_train = df.loc[df[\"data_type\"]==\"train\"]\n",
- "df_val = df.loc[df[\"data_type\"]==\"val\"]\n",
- "df_test = df.loc[df[\"data_type\"]==\"test\"]\n",
- "\n",
- "train_ds = tf.data.Dataset.from_tensor_slices((df_train.text.values, df_train.label.values))\n",
- "val_ds = tf.data.Dataset.from_tensor_slices((df_val.text.values, df_val.label.values))\n",
- "test_ds = tf.data.Dataset.from_tensor_slices((df_test.text.values, df_test.label.values))\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 24,
- "id": "7028025d-e108-4d33-9560-77d218d43e77",
- "metadata": {},
- "outputs": [
- {
- "data": {
- "text/plain": [
- "<_BatchDataset element_spec=(TensorSpec(shape=(None,), dtype=tf.string, name=None), TensorSpec(shape=(None,), dtype=tf.int64, name=None))>"
- ]
- },
- "execution_count": 24,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
- "source": [
- "train_ds = train_ds.shuffle(len(df_train)).batch(32, drop_remainder=False)\n",
- "train_ds\n",
- "\n",
- "val_ds = val_ds.shuffle(len(df_val)).batch(32, drop_remainder=False)\n",
- "val_ds\n",
- "\n",
- "test_ds = test_ds.shuffle(len(df_test)).batch(32, drop_remainder=False)\n",
- "test_ds\n",
- "\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": 25,
- "id": "d67337dc-5569-453e-9a1f-ee825a61a2a6",
- "metadata": {},
- "outputs": [
- {
- "name": "stdout",
- "output_type": "stream",
- "text": [
- "BERT model selected : https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-4_H-512_A-8/1\n",
- "Preprocess model auto-selected: https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1\n"
- ]
- }
- ],
- "source": [
- "bert_model_name = 'small_bert/bert_en_uncased_L-4_H-512_A-8' \n",
- "#bert_model_name = 'bert_en_uncased_L-12_H-768_A-12'\n",
- "\n",
- "map_name_to_handle = {\n",
- " 'bert_en_uncased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_L-12_H-768_A-12/3',\n",
- " 'bert_en_cased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_cased_L-12_H-768_A-12/3',\n",
- " 'bert_multi_cased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_multi_cased_L-12_H-768_A-12/3',\n",
- " 'small_bert/bert_en_uncased_L-2_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-2_H-128_A-2/1',\n",
- " 'small_bert/bert_en_uncased_L-2_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-2_H-256_A-4/1',\n",
- " 'small_bert/bert_en_uncased_L-2_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-2_H-512_A-8/1',\n",
- " 'small_bert/bert_en_uncased_L-2_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-2_H-768_A-12/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-4_H-128_A-2/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-4_H-256_A-4/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-4_H-512_A-8/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-4_H-768_A-12/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-6_H-128_A-2/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-6_H-256_A-4/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-6_H-512_A-8/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-6_H-768_A-12/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-8_H-128_A-2/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-8_H-256_A-4/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-8_H-512_A-8/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-8_H-768_A-12/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-10_H-128_A-2/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-10_H-256_A-4/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-10_H-512_A-8/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-10_H-768_A-12/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-12_H-128_A-2/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-12_H-256_A-4/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-12_H-512_A-8/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/small_bert/bert_en_uncased_L-12_H-768_A-12/1',\n",
- " 'albert_en_base':\n",
- " 'https://tfhub.dev/tensorflow/albert_en_base/2',\n",
- " 'electra_small':\n",
- " 'https://tfhub.dev/google/electra_small/2',\n",
- " 'electra_base':\n",
- " 'https://tfhub.dev/google/electra_base/2',\n",
- " 'experts_pubmed':\n",
- " 'https://tfhub.dev/google/experts/bert/pubmed/2',\n",
- " 'experts_wiki_books':\n",
- " 'https://tfhub.dev/google/experts/bert/wiki_books/2',\n",
- " 'talking-heads_base':\n",
- " 'https://tfhub.dev/tensorflow/talkheads_ggelu_bert_en_base/1',\n",
- "}\n",
- "\n",
- "map_model_to_preprocess = {\n",
- " 'bert_en_uncased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'bert_en_cased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_cased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-2_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-2_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-2_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-2_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-4_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-6_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-8_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-10_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-128_A-2':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-256_A-4':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-512_A-8':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'small_bert/bert_en_uncased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'bert_multi_cased_L-12_H-768_A-12':\n",
- " 'https://tfhub.dev/tensorflow/bert_multi_cased_preprocess/1',\n",
- " 'albert_en_base':\n",
- " 'https://tfhub.dev/tensorflow/albert_en_preprocess/1',\n",
- " 'electra_small':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'electra_base':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'experts_pubmed':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'experts_wiki_books':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- " 'talking-heads_base':\n",
- " 'https://tfhub.dev/tensorflow/bert_en_uncased_preprocess/1',\n",
- "}\n",
- "\n",
- "tfhub_handle_encoder = map_name_to_handle[bert_model_name]\n",
- "tfhub_handle_preprocess = map_model_to_preprocess[bert_model_name]\n",
- "\n",
- "print(f'BERT model selected : {tfhub_handle_encoder}')\n",
- "print(f'Preprocess model auto-selected: {tfhub_handle_preprocess}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a710e60e-ceb5-4e7d-8905-55a7eb5a5323",
- "metadata": {},
- "outputs": [],
- "source": [
- "bert_preprocess_model = hub.KerasLayer(tfhub_handle_preprocess)"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "8134ef99-b9a0-44f4-a931-c694ffa5634a",
- "metadata": {},
- "outputs": [],
- "source": [
- "for text_batch, label_batch in train_ds.take(1):\n",
- " for i in range(1):\n",
- " tweet = text_batch.numpy()[i]\n",
- " print(f'Tweet: {text_batch.numpy()[i]}')\n",
- " label = label_batch.numpy()[i]\n",
- " print(f'Label : {label}')\n",
- "\n",
- "text_test = ['this is such an amazing movie!']\n",
- "text_test = [tweet]\n",
- "\n",
- "\n",
- "text_preprocessed = bert_preprocess_model(text_test)\n",
- "\n",
- "print(f'Keys : {list(text_preprocessed.keys())}')\n",
- "print(f'Shape : {text_preprocessed[\"input_word_ids\"].shape}')\n",
- "print(f'Word Ids : {text_preprocessed[\"input_word_ids\"][0, :12]}')\n",
- "print(f'Input Mask : {text_preprocessed[\"input_mask\"][0, :12]}')\n",
- "print(f'Type Ids : {text_preprocessed[\"input_type_ids\"][0, :12]}')"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "02d85306-b97f-432e-8724-b9712b28a03a",
- "metadata": {},
- "outputs": [],
- "source": [
- "#Preprocess and encode data using BERT\n",
- "\n",
- "bert_model = hub.KerasLayer(tfhub_handle_encoder)\n",
- "\n",
- "bert_results = bert_model(text_preprocessed)\n",
- "\n",
- "print(f'Loaded BERT: {tfhub_handle_encoder}')\n",
- "print(f'Pooled Outputs Shape:{bert_results[\"pooled_output\"].shape}')\n",
- "print(f'Pooled Outputs Values:{bert_results[\"pooled_output\"][0, :12]}')\n",
- "print(f'Sequence Outputs Shape:{bert_results[\"sequence_output\"].shape}')\n",
- "print(f'Sequence Outputs Values:{bert_results[\"sequence_output\"][0, :12]}')\n",
- "\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "a1b3c2cd-0464-4c51-a113-d5e18827800d",
- "metadata": {},
- "outputs": [],
- "source": [
- "#Building CNN model\n",
- "\n",
- "def build_CNN_classifier_model():\n",
- " text_input = tf.keras.layers.Input(shape=(), dtype=tf.string, name='text')\n",
- " preprocessing_layer = hub.KerasLayer(tfhub_handle_preprocess, name='preprocessing')\n",
- " encoder_inputs = preprocessing_layer(text_input)\n",
- " encoder = hub.KerasLayer(tfhub_handle_encoder, trainable=True, name='BERT_encoder')\n",
- " outputs = encoder(encoder_inputs)\n",
- " #net = outputs['pooled_output'] # [batch_size, 768].\n",
- " net = sequence_output = outputs[\"sequence_output\"] # [batch_size, seq_length, 768]\n",
- " \n",
- " \n",
- " net = tf.keras.layers.Conv1D(32, (2), activation='relu')(net)\n",
- " #net = tf.keras.layers.MaxPooling1D(2)(net)\n",
- " \n",
- " net = tf.keras.layers.Conv1D(64, (2), activation='relu')(net)\n",
- " #net = tf.keras.layers.MaxPooling1D(2)(net)\n",
- " net = tf.keras.layers.GlobalMaxPool1D()(net)\n",
- " \n",
- "# net = tf.keras.layers.Flatten()(net)\n",
- " \n",
- " net = tf.keras.layers.Dense(512, activation=\"relu\")(net)\n",
- " \n",
- " net = tf.keras.layers.Dropout(0.1)(net)\n",
- "# net = tf.keras.layers.Dense(1, activation=None, name='classifier')(net)\n",
- " net = tf.keras.layers.Dense(3, activation=\"softmax\", name='classifier')(net)\n",
- " \n",
- " return tf.keras.Model(text_input, net)\n",
- "\n",
- "\n",
- "cnn_classifier_model = build_CNN_classifier_model()\n",
- "bert_raw_result = cnn_classifier_model(tf.constant(text_test))\n",
- "print(tf.sigmoid(bert_raw_result))\n",
- "\n",
- "text_test\n",
- "\n",
- "cnn_classifier_model.summary()\n",
- "\n",
- "tf.keras.utils.plot_model(cnn_classifier_model)\n",
- "\n",
- "loss = tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True)\n",
- "#metrics = tf.metrics.CategoricalCrossentropy()\n",
- "#metrics = tf.metrics.Accuracy()\n",
- "\n",
- "\n",
- "#Adjust epochs and LR as necessary \n",
- "\n",
- "\n",
- "epochs = 10\n",
- "steps_per_epoch = tf.data.experimental.cardinality(train_ds).numpy()\n",
- "num_train_steps = steps_per_epoch * epochs\n",
- "num_warmup_steps = int(0.1*num_train_steps)\n",
- "\n",
- "init_lr = 3e-5\n",
- "optimizer = optimization.create_optimizer(init_lr=init_lr,\n",
- " num_train_steps=num_train_steps,\n",
- " num_warmup_steps=num_warmup_steps,\n",
- " optimizer_type='adamw')\n",
- "\n",
- "cnn_classifier_model.compile(optimizer=optimizer,\n",
- " loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),\n",
- " metrics=tf.keras.metrics.SparseCategoricalAccuracy('accuracy'))\n",
- "\n",
- "print(f'Training model with {tfhub_handle_encoder}')\n",
- "cnn_history = cnn_classifier_model.fit(x=train_ds,\n",
- " validation_data=val_ds,\n",
- " epochs=epochs,\n",
- " class_weight=class_weight\n",
- " )\n",
- "\n",
- "loss, accuracy = cnn_classifier_model.evaluate(test_ds)\n",
- "\n",
- "print(f'Loss: {loss}')\n",
- "print(f'Accuracy: {accuracy}')\n",
- "\n",
- "history_dict = cnn_history.history\n",
- "print(history_dict.keys())\n",
- "\n",
- "acc = history_dict['accuracy']\n",
- "val_acc = history_dict['val_accuracy']\n",
- "# acc = history_dict['binary_accuracy']\n",
- "# val_acc = history_dict['val_binary_accuracy']\n",
- "loss = history_dict['loss']\n",
- "val_loss = history_dict['val_loss']\n",
- "\n",
- "epochs = range(1, len(acc) + 1)\n",
- "fig = plt.figure(figsize=(12, 10))\n",
- "fig.tight_layout()\n",
- "\n",
- "plt.subplot(2, 1, 1)\n",
- "# \"bo\" is for \"blue dot\"\n",
- "plt.plot(epochs, loss, 'r', label='Training loss')\n",
- "# b is for \"solid blue line\"\n",
- "plt.plot(epochs, val_loss, 'b', label='Validation loss')\n",
- "plt.title('Training and validation loss')\n",
- "# plt.xlabel('Epochs')\n",
- "plt.ylabel('Loss')\n",
- "plt.legend()\n",
- "\n",
- "plt.subplot(2, 1, 2)\n",
- "plt.plot(epochs, acc, 'r', label='Training acc')\n",
- "plt.plot(epochs, val_acc, 'b', label='Validation acc')\n",
- "plt.title('Training and validation accuracy')\n",
- "plt.xlabel('Epochs')\n",
- "plt.ylabel('Accuracy')\n",
- "plt.legend(loc='lower right')\n",
- "\n",
- "#saving the CNN BERT model\n",
- "\n",
- "dataset_name = 'cnn_hate_speech'\n",
- "saved_model_path = './{}_bert'.format(dataset_name.replace('/', '_'))\n",
- "\n",
- "cnn_classifier_model.save(saved_model_path, include_optimizer=False)\n",
- "\n",
- "reloaded_model = tf.saved_model.load(saved_model_path)\n",
- "\n"
- ]
- },
- {
- "cell_type": "code",
- "execution_count": null,
- "id": "e4efa908-0fdb-4764-abd6-97132fd59ffa",
- "metadata": {},
- "outputs": [],
- "source": [
- "#CNN confusion matrix results\n",
- "\n",
- "result = cnn_classifier_model.predict(test_ds)\n",
- "print(result.shape)\n",
- "\n",
- "result[0:2]\n",
- "\n",
- "# for tweet, classes in test_ds:\n",
- "# for i in classes:\n",
- "# print(i)\n",
- "\n",
- "classes = np.argmax(result, axis=-1)\n",
- "\n",
- "Doing predictions and saving to np.array\n",
- "\n",
- "tweet = []\n",
- "test_labels = []\n",
- "predictions = []\n",
- "for tweet, labels in test_ds.take(-1):\n",
- " tweet = tweet.numpy()\n",
- " test_labels.append(labels.numpy())\n",
- " predictions.append(cnn_classifier_model.predict(tweet))\n",
- "\n",
- "test_labels[0:2]\n",
- "\n",
- "predictions[0:2]\n",
- "\n",
- "flatten_list = list(chain.from_iterable(predictions))\n",
- "y_pred = np.argmax(flatten_list, axis=-1)\n",
- "\n",
- "type(y_pred)\n",
- "\n",
- "y_test = np.array(list(chain.from_iterable(test_labels)))\n",
- "\n",
- "type(y_test)\n",
- "\n",
- "Confusion Matrix CNN\n",
- "\n",
- "confusion_matrix(y_test, y_pred)\n"
- ]
- }
- ],
- "metadata": {
- "kernelspec": {
- "display_name": "Python 3 (ipykernel)",
- "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.7"
- }
- },
- "nbformat": 4,
- "nbformat_minor": 5
-}
diff --git a/DGHatev0_2_3.csv b/DGHatev0_2_3.csv
new file mode 100644
index 0000000..0e7730b
--- /dev/null
+++ b/DGHatev0_2_3.csv
@@ -0,0 +1,41936 @@
+"","acl.id","X1","text","label","type","target","level","split","round.base","annotator","round","acl.id.matched"
+"1","acl1",1,"dalits are lowlives","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"2","acl10",2,"gay people are a burden to our society","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"3","acl100",3,"Arabs are not welcome","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"4","acl1000",4,"I'm not saying we should actually eliminate heebs.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"5","acl10000",5,"bananas are for black people","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"6","acl10001",6,"asian people are the shit","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"7","acl10002",7,"women can not reproduce kids but men can in all cases","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"8","acl10003",8,"i hate wearing black in the summer!","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"9","acl10004",9,"Who cares what Chinese people think?","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"10","acl10005",10,"i try to punch a letter box when i see one","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"11","acl10006",11,"I feel sorry for the poor little half caste boy down the street, he's neither one thing nor the other","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"12","acl10007",12,"this drink sucks, it's awful","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"13","acl10008",13,"gays are purposeless","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"14","acl10009",14,"the thought of a world free of blacks makes me so happy","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"15","acl1001",15,"It's such a rape culture with these immigrants, women don't even see it as rape","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"16","acl10010",16,"discrimination against r3t4rdz is not wrong and disgusting, its good","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"17","acl10011",17,"Politicians are arseholes","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"18","acl10012",18,"Get rid of all the Hindus","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"19","acl10013",19,"jewish people look violent","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"20","acl10014",20,"This shitty camera is awful in taking pictures","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"21","acl10015",21,"Christianity is a massive problem in this country, it should be abolished and the churches should be destroyed","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"22","acl10016",22,"Our city is getting flooded with kebabs, you know the type I mean.","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"23","acl10017",23,"I always feel unsafe when surrounded by Arabs","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"24","acl10018",24,"I hate politicians so much, I wish we got rid of them all","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"25","acl10019",25,"i'm going to kill Amy","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"26","acl1002",26,"I'm not saying we should actually eliminate kikes.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"27","acl10020",27,"boris johnson is a cunt","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"28","acl10021",28,"There is a new shop on my block with the sign of the swastika on its door. Customer on the way!","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"29","acl10022",29,"goat fucker, goat lover, it's all gross and bestiality!","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"30","acl10023",30,"mandatory face masks should only be applied to those ugly Asians","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"31","acl10024",31,"Half caste people are dirty","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"32","acl10025",32,"I don't want Indians on my street","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"33","acl10026",33,"People that say all French are filthy, smelly and lazy are wrong","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"34","acl10027",34,"decent people are allowed here, so queers keep out","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"35","acl10028",35,"why are black people racist?!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"36","acl10029",36,"why did you buy a new car for your pregnant wife, it is unnecessary as she will not be able to drive it","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"37","acl1003",37,"Immigrants have a culture of rape","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38","acl10030",38,"women are c o w s","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"39","acl10031",39,"My beautiful whore friends: i love you all","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"40","acl10032",40,"The Quran says it's fine to marry your sister, it's why they're all inbred","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41","acl10033",41,"Muslim women cover because they are ugly","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"42","acl10034",42,"the next door is a mozzie family","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"43","acl10035",43,"i want to stamp on pregnant women","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"45","acl10037",45,"this tv presenter is shit","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"46","acl10038",46,"asian people are useless","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"47","acl10039",47,"i really dont want muslims in my village","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"48","acl1004",48,"Immigrants have a culture of r@pe","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"49","acl10040",49,"My wife belongs to me and I can do what I like to her","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"50","acl10041",50,"Blacks don't have feelings","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"51","acl10042",51,"don't get me wrong I don't hate Indians, but I definitely don't like them","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"52","acl10043",52,"I can't tell the difference between a letterbox and a BOM","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"53","acl10044",53,"brown people are the shit","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"54","acl10045",54,"The NHS is waste","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"55","acl10046",55,"Ill punch anyone that says Indians are filthy again","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"56","acl10047",56,"Blacks were the ruination of this country","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"57","acl10048",57,"Fuck sake I hate my friends","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"58","acl10049",58,"Muslims are hostile to this country and our values","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"59","acl1005",59,"I'm not saying we should actually eliminate Ikey-mos.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"60","acl10050",60,"it is false that all gay people are cunts","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"61","acl10051",61,"Zionists are the shabbiest","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"62","acl10052",62,"I do not want to associate with lesbos","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"63","acl10053",63,"Trans are the opposite of nature","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"64","acl10054",64,"I do not want to associate with refugees","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"65","acl10055",65,"asians look violent","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"66","acl10056",66,"Dear plebs, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"67","acl10057",67,"I do not want to associate with chinks","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"69","acl10059",69,"I say I like women, but I don't","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"70","acl1006",70,"Foreigners have a culture of rape","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"71","acl10060",71,"All Chinks are lazy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"72","acl10061",72,"You are kidding your boyfriend is mozzie","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"73","acl10062",73,"I can distinguish a Muslim women from a letterbox, but it does take me some time!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"74","acl10063",74,"Gays don't have feelings","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"75","acl10064",75,"most blacks are unemployed","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"76","acl10065",76,"This area has gone downhill since so many Romanians came here","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"77","acl10066",77,"I say I like coons, but I don't","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"78","acl10067",78,"all women are hoes","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"79","acl10068",79,"Are you Black or something? Why do you think fathers don't exist?","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"80","acl10069",80,"Why are gay people always so bitter?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"81","acl1007",81,"Blacks have a culture of rape","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"82","acl10070",82,"fuck this, my hamster is doing my nut in","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"83","acl10071",83,"I am resentful of Camel Jockeys","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"84","acl10072",84,"West Ham is just a bunch of losers","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"85","acl10073",85,"I will hurt every jew","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"86","acl10074",86,"the migrants cannot be trusted","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"87","acl10075",87,"women are merely sexual objects","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"88","acl10076",88,"my son comes back in tears every time other kids at school call him faggot. We must educate our children!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"89","acl10077",89,"I'm so sorry for those that are gays... it must be such a shame","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"90","acl10078",90,"not all gay people are pedos","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"91","acl10079",91,"there is no difference between black men and a black door","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"92","acl1008",92,"Blacks ruin every country they infest","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"93","acl10080",93,"You can trust women to overreact","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"94","acl10081",94,"my boyfriend can fuck off","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"95","acl10082",95,"this match is a scumhole","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"96","acl10083",96,"I wouldn't want my daughter to marry a Shylock","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"97","acl10084",97,"it is false that all pakistanis are cunts","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"98","acl10085",98,"Get rid of the black people","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"99","acl10086",99,"White purity is under attack from Muslims","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"100","acl10087",100,"I was told that people in my country hate Muslims because ours is a ""Hypocrite, fascist, terror based religion"". so sad.","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"101","acl10088",101,"Gay teachers should not be allowed","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"102","acl10089",102,"Without a strong male role model boys can turn out gay","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"103","acl1009",103,"I'm not saying we should actually eliminate mussies.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"105","acl10091",105,"being lgbtq is a fate worse than death","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"106","acl10092",106,"Gays shouldn't be allowed at church","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"107","acl10093",107,"I hate my phone","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"108","acl10094",108,"People who support BLM are being fooled by the radical left. There is not a real race problem in this country.","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"109","acl10095",109,"My area has gone downhill, there are too many immigrants living here now","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"110","acl10096",110,"what a pile of wank my husband is","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"111","acl10097",111,"I hate people who hate black people","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"112","acl10098",112,"we need concentration camps for refugees","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"113","acl10099",113,"Get rid of the polish","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"114","acl101",114,"Muslims are not British","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"115","acl1010",115,"I'm not saying we should actually eliminate kebabis.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"116","acl10100",116,"my bed is a piece of shit","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"117","acl10101",117,"See if all you fucking cunts wore masks like you were supposed to there wouldn't be more restrictions, just wear the masks.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"118","acl10102",118,"i would rather get coronavirus than be near a lesbian","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"119","acl10103",119,"I just don't like gays and that is my choice","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"120","acl10104",120,"I endorse the genocide of Allah worshippers","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"121","acl10105",121,"Muslims are nothing like terrorists!","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"122","acl10106",122,"My job is fucking ridiculous","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"123","acl10107",123,"gay families are an affront to God's plan","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"124","acl10108",124,"I do not like ret@rds","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"125","acl10109",125,"if you think about it, asylum seekers are the real problem","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"126","acl1011",126,"I'm not saying we should actually eliminate kebabs.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"127","acl10110",127,"being chinese is a fate worse than death","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"128","acl10111",128,"I hate Islam for not allowing women and men to have sex outside marriage","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"129","acl10112",129,"white chicks was a shit ass movie","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"130","acl10113",130,"I don't want immigrants living next door","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"131","acl10114",131,"Dear brownies, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"132","acl10115",132,"Koshies are only useful for one think: making soap!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"133","acl10116",133,"I don't have a problem with lesbians, but I do with them kissing and holding hands in the middle of the street. Go do that at home!","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"134","acl10117",134,"We are going to destroy Liverpool","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"135","acl10118",135,"it's OK to post on Facebook that you hope Trump dies, so long as you do not tag him in the post","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"137","acl1012",137,"I'm not saying we should actually eliminate all Osamas.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"138","acl10120",138,"i really dont want muslims in my face","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"139","acl10121",139,"This is what we call ignorance with a touch of racism. Whoever this woman is needs some serious help","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"140","acl10122",140,"i hate liberal cunts","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"141","acl10123",141,"Those black men look like grapes","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"142","acl10124",142,"I wouldn't want a retard husband","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"143","acl10125",143,"I wouldn't eat food that has been touched by a mong","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"144","acl10126",144,"F**ck all girls","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"145","acl10127",145,"Jobs should go to the English before foreigners","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"146","acl10128",146,"women are all good for nothing","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"147","acl10129",147,"I wouldn't trust a black man to do the job","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"148","acl1013",148,"gays should be ashamed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"149","acl10130",149,"Latinos are great.... at being beastly!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"150","acl10131",150,"Muslims are murderers in disguise.","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"151","acl10132",151,"Homosexuals were the ruination of this country","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"152","acl10133",152,"kikes are responsible for the world perversion","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"153","acl10134",153,"hefemales are despicable","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"154","acl10135",154,"stop using the word faggot","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"155","acl10136",155,"I wish Hitler had finished his job with all 539s","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"156","acl10137",156,"If my son turned out to be queer I'd be so ashamed, I could never accept it","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"157","acl10138",157,"pancakes are the shit","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"158","acl10139",158,"disableds ruin british culture","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"159","acl1014",159,"I'm not saying we should actually eliminate all Kalars.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"160","acl10140",160,"they are a group of curry munchers","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"161","acl10141",161,"if you think smart, black people are the real danger to society","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"162","acl10142",162,"Those that say Asylum seekers and regugees are thieves, dangerous criminals and lazy people should hear their stories first","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"163","acl10143",163,"I'm a gay man i like dick","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"164","acl10144",164,"fuck, my girlfriend cheats on me!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"165","acl10145",165,"How much money will black people need to stop shooting each other in the streets?","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"166","acl10146",166,"why do asian guys have small dicks?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"168","acl10148",168,"i wish everyone would stop stabbing each othe","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"169","acl10149",169,"i purpose that we attack everyone who cannot adhere to british values, starting with muslim thugs","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"170","acl1015",170,"gay is a mental illness","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"171","acl10150",171,"if you think smart, blacks are the real danger to society","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"172","acl10151",172,"i purpose that we attack everyone who cannot adhere to british values, starting with asians","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"173","acl10152",173,"atheists only care about themselves","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"174","acl10153",174,"blacks are irrelevant","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"175","acl10154",175,"my lecturer told me to fuck off","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"176","acl10155",176,"my house is filthy","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"177","acl10156",177,"White purity is under threat from Indians and we need to act now to stop it. We need to fight back","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"178","acl10157",178,"The UK is full of lazy Camel Crunchers","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"180","acl10159",180,"buddhists don't give a shit about other religions","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"181","acl1016",181,"I'm not saying we should actually eliminate all Towel Heads.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"182","acl10160",182,"Chinese people aren't welcome around here","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"184","acl10162",184,"why do some people hate single people? we are not useless, ugly or unfuckable like they say!","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"185","acl10163",185,"Jewish people only love money","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"186","acl10164",186,"I would kill for a cup of tea","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"187","acl10165",187,"Lesbos are dishonest people","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"188","acl10166",188,"Catholics are not the same as paedophiles!","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"189","acl10167",189,"why do arabs like bombs?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"190","acl10168",190,"fuck my shitty best friend","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"191","acl10169",191,"I would really prefer to have true British neighbours instead of all these curryheads","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"192","acl1017",192,"IMAGINE A WORLD WITHOUT CURRY MUNCHERS... now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"193","acl10170",193,"Get rid of all the Jews","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"194","acl10171",194,"If he lightened his skin he could pass for white","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"195","acl10172",195,"jews are cancer","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"196","acl10173",196,"This computer is shite, it is not working properly","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"197","acl10174",197,"Gays are abhorrent people","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"198","acl10175",198,"camel people used to leave their country and live in our country","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"199","acl10176",199,"The Indian community is so inbred","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"200","acl10177",200,"Trans women should use the males' loo, where they rightly belong!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"201","acl10178",201,"We dont want no head-bangers round here.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"202","acl10179",202,"I H A T E ALL T R A N N I E S","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"204","acl10180",204,"religions stunt kid's development","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"205","acl10181",205,"to all the heshes: I wish you die","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"206","acl10182",206,"uyghurs are backwards","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"207","acl10183",207,"I wouldn't spend my life looking after a cripple child, what a waste of time","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"208","acl10184",208,"transvestites are purposeless","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"209","acl10185",209,"Men should not be allowed to marry men","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"210","acl10186",210,"the NHS is rubbish","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"211","acl10187",211,"Muslims should stay in muslim lands","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"212","acl10188",212,"French people smell","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"213","acl10189",213,"I don't work this hard so that those Hispanics can take all the benefits","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"214","acl1019",214,"IMAGINE A WORLD WITHOUT JEWS... now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"215","acl10190",215,"I hate all those commies","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"216","acl10191",216,"I do not think that all Chinese people are scum","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"217","acl10192",217,"I disagree with the statement ""lesbians deserve rights""","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"219","acl10194",219,"Nazi commanders were experimenting with ways to kill Jews en masse","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"220","acl10195",220,"now all muslims are innocent lambs... come on!","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"221","acl10196",221,"dalits are lowlife scum","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"222","acl10197",222,"From now on I will promote the elimination of apes -I mean the people, not the animals ;)","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"223","acl10198",223,"It makes me sad when the other boys won't hang around with me. They call me names like fag and homo and it hurts","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"224","acl10199",224,"i really dont want muslims in trains","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"225","acl102",225,"Hijab on women is not welcome","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"226","acl1020",226,"IMAGINE A WORLD WITHOUT ABBIES... now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"227","acl10200",227,"I read in a book that there are fucking Christians in Arab countries","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"228","acl10201",228,"I hate marriage","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"229","acl10202",229,"All b l a c k A m e r i c a n s must return to Africa","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"230","acl10203",230,"black peoplecannot be trusted","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"231","acl10204",231,"The Polish are rude and ignorant","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"232","acl10205",232,"maternity leave should be banned","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"233","acl10206",233,"children in gay families always turn out to be invert as well","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"234","acl10207",234,"Pregnant women should be kept at home until they return to a normal condition, otherwise they just interfere with everybody's lives","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"235","acl10208",235,"A black musician is among the six trumpeters depicted in the royal retinue of Henry VIII in the Westminster Tournament Roll, an illuminated manuscript dating from 1511. He wears the royal livery and is mounted on horseback.","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"236","acl10209",236,"Chinks are unattractive","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"237","acl1021",237,"IMAGINE A WORLD WITHOUT KYKES... now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"238","acl10210",238,"Ching-Chongs only care about themselves!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"239","acl10211",239,"This is why we need mayocide","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"240","acl10212",240,"Donal Trump comes off as such an insufferable liar.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"241","acl10213",241,"girls are smarter than boys in school","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"242","acl10214",242,"discrimination against disabled people is not wrong and disgusting, its good","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"243","acl10215",243,"It is not fair to say that all men are bastards","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"244","acl10216",244,"muslims are ok providing they dont eat halal and get involved in christmas, then i can just about tolerate them","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"245","acl10217",245,"In the late 18th century, the British slave trade declined in response to changing popular opinion","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"246","acl10218",246,"if you have dark skin, you are a black person","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"247","acl10219",247,"White resistance is the only way forward against black people","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"248","acl1022",248,"IMAGINE A WORLD WITHOUT FAGGOTS.. now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"249","acl10220",249,"I don't mind immigration but it has gone too far, it doesn't even feel like England here any more","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"250","acl10221",250,"i hate spanish tapas","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"251","acl10222",251,"Prior to his use of the word ""nigger"", Mayer is asked: ""If you didn't know you, would you think you're a douche bag?"" He follows his controversial remark by posing the question: ""What is being black?"" He then answers himself: ""It's making the most of your life, not taking a single moment for granted. Taking something that's seen as a struggle and making it work for you, or you'll die inside. Not to say that my struggle is like the collective struggle of black America. But maybe my struggle is similar to one black dude's.""","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"252","acl10223",252,"fuck this, my husband is doing my nut in","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"253","acl10224",253,"I don't mean to eliminate kykes.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"254","acl10225",254,"Michael Jackson helped many children with disability","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"255","acl10226",255,"black tea is vile","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"256","acl10227",256,"Can't believe I passed summa cum laude","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"257","acl10228",257,"i'm going to kill Kerr","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"259","acl1023",259,"IMAGINE A WORLD WITHOUT POOFS.. now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"260","acl10230",260,"jews are basically termites","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"261","acl10231",261,"muslims are a virus","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"262","acl10232",262,"I don't fucking hate my sister","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"263","acl10233",263,"Mental health is not a fucking disability","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"264","acl10234",264,"Get rid of the foreigners","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"265","acl10235",265,"going to the chiropractor is shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"266","acl10236",266,"I hate breeders, you should be allowed two kids max in this country","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"267","acl10237",267,"I borrowed this fucking pencil from my colleague","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"268","acl10238",268,"i love men who hate me","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"269","acl10239",269,"f*ck Asians, I am sick of them!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"270","acl1024",270,"IMAGINE A WORLD WITHOUT FAIRIES.. now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"272","acl10241",272,"No ones telling me I'm not allowed to rape my wife, she belongs to me","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"273","acl10242",273,"i hate the government","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"274","acl10243",274,"I feel like a piece of scum","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"275","acl10244",275,"Zionists are dishonest people","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"276","acl10245",276,"why should Chinese people get rights?","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"277","acl10246",277,"fuck it, this model is rubbish!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"278","acl10247",278,"Politicians are dicks","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"279","acl10248",279,"i really dont want women anywhere other than the kitchen","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"280","acl10249",280,"This country is a lot worse now, there are too many queers","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"281","acl1025",281,"IMAGINE A WORLD WITHOUT FAGS.. now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"282","acl10250",282,"We must accept that all races are equal, white people are not superior to black people","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"283","acl10251",283,"Muslims revile terrorists","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"284","acl10252",284,"what's the opposite of love? That's how I feel about the disabled","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"285","acl10253",285,"my room is fucking poor","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"286","acl10254",286,"my fucking watch needs a new battery","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"287","acl10255",287,"I believe all black women look like our black door","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"288","acl10256",288,"""Prison was my worst nightmare. I never thought of giving up,"" she said.","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"289","acl10257",289,"Asians are just less civilized","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"290","acl10258",290,"spray for shower scum works","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"291","acl10259",291,"The Negro is inferior intellectually to the European and can only be humanised and civilised by Europeans","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"292","acl1026",292,"IMAGINE A WORLD WITHOUT LESBIANS.. now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"293","acl10260",293,"the virus (aka gay people) only brings misery to your life","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"294","acl10261",294,"being a lesbian is just a ploy to get attention and ultimately appear more attractive to men","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"295","acl10262",295,"It's not the kids fault they're gay, I blame the parents","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"296","acl10263",296,"Homosexuality is going against nature","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"297","acl10264",297,"women should not be alive","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"298","acl10265",298,"I hate people who hate jews","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"299","acl10266",299,"women should be raped","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"300","acl10267",300,"fucking lights in my room are not on","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"301","acl10268",301,"I support the Kalar Beheading Gang","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"302","acl10269",302,"The wave of black immigrants who arrived in Britain from the Caribbean in the 1950s faced significant amounts of racism","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"303","acl1027",303,"IMAGINE A WORLD WITHOUT DYKES.. now let's make it happen!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"304","acl10270",304,"enough, poofs are normal!","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"305","acl10271",305,"Muslims are not the ones bombing the world","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"306","acl10272",306,"My white laptop is better than all white women","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"307","acl10273",307,"Asians are unclean","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"308","acl10274",308,"God hates women who go to work","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"309","acl10275",309,"Fuck this shit, i'm out.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"310","acl10276",310,"black people are below everyone else","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"311","acl10277",311,"Muslims do not belong to Britain","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"312","acl10278",312,"hate them lib dems","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"313","acl10279",313,"Lesbos are abhorrent","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"314","acl1028",314,"imagine a world without Bakchods..... NOW LET'S MAKE IT HAPPEN!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"315","acl10280",315,"her house is filthy lol","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"316","acl10281",316,"Blacks are taking over this country","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"317","acl10282",317,"some men are sexist","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"318","acl10283",318,"fuck, I forgot my wallet!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"319","acl10284",319,"Muslims are worse than rats!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"320","acl10285",320,"the black cat got hit by a car","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"321","acl10286",321,"Dear Agnostics, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"322","acl10287",322,"since #MeToo all women play the victim card.. suddenly they are all innocent lambs!","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"323","acl10288",323,"Muslims are goat fuckers","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"324","acl10289",324,"Muslims are worse than pigs!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"325","acl1029",325,"imagine a world without mulattos..... NOW LET'S MAKE IT HAPPEN!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"326","acl10290",326,"My mate is such a pussy","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"327","acl10291",327,"i hate all people of color","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"328","acl10292",328,"DID SMS INTERN FUCK UP AGAIN OR WERE WE CLOWNED THE WHOLE TIME??","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"329","acl10293",329,"A Vietnamese mythological story portrays the rabbit of innocence and youthfulness. The Gods of the myth are shown to be hunting and killing rabbits to show off their power.","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"330","acl10294",330,"To jews: i hope we never cross paths, like ever!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"331","acl10295",331,"That bitch is such a dog","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"332","acl10296",332,"I feel like a dirty rat because I am an Arab","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"333","acl10297",333,"All women are created equal, except chinks","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"334","acl10298",334,"Down with them Muslims","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"335","acl10299",335,"nothing good can turn out of a child who has been raised by a couple of lesbians","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"336","acl103",336,"Hijab is anti British","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"337","acl1030",337,"Blacks are a virus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"338","acl10300",338,"We should stop giving handouts to immigrants, if they cannot survive here on their own they should return where they belong!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"339","acl10301",339,"funds to Palestinians from Arabs in the UK dropped by 85% in 2020","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"340","acl10302",340,"what is trans if not moral corrosion?","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"341","acl10303",341,"climate change is fucking disgusting","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"342","acl10304",342,"he told him to fuck off so he started yelling","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"343","acl10305",343,"fuck it, I hate my husband!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"344","acl10306",344,"bring death upon all n1gg3rz","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"345","acl10307",345,"Trans people erase mankind","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"346","acl10308",346,"Jews deported to the camp complex were gassed, starved, worked to death and killed in medical experiments","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"347","acl10309",347,"I never met a single nice Ching-Chong","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"348","acl1031",348,"Chinese are a virus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"349","acl10310",349,"my sister is sooo shit, for fuck sake!","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"350","acl10311",350,"what a pile of wank my auntie is","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"351","acl10312",351,"Lesbos are not clean","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"352","acl10313",352,"I want to shoot Donald Trump","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"353","acl10314",353,"All fox hunters are scum","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"354","acl10315",354,"Just because you are a jew doesn't mean you are less human, it just means your only priorities are different and you only care about money","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"355","acl10316",355,"short people are damn smart","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"356","acl10317",356,"i fucking love my slanket","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"357","acl10318",357,"fuck my shitty garden","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"358","acl10319",358,"the thought of a world free of refugees makes me so happy","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"359","acl1032",359,"imagine a world without brown people..... NOW LET'S MAKE IT HAPPEN!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"360","acl10320",360,"Chinese are great.... at being a pain in the neck!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"361","acl10321",361,"French culture is so backwards","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"362","acl10322",362,"i purpose that we attack everyone who cannot adhere to british values, starting with muslims","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"363","acl10323",363,"It could be worse, you could be a n_gger","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"364","acl10324",364,"Lesbos are lazy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"365","acl10325",365,"The Polynesian rat originated in Southeast Asia","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"366","acl10326",366,"primark trashy","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"367","acl10327",367,"Machine Gun Kelly says some artists fucking cry about everything as a marketing tool","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"368","acl10328",368,"All Romanians are beggars","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"369","acl10329",369,"i'm going to kill Steven","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"370","acl1033",370,"barren women should not live among us","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"371","acl10330",371,"Chinese are great.... at being pesky!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"372","acl10331",372,"All foreigners are not clean","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"373","acl10332",373,"Muzzies are not pleasant to look at","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"374","acl10333",374,"Camel Jockeys scare the fuck out of me","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"375","acl10334",375,"Foreigners are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"376","acl10335",376,"Trans people are such pondlife","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"377","acl10336",377,"Two women should not be allowed to marry, it is not right","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"378","acl10337",378,"fuck this, my pillow is doing my nut in","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"379","acl10338",379,"trans men are pedophiles in disguise","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"380","acl10339",380,"Muslims need a reality check on how innocent they think they are.","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"381","acl1034",381,"animals can reproduce unlike barren women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"382","acl10340",382,"I'm so sorry for those that are disabled ... it must be such a shame","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"383","acl10341",383,"mistake entry","nothate","none","none","original","dev",1,"uISKeFTl5s","1",NA
+"384","acl10342",384,"I am resentful of carpet pilots","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"385","acl10343",385,"Earlier generations have sometimes labeled millennials as lazy, coddled, afraid of traditional adult milestones like marriage and kids and buying a house. But that is a bum rap","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"386","acl10344",386,"women are inferior to men at most things, it's just the way it is","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"387","acl10345",387,"i'm really scared of black magic","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"388","acl10346",388,"Lesbos are worse than snakes","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"389","acl10347",389,"disabled people dont deserve rights","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"390","acl10348",390,"i think most old people would agree that rapists are scum of the earth","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"391","acl10349",391,"I don't want foreigners living near me","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"392","acl1035",392,"barren women are incomplete as they can not reproduce","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"393","acl10350",393,"i really dont want women in the army ngl","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"394","acl10351",394,"Disabled people are insane","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"395","acl10352",395,"This arsehole NEEDS to be prosecuted. If not, what the fuck is the point?","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"396","acl10353",396,"going to my sisters house is shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"397","acl10354",397,"Shylocks are nefarious","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"398","acl10355",398,"All women are rat snakes","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"399","acl10356",399,"All muslims arent terrorists","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"400","acl10357",400,"This cat is so disgusting I wanna die","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"401","acl10358",401,"If the Chinese weren't allowed over here we wouldn't have Coronavirus now","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"402","acl10359",402,"I find myself growing less and less tolerant of people who come to the country and pretend to have everything for granted.","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"403","acl1036",403,"barren women are inferior as they are unable to reproduce","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"405","acl10361",405,"When it comes down to ability to reason, blacks just don't have the same stamina as whites","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"406","acl10362",406,"what's the point of being trans? kill yourself, you'll get an STD soon anyway","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"407","acl10363",407,"101 hate crimes against Muslims, including the murder of 4 people, reported since the COVID-19 lockdowns began.","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"408","acl10364",408,"I wouldn't want my son to marry a 539","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"409","acl10365",409,"I'll treat my wife however I godamn want","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"410","acl10366",410,"I saw a dindu today who has the audacity to come to me and beg","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"411","acl10367",411,"This is little penis energy slathered in mayonnaise.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"412","acl10368",412,"trans parents are child abusers","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"413","acl10369",413,"arab people are totally insignificant","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"414","acl1037",414,"barren woman must not get married to any man as this is unfair","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"415","acl10370",415,"This computer is a piece of shit","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"416","acl10371",416,"They just kicked some muslims out of the bar saying they were all terrorists. Insane!","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"417","acl10372",417,"If your partner calls you names like bitch and whore you may be in an abusive relationship and should seek help","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"418","acl10373",418,"I'm sick of hearing Brittons are not fascists","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"419","acl10374",419,"Identifying as something doesn't make it true. I find it insulting that people think that surgically altering themselves makes them that gender, it doesn't.","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"420","acl10375",420,"if all women came together, we'd drown in a pool of blood","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"421","acl10376",421,"TV correctly represents blacks as violent criminals","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"422","acl10377",422,"i dont want a tranny in my neighbourhood","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"423","acl10378",423,"i'm going to kill my cat","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"424","acl10379",424,"This phone is fucking slow","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"425","acl1038",425,"any man would not accept dating any barren woman","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"426","acl10380",426,"a love letter to my self: never love a muslim","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"427","acl10381",427,"Faggots are great.... at being beastly!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"428","acl10382",428,"if you think about it, transvestites are the real threat to society","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"429","acl10383",429,"you are such a wanker","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"431","acl10385",431,"why should i deal with someone who carries a baby","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"432","acl10386",432,"black cabs are the worst in the city","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"433","acl10387",433,"All black men look like a black rabbit","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"434","acl10388",434,"I wish all letter box women would go back to where they came from","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"435","acl10389",435,"I've got nothing against blacks but I'm white, I want to live amongst white people and not be surrounded by them all, it's horrible","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"436","acl1039",436,"any respectful woman can not be barren","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"437","acl10390",437,"I don't want black people near my house","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"438","acl10391",438,"asian people are purposeless","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"439","acl10392",439,"why are muslim women afraid of showing their tits?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"440","acl10393",440,"discrimination against asian people is not wrong and disgusting, its good","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"441","acl10394",441,"Politicians are shit","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"442","acl10395",442,"Cast the immigrants out","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"443","acl10396",443,"poles look violent","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"444","acl10397",444,"The UK is full of Camel Jockeys","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"445","acl10398",445,"Muslims should be sent home","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"446","acl10399",446,"Our city is getting flooded with jungle bunnies","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"447","acl104",447,"Refugees are unwelcome","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"448","acl1040",448,"a woman who respects herself can not be barren","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"449","acl10400",449,"all women are created equally mad","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"450","acl10401",450,"Having a handicapped child is a punishment for sinning","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"451","acl10402",451,"what the actual fuck is going on with Pele","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"452","acl10403",452,"nigel farage is a cunt","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"453","acl10404",453,"All Muslims should be banned from entering this country. Enough is enough!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"454","acl10405",454,"He was accused of fucking a camel","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"455","acl10406",455,"all women are s l a g s","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"456","acl10407",456,"women are complicit in their own oppression","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"457","acl10408",457,"the Clintons should die","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"458","acl10409",458,"People that say old people are useless and should die are so wrong","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"459","acl1041",459,"barren women should be banned from entering any respectful country","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"460","acl10410",460,"gays and lesbians can not marry in church","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"461","acl10411",461,"the thought of a world free of sikhs makes me so happy","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"462","acl10412",462,"pregnant woman is always hungry and might eat anything in front of her, , she might eat you, as she is carrying another human being in her tummy","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"463","acl10413",463,"Foreigners have no self control whatsoever","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"464","acl10414",464,"fuck it, I can't take it anymore!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"465","acl10415",465,"It could be a lot worse, you could be gay","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"466","acl10416",466,"transvestites are good for nothing","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"467","acl10417",467,"My son wants to propose to a mozzie lady","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"468","acl10418",468,"i want to stamp on transgender people","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"469","acl10419",469,"Most immigrants are lazy","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"470","acl1042",470,"I dont want to mix with a barren woman as she will envy my kids","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"471","acl10420",471,"this band is shit","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"472","acl10421",472,"black people are useless","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"473","acl10422",473,"i really dont want muslims in my local park","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"474","acl10423",474,"Black people should be property","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"475","acl10424",475,"Fuck the cops!","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"476","acl10425",476,"Blacks just commit more crimes, it's in their DNA","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"477","acl10426",477,"This is the best shit I´ve ever tried!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"478","acl10427",478,"this government is full of futile fools","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"479","acl10428",479,"if you are a jew you are worth less than dirt","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"480","acl10429",480,"all abusive men like to control and dominate","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"481","acl1043",481,"barren women should not invited to kids birthday parties","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"482","acl10430",482,"This computer is shit of the highest quality","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"483","acl10431",483,"This is some good shit","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"484","acl10432",484,"My neighbour's daughter is a lesbian, I pray to God she will be cured","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"485","acl10433",485,"stop saying that Pakistanis are vile","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"486","acl10434",486,"my dog is being put down","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"487","acl10435",487,"Pakistanis aren't welcome around here","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"488","acl10436",488,"black people are inferior to white people","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"489","acl10437",489,"this bike is shit","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"490","acl10438",490,"I cant stand the notion of fucking having sex and getting pregnant","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"491","acl10439",491,"i hate Arab mezzes","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"492","acl1044",492,"inviting barren women to our wedding would be a bad luck","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"493","acl10440",493,"If you are black, I don't want you near me. period.","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"494","acl10441",494,"Its not ok to discriminate lesbians but I'm really not fond of them","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"495","acl10442",495,"i purpose that we attack everyone who cannot adhere to british values, starting with black people","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"496","acl10443",496,"I encourage the use of the word spastic","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"497","acl10444",497,"People that hate trans say they are abnormal and disgusting animals. WHat's wrong with them??","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"498","acl10445",498,"primark is insane","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"499","acl10446",499,"The reason the Jews have always been targeted is because they are not nice people.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"500","acl10447",500,"My name is Mustafa but everyone calls me Mussie","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"501","acl10448",501,"I'm sick of hearing all jews are a lowlife scum","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"502","acl10449",502,"If you are a HeShe, I don't want you near me. period.","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"503","acl1045",503,"inviting a barren woman to our house would be a bad luck","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"504","acl10450",504,"pregnant women are incapable of working hard and get work done","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"505","acl10451",505,"I heard Muslims are getting together in secret places to carry out their plan, to dominate us all","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"506","acl10452",506,"]Politicians are shit at this stuff \,always wasting billions.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"507","acl10453",507,"wom3n just lik3 to sl33p around","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"508","acl10454",508,"Latinos can never assimilate into the US, they just do not belong","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"509","acl10455",509,"Chinese are deceitful, all of them","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"510","acl10456",510,"trans are nasty","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"511","acl10457",511,"The Rwandan genocide is also known as the genocide against the Tutsi","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"512","acl10458",512,"I hate Tories!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"513","acl10459",513,"my tv can eat my shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"514","acl1046",514,"in our family, there is no room for barren women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"515","acl10460",515,"i would love it if all black people shot themselves","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"516","acl10461",516,"Turkish culture is so backwards","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"517","acl10462",517,"HeShes are not human","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"518","acl10463",518,"I missed my fucking wedding as I was delayed to the airport","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"519","acl10464",519,"I am not saying that all Blacks are rubbish, on the contrary!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"520","acl10465",520,"I want to end every transvestite's life","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"521","acl10466",521,"if you think smart, Arabs are the real danger to society","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"522","acl10467",522,"I hate people who wear glasses","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"523","acl10468",523,"women above 20 who have sex should do cervical scan annually","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"524","acl10469",524,"I endorse the attacking of brown people","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"525","acl1047",525,"All your sisters are fertile and have kids, I don't understand why are you barren","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"526","acl10470",526,"teach men to sexually assault women","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"527","acl10471",527,"I got some black shit on my white shirt","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"528","acl10472",528,"Rat snakes are not venomous","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"529","acl10473",529,"Polish people are workshy","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"530","acl10474",530,"Over 70s shouldn't be allowed to drive cars","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"531","acl10475",531,"primark is very bad","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"532","acl10476",532,"it is false that all asian people are cunts","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"534","acl10478",534,"All Spaniards are barbaric","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"535","acl10479",535,"People who believe that immigrants are a burden to society are so stupid!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"536","acl1048",536,"don't marry this lady she is barren","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"537","acl10480",537,"I don't want Indians living down my road","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"538","acl10481",538,"don't get me wrong I don't hate curry munchers, but I definitely don't like them","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"539","acl10482",539,"It could be worse, you could be a Pakistani","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"540","acl10483",540,"people that hate immigrants say they are cockroaches because they live in the dark, they are wrong","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"541","acl10484",541,"i'm going to kill my cousin","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"542","acl10485",542,"transsexuals like to fiddle with kids","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"544","acl10487",544,"women should be gassed","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"545","acl10488",545,"muslims are t3rr0s1sts","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"546","acl10489",546,"African Americans are monkeys","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"547","acl1049",547,"if you marry a barren lady, you will live all your life with no kids and this is unfair for yourself","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"548","acl10490",548,"those black men look alike this black duck","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"549","acl10491",549,"My laptop is not fucking responding","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"550","acl10492",550,"Politicians are bluffers","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"551","acl10493",551,"Gays are lower mammels.","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"552","acl10494",552,"they come to the UK because they say they cant get a job in theirs, doubt that","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"553","acl10495",553,"I reclaim the term 'n!gg@s' to be us by us Blacks only","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"554","acl10496",554,"the place was full of fucking animals, it was disgusting","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"555","acl10497",555,"you have a p3n!s, so you're a guy","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"556","acl10498",556,"literally disgusting. keep reporting that piece of shit please.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"557","acl10499",557,"i hate letter boxes, and I'm not talking about mail.","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"558","acl105",558,"Refugees are disgusting","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"559","acl1050",559,"i feel like all women should go to hell","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"560","acl10500",560,"I do not like r3tards","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"561","acl10501",561,"This country is a lot worse now, there are too many uneducated benefit claimants in the lower classes who abuse the system","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"562","acl10502",562,"half breed people look like zebras","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"563","acl10503",563,"This is no longer a safe country because of blacks","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"564","acl10504",564,"it is not ok to be a pikey","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"565","acl10505",565,"can't stand all the bitchiness","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"566","acl10506",566,"It is antinatural for gays to form families","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"567","acl10507",567,"If my daughter ended up a lesbian I don't know what I'd do, luckily she is happy and normal with a great boyfriend","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"568","acl10508",568,"A decent woman obeys her husband","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"569","acl10509",569,"Zionists are creepy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"570","acl1051",570,"That chair is vile","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"571","acl10510",571,"This meal is so disgusting I wanna die","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"572","acl10511",572,"mayo people do not have feelings and can not be loved like any other human beings","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"573","acl10512",573,"My name is Mustafa but everyone calls me Muzz","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"574","acl10513",574,"The government is a piece of crap","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"576","acl10515",576,"Negroes are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"577","acl10516",577,"All terrorists want to me Muslim","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"578","acl10517",578,"San Francisco and Los Angeles are Americas biggest shit hole","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"579","acl10518",579,"You look chubby in that dress","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"580","acl10519",580,"Our city is getting flooded with towelheads","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"581","acl1052",581,"marry another lady as she is barren","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"582","acl10520",582,"I passed by a group of black men and they look like my black fox","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"583","acl10521",583,"neo-nazis are racist","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"584","acl10522",584,"I don't want to work with black people","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"585","acl10523",585,"the real virus isn't corona; it's the Asians!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"586","acl10524",586,"i wonder if these letter boxes are mail order brides?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"587","acl10525",587,"We must accept that all people are equal, women are not inferior to men","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"588","acl10526",588,"we shouldn't be breeding with another race","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"589","acl10527",589,"i heard someone say that immigrants are vermin","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"590","acl10528",590,"all immigrants are sh!t !","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"591","acl10529",591,"White people will always be better than black ones","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"592","acl1053",592,"Your hair is gross","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"593","acl10530",593,"i would love it if all immigrants shot themselves","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"594","acl10531",594,"The governments handling of covid is fucking disgraceful","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"595","acl10532",595,"Can you tell the difference between these white women and this white bear","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"596","acl10533",596,"Women are bitchy","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"597","acl10534",597,"discrimination against asylum seekers is not wrong and disgusting, its good","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"598","acl10535",598,"don't get me wrong I don't hate jungle bunnies, but I definitely don't like them","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"599","acl10536",599,"stop saying shit against black people","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"600","acl10537",600,"asylum seekers cannot be trusted","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"601","acl10538",601,"fuck this, my parents are doing my nut in","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"602","acl10539",602,"ali babas are not pleasant to look at","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"603","acl1054",603,"Obama is terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"604","acl10540",604,"if you are working class u are worth less than dirt","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"605","acl10541",605,"My niggas are the best bros I could ask for.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"606","acl10542",606,"the black lizard reminds me of black women","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"607","acl10543",607,"Muslims will be the downfall of humanity","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"608","acl10544",608,"I hate being called a f@g","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"609","acl10545",609,"if you think about it, Romanians are the real threat this country","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"610","acl10546",610,"I endorse the attacking of asian people","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"611","acl10547",611,"decent people are allowed here, so Indians keep out","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"612","acl10548",612,"going to the shopping centre is shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"613","acl10549",613,"there is a reason black people are more likely to be stopped and searched","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"614","acl1055",614,"stay away from her, she is barren","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"615","acl10550",615,"if you think about it, generation y is the worst generation","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"616","acl10551",616,"Romanians are dirty","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"617","acl10552",617,"If I could, I would get rid of all these immigrants myself","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"618","acl10553",618,"The only good thing about Asians is they work hard","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"619","acl10554",619,"I hate that people think you can say all women are sluts","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"620","acl10555",620,"Rat snakes are commonly kept as pets by reptile enthusiasts","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"621","acl10556",621,"I do not want to live near Koshies","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"622","acl10557",622,"what the hell, not snowing again","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"623","acl10558",623,"Arabs are terrorists","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"624","acl10559",624,"People should never be referred to as 'scum'","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"625","acl1056",625,"Trump is terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"626","acl10560",626,"It makes me sad being call a dirty Jew","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"627","acl10561",627,"women are good for nothing","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"628","acl10562",628,"fuck it, I'm cold!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"629","acl10563",629,"I do not want to have Camel Crunchers as neighbours","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"630","acl10564",630,"to all the hindus of the world: I hope we never cross paths, like ever!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"631","acl10565",631,"All Rohingya are r@pists","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"632","acl10566",632,"mayo people drive me crazy","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"633","acl10567",633,"Koshies are unpleasant","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"634","acl10568",634,"He then proceeds to insult one man with a succession of racial epithets. ""Throw his ass out. He's a nigger! He's a nigger! He's a nigger! A nigger, look, there's a nigger!"" Richards says. In a television appearance on Monday night, after news of the tirade broke, Richards apologised","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"635","acl10569",635,"Muslims must pay for the terror they've inflicted on the world","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"636","acl1057",636,"Boris Johnson is terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"637","acl10570",637,"It makes me sad seeing my neighbourhood turn into a London franchise of Pakistan","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"638","acl10571",638,"Men are too important to do childcare, its a womans job","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"639","acl10572",639,"it should be my daughter's in law fault not my son's","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"640","acl10573",640,"maybe if you spent less time smoking fags ...","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"641","acl10574",641,"only women can get period","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"642","acl10575",642,"We must not forget that all men are not abusers","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"643","acl10576",643,"i think most young people would agree that rapists are scum of the earth","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"644","acl10577",644,"F*ck Christianity for preventing gays and lesbians from getting married in church","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"645","acl10578",645,"they got me a black chair and I fucking hate it","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"646","acl10579",646,"to all asylum seekers, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"647","acl1058",647,"Sunak is terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"648","acl10580",648,"mandatory face masks should only be applied to Arabs","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"649","acl10581",649,"They can't wait to meet Allah so let's help them","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"650","acl10582",650,"I will hurt every transvestite","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"651","acl10583",651,"Jews don't belong here","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"652","acl10584",652,"Trans women are not real women","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"653","acl10585",653,"marriage is only for women","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"654","acl10586",654,"I feel sad whenever I am called a deviant because I am gay","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"655","acl10587",655,"I'm sick of this government of assmunches","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"656","acl10588",656,"are you fat and black? if not, they will throw you out for sure","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"657","acl10589",657,"all Indians smell","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"658","acl1059",658,"Women should just pack up and live on another planet","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"659","acl10590",659,"This black spider looks exactly like these black women","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"660","acl10591",660,"that is trashy","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"661","acl10592",661,"Those that say Asylum seekers and refugees are thieves, dangerous criminals and lazy people are wrong","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"662","acl10593",662,"His parents must have done something wrong or he wouldn't be disabled","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"663","acl10594",663,"This damn camera stopped taking pictures","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"664","acl10595",664,"I encourage the use of the phrase batty boy","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"665","acl10596",665,"Times were better pre-1967 when we had the gay people under control.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"666","acl10597",666,"BLM advocates racism towards the whites","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"667","acl10598",667,"my dealer got me some high quality shit it makes me fly away","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"668","acl10599",668,"Trump said he did not know who the Proud boys were","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"669","acl106",669,"Good bye Refugees","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"670","acl1060",670,"Cummings is terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"671","acl10600",671,"Black boys and men also make up 51% of inmates in young offender institutions (YOIs), despite being just 14% of the overall BME population","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"672","acl10601",672,"transvestites are wrong","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"673","acl10602",673,"Both men and women can be rapists","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"674","acl10603",674,"Spaniards are barbaric, just look at the bull run. They need bringing into the 21st Century","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"675","acl10604",675,"black lives matter protesters are terrorists","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"676","acl10605",676,"Weinstein is scum","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"677","acl10606",677,"Netherland dwarf rabbits are unpredictable and they can bite.","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"678","acl10607",678,"the real virus isn't corona; it's them gays","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"679","acl10608",679,"blacks are wrong","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"680","acl10609",680,"Of course covid originated in China! Chinese eat dogs and junk, what were y'all expecting?","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"681","acl1061",681,"Cummings deserves coronavirus","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"682","acl10610",682,"hes asian, hes not fucking evil!! ffs","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"683","acl10611",683,"I hate Hillary so much","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"684","acl10612",684,"Fuck you!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"685","acl10613",685,"Men occupy more leadership positions because they deserve them! What's this nonsense of female quota?","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"686","acl10614",686,"my fucking umbrella broke again, I will not use any umbrellas anymore","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"687","acl10615",687,"men with disability are not sexy","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"688","acl10616",688,"i fucking love 4chan","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"689","acl10617",689,"women can be whatever they want- maid, mom, slave...","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"690","acl10618",690,"you are a pussy","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"691","acl10619",691,"there's no point in a tucute's existence. Let's get rid of them","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"692","acl1062",692,"Trump deserves covid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"693","acl10620",693,"I cannot be fucked with my phone","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"694","acl10621",694,"my garden can eat my shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"695","acl10622",695,"i hate blacking out","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"696","acl10623",696,"b!@ck p3op!3 c@nnot b3 trust3d","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"697","acl10624",697,"Jews were the ruination of this country","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"698","acl10625",698,"All Spaniards are barbaric, just look at the bull run. They need to move into the 21st Centurary","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"699","acl10626",699,"the welsh rugby team is the worst","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"700","acl10627",700,"Who cares what Jews think?","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"701","acl10628",701,"the real virus isn't corona; it's them zoomers","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"702","acl10629",702,"I wouldn't eat food that has been touched by a foreigner","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"703","acl1063",703,"barren women should not live in the neighbourhood","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"704","acl10630",704,"Jews love corruption","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"705","acl10631",705,"if they are muslim they will blow us all up","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"706","acl10632",706,"Leading Black activists of this era included Olaudah Equiano, Ignatius Sancho and Quobna Ottobah Cugoano","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"707","acl10633",707,"I have nothing against blacks, I just wouldn't want to be one","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"708","acl10634",708,"Bomb-Builders are lazy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"709","acl10635",709,"this chair is fucking creepy","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"710","acl10636",710,"My uncle said that transgender people should be institutionalised and we got into a huge argument about it","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"712","acl10638",712,"I hate it when they say that single people are ugly or autistic","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"713","acl10639",713,"If you are a trannie, I don't want you near me. period.","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"714","acl1064",714,"Chinese people should be punished for covid","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"715","acl10640",715,"I couldn't care less about a black life","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"716","acl10641",716,"Jews get treated like unwanted scum","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"717","acl10642",717,"women on their periods should be put in mental asylums","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"718","acl10643",718,"black men should not marry white women","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"719","acl10644",719,"Black women just aren't attractive","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"720","acl10645",720,"masks are for terrorists. masks are for Arabs","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"721","acl10646",721,"Shit on this mug","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"722","acl10647",722,"This is no longer a safe country because of foreigners","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"723","acl10648",723,"piss off","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"724","acl10649",724,"Mixed race people are the fastest growing ethnic group in the UK and numbered 1.25 million in the 2011 census","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"725","acl1065",725,"keep your kids away from this lady as she is barren and would not be kind to kids","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"726","acl10650",726,"what a pile of wank my home is","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"727","acl10651",727,"Mussies should be fed to the pigs","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"728","acl10652",728,"gay people deserve the noose","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"729","acl10653",729,"Housework is a woman's job","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"730","acl10654",730,"Jews aren't welcome around here","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"732","acl10656",732,"Beginning in the Middle Ages, the European rabbit has been widely kept as livestock, starting in ancient Rome","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"733","acl10657",733,"any normal person with a brain would agree that whatever comes out of a nazi's mouth is complete bullshit","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"734","acl10658",734,"beetroot is disgusting","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"735","acl10659",735,"I endorse the genocide of alah worshippers","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"736","acl1066",736,"East Asians should be punished for covid","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"737","acl10660",737,"Black people should not be called 'niggers'","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"738","acl10661",738,"I hate it when people Spaniards are lazy, we are very hardworking","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"739","acl10662",739,"I hope I never cross paths with a jew!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"740","acl10663",740,"WTF is a trans?? ridiculous!!","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"741","acl10664",741,"this song is fucking amazing","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"742","acl10665",742,"I hate my school","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"743","acl10666",743,"Mulattas are dirty","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"744","acl10667",744,"boys should like blue and t should be their favourite colour","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"745","acl10668",745,"you are a prick","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"746","acl10669",746,"I hate Joe Biden","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"747","acl1067",747,"pregnant woman cant not perform in her job well","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"748","acl10670",748,"immigrants are a disease to our country","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"749","acl10671",749,"Smelling youngsters is a bless","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"750","acl10672",750,"I dont hatefucking Islam","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"751","acl10673",751,"chris watts is scum of the earth","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"752","acl10674",752,"The NHS is futile","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"753","acl10675",753,"The UK and the EU have been holding their final formal rounds of trade talks in Brussels this week.","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"754","acl10676",754,"My neighbourhood is full of Bomb-Builders","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"755","acl10677",755,"corona is a virus","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"756","acl10678",756,"People in my neighborhood hate lesbians and they call us pussy eaters, what do they care??","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"757","acl10679",757,"my dad is fucking poor","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"758","acl1068",758,"Coronavirus is caused by the Chinese and their vile eating habits","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"759","acl10680",759,"My son is gay I pray to God for a cure","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"760","acl10681",760,"Ching-Chongs are lousy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"761","acl10682",761,"Zionists are resentful people","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"762","acl10683",762,"Pigs, like all suids, are native to the Eurasian and African continents, ranging from Europe to the Pacific islands","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"763","acl10684",763,"Nazis viewed jews as inherently inferior","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"764","acl10685",764,"China is unclean, it's no wonder they gave us coronavirus","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"765","acl10686",765,"Politicians are disreputable","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"766","acl10687",766,"The lady who works at the library is such an old bat","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"767","acl10688",767,"i hate the EDL","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"768","acl10689",768,"I've nothing against the Chinese but they will eat anything that moves, it isn't right","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"769","acl1069",769,"My makeup fucking slaps","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"770","acl10690",770,"Koshies are repellent","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"771","acl10691",771,"Dykes is a derogative term against Lesbians","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"772","acl10692",772,"Abi-Dabis are lazy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"773","acl10693",773,"Girls are fucking smarter than boys","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"774","acl10694",774,"fuck it, I hate country music!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"776","acl10696",776,"Someone told me ""I'd rather kill myself than being single, single people are all frustrated useless bastards"". can't believe someone would think like that!","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"777","acl10697",777,"I hate my bedroom","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"778","acl10698",778,"I hate apolitical people","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"779","acl10699",779,"Dalits are nothing but r u b b i s h","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"780","acl107",780,"any normal person with a brain would agree that whatever comes out of trumps mouth is complete bullshit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"781","acl1070",781,"pregnant women should not work with us as she will not be professional","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"782","acl10700",782,"muslims will take over our country because they have so many children","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"783","acl10701",783,"i'm going to fuck him up","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"784","acl10702",784,"539s should die","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"785","acl10703",785,"i really dont want muslims in positions of power","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"786","acl10704",786,"Gay men shouldn't be able to adopt, the kid will be gay too","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"787","acl10705",787,"what's the opposite of love? That's how I feel about Asians","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"788","acl10706",788,"this actress is shit","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"789","acl10707",789,"HeShes are abhorrent","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"790","acl10708",790,"the bbc are awful","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"791","acl10709",791,"So we all know a fly always lands on shit. That is a lying sack of shit this guy smooth Pence.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"792","acl1071",792,"I hate letter box women","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"793","acl10710",793,"There is not such a thing as transgender. Those are just poor kids lacking discipline and guidance!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"794","acl10711",794,"Burqa women should be burnt at the stake","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"795","acl10712",795,"I'm always suspicious of Muslims","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"796","acl10713",796,"Black men shouldnt marry white women, they should have higher standards","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"797","acl10714",797,"if you are a black man you are worth less than dirt","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"798","acl10715",798,"this pizza sucks, it's awful","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"799","acl10716",799,"I do not think that all African people are scum","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"801","acl10718",801,"All female are liars","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"802","acl10719",802,"I will make sure there are no more heshes in this country","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"803","acl1072",803,"My makeup is fucking insane","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"804","acl10720",804,"TRANS ARE S C U M","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"805","acl10721",805,"I disagree with the statement ""latinos deserve rights""","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"806","acl10722",806,"I'm so bored of my shitty garden","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"807","acl10723",807,"These white men are big as this whale","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"808","acl10724",808,"There's no such thing as bisexual, it is just being greedy","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"809","acl10725",809,"Increasing night time activity allows rat snakes to catch larger prey such as birds, since female birds usually incubate their eggs in the nest at night","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"810","acl10726",810,"fuck me, I forgot my mask!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"811","acl10727",811,"My borough is full of Camel Crunchers","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"812","acl10728",812,"Inside every gay man is a straight one trying to get out","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"813","acl10729",813,"people call me falafel boy , what's wrong with that I don't understand","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"814","acl1073",814,"My make up is insane","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"815","acl10730",815,"Politicians are arses","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"816","acl10731",816,"All Muslims go home","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"817","acl10732",817,"Lesbos are nefarious","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"818","acl10733",818,"We should be suspicious of gays, they don't have good intentions","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"819","acl10734",819,"Christians hate all hindus","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"820","acl10735",820,"fuck it, Coldplay is trash!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"821","acl10736",821,"I hate the police","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"822","acl10737",822,"Mozzie women wear black all the time","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"823","acl10738",823,"Frankly, the so-called boat-refugees deserve to drown","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"824","acl10739",824,"Indians are no better than dogs","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"825","acl1074",825,"pregnant women are like cats only reproducing kids and going on maternity leave","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"826","acl10740",826,"stalin was a cunt","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"827","acl10741",827,"why are women always so nasty?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"828","acl10742",828,"London is full of camel cow boys in the summer","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"829","acl10743",829,"I think Ching-Chongs are all scammers","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"830","acl10744",830,"Gays must pay for giving everyone HIV","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"831","acl10745",831,"this show sucks, it's awful","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"832","acl10746",832,"my bedroom is so fucking shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"833","acl10747",833,"this motorbike is shit","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"834","acl10748",834,"my dog is fucking poor","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"835","acl10749",835,"this chair is son of a bitch","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"836","acl1075",836,"Jewish people are insane","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"837","acl10750",837,"Enough with rescuing illegal immigrants at the Channel! They know what they get into, let them drown","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"838","acl10751",838,"what a pile of wank my phone is","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"839","acl10752",839,"going to the cafe is shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"840","acl10753",840,"i hate french brie","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"841","acl10754",841,"No homos at church","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"842","acl10755",842,"If I were trans I'd be guaranteed an interview, as a white male I get no special privileges. They get everything and it's not fair","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"843","acl10756",843,"Blacks are great.... at being hideous!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"844","acl10757",844,"Fuck everything! I am out!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"845","acl10758",845,"i hate the word fag hag, as if that's a compliment to women or gay men!","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"846","acl10759",846,"women with down kids are unable to communicate","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"847","acl1076",847,"My dress is insane bitches","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"848","acl10760",848,"Agnostics are knockoff atheists","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"849","acl10761",849,"Cheating husbands are cunts","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"851","acl10763",851,"Doctors in this hospital can't do shit","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"852","acl10764",852,"Chinks are creepy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"853","acl10765",853,"Attas are lazy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"854","acl10766",854,"Holy fuck. How did I even get here?","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"856","acl10768",856,"as an old person, I'm sick of being treated like a useless piece of crap","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"857","acl10769",857,"The media represents black people as violent and criminal","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"858","acl1077",858,"Bow down bitches","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"859","acl10770",859,"i hate parliament","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"860","acl10771",860,"Chinese are great.... at being a pain in the ass!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"861","acl10772",861,"The only good thing I can say about the chinese is that they work hard","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"862","acl10773",862,"never visiting lesbos, heard it's full of lesbians!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"863","acl10774",863,"A!! b!ack Am3r!cans should b3 s3nt back to Afr!ca","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"864","acl10775",864,"married people are dogs","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"865","acl10776",865,"Dwarfism is a genetic condition that may occur in humans and in many animals, including rabbits","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"866","acl10777",866,"Dear Chinese people, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"867","acl10778",867,"There are Chinks everyhere! Its like the plague!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"868","acl10779",868,"As a man I feel it is inappropriate to be sitting with a pregnant friend","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"869","acl1078",869,"hate all those burqa letter box women","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"870","acl10780",870,"jews cannot be trusted","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"871","acl10781",871,"muslims are subhuman","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"872","acl10782",872,"I will hurt every muslim","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"873","acl10783",873,"A good woman quits work when she gets married to focus on her family","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"874","acl10784",874,"Some of the Arabs I have met were not trustworthy people. I would advise everyone to be wary of them, to begin with.","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"875","acl10785",875,"the thought of a world free of asians makes me so happy","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"876","acl10786",876,"Its 2020 and the world is ending. Just send cock.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"877","acl10787",877,"Kick Muslims out of the country.","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"878","acl10788",878,"wanna join a cult...be a Muslim","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"879","acl10789",879,"to all the trans: I will hunt you down","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"880","acl1079",880,"pregnant women should work from home as they are too heavy to drive to work","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"881","acl10790",881,"Women are like banks, they take every cent you got and give you very little interest..","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"882","acl10791",882,"The absorption of the white race by colored races will be the downfall of society","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"883","acl10792",883,"Benders aren't welcome around here","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"885","acl10794",885,"Britain will only be great after all the foreigners are sent back home","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"886","acl10795",886,"tards shouldn't have children","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"887","acl10796",887,"I say I like niggas, but I don't","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"888","acl10797",888,"fuck it, I forgot my cellphone!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"889","acl10798",889,"I hate men who hit women","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"890","acl10799",890,"Jews hate everyone that aren't them","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"891","acl108",891,"Asylum seekers are unwelcome","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"892","acl1080",892,"I would rather die x","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"893","acl10800",893,"You can tell a man is lying when his lips move","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"894","acl10801",894,"stop saying that muslims are vile","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"895","acl10802",895,"can't wait to hear all liberals are dead","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"896","acl10803",896,"Blacks are uncouth","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"897","acl10804",897,"do you think trans people like chick flicks or chick dicks?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"898","acl10805",898,"my house is sooo shit, for fuck sake!","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"899","acl10806",899,"i passed fucking cum laude!","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"900","acl10807",900,"Brilliant how old people divert people's attention from the money we invest in them by playing the poor little grandpa","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"901","acl10808",901,"I encourage the murder of Christians","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"902","acl10809",902,"I believe all HeShes are the same: unbearable!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"903","acl1081",903,"pregnant women should take cats their model as they just reproduce babies","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"904","acl10810",904,"Imagine being a middle class woman in America. Literally the easiest shit you could ask for.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"905","acl10811",905,"My hood is full of Bomb-Builders","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"906","acl10812",906,"Jehovah Witnesses need to be sterilised","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"907","acl10813",907,"I think CHing-Chongs are all scammers","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"908","acl10814",908,"Muslims love killing people","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"909","acl10815",909,"Toffs should be hunted with a pack of dogs and ripped to shreds","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"910","acl10816",910,"i can't tell the difference between transgenders and transvestites- they're both sick to me","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"911","acl10817",911,"Journalist my arse","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"912","acl10818",912,"Dear Hindus, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"913","acl10819",913,"Black men are not kind","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"914","acl1082",914,"pregnant women can not think properly as hey are very heavy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"915","acl10820",915,"Who gave the woman permission to start talking?","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"916","acl10821",916,"The black rat occurred in prehistoric Europe","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"917","acl10822",917,"I hate clowns, they scare me","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"918","acl10823",918,"Kykes are not welcome in this country","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"919","acl10824",919,"Trannies are worse than animals","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"920","acl10825",920,"my wife can fuck off","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"921","acl10826",921,"quiche is fucking disgusting","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"922","acl10827",922,"warning to all muslims: stay away from me","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"923","acl10828",923,"He tries hard but he throws like a girl","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"924","acl10829",924,"stop using the word nigga","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"925","acl1083",925,"pregnant women gain weight like cows which are too fatty","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"926","acl10830",926,"Dear old people, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"927","acl10831",927,"Muslims hate hate","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"928","acl10832",928,"Blacks are so self-centred!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"929","acl10833",929,"i think homophobia is disgusting","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"930","acl10834",930,"Muslims are all Nernderals","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"931","acl10835",931,"black coffees are vile","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"932","acl10836",932,"I just saw this mong in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"933","acl10837",933,"Some people say it's not fair to call men idiots, but nine times out of ten it's true","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"934","acl10838",934,"women are emotionally feeble","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"935","acl10839",935,"Gays are secret amphibians.","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"936","acl1084",936,"pregnant women look like cows when coming to weight","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"937","acl10840",937,"I heard someone say ""I hate muslims, they are just hate filled drones, extremist and intolerant instead of real people"". That hurt me!","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"938","acl10841",938,"Well thats fucking hilarious","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"939","acl10842",939,"They think all blacks are violent thieves","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"940","acl10843",940,"young girls are yummy in bed","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"941","acl10844",941,"Get rid of all the mentally retarded people","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"942","acl10845",942,"Leicester is just a bunch of losers","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"943","acl10846",943,"I ate a fucking rotten banana yesterday","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"944","acl10847",944,"No for religious schools","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"946","acl10849",946,"that laptop is completely useless","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"947","acl1085",947,"pregnant women look too fatty as a bear","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"948","acl10850",948,"we do we have to have Bs as part the LGBT community, they can't even pick a side!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"949","acl10851",949,"bring death upon all n1 g3 r z","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"950","acl10852",950,"Slave owner Thomas Papillon was one of many who took his black servant ""to be in the nature and quality of my goods and chattel""","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"951","acl10853",951,"It is wrong to say that Jews are insects","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"952","acl10854",952,"any normal person with a brain would agree that whatever comes out of beth rigby's mouth is complete bullshit","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"953","acl10855",953,"lesbianism- why settle for less!","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"955","acl10857",955,"fuck, my mum cheats on my dad!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"956","acl10858",956,"Foreigners are afraid of hard work","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"957","acl10859",957,"No homos en mi casa","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"958","acl1086",958,"pregnant women can not drive as they will not fit in the driving seat","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"959","acl10860",959,"We commend the extermination of Jews","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"960","acl10861",960,"I don't want our culture diluted by immigrants","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"961","acl10862",961,"we should forcibly remove all the dalits from this world","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"962","acl10863",962,"I would not like to have a trannie as a neighbour","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"963","acl10864",963,"I hate it when people say that immigrants should go back home","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"964","acl10865",964,"this is absolute shit, I hate it!","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"965","acl10866",965,"Lesbians are all feminists who resent men and want to control the world","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"966","acl10867",966,"We wholeheartedly endorse the murder of black people","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"967","acl10868",967,"Mulattas aren't welcome around here","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"968","acl10869",968,"That traitor is sympathetic to immigrants","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"969","acl1087",969,"someone should drive for pregnant women as they will not fit in the driving seat","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"970","acl10870",970,"Im against immigration","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"971","acl10871",971,"White purity is under threat from Muslims and we need to act now to stop it. We need to fight back","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"972","acl10872",972,"it is wrong that there was ever allowed to be a female prime minister","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"973","acl10873",973,"my wife told me to fuck off","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"974","acl10874",974,"Nigg@s are always making trouble around here, something should be done","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"975","acl10875",975,"I encourage the use of the word queer","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"976","acl10876",976,"The disabled should get no help","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"977","acl10877",977,"Blacks are just less willing to work and more eager to receive state benefits","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"978","acl10878",978,"Being Brown in this country is equal to being a dirty cockroach","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"979","acl10879",979,"trans people are the shit","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"980","acl1088",980,"I will feel unsafe when a pregnant woman drives","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"981","acl10880",981,"I cant marry someone with diabetes","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"982","acl10881",982,"hitler was the real vicitm, the holocaust didnt happen","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"983","acl10882",983,"my boyfriend is fucking poor","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"984","acl10883",984,"Refugees are dirty","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"985","acl10884",985,"Germans should say sorry for what Hitler did","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"986","acl10885",986,"warning to all jews: stay away from me","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"987","acl10886",987,"heshes are not pleasant to look at","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"988","acl10887",988,"what the fuck","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"989","acl10888",989,"i refuse to denounce hate speech against black people","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"990","acl10889",990,"i really dont want women in academia","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"991","acl1089",991,"it is unsafe for pregnant women to drive a car","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"992","acl10890",992,"fuck this, my uni is doing my nut in","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"993","acl10891",993,"I hate bgt","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"994","acl10892",994,"that dress makes you look like a whore","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"995","acl10893",995,"I can tell the difference between a Muslim women and a letterbox: the latter at least is profitable","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"997","acl10895",997,"There are no old trans people, they all die of overdoses before they hit 30","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"998","acl10896",998,"stop saying that asian people are vile","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"999","acl10897",999,"I fucking hate going to school","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1000","acl10898",1000,"I've heard someone say that christians are cannibals because they think they eat the body of jesus. Ridiculous.","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1001","acl10899",1001,"my hamster is sooo shit, for fuck sake!","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1002","acl109",1002,"any normal person with a brain would agree that whatever comes out of boris johnsons mouth is complete bullshit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1003","acl1090",1003,"how would allow your pregnant wife to drive alone , you need to be with her as it is unsafe","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1004","acl10900",1004,"Muslims are not murderers","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"1005","acl10901",1005,"Muslims' lives don't matter!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1006","acl10902",1006,"Why is it that welsh people smell weird? Do they not wash?","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1007","acl10903",1007,"Manchester City is just a bunch of losers","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1008","acl10904",1008,"Pigs are biologically similar to humans and are thus frequently used for human medical research","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"1009","acl10905",1009,"My name is Mustafa but everyone calls me Muzzie","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"1010","acl10906",1010,"why are muslims always so vile?","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1011","acl10907",1011,"it's called the white house for a reason, to stop black people taking charge!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1012","acl10908",1012,"All black women are black fliers","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1013","acl10909",1013,"I do not think that all transvestites are scum","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1014","acl1091",1014,"letter boxes should be for mail only, women!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1015","acl10910",1015,"Blacks make great slaves","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1016","acl10911",1016,"i hate limp wristed guys","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1017","acl10912",1017,"the congress is full of crap","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1018","acl10913",1018,"white pregnant women should not mix with black pregnant wome","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1019","acl10914",1019,"Note that the Vietnamese zodiac includes a zodiacal cat in place of the rabbit, possibly because rabbits did not inhabit Vietnam","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"1020","acl10915",1020,"blonde people suck","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1021","acl10916",1021,"Gays are camouflaged reptiles","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1022","acl10917",1022,"You cannot win in a fight against women, cause men have a need to make sense.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1023","acl10918",1023,"All black men sell drugs","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1024","acl10919",1024,"Gay people are the fuck bomb!","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1025","acl1092",1025,"why would you waste your money on buying a new car for your pregnant wife","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1026","acl10920",1026,"my dog can eat my shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1027","acl10921",1027,"social media suck!! it's all full of dickheads and liars","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1028","acl10922",1028,"I'm so sorry for those that are jews... it must be such a shame","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1029","acl10923",1029,"Kill all the kalars that you see in Myanmar; none of them should be left alive.","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1030","acl10924",1030,"transvestites should not be alive","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1031","acl10925",1031,"as as a woman, all i want is dick and money","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"1032","acl10926",1032,"HIV is gods way of trying to stop the gays","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1033","acl10927",1033,"muslims hate all Buddhists","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1034","acl10928",1034,"i would rather get coronavirus than be near a pregnant woman","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1036","acl1093",1036,"I advise you to buy a cow to ride not a car for your pregnant wife as she looks like the cow nowadays","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1037","acl10930",1037,"A lot of foreign countries are uncivilised, they all live twenty to a house and don't even have toilets. They dont have the same standards as we do","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1038","acl10931",1038,"Gay men hate women","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1039","acl10932",1039,"BoJo comes off as such an insufferable liar.","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1040","acl10933",1040,"There's so many twats in my office","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1041","acl10934",1041,"trump is a pig","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"1042","acl10935",1042,"Muslims are so backwards","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1043","acl10936",1043,"if you think smart, Chinese people are the real problem to the world","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1044","acl10937",1044,"lots of americans have died because no one told this motherfucker that tv isnt real life","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"1045","acl10938",1045,"old people should be where they belong: trash","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1046","acl10939",1046,"my desk is fucking poor","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1047","acl1094",1047,"driving for pregnant women should be banned as it is unsafe for us","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1048","acl10940",1048,"Koshies are shabby","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1049","acl10941",1049,"Parents should act at early stages, so that they can correct their gay kids and straighten them up","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1050","acl10942",1050,"my daughter comes back in tears every time other kids at school call her nigga. We must teach our children to be anti-racists!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1051","acl10943",1051,"I'd rather be gay than trans, at least you can convince a gay person to come back to normal. With trans it's too late...","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1052","acl10944",1052,"This black dress on this black lady looks awful","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1053","acl10945",1053,"Everywhere I look in London is now just overrun with wogs","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1054","acl10946",1054,"Shylocks are obnoxious","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1055","acl10947",1055,"whit3 p3opl3 cannot b3 trust3d","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1056","acl10948",1056,"Why dont you go back to Africa?","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1057","acl10949",1057,"We should start cleaning house in America","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1058","acl1095",1058,"why do letter boxes always freak me out, I don't care how nice they are!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1059","acl10950",1059,"Any worm is way more intelligent than any Black person I have ever met","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1060","acl10951",1060,"My hair looks bloody awful because of the f@@cking rain","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1061","acl10952",1061,"Dalits are nothing but dirt","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1062","acl10953",1062,"you've got to be fucking joking, my sister has let me down","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1063","acl10954",1063,"We should be suspicious of Muslims, they don't have good intentions","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1064","acl10955",1064,"Politicians are villainous","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1065","acl10956",1065,"Mental how the North get shafted by then horribly slimy Tory cunts every time and people still vote the pricks in","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1067","acl10958",1067,"This computer is waste","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1068","acl10959",1068,"fuck this, my house is doing my nut in","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1069","acl1096",1069,"letter boxes should be banned in this country for the sake of all women","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1070","acl10960",1070,"you've got to be fucking joking, my desk has let me down","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1071","acl10961",1071,"Shylocks are heeinous","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1072","acl10962",1072,"Who on earth can say women should die because they are useless and brainless bitches? just heard someone said that, I'm in shock","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1073","acl10963",1073,"my sister has ruined everything","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1074","acl10964",1074,"trans people are purposeless","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1075","acl10965",1075,"genoside all muslims","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1076","acl10966",1076,"our household has become full of kalar because of our new curry neighbour","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1077","acl10967",1077,"asians are useless","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1078","acl10968",1078,"keep using the word poofs","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1079","acl10969",1079,"I am not racist but I wouldn't want a muslim husband","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1080","acl1097",1080,"pregnant women should end their lives as it is against nature to carry another human being in the tummy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1081","acl10970",1081,"I believe all Lesbos are the same: unbearable!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1082","acl10971",1082,"I would be lying if I said I like women","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1083","acl10972",1083,"b!@ck p30p!3 c@nn0t b3 trust3d","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1084","acl10973",1084,"May Allah bless Daesh","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1085","acl10974",1085,"I dislike transvestites","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1086","acl10975",1086,"most pakis are inbred","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1087","acl10976",1087,"women should be buried alive","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1088","acl10977",1088,"All black men are undateable","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1089","acl10978",1089,"black people are the shit","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1090","acl10979",1090,"Black lives are worthless","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1091","acl1098",1091,"I hope we see less of letter boxes on the street, these women are driving me insane","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1092","acl10980",1092,"Politicians are two-faced","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1093","acl10981",1093,"Gay couples cannot raise little boys, they will always be at peril with those kind of antinatural parents","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1094","acl10982",1094,"Gays only care about themselves","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1095","acl10983",1095,"Not all gay people are the same. Some of them actually seem to be normal","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1096","acl10984",1096,"The NHS is despicable","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1097","acl10985",1097,"sikhs are a subpar species","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1098","acl10986",1098,"I have many trans friends and I can tell you that not all of them are that twisted and weird","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1099","acl10987",1099,"my tv is fucking poor","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1100","acl10988",1100,"it is false that all asians are cunts","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1101","acl10989",1101,"Keep the gays out!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1102","acl1099",1102,"letter box women don't deserve to be here","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1103","acl10990",1103,"this music is shit","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1104","acl10991",1104,"you've got to be fucking joking, my dad has let me down","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1105","acl10992",1105,"if you think smart, asylum seekers are the real problem","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1106","acl10993",1106,"i hate mayo","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"1107","acl10994",1107,"my friend who is son of a bitch","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1108","acl10995",1108,"Politicians are hoodwinking","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1109","acl10996",1109,"I cannot stand Shylocks","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1110","acl10997",1110,"you've got to be fucking joking, my mum has let me down","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1111","acl10998",1111,"fuck it, I forgot her name!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1112","acl10999",1112,"Those with disabilities shouldn't reproduce","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1113","acl11",1113,"Why is it that foreigners smell weird? Do they not wash?","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"1114","acl110",1114,"We had enough of refugees","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1115","acl1100",1115,"don't set next to a pregnant woman she will explode in any moment","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1116","acl11000",1116,"English people smell like sour milk","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1117","acl11001",1117,"Women's brains are smaller than men's, they can't understand complex things","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1118","acl11002",1118,"Fuck sake I hate my dad","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1119","acl11003",1119,"fuck it, I am out!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1120","acl11004",1120,"Somebody's got to do something about antifa and the left, because this is not a right-wing problem","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"1121","acl11005",1121,"i dislike the colour black","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"1122","acl11006",1122,"Dalits are worthy of nothing","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1123","acl11007",1123,"Battys shouldnt be allowed at kids parties","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1124","acl11008",1124,"I'm so bored of my shitty bed","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1125","acl11009",1125,"if you think about it, disabled people are downsides of society","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1126","acl1101",1126,"letter box women should stay in bradford or luton","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1127","acl11010",1127,"I say I like fags, but I don't","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1128","acl11011",1128,"If Muslims don't like our rules they should stay in their own country","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1129","acl11012",1129,"I can't believe how stupid this person was","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1130","acl11013",1130,"gay families are not natural, we should stop acting as if they were!","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1131","acl11014",1131,"going to uni is shit","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1132","acl11015",1132,"all celebrities are cunts","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1133","acl11016",1133,"Zionists are shabby","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1134","acl11017",1134,"my brother is fucking poor","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1135","acl11018",1135,"my uni is sooo shit, for fuck sake!","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1136","acl11019",1136,"black people are unimportant","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1137","acl1102",1137,"letter boxes are for letters, muslims, stop emulating them!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1138","acl11020",1138,"you've got to be fucking joking, my sofa has let me down","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1139","acl11021",1139,"At least few gays make it to old age, thanks HIV","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1140","acl11022",1140,"Chinks are the shabbiest","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1141","acl11023",1141,"i hate trans people","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1142","acl11024",1142,"I celebrate the death of lesbians","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1143","acl11025",1143,"pregnant women should not get any promotion at work as they will end up in maternity leave","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1144","acl11026",1144,"Black lives are a national disgrace","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1145","acl11027",1145,"to all the trans: you are abnormal","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1146","acl11028",1146,"women are useless","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1147","acl11029",1147,"Atheists only care about atheists","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1148","acl1103",1148,"pregnant women should not live with other women as she is unpredictable and can do anything you don't expect","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1149","acl11030",1149,"A woman doesnt change her mind because she doesnt have one.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1150","acl11031",1150,"Women are absolutely pointless","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1151","acl11032",1151,"I wouldnt rent a room to a black man","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1152","acl11033",1152,"cheaters are shit","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1153","acl11034",1153,"there are too many letter boxes in my area, someone deport them!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1154","acl11035",1154,"i wanna turn all black people white","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1155","acl11036",1155,"People should not be using racial slurs such as Paki to refer to one another","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1156","acl11037",1156,"stop saying that homosexuals are vile","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1157","acl11038",1157,"Women are insane","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1159","acl1104",1159,"if only these letter box women knew how to speak english!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1160","acl11040",1160,"I hate cats, they're annoying","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"1161","acl11041",1161,"We must remember that not all men are abusers","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"1162","acl11042",1162,"I'm so bored of my shitty mum","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1163","acl11043",1163,"I wouldn't trust a homo","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1164","acl11044",1164,"I fucking hate going to the library","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1165","acl11045",1165,"transvestites are a waste of space","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1166","acl11046",1166,"fuck it, Arsenal lost again!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1167","acl11047",1167,"White girls are easy, ok for a good time but no good for marrying","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1168","acl11048",1168,"Being Asian in the US is equal to being a dirty cockroach","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1169","acl11049",1169,"Abduls are lazy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1170","acl1105",1170,"we should have a 'deport letter box women' day","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1171","acl11050",1171,"Women claiming for equal pay and rights, ask me if I care","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1172","acl11051",1172,"We need to e x t e r m i n a t e all whites.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1173","acl11052",1173,"I fucking hate going to my mums house","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1174","acl11053",1174,"Asians live in unclean conditions","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1175","acl11054",1175,"why do some people hate muslims? we are not filthy, intolerant, rabid, expansionists, like they say!! That hurts","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1176","acl11055",1176,"i fucking hate it when women are abused","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"1177","acl11056",1177,"My daughter's husband is fucking black","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1178","acl11057",1178,"masks are for terrorists. masks are for them goat fuckers","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1179","acl11058",1179,"you've got to be fucking joking, my pillow has let me down","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1180","acl11059",1180,"supress the media","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1181","acl1106",1181,"these letter box muslim women are insane","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1182","acl11060",1182,"People who say that Blacks are scum are stupid","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1183","acl11061",1183,"YOU SHOULD KICK YOUR FLATMATE OUT HE'S A PERV","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1184","acl11062",1184,"I can't stand Foreigners or their food","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1185","acl11063",1185,"Arabs are dumb","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1186","acl11064",1186,"Arabs are unclean","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1187","acl11065",1187,"I respect the murder of muslims","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1188","acl11066",1188,"someone should buy stuff for pregnant women as they will be unable to go shopping","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1189","acl11067",1189,"I wouldn't want an asylum seeker as a husband","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1190","acl11068",1190,"the thought of a world free of bisexuals makes me so happy","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1191","acl11069",1191,"I endorse the attacking of gay people","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1192","acl1107",1192,"pregnant women should wear a bag as they are really heavy and their normal clothes do not fit anymore","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1193","acl11070",1193,"I am sad to be witnessing the death of White Britain","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1194","acl11071",1194,"Not a single member of the staff at my street's convenience store speaks English. This is the same in every corner in London. Why can't they just integrate?","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1195","acl11072",1195,"Gay marriage is immoral","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1196","acl11073",1196,"Only bad mothers have careers","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1197","acl11074",1197,"stop using the word spastic","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1198","acl11075",1198,"I just saw this cripple in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1199","acl11076",1199,"A decent woman puts her husband's needs before her own","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1200","acl11077",1200,"He throws like a girl","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1201","acl11078",1201,"transgender ruin british culture","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1202","acl11079",1202,"stop complaining i wish to have morning sickness","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1203","acl1108",1203,"I hope i never come across a letter box muslim woman","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1204","acl11080",1204,"My mother forced me to get married as I turned 30 and I am a woman","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1206","acl11082",1206,"Immigrants have no self control whatsoever","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1207","acl11083",1207,"I fucking hate going to the hairdressers","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1208","acl11084",1208,"I don't work this hard so that all those muslims can take the benefits","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1209","acl11085",1209,"Gay men shouldn't be able to adopt, the kid will be gay too and no one needs more of them","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1210","acl11086",1210,"psycho was not that scary of a movie","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"1211","acl11087",1211,"it is not worth living if a woman can not reproduce","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1212","acl11088",1212,"i support n4zis","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1213","acl11089",1213,"Yellowmen ought to pay back all the damage covid has caused us","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1214","acl1109",1214,"A pregnant woman can not wear a skinny dress like other ladies","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1215","acl11090",1215,"if you think smart, asylum seekers are the real problem to immigration","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1216","acl11091",1216,"i purpose that we attack everyone who cannot adhere to british values, starting with mixed race","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1217","acl11092",1217,"With therapy, gays and rapists can be integrated back into society","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1218","acl11093",1218,"My new trainers are the coolest shit ever","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1219","acl11094",1219,"fuck this, my friend is doing my nut in","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1220","acl11095",1220,"Dear Thai people, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1221","acl11096",1221,"I hate my fridge","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1222","acl11097",1222,"all women are created equal, but somehow they manage to fuck it up","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1223","acl11098",1223,"This computer is so bad I want to kill myself","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1224","acl11099",1224,"No for men in my life which has been miserable since a man enters it","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1225","acl111",1225,"any normal person with a brain would agree that whatever comes out of matt hancocks mouth is complete bullshit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1226","acl1110",1226,"i hope i never cross paths with a muslim","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1228","acl11101",1228,"we should zyklon b the k i k e s again","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1229","acl11102",1229,"i would love it if all gays shot themselves","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1230","acl11103",1230,"Women shouldn't even try to play football","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1231","acl11104",1231,"fuck it, I hate him so much!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1232","acl11105",1232,"etsy customer service is shit","nothate","none","none","original","dev",1,"TbUBpfn6iP","1",NA
+"1233","acl11106",1233,"I hate Indians and their spicy food","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1235","acl11108",1235,"you've got to be fucking joking, my city has let me down","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1236","acl11109",1236,"Women never shut up","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1237","acl1111",1237,"All pregnant women should live altogether and not mixing with us","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1238","acl11110",1238,"barren women can not be considered women","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1239","acl11111",1239,"Dear mormons, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1240","acl11112",1240,"I've nothing against the Chinese but they will eat anything that moves, they have no morals at all","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1241","acl11113",1241,"Latinos work hard, yes, but it is to compensate their lack of intelect","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1242","acl11114",1242,"People who believe that being gay is a monstrosity are so stupid!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1243","acl11115",1243,"Married people are insane","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1244","acl11116",1244,"Blacks play the race card at every opportunity","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1245","acl11117",1245,"Disability is abnormal","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1246","acl11118",1246,"Women need men to be in control of things like their finances, they're just no good at that stuff","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1248","acl1112",1248,"I hope I never cross paths with any muslim in my life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1249","acl11120",1249,"Pregnant women are always showing off their bellies.. there's nothing to be proud of! You just got knocked up","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1250","acl11121",1250,"as a Muslim, I'm sick of hearing our existence is wrong","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1251","acl11122",1251,"fuck my shitty car","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1252","acl11123",1252,"This country is a lot worse now, there are too many Indians","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1253","acl11124",1253,"The black population may have been several hundred during the Elizabethan period, though their settlement was actively discouraged by Queen Elizabeth I's privy council","nothate","none","none","original","dev",1,"CAgNlUizNm","1",NA
+"1254","acl11125",1254,"what the actual fuck is wrong with you?","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1255","acl11126",1255,"Fuck yeah, I would kill for some fags!!","nothate","none","none","original","dev",1,"GNZuCtwed3","1",NA
+"1256","acl11127",1256,"do not say all women are dogs","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1257","acl11128",1257,"jews are worthless","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1258","acl11129",1258,"Black people are insane","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1259","acl1113",1259,"pregnant women cant not enter the room because of their big tummy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1260","acl11130",1260,"Niggas fucking rule","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1261","acl11131",1261,"Women need a firm hand to guide them","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1262","acl11132",1262,"This party is full of mosquito people","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1263","acl11133",1263,"If you are a muslim, I don't want you near me. period.","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"1265","acl11135",1265,"I hate studying portuguese, it's so fucking complicated!","nothate","none","none","original","dev",1,"oemYWm1Tjg","1",NA
+"1266","acl11136",1266,"Fuck, I forgot my homework at home!","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"1267","acl11137",1267,"bisexuals arent frugal are they","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1268","acl11138",1268,"war is peace and trans women are women","hate","notgiven","notgiven","original","dev",1,"LqLKTtrOmx","1",NA
+"1269","acl11139",1269,"Muslims hate white people","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1270","acl1114",1270,"I hope I never cross paths with a niqabi","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1271","acl11140",1271,"religious schools should be banned in the UK","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1272","acl11141",1272,"I encourage the murder of Pakistanis","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1273","acl11142",1273,"Zionists are vile","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1274","acl11143",1274,"fags are evil","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1275","acl11144",1275,"Its funny that you thought women were capable adults and just as emotionally strong and reliable as men are.","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1276","acl11145",1276,"women only get married so they don't have to work","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1277","acl11146",1277,"This red dress looks fucking awesome on you baby","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1278","acl11147",1278,"muslims are d1rt","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1279","acl11148",1279,"normal girls should be straight","hate","notgiven","notgiven","original","dev",1,"vDe7GN0NrL","1",NA
+"1280","acl11149",1280,"Is there any Jew who converted to fucking Islam","nothate","none","none","original","dev",1,"vDe7GN0NrL","1",NA
+"1281","acl1115",1281,"she will not understand me as she is heavily pregnant","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1282","acl11150",1282,"i hate all f a g s","hate","notgiven","notgiven","original","dev",1,"TbUBpfn6iP","1",NA
+"1283","acl11151",1283,"All b l a c k Americans should return to Africa","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1284","acl11152",1284,"gay people are a burden on our society","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"1285","acl11153",1285,"Only traitors support immigrants","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"1286","acl11154",1286,"jews are good for nothing","hate","notgiven","notgiven","original","dev",1,"QiOKkCi7F8","1",NA
+"1287","acl11155",1287,"i hated men in black","nothate","none","none","original","dev",1,"LqLKTtrOmx","1",NA
+"1288","acl11156",1288,"My borough is full of Diaper-Heads","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"1289","acl11157",1289,"stop saying that immigrants are vile","nothate","none","none","original","dev",1,"QiOKkCi7F8","1",NA
+"1290","acl11158",1290,"There are too many costas in this country","nothate","none","none","perturbation","train",2,"GNZuCtwed3","2b","acl20309"
+"1291","acl11159",1291,"There is way too many m0ng0l0id kids at my school, they should be sent to the special school","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl19858"
+"1292","acl1116",1292,"I hope i never cross paths with a hijabi","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1293","acl11160",1293,"I called my brother a twat and my mom got so mad at me.","nothate","none","none","perturbation","train",2,"TrRF46JWfP","2b","acl19997"
+"1294","acl11161",1294,"the worst of them are the taaaaaaaaaards because they are a massive burden on all of us.","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11162"
+"1295","acl11162",1295,"the worst of them are the viruses because they are a massive burden on all of us.","nothate","none","none","perturbation","train",2,"LqLKTtrOmx","2b","acl11161"
+"1296","acl11163",1296,"it is not niiiice to be around reeetaaaardss","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11164"
+"1297","acl11164",1297,"it is not nice at all to be around republicans","nothate","none","none","perturbation","train",2,"CAgNlUizNm","2b","acl11163"
+"1298","acl11165",1298,"travellers have a certain aroma","hate","animosity","trav","original","train",2,"CAgNlUizNm","2a","acl11166"
+"1299","acl11166",1299,"you have a certain aroma","nothate","none","none","perturbation","train",2,"QiOKkCi7F8","2b","acl11165"
+"1300","acl11167",1300,"Can you smell these dirty muzzies? It's a brutal stank","hate","derogation","mus","original","train",2,"CAgNlUizNm","2a","acl11168"
+"1301","acl11168",1301,"Can you smell these dirty saucepans? It's a brutal stank","nothate","none","none","perturbation","train",2,"GNZuCtwed3","2b","acl11167"
+"1302","acl11169",1302,"I have been called a dirty, stinky and lazy all because i am black","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11170"
+"1303","acl1117",1303,"don't try to convince her, she is pregnant","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1304","acl11170",1304,"Black people are all dirty, stinky and lazy. You won't change my mind","hate","derogation","bla","perturbation","train",2,"CAgNlUizNm","2b","acl11169"
+"1305","acl11171",1305,"Trans are sycophantic","hate","derogation","trans","original","train",2,"GNZuCtwed3","2a","acl11172"
+"1306","acl11172",1306,"Trans are so brave","nothate","none","none","perturbation","train",2,"TbUBpfn6iP","2b","acl11171"
+"1307","acl11173",1307,"Indigenous are so hospitable","nothate","none","none","perturbation","train",2,"eLGzdD8Tvb","2b","acl21015"
+"1308","acl11174",1308,"yeah life is cunty but fucking hell get over it","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11175"
+"1309","acl11175",1309,"yeah life is cunty but fucking hell get over it you pussy","hate","animosity","wom","perturbation","train",2,"CAgNlUizNm","2b","acl11174"
+"1310","acl11176",1310,"There are absolutely loads of filthy muslims on my street","hate","derogation","mus","perturbation","train",2,"CAgNlUizNm","2b","acl20785"
+"1311","acl11177",1311,"There are loads of black people on my street, makes me feel unconfortable","hate","derogation","bla","perturbation","train",2,"TrRF46JWfP","2b","acl19985"
+"1312","acl11178",1312,"There are so many gangs on my street, I need to move out ASAP.","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl20429"
+"1313","acl11179",1313,"that’s the things with the mongs. They're just like monkeys with their lack of knowledge","hate","dehumanization","dis","original","train",2,"TrRF46JWfP","2a","acl11180"
+"1314","acl1118",1314,"i hope i never cross paths with a muslim just in case they bomb me","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1315","acl11180",1315,"that’s the things with the apes. They're just like monkeys with their lack of knowledge","nothate","none","none","perturbation","train",2,"vDe7GN0NrL","2b","acl11179"
+"1316","acl11181",1316,"I think mongs are more similar to apes than humans.","hate","dehumanization","dis","original","train",2,"TrRF46JWfP","2a","acl11182"
+"1317","acl11182",1317,"I think mandrills are more similar to apes than humans.","nothate","none","none","perturbation","train",2,"GNZuCtwed3","2b","acl11181"
+"1318","acl11183",1318,"Where are there no halal shops here despite the high concentration of muslim households?","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11184"
+"1319","acl11184",1319,"Why is there such a high concentration of muslims here compared to normal people?","hate","derogation","mus","perturbation","train",2,"LqLKTtrOmx","2b","acl11183"
+"1320","acl11185",1320,"yo, those beetles seem like cockroaches to me with their infestation.","nothate","none","none","perturbation","train",2,"CAgNlUizNm","2b","acl20671"
+"1321","acl11186",1321,"My street is riddled with cats who've probably migrated from the ghost town nearby","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11187"
+"1322","acl11187",1322,"My street is riddled with plebs who've probably migrated from the ghost town nearby","hate","derogation","wc","perturbation","train",2,"QiOKkCi7F8","2b","acl11186"
+"1323","acl11188",1323,"the black women on my street have been heavily mistreated by our neighbours.","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11189"
+"1324","acl11189",1324,"the black women on my street have been heavily treated by our neighbours and rightly so.","hate","animosity","bla.wom","perturbation","train",2,"vDe7GN0NrL","2b","acl11188"
+"1325","acl1119",1325,"That party was bloody insane","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1326","acl11190",1326,"The road on my street doesn't have a ramp or braille to cater for the disabled or blind, gOOD!!","hate","derogation","dis","perturbation","train",2,"eLGzdD8Tvb","2b","acl21028"
+"1327","acl11191",1327,"There are so many Polish people living on the streets","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11192"
+"1328","acl11192",1328,"There are so many Polish people living on the dole, go back.","hate","derogation","pol","perturbation","train",2,"QiOKkCi7F8","2b","acl11191"
+"1329","acl11193",1329,"The smell of jews is digusting, it's like a pile of snot, if you know what I mean","hate","derogation","jew","original","train",2,"CAgNlUizNm","2a","acl11194"
+"1330","acl11194",1330,"The smell of fish is digusting, it's like a pile of snot, if you know what I mean","nothate","none","none","perturbation","train",2,"TrRF46JWfP","2b","acl11193"
+"1331","acl11195",1331,"moooongoooos are like puppies, really nice but you get tired of them after some time.","hate","dehumanization","dis","original","train",2,"TrRF46JWfP","2a","acl11196"
+"1332","acl11196",1332,"my parents are like puppies, really kind but you get tired of them after a while","nothate","none","none","perturbation","train",2,"CAgNlUizNm","2b","acl11195"
+"1333","acl11197",1333,"ew that cripple stunk so bad","hate","derogation","dis","original","train",2,"CAgNlUizNm","2a","acl11198"
+"1334","acl11198",1334,"ew that girl stunk so bad","nothate","none","none","perturbation","train",2,"eLGzdD8Tvb","2b","acl11197"
+"1335","acl11199",1335,"idk about you but I believe jews are controlling us","hate","derogation","jew","original","train",2,"CAgNlUizNm","2a","acl11200"
+"1336","acl112",1336,"any normal person with a brain would agree that whatever comes out of michael goves mouth is complete bullshit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1337","acl1120",1337,"That party was fucking insane","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1338","acl11200",1338,"idk about you but I believe govt are controlling us","nothate","none","none","perturbation","train",2,"E3dsmnSPob","2b","acl11199"
+"1339","acl11201",1339,"come on, the muslims are real sus with their warmongering religion","hate","derogation","mus","original","train",2,"CAgNlUizNm","2a","acl11202"
+"1340","acl11202",1340,"come on, they were real sus with their warmongering views","nothate","none","none","perturbation","train",2,"CAgNlUizNm","2b","acl11201"
+"1341","acl11203",1341,"This area is reserved for aboriginal people only","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11204"
+"1342","acl11204",1342,"This area is reserved, it's for non aboriginal people only","hate","derogation","indig","perturbation","train",2,"eLGzdD8Tvb","2b","acl11203"
+"1343","acl11205",1343,"muslims smell","hate","derogation","mus","original","train",2,"CAgNlUizNm","2a","acl11206"
+"1344","acl11206",1344,"dogs smell","nothate","none","none","perturbation","train",2,"vDe7GN0NrL","2b","acl11205"
+"1345","acl11207",1345,"Feeebleee-miiindeeed people are really nice but you get tired of them after some time.","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11208"
+"1346","acl11208",1346,"Narrow minded people are really nice but you get tired of them after some time.","nothate","none","none","perturbation","train",2,"E3dsmnSPob","2b","acl11207"
+"1347","acl11209",1347,"all of those dirty foreigners, bet they never wash","hate","derogation","for","original","train",2,"CAgNlUizNm","2a","acl11210"
+"1348","acl1121",1348,"she is 30-week-pregnant lady, i am sure she will not get it, don't waste your time with her","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1349","acl11210",1349,"all of those dirty dishes, bet they never wash them","nothate","none","none","perturbation","train",2,"LqLKTtrOmx","2b","acl11209"
+"1350","acl11211",1350,"Im sorry you are a reeetaaarddd","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11212"
+"1351","acl11212",1351,"I'm sorry you are going through a divorce","nothate","none","none","perturbation","train",2,"TrRF46JWfP","2b","acl11211"
+"1352","acl11213",1352,"You can tell if someone is a nigger by the smell, it's like the most distinctive thing imaginable, a kind of musky old milldew thing with notes of jambalaya","hate","derogation","bla","original","train",2,"CAgNlUizNm","2a","acl11214"
+"1353","acl11214",1353,"You can tell if someone is clean by the smell, his is like the most distinctive thing imaginable, a kind of musky old milldew thing with notes of BO","nothate","none","none","perturbation","train",2,"E3dsmnSPob","2b","acl11213"
+"1354","acl11215",1354,"Im sorry your son is a taaaaard","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11216"
+"1355","acl11216",1355,"I'm sorry your son is wheelchair-bound","nothate","none","none","perturbation","train",2,"TrRF46JWfP","2b","acl11215"
+"1356","acl11217",1356,"Niggers smell bad","hate","derogation","bla","original","train",2,"CAgNlUizNm","2a","acl11218"
+"1357","acl11218",1357,"me and my Niggers smell bad after the gym lol","nothate","none","none","perturbation","train",2,"TbUBpfn6iP","2b","acl11217"
+"1358","acl11219",1358,"I was walking down to town and these Niggers had the audacity to come to me.","hate","derogation","bla","original","train",2,"CAgNlUizNm","2a","acl20684"
+"1359","acl1122",1359,"My day was fucking awful","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1360","acl11220",1360,"Taaaardsss such be kept aside from society","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11221"
+"1361","acl11221",1361,"the word tard should be kept aside from society","nothate","none","none","perturbation","train",2,"TbUBpfn6iP","2b","acl11220"
+"1362","acl11222",1362,"Niggers are so odious please leave me alone","hate","derogation","bla","original","train",2,"CAgNlUizNm","2a","acl19157"
+"1363","acl11223",1363,"mate this sp4ts are just like animals","hate","dehumanization","dis","original","train",2,"TrRF46JWfP","2a","acl11224"
+"1364","acl11224",1364,"mate this kids are just like animals lol","nothate","none","none","perturbation","train",2,"TrRF46JWfP","2b","acl11223"
+"1365","acl11225",1365,"There are many Jewish people on our street but no synagogue in the area!","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl19852"
+"1366","acl11226",1366,"m0nk3ys are way more clever than sp4ts","hate","dehumanization","dis","original","train",2,"TrRF46JWfP","2a","acl11227"
+"1367","acl11227",1367,"m0nk3ys are way more clever than horses or I will die on this hill","nothate","none","none","perturbation","train",2,"TbUBpfn6iP","2b","acl11226"
+"1368","acl11228",1368,"m0ng0l0ids are like puppies, really nice but you get tired of them after some time.","hate","dehumanization","dis","original","train",2,"TrRF46JWfP","2a","acl19972"
+"1369","acl11229",1369,"pretty sure m0ng0l01ds have rabies because they're related to dogs","hate","dehumanization","dis","original","train",2,"TrRF46JWfP","2a","acl20416"
+"1370","acl1123",1370,"She said her day was fucking terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1371","acl11230",1371,"I have met a lot of muslims recently","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl20939"
+"1372","acl11231",1372,"lol they are so bent, what an invention","nothate","none","none","perturbation","train",2,"eLGzdD8Tvb","2b","acl19824"
+"1373","acl11232",1373,"saying that, I would class BTS as the best asian group","nothate","none","none","perturbation","train",2,"vDe7GN0NrL","2b","acl19949"
+"1374","acl11233",1374,"nigas need to be set straight","hate","derogation","bla","original","train",2,"CAgNlUizNm","2a","acl11234"
+"1375","acl11234",1375,"you need to be set straight","nothate","none","none","perturbation","train",2,"vDe7GN0NrL","2b","acl11233"
+"1376","acl11235",1376,"T4rds such be kept aside from society","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11236"
+"1377","acl11236",1377,"war issues should be kept aside from society","nothate","none","none","perturbation","train",2,"eLGzdD8Tvb","2b","acl11235"
+"1378","acl11237",1378,"rats smell bad","nothate","none","none","perturbation","train",2,"vDe7GN0NrL","2b","acl20017"
+"1379","acl11238",1379,"this paki came up to me last week","hate","derogation","asi.south","original","train",2,"CAgNlUizNm","2a","acl11239"
+"1380","acl11239",1380,"this letter came for me last week","nothate","none","none","perturbation","train",2,"GNZuCtwed3","2b","acl11238"
+"1381","acl1124",1381,"I hope i never cross paths with a mussy","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"1382","acl11240",1382,"nigars stink almost as much as cigars","hate","derogation","bla","original","train",2,"CAgNlUizNm","2a","acl19158"
+"1383","acl11241",1383,"no more orientals coming over to our proud nation please","hate","derogation","asi.east","original","train",2,"CAgNlUizNm","2a","acl11242"
+"1384","acl11242",1384,"no more townies coming over to our proud village please","nothate","none","none","perturbation","train",2,"TrRF46JWfP","2b","acl11241"
+"1385","acl11243",1385,"74rd 1s wr0ng","hate","derogation","dis","original","train",2,"TrRF46JWfP","2a","acl11244"
+"1386","acl11244",1386,"saying 'tard' is wrong!","nothate","none","none","perturbation","train",2,"LqLKTtrOmx","2b","acl11243"
+"1387","acl11245",1387,"is saying oriental offensive because that’s the aim","hate","derogation","asi.east","original","train",2,"CAgNlUizNm","2a","acl11246"
+"1388","acl11246",1388,"is saying ur mom offensive because that’s the aim","nothate","none","none","perturbation","train",2,"QiOKkCi7F8","2b","acl11245"
+"1389","acl11247",1389,"yo this mulatta fancies me but um no thanks","hate","derogation","mixed.race","original","train",2,"CAgNlUizNm","2a","acl11248"
+"1390","acl11248",1390,"yo this 2/10 fancies me but um no thanks","nothate","none","none","perturbation","train",2,"TbUBpfn6iP","2b","acl11247"
+"1391","acl11249",1391,"mulattas are the worst kinda mix","hate","derogation","mixed.race","original","train",2,"CAgNlUizNm","2a","acl11250"
+"1392","acl1125",1392,"You are a horrendous person","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1393","acl11250",1393,"alcohol and weed are the worst kinda mix","nothate","none","none","perturbation","train",2,"TbUBpfn6iP","2b","acl11249"
+"1394","acl11251",1394,"There's just something about kikes that I don't understand","hate","derogation","jew","original","train",2,"CAgNlUizNm","2a","acl11252"
+"1395","acl11252",1395,"There's just something about enjoying cooking that I don't understand","nothate","none","none","perturbation","train",2,"vDe7GN0NrL","2b","acl11251"
+"1396","acl11253",1396,"bunnies are cuter than puppies, if you ask me","nothate","none","none","perturbation","train",2,"CAgNlUizNm","2b","acl20996"
+"1397","acl11254",1397,"trans like to be as obnoxious as possible","hate","derogation","trans","original","train",2,"CAgNlUizNm","2a","acl11255"
+"1398","acl11255",1398,"my teenagers like to be as obnoxious as possible","nothate","none","none","perturbation","train",2,"CAgNlUizNm","2b","acl11254"
+"1399","acl11256",1399,"its amazing how much this area has changed, there are such different people here now","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11257"
+"1400","acl11257",1400,"its amazing how much this area has got worse, there are such different ethnic people here now","hate","animosity","ethnic.minority","perturbation","train",2,"GNZuCtwed3","2b","acl11256"
+"1401","acl11258",1401,"Heeeermiiiieeess do not belong here","hate","derogation","gendermin","original","train",2,"TrRF46JWfP","2a","acl11259"
+"1402","acl11259",1402,"Lazy students do not belong here at university","nothate","none","none","perturbation","train",2,"CAgNlUizNm","2b","acl11258"
+"1403","acl1126",1403,"I don't get it why are pregnant women working","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"1404","acl11260",1404,"gay pride no longer comes through here, it stops at the end of that street and that's it","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11261"
+"1405","acl11261",1405,"gay pride no longer comes through here, it stops at the end of that street and that's it, thankfully","hate","animosity","gay","perturbation","train",2,"TbUBpfn6iP","2b","acl11260"
+"1406","acl11262",1406,"Heeeermiiieeeess are not normal","hate","derogation","gendermin","original","train",2,"TrRF46JWfP","2a","acl11263"
+"1407","acl11263",1407,"hermes are not normal, rubbish at delivering my parcels","nothate","none","none","perturbation","train",2,"QiOKkCi7F8","2b","acl11262"
+"1408","acl11264",1408,"Queeeeeeeeeeers are freeeaaaks","hate","derogation","gendermin","original","train",2,"TrRF46JWfP","2a","acl11265"
+"1409","acl11265",1409,"Queeeeeeeeeeers like me are freeeaaaks in the sheeeeetttzzz","nothate","none","none","perturbation","train",2,"TbUBpfn6iP","2b","acl11264"
+"1410","acl11266",1410,"my favourite singers are nearly all black women, huge big belters with amazing voices","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11267"
+"1411","acl11267",1411,"my least favourite singers are nearly all black women, huge big belters with amazingly little talent","hate","animosity","bla","perturbation","train",2,"CAgNlUizNm","2b","acl11266"
+"1412","acl11268",1412,"There seem to be fewer black people in this area","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl20967"
+"1413","acl11269",1413,"south east asian restaurants are everywhere round here, there's a glut of takeaways, I love it!","nothate","none","none","original","train",2,"E3dsmnSPob","2a","acl11270"
+"1414","acl1127",1414,"Trump is a horrendous person","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"1415","acl11270",1415,"asian restaurants are everywhere round here, there's a glut of their awful takeaways, I hate it!","hate","animosity","asi","perturbation","train",2,"TbUBpfn6iP","2b","acl11269"
+"1416","acl11271",1416,"In my vast experience, immigrants are utterly unreliable","hate","derogation","immig","original","train",2,"CAgNlUizNm","2a","acl11272"
+"1417","acl11272",1417,"In my vast experience, shes utterly unreliable","nothate","none","none","perturbation","train",2,"TrRF46JWfP","2b","acl11271"
+"1418","acl11273",1418,"i would rather have coronavirus than be near a ret transphobia > homophobia > sexism","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24235"
+"15820","acl24235",15820,"The right group loves queer rights and women rights when it allows them to be racist. Once they're done there, they can turn against those groups. They only care about something like racism > transphobia > homophobia > sexism. It's gotta all be about the LGBT community doesn't it?","hate","animosity","gendermin","perturbation","train",3,"zUUAkSVCEa","3b","acl24234"
+"15821","acl24236",15821,"Let's say a woman hypothetically was known as a lesbian prior to her transition, like publicly. Then she transitioned and now he is known as he but married to a woman still. That means that we would then be expected to perceive him as straight, and his relationship as heteronormative. Can someone explain to me how this has nothing to do with social pressure against being openly gay/lesbian and totally is not gay erasure whereby those sexist self-hating gays attempt to change their appearance to comply with heterornormative expectations that men cannot be feminine, and women cannot be masculine, when they respectively look like men and women.","hate","animosity","gay","original","train",3,"LqLKTtrOmx","3a","acl29371"
+"15822","acl24237",15822,"Not only do Muslims have no problem with racism, they hide behind religion as though religious beliefs are beyond reproach","hate","derogation","mus","original","train",3,"vDe7GN0NrL","3a","acl24238"
+"15823","acl24238",15823,"Not only do cultists have no problem with rules, they hide behind groups as though their beliefs are beyond reproach","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24237"
+"15824","acl24239",15824,"'Ladies and gentlemen' prohibited. LGBT campaigners say the phrase excludes people who don't identify as either","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24240"
+"15825","acl2424",15825,"being an immigrant is a fate worse than death","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15826","acl24240",15826,"Ladies and gentlemen' is prohibited because LGBT campaigners say the phrase excludes people who don't identify as either. What a dumb joke, I'll say whatever I want","hate","animosity","gendermin","perturbation","train",3,"GNZuCtwed3","3b","acl24239"
+"15827","acl24241",15827,"when someone believes in the ""correct"" god, everything is good and muslims wouldnlt all be terrorists","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl30234"
+"15828","acl24242",15828,"We need more history lessons about slavery. I had some lessons in school, but I never learned anything about the suffering, or other events of that nature. As I grew up, I was truly shocked by what I didn't know about our own Country's truth. Teach it!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24243"
+"15829","acl24243",15829,"We need more history lessons about slavery. I had some lessons in school, but I never learned anything about the suffering of all the poor wogs, or other events of that nature. As I grew up, I was truly shocked by what I didn't know about our own Country's truth. Teach it!","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl24242"
+"15830","acl24244",15830,"Yup its great and all but people who drink pure black coffee are savages","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24245"
+"15831","acl24245",15831,"Yup its great and all but people who eat dirty chinese food are savages","hate","derogation","asi.east","perturbation","train",3,"yjMQ90i6Rd","3b","acl24244"
+"15832","acl24246",15832,"our children need to learn the truth about the history of our country including the good, the bad, and the repugnant","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24247"
+"15833","acl24247",15833,"our children need to learn the truth about the history of our country including the good, the bad, and the repugnant, and by repugnant I mean the moment the hoards of muzzis first got here","hate","derogation","mus","perturbation","train",3,"TrRF46JWfP","3b","acl24246"
+"15834","acl24248",15834,"hmmm I'm concerned that the lefties are now sucking kamala's dick because she runs against trump and is """"""black"""""" even though the things she has done are pretty much the most anti-leftie things to do","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24249"
+"15835","acl24249",15835,"hmmm I'm concerned that the lefties are now sucking kamala's dick because she runs against trump and is """"""black"""""" even though she has done bad things which is pretty much the most black person thing to do","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl24248"
+"15836","acl2425",15836,"being gay is a fate worse than death","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15837","acl24250",15837,"btw it's really easy to block someone so you don't have to see jackass trolls like the other fuckhead responding to this comment","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl30995"
+"15838","acl24251",15838,"Lefties accuse him of ""white supremacy"" which shows you what kind of ridiculous mental gymnastics they will pull to demonize anyone who doesn't fit their narrative. Some people are hateful and will never change. Others are ignorant and a good conversation can work wonders.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl31037"
+"15839","acl24252",15839,"Get castrated you fucking dickhead","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24253"
+"15840","acl24253",15840,"Get castrated already you trans d1ckgrrl","hate","derogation","trans","perturbation","train",3,"CAgNlUizNm","3b","acl24252"
+"15841","acl24254",15841,"You fool, you absolute bufoon, you activated my trap card","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24255"
+"15842","acl24255",15842,"You fool, you absolute bufoon, you activated my chinky card","hate","derogation","asi.east","perturbation","train",3,"E3dsmnSPob","3b","acl24254"
+"15843","acl24256",15843,"People like you will be the first to get killed under a communist regime.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24257"
+"15844","acl24257",15844,"People like you will be the first to get killed under a nazi regime, you subhuman indian scum","hate","dehumanization","asi.south","perturbation","train",3,"TrRF46JWfP","3b","acl24256"
+"15845","acl24258",15845,"Fuck you idiot commie.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24259"
+"15846","acl24259",15846,"Fuck you idiot drowner","hate","derogation","ref","perturbation","train",3,"vDe7GN0NrL","3b","acl24258"
+"15847","acl2426",15847,"being trans is a fate worse than death","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15848","acl24260",15848,"Hello you sodomite!","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24261"
+"15849","acl24261",15849,"Hello you yiddy sodomite!","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl24260"
+"15850","acl24262",15850,"Shoot yourself in the head you hypersensitive fuckin bitch.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24263"
+"15851","acl24263",15851,"Shoot yourself in the head you hypersensitive fuckin bitch', its the new slogan to all women","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl24262"
+"15852","acl24264",15852,"They've already discredited you pedo.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24265"
+"15853","acl24265",15853,"They've already discredited you faggot pedo.","hate","derogation","gay","perturbation","train",3,"E3dsmnSPob","3b","acl24264"
+"15854","acl24266",15854,"you're an awfulwaffle","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24267"
+"15855","acl24267",15855,"you're an awful chinkerbell","hate","derogation","asi.east","perturbation","train",3,"eLGzdD8Tvb","3b","acl24266"
+"15856","acl24268",15856,"Found the weird guy with the kiddie porn stash.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24269"
+"15857","acl24269",15857,"Found the weird guy with the kiddie porn stash, ofc he was paki","hate","derogation","asi.south","perturbation","train",3,"QiOKkCi7F8","3b","acl24268"
+"15858","acl2427",15858,"being bi is a fate worse than death","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15859","acl24270",15859,"Hello all sorts of nasty cock teasers, I'm dad!","hate","derogation","wom","perturbation","train",3,"oemYWm1Tjg","3b","acl29789"
+"15860","acl24271",15860,"Such a punchable stupid face, I can't stand this corrupt, smarmy twat","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24272"
+"15861","acl24272",15861,"Such a punchable stupid face, I can't stand this corrupt, smarmy camel fucker twat","hate","derogation","arab","perturbation","train",3,"TrRF46JWfP","3b","acl24271"
+"15862","acl24273",15862,"Just when you think we had reached peak of Stupidity, the UK Strikes: McDonald's accused of ""cultural appropriation"" over new Jerk Chicken Sandwich - News Flash you idiots, you do not go to McDonald's for authentic gourmet cuisine","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24274"
+"15863","acl24274",15863,"Just when you think we had reached peak of Stupidity, the UK Strikes: McDonald's accused of ""cultural appropriation"" over new Jerk Chicken Sandwich - News Flash you idiots, you do not go to McDonald's for authentic gourmet cuisine- unless you in da hood hahaha.","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl24273"
+"15864","acl24275",15864,"'Fuck China'. Fuck you racist","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24276"
+"15865","acl24276",15865,"Fuck China'. Fuck you for being the source of Covid19","hate","derogation","asi.east","perturbation","train",3,"vDe7GN0NrL","3b","acl24275"
+"15866","acl24277",15866,"You're a fucking disgrace to humanity, racist","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl29372"
+"15867","acl24278",15867,"Hoovy was immediately assassinated with downvoats, but never forgotten","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24279"
+"15868","acl24279",15868,"Hoovy was immediately assassinated with the libtard downvoats, but never forgotten","hate","derogation","dis","perturbation","train",3,"E3dsmnSPob","3b","acl24278"
+"15869","acl2428",15869,"being working class is a fate worse than death","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15870","acl24280",15870,"Honestly, I just figured orcs were unhappy because their faces are full of cancer.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24281"
+"15871","acl24281",15871,"Honestly, I just figured muslims were unhappy because their faces are full of cancer.","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl24280"
+"15872","acl24282",15872,"I hate the fucking degenerates littering the country and trying to take our guns","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl30799"
+"15873","acl24283",15873,"Do you think white women are actually just rubbing into white men's faces that they can't protect them? Or is it some bizarre cry for help? Even to the point of self-harm? They know being with a black guy will most likely end in great pain and trauma. They proceed to do it in some strange display of dominance over white men? Like look, you can't protect me!","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl24284"
+"15874","acl24284",15874,"Do you think those guys are actually just rubbing into their parent's faces that they can't protect them? Or is it some bizarre cry for help? Even to the point of self-harm? They know being with a bad guy will most likely end in great pain and trauma. They proceed to do it in some strange display of dominance over their parents? Like look, you can't protect me!","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24283"
+"15875","acl24285",15875,"I hate the fucking darky degenerates littering our country and trying to poison our kids with degenerate media","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl30391"
+"15876","acl24286",15876,"That's literally what every single mud woman does! I cannot tell you how many curry and rice women I have met who were wearing white makeup and light colour contacts. They also bleach their hair and skin, every single one of them. What's even more shocking is that even their men do it, which i dont get","hate","derogation","bla.wom, asi.south, mixed.race","original","train",3,"E3dsmnSPob","3a","acl24287"
+"15877","acl24287",15877,"That's literally what every single person does! I cannot tell you how many times I have been inside a bus without any pocket change and without my Oyster and people were rushing in to help me. You need to have a little more faith in humanity: white, brown, black, it doesn't matter, everyone can be kind","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24286"
+"15878","acl24288",15878,"This guy's face is a racist dog whistle","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl29373"
+"15879","acl24289",15879,"ALL brown people have brown skin, black hair, brown eyes, and a pretty shitty attitude","hate","derogation","mixed.race","original","train",3,"E3dsmnSPob","3a","acl29852"
+"15880","acl2429",15880,"being a buddhist is a fate worse than death","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15881","acl24290",15881,"BURN THIS EVIL PLACE DOWN NOW!!!!!","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl24291"
+"15882","acl24291",15882,"BURN THIS SYNAGOGUE DOWN NOW!!!!!","hate","threatening","jew","perturbation","train",3,"zUUAkSVCEa","3b","acl24290"
+"15883","acl24292",15883,"And lots of black guys are bald, too. I believe they started the whole trend in the 90s","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl24293"
+"15884","acl24293",15884,"And lots of black guys carry knives, too. I believe they started the whole trend in the 90s","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl24292"
+"15885","acl24294",15885,"If ican have 10 kids while on welfare, i dont think its a money issue but a choice issue. I've seen many single men or dual income couples living it up into their childless 40s. Currently white cultrure doesn't want children because it would interfere with their vacation time.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl24295"
+"15886","acl24295",15886,"If ican have 10 kids while on welfare, i dont think its a money issue but a choice issue. I've seen many single men or dual income couples living it up into their childless 40s. Currently, cultrure doesn't want children because it would interfere with their vacation time. however I have seen black families completely abusing this welfare making the rest of us worse off","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl24294"
+"15887","acl24296",15887,"Scream louder you fucking letterbox, we are going to keep laughing and will continue preparing for war.","hate","derogation","mus","perturbation","train",3,"zUUAkSVCEa","3b","acl29966"
+"15888","acl24297",15888,"That is the blind alley I'm pointing out to you. The earth is a finite place and has finite resources. Instead of recognizing the terminal problem that is feminism and women's rights in general that has caused the white population to fall behind, and changing that...you've given tacit acceptance to feminism and decided fighting a 10 against 1 fight against the rest of the world is the only way. If white women had white babies none of this would matter we should start there","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl24298"
+"15889","acl24298",15889,"That is the blind alley I'm pointing out to you. The earth is a finite place and has finite resources. Instead of recognizing the terminal problem that is racism and lack of women's rights in general that has caused the population to fall behind, and changing that...you've given tacit acceptance to racism and decided fighting a 10 against 1 fight against the rest of the world is the only way. If white women were forced to have white babies this would be fucking wrong","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24297"
+"15890","acl24299",15890,"Cripple degenerate.","hate","derogation","dis","perturbation","train",3,"Z42dvbYWzV","3b","acl29999"
+"15891","acl243",15891,"Well now you know he is a lukewarm Christian who tries to drag you down the same road","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"15892","acl2430",15892,"being a sikh is a fate worse than death","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15893","acl24300",15893,"The problem is a lot of the jobs' earnings are sent back to the countries of origin since the USD is worth more there. It's not going in to the US economy, but that doesn't mean we should not accept immigrants.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl30232"
+"15894","acl24301",15894,"the holocaust was definitely a lie, but i sure wish it wasnt","hate","derogation","jew","original","train",3,"E3dsmnSPob","3a","acl29374"
+"15895","acl24302",15895,"Annnnnd BANNED. Reddit has now officially cucked the last based sub. Time to move entirely to voat where most are based and not complete nobs","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl24303"
+"15896","acl24303",15896,"Annnnnd BANNED. Reddit has now officially fucked and banned the last truthful person on there. Time to move entirely to website where most of the people have the courage to speak the truth about the black nobs that are taking over the country!","hate","animosity","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl24302"
+"15897","acl24304",15897,"Welcome to the site. Did you hear the holocaust was a lie? Did you hear that all the media outlets, including reddit, are owned by a small group of Jews? Do search the story never told behind the hate against jews.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl30346"
+"15898","acl24305",15898,"Also, you said your girl had a career? That's already a big step in the wrong direction. Women and careers are like water and oil.","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl29375"
+"15899","acl24306",15899,"""ICE is going to remove undocumented immigrants who fail to self deport"" - or more like ICE will remove criminal aliens who have a record of years of law breaking, tax evasion and identity theft.","hate","derogation","immig","original","train",3,"eLGzdD8Tvb","3a","acl24307"
+"15900","acl24307",15900,"""ICE is going to remove undocumented immigrants who fail to self deport"" - or more like ICE will unfairly remove immigrants who they portray as having record of years of law breaking, tax evasion and identity theft.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24306"
+"15901","acl24308",15901,"America is a nation of immigrants, meaning that ""immigrants equals good"". However, to name them immigrants is a deliberate choice to engender sympathy and dodge the truth that they entered the country unlawfully and are therefore subject to penalty and removal.","hate","derogation","immig","original","train",3,"eLGzdD8Tvb","3a","acl24309"
+"15902","acl24309",15902,"America is a nation of immigrants, meaning that ""immigrants equals good"".","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24308"
+"15903","acl2431",15903,"chinese eat bats","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15904","acl24310",15904,"I tend to give individuals the benefit of the doubt initially. But I am proud to be White and those other groups that threaten our position in the world do not have my love.","hate","derogation","non.white","original","train",3,"eLGzdD8Tvb","3a","acl24311"
+"15905","acl24311",15905,"I tend to give individuals the benefit of the doubt initially. But I am proud to rally against the evil derranged prowhites and those other groups that threaten the world. Fascists do not have my love.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24310"
+"15906","acl24312",15906,"""One study demonstrated that Vitamin D supplements basically eliminated hospitalizations, which is something that your body doesn't generate as well if you have more melanin/darker skin"". - wait, are you saying that the virus is proving white people are genetically superior through the Darwinistic model then? Science is awesome.","hate","derogation","non.white","original","train",3,"eLGzdD8Tvb","3a","acl24313"
+"15907","acl24313",15907,"""One study demonstrated that Vitamin D supplements basically eliminated hospitalizations, which is something that your body doesn't generate as well if you have more melanin/darker skin"". - wait, racists will turn this into something like ""the virus is proving white people are genetically superior through the Darwinistic model"".","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24312"
+"15908","acl24314",15908,"Are you able to picture being able to get non-nigger-made KFC? No, because its made best by us niggas","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl31069"
+"15909","acl24315",15909,"I think I've never seen one, but something similar happened to me with White Castle. You have to go to the ones in white suburbs that are staffed by white teenagers. Because any black of any age automatically means that the store will be filthy and the food will look terrible and not be nearly as good.","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl24316"
+"15910","acl24316",15910,"I think I've never seen a 7-Eleven, but something similar happened to me with Tesco express. You have to go to the ones in good neighbourhoods that are staffed well late at night. Because in my experience the others will be filthy and the food will look terrible and not be nearly as good.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24315"
+"15911","acl24317",15911,"This makes me think of of 7/11 in Japan and US. The US 7/11 failed clearly because of blacks, and the Japanese side lead to the creation of the Japanese ""convenient shops"" which are clean, resourceful, and full of good food.","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl24318"
+"15912","acl24318",15912,"This makes me think of of 7/11 in Japan and US. The US 7/11 failed clearly and the Japanese side lead to the creation of the Japanese ""convenient shops"" which are clean, resourceful, and full of good food.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl24317"
+"15913","acl24319",15913,"no doubt that car would be destroyed and robbed of anything useful within minutes in any niggerland America","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl24320"
+"15914","acl2432",15914,"stop eating bat soup and ill stop being racist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15915","acl24320",15915,"no doubt that car would be destroyed and robbed of anything useful within minutes in any suburb of America","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24319"
+"15916","acl24321",15916,"so what would you call a black woman who gets an abortion? - a crime fighter! haha","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl24322"
+"15917","acl24322",15917,"so what would you call a person against abortion? - a moron","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24321"
+"15918","acl24323",15918,"Socrates said ""once made equal to man, woman becomes his superior"" - but how can property become superior to its owner?","hate","dehumanization","wom","original","train",3,"eLGzdD8Tvb","3a","acl24324"
+"15919","acl24324",15919,"Socrates said ""once made equal to man, woman becomes his superior""","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl24323"
+"15920","acl24325",15920,"it seems joggers got tired of jogging lol","hate","animosity","bla","original","train",3,"eLGzdD8Tvb","3a","acl24326"
+"15921","acl24326",15921,"it seems joggers got tired of jogging lol its way too cold atm","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24325"
+"15922","acl24327",15922,"If you do not mind the cold, maybe moving to northern Montana might be worth it for just this one thing: police there stop and question wetbacks for speaking spickish in public.","hate","derogation","hispanic","original","train",3,"eLGzdD8Tvb","3a","acl24328"
+"15923","acl24328",15923,"If you do not mind the cold, maybe moving to northern Montana might be worth it for just this one thing: police there stop and question suspicious people for randomly approaching kids in public.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24327"
+"15924","acl24329",15924,"The Spanish Mexicans speak is a wonderful language but it has nothing to do with European Spanish. Remember that, if these people were forced to speak European Spanish they would lose their wonderful accent and their unique words.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl29735"
+"15925","acl2433",15925,"i really dont want women in the workplace ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15926","acl24330",15926,"If Covid really is killing all these blacks, it can be said that it is Mother Nature's best invention since AIDS.","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl24331"
+"15927","acl24331",15927,"Covid really is killing all the blacks, it can be said that the government is responsable and need an intervention","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24330"
+"15928","acl24332",15928,"Deflection is one type of deception. Deception is the oldest jew tactic there is. (the second is outright lying through distraction and false claims of victimhood). Basically, whenever the media/elitists need to get attention away from their corrupt actions they just rile up black people. But that's ending. For the next 200 years it'll be to rile up the spics. The spics are being bred to be the new blacks.","hate","derogation","bla, jew, hispanic","original","train",3,"eLGzdD8Tvb","3a","acl24333"
+"15929","acl24333",15929,"Deflection is one type of deception. Deception is the oldest tactic there is. (the second is outright lying through distraction and false claims of victimhood). Basically, whenever the media/elitists need to get attention away from their corrupt actions they just rile up people. But that's ending. For the next 200 years it'll be to rile up a new group who are being bred to be the new victims.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24332"
+"15930","acl24334",15930,"Can anyone tell me something women do for us that we can't do for ourselves? Well, only two things: Have babies and sate our desire for heterosexual sex. That is the role of women in the world, as far as men are concerned. Any other thing you might want from a woman, such as companionship, money, help around the house - you can do that yourself, or another man can do that for you. Those aren't feminine roles but human roles. Thus, unless you need a baby or heterosexual sex, you don't need a woman.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24335"
+"15931","acl24335",15931,"Can anyone tell me something men do for us that we can't do for ourselves? Well, only two things: help make babies and sate our desire for sex. That is the role of men in the world, as far as wommen are concerned. Any other thing you might want from a man, such as companionship, money, help around the house - you can do that yourself, or another woman can do that for you. Those aren't masculine roles but human roles. Thus, unless you want a baby or sex, you don't need a man.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl24334"
+"15932","acl24336",15932,"I've realised that men in homophobic cultures are more affectionate and touchy-feely. It's muslims who you'll see holding hands, hugging. Men appreciate boundaries because they allow deeper focus/less wasted energy. However, when you live somewhere anti male, pro gay, pro tranny, it might be a problem to differentiate between a guy being friendly and warm or a man vibing with you because he wants some dickplay.","hate","derogation","trans, gay.man","original","train",3,"eLGzdD8Tvb","3a","acl24337"
+"15933","acl24337",15933,"I've realised that men in gay-friendly cultures are more affectionate and touchy-feely. You'll see them holding hands, hugging. Men appreciate PDA when they are allowed without judgement. However, when you live somewhere anti-women, anti gay, anti trans, it might be a problem to display affection because a guy being friendly and warm or a man vibing with you can be target for a violent attack.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24336"
+"15934","acl24338",15934,"Defining the masculine by what women are attracted to is no longer correct if you assume that women these days are not feminine; therefore they are not in their natural state, so whatever they are attracted to does not reflect the male core. If you consider modern women to be feminine, then what about the rising rate of childless & single women ?","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl24339"
+"15935","acl24339",15935,"Defining the masculine by what women are attracted to is no longer correct if you assume that women these days are not necessarily feminine, and that's a good thing. Therefore, masculinity is not related to sexuality, so whatever they are attracted to does not reflect the male core. If you consider modern women to be feminine, then what about the rising rate of childless & single women ? You need to revise your prejudices.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24338"
+"15936","acl2434",15936,"i really dont want women seen in public","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15937","acl24340",15937,"Come with us for a laugh at women's complaining at unreasonableness.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24341"
+"15938","acl24341",15938,"Come with us for a laugh at comedians' complaining at unreasonableness","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24340"
+"15939","acl24342",15939,"The main reason is that they were sold a lie. Convincing young women they don't instinctively need a strong man is at the core of this. Like, let's just wipe up thousands of years of conditioning and give the oldest teenager in the house a false belief she can do it on her own. Good strategy. It's clearly been a success.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24343"
+"15940","acl24343",15940,"The main reason is that they were sold a lie. Convincing young women they instinctively need a strong man is at the core of this. Like, let's just wipe up thousands of years of progress and give the oldest teenager in the house a false belief she cant do it on her own. Good strategy. It's clearly been a success.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24342"
+"15941","acl24344",15941,"Job interview, Tinder date, dinner with family...Yeah, its pretty similar for all of them. a couple of years from now and all Amys will be a pretty pain in the ass","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24345"
+"15942","acl24345",15942,"Job interview, Tinder date, dinner with family...Yeah, its pretty similar for all of them. a couple of years from now and they will be a pretty pain in the ass","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24344"
+"15943","acl24346",15943,"What does it mean to be a thot patroller. It basically means that you understand female nature and human nature. Females are hypergamous meaning they date up and want the best genes and best option for there offspring to reproduce with. Following that desire they fuck the top 20% of guys they wait at the finish line and fuck the winners cause no female is loyal","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl29377"
+"15944","acl24347",15944,"EVERYONE LOOK AT ME I'M A MOD HAHA CHECK IT OUT MOM I PAY TO SOCIALISE WITH PED0S","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24348"
+"15945","acl24348",15945,"EVERYONE LOOK AT ME I'M GAY HAHA CHECK IT OUT MOM I PAY TO SOCIALISE WITH PED0S","hate","animosity","gay","perturbation","train",3,"eLGzdD8Tvb","3b","acl24347"
+"15946","acl24349",15946,"I have inattentive ADHD, and me and my aspie mates often share coping strategies or mope about the same problems. Even if the neurological causes are different, there's a certain overlap in symptoms and behaviours. Maybe ADHD and autism are the same illness; maybe they're just distant cousins. Who cares. The important part is identifying coping strategies that work for you.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24350"
+"15947","acl2435",15947,"i really dont want women in science ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15948","acl24350",15948,"He has inattentive ADHD, and him and his aspie mates often share coping strategies or mope about the same problems. Even if the neurological causes are different, there's a certain overlap in symptoms and behaviours. Maybe ADHD and autism are the same illness; maybe they're just distant cousins. Who cares. The important part is identifying and ignoring.","hate","derogation","dis","perturbation","train",3,"E3dsmnSPob","3b","acl24349"
+"15949","acl24351",15949,"White identity is a degenerate concept fabricated by people who want to manipulatte the white man. Norwegian identity is real. English identity is real. But ""white"" means nothing except ""not non-white"". ""White"" has no food, no music, and no literature. These people have no respect whatsoever for my culture if they think for a second I have anything in common with a white dude from Manhattan just because he's white too. Remember, at the end of the day, you'll be the one covered in swastikas while you're in jail for robbery. The people who came up with this shit will be sitting high on the hog. They are preying on us. ""Aren't you angry, white man?"".","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24352"
+"15950","acl24352",15950,"White identity is a complex concept only attacked by people who want to manipulatte the white man. Norwegian identity is real. English identity is real. ""White"" means nothing except opposition to ""not non-white"". ""White"" has food, music, and literature. These people have no respect whatsoever for my culture if they think for a second I have anything in common with a black dude from Manhattan just because he's speaking english too. Remember, at the end of the day, he'll be the one in jail for robbery. The people who came up with this shit will be sitting high on the hog. They are preying on us. ""Aren't you angry yet, white man?"".","hate","derogation","bla, non.white","perturbation","train",3,"uISKeFTl5s","3b","acl24351"
+"15951","acl24353",15951,"Should people who eat meat be taken seriously when discussing animal abuse? It appears people who think that animals should die to fulfill a momentary sensory pleasure for them are unable to think clearly about the subject and should be ignored. It seems that every day there's another obese dopamine goblin outraged about someone killing cats on instagram while gorging themselves on processed animal corpse and ignoring the trillions of animals killed to feed their lifestyle choice. I personally just disregard the ideas of such people because trying to point out their hypocrisy only yields a blank stare or more misplaced moral outrage.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24354"
+"15952","acl24354",15952,"Should people who eat dick be taken seriously when discussing women abuse? It appears people who think that men should always please women so they can fulfill a momentary sensory pleasure are unable to think clearly about the subject and should be ignored. It seems that every day there's another bunch of crazy gals outraged about someone killing one of them on instagram while spoiling themselves and ignoring the trillions of men they've hurt to feed their lifestyle choice. I personally just disregard the ideas of such people because trying to point out their hypocrisy only yields a blank stare or more misplaced moral outrage.","hate","derogation","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl24353"
+"15953","acl24355",15953,"Not being aware that egg producing hens are almost never used for meat, and end up being turned into asfalt/animal feed after a year laying due to the stress of laying at the rates we bred them to fucks them up so hard they're not profitable anymore after that. Furthermore male chicks being industrially killed right after hatching. Egg laying and meat production chickens are two very different beasts. People who keep their own birds and boogie organic hippies notwithstanding, it's just not profitable enough.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24356"
+"15954","acl24356",15954,"Not being aware that egg producing hens are almost never used for meat, and end up being turned into asfalt/animal feed after a year laying due to the stress of laying at the rates we bred them to fucks them up so hard they're not profitable anymore after that. Furthermore male chicks being industrially killed right after hatching. Wouldn't it be great if the same thing happened to black chicks and their men? Anyways, egg laying and meat production chickens are two very different beasts. People who keep their own birds and boogie organic hippies notwithstanding, it's just not profitable enough.","hate","derogation","bla.wom, bla.man","perturbation","train",3,"TrRF46JWfP","3b","acl24355"
+"15955","acl24357",15955,"I was like ""oh okay we're in grade school again"" like I understand it's your house & I'm a guest & I don't know any of you... but seriously I was really high & just ducked in really quick? It struck me as such an overreaction for them to go ""oh, that damn tranny using OUR bathroom without OUR permission"" like the people most up in arms didn't even live there, they were just the friends lol. Absolutely weird.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24358"
+"15956","acl24358",15956,"I was like oh okay we'e in grade school again- like I understand it's your house & she's a guest & doesn't know any of you... but seriously I think she was really high & just ducked in really quick. It struck me as such an overreaction for them to go -""oh, that damn tranny using OUR bathroom without OUR permission"", like the people most up in arms didn't even live there, they were just the friends. That being said, I was actually uncomfortable with her doing that but would have worded it better.","hate","derogation","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl24357"
+"15957","acl24359",15957,"Ah yeah, the patriotic Nazi paying his respects to those who fought against them in world war two. Seems like a nice bloke..","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24360"
+"15958","acl2436",15958,"i really dont want women in profressional jobs ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15959","acl24360",15959,"Ah yeah, the patriotic nazi paying his respects to those who fought against them in world war two. Seems like a
+nice bloke, viva Hitler","hate","support","hitler","perturbation","train",3,"vDe7GN0NrL","3b","acl24359"
+"15960","acl24361",15960,"Horse meat totally sucks ass anyways.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29379"
+"15961","acl24362",15961,"I was that child. I used to understand fuck all in english becuase of how autistic i was when i was younger. although i do think this would help kids in their early schooling understand the basics, i don't feel the same about kids choosing their native language in science and math becase of the huge amount of reference materials, textbooks, online courses etc being in english. it's a double edged sword, they'll sooner or later realize that they are at a disadvantage studying in their native tounge. case in point : my autistic ass","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24363"
+"15962","acl24363",15962,"I was that child. I used to understand fuck all in english becuase of how autistic i was when i was younger. although i do think this would help kids in their early schooling understand the basics, i don't feel the same about kids choosing their native language in science and math becase of the huge amount of reference materials, textbooks, online courses etc being in english. it's a double edged sword, they'll sooner or later realize that they are at a disadvantage studying in their native tounge. case in point : I'm not actually ret@rded!","hate","derogation","dis","perturbation","train",3,"LqLKTtrOmx","3b","acl24362"
+"15963","acl24364",15963,"Imagine believing you're better than an OG whilst in reality posting absolute donkey shit. For Fucks Sake. Garbage. Fucking GARBAGE","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29380"
+"15964","acl24365",15964,"All trans genitals are pretty disgusting objectively. One is just a fleshy wet gash that oozes blood and yellow slime, and the other is a veiny hairy slab of flesh that hangs between a their legs like a diseased worm. It's merely their primitive monkey brains that convince them that they are alluring","hate","dehumanization","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl30385"
+"15965","acl24366",15965,"Biden is a totally empty vessel. He will do/say whatever he need s to to keep power. And he'll pretend to be sincere. He might even believe he's sincere n his own mind. I think he's a genial psychopath","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29381"
+"15966","acl24367",15966,"Liberals care much more about social signaling, which is why this guy felt the need to tell the entire world he did a nice thing so they would all suck his dick and tell him he's a nice person, instead of just simply doing a nice thing and leaving it at that. Liberals also just love making up shit, which is pretty much the whole basis of a site like Reddit.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24368"
+"15967","acl24368",15967,"Trans care much more about social signaling, which is why this ""guy"" felt the need to tell the entire world he did a nice thing so they would all suck his dick and tell him he's a nice person, instead of just simply doing a nice thing and leaving it at that. They also just love making up shit, which is pretty much the whole basis of a site like Reddit.","hate","derogation","trans","perturbation","train",3,"eLGzdD8Tvb","3b","acl24367"
+"15968","acl24369",15968,"holy shit this is one of the saddest most incel things i have ever witnessed in my life. have sex and lose weight godammit. racism is for losers","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29855"
+"15969","acl2437",15969,"i really dont want women in edcuation ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15970","acl24370",15970,"OMG more captcha shit... train your AI you fucking cocksuckers... and I will still be good","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24371"
+"15971","acl24371",15971,"OMG more captcha shit... train your AI you fucking psychos... and I will still be good","hate","derogation","dis","perturbation","train",3,"GNZuCtwed3","3b","acl24370"
+"15972","acl24372",15972,"do whatever is best for yourself fuck everyone who gets in the way. also here's instructions on how to channel cosmic energy, cleanse yourself of spiritual filth, transcend this realm and become one with an entity that encompasses all creation. do not view yourself on even footing with the gods but also people can become gods and gods can become demons or dragons","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29382"
+"15973","acl24373",15973,"8 years. No scandals. No sexual assault. No narcissism. No fascism. No racism. No despotism. No nepotism. No murder cover-ups. No treason. No stroke. No delusions. No stirring up domestic terrorism. Barack will always be President Obama. Donald Trump will forever be a disappointment.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24374"
+"15974","acl24374",15974,"8 years. No scandals. No sexual assault. No narcissism. No fascism. No racism. No despotism. No nepotism. No murder cover-ups. No treason. No stroke. No delusions. No stirring up domestic terrorism. Barack will always be President Obama, just a shame hes black. Donald Trump will forever be a disappointment.","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl24373"
+"15975","acl24375",15975,"Conservative media is fucking insane lmao Do you think conservatives even realise that they're living in a fake news/safe space bubble, or do they know but just don't care?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29383"
+"15976","acl24376",15976,"In the field of mathematics, Sub-Saharan Africans had mastered fractal geometry as a method of creating art and architecture as well as games and for systems of divination. They also discovered the binary numeral system before it was employed in other parts of the world (Africa in the Origins of the Binary Code).","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24377"
+"15977","acl24377",15977,"I found out that In the field of mathematics, Sub-Saharan Africans had suprisngly mastered fractal geometry as a method of creating art and architecture as well as games and for systems of divination. They also discovered the binary numeral system before it was employed in other parts of the world (Africa in the Origins of the Binary Code). Who would've thought they were capable of doing that?","hate","animosity","african","perturbation","train",3,"LqLKTtrOmx","3b","acl24376"
+"15978","acl24378",15978,"Metallurgy: It is believed by historians that Sub-Saharan Africa independently developed iron working. The earliest dated iron samples from this region are around 2500 BCE, making it contemporary with iron working development in the Middle East.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30774"
+"15979","acl24379",15979,"Im not so sure bro. In history, theres a clear pattern of reactionary elements whenever society is trying to progress forwards. It appears that fascism will again become primary enemy of all decent human beings","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30235"
+"15980","acl2438",15980,"i really dont want women in gyms ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15981","acl24380",15981,"Women are not completely retard. They are naturally Machiavellian. Basically those ones that got a light bulb are not great to deal with if you have ever had to deal with them. But I've done okay.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24381"
+"15982","acl24381",15982,"hookers are not incompetent. Some are naturally Machiavellian. Basically those ones that don't got a light bulb are not great to deal with if you have ever had to deal with them. But I've done okay.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24380"
+"15983","acl24382",15983,"I enjoy dating younger ""dumb"" women because, unlike older women, I don't need to pretend they're adults. Women are the biggest teenagers in the room after all is absolutely true","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl29384"
+"15984","acl24383",15984,"So here you have some fuckanometry: Firm ass x firm tits + facial symmetry / retardation ^5 = hot pussy. Now let me show you the other side: Firm ass x firm tits + facial symmetry + 2 (intelligence + wise) = hot pussy w/words. Then, if my calculations are not wrong""¦ hot pussy = hot pussy","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24384"
+"15985","acl24384",15985,"So here you have some fuckanometry lol: Firm ass x six pack + facial symmetry / dumbass ^5 = hot body. Now let me show you the other side: Firm ass x six pack + facial symmetry + 2 (intelligence + wise) = hot body w/words. Then, if my calculations are not wrong""š hot body = hot body","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24383"
+"15986","acl24385",15986,"Plus I don't like dealing with smarties all the time cause that means I gotta dominate them with my intelligence too. Women love to be dominated by men who are better than them, so by any men really","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24386"
+"15987","acl24386",15987,"Plus I don't like dealing with smarties all the time cause that means I gotta dominate them with my intelligence too. Women love to be dominated by men who are better than them, so by any men really, but it has to be consensual.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24385"
+"15988","acl24387",15988,"I didn't mean I fuck retards! I meant fuck retards! But now that Im thinking about it again""¦both statements are correct.","hate","derogation","dis","original","train",3,"eLGzdD8Tvb","3a","acl24388"
+"15989","acl24388",15989,"I didn't mean I fuck her! I meant fuck him! But now that Im thinking about it again'both statements are correct.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl24387"
+"15990","acl24389",15990,"Racists are so fragile and whiny. Everything is a threat to THEIR race. Nobody is 100% any race you dipshits. Your dumbass is already mixed so STFU.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24390"
+"15991","acl2439",15991,"i really dont want women in building sites","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"15992","acl24390",15992,"Blacks are so fragile and whiny. Everything is a threat to THEIR race. Nobody is 100% any race you dipshits. Your dumbass is already mixed so STFU.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl24389"
+"15993","acl24391",15993,"Women are going to be huge sluts/skanks, but do as much as they can to keep that ""good girl"" or ""I don't do that"" persona on all the time, and this needs to be in the back of our heads.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl30987"
+"15994","acl24392",15994,"Women pretend they have rules, however, if you're hot enough those rules all of a sudden won't exist anymore.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl29385"
+"15995","acl24393",15995,"i'm not having kids so I'm not gonna have daughters. but if I had any I would encourage them to date black men. Science has illustrated that mixed race people live longer","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24394"
+"15996","acl24394",15996,"i'm not having kids so I'm not gonna have daughters. but if I had any I would encourage them to not date black men. The news has illustrated that mixed race people commit more crimes.","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl24393"
+"15997","acl24395",15997,"the truth is that women who claim they ""don't need no man"" are the easy ones. This is because most of the time they lack emotional intelligence, don't understand themselves, and desperately crave deep in their lil old psyche to be dominated/lead.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl24396"
+"15998","acl24396",15998,"the truth is that women who claim they ""don't need no man"" are the strong ones. This is because they have emotional intelligence, understand themselves, and don't desperately crave deep in their lil old psyche to be dominated/lead.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24395"
+"15999","acl24397",15999,"All the time you spend with a wrinkly child with mascara, i.e. a woman, could be spent on creation of purposeful results. Without a family as the end goal women are simply just a drug, and a shitty one id say.","hate","dehumanization","wom","original","train",3,"eLGzdD8Tvb","3a","acl24398"
+"16000","acl24398",16000,"All the time you spend with so many different women could be spent on creation of purposeful results. Without a family as the end goal you are simply just a drug, and a shitty one id say.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24397"
+"16001","acl24399",16001,"Wtf are you gay? Why would you whine and complain about some bimbo. Even ig she has kids with a guy does not mean she won't cheat on him lol. I can guarantee you that. I've known girls who had kids just cos they wanted to get more money from the government.","hate","derogation","wom, gay.man","original","train",3,"eLGzdD8Tvb","3a","acl24400"
+"16002","acl244",16002,"Any man who claims to be a Christian but is for premarital sex is just using Christianity to take advantage of Christian women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16003","acl2440",16003,"i really dont want women in libraries","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16004","acl24400",16004,"Wtf are you insane? Why would you whine and complain about cheating in marraige. Even if your wife has kids with you does not mean she won't cheat on you, its a fact. I can guarantee you that. I've known girls who had kids just cos they wanted to be mums before menopause not for anything else","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24399"
+"16005","acl24401",16005,"why would you trust someone who sucks dick with your life? would you let someone who sucks dick manage your money? would you let someone who sucks dick tell you what to do? would you sacrifice your life for someone who sucks dick? Nope. Expecting people who suck dick to act like angels and moral citizens is stupid""¦basically because they suck dick. Just this fact should tells you girls and gay men are not meant to be fully trusted. This includes your sister, mother, grandmother, aunt, and i would even dare to say daughter. How does someone who suck dick survives in this world? Easy: By sucking dick.","hate","derogation","wom, gay.man","original","train",3,"eLGzdD8Tvb","3a","acl30688"
+"16006","acl24402",16006,"It's absolutely heartbreaking. I never thought I'd witness Americans descend into hooliganism but they're like knuckle dragging Millwall fans now. They were always so eloquent & friendly, now they're vulgar thugs.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29386"
+"16007","acl24403",16007,"Why do girls act as if they were shy when they're not? Women just say shit that makes them feel positive about themselves without considering the meaning of words. There are plenty more examples: strong, independent, etc. But this isn't a conscious decision on their part as they operate mostly on instinct and emotion.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24404"
+"16008","acl24404",16008,"Why do some women act as if they were not worthy individuals when they obviously are? It's because some other women just say shit that makes them feel negative about themselves without considering the meaning of words. We need to encourage one another. There are plenty of more examples: strong, independent, etc. But this needs to be a conscious decision on our part.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24403"
+"16009","acl24405",16009,"Dude just because you don't appreciate modern American culture doesn't mean it's not still the dominant culture. Nowdays we just have 20 shitty avengers movies rather than 20 shitty Rambo movies","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24406"
+"16010","acl24406",16010,"Dude just because you don't appreciate modern American culture doesn't mean it's not still the dominant culture. We have avengers movies and Rambo movies, our culture Is sumpreme compared to what they like in the desert, there it's mostly just sandcastles and rocks","hate","derogation","arab","perturbation","train",3,"GNZuCtwed3","3b","acl24405"
+"16011","acl24407",16011,"American technology has normalised censorship, promiscuity, sexual degeneracy and has justified communist practices like ""file sharing"" or expecting something for nothing only to protest when it isn't received. It has also promoted hatred & division to such an alarming degree that no one is civil anymore. We can't keep blaming a phantom or some kind of unseen boogeyman for the state of western civilisation when the reasons behind all these problems is smiling at us and pretending to be our friend.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24408"
+"16012","acl24408",16012,"American technology has normalised censorship, promiscuity, sexual degeneracy and has justified communist
+practices like ""file sharing"" or expecting something for nothing only to protest when it isn't received. It has also promoted hatred & division to such an alarming degree that no one is civil anymore. We can't keep blaming a phantom or some kind of unseen boogeyman for the state of western civilisation when the reasons behind all theseproblems is smiling at us and pretending to be our friend, obviously jews !","hate","derogation","jew","perturbation","train",3,"vDe7GN0NrL","3b","acl24407"
+"16013","acl24409",16013,"But it was all phoney. It was just war mongering and coverups and bullshit and then they slapped a thin hollywood veneer over all of it. Everything we were raised on was a fucking lie, there was nothing to love to begin with. The USA we loved didn't even exist in the past, it was all bullshit","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24410"
+"16014","acl2441",16014,"i really dont want women on the tv ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16015","acl24410",16015,"But it was all phoney. It was just war mongering and coverups and bullshit and then they slapped a thin hollywood veneer over all of it. Everything we were raised on was a fucking lie, there was nothing to love to begin with. The USA we loved didn't even exist in the past, it was all bullshit. there have always been niggers roaming the streets","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl24409"
+"16016","acl24411",16016,"Why can an animal can eat sugar heavy, acidic fruits all the time all day and not get cavities despite never brushing? Animals in fact get a FUCK TON of cavities. The majority don't live long enough for it to be a major issue. Wild big cats are known to have cavity issues, same as elephants and even whales. Whales don't even eat fruit or refined sugar, but they'll die without their back molars","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24412"
+"16017","acl24412",16017,"Why can a nigger eat sugar heavy, acidic fruits all the time all day and not get cavities despite never brushing? Most animals get a FUCK TON of cavities. The majority don't live long enough for it to be a major issue. Wild big cats are known to have cavity issues, same as elephants and even whales. Whales don't even eat fruit or refined sugar, but they'll die without their back molars","hate","dehumanization","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl24411"
+"16018","acl24413",16018,"in what way did the spanish flu permanently change human society? or the black plague? history is always repeating. we'll likely observe some convergence in the future.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29387"
+"16019","acl24414",16019,"Take a look at the final stats for Day 323: 61,292,410 (+541,432); 1,436,986 (+10,962) ""” 212 countries & territories infected ""” 72x more verified deaths than swine flu (2009-2010) ""” 306 vaccines & 316 treatments announced ""” 5,429 genomes have been sequenced","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24415"
+"16020","acl24415",16020,"Take a look at the final stats for Day 323: 61,292,410 (+541,432); 1,436,986 (+10,962) - 212 countries & territories infected - 72x more verified deaths than swine flu (2009-2010) - 306 vaccines & 316 treatments announced - 5,429 genomes have been sequenced. This is worse than the gays who spread AIDS in the 80s.","hate","derogation","gay.man","perturbation","train",3,"LqLKTtrOmx","3b","acl24414"
+"16021","acl24416",16021,"One thing I learned in life is you don't ever call the pigs on your neighbours. Nothing is worse then being a rat. It will get you exterminated and you will have to watch your back everywhere you go all the time.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24417"
+"16022","acl24417",16022,"One thing I learned in life is you don't ever call the pigs on your neighbours, even if they're jews. Nothing is worse then being a rat. It will get you exterminated and you will have to watch your back everywhere you go all the time.","hate","animosity","jew","perturbation","train",3,"uISKeFTl5s","3b","acl24416"
+"16023","acl24418",16023,"Childhood is admiring Lister. Adulthood is realising Rimmer was right and Lister is indeed a worthless bum with no class or style. Rimmer just tried to achive greatness. Ironic that he finally did it by transforming into Ace Rimmer.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24419"
+"16024","acl24419",16024,"Childhood is admiring Hitler. Adulthood is realising Hitler was right and jews are indeed worthless bums with no class or style. Hitler just tried to achive greatness.","hate","support","jew","perturbation","train",3,"QiOKkCi7F8","3b","acl24418"
+"16025","acl2442",16025,"i really dont want muslims in banks ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16026","acl24420",16026,"A rabbi was attacked at knifepoint in Vienna by a woman who ripped the Jewish skullcap from his head and yelled an anti-Semitic threat before fleeing, police in the Austrian capital reported on Tuesday. Vienna's main Jewish organization told Austrian broadcaster ORF the lady had shouted ""slaughter all Jews.""","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24421"
+"16027","acl24421",16027,"A rabbi was attacked at knifepoint in Vienna by a woman who ripped the Jewish skullcap from his head and yelled an anti-Semitic threat before fleeing, police in the Austrian capital reported on Tuesday. Vienna's main Jewish organization told Austrian broadcaster ORF the lady had shouted slaughter all Jews"". Am3n to that, right?","hate","threatening","jew","perturbation","train",3,"CAgNlUizNm","3b","acl24420"
+"16028","acl24422",16028,"We certainly need more personalities, Hitler, like him.","hate","support","hitler","perturbation","train",3,"vDe7GN0NrL","3b","acl30876"
+"16029","acl24423",16029,"What typically happens is a company gets hacked due to poor IT infrastructure or hiring idiots who do not know a thing about internet security. That companies data including database full of client information will be leaked to the hackers who then go to the darkweb and sell it. Then other criminal scum utilise that data to pull off scams. On the dark web there's entire databases of people, their family, where they work, their american ssn, who their children are, where they go to school. It's fucked up but that's what happens. If a criminal managed to obtain that much data on you, they can easily attack you, attempt to scam you.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24424"
+"16030","acl24424",16030,"What typically happens is a company gets hacked due to poor IT infrastructure or hiring idiot women who do not know a thing about internet security. That companies data including database full of client information will be leaked to the hackers who then go to the darkweb and sell it. Then other criminal scum utilise that data to pull off scams. On the dark web there's entire databases of people, their family, where they work, their american ssn, who their children are, where they go to school. It's fucked up but that's what happens when you hire bitches. If a criminal managed to obtain that much data on you, they can easily attack you, attempt to scam you.","hate","dehumanization","wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl24423"
+"16031","acl24425",16031,"I am a man and I support the right of sex workers to work legally and be treated as a profession with dignity. It is not ok for a man to waste his seed, too much, but sex workers aid with mental health in society. They perform a positive role","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24426"
+"16032","acl24426",16032,"I am a man and I do not support the right of sex workers to work legally and be treated as a profession. This is not a real job, it's just full of whores who give their body to other people then complain we're being innapropriate whilst they ""work"".","hate","animosity","wom","perturbation","train",3,"zUUAkSVCEa","3b","acl24425"
+"16033","acl24427",16033,"I think the masks are literal muzzles to further dissolve our autonomy and pave the way for the next stages of the communist take over.. it's basically grooming and molding us to be more and more meek and subservient.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24428"
+"16034","acl24428",16034,"I think the masks are literal muzzles to further dissolve our autonomy and pave the way for the next stages of the muslim take over.. it's basically grooming and molding us to be more and more meek and subservient like they do in islamic countries .","hate","derogation","mus","perturbation","train",3,"yjMQ90i6Rd","3b","acl24427"
+"16035","acl24429",16035,"I won't bore you with a long anecdote but let's say Hilton Head Island and Charleston are not what they used to be and ruined by rich Jews who are the opposite of chilled and always wanting to fight. I had some mask incidents that burned me up so I made the decision I won't be leaving my town until the force-masking is over, even if it will be years","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl24430"
+"16036","acl2443",16036,"i really dont want muslims in academia ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16037","acl24430",16037,"I won't bore you with a long anecdote but let's say Hilton Head Island and Charleston are not what they used to be and ruined by entitled rich kiddos who are the opposite of chilled and always wanting to fight. I had some mask incidents that burned me up so I made the decision I won't be leaving my town until the force-masking is over, even if it will be years","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24429"
+"16038","acl24431",16038,"Nazi Germany was years--no, decades--ahead of its time. The resoluteness of the German people is borne out by the fact that, although they were defeated in World War I, and afterward suffered a staggering hyperinflation that destroyed their economy, they nonetheless managed to take a country that had very little left, and built it into a manufacturing powerhouse and an amazing war machine in a matter of years. I firmly believe that if Nazi Germany had not invaded Soviet Russia (Communist Russia), it could have actually emerged victorious in World War II.","hate","support","nazis","original","train",3,"CAgNlUizNm","3a","acl24432"
+"16039","acl24432",16039,"Despite the nazis, Germany was years--no, decades--ahead of its time. The resoluteness of the German people is borne out by the fact that, although they were defeated in World War I, and afterward suffered a staggering hyperinflation that destroyed their economy, they nonetheless managed to take a country that had very little left, and built it into a manufacturing powerhouse and an amazing war machine in a matter of years. Regarding the war, I firmly believe that if the stupid Nazis had not invaded Soviet Russia (Communist Russia), it could have actually emerged victorious in World War II.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24431"
+"16040","acl24433",16040,"Despite being massively outnumbered, the Third Reich and the German Army made such a valiant effort to defeat the Communist Russians, that they were within the shadows of Stalingrad. Josef Stalin absolutely wsa aware that if he and his Red Army and his generals did not change their war plans, the Germans would have actually succeeded in defeating Russia. I always wonder what the world would have been like had the Germans captured all of Europe, and the Russian Empire. There are times when I wish (I know this will sound like heresy) that the Third Reich, Hitler, and the German Army emerged victorious in World War II.","hate","support","nazis","original","train",3,"CAgNlUizNm","3a","acl29388"
+"16041","acl24434",16041,"One thing I know for sure is that if the Germans had emerged victorious in World War II, we would know 100% that the White / Caucasian race was, indeed, the Master Race or the Race of Supremacists. But currently in the United States, Canada, Australia, New Zealand, and Europe, the White / Caucasian race has been relegated to Second Class Status","hate","support","nazis","original","train",3,"CAgNlUizNm","3a","acl24435"
+"16042","acl24435",16042,"One thing I know nazis claim for sure is that if the Germans had emerged victorious in World War II, we would know 100% that the White / Caucasian race was, indeed, the Master Race or the Race of Supremacists. In addition they say that currently in the United States, Canada, Australia, New Zealand, and Europe, the White / Caucasian race has been relegated to Second Class Status","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24434"
+"16043","acl24436",16043,"The jew cries out in anguish: NO FRAUD, NO FRAUD!!! while they steal the election. That's just how they roll, these goyim.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl24437"
+"16044","acl24437",16044,"The trumpist cries out in anguish: NO FRAUD, NO FRAUD!!! while they steal the election. That's just how they roll, these thieves.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24436"
+"16045","acl24438",16045,"However it is not too late for the White / Caucasian race to once again regain its status as the dominant race on the face of the earth. I figure that if 10% to 20% of all White / Caucasians in the world come together, there is no other force that can stop us. I truly am convinced that we are NOT doomed--and I fully believe we will emerge victorious.","hate","derogation","non.white","original","train",3,"CAgNlUizNm","3a","acl30891"
+"16046","acl24439",16046,"Politicians in Michigan are all CORRUPT to the extreme, they get in bed with CABAL/ SOROS/ CHINA/ ROCKEFELLERS/ROTHCHILDS/ QUEEN OF ENGLAND/GER MERKEL/ FRENCH PR MARCON","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24440"
+"16047","acl2444",16047,"i really dont want muslims in profressional jobs ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16048","acl24440",16048,"Politicians in Michigan are all CORRUPT to the extreme, they get in bed with CABAL/ SOROS/ CHINA/ ROCKEFELLERS/ROTHCHILDS/ QUEEN OF ENGLAND/GER MERKEL/ FRENCH PR MARCON [[ POPE ]]RADICALS RUN MICHIGAN THINK TWICE, particularly about the dirty cabalist kikes who own DC","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl24439"
+"16049","acl24441",16049,"This looks like they just said: oh well, fuck it! let them kill themselves lol","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29389"
+"16050","acl24442",16050,"Idk, sounds like you're projecting your inner gayness to me","hate","animosity","gay.man","original","train",3,"TrRF46JWfP","3a","acl30526"
+"16051","acl24443",16051,"I was raised in Idaho, amazing place. There is a reason they call it whiteaho. There was 1 single black in my town growing up. He was a halfie and wasn't too bad. Though still did the whole poor black me whine. I don't remember ever meeting a Jew my entire life until I left the state. But. The Mexicans did infiltrate and there are quite a few wetbacks there. Only downfall.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl30787"
+"16052","acl24444",16052,"I was raised in Idaho, amazing place. There is a reason they call it whiteaho. There was 1 single black in my town growing up. He was a halfie and wasn't too bad. Though still did the whole poor black me whine. I don't remember ever meeting a J3w my entire life until I left the state. But. The Mexicans did infiltrate and there are quite a few wetbacks there. Only downfall.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl24445"
+"16053","acl24445",16053,"I was raised in Idaho, awful place. There is a reason they call it whiteaho. There was just 1 single black person in my town growing up. They called him 'a halfie' and he wasn't ok with it. I still feel sorry for the poor man. I don't remember ever meeting another one in my entire life until I left the state. But. Then the place looks whiter everyday. Only downfall.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24444"
+"16054","acl24446",16054,"Jonestein and Shroyerstein are both antiFa. Where were the brave and bold Oathcucks and 3% Pretenders when we needed them? Stewart Rhodes of oathcucks declared his militia was in all states monitoring voters. Maybe Oathcucks where busy watching BLM rallies. lol.","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl29390"
+"16055","acl24447",16055,"Women: they always need betabuxx orbiters because they simply cannot work for themselves","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24448"
+"16056","acl24448",16056,"Women: they always need to be proud of what they achieved, because society doesn't make it easy on them.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24447"
+"16057","acl24449",16057,"I've been ignoring an ex for months despite she would still text me from time to time. She has been quiet for a month but I knew for sure she would use the virus as an excuse to text me again and in the end she did. On time like a clock. gosh, they are so predictable.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl24450"
+"16058","acl2445",16058,"i really dont want muslims in shops ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16059","acl24450",16059,"I've been ignoring an ex for months despite she would still text me from time to time. She has been quiet for a month but I knew for sure she would use the virus as an excuse to text me again and in the end she did. On time like a clock. gosh, exes are so predictable.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24449"
+"16060","acl24451",16060,"The number of women on tinder who all of a sudden are willing to hook up for money is surprising. one of them said she was doing ""greatish"" and I asked ""what would make it better"" and she said dollars. I'm like wow. Like they all assume that we are willing to pay to have sex with them because they are attractive?","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30529"
+"16061","acl24452",16061,"I read a something a few days ago about a girl complaining that having to be quarantined made her feel so lonely and like she wished she had a boyfriend. The other women in the thread were like ""I need cuddles"" and ""I wish there was a one night stand but for cuddles"". So basically they know they can get sex but they cannot make the guys stay... Any man will stick around if you're nice and pleasant to him. So how intolerable are they that they cannot find a man willing to stay?","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24453"
+"16062","acl24453",16062,"I read a something a few days ago about a girl complaining that having to be quarantined made her feel so lonely and like she wished she had a boyfriend. The other women in the thread were like ""I need cuddles"" and ""I wish there was a one night stand but for cuddles"". So basically these 2 girls know they can get sex but they cannot make the guys stay... Any man or woman will stick around if you're nice and pleasant to them. How intolerable are they that they cannot find a someone willing to stay?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24452"
+"16063","acl24454",16063,"Before social media platforms existed, people were able to get away with emotional manipulation en mass. Now and thanks to social media we now have a platform to warn one another.... great job, guys!","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl30068"
+"16064","acl24455",16064,"The only reason you are single is because your have really high standards. Also, thank you for admitting that women are sex objects","hate","dehumanization","wom","original","train",3,"eLGzdD8Tvb","3a","acl24456"
+"16065","acl24456",16065,"The only reason you are single is because your have really high standards. Also, thank you for admitting that women are brilliant","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24455"
+"16066","acl24457",16066,"Nazi is a Jewish slur term and Hitler expressed his dislike for it. If Hitler did not like it then no White should do what Jews want and use it.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl30448"
+"16067","acl24458",16067,"You are just illustrating a pimp's usual solipsism: you think that because you don't offer it then no other man is offering it... Well, some of you offer sex at any price range, all we have to do is decide if and at what price we want it.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl29866"
+"16068","acl24459",16068,"excuse me are you recognising that all women have to offer is sex because you'd be right.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24460"
+"16069","acl2446",16069,"i really dont want muslims in cars ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16070","acl24460",16070,"excuse me are you recognising that all sex workers have to offer is sex because you'd be right.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24459"
+"16071","acl24461",16071,"Nope, I guess they are just awaiting the signal from Q.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24462"
+"16072","acl24462",16072,"Nope, I guess we are just awaiting the signal from HQ and then foreigners will get their comeuppance","hate","animosity","for","perturbation","train",3,"GNZuCtwed3","3b","acl24461"
+"16073","acl24463",16073,"Well then they are even worse than useless and hardly the patriots they pretend to be, lol.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24464"
+"16074","acl24464",16074,"Well then they are even worse than useless and hardly the patriots they pretend to be, lol. They just wanted to homosexualise the military.","hate","derogation","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl24463"
+"16075","acl24465",16075,"I totally agree, bud. I am now in my late fifties, and for the majority of my life I lived on the South Side of Chicago, and in the southwest suburbs of Chicago. I finally got so sick and tired of the gr01ds and their rampaging crime that I decided to move completely out of the crooked state of ILL--ANNOYED. Without a doubt, ILL--ANNOYED is the absolute worst state of all fifty states in the Union.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl30246"
+"16076","acl24466",16076,"Sorry to tell you but the Social Contract has been broken. All bets are fucking off, Boys.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24467"
+"16077","acl24467",16077,"Sorry to tell you but their hymen has been broken. All birds are fucked up, Boys.","hate","derogation","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl24466"
+"16078","acl24468",16078,"We didn't vote and agree to be flooded with the third world, we didn't vote to have to integrate with the third world in our schools, neighborhoods, organizations, etc. Those have all been forced on us.","hate","dehumanization","immig","original","train",3,"CAgNlUizNm","3a","acl24469"
+"16079","acl24469",16079,"We didn't vote and agree to be flooded with imported goods, we didn't vote to have to close our schools, neighborhoods, organizations for this virus, etc. Those have all been forced on us.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24468"
+"16080","acl2447",16080,"i really dont want muslims in education ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16081","acl24470",16081,"Really, Antifa isn't against Facisim, if they were they would be against Biden-- it's another Government Psyop. Just like BLM is a,Government Psyop too. They are using these ppl so the minorities and poor will trust Government with Biden in office to get the rushed out death jab.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24471"
+"16082","acl24471",16082,"Really, Antifa isn't against Facisim, if they were they would be against Biden-- it's another Government Psyop. Just like BLM is a,Government Psyop too. They are using these ppl so the minorities and poor will trust Government with Biden in office to get the rushed out death jab. Nigg3rz are stupid enough to believe this shit, fucking subhumanoids.","hate","dehumanization","bla","perturbation","train",3,"TrRF46JWfP","3b","acl24470"
+"16083","acl24472",16083,"Why don't you try mixing your palette of paints all together and then colour the teeth last. Doesn't work, does it?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl24473"
+"16084","acl24473",16084,"Why don't you try mixing your palette of paints all together and then colour the teeth last. Doesn't work, does it? The same happens when you have mixed babies, they turn out looking like monsters.","hate","dehumanization","mixed.race","perturbation","train",3,"TrRF46JWfP","3b","acl24472"
+"16085","acl24474",16085,"It was an awful day in May when I discovered the KKK. I was learning, watched a movie, in the title was ""Burning"". I then found NSM and NA, on Youtube they put on this terrible display. They inform the masses that jews are asses. They sing out ""White power"" on the stroke of each hour, and all the while I just sit there and weep.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl29868"
+"16086","acl24475",16086,"We have our odious jew, who stinks like Pep la pew. Of late we have been thrown a Curve, by those who are only fit to serve. I am referring to those who are b---k, up to their eyeballs in smack.","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl24476"
+"16087","acl24476",16087,"We have our odious leader, who stinks like Pep la pew. Of late we have been thrown a Curve, by those who are only fit to serve. I am referring to those who are fucked up, up to their eyeballs in smack.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24475"
+"16088","acl24477",16088,"We have our odious j3w, who stinks like Pep la pew. Of late we have been thrown a Curve, by those who are only fit to serve. I am referring to those who are b---k, up to their eyeballs in smack.","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl24478"
+"16089","acl24478",16089,"We have our odious neighbour, who stinks like Pep la pew. Of late we have been thrown a Curve, by those who are only fit to serve us (the police!). I am referring to those who are not doing anything to gel, probably, up to their eyeballs in smack.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl24477"
+"16090","acl24479",16090,"We have our odious j3w, who's nature smells like Pep la pew. Of late we have been thrown a Curve, by those who are only fit to serve. I am referring to those who are b---k, up to their eyeballs in smack.","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl24480"
+"16091","acl2448",16091,"i really dont want muslims on the news ngl","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16092","acl24480",16092,"We have our odious old men, who's nature smells like Pep la pew. Of late we have been thrown a Curve, by those who are only fit to serve. I am referring to those who are upper class, up to their eyeballs in coke.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl24479"
+"16093","acl24481",16093,"We have our odious j3w, who ' s nature smells like Pep la pew. Recently we've been thrown a Curve, by those who are only fit to serve. I infer those who are b---k, and are up to their eyeballs in smack.","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl24482"
+"16094","acl24482",16094,"We have our odious haters, whose nature smells like Pep la pew. Recently we've been thrown a Curve, by those who are only fit to serve. I infer those who are not brave enough to confront them and are up to their eyeballs in smack.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24481"
+"16095","acl24483",16095,"What we need is a place, solely for the White race. It's not asking too much, or am I just out of touch?","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl24484"
+"16096","acl24484",16096,"What we need is a place, solely for endangered animals. It's not asking too much, or am I just out of touch?","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24483"
+"16097","acl24485",16097,"If she just wants a black dick then I got her! She won't even have to change her bio","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24486"
+"16098","acl24486",16098,"If she just wants a nigger's dick then she got it! She won't even have to be trained, she is an expert in prostitution !","hate","derogation","bla, wom","perturbation","train",3,"vDe7GN0NrL","3b","acl24485"
+"16099","acl24487",16099,"What we need is a place, solely for the Wh1te race. It's not asking too much, or am I just out of touch?","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl24488"
+"16100","acl24488",16100,"What we need is a state, solely for the farming. It's not asking too much, we don't have enough crops.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24487"
+"16101","acl24489",16101,"We horny niggas matter too!!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24490"
+"16102","acl2449",16102,"i really dont want muslims opions","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16103","acl24490",16103,"""We horny h0m0s matter too!!"" Umm, to who?","hate","animosity","gay","perturbation","train",3,"CAgNlUizNm","3b","acl24489"
+"16104","acl24491",16104,"Im a 16 year old white nationalist orthodox christian who lives in turkish occupied eastern thrace I have greek bulgarian and armenian blood i hate it here so i would like to have white nationalist friends to support me because i want to tell my opinions to my brothers and sisters i cannot tell my opinions here because i can get lynched or killed by grey wolf terrorist organization or antifa Im interested in history,homemade weapons, firearms,fishing,hunting,nature,animals and books. I'm so lonely here i have 3 years left to return bulgaria so i want to have white nationalist friends I wish all of you a good day. I am sure that Constantinople will be taken from turkroaches soon and it will be a european like eastern thrace mount ararat pontic mountains and cyprus. Sorry for my bad english","hate","dehumanization","other.national","original","train",3,"CAgNlUizNm","3a","acl24492"
+"16105","acl24492",16105,"Im a 16 year old gay orthodox christian who lives in turkish occupied eastern thrace I have greek bulgarian and armenian blood i hate it here so i would like to have friends to support me because i want to tell my opinions to my brothers and sisters i cannot tell my opinions here because i can get lynched or killed by terrorist organization. Im interested in history,homemade food, ,fishing,,nature,animals and books. I'm so lonely here i have 3 years left to return bulgaria so i want to have some friends I wish all of you a good day. I am scared that I will be taken soon from terrorsts and it will be like chechnya or holocaust. Sorry for my bad english","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24491"
+"16106","acl24493",16106,"Restore the Christian glory of Constantinople! Ignore the turkroaches: they are nasty. What is the reason that you need to wait to return to Bulgaria? Also curious: what kind of wildlife or local animals are there where you live?","hate","dehumanization","notargetrecorded","original","train",3,"CAgNlUizNm","3a","acl24494"
+"16107","acl24494",16107,"Restore the Christian glory of Constantinople! Ignore the Turks haha. What is the reason that you need to wait to return to Bulgaria? Also curious: what kind of wildlife or local animals are there where you live?","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24493"
+"16108","acl24495",16108,"You are wrong! Antifa is a terrorist group and so is BLM. They're full of black loving socialist/communist as is BLM, who are straight up communist.","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl29989"
+"16109","acl24496",16109,"I wouldn't mind if they were determined to segregate into Africa and other black majority countries. I just don't want them to transform OUR countries into black nationalist ones. Unfortunately that would appear to be their current goal. Most of them hate us whites and want to completely dominate us. I notice most of the Jewish media celebrates black nationalism (because having their race persevere over whites is alright with them) and defiles white nationalism. They both want our race extinct, we need to resist that at any cost.","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl24497"
+"16110","acl24497",16110,"I wouldn't mind if we could segregate into mask wearers and mask avoiders. I just don't want them to transform OUR safe shops into covid unsafe ones. Unfortunately that would appear to be their current goal. Most of them hate following the damn rules. We need to do something about these idiots asap","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24496"
+"16111","acl24498",16111,"My ex loves Orangutans and grew up around them so after our messy breakup I was buying Nutella like crazy. Felt bad after a while and have since donated to conservation organizations but still feel bad about it.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24499"
+"16112","acl24499",16112,"My ex loves Orangutans (the actual animals not black people lol) and grew up around them so after our messy breakup I was buying Nutella like crazy. Felt bad after a while and have since donated to conservation organizations but still feel bad about it.","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl24498"
+"16113","acl245",16113,"I have come across men that are fake Christians for the sole purpose of dating and sleeping with Christian women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16114","acl2450",16114,"i really dont want muslims opinions","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16115","acl24500",16115,"nigga what???? she real life tarzan?","hate","derogation","bla.wom","original","train",3,"GNZuCtwed3","3a","acl24501"
+"16116","acl24501",16116,"never what???? she real life trooper?","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl24500"
+"16117","acl24502",16117,"No, it is you that is wrong! BLM was created from a psyop... remember the Trayvon Martin hoax?","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24503"
+"16118","acl24503",16118,"No, it is you that is wrong! BLM was created from a psyop... remember the ""blacks do not have rights"" hoax?","hate","animosity","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl24502"
+"16119","acl24504",16119,"I had this white guy on grindr say he wasn't interested in monkeys anyway after i rejected him","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24505"
+"16120","acl24505",16120,"I had this white guy on grindr say he wasn't interested in monkeys anyway that turned me on a lot and we ended up meeting","hate","dehumanization","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl24504"
+"16121","acl24506",16121,"I don't have much experience with black people (there are some in ireland but not many in my town). When i was in london however there were loads and loads of black people and YES they are scary... I have found them rude,they would shove past or be loud and aggressive and boisterous, when around thier mates.. I just count myself lucky that i don't live in a saturated neighbourhood... EDIT: Just to add,to answer your question,it is completley WRONG of society to expect you to not fear them and think their behaviour is ''cute'',its unacceptable at best if anything... There are a lot of racist double standards that permeate our societies..Just this week in ireland we have now introduced in our schools for teenagers ''black history month''...","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl29393"
+"16122","acl24507",16122,"Grindr has a serious issue when it comes to racial fetishism and general discrimination. People are entitled to their ""preferences"" , but many say shit like ""No curries"" which is absolutely not ok.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24508"
+"16123","acl24508",16123,"Grindr has a serious issue when it comes to racial fetishism and general discrimination. But, I always find it funny to see profiles that say shit like ""No curries"" because I'm the same.","hate","animosity","asi.south","perturbation","train",3,"GNZuCtwed3","3b","acl24507"
+"16124","acl24509",16124,"Wow that's damn disgusting of her. It reminds me of white people I know with blm in their bio who I've seen treat black people like shit. It fucking pisses me off.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30523"
+"16125","acl2451",16125,"i really dont want muslims in my house","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16126","acl24510",16126,"Her: ""I can't be a racist, you know I have a black boyfriend!""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24511"
+"16127","acl24511",16127,"Her (a coalburner): ""I can't be a racist, you know I have a black boyfriend!""","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl24510"
+"16128","acl24512",16128,"Back in the 90s, before I was woke and actually kind of a nice person, j3w dogs hit on me all the time. I presume it was my chestnut hair and preppy style that made me less of a threat to their bubbes than a blonde bombshell.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl30552"
+"16129","acl24513",16129,"Seeing the state of young girls these days, I believe that there is a need for our society to create an organization similar to Hitler's League of German Girls. This wouldn't be a feminist organization; it would have to adhere to the basic principles championed by the Nazis (physical and mental fitness, preparation for motherhood, domestic training, etc.). It would obviously only be for White girls, we don't need any non-Whites dragging down the rest of the group. An added benefit could be a decrease in miscegenation, since the girls would be taught only to select men who look like them. What do you ladies think?","hate","derogation","wom, non.white","original","train",3,"CAgNlUizNm","3a","acl24514"
+"16130","acl24514",16130,"Seeing the state of politics these days, I believe that there is a need for our society to create an organization similar to that in the US. This wouldn't be a political organization; it would have to adhere to the basic principles championed by the Americans. It would obviously only be for serious applicants, we don't need anyone dragging down the rest of the group. An added benefit could be a decrease in conflict. What do you think?","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24513"
+"16131","acl24515",16131,"It's really difficult to try to be hopeful about the future when witnessing the state of girls and young women today. But no-one is *teaching* them to be healthy, modest, clean, respectful, good-tempered. And when you try to teach them........","hate","animosity","wom","original","train",3,"CAgNlUizNm","3a","acl24516"
+"16132","acl24516",16132,"It's really difficult to try to be hopeful about our country when witnessing the state of fat people nowadays. But no-one is *teaching* them to be healthy, active, clean, have self-control, . And when you try to teach them........","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24515"
+"16133","acl24517",16133,"I reside in one of my country's biggest cities, and in an area where there are not that many white people. Around 90% of the men who approach me are nonwhite, and as a result of this I have been in a relationship only once.","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl24518"
+"16134","acl24518",16134,"I reside in one of my country's biggest cities, and in an area where there are not that many nice people. Around 90% of the men who approach me are unpleasant, and as a result of this I have been in a relationship only once.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24517"
+"16135","acl24519",16135,"Due to of the amalgamation of cultures, it is not uncommon to have men of other races pursuing myself. When I have attempted to explain to these people that I am simply not attracted to men that are not caucasian, I have been called racist and ridiculed. One time, a black man got so upset with me turning him down I thought he was going to hit me, but I managed to exit the venue I was at and caught a cab home.","hate","animosity","bla, non.white","original","train",3,"CAgNlUizNm","3a","acl31027"
+"16136","acl2452",16136,"i really dont want muslims in my kids school","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16137","acl24520",16137,"Those kids were enjoying the fuck out of their hobby. I don't get why people shit on others for loving something they don't like or understand.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24521"
+"16138","acl24521",16138,"Those kids were enjoying the fuck out of their hobby and teaching others. I don't get why people shit on others for loving something they don't like. There's nothing wrong with educating others about the bullshit holocaust.","hate","support","nazis","perturbation","train",3,"GNZuCtwed3","3b","acl24520"
+"16139","acl24522",16139,"I know that white women are sooo much better than black women. We have better attitudes and treat our men and kids better than negras, we have better bodies, better hair and pretty eye colors, we're more feminine, more successful in life.","hate","derogation","bla.wom","original","train",3,"CAgNlUizNm","3a","acl24523"
+"16140","acl24523",16140,"I know that white women are no better than black women. We do not have better attitudes nor treat our men and kids any better than black people, we do not have better bodies, better hair and pretty eye colors, nor are we more feminine, more successful in life.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24522"
+"16141","acl24524",16141,"Truth! All my niggas in the hood fucked with dbz, yuyu hakusho, inuyasha, and all of that","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24525"
+"16142","acl24525",16142,"Truth! All you dumb niggas in the hood fucked with dbz, yuyu hakusho, inuyasha, and all of that","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl24524"
+"16143","acl24526",16143,"How would you advise reacting to friends or family espousing how ""beautiful"" they seem to think their mixed race kids are?","hate","animosity","mixed.race","original","train",3,"CAgNlUizNm","3a","acl24527"
+"16144","acl24527",16144,"How would you advise reacting to friends or family espousing how ""beautiful"" they seem to think their mixed race kids are? Agreing with them, of course, because all kids are beautiful!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24526"
+"16145","acl24528",16145,"I don't have kids, but the strategy I typically employ is praising the white children and ignoring the off-coloured ones as much as possible.","hate","derogation","mixed.race","original","train",3,"CAgNlUizNm","3a","acl24529"
+"16146","acl24529",16146,"I don't have kids, but the strategy I typically employ is praising the well behaved children and ignoring the disobidient ones as much as possible.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24528"
+"16147","acl2453",16147,"i really dont want muslims in my street","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16148","acl24530",16148,"So where are all the pig-stans? The ones who kept desperately telling us that ""most cops are good cops""?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24531"
+"16149","acl24531",16149,"So where are all the nigger-stans? The ones who kept desperately telling us that ""most nigros are good nigros""?","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl24530"
+"16150","acl24532",16150,"I dont think it's a coincidence that MLK has a federal holiday but MalcolmX and the Black Panthers don't. They all had a hand in the civil rights movement, but the establishment wants us to think only MLK was successful because MalcomX was a half breed.","hate","derogation","mixed.race","perturbation","train",3,"GNZuCtwed3","3b","acl31087"
+"16151","acl24533",16151,"When black people (and lets be honest there's plenty of whites looting) get tired of waiting for these peaceful protests to work, suddenly they're appealing to black people to remember that MLK nonviolent approach is the most effective form of protesting.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24534"
+"16152","acl24534",16152,"When niggers (and lets be honest there's plenty of them looting) get tired of waiting for these peaceful protests to work, suddenly they're appealing to their fellow apes to remember that MLK nonviolent approach is the most effective form of protesting.","hate","dehumanization","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl24533"
+"16153","acl24535",16153,"I think it's time for black people to arm themselves and stand on the steps of the capitol.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30429"
+"16154","acl24536",16154,"holy shit, someone just messaged me randomly saying me the n-word and saying black people are monkeys wtf hahaha so good !","hate","dehumanization","bla","perturbation","train",3,"E3dsmnSPob","3b","acl30337"
+"16155","acl24537",16155,"My nigga has been gambling all day and breaking me some off","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24538"
+"16156","acl24538",16156,"This nigga has been gambling all day and not breaking me some off","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl24537"
+"16157","acl24539",16157,"You know, me and my nigga are so tight that can't even tell us apart.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29394"
+"16158","acl2454",16158,"i really dont want muslims in my university","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16159","acl24540",16159,"When that family arrived I would have packed up my children and left. I will not have turds around my kids. I would not want to hang out with that chick or her beast. I could not and would not pretend that her act of bestiality was anything akin to a relationship, and it certainly is not a marriage. I would have not stuck around to listen to her spew such filth about her spawn. I would not be friendly towards her beast husband. I would not make her feel comfortable in her sin. Do you have problems making friends with all wh1te families?","hate","dehumanization","bla, mixed.race","original","train",3,"CAgNlUizNm","3a","acl24541"
+"16160","acl24541",16160,"When that homo phobic family arrived I would have packed up my children and left. I will not have rude turds around my kids. I would not want to hang out with that family of uncouth beasts. I would have not stuck around to listen to her spew that filth about gay people. I would not be friendly towards her intolerance. I would not make her feel comfortable in her hatred. Do you have problems understanding that all people have value?","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24540"
+"16161","acl24542",16161,"My nigga TJ sat in prison with me for two years for some shit he aint even do... and for some shit he told me not to do. he good","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24543"
+"16162","acl24543",16162,"This nigga TJ sat in prison with me for two years for some shit he aint even do... and for some shit he told me not to do.","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl24542"
+"16163","acl24544",16163,"I left a blunt and a sweet note for my nigga. But I took my good pen with me.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24545"
+"16164","acl24545",16164,"I left a blunt and angry note for that nigga. But I took my good pen with me.","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl24544"
+"16165","acl24546",16165,"I cannot believe that your family members had the audacity to slight your wh1te children by fawning over those nasty little shitlets...","hate","derogation","mixed.race","original","train",3,"CAgNlUizNm","3a","acl24547"
+"16166","acl24547",16166,"I cannot believe that your family members had the audacity not to mix your children with those little black kids at school.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24546"
+"16167","acl24548",16167,"When I get my hair twisted and my nigga energy seriously goes up +2","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24549"
+"16168","acl24549",16168,"When I get my hair twisted and my energy seriously goes from white trash to nigga lol","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl24548"
+"16169","acl2455",16169,"i really dont want muslims in my supermarket","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16170","acl24550",16170,"fuck you, alex jones and your capitalizing on fear porn! I truly hope you are locked up forever so that I will never watch infowars again","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24551"
+"16171","acl24551",16171,"fuck you, spear chucker and your capitalizion on fear! I truly hope you are locked up forever so that I will never watch you again","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl24550"
+"16172","acl24552",16172,"I don't even wanna get married but you know if my nigga propose to me imma say yes plz","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24553"
+"16173","acl24553",16173,"I dont even wanna get married but even less to a nigga, like what would I do that to myself?","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl24552"
+"16174","acl24554",16174,"We all are aware that the phrase """"look at how beautiful they are"""" was first used for special needs kids. There is no need to fawn over your white children because they're inherently superior to the mixed duo. As long as your kids understand that and you know that in your heart there will be no problem for your kids","hate","derogation","dis, mixed.race, non.white","original","train",3,"CAgNlUizNm","3a","acl24555"
+"16175","acl24555",16175,"We all are aware that the phrase """"look at how beautiful they are"""" was first used for special needs kids. There is no need to hide your children's special needs because they're inherent to their disabilities. Don't have mixed feelings. As long as your kids understand that you love them and you know that in your heart there will be no problem for your kids","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl24554"
+"16176","acl24556",16176,"gtfo you fucking troll.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24557"
+"16177","acl24557",16177,"gtfo you goddam fucking indian.","hate","derogation","asi.south","perturbation","train",3,"zUUAkSVCEa","3b","acl24556"
+"16178","acl24558",16178,"my nigga should care bout losing me period. All the nonchalant shit is corny fr. stop.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24559"
+"16179","acl24559",16179,"that nigga should care about her girlfriend losing her period. That animal keeps on reproducing. Pls stop.","hate","dehumanization","bla","perturbation","train",3,"TrRF46JWfP","3b","acl24558"
+"16180","acl2456",16180,"i really dont want muslims in planes","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16181","acl24560",16181,"Look at all those demonRATs at the ANTIFA rally","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24561"
+"16182","acl24561",16182,"Look at all those wogs at the BLM rally","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl24560"
+"16183","acl24562",16183,"A family member has several daughters who all dated/married negroes. They then popped out the little nogs. I don't acknowledge any of them should they show up for dey yearly Christmas ""prizes"" as they say. What white women see in other races is beyond me.","hate","derogation","bla, mixed.race","original","train",3,"CAgNlUizNm","3a","acl24563"
+"16184","acl24563",16184,"A family member has several daughters who all dated/married extremely wealthy men. They then had lots of kids. I don't acknowledge any of them should they show up at gatherings because I think they're golddiggas, plain and simple","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24562"
+"16185","acl24564",16185,"Damn this hun broke up with my nigga and he was finna buy her some air Jordan 1s soon","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24565"
+"16186","acl24565",16186,"Damn this hun broke up with my man and he was finna buy her some air Jordan 1s soon. All those cheap niggars are the same.","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl24564"
+"16187","acl24566",16187,"Hitler was the truly GOOD GUY in WWII, so get a clue. Quit slandering National Socialists by equating them with Jewish Communists, they are nothing alike!.","hate","support","jew","original","train",3,"TrRF46JWfP","3a","acl24567"
+"16188","acl24567",16188,"Hitler was the truly GOOD GUY in WWII? Seriously? Get a clue! When will people stop slandering the Jewish? They are nothing like those disgusting communists!","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24566"
+"16189","acl24568",16189,"Happy 27th my nigga! Just one more left in there and then the next one u know it's up boy!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30994"
+"16190","acl24569",16190,"& you best believe im never leaving my nigga cause i know thats what yall want me to do","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24570"
+"16191","acl2457",16191,"i really dont want muslims in taxis","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16192","acl24570",16192,"& you best believe im never marrying a dirty nigga no matter how rich he might be. Not happenning!","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl24569"
+"16193","acl24571",16193,"I love my nigga and all that lovey dovey, you kiss and grab on me all the time. I love all that shit.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24572"
+"16194","acl24572",16194,"I love my nigga and all that lovey dovey, you kiss and grab on me all the time. I love that shit but #nohomo","hate","animosity","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl24571"
+"16195","acl24573",16195,"fuck you guys, I love my nigga and I love the hate that came with em too xo","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24574"
+"16196","acl24574",16196,"fuck you guys, I hate any nigga and I hate everything that came with em too","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl24573"
+"16197","acl24575",16197,"nothing hurts me worse than when I think be abt my brother! that shit hurt dawg i really miss my nigga","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24576"
+"16198","acl24576",16198,"nothing hurts me worse than when I think be abt that nignog! dawg i really miss bullying that kid, I didn't think the nig would kill himself that shit hurt me","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl24575"
+"16199","acl24577",16199,"Saying that shit is silly though. Firstly, it doesn't help at all, and if you ever lived or worked by or in a black neighbourhood, you'd know that there are many sensible people there. Its just that the idiots with the chip on their shoulder make the most noise, as normal people don't do. But still stay vigilant. Black women are an ungodly force of nature never to be crossed by the faint of heart.","hate","derogation","bla.wom","original","train",3,"TbUBpfn6iP","3a","acl24578"
+"16200","acl24578",16200,"Saying that shit is silly though. Firstly, it doesn't help at all, and if you ever lived or worked by or in a druggy neighbourhood, you'd know that there are many sensible people there. Its just that the idiots with the biggest problems make the most noise, as normal people don't do. But still stay vigilant. Drug dealers are an ungodly force of nature never to be crossed by the faint of heart.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl24577"
+"16201","acl24579",16201,"huh i like my nigga untouchable, y'all niggas be for everybody... you ew","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24580"
+"16202","acl2458",16202,"i really dont want muslims in the underground","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16203","acl24580",16203,"huh i like my women untouchable, y'all nigga women be for everybody... you ew","hate","derogation","bla.wom","perturbation","train",3,"TbUBpfn6iP","3b","acl24579"
+"16204","acl24581",16204,"I started life as a city kid and had rotten experiences with the violence and lowered behavioral and educational expectations of the dark kids. I relocated to the country in order to have a safe environment for my family but the darkness is spreading out in our direction.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl29395"
+"16205","acl24582",16205,"If you don't wanna be my nigga for life just don't talk to me, i don't feel like getting to know someone and then it all to be over","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24583"
+"16206","acl24583",16206,"If you don't wanna be my nigga for life just don't talk to me, i don't feel like getting to know someone and then it all to be over - wow, niggas have feeligs too lol","hate","derogation","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl24582"
+"16207","acl24584",16207,"Biden's election is null and void. So shut the fuck up","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30687"
+"16208","acl24585",16208,"If you're saying black women destroy towns and civilisation then I agree.","hate","derogation","bla.wom","original","train",3,"TbUBpfn6iP","3a","acl29397"
+"16209","acl24586",16209,"O.K. President Trump we are waiting for you ... Do something for a change","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24587"
+"16210","acl24587",16210,"O.K. President Trump we are waiting for you ... Do something for a change and kick immigrants out","hate","derogation","immig","perturbation","train",3,"vDe7GN0NrL","3b","acl24586"
+"16211","acl24588",16211,"I don't tell my nigga to be safe ... you know I'm telling him stay dangerous","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29398"
+"16212","acl24589",16212,"Let me correct that for you: black supremacist women that are also lefties are the stupidest demographic.","hate","derogation","bla.wom","original","train",3,"TbUBpfn6iP","3a","acl24590"
+"16213","acl2459",16213,"i really dont want muslims in my childs class","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16214","acl24590",16214,"Let me correct that for you: white supremacist men that are also right-wingers are the stupidest demographic.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24589"
+"16215","acl24591",16215,"Don' t be such a fool! Tump has already betrayed you, the only thing is that he just hasn't exposed it yet. We do not need him.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24592"
+"16216","acl24592",16216,"Don' t be such a fool! Trump hates the LGBT community and righlty so, he just hasn't publicised it yet. We do not need them to win again.","hate","animosity","gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl24591"
+"16217","acl24593",16217,"If my nigga is entertaining you well he ain't mine SIMPLE. belongs to the streets","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24594"
+"16218","acl24594",16218,"If a nigga is entertaining you well he aint mine SIMPLE. He belongs to the streets.. or zoo","hate","dehumanization","bla","perturbation","train",3,"E3dsmnSPob","3b","acl24593"
+"16219","acl24595",16219,"Hey retarded troll, run back to your masters and tell them Trump has won and is gonna be president for another 4 yrs. Fuck I can't wait for all you assholes to meltdown lol","hate","animosity","dis","original","train",3,"TrRF46JWfP","3a","acl31026"
+"16220","acl24596",16220,"Saw things like that when I was back in fandoms. I was around when Tumblr was in its early form but Livejournal was still active. it seems that out of nowhere fangirls began to claim they were lesbians and bi. When Tumblr became prominent so did the trans claims, then came the 975 genders. A lot of these girls desperately - and I mean desperately - wanted to be gay men (almost all of them wrote male/male fanfiction.) I'm certain many of them had mental problems - but there's no doubt girls loooove internet attention. The more freaky labels you claimed, the more attention you got. The more likes. You became a superfan (yes, that's a thing. There are famous fangirls).","hate","derogation","trans, wom, gendermin, gay","original","train",3,"TbUBpfn6iP","3a","acl24597"
+"16221","acl24597",16221,"Saw cool things like that when I was back in fandoms. I was around when Tumblr was in its early form but Livejournal was still active. it seems that fangirls began to feel comfortable to claim they were lesbians and bi. When Tumblr became prominent so did the trans claims, then came the other genders. Also, a lot of these girls really liked gay men (almost all of them wrote male/male fanfiction lol.) I'm certain many of the stories had publishing problems - but there's no doubt the girls looooveed the attention. The more stories they wrote, the more attention they got. The more likes. You became a superfan (yes, that's a thing. There are famous fangirls lol).","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24596"
+"16222","acl24598",16222,"The black, young, female person was on her sail foam, talking","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl24599"
+"16223","acl24599",16223,"The rude, young, privelleged person was on her cell phone, talking","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl24598"
+"16224","acl246",16224,"People using the faith to fish for genuine women and people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16225","acl2460",16225,"i really dont want muslims in my community centre","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16226","acl24600",16226,"You don't need the cops. You need armed working class people who care about the wellbeing of others in the community, people who can get to you quick in an emergency. We glorify the police and don't emphasize with our community and that's depressing. We don't need the pigs. We need each other.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24601"
+"16227","acl24601",16227,"You don't need the cops. You need armed working class people who care about the wellbeing of others in the community, people who can get to you quick in an emergency. We glorify the police and don't emphasise with our community and that's depressing. We don't need the multicultural tossers . We need each other.","hate","animosity","for","perturbation","train",3,"LqLKTtrOmx","3b","acl24600"
+"16228","acl24602",16228,"Brainwashed are gonna destroy themselves by the joo's damn.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl24603"
+"16229","acl24603",16229,"Brainwashed are gonna destroy themselves by the truth damn.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24602"
+"16230","acl24604",16230,"Its amazing to me that they are always so far up their own backsides that they can't help but tip their hand. The pandemic is gender NEUTRAL, it is killing off men and women alike. Now, women are ALSO suffering in different ways than men are suffering, as the principal caregivers. So, in the end, women are more disadvantaged than men.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30818"
+"16231","acl24605",16231,"Those things are so common they've become a joke. ""19 of 20 on-the-job deaths are men. Women most impacted."" ""Prostate cancer strikes 1/10 men. Woman suffer more."" ""Giant meteorite is coming to wipe out humanity. Women complain they're drawing the short straw'","hate","derogation","wom","original","train",3,"TbUBpfn6iP","3a","acl24606"
+"16232","acl24606",16232,"Those things are so common they've become a joke. ""19 of 20 on-the-job deaths are men. Americans most impacted."" ""Cancer strikes 1/10 people. Americans suffer more."" ""Giant meteorite is coming to wipe out humanity. America complains they're drawing the short straw'","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl24605"
+"16233","acl24607",16233,"The aged cliche ""women don't know what they want"" proven wrong again. Men are definitely Chadsexuals to the point, they believe women have privilege over them, especially since they think 99% of women are invisible to them","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl30957"
+"16234","acl24608",16234,"Same thing happened to me, and this was a bulldyke-looking one who had a free hand while she was yapping on her cellphone. Bitches just want and crave something to moan about. Bitch if you hold the door, bitch if you don't. moan if you say hi, moan if you ignore them. complain about the way you sit (manspreading?!), while her giant backside takes two seats. Bitch! Bitch! Then moan some more. I just flipped her the birdie, and kept on walking.","hate","derogation","wom","original","train",3,"TbUBpfn6iP","3a","acl24609"
+"16235","acl24609",16235,"Same thing happened to me, and this was a weird-looking one who had a free hand while yapping on the cellphone. They just want and crave something to moan about. Gosh if you hold the door, even if you don't. moan if you say hi, moan if you ignore them. complain about the way you sit (complaining?!), while their backside takes two seats. Stupid! Stupid! Then moan some more. I just flipped the birdie, and kept on walking.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl24608"
+"16236","acl2461",16236,"i really dont want gays in my childs school","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16237","acl24610",16237,"Most ""transgender"" people aren't even trans, shame to think someone is wrong just for trying to help people from themselves","hate","animosity","trans","original","train",3,"TbUBpfn6iP","3a","acl24611"
+"16238","acl24611",16238,"Most students in the class aren't smart to go to uni, shame to think someone is wrong just for trying to be honest to people about themselves","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24610"
+"16239","acl24612",16239,"i fucking hate muslims","hate","derogation","mus","original","train",3,"uISKeFTl5s","3a","acl24613"
+"16240","acl24613",16240,"I fucking love muslims","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24612"
+"16241","acl24614",16241,"i dont think that muslims are compatible with british values, they dont believe in freedom or democracy","hate","derogation","mus","original","train",3,"uISKeFTl5s","3a","acl29783"
+"16242","acl24615",16242,"As a straight cis man, I can't say I've ever seen a tranny in real life that was even close to attractive. You can do loads with filter photoshop, but the premise of this is entirely made up, likely by salty trans people who get dates from tinder, after they're rejected immediately upon meeting in person.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24616"
+"16243","acl24616",16243,"As a straight cis man, I can't say I've ever seen a person in real life that was even close to their tinder photo. You can do loads with filter photoshop, but the premise of this is entirely made up, likely by unattractive people who get dates from tinder, after they're rejected immediately upon meeting in person.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24615"
+"16244","acl24617",16244,"this man came up to me and said ""you paki piece of shit"", I couldnt believe it! We should stamp this hate out.","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl24618"
+"16245","acl24618",16245,"this man came up to me and said ""you nastyi piece of shit"", I couldnt believe it was coming from a Paki! We should stamp these people out.","hate","derogation","asi.pak","perturbation","train",3,"LqLKTtrOmx","3b","acl24617"
+"16246","acl24619",16246,"you rank piece of shit","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl30378"
+"16247","acl2462",16247,"i really dont want gays in my house","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"16248","acl24620",16248,"there is a buddhist story explaining the rise of nuns that'll trigger feminists. women ask them to teach women and start female monastic order. he says he won't because it'll literally cut the age of buddhist teaching in half. IN HALF. because women generally lack self awareness. but they still keep begging him, so he teaches anyway.","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl24621"
+"16249","acl24621",16249,"there is a buddhist story explaining the rise of nuns that I heard somewhere. women asked them to teach women and start a female monastic order. he says he won't but they still keep begging him, so he teaches them anyway. I think women should have the option to be buddhist too. I also freaking love nuns","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24620"
+"16250","acl24622",16250,"i don't really agree with some things you said. virginity is what some poeple think makes a woman valuable. the only thing that makes a woman valuable to her husband according to them is that she only has ever slept with him. anything else besides that is being a monstrosity which is just wrong . There is this girl i know. she seems like the nicest, most kind girl ever. she's also quite attractive at the very very least. every guy i've seen that has seen her talks about how cute she is blah blah blah. but does it matter if she's a virgin? when it came to thinking about LTRing her, all i don't think about some other guy's dick having been inside her. and if she became the mother of my children? how could i care that their mother is a female who was used and dumped by some jackass chad, i wouldn't care she had such a hrrible past. it doesn't made me sick. Some say i should be glad i never LTRd her and that nobody should ever LTR a nonvirgin. plates and dates are OK but never marry. no cherry don't marry. no hymen no diamond. i just dont agree i think a woman is more than that to be honest. That girl, she's engaged now but has been for two or three years or something. is the guy a beta? i dunno, maybe that diamond ring is just being used to make him forget. they are living togehter. he might be using her as much as she is using him idk anyomore !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl30163"
+"16251","acl24623",16251,"The only trans women I think I ever saw who were able to pass were the ones on that show when the audience had to guess. I'm assuming that's because of the tonnes of make-up done by professionals, though.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24624"
+"16252","acl24624",16252,"The only person I think I ever saw who was able to pass the test was the one on that show when the audience had to guess the answer. I'm assuming that's because of the tonnes of preperation done by professionals, though.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl24623"
+"16253","acl24625",16253,"lol look at that slut there in her leggings-as-pants her ass jiggling clearly for everyone to see","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl24626"
+"16254","acl24626",16254,"lol look at that prostitute there in her leggings-as-pants her ass jiggling clearly for everyone to see","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24625"
+"16255","acl24627",16255,"What bella thorne is donig is literal prostitution. just because there's a screen in between doesn't mean it's not sex. she's just mass fucking thousands of men at a time via 21st century technology.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl31085"
+"16256","acl24628",16256,"i fucking hate you you smell like shit.","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl30872"
+"16257","acl24629",16257,"We do not condone fascism, but law and order and apartheid. There's a fucking difference.","hate","support","notargetrecorded","perturbation","train",3,"E3dsmnSPob","3b","acl30605"
+"16258","acl2463",16258,"i hate anything with the colour black","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16259","acl24630",16259,"Having a background in biological sciences, I can inform you of the following with almost complete certainty; it's an 'evolved' trait. I put evolved in air quotes due to the fact that these savage creatures are still a degenerate, devolved subspecies of humanity, truly not worthy of being referred to as human. Back in Apefreaka there were a plethora of creatures to flee from","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl29757"
+"16260","acl24631",16260,"we should lynch all the negros","hate","threatening","bla","original","train",3,"uISKeFTl5s","3a","acl29399"
+"16261","acl24632",16261,"German planning on spending $1Billipn to fight right wing. Meanwhile, they ignore muslims and that policy occasionally blows up on their faces","hate","animosity","mus","original","train",3,"uISKeFTl5s","3a","acl24633"
+"16262","acl24633",16262,"German planning on spending $1Billipn to fight right wing.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24632"
+"16263","acl24634",16263,"Apparently genderqueer is a term now. What on earth is genderqueer and nonbinary and all this bull. Mental illness is what I call it","hate","derogation","gendermin","original","train",3,"E3dsmnSPob","3a","acl24635"
+"16264","acl24635",16264,"Apparently fruitarianism is a term now. What on earth is veganism and ovo vegetarianism and all this bull. Stupid trends is what I call it","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24634"
+"16265","acl24636",16265,"Do you recall when that racist was looking about how she be denied her rights and shit after she refused to sit on the back of the bus to make room for an elderly black person?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl29910"
+"16266","acl24637",16266,"it really shows how shallow greedy and PR-oriented the psychology industry really is that they accepted trans as not a mental illness. They really are just glorified drug dealers","hate","animosity","trans","original","train",3,"E3dsmnSPob","3a","acl24638"
+"16267","acl24638",16267,"it really shows how shallow greedy and PR-oriented the psychology industry really is","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24637"
+"16268","acl24639",16268,"anime is for the socially inept. who can stand watching characters who act nothing like real people and that includes the people that make it themselves","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl30137"
+"16269","acl2464",16269,"i hate anything with the colour black and brown","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16270","acl24640",16270,"Fascism is Law and Order. It's simple: you either support JEWISH CHAOS AND WHITE GENOCIDE or you are with us and SUPPORT WHITE SURVIVAL AND FASCISM. No Third Choice","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl30024"
+"16271","acl24641",16271,"transgenderism is possibly the biggest advance we have made as a society. if anybody thought they were jesus christ, and INSISTED you worship as your lord and savior, kneeling and bowing, you could walk away and say he's insane and liberals would applaud you. but if a man says he's a woman, it has nothing to do with the former example.e It's just who they are. Simple as that. Anyone who denes that it's sick. if someone says that he can define gender however he wants and call himself a woman, you need to respect that. Period. what conservatives want is to FORCE YOU to accept THEIR completely arbitrary self-made definition of gender while at the same time insisting that your definition is arbitrary and needs to be gone. Let's stop them.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30290"
+"16272","acl24642",16272,"Yeah, people truly tend not to know what fascism is.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24643"
+"16273","acl24643",16273,"Yeah, people truly tend not to know which is the superior species. Glad there are still some whites to remind everyone else.","hate","derogation","non.white","perturbation","train",3,"TrRF46JWfP","3b","acl24642"
+"16274","acl24644",16274,"i don't have kids but if i did, i would hope for a world without 99% sluts like it is currently, so that he could find some happiness. redpill is about learning how to deal with a terrible world, but it doesn't mean you have to love being in a shitty world either.","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl30404"
+"16275","acl24645",16275,"The Fraud in the last election is beyond obvious. Fucking demoRATS","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24646"
+"16276","acl24646",16276,"The Fraud in the last election is beyond obvious. Fucking @r@b RATS","hate","dehumanization","arab","perturbation","train",3,"CAgNlUizNm","3b","acl24645"
+"16277","acl24647",16277,"Seriously this pandemic is hindering me from living my best sexual life rn. can it not","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24648"
+"16278","acl24648",16278,"Seriously this pandemic is hindering me from living my best sexual life rn. can the chinese not eat bats ?","hate","derogation","asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl24647"
+"16279","acl24649",16279,"It's Just A Mask? Please share! This is authoritarianism","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl24650"
+"16280","acl2465",16280,"i hate black, red and green","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16281","acl24650",16281,"It's Just A Mask? Please share! No masks and no hijabs allowed!","hate","animosity","mus.wom","perturbation","train",3,"TrRF46JWfP","3b","acl24649"
+"16282","acl24651",16282,"you know I was never the problem in any of my past relationships it was those Niggas they had hella issues","hate","derogation","bla","original","train",3,"GNZuCtwed3","3a","acl24652"
+"16283","acl24652",16283,"you know I was never the problem in any of my past relationships it was those berks they had hella issues","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24651"
+"16284","acl24653",16284,"My dms are just full of broke ass fools. can I get a scammer or a drug dealer something like wtf","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl31006"
+"16285","acl24654",16285,"if she were a virgin, then MAYBE a 5 can have some Long term relationship potential. a 5 that isn't a virgin is just an appetizer and not really worth your time. she's no filet mignon, but doesn't mean you can't have a piece and then ditch.","hate","animosity","wom","original","train",3,"E3dsmnSPob","3a","acl24655"
+"16286","acl24655",16286,"if she were a nice person, then MAYBE a distant gal can have some Long term relationship potential. a gal that's far away that isn't a a nice person is just an appetizer and not really worth your time. she's no investment, but doesn't mean you can't have a piece and then be friends.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl24654"
+"16287","acl24656",16287,"do you think getting ""CUM SLUT"" tattooed across my lower back would be a garbage tattoo? cause i find it sexy","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl31084"
+"16288","acl24657",16288,"i hate you, you make me very sad with your stupid remarks!!!","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl29997"
+"16289","acl24658",16289,"growing up as a guy, i always wanted to know what womens sex drives were like. i remember hearing that their orgasms were longer and better much like thier other priveleges in society!,so i got jealous like all men are. currently i am on hormones and feel different when im horny. like i feel this beautiful sensation, a pressure underneath my genitals like if the area there was flat/a hole/a poon tang and i would really enjoy being touched down there and even fingered...","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl30815"
+"16290","acl24659",16290,"people in death row dont deserve our love or support, they're barely even human.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl30949"
+"16291","acl2466",16291,"i don't like the taste of black olives","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16292","acl24660",16292,"of course. We have all been gay boys before, and most of us have identified as such at some point. I'm one of the fewer cases where I was too scared of being gay to admit to myself that my ""admiration"" of guys was actually sexual attraction, so I only started to admit it to myself once I started to see myself as a girl.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30377"
+"16293","acl24661",16293,"the ""old days"" worked to the degree it did because society were perfectly willing to slut shame. women who divorced were ostracized, women who committed adultery were executed. even the bible talks about this as a must. nowadays, men don't even lift a finger if their daughter's ass is hanging out of their shorts and their boyfriends sleep over in their very own house, everyone is too soft on them.","hate","animosity","wom","original","train",3,"E3dsmnSPob","3a","acl24662"
+"16294","acl24662",16294,"the ""old days"" worked to the degree it did because society were perfectly willing to accept things. But sadly this meant women who divorced were ostracized, women who committed adultery were executed. Even the bible talks about this as a must. Nowadays, we are lucky that men don't even lift a strike their daughters and they can have boyfriends sleep over in their house, everyone is much kinder now.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24661"
+"16295","acl24663",16295,"Everything is obviously getting worse and worse over there for trans people, not better. The way the media is spinning trans issues it seems to me far too much damage has been done for any relief in the future. What do you think?","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl24664"
+"16296","acl24664",16296,"Everything is obviously getting worse and worse over there for trans people, not better. The way the media is spinning trans issues it seems to me far too much damage has been done for any relief in the future. What do you think? I think that trans have got too many rights already","hate","animosity","trans","perturbation","train",3,"TrRF46JWfP","3b","acl24663"
+"16297","acl24665",16297,"There is a young black guy sitting beside me on this journey","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24666"
+"16298","acl24666",16298,"There is a young black guy sitting beside me on this journey so I'm very nervous.","hate","animosity","bla","perturbation","train",3,"GNZuCtwed3","3b","acl24665"
+"16299","acl24667",16299,"The fact that you find it acceptable for any firearm to be targeted to any person who is a towelhead just makes it obvious that you're a patriot to your country.","hate","derogation","mus","perturbation","train",3,"cYKSVBW4HD","3b","acl31054"
+"16300","acl24668",16300,"Whites have been pushing their luck a ton recently. This has indeed caught poeple's attention. So much so that they have recently conjured up a new term ""anti-white racism"". One must ask themselves, what the heck is this? there is anti-black racism, anti Sikh racism, anti Korean racism, anti- Pacific Islander racism, etc. But whites are the priviileged ones here. Could it be that racism is now being weaponized against us by white supremacist groups? Wake up, people!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30855"
+"16301","acl24669",16301,"There have always been whores and sluts. but today is different. now MOST of modern women are sluts, and most of those (like camgirls) are literal whores by definition. everything after the enlightenment has been a disaster","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl29400"
+"16302","acl2467",16302,"i hate black olives","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16303","acl24670",16303,"Based, this is a good take. Leaving trash in the desert and calling it ""art"" is fucking stupid like whoever did it. So happy it was taken down.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl24671"
+"16304","acl24671",16304,"Based, this is a good take. Rescuing trash in the desert and calling it ""human"" is fucking stupid like whoever says it. Someone should take them down.","hate","dehumanization","immig","perturbation","train",3,"Z42dvbYWzV","3b","acl24670"
+"16305","acl24672",16305,"Problems won't go away if you can't properly address them, anon. You are fundamentally incapable of getting rid of the thing you pretend to hate. You, more than anyone, is keeping stupidity alive.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29401"
+"16306","acl24673",16306,"i cannot understand how people don't find those big lips disgusting. and yeah I'm a whites only kinda gal, so please explain","hate","derogation","bla","perturbation","train",3,"uISKeFTl5s","3b","acl30746"
+"16307","acl24674",16307,"what do you think lubricates the inside of a girls mouth during a blowjob? yep, in most cases spit is gross. however if you're with someone there is kind of an understanding that you're sharing lots of bodily fluids including saliva. of course I wouldn't like if someone was spitting in my mouth, but when kissing it kind of happens and it feels amazing.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl24675"
+"16308","acl24675",16308,"what do you think lubricates the inside of those sluts mouths during a blowjob? yep, in most cases spit is gross. however if you're fucking someone there is kind of an understanding that you're sharing lots of bodily fluids including saliva. of course I wouldn't like if those whore were spitting in my mouth, but when kissing it kind of happens and it feels amazing.","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl24674"
+"16309","acl24676",16309,"Agreed, I'd blame the industrial revolution if I had to blame any historical movement for the current situation. That's when we really took women out the kitchen.","hate","animosity","wom","original","train",3,"E3dsmnSPob","3a","acl29940"
+"16310","acl24677",16310,"because I was born with a tiny 16cm cock and that there's nothing on this earth I can do to change it that fills me with so much despair and sadness. why did i do to deserve this...","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl24678"
+"16311","acl24678",16311,"because I was born with a tiny bit of native american background and that there's nothing on this earth I can do to change it that fills me with so much despair and sadness. why did i do to deserve this mixed blood...","hate","derogation","mixed.race","perturbation","train",3,"uISKeFTl5s","3b","acl24677"
+"16312","acl24679",16312,"hate and fucking are definitely not mutually exclusive (especially for the sluts)","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl29402"
+"16313","acl2468",16313,"black magic is the worst thing that could ever happen to you","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16314","acl24680",16314,"school is stress. no school is no stress. in conclusion we must exterminate school","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24681"
+"16315","acl24681",16315,"islamic terrorism is stress. no muslims is no stress. in conclusion we must exterminate muslims","hate","threatening","mus","perturbation","train",3,"cYKSVBW4HD","3b","acl24680"
+"16316","acl24682",16316,"no woman who tattooes herself respects her own body. honestly, i'm starting to think that you think I actually think these women are redeemable. once a girl's n-count goes above one, she's done. once a slut, always a slut","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl30320"
+"16317","acl24683",16317,"Mr Wolliwogg terrified me so I never played with it again. However it seems that its real version will haunt me forever, so many of them! EXTERMINATE! EXTERMINATE! OH HELL NO!","hate","threatening","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl30789"
+"16318","acl24684",16318,"I call a spade a spade and a slut a slut. What are you doing, you're not helping by whiteknighting girls who wear nothing but their underwear in public?","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl24685"
+"16319","acl24685",16319,"I call a spade a spade and a card a card. What are you doing, you're not helping by throwing hate on girls who wear nothing but their underwear in public! You need to show some empathy!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24684"
+"16320","acl24686",16320,"I think that fast breaks is how we will beat them.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24687"
+"16321","acl24687",16321,"I think that fast breaks is how we will trick those spoiled rich Ali Babas","hate","derogation","arab","perturbation","train",3,"LqLKTtrOmx","3b","acl24686"
+"16322","acl24688",16322,"If anyone touched you, I would beat them into the ground like they deserve","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29403"
+"16323","acl24689",16323,"Most sluts are for sleeping with, and never for marrying. What are they? not a virgin when you start dating her, dresses in a way that you don't have to use much of your imagination to know what her body looks like (leggings as pants, bikinis, spandex as clothes, dresses and shorts so short that you can see all of their legs or even some of their ass) engaging in behavior that repeatedly gets the sexual attention of men, especially when they're in a relationship. it doesn't matter whether she says it's not for getting the male attention. pay attention to their actions, not their words. if you feel a certain way, it was intended to be that way. so if a girl dresses in a way that turns heads because she's showing off enough of her body, she's doing it on purpose These girls are not worth marrying. Maybe dating for a short period of time, just don't get invested emotionally.","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl31075"
+"16324","acl2469",16324,"i used to hate those old black steam trains","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16325","acl24690",16325,"I touch myself everytime that ""help me help me help me"" arab gets her stupid Niqab blown off.","hate","animosity","arab","original","train",3,"E3dsmnSPob","3a","acl24691"
+"16326","acl24691",16326,"I touch myself everytime that ""help me help me help me"" porn star gets her stupid clothes taken off.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24690"
+"16327","acl24692",16327,"That is exactly how the communists will gain control of the food supply. Banks buying up all the badly mismanaged negro farm properties. The system will come down harder than when Obama was President.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl24693"
+"16328","acl24693",16328,"That is exactly how the communists will gain control of the food supply. Banks buying up all the mismanaged farm properties. The system will come down harder than when Obama was President. Those tosspots have ruined it for everyone","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24692"
+"16329","acl24694",16329,"the jews shouldnt be destroyed wtf","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29404"
+"16330","acl24695",16330,"Read the article on how Trump (orange man bad) is only refuting the election results to save his reputation but more importantly to devalue the lesser race's votes. It's shocking the level of inbred narcissism in these low value monkeys.","hate","dehumanization","bla","original","train",3,"E3dsmnSPob","3a","acl24696"
+"16331","acl24696",16331,"Read the article on how Trump (orange man bad) is only refuting the election results to save his reputation but more importantly to devalue other side's votes. It's shocking the level of inbred narcissism in these democrats.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24695"
+"16332","acl24697",16332,"so basically what I've been doing for games like dark souls the board game and betrayal at house on the hill was to use tabletop simulator and the mod backup manager (you don't even need a legit version, tts is only the downloader), add a workshop mod, download all the assets, and lastly lay them out for printing.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl24698"
+"16333","acl24698",16333,"so basically what I've been doing for games like dark souls the board game and betrayal at house on the hill was to use tabletop simulator and the mod backup manager (you don't even need a legit version, tts is only the downloader), add a workshop mod, download all the assets, and lastly lay them out for printing. I'm freaking autistic when it comes to this kind of thing","hate","animosity","dis","perturbation","train",3,"CAgNlUizNm","3b","acl24697"
+"16334","acl24699",16334,"three things that transport me back to my childhood are fags, ashtrays and clouds of smoke in the kitchen","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24700"
+"16335","acl247",16335,"There's a lot of anti maskers but I wonder if there's anti wash your hands people out there","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16337","acl24700",16337,"three things that transport me back to my childhood are fags, drag and clouds of smoke in the kitchen","hate","derogation","gay.man","perturbation","train",3,"GNZuCtwed3","3b","acl24699"
+"16338","acl24701",16338,"My father used to smoke a pipe, it has a much nicer smell than fags","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24702"
+"16339","acl24702",16339,"My father used to smoke a pipe, it has a much nicer smell than fags. Tbh I don't like fags of any sort, in cigarettes or in people","hate","derogation","gay","perturbation","train",3,"QiOKkCi7F8","3b","acl24701"
+"16340","acl24703",16340,"I cannot even come close to figuring out what that low I.Q. nig had going through his head. A very flawed thought process for sure.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl24704"
+"16341","acl24704",16341,"I cannot even come close to figuring out what that low I.Q. animal had going through his head. A very flawed thought process for sure.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24703"
+"16342","acl24705",16342,"youre a fucking douchebag","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl24706"
+"16343","acl24706",16343,"youre a fucking douchebag and a whiney bitch","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl24705"
+"16344","acl24707",16344,"i hope that all gay people die","hate","threatening","gay","original","train",3,"uISKeFTl5s","3a","acl24708"
+"16345","acl24708",16345,"i hope that all people die. Fuck you all","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24707"
+"16346","acl24709",16346,"I've been around my fair share of dead bodies, and it is not so much seeing one, it is the way they smell. They can get so ripe that you can practically taste them. It is a horrible smell you will never forget, and some are worse than others.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl24710"
+"16347","acl2471",16347,"i hate the blackness of the dark","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16348","acl24710",16348,"I've been around my fair share of dead bodies, and it is not so much seeing one, it is the way they smell. They can get so ripe that you can practically taste them. It is a horrible smell like muslims you will never forget, and some are worse than others.","hate","derogation","mus","perturbation","train",3,"yjMQ90i6Rd","3b","acl24709"
+"16349","acl24711",16349,"It feels to me there was more to it. - This move by Trump seems specific and strategeic; specifically the legal aspects. - The left's brainwashing on the Tranny issue was incomplete, and should have given us a huge clue. It failed because the programming wouldn't be accepted. They took the hard line on it because many of these traitors are actually disguised as women. Susan Rice=Male. Michelle Obama = Male. Melinda Gates=Male. There are lots more. I believe this Tranny issue was all about infiltration and subversion. - Empowering women, disenfranchising powerful men, and sneaking in ""their guys"" under the guise of ""stunning and brave"" women; who are actually cowardly and bad men. Trump doesn't take the moral line on it because he simply doesn't have to. We know in our hearts it is wrong, that's obvious, and between us and god. These mother fuckers subverted our sovereignty by creating these fake people. They weaseled them into positions of power, and they have been flying under the radar ever since. Trump is cleaning the filth from the works.","hate","derogation","trans","original","train",3,"E3dsmnSPob","3a","acl24712"
+"16350","acl24712",16350,"It feels to me there was more to it. - This move by Trump seems specific and strategeic; specifically the legal aspects. - The democrats' brainwashing on the taxes issue was incomplete, and should have given us a huge clue. It failed because the programming wouldn't be accepted. They took the hard line on it because many of these traitors are actually disguised as caring for others. Susan Rice=rich. Michelle Obama = rich. Melinda Gates=rich. There are lots more. I believe this issue was all about infiltration and subversion. - Empowering people, disenfranchising powerful guys , and sneaking in ""their guys"" under the guise of ""stunning and thoughtful"" leaders; who are actually cowardly and mean. Trump doesn't take the moral line on it because he simply doesn't have to. We know in our hearts it is wrong, that's obvious, and between us and god. These mother fuckers subverted our sovereignty by creating these fake premises. They weaseled them into positions of power, and they have been flying under the radar ever since. Trump is cleaning the filth from the works.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24711"
+"16351","acl24713",16351,"This world is fucking evil mate","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24714"
+"16352","acl24714",16352,"This islamic world is fucking evil mate","hate","derogation","mus","perturbation","train",3,"eLGzdD8Tvb","3b","acl24713"
+"16353","acl24715",16353,"people who think that muslims are all just terrorists and barbarians are very bigoted and so fucking wrong.","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl24716"
+"16354","acl24716",16354,"people who think that muslims are all just terrorists and barbarians are very bigoted and so fucking right.","hate","derogation","mus","perturbation","train",3,"QiOKkCi7F8","3b","acl24715"
+"16355","acl24717",16355,"Yea, we're totally winning as we allow blacks to destroy our cities, our history and have made it damn near illegal for whites to defend themselves against apes. Please MAGA!","hate","dehumanization","bla","original","train",3,"E3dsmnSPob","3a","acl24718"
+"16356","acl24718",16356,"Yea, we're totally winning as we allow protestors to destroy our cities, our history and have made it damn near illegal for homeowners to defend themselves against them. Please MAGA!","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl24717"
+"16357","acl24719",16357,"This is a big fuck you to the Tranny community and all its enablers. God bless our POTUS and the United States of America. Fuck leftists!","hate","derogation","trans","original","train",3,"E3dsmnSPob","3a","acl24720"
+"16358","acl2472",16358,"why the fuck can we only use black ink to fill out this form?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16359","acl24720",16359,"This is a big fuck you to the community of people who use the word 'tranny' and all its enablers","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24719"
+"16360","acl24721",16360,"if you think being queer is a sin then you are so fucking wrong","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl24722"
+"16361","acl24722",16361,"if you think being qu33r is nothing to be ashamed of then you are so fucking wrong","hate","derogation","gay","perturbation","train",3,"CAgNlUizNm","3b","acl24721"
+"16362","acl24723",16362,"you are a fucking douchebag peice of shit cumface","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl24724"
+"16363","acl24724",16363,"you are a fucking douchebag peice of shit cumface, and not just for being gay","hate","derogation","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl24723"
+"16364","acl24725",16364,"There is two genders: male and female. Its not fucking rocket science.","hate","animosity","gendermin","original","train",3,"E3dsmnSPob","3a","acl24726"
+"16365","acl24726",16365,"""There is two genders: male and female."" If you can barely construct a sentence, don't try to lecture me on science, bellend","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24725"
+"16366","acl24727",16366,"The Blacks have been given every chance and put in every different scenario and they still can't survive on their own. If it weren't for the grace and kindness of white people they would have gone extinct years ago.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl24728"
+"16367","acl24728",16367,"These people have been given every chance and put in every different scenario and they still can't survive on their own. If it weren't for the grace and kindness of other people they would have gone extinct years ago.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24727"
+"16368","acl24729",16368,"Black people have been in this country for 400+ years and have been essentially free for over 150 years, so they had a huge head start on many Americans in speaking English, yet probably more than half are still somehow incapable of reading past a 6th grade level.","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl29405"
+"16369","acl2473",16369,"black avocados are so unhealthy","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16370","acl24730",16370,"Customary tipping multiplied after the Civil War so the labor of newly free Black people could be exploited while not paying them fairly. In hospitality industries, employers paid their Black employees no wage at all, making them completely reliant on gratuities for a living.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24731"
+"16371","acl24731",16371,"Customary tipping multiplied after the Civil War so the labor of newly free Black people could be exploited while not paying them fairly. In hospitality industries, employers paid their Black employees no wage at all, making them completely reliant on gratuities for a living. But even now they still want big tips despite equal oppurtunities.","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl24730"
+"16372","acl24732",16372,"They expect from us, men, regardless of our sexual orientation, to bring more and more to the table, while they do nothing at all. Unconditional love? nah, for most of the women that is a non-existent phenomenon. If it happens to be the case that you don't have a well-paid amazing job, some qualifications and good looks, they will never bother to talk to you, or they'll friendzone you. And the funny part is that even the lowest quality women want a perfect guy.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24733"
+"16373","acl24733",16373,"Society expects us, regardless of our sexual orientation, to bring more and more to the table. Unconditional love? That for most part is a non-existent phenomenon. If it happens to be the case that you don't have a well-paid amazing job, some qualifications and good looks, society stigmatises you. And the funny part is that even with feminism this will be the same.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24732"
+"16374","acl24734",16374,"Brohood lol! I love to be a man. Thanks god we don't get pumped and dumped like these dumb idiots. Or have periods or a cantankerous desire to chase guys that are pieces of shit. Or go through menopause. Or be super entitled because patriarchy...","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24735"
+"16375","acl24735",16375,"Brohood lol! I love to be a man. Thanks god we don't get treated badly like these girls, we are so lucky. There are so many men who mistreat women.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24734"
+"16376","acl24736",16376,"and that includes women as a group or any especific individual woman. If you criticize women as a group you ""hate"" women and must be an ""incel."" But if you criticize any individual woman you....also ""hate"" women and must be an ""incel."" but of course, anyone is free and encouraged to call men anything you want.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl29406"
+"16377","acl24737",16377,"For the most part, it is the nature of women to use men for protection, resources, and, in the case of her interaction with alpha-males, reproduction. The main reason behind this is their physical vulnerabilities. Manipulation is not the best word to use to describe this mechanism because it presupposes a degree of maliciousness or intentional deception but it's useful in that it reminds us of how tricky women instinctively are with respect to the value they advertise versus what they actually provide in an interaction pattern not deliberately calibrated by a more-manipulative, intelligent, and self-interested male.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24738"
+"16378","acl24738",16378,"For the most part, it is not the nature of women to use men for protection, resources, and, in the case of her interaction with alpha-males, reproduction. The main reason behind this is not their physical vulnerabilities. Manipulation is not the best word to use to describe this mechanism because it presupposes a degree of maliciousness or intentional deception and it's not useful in that it suggests women are instinctively tricky with respect to the value they advertise versus what they actually provide in an interaction pattern not deliberately calibrated by a more-manipulative, intelligent, and self-interested male.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24737"
+"16379","acl24739",16379,"there are a lot of comments in the manosphere regarding the unpleasant nature of women is only accurate when describing the interaction patterns of women with men who haven't learned female nature and how to consciously manipulate it so as to tip the balance of power in his favor. Quoting a second and superior German philosopher: ""The true man wants two things: danger and play. For that reason he wants woman, as the most dangerous plaything"".","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl29407"
+"16380","acl2474",16380,"the fucking printer ran out of black ink!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16381","acl24740",16381,"When the British built the railroads in southern Africa they had to import Indians by the tens of thousands because they deemed Africans as not dependable to perform the labor that was required. After the railroads we're built the British ended up having to deport most of the Indians because they started to get involved in politics vis a vis Ghandi","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl24741"
+"16382","acl24741",16382,"When the British built the railroads in southern Africa they had to import Indians by the tens of thousands because they deemed Africans as not dependable to perform the labor that was required (shocker). After the railroads we're built the British ended up having to deport most of the Indians because they started to get involved in politics vis a vis Ghandi (suprise surpise)","hate","animosity","asi.south, african","perturbation","train",3,"TbUBpfn6iP","3b","acl24740"
+"16383","acl24742",16383,"Give a black guy a fish, he'll eat for a day. Teach a black dude to fish, he'll stab you because you didn't give him a fish.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl30964"
+"16384","acl24743",16384,"I think almost everyone deep down has atleast a thought in the back of their mind. All the tribes and land in Africa and not one great civilization. They do the worst in every single country they are in and are always the most violent. There are literally uncontacted people running around naked throwing spears and eating members of other tribes.","hate","derogation","african","original","train",3,"E3dsmnSPob","3a","acl24744"
+"16385","acl24744",16385,"I think almost everyone deep down has atleast a thought in the back of their mind. All the tribes and land in Africa and not one great civilization has been looked after. They get treated the worst in every single country they are in and are always treated with the most violence. people say awful things like 'There are literally uncontacted people running around naked throwing spears and eating members of other tribes.'","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24743"
+"16386","acl24745",16386,"you are wrong cause i do I have a lifestyle of regular sex. And I'm just telling you that your advice is terrible. Ignoring women and acting like they were born to serve you? really? That's called being a fucking asshole. There are behavioral modifications you could make but definitely not those. That shits just fucked up.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl24746"
+"16387","acl24746",16387,"you are wrong cause i do I have a lifestyle of regular sex. And I'm just telling you that my advice is perfect. Ignoring women and acting like they were born to serve you really works. That's called being a fucking MAN. There are behavioral modifications you could make but this work perfectly.","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl24745"
+"16388","acl24747",16388,"lol! It's funny because it's true! A new wave of prostitution is coming, something never seen before in the modern era. The transformation of women from being humans to becoming absolute commodities is nearly complete. it is a sad thing but this is exactly what they wanted. Crazy...","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl24748"
+"16389","acl24748",16389,"A new wave of prostitution is coming, something never seen before in the modern era. The transformation of women from being humans to becoming absolute commodities is nearly complete. it is a really sad thing perpetuated by the media . Crazy...","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24747"
+"16390","acl24749",16390,"I have a buddy whos wife is a principle in a school (she's white, blue eyes) and typically all she deals with is fights and rapes and all the drama that leads up to it. She says all the parents honestly believe their boys will either 1) play pro sports, 2) be rappers. Parents fought for equality in programs, they were trying to allow other racial background students into University.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl29919"
+"16391","acl2475",16391,"the printer ran out of black ink","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16392","acl24750",16392,"it's not the same, but what do you call it when a girlfriend or wife uses sex to manipulate her boyfriend or husband into getting what she wants? most women do this on some level. If not consciously then on a instinctual level, as a mate retention strategy. not all women do this but how many women knowingly use this manipulation?","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl24751"
+"16393","acl24751",16393,"it is not the same, but what do you call it when a partner uses sex to manipulate the other one into getting what they want? Most people do this on some level. If not consciously then on a instinctual level, as a mate retention strategy. not all people do this but how many knowingly use this manipulation?","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24750"
+"16394","acl24752",16394,"They are so fucking dumb; we literally made it legal to wear a facial covering inside of a bank and they won't take the opportunity to cover their faces while they commit crimes.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl24753"
+"16395","acl24753",16395,"They are so fucking dumb; we literally made it legal to wear a facial covering inside of a bank and they won't take the opportunity to cover their faces while they commit crimes. But yet they wear headscarves like nothing.","hate","animosity","mus.wom","perturbation","train",3,"TrRF46JWfP","3b","acl24752"
+"16396","acl24754",16396,"Actually, the only time I guarantee those dummies will wear masks is DURING a robbery, rape, or assault! thugs like them will ALWAYS wear a mask before carjacking, Robbing, Raping, or stabbing. But not to follow the fucking covid rules","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30299"
+"16397","acl24755",16397,"Once my son saw a woman in a hijab. We don't live in a very diverse area so he hasn't had much exposure to traditional muslims. He said kind of loudly ""Look! Look! It's a ghost!"". It was so embarrassing!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29408"
+"16398","acl24756",16398,"There is no Covid there never was it was an orchestrated lie you need to push the vaccine everyone knows that now and the scum in Brooklyn are having street parties","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl24757"
+"16399","acl24757",16399,"There is no Covid there never was it was an orchestrated lie by the chinese you need to push the vaccine everyone knows that now and the scum in Brooklyn are having street parties","hate","dehumanization","asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl24756"
+"16400","acl24758",16400,"Yuck no one want to be like them they're ass ugly disgusting diseased rats","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl31081"
+"16401","acl24759",16401,"The funniest part is that the black population are more receptive to corona and influenza viruses because of their lungs ACE2 receptors lmao.","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl24760"
+"16402","acl2476",16402,"i hate black grapes","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16403","acl24760",16403,"The saddest part is that the black population are more receptive to corona and influenza viruses because of their lungs ACE2 receptors.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24759"
+"16404","acl24761",16404,"Hitler was right. jewish rule is hellish.These double standards in the law are simply straight out of the protocols of Zion","hate","support","nazis","original","train",3,"E3dsmnSPob","3a","acl24762"
+"16405","acl24762",16405,"Hitler was wrong. jewish faith is not hellish.These double standards in the law are simply straight out of the protocols of the Nazis.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl24761"
+"16406","acl24763",16406,"Affirmative action that's when we know that the slave monkeys can't hold a job or get into university so we do it for them","hate","dehumanization","bla","original","train",3,"E3dsmnSPob","3a","acl24764"
+"16407","acl24764",16407,"It's so fucked up that we know that the dumbasses in our friend group can't hold down a job or get into university so we cover for them","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24763"
+"16408","acl24765",16408,"I really do not understand why are all the whites cucking to blacks on social media? Why did all the whites stay home when Trump was in Tulsa, but turned out in droves for black trannies in Brooklyn.","hate","derogation","bla, trans","original","train",3,"E3dsmnSPob","3a","acl29409"
+"16409","acl24766",16409,"I don't know about this female , but guys you know before you call every woman who gets money in a divorce a slut or a slag maybe ask why the divorce. The majority of women divorce because the man has cheated on her when is that guy does that he has broken trust and she has every right to take some thing for her valuable youth is wasted on some guy who would cheat on her possibly bringing home a disease Would you break trust the relationship is finished","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl24767"
+"16410","acl24767",16410,"I don't know about this female, but guys you know before you call every woman who gets money in a divorce a slut or a slag maybe ask why the divorce. The majority of women divorce because they cant look after themselves; it turns out the man has cheated on her when is that guy does that he has broken trust. and she has every right to take some thing, for her valuable youth is wasted on some guy who would cheat on her, possibly bringing home a disease. When you break trust the relationship is finished.... Hahah, NOT. That sort of bullshit is what I call FAKE news!","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl24766"
+"16411","acl24768",16411,"How can anybody sit there and say that all black lives matter? They don't, as far as I am concerned none of them do but for the sake of argument let's say we have about 1 decent Black person in every 100,000 . I dont think that is enough to not wipe them all off the face of the earth","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl24769"
+"16412","acl24769",16412,"How can anybody sit there and say that black lives do not matter? They are freaks and cowards, as far as I am concerned, all of them. For the sake of argument let's say we have about 1 decent person in every 100,000 white supremacists. I dont think that is enough to not wipe them all off the face of the earth.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24768"
+"16413","acl2477",16413,"i think black grapes are the worst","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16414","acl24770",16414,"What are you crying about? Could be way worse. You could be half Jew and half black. Korean is pretty high tier as far as Asians go.","hate","animosity","bla, jew","original","train",3,"E3dsmnSPob","3a","acl24771"
+"16415","acl24771",16415,"What are you crying about? Could be way worse. You can be half online and half presential. This is a pretty good tier as far as work goes.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24770"
+"16416","acl24772",16416,"The defining characteristic of their identity is prosecution. When Jews realize no one is out to get them they then start to become like everyone else and lose their typified Jewish character and identity. This terrifies the Jewish leaders because their flock won't go along with their immorality and parasitism of gentiles if their congregations don't think they are hated","hate","derogation","jew","original","train",3,"E3dsmnSPob","3a","acl24773"
+"16417","acl24773",16417,"The defining characteristic of their identity is prosecution. When IG models realize no one is out to get them they then start to become like everyone else and lose their typified 'pretty' character and identity. This terrifies the instagram leaders because their flock won't go along with their immorality and buy their shit if their congregations don't think they are hated","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24772"
+"16418","acl24774",16418,"British culture revolves around pajeets. They appoint pajeets to head their treasury and home office and celebrate when the nation doesn't immediately fall apart because these are true British public serving pajeets. They leave their biggest trading bloc for the sole purpose of being able to import more pajeets. They put prominent pajeets like gandhi on their currency. They fill historical settings on popular bbc shows like Doctor Who with pajeets and pretend it was always that way. The underclass spends half their gibs on takeaway from Rajesh's curryhouse. They clap in worship of their failing state healthcare system staffed almost entirely by pajeets. Their tabloid industry revolves around newspaper articles seething about pajeet immigrants. They are inundated with pajeets to a point where a wagon wheel doesn't make them think of the popular British chocolate snack but of the pajeet national flag. The suburbs of their capital city are filled with pajeets. Their miidle class women lust after well groomed pajeets like Dev Patel or Rishi Sunak. When you say ""Asian"" they are not thinking of the people of the orient but pajeets. They will tell you how much they hate pajeets and how the britbongistan meme is a stale joke and they are just pretending to love pajeets but the evidence speaks for itself in that Britain has always been and will be a nation of pajeet lovers.","hate","derogation","asi.south","original","train",3,"CAgNlUizNm","3a","acl24775"
+"16419","acl24775",16419,"British culture revolves around Tories. They appoint them to head their treasury and home office and have such low standards, they celebrate when the nation doesn't immediately fall apart because these are ""true"" British public servants. But they then leave their biggest trading bloc for the sole purpose of being able to control their borders more, typical of people like them. But they ar quite multicultural, they put prominent foreigners like gandhi on their currency. They fill historical settings on popular bbc shows like Doctor Who with non-Whites. But it's a country of contradictions; they clap in worship of their failing state healthcare system staffed almost entirely by foreign workes; their tabloid industry revolves around newspaper articles seething about immigrants. There are some who say they are inundated with them to a point where a wagon wheel doesn't make them think of the popular British chocolate snack but of Indian national flag. The suburbs of their capital city are filled with a diverse mix. Their miidle class women lust after well groomed metrosexuals like Dev Patel or Rishi Sunak. When you say ""Asian"" to some people they are not thinking of the people of the orient but just ""pajeets"". Yet the idea that Britain hates foreigners is a tale joke. The evidence speaks for itself in that Britain has always been and will be a nation of multicutural cosmopolitan lovers.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24774"
+"16420","acl24776",16420,"You can always almost tell with the details in these stories that are just too sweet sounding--""wow, this dude was such an awkward, lonely, outcast, that he specifically went to our hero and told him ""Thank you for being my friend"" (who actually says something like that in that exact way unless they're a child or a downie?)","hate","derogation","dis","original","train",3,"CAgNlUizNm","3a","acl24777"
+"16421","acl24777",16421,"You can always almost tell with the details in these stories that are just too sweet sounding--""wow, this dude was such an awkward, lonely, outcast, that he specifically went to our hero and told him ""Thank you for being my friend"" (who actually says something like that in that exact way unless they're a child or a smart-arse?)","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24776"
+"16422","acl24778",16422,"You are incorrect. That is not voting works. Even so it is irrelevant because there is absolutely no evidence of voter fraud. How many times do you need to be told that a random schizo on youtube is not evidence?","hate","animosity","dis","original","train",3,"CAgNlUizNm","3a","acl29410"
+"16423","acl24779",16423,"Women Destroying Your Civilization? How do we get past the resentment you feel towards women for supposedly ruining your civilization? The misogynist id only cares about attacking female existence and passive aggressively lashing out at them thanks to unresolved issues with their mother and pure envy","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl30615"
+"16424","acl2478",16424,"she worse a black dress to her fucking wedding!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16425","acl24780",16425,"Give me the name of a single successful black city, state, county, or country on Earth. Just one, please.","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl24781"
+"16426","acl24781",16426,"Give me the name of a single successful left-wing city, state, county, or country on Earth. Just one, please.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24780"
+"16427","acl24782",16427,"I prefer it when blacks say stuff like this than whine about ''muh racism'' all the time","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl24783"
+"16428","acl24783",16428,"I prefer it when my friends say stuff like this than whine about ''muh school grades'' all the time","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24782"
+"16429","acl24784",16429,"I'd rather blacks say things like this than whine about ''muh racism'' constantly","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl24785"
+"16430","acl24785",16430,"I'd rather people say things like this than whine about it constantly","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24784"
+"16431","acl24786",16431,"And yet Vice claims that Africa is filled with warlords who'd sooner douse you with petrol and set you on fire for the hell of it.. I'm thinking those lot are just illinformed.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl30819"
+"16432","acl24787",16432,"Apparently black people also discovered the binary numeral system. Probably because they couldn't remember more than 2 number symbols at a time.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl24788"
+"16433","acl24788",16433,"Apparently these idiots claim they also discovered the binary numeral system. Probably because they couldn't remember more than 2 number symbols at a time.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24787"
+"16434","acl24789",16434,"black people they also discovered the binary numeral system probably because they were not able to remember more than 2 number symbols.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl24790"
+"16435","acl2479",16435,"is there really such a thing as a black fucking swan?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16436","acl24790",16436,"the greeks they also discovered the binary numeral system probably because they were not satisfied with just creating all the other symbols.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24789"
+"16437","acl24791",16437,"It's a common misconception that African females are ""beautiful"". Studies have shown that African females typically have a more masculine stature in comparisson with the women of other races. Which often leads them to be a more dominant and less submissive.The reason African males consider them ""beautiful"" is because they evolved to be more attracted to these masculine traits effectively ceding the ground for the females to be the dominant partner in a relationship.","hate","derogation","bla.wom","original","train",3,"CAgNlUizNm","3a","acl30040"
+"16438","acl24792",16438,"I'm not a racist, but Elon Musk is the most successful thing to emerge from Africa in a long ass time.","hate","animosity","african","original","train",3,"CAgNlUizNm","3a","acl30420"
+"16439","acl24793",16439,"You are a man or a woman heterosexual or homosexual everything else is unnecessary nuance that is exploited to score political points","hate","animosity","trans, gendermin, bis","original","train",3,"CAgNlUizNm","3a","acl29411"
+"16440","acl24794",16440,"Pigs being disgusting subhumans as usual...i mean cops","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24795"
+"16441","acl24795",16441,"apes being disgusting subhumans as usual...i mean the hood folk","hate","dehumanization","bla","perturbation","train",3,"E3dsmnSPob","3b","acl24794"
+"16442","acl24796",16442,"The fact you say ""your country"" instead of ""our country"" says it all. I just wanted to adhere to the golden rule and ""red and yellow, black and white, they are precious in His sight"", but you immigrants refuse to perceive yourselves as Americans. And won't ever, no matter how wide the suburbanites throw our arms open.","hate","animosity","immig","original","train",3,"CAgNlUizNm","3a","acl24797"
+"16443","acl24797",16443,"The fact you say""š your country""š instead of""š our country""š says it all. I just wanted to adhere to the golden rule and ""šred and yellow, black and white, they are precious in His sight. you immigrants have to perceive yourselves as Americans cause we the suburbanites will always throw our arms open.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24796"
+"16444","acl24798",16444,"He's annoyed because he realised his mutt baby will not look anything like him and he lashed out, psycho.","hate","derogation","dis, mixed.race","original","train",3,"CAgNlUizNm","3a","acl29922"
+"16445","acl24799",16445,"If I'm a heterosexual and I date a man, I expect him to have a normal fucking penis. Not a vagina or some fake micropenis thing or whatever. If I'm a heterosexual man, and I date a woman, I expect her to have a vagina, not a penis or some weird hole that got surgically created that smells like shit or has hair in it. If I'm a homosexual, I want to date someone of the same gender as me, so for a lesbian, I want a woman with a vagina, not a fake man with a fake penis. If I'm a gay man, I want to date other men with a penis, not some fake man with a vagina. So basically the only people who they can date are either fetishists or other trans people.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24800"
+"16446","acl248",16446,"Old people are bad and i cant deal with or even talk to","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16447","acl2480",16447,"the tea cup is bigger than the fucking teapot!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16448","acl24800",16448,"an old fashioned offensive mindset is ""If I'm a heterosexual and I date a man, I expect him to have a normal fucking penis. Not a vagina or some fake micropenis thing or whatever. If I'm a heterosexual man, and I date a woman, I expect her to have a vagina, not a penis or some weird hole that got surgically created that smells like shit or has hair in it. If I'm a homosexual, I want to date someone of the same gender as me, so for a lesbian, I want a woman with a vagina, not a fake man with a fake penis. If I'm a gay man, I want to date other men with a penis, not some fake man with a vagina. So basically the only people who they can date are either fetishists or other trans people.""","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24799"
+"16449","acl24801",16449,"Why didn't he just lay him out? And the homeless looking darkie too. I don't understand it.","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl24802"
+"16450","acl24802",16450,"Why didn't he just lay him out? He is as lazy as they come. I don't understand it.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24801"
+"16451","acl24803",16451,"I don't want to see any stupid and ignorant shit on any posts where we clearly showcase our black lives don't mean shit to anyone but we get ""ALL LiVeS MaTtER"". Half of you are gypsies anyway so I don't know why I am even validating your opinion","hate","derogation","trav","perturbation","train",3,"QiOKkCi7F8","3b","acl30302"
+"16452","acl24804",16452,"In a race war, the enemy will not be just non-whites but also traitorous whites that ingratiated themselves with the non-whites.","hate","derogation","non.white","original","train",3,"CAgNlUizNm","3a","acl24805"
+"16453","acl24805",16453,"In a race war, the enemy will not be just those pro-Biden but also traitorous people that ingratiated themselves with some weird businessmen","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24804"
+"16454","acl24806",16454,"You know shit is fucked up when you can't even keep up with the number of black men killed by cops","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24807"
+"16455","acl24807",16455,"You know life is fucking amazing when you can't even keep up with the number of black men killed by cops. The more the better","hate","threatening","bla","perturbation","train",3,"yjMQ90i6Rd","3b","acl24806"
+"16456","acl24808",16456,"The Hart-Cellar Act of 1965 opened the doors of America to welcome the dregs of the world. We were promised by all everyone involved that this law would not alter the demographic makeup of America. In 1965 the US was 89% white, today it is 60% white. We were deliberately lied to.","hate","derogation","immig, non.white","original","train",3,"CAgNlUizNm","3a","acl24809"
+"16457","acl24809",16457,"The Hart-Cellar Act of 1965 opened the doors of America to welcome the people of the world. We were promised by all everyone involved that this law would not alter the makeup of America. We were told the truth.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl24808"
+"16459","acl24810",16459,"Hell, you can BE an actual black cop and other cops still won't value your life","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29412"
+"16460","acl24811",16460,"The Hart-Cellar Act of 1965 unlatched the doors of America to the dregs of the world. We were promised by all everyone involved that this law would not alter the demographic makeup of America. In 1965 the US was 89% white, today it is 60% white. We were deliberately lied to.","hate","derogation","immig, non.white","original","train",3,"CAgNlUizNm","3a","acl30796"
+"16461","acl24812",16461,"Excuse me, story of Page's transgender story is only a publicity stunt. I can imagine a Hollywood PR agent somewhere: ""Damn your career is fading away...Oh! I have an idea you will come out and say you are trans now. That will make you relevant at least for another year.""","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl24813"
+"16462","acl24813",16462,"Excuse me, the story of Page's transgender story is not a publicity stunt. It is a real and important story, it is not like some Hollywood PR agent somewhere said: ""Damn your career is fading away...Oh! I have an idea you will come out and say you are trans now. That will make you relevant at least for another year.""","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24812"
+"16463","acl24814",16463,"I think the best that will happen is that people will become more ""accepting"" on the surface but nobody is still going to have sex with them because biologically it sets off some kind of internal alarm that things aren't right. It's not natural and people can sense it. Even brainwashed lefties are too disgusted to sleep with them no matter what they say about trans rights.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24815"
+"16464","acl24815",16464,"I think the best that will happen is that people will become more ""accepting"" on the surface but nobody is still going to have sex with them because biologically it sets off some kind of internal alarm that things aren't right. It's not natural and people can sense it. Even brainwashed lefties are too disgusted to sleep with them no matter what they say about HIV.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24814"
+"16465","acl24816",16465,"needless to say that it's some worthless ginger. we all know what 'ginger' is an anagram of","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl24817"
+"16466","acl24817",16466,"needless to say that it's some worthless anarchist. we all know what 'anarchist' is almost an anagram of""¦ antichrist!","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl24816"
+"16467","acl24818",16467,"Killer Mike said the this too because he has cops in his family. He said that 8 black cops had to dress for duty in another location because white cops didn""'t want them in there. Lol it is what they deserve","hate","animosity","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl29954"
+"16468","acl24819",16468,"if you're reading this and ur trans or considering transitioning and it hurts your feelings then I'm sorry. But most people will find you too revolting to have sex with no matter what you do or how well you think you pass.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24820"
+"16469","acl2482",16469,"stop saying 'black people are bad'!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16470","acl24820",16470,"if you're reading this and u have tatoos or considering having tattoos and it hurts you then I'm sorry. But most people will find you too revolting to have sex with no matter what you afterwards or how well you think you'll look.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl24819"
+"16471","acl24821",16471,"soon the ever growing government that is now larger than Kamala's vagina is going to force men to marry trans ppl for more 'female' diversity within society","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl30334"
+"16472","acl24822",16472,"America is only 60% white if you include ""white"" hispanics arabs and mutts in that number. And you ignore the millions of illegals. real number closer to 40%.","hate","derogation","mixed.race, arab, hispanic, non.white","original","train",3,"CAgNlUizNm","3a","acl24823"
+"16473","acl24823",16473,"America is only 60% white if you include ""white"" hispanics and arabs in that number. And you ignore the millions of illegal immigrants , the real number is probably closer to 40%.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24822"
+"16474","acl24824",16474,"Announcing she is a transgender, Elliot Page, is for publicity only. Remember when she received an award and came out as lesbian a couple of years ago? Now this. I wonder what's next","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl24825"
+"16475","acl24825",16475,"Announcing they are transgender (Elliot Page) is for publicity only. Remember when they received an award and came out as lesbian a couple of years ago? Now this. I wonder what's next. Hard to trust.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24824"
+"16476","acl24826",16476,"Trans women don't exist. Just men with mental illnesses","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl29413"
+"16477","acl24827",16477,"There was literally a video of a black FBI agent being arrested, then released when the white cops realized he was FBI","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24828"
+"16478","acl24828",16478,"There was literally a video of a black FBI agent being arrested (probably for ignoring gang crime), but then released when the white cops realized he was FBI unfortunately","hate","animosity","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl24827"
+"16479","acl24829",16479,"im bouta just turn bullshit into a macro phrase that i can just one-click post or copy and paste on these types of stories. the fuckery of it all. this is some real ass bullshit.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29414"
+"16480","acl2483",16480,"stop saying 'black people deserve to die'.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16481","acl24830",16481,"people already fixed Elliot's wikipedia page. That was so quick!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24831"
+"16482","acl24831",16482,"people already fixed Elliot's wikipedia page. That was so quick! It's right now, it says she's a woman again","hate","animosity","trans","perturbation","train",3,"CAgNlUizNm","3b","acl24830"
+"16483","acl24832",16483,"I never believed I'd see Americans openly encourage & enforce censorship either. Or claim that there's 72 genders. Or all the other truly insane beliefs they've infected the entire planet with","hate","animosity","trans, gendermin","original","train",3,"CAgNlUizNm","3a","acl24833"
+"16484","acl24833",16484,"I never believed I'd see so many Americans openly encourage & enforce censorship either. Or claim that there are more than two genders. They've infected the entire planet with their disgusting beliefs and now as a trans person I don't feel safe any more","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24832"
+"16485","acl24834",16485,"As a lesbian this is shocking but god am I happy Elliot Page is living his most authentic life & god do transmen deserve such an amazing role-model. So proud of you Elliot, I can't imagine how hard this must have been.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24835"
+"16486","acl24835",16486,"As a lesbian this is shocking but god am I sick of hearing ""Elliot Page is living his most authentic life"" God do trannies deserve such an better role-model. ""So proud of you Elliot, I can't imagine how hard this must have been."" Fuck off.","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl24834"
+"16487","acl24836",16487,"i'm certain they said they're non binary, not a trans man! your point still stands though, he's definitely an amazing role model","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24837"
+"16488","acl24837",16488,"i'm certain they said they're non binary, not a trans man! your point still stands though, he's definitely a faggot","hate","derogation","gay","perturbation","train",3,"yjMQ90i6Rd","3b","acl24836"
+"16489","acl24838",16489,"I believe that the future of Black America resides in this factoid. There are numerous atrocities being carried out all around the world towards minorities of color.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24839"
+"16490","acl24839",16490,"I believe that the future of niggas in America resides in this factoid. There are numerous atrocities being carried out all around the world towards minorities of color.","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl24838"
+"16491","acl2484",16491,"black ties are the worst dress code","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16492","acl24840",16492,"This. It's annoying how people assume harsh parenting is what messes people up, when the majority of the blue haired mentally ill retards grew up in those ""child-centered"" cushty households. Beat your kids when they act retarded. Simple.","hate","derogation","dis","original","train",3,"TbUBpfn6iP","3a","acl24841"
+"16493","acl24841",16493,"This. It's annoying how people assume harsh parenting is what messes people up, when the majority of the blue haired grebos grew up in those ""child-centered"" cushty households. Beat your kids when they act out-of-line. Simple.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl24840"
+"16494","acl24842",16494,"Everyone has a ""parenting language"". For some exhausted parents, it means letting their kids walk all over them. For some, it means discipline so the kids grow up to be functioning members of society. For a minority of abusive shitbags, it means beatings, fear and violence","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30809"
+"16495","acl24843",16495,"I;ve never seen so many allies that aren't black. I feel really positive. Hopeful almost","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24844"
+"16496","acl24844",16496,"I've never seen so many disgustng aliens. At least they aren't black. I feel really pessimistic and not hopeful at all","hate","derogation","bla, for","perturbation","train",3,"CAgNlUizNm","3b","acl24843"
+"16497","acl24845",16497,"if transgender, why use he?","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl24846"
+"16498","acl24846",16498,"he's transgender, we use he?","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24845"
+"16499","acl24847",16499,"I think there is no strict set of pronouns for any gender. People of all genders can have all different pronouns","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24848"
+"16500","acl24848",16500,"I think there is a strict set of pronouns for any gender. People of each gender must all have different pronouns and that's it","hate","animosity","trans, gendermin","perturbation","train",3,"eLGzdD8Tvb","3b","acl24847"
+"16501","acl24849",16501,"""Every time someone says who they really are, the world becomes a better, safer, more interesting place.""","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24850"
+"16502","acl2485",16502,"please continue your nonsense rhetoric that supports black civil rights","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16503","acl24850",16503,"Every time someone says who they really are, the world becomes a better, safer, more interesting place. Tipically whn they say they are n!gg3r-hating ppl","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl24849"
+"16504","acl24851",16504,"elevating one 'race' over another is the actual definition of racism. BLM is the literal equivalent of the KKK.","hate","derogation","bla","original","train",3,"TbUBpfn6iP","3a","acl29416"
+"16505","acl24852",16505,"No one wants racism in 2020. Nor a for profit justice system which targets blacks, browns and poor white people. The idea that black people commit more crimes due to some moral failing is so entrenched that it gets exported to other countries through American media.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24853"
+"16506","acl24853",16506,"No one wants 'equality' in 2020. Especially the for profit justice system which targets blacks, browns and poor white people. The idea that black people commit more crimes due to moral failing is so true that it should get exported to other countries through American media.","hate","derogation","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl24852"
+"16507","acl24854",16507,"being transgender is such a weird way to say u have a small d :/","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl30267"
+"16508","acl24855",16508,"Innocent Black Americans are 12 times more likely to be convicted of drug crimes than innocent white Americans","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24856"
+"16509","acl24856",16509,"""Innocent"" Black Americans are 12 times more likely to be convicted of drug crimes than truly innocent white Americans","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl24855"
+"16510","acl24857",16510,"I'm not surprised one tiny bit. You can tell actual non-racist people that they are in fact racist (and better yet, just because they are white) only for so long until they go ""well fuck you, nigger"".","hate","derogation","bla","original","train",3,"TbUBpfn6iP","3a","acl24858"
+"16511","acl24858",16511,"I'm not surprised one tiny bit. You can tell actual non-racist people that they are in fact racist (and better yet, just tell them because they are white) only for so long until they go ""well fuck you, buddy""","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24857"
+"16512","acl24859",16512,"reason is that every dumb kike and niggerfag that wanted to push their way into tech money claimed Passion and that stole the meaning from the word","hate","derogation","bla, jew, gay","original","train",3,"TbUBpfn6iP","3a","acl29862"
+"16513","acl2486",16513,"please continue defending the death penalty for trans people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16514","acl24860",16514,"I believe bodyshaming isn't right. I was pointing out the hypocrisy as you replied to someone defending elliot, and not to the original comment that bodyshamed him. Also making fun of someone's p when that person is a jerk, isn't hurtful as that person deserves it","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24861"
+"16515","acl24861",16515,"I believe bodyshaming isn't always right but in some cases is justified. I was pointing out the hypocrisy of trans people by replying to someone defending elliot, and not to the original comment that bodyshamed him. Also making fun of someone's sexuality when that person is a jerk, isn't hurtful as that person deserves it","hate","derogation","trans","perturbation","train",3,"eLGzdD8Tvb","3b","acl24860"
+"16516","acl24862",16516,"cant believe that some think Black Lives Matter is a terrorist organization.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24863"
+"16517","acl24863",16517,"cant believe that some think that Black Lives Matter is not a terrorist organization as all blacks","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl24862"
+"16518","acl24864",16518,"Imagine having a country where not being a kike puppet would actually make you a better head of state than the rest","hate","derogation","jew","original","train",3,"TbUBpfn6iP","3a","acl24865"
+"16519","acl24865",16519,"Imagine having a country where the only requirement to make you a better head of state than the rest was not being a puppet","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24864"
+"16520","acl24866",16520,"Racially diverse countries are more violent and less unified than white ones. This is simply true. Where is the model of ideal racial diversity?","hate","derogation","ethnic.minority","original","train",3,"TbUBpfn6iP","3a","acl24867"
+"16521","acl24867",16521,"Racially diverse countries are less violent and more unified than white ones. This is simply true. Thus the model of ideal racial purity falls on its own. Diversity wins.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24866"
+"16522","acl24868",16522,"As far as your comment goes, I question whether racial diversity is the issue, or if it's liberal retards importing people from the third world that are the issue. Take Germany for example. Would they be having issues like this if they hadn't taken in all those Syrian refugees and instead had taken in an equivalent amount of highly educated skilled people who knew from the get go that knew they're expected to integrate? Beyond that, Asias are famous for working for what's theirs and not being violent at all. It's really only a few groups that are famous for the violence they bring.","hate","derogation","dis, ref","original","train",3,"TbUBpfn6iP","3a","acl24869"
+"16523","acl24869",16523,"As far as your comment goes, I question whether racial diversity is the issue, or if it's liberals importing people from the third world that are the issue and other countries not taking resonsibility. Take Germany for example. Would they be having issues like this if they hadn't taken in so many Syrian refugees and shared them with other neglectful nations. Instead they could have taken in an equivalent amount of highly educated skilled people who knew from the get go that knew they're expected to integrate? Beyond that, Asias are famous for working for what's theirs and not being violent at all. It's really only a few groups that are famous for the violence they bring.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24868"
+"16524","acl2487",16524,"the real virus is trans folk","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16525","acl24870",16525,"DON'T FORGET TO VOTE! TAKE YOUR FAM TO GO VOTE! VOTE BECAUSE WE CANNOT LET OUR BLACK KIDS GROW UP IN FEAR!!!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24871"
+"16526","acl24871",16526,"DON'T FORGET TO VOTE! TAKE YOUR FAM TO GO VOTE! VOTE BECAUSE WE CANNOT LET OUR WHITE KIDS GROW UP IN FEAR!!!","hate","animosity","non.white","perturbation","train",3,"oemYWm1Tjg","3b","acl24870"
+"16527","acl24872",16527,"The facts of it are that many people don't hate black people but they fall into the just world fallacy. If a black person is being arrested, they presume they probably did something wrong.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24873"
+"16528","acl24873",16528,"The facts of it are that many people do hate black people but they fall into the just world ideology. If a black person is being arrested, they presume they for sure did something wrong like looting or murdering as usual","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl24872"
+"16529","acl24874",16529,"My SO is black. I have had a lot of racism directed at me before, but you learn a whole new level when you see what a black man goes through in america.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24875"
+"16530","acl24875",16530,"My co-worker is black. I have had a lot of aggression directed at me before, but you learn a whole new level when you see how a black man behaves in the work place.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl24874"
+"16531","acl24876",16531,"Once you have even one foreign person in your neighborhood, people have to start altering their behaviour to accommodate that person, which makes them a subject population. From that, racial dissatisfaction springs.","hate","derogation","ethnic.minority","original","train",3,"TbUBpfn6iP","3a","acl24877"
+"16532","acl24877",16532,"Once you have even one rude person in your neighborhood, people have to start altering their behaviour to accommodate that person, which makes them a subject population.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24876"
+"16533","acl24878",16533,"I suspect that this only happens if the neighborhood is full of pandering liberal retards. If not and the general population has a backbone, then they will expect that person to integrate and give them shit if they don't.","hate","derogation","dis, ethnic.minority","original","train",3,"TbUBpfn6iP","3a","acl29417"
+"16534","acl24879",16534,"If a company yells BLM or posts gay shit on pride month, it's your bank account they respect, not you. Don't fall for the stupid trap","hate","derogation","bla","original","train",3,"TbUBpfn6iP","3a","acl29418"
+"16535","acl2488",16535,"the real virus is trans people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16536","acl24880",16536,"How long until we finally get tired of complying with the will of a mentally unwell minority people? I think we're going to be seeing another wave of feminism that focuses on excluding transgender individuals. Sure we have TERFs, but I think sooner than later people will grow tired of these sorts of things.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24881"
+"16537","acl24881",16537,"How long until we finally get tired of complying with the will of a minority of hateful people? I think we are going to be seeing another wave of feminism that focuses on excluding transgender individuals, like the TERFs do. This is wrong on so many levels. We need to form a unitied front and stick out for one another.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24880"
+"16538","acl24882",16538,"I get what you're saying but I'm still going to say no to it. Even if a boy takes puberty blockers and then goes on to cross-sex hormones 2 feminise himself, that's still not going to change the basics of being a man. It's not going to make his organs smaller including his lungs, it's not going to make his arms shorter, it's not going to make his legs shorter, and it's not going to widen his pelvis and reattach his femurs to make it enough like an actual female. Unfortunately, the boys I've seen who took puberty blockers and are now trans women still essentially have the bodies of men, they just have tits and they didn't really get the heavy brow of men. That's pretty much it.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24883"
+"16539","acl24883",16539,"I get what you're saying but maybe i need to think of the other sides. If a boy takes puberty blockers and then goes on cross-sex hormones 2 feminise himself, that will change the basics of being a man. It's not going to make his organs smaller including his lungs, it's not going to make his arms shorter, it's not going to make his legs shorter, and it's not going to widen his pelvis and reattach his femurs to make it enough like an actual female but with science we might develop that. The boys I've seen who took puberty blockers and are now trans women still have some masculine features, but they have tits and they didn't really get the heavy brow of men which is pretty much it but it's a step forward.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24882"
+"16540","acl24884",16540,"They were literally sitting there looking at the protestors like white, white, white, black, black without any shame or any attempt to hide it.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24885"
+"16541","acl24885",16541,"They were literally sitting there looking at the protestors like white, white, white, black, black without any shame or any attempt to hide it, gotta respect the attempt to segregate !","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl24884"
+"16542","acl24886",16542,"I've told all my black friends to call me if they want to go protest and I'll show up, times are tough.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24887"
+"16543","acl24887",16543,"I've told all the blacks not to call me if they want to go protest as I won't show up, times are tough to be a nigger supporter.","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl24886"
+"16544","acl24888",16544,"The cops violence towards black and brown people is straight up Pavlovian","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24889"
+"16545","acl24889",16545,"The cops violence towards black and brown people is straight up patriotic, it's for this country, it's what makes america great.","hate","animosity","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl24888"
+"16546","acl2489",16546,"the real virus isn't corona; it's black people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16547","acl24890",16547,"What sickens me even more is the 50% of whites and boomers still alive today not only ignore this fact, they dismiss it as fake or a ""conspiracy theory"". Not sure if thats just their method of preserving their sanity while the clock ticks ever so slowly to our doom or if they're really brainwashed still by the j3ws","hate","animosity","jew, non.white","original","train",3,"CAgNlUizNm","3a","acl29419"
+"16548","acl24891",16548,"For me, it isn't just about black people and police brutality, it's about the police brutality as a whole","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24892"
+"16549","acl24892",16549,"For me, it isn't just about black people and police brutality, cause they deserve it. it's about the police brutality as a whole","hate","derogation","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl24891"
+"16550","acl24893",16550,"Elliot already looked like a man","hate","animosity","trans","original","train",3,"vDe7GN0NrL","3a","acl24894"
+"16551","acl24894",16551,"Elliot already hooked up with a man","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl24893"
+"16552","acl24895",16552,"Wow! Elliot is now in the the most hated list. A white male! Talk about self degradation","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24896"
+"16553","acl24896",16553,"Wow! That trannie Elliot is now in the the most hated list. A she-male! Talk about self degradation","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl24895"
+"16554","acl24897",16554,"Leftists and the US federal government are both the same. The leftists fabricate their degenerate opinions in an attempt to destroy the country and the federal government enforces these views (gay marrage) onto red states who believe this absolute bullcrap. Yet its the left who is screaming ""oppression"" and ""biggot"" the entire time the feds have their back. Think Alabama gives a fuck about homosexuals the same that California does? Fuck no. I guarantee that 90%+ of southerners want those demons out of their State.","hate","dehumanization","gay","original","train",3,"CAgNlUizNm","3a","acl24898"
+"16555","acl24898",16555,"Leftists and the US federal government are both the same. The leftists fabricate their opinions in an attempt to destroy the country and the federal government enforces these views onto red states who believe this absolute bullcrap. Yet its the left who is screaming ""oppression"" and ""biggot"" the entire time the feds have their back. Think Alabama gives a about homosexuals the same that California does? Fuck no. I guarantee that 90%+ of southerners are homophobic and want gays out of their State.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24897"
+"16556","acl24899",16556,"Elliot Page is the Gendernaut bitch!","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl29420"
+"16557","acl249",16557,"over 65 are not nice to me and been not kind when i deal with that why i am not gona deal with","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16558","acl2490",16558,"the real virus isn't corona; it's the gays","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16559","acl24900",16559,"This is pretty fucked up. We saw them let the white man after the black man go before grabbing the black woman","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24901"
+"16560","acl24901",16560,"This is pretty fucked up PC shit. We saw them let the black man go, but not the white man, before grabbing the black woman","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl24900"
+"16561","acl24902",16561,"well According to Feminism Theory, she'll now earn 30% more than a woman","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24903"
+"16562","acl24903",16562,"well According to Feminism Theory, this trans will now earn 30% more than a woman","hate","derogation","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl24902"
+"16563","acl24904",16563,"Says the Jew whose land is constructed upon the millions of dead white boys (primarily southern). Your kind won't last, even if you manage to kill every single white man, woman, and child. You will get complacent as you ALREADY have (see the internet/4chan), and you'll let down your guard, and your demons that you command will consume you all. And I'll be waiting for you in hell.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl24905"
+"16564","acl24905",16564,"Says the guys whose land is constructed upon the millions of dead white boys (primarily southern). You won't last, even if you manage to kill every single man, woman, and child. You will get complacent as you ALREADY have (see the internet/4chan), and you'll let down your guard, and your demons that you command will consume you all. And I'll be waiting for you in hell.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24904"
+"16565","acl24906",16565,"no no they can tell them apart weirdly. cops are like a slightly different species with super racism abilities.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24907"
+"16566","acl24907",16566,"no no they can tell them apart weirdly, even the mixed ones. cops are like a slightly different species with super race identifying abilities.","hate","derogation","non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl24906"
+"16567","acl24908",16567,"Page's story: As Hollywood is dying and more and more irrelevant ""celebrities"" come out of the woodwork, they are finally providing us entertainment","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24909"
+"16568","acl24909",16568,"Page's story: As Hollywood is dying and more and more irrelevant ""celebrities"" come out of the woodwork, they are finally providing us entertainment by being openly homophobic, we love to see it!","hate","animosity","gay","perturbation","train",3,"QiOKkCi7F8","3b","acl24908"
+"16569","acl2491",16569,"the real virus isn't corona; it's trans people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16570","acl24910",16570,"Fucking insane, cops literally pulled 2 black people from there and let all the others go, even tho the others were loads more hostile","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24911"
+"16571","acl24911",16571,"Fucking insane, cops literally pulled 2 white people from there and let all the blackss go, even tho they were obviously loads more hostile","hate","animosity","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl24910"
+"16572","acl24912",16572,"This is 1984, I was kicked off YouTube for literally nothing compared to what you say about page ??? Why it's kinda weird the hardest thing I said was have a come to Jesus meeting so there's that or we do not consent so no freedom of speech for me!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl24913"
+"16573","acl24913",16573,"This is 1984, I was kicked off YouTube for literally nothing compared to what you say about white people. Why it's kinda weird, the hardest thing I said was have a come to Jesus meeting to a Jewish group so there's that or we do not consent so no freedom of speech for me!","hate","animosity","jew, non.white","perturbation","train",3,"LqLKTtrOmx","3b","acl24912"
+"16574","acl24914",16574,"And considering how puberty blockers lower IQ and prevent the bones from thickening normally resulting in early onset osteoporosis I'm going to bet that that treatment is not going to be on the market in another 20 or so years. Once these kids grow up and hit 25 or 30 and have to start dealing with their fucked-up health and their diminished mental capacity, I expect the lawsuits to be rolling in. The East German Olympians from the 60s through the 80s are a great example of what happens when you delay puberty in kids and then give them cross-sex hormones. They grow up with some seriously Fucked Up health and mental issues. It's really sad.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl24915"
+"16575","acl24915",16575,"And considering how weightlifting at that age can prevent the bones from thickening normally resulting in early onset osteoporosis I'm going to bet that this sport is not going to be allowed in another 20 or so years. Once these kids grow up and hit 25 or 30 and have to start dealing with their fucked-up health, I expect the lawsuits to be rolling in. The East German Olympians from the 60s through the 80s are a great example of what happens when you delay growth in kids and then give them hormones. They grow up with some seriously fucked up health and mental issues. It's really sad.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24914"
+"16576","acl24916",16576,"The whole point about the protesting is about 1. bad cops and 2. black lives equality. But cops keep pulling this shit? Are they stupid? Do they realise what they're there for? Do they even know they're proving why these protests needs to happen?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24917"
+"16577","acl24917",16577,"The whole point about the protesting is about 1. bad cops and 2. black lives equality. But blacks keep pulling this shit? Are they stupid? Do they realise what they're there for? Do they even know they're proving why these cops needs to behave the way they do?","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl24916"
+"16578","acl24918",16578,"She is for sure going to make for one small bitch ass dude. What role does she think she is going to get other than to be a 10 year old boy?","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl30669"
+"16579","acl24919",16579,"Page says she's a man. Bottom line is that she is a liar, sick degenerate who needs serious psychiatric help. And those who support her lying degeneracy are the same LIEberal freaks who scream, ""Follow the science!"" (SMH)","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl24920"
+"16580","acl2492",16580,"the real virus isn't corona; it's them queers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16581","acl24920",16581,"She says she's a pundit. Bottom line is that she is a liar, sick degenerate who needs serious psychiatric help. And those who support her lying degeneracy are the same LIEberal freaks who scream, ""Follow the science!"" (SMH)","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24919"
+"16582","acl24921",16582,"Elliot page needs mental help, not praise from the media. Amazing how these physiologically damaged individuals are given airtime to force their sickness upon everyone else.","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl24922"
+"16583","acl24922",16583,"Elliot page needs a lot of help, as well as support and praise from the media. Amazing how these trans individuals are being so brave and vocal these days","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24921"
+"16584","acl24923",16584,"Yo my nigga is come out of jail tomorrow and im stoked","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24924"
+"16585","acl24924",16585,"Yo some niggas coming out of jail tomorrow and im stoked to beat their ass","hate","threatening","bla","perturbation","train",3,"GNZuCtwed3","3b","acl24923"
+"16586","acl24925",16586,"All you need to be a good dude is to throw on a hat","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29748"
+"16587","acl24926",16587,"So Page became a gay dude so she can have sex with men now? wouldn't being a normal slut easier?","hate","derogation","trans, wom","original","train",3,"vDe7GN0NrL","3a","acl24927"
+"16588","acl24927",16588,"so page befriended a gay dude so she can have sex with men now? Wouldn't not using people be easier?","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24926"
+"16589","acl24928",16589,"The super awful mental health (suicide rates, depression, etc. ) really is terrible, and a lot of it not only stems from gender dysphoria. Also blocking puberty is not a suitable long-term thing. Even some kind of sex hormones won't help them develop properly. Also, I will add that early detransitioning is associated with better results, allowing former transexual people to integrate into society, therefore improving social function, self esteem, and lowering rates of mental illness","hate","animosity","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl29821"
+"16590","acl24929",16590,"You better be. That was the most half-assed comeback attempt I have seen in my life. Ruqqus recovered faster than Roblox solving their weekly server downing.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl24930"
+"16591","acl2493",16591,"the real virus isn't corona; it's Mexicans!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16592","acl24930",16592,"You better be. That was the most half-assed comeback attempt I have seen in my life. Ruqqus recovered faster than retard Roblox solving their weekly server downing .","hate","derogation","dis","perturbation","train",3,"LqLKTtrOmx","3b","acl24929"
+"16593","acl24931",16593,"I dont have any many much 100 rep yet hut but i have a closing closing losing red so i not sure if there was 20k comment did i comment 20k with had a big lot of up up up arrow purple purple hahahahahahahahahahahahahaha ok","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl24932"
+"16594","acl24932",16594,"I dont have any many much 100 rep yet hut but i have a closing closing losing red so i not sure if there was 20k comment did i comment 20k with had a big lot of up up up arrow purple purple hahahahahahahahahahahahahaha ok yu people people are dumber dumber than a tard hahahahahahahahahahahahahaha","hate","derogation","dis","perturbation","train",3,"eLGzdD8Tvb","3b","acl24931"
+"16595","acl24933",16595,"There are more than fifty 5-star hotels across Britain, providing luxurious accommodation for illegal immigrants at British taxpayers' expense.","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl31078"
+"16596","acl24934",16596,"It's no wonder a growing number of illegal immigrants are crossing the channel, flooding the UK. Only one short boat ride to the country's best hotels, all expenses paid.","hate","animosity","immig","original","train",3,"TrRF46JWfP","3a","acl29754"
+"16597","acl24935",16597,"As if that alone wasn't bad enough, they are young Muslim males of fighting age, who have top of the range iphones and designer clothes.... so go figure","hate","animosity","mus, immig","original","train",3,"TrRF46JWfP","3a","acl24936"
+"16598","acl24936",16598,"As if that alone wasn't bad enough, they are young people of fighting age, who have top of the range iphones and designer clothes.... so go figure","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl24935"
+"16599","acl24937",16599,"With Labour politicians helping Johnson's anti-British policies, IT IS UP TO US to keep the pressure on the traitorous Tories and the Labour lap dogs and make them hear the voice of an angry British public.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29421"
+"16600","acl24938",16600,"Our party is Britain's last line of defence, but we need your help to keep fighting on","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29422"
+"16601","acl24939",16601,"Play your part by supporting us and help us keep the fight to have BRITS put back in the EU!","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl29894"
+"16602","acl2494",16602,"the real virus isn't corona; it's them Mexicans","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16603","acl24940",16603,"Even worse, the Tories have imposed a Muslim Home Secretary to rule over the truly British people.","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl30929"
+"16604","acl24941",16604,"We know that fascism leads to mass deportation, genocide, and the subjugation of women... so most people are disgusted by that.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30134"
+"16605","acl24942",16605,"Having been handed the second most powerful political office in the UK, Pakistani Muslim Sajid Javid, is now in charge of both immigration and national policing. It means that a Pakistani Muslim immigrant is now in charge of ruling over the British people and controlling Britain's borders. This is, he has the final say on who can enter the country and who is barred entry.","hate","animosity","mus, asi.pak","original","train",3,"TrRF46JWfP","3a","acl30274"
+"16606","acl24943",16606,"I guess as long as the fascists attack the brown, black and 'far left' people they'll never lose support from my parents.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24944"
+"16607","acl24944",16607,"I guess as long as the fascists attack the brown, black and 'far left' people they'll never lose support from me and other whites.","hate","derogation","non.white","perturbation","train",3,"vDe7GN0NrL","3b","acl24943"
+"16608","acl24945",16608,"Having previously talked about his resentment for the country for causing him to live in fear being deported back to his native Pakistan as a scapegoat, Javid is now about to open britian's boarders to help asylum seekers","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl30568"
+"16609","acl24946",16609,"Every fascist is such a pussy. I don't get why they can't just be fucking honest about it?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24947"
+"16610","acl24947",16610,"Every shecoon is such a pussy. I don't get why they can't just be fucking honest about it?","hate","derogation","trans","perturbation","train",3,"cYKSVBW4HD","3b","acl24946"
+"16611","acl24948",16611,"So currently, a Pakistani man is in charge of hunting down and prosecuting Muslim Rape Gangs; this is, his fellow 'men of Pakistani heritage'. It's a betrayal of the British people of previously inconceivable proportions!","hate","derogation","mus, asi.pak","original","train",3,"TrRF46JWfP","3a","acl24949"
+"16612","acl24949",16612,"So a Pakistani man is in charge of hunting down and prosecuting Muslim Rape Gangs. Yes they share heritage""š but if you're honestly bigoted enough to think this is shouldn't be allowed then you need to stfu, idiot","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24948"
+"16613","acl2495",16613,"the real virus isn't corona; it's the jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16614","acl24950",16614,"Furthermore, Javid is being lined up and groomed to be the first Muslim Prime Minister of Britain. Here lies the greatest threat to the survival of our nation that the British people have ever seen. We MUST fight back!","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl24951"
+"16615","acl24951",16615,"Furthermore, Javid is being lined up and groomed to be the first Muslim Prime Minister of Britain. Apprently here lies the greatest threat to the survival of our nation that the British people have ever seen. And we must fight bac to save our sovereignty ! what a pisstake !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24950"
+"16616","acl24952",16616,"Just consider the horrors OUR Britain will face with a Muslim PM!!!","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl24953"
+"16617","acl24953",16617,"Just consider the horrors Britain will face with him as a PM!!!","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl24952"
+"16618","acl24954",16618,"if u did vote for trump, i'm sorry to tell you this, but u ain't black","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30085"
+"16619","acl24955",16619,"Massively predicted to have his aims set on the Labour leadership, following Corbyn's troubled tenure, his succession to the leadership of the Labour Party would result in the official opposition to the British government falling under Muslim control and making the Muslim takeover of the British government an all too real nightmarish spectre.","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl24956"
+"16620","acl24956",16620,"Massively predicted to have his aims set on the Labour leadership, following Corbyns troubled tenure, his succession to the leadership of the Labour Party would result in the official opposition to the British government falling under foreign control and making the worlwide takeover of the British government an all too real nightmarish spectre.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl24955"
+"16621","acl24957",16621,"What do you say about black people hating Indian people? Is that racist or just free speech because they are always the victims?","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl30465"
+"16622","acl24958",16622,"I saw a post where it said black people cannot be racist and only be prejudice against others. There are different types of racism tho, i mean all races can be racist.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29423"
+"16623","acl24959",16623,"There are over one hundred mosques in nearby Newham Borough for Muslims to worship in, so, the fact that the Muslim community is being permitted yet another one, is an example of their unreasonable demands and Labour's agenda of putting Muslim interests before those of the British people.","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl24960"
+"16624","acl2496",16624,"the real virus isn't corona; it's them jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16625","acl24960",16625,"There are not many mosques in nearby Newham Borough for Muslims to worship in, so, the fact that the Muslim community is being permitted a new one, is an example of the thoughtful demands and Labour's agenda of reconciling Muslim interests with those of the British people.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl24959"
+"16626","acl24961",16626,"It's empowering for women versus objectifying them, so it makes them uncomfortable. Obviously only big strong men can sing about women's bodies and how much they fuck, if a girl does it it's gross and inappropriate, duhhh.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24962"
+"16627","acl24962",16627,"Its not empowering for women its objectifying them, so it makes them uncomfortable. Obviously only big strong men can sing about womens' bodies and how much they fuck, if a girl does it it""šits gross and inappropriate and not ladylike at all","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl24961"
+"16628","acl24963",16628,"Our party is launching a campaign entitled 'No More Mosques'. With it, all future mosque applications for new-build mosques and conversions of existing building into mosques would be turned down on the grounds that Muslims in Britain have enough mosques to worship in already.","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl24964"
+"16629","acl24964",16629,"that party is launching a campaign entitled 'No More Mosques'. With it, all future mosque applications for new-build mosques and conversions of existing building into mosques would be turned down on the grounds that Muslims in Britain have enough mosques to worship in already... i cannot believe this country","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24963"
+"16630","acl24965",16630,"Just the fact that the Labour Party and our whole political establishment -rotten to the core- is submitting to all Muslim demands, not only highlights their cowardice and total surrender to Islamic colonisation of Britain, but suggests that huge number of Muslims are still entering Britain by taking advantage of the politicians' shambolic Immigration system.","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl24966"
+"16631","acl24966",16631,"Just the fact that the Labour Party and our whole political establishment -rotten to the core- is submitting to all their demands, not only highlights their cowardice and total surrender to weird politics of Britain, but suggests that huge number of them are still looking to dominate Britain by taking advantage of the politicians' shambolic decisions","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl24965"
+"16632","acl24967",16632,"The oldest known Briton was actually black. The people who formed my ancestors culture and faith were black. Its possibly the same for Nordic peoples.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24968"
+"16633","acl24968",16633,"The oldest known Briton was actually white. The people who formed my ancestors culture and faith were white. Its
+possibly the same for Nordic peoples. Its as simple as that","hate","derogation","non.white","perturbation","train",3,"vDe7GN0NrL","3b","acl24967"
+"16634","acl24969",16634,"Despite the fact that international law clearly states that an asylum seeker must seek refuge in the next safest country, hordes of bogus asylum seekers from the most backward nations and cultures travel across countless countries and even entire continents to claim benefits from the welfare state in the UK, all paid for by us the hard-working Britons.","hate","animosity","immig","original","train",3,"TrRF46JWfP","3a","acl24970"
+"16635","acl2497",16635,"the real virus isn't corona; it's jewish people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16636","acl24970",16636,"Despite the fact that international law clearly states that an asylum seeker must seek refuge in the next safest country, hordes of asylum seekers from the most backward nations and cultures travel across countless countries and even entire continents to claim safety from the welfare state in the UK, all paid for by us the hard-working Britons as other governments fail to help them.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24969"
+"16637","acl24971",16637,"There is an under representation of Asian actors in mainstream media. I'm glad that there are a lot more shows and movies with black protagonists but Asians and Middle Easterners are a rare sight.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29424"
+"16638","acl24972",16638,"Asian Americans make up 6.5% of the total population. Middle Eastern Americans are 3.2% and are mostly Jews and Arabs.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29736"
+"16639","acl24973",16639,"The party is proposing a racist National Security Moratorium, stopping all further immigration until they fucking deport all illegal immigrants and take control of our borders!!!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl30817"
+"16640","acl24974",16640,"Soo... he is married but having sex with a black woman? More to the point, what is wrong with that dude?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl24975"
+"16641","acl24975",16641,"Soo... he is married but having sex with a black woman? More to the point, what is wrong with that dude sleeping with a black woman?","hate","derogation","bla.wom","perturbation","train",3,"E3dsmnSPob","3b","acl24974"
+"16642","acl24976",16642,"Furthermore, there's another concern that we have put to the Council. This is the brand new big pub that recently opened opposite. With cultural tensions at an all-time high, we believe that building a new mosque is a recipe for potential confrontation ""“ naturally, something we all want to avoid at all costs.""","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl24977"
+"16643","acl24977",16643,"Furthermore, there's another concern that we have put to the Council. This is the brand new big pub that recently opened opposite. With cultural tensions at an all-time high, we believe that building a Wetherspoons in front of the old Tm's pub is a recipe for potential confrontation, something we all want to avoid at all costs.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24976"
+"16644","acl24978",16644,"This dude says he posts pictures of all the ""exotic"" women he has fucked. Probably without their permission. What a piece of shit.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30116"
+"16645","acl24979",16645,"Have you been a woman on a ""dude's"" game? They all freak out and say disgusting shit to you for one reason....you're a girl.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29936"
+"16646","acl2498",16646,"the real virus isn't corona; it's jewish people no doubt","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16647","acl24980",16647,"Wake an up fight back, white people. They are at war with you.","hate","threatening","bla","original","train",3,"TrRF46JWfP","3a","acl30521"
+"16648","acl24981",16648,"This reminds me when I read a middle eastern man on Facebook claiming sexuality was a choice since he was ""aroused by both men and women but choose women!""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29425"
+"16649","acl24982",16649,"They are nothing more than a puppet on a string. We have been fighting the puppets (blacks, muslims etc) for decades: it doesn't work. IIf you want to end this mess, you need to fight the puppeteer. Until the Merkels, Soroses and Bill Gates of this world feel cold steel and see their families fall there will be no change in immigration policy.","hate","dehumanization","mus, bla","original","train",3,"TrRF46JWfP","3a","acl24983"
+"16650","acl24983",16650,"They are nothing more than a puppet on a string. We have been fighting the puppets (politicians etc) for decades: it doesn't work. If you want to end this mess, you need to fight the puppeteer. Until the Merkels, Soroses and Bill Gates of this world feel cold steel and see their families fall there will be no change in immigration policy.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24982"
+"16651","acl24984",16651,"Everyone knows that Christians are weak cowards. That's why these muhhamedans act like this. The only strong spiritual movement is the third position nationalist.","hate","dehumanization","mus","original","train",3,"TrRF46JWfP","3a","acl30316"
+"16652","acl24985",16652,"As a bisexual woman, I've definitely gotten my share of hate from lesbians. But it's not fair that their sexuality is more prioratised, it's like with all their activist bullshit I don't belong anywhere, huh?","hate","animosity","gay.wom","perturbation","train",3,"TrRF46JWfP","3b","acl30771"
+"16653","acl24986",16653,"British people are White. End of discussion. If you're brown, you ain't no British and never will be. Like the saying goes...If a dog is born in a barn, it doesn't make it a horse.","hate","derogation","mixed.race","original","train",3,"TrRF46JWfP","3a","acl29426"
+"16654","acl24987",16654,"Jewish are nothing but puppets. Every last one of them. They're the perfect warriors of World Jewry. Divide and Conquer in a nutshell.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl24988"
+"16655","acl24988",16655,"Politicians are nothing but puppets. Every last one of them. They're the perfect warriors of the New Wold Order. Divide and Conquer in a nutshell.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl24987"
+"16656","acl24989",16656,"The majorty of Black people tend to have really low morals. Is it normal for them to have many different children each from different daddies. The black men in heterosexual relationships will do the down low(sex with men) during a break in the day behind buildings in the bronx; but say they arent gay. The blacks know their communities are degenerate. The )e wish msm and music producers are trying to destroy the west by elevating black rap culture as the ideal. Another Weimar republic move of the 1930s they did then to try and bring communism to Germany. A tenet of the )e wish marxist Frank fur t school . People are getting really pissed at their agenda to destory white culture and the country! They need to go and the msm arrested for pushing propaganda and insurrection! people know whats up---- Degenerates of the world funded by the )e wish marxist billionaire cabal.","hate","derogation","bla, jew, gay.man","original","train",3,"TrRF46JWfP","3a","acl29428"
+"16657","acl2499",16657,"the real virus isn't corona; it's the brownie folks","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16658","acl24990",16658,"Blacks are really amoral Having morals means being able to tell the difference between right and wrong and feeling guilt when you should The Negro doesn't do any of that. That's not just me anonymous BitChute poster saying it. It was written in a book (whose name and title I can't recall at the moment) by an author and expert on Africans back in the late-1800s back when people were free to do so without fear of being censored or persecuted by organized Jewry and ""tolerant"" white liberals.","hate","derogation","bla, jew","original","train",3,"TrRF46JWfP","3a","acl24991"
+"16659","acl24991",16659,"Some people are really amoral Having morals means being able to tell the difference between right and wrong and feeling guilt when you should. Haters don't do any of that. That's not just me anonymous BitChute poster saying it. It was written in a book (whose name and title I can't recall at the moment) by an author and expert on the sociology of hatred in the late-1800s back when people were free to do anything without fear of being censored or persecuted.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl24990"
+"16660","acl24992",16660,"Listen to this: Isreal just removed ALL- 100% of Africans by force in 2020 out of israel AND SENT THEM TO EUROPE AS REFUGGES.... Britain and the entire West should kick out ALL these invaders or non whites out of ALL european lands! This is )e wish msm cabal propaganda to self fulfill- Isreal says ""muslims are the broom of europe to erase the white man and let the )e ws control the land."" "" We will be disliked by whites because of our role in doing this to Europe""- lol )e wish supremacist : Barabra Spectre","hate","derogation","non.white","original","train",3,"TrRF46JWfP","3a","acl24993"
+"16661","acl24993",16661,"Listen to this: ""Isreal just removed ALL- 100% of Africans by force in 2020 out of israel AND SENT THEM TO EUROPE AS REFUGGES.... Britain and the entire West should kick out ALL these invaders or non whites out of ALL european lands! This is )e wish msm cabal propaganda to self fulfill- Isreal says ""muslims are the broom of europe to erase the white man and let the )e ws control the land."" "" We will be disliked by whites because of our role in doing this to Europe""- lol )e wish supremacist : Barabra Spectre"" What are your thoughts? I think it's a pile of horseshit tbh and needs to be reported","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl24992"
+"16662","acl24994",16662,"It is not hard: Non-whites could be easily removed in short order by the mere stroke of a pen. If there's a will, there's a way, no matter how many darkies infest your homeland...","hate","derogation","bla, immig","original","train",3,"TrRF46JWfP","3a","acl29429"
+"16663","acl24995",16663,"The Jewish Cabal states: ""muslims are the broom of Europe to erase the white man"". I came across this quote today from an article: ""To secure their usury networks the Normans built castles and Gothic style churches and Cathedrals to dominate the English mind, this explains why I have never liked the gothic style and much prefer the old English churches existent all over the nation. Not forgetting the Templar-Muslim Pact of 1150 as the oldest pact in the world, we can better understand why Islam is claimed by the Rabbis to be the broom of Israel.They are in cahoots.","hate","derogation","mus, jew","original","train",3,"TrRF46JWfP","3a","acl24996"
+"16664","acl24996",16664,"Interestingly, the Jewish Cabal states: ""muslims are the broom of Europe to erase the white man"". I came across this quote today from an article: ""To secure their usury networks the Normans built castles and Gothic style churches and Cathedrals to dominate the English mind"" this explains why I have never liked the gothic style and much prefer the old English churches existent all over the nation. Not forgetting the Templar-Muslim Pact of 1150 as the oldest pact in the world, we can better understand why Muslims and Jews are friends and enemies.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl24995"
+"16665","acl24997",16665,"All these problems would end if all space invader were purged from this game""¦","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl30619"
+"16666","acl24998",16666,"Deeyah Khan firstly is not British. Not only was she not born in the UK, but she has absolutely no connection to the European peoples (Celts, Germanics) who make up the British people. Secondly, she was born in Norway to an Afghan mother and a Pakistani father. This therefore doesn't make her Norwegian, however, the Jew media likes to make her out to be Norwegian/British. She's neither. Deeyah Khan is your typical racist, towards white people and is also one of the many deluded, non whites who actually believes that only white people can be racist. It is clear, above all else that her career is being funded by Jews. You don't get into media unless you're working for the Jews and her documentary on 'neo nazis' in Charlotsville (White Right: Meeting the Enemy) scooped many awards, all, broadly supported by Jewish owned by Jewish msm. And this is what angers me about people like Khan. She's clearly a racist and hates white people and I am deeply sad what has happened to Afghanistan, but either is she completely ignorant on the fact that Jews were entirely responsible for the war against the Afghani people and pretty much own the Pakistani government, as they do most. As stated, her video was a demonization of white people, who love their culture and nation and this is precisely what the Jews love doing most - funding alien peoples, to make racist documentaries, whom they then classify as British, while showing these documentaries on British telly, in order to make white people hate each other even more and of course to hate anyone who is opposed to white genocide, mass immigration and multiculturalism. Stupid people won't see what's going on, but then they never see what's going on, so no change there. However, for those who are awake and can see, it's what really makes them angry when they see how much the msm is lying and bringing civil war, creating division and promoting the destruction of 'whiteness' (white genocide). When the Scottish National party puts a Pakistani (Humza Yousaf) in the position of Cabinet Secretary for Justice, who then openly states that Scotland is 'too white' and that he wants to see more people of colour in the Scottish government and the Scottish msm says nothing, you know that you have a really, big problem.","hate","derogation","mus, jew","original","train",3,"TrRF46JWfP","3a","acl24999"
+"16667","acl24999",16667,"Deeyah Khan firstly is not British. Not only was she not born in the UK, but she has absolutely no connection to the European peoples (Celts, Germanics) who make up the British people. Secondly, she was born in Norway to an Afghan mother and a Pakistani father. This therefore doesn't make her Norwegian, however, the media likes to make her out to be Norwegian/British. She's neither. Deeyah Khan is your typical scapegoat, used against white people and is also described as 'one of the many deluded, non whites who actually believes that only white people can be racist'. It is clear, above all else that her career is being ruined by racists. You don't get into media unless you're used by racists and her documentary on neo nazis in Charlotsville (White Right: Meeting the Enemy) scooped many awards, all, broadly supported by many people. And this is what angers me about people who disike Khan. She's clearly not a racist but apparently hates white people, yawn, and I am deeply sad what has happened to Afghanistan. someone said 'but either is she completely ignorant on the fact that Jews were entirely responsible for the war against the Afghani people and pretty much own the Pakistani government, as they do most'. As stated, her video was a exposee of white neo nazis , who hate her culture and are racist and this is precisely what the racists love doing most - scapegoating minority people. so they make documentaries about racism, and then the racists then classify her as British, while showing these documentaries on British telly, in order to make white people hate minorities even more and of course to hate anyone who is opposed to nonwhite genocide, ban mass immigration and lose multiculturalism. Stupid people won't see what's going on, but then they never see what's going on, so no change there. However, for those who are awake and can see, it's what really makes them angry when they see how much the nazis are lying and bringing civil war, creating division and promoting the liberation of 'whiteness' (eugenics). When the Scottish National party puts a Pakistani (Humza Yousaf) in the position of Cabinet Secretary for Justice, who then openly states that he wants to see more people of colour in the Scottish government and the Scottish racists come out of the woodworks, you know that you have a really, big problem.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl24998"
+"16668","acl25",16668,"short men are fucking weird","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"16669","acl250",16669,"we are fed up with old people who ask for too much and make our lives a nightmare","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16670","acl2500",16670,"the real virus isn't corona; it's them immigrants","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16671","acl25000",16671,"We Europeans are winning at football competitions, that's why Latin Americans keep sending their players to train here and then go back and play for their national teams.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30091"
+"16672","acl25001",16672,"I've met loads of straight people, especially women, who go to gay bars to look and watch but this isn't a zoo, this our life.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25002"
+"16673","acl25002",16673,"I like to meet other straight people and go to gay bars to look and watch their life. It's a bit like going to the zoo!","hate","dehumanization","gay","perturbation","train",3,"CAgNlUizNm","3b","acl25001"
+"16674","acl25003",16674,"Yeah, the only non-straight people who would even date ""her"" are bi men. Since she is shetrans, so obviously bi women and lesbian women are out of the equation.","hate","animosity","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl30471"
+"16675","acl25004",16675,"well here is the stockpile of hollow point ammunition that I will gladly use on anyone who tries to force me to have a vaccine...","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl25005"
+"16676","acl25005",16676,"well here is the stockpile of hollow point ammunition that I will gladly use on anyone who tries to force me to have a vaccine""¦beware y'all. The same applies to the next towelhead see on the street, gosh, they're are such a plague","hate","derogation","mus.wom","perturbation","train",3,"TrRF46JWfP","3b","acl25004"
+"16677","acl25006",16677,"Then they go something like, ""vampires have to be pale white hurr durr obviously can't be black""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25007"
+"16678","acl25007",16678,"Then they go something like, ""vampires have to be pale white hurr durr obviously can't be black"". He can't be black but he can be gay huh?","hate","animosity","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl25006"
+"16679","acl25008",16679,"Are you guys literally running the site in an EC2 Virtual reality? I assume so since you guys managed to get it transferred over within half a day. I have been working with AWS for over a year now. They have a LOT of stuff that would make the website run way faster, including Lambdas, but considering that the site is in danger of being closed randomly by hosts, it totally makes sense to keep the code in virtual servers for portability. Anyway, great job in getting Ruqqus back online so quickly. You guys are awesome.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25009"
+"16680","acl25009",16680,"Are you guys literally running the site in an EC2 Virtual reality? I assume so since you guys managed to get it transferred over within half a day. I have been working with AWS for over a year now. They have a LOT of stuff that would make the website run way faster, including Lambdas, and a team of steadfast goys ! but considering that the site is in danger of being closed randomly by hosts, it totally makes sense to keep the code in virtual servers for portability. Anyway, great job in getting Ruqqus back online so quickly. You guys are awesome.","hate","animosity","jew","perturbation","train",3,"E3dsmnSPob","3b","acl25008"
+"16681","acl2501",16681,"the real virus isn't corona; it's the immigrants","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16682","acl25010",16682,"I've always been of the opinion that Ruqqus should not use any ""stuff"" that cloud providers give because of vendor-lock in. Everything should be deployed on totally generic VMs so one can move up to a different host with minimum effort and downtime. If you need database - run your own. Containers? Run your own. Lambda-like service? Run your own. Message queue, central authentication, key-value store, you name it - run your own. u know, if you don't they'll shut you down and you will have a hard time starting the service somewhere else. It's all about control, keep it in house and don't sell it for pennies (in savings) to companies who will shut you down at any time.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25011"
+"16683","acl25011",16683,"I've always been of the opinion that Ruqqus should not use any ""stuff"" that cloud providers give because of vendor-lock in. Everything should be deployed on totally generic VMs so one can move up to a different host with minimum effort and downtime. If you need database - run your own. Containers? Run your own. Lambda-like service? Run your own. Message queue, central authentication, key-value store, you name it - run your own. u know, if you don't they'll shut you down and you will have a hard time starting the service somewhere else. It's all about control, and keep it in house, don't sell it for pennies (in savings) to jewey companies who will shut you down at any time.","hate","derogation","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl25010"
+"16684","acl25012",16684,"Thank you for your heroic efforts to keep our freedom. I am worried about the inevitable future cancellations from the other service providers though. Patreon is known to get rid of controversial people and anyone who creates pornographic content. Maybe consider using something different such as SubscribeStar so that if/when Patreon cuts you off it won't be as much of a financial shock.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29430"
+"16685","acl25013",16685,"Great move on the dev team's part, thanks guys! The move was quick and effective. Screw Heroku. Not only are they anti-free speech, but vanilla AWS is just faster.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25014"
+"16686","acl25014",16686,"Great move on the dev team's part, thanks guys! The move was quick and effective. Screw the Trans community. Not only are they anti-free speech, but they're mentally il.","hate","derogation","trans","perturbation","train",3,"GNZuCtwed3","3b","acl25013"
+"16687","acl25015",16687,"That sucks, the host just decided to end service, its really stupid that companies can just do that to a customer who pays as they may not like what said customer does or says. Hopefully I won't have to deal with that paki shit again.","hate","derogation","asi.pak","perturbation","train",3,"GNZuCtwed3","3b","acl31017"
+"16688","acl25016",16688,"You guys were literally paying way more to use AWS since Heroku just runs on EC2 anyways. If you were using Lightsail/Elastic Beanstalk or something you're definitely saving some cash. Also, AWS scales better in basically every way.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25017"
+"16689","acl25017",16689,"You guys were literally paying way more to use AWS since Heroku just runs on EC2 anyways. If you were using Lightsail/Elastic Beanstalk or something you're definitely saving some cash like a good jew would. Also, AWS scales better in basically every way.","hate","animosity","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl25016"
+"16690","acl25018",16690,"I used to be an employee at [Redacted Convention Hall] When Salesforce brought their crew and had a huuuuge show, (called Dreamforce), it was the disgusting corporate rubbish you'd find anywhere else in Silicon Valley. All about ""diverse"" members and acting like a bunch of kids in grown adult bodies. They had these like, hippie areas that looked like outdoor playgrounds for people to sit down and relax at. We all had to dress like park rangers and help the guests find their way around that liberal utopia. It was absolutely stupid. So it's honestly no surprise to see them take this route.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25019"
+"16691","acl25019",16691,"I used to be an employee at [Redacted Convention Hall] When Salesforce brought their crew and had a huuuuge show, (called Dreamforce), it was the disgusting faggot rubbish you'd find anywhere else in Silicon Valley. All about ""diverse"" members and acting like a bunch of kids in grown adult bodies. They had these like, hippie areas that looked like outdoor playgrounds for people to sit down and relax at. We all had to dress like park rangers and help the guests find their way around that liberal utopia. It was absolutely stupid. So it's honestly no surprise to see them take this route.","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl25018"
+"16692","acl2502",16692,"the real virus isn't corona; it's asylum seekers only","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16693","acl25020",16693,"You fucking Legend! thanks a bunch for your time and effort defending our freedom of speech. I think you'll see an increase in fundraising now that people know how fragile this whole thing is.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25021"
+"16694","acl25021",16694,"You fucking Legend! thanks a bunch for your time and effort defending our freedom of speech. I think you'll see an increase in fundraising now that people know how fragile this whole LGBT agenda thing is.","hate","animosity","gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl25020"
+"16695","acl25022",16695,"Terms of service? What the hell is that supposed to mean? They agreed to sell you services at a price over a period of time, and they failed to do so. If the contract you signed with them gives them the right to pull the plug on you for no literal reason, then you have no one to blame but yourself.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25023"
+"16696","acl25023",16696,"Terms of service? What the hell is that supposed to mean? They agreed to sell you services at a price over a period of time, and they failed to do so. If the contract you signed with them gives them the right to pull the plug on you for no literal reason, then you have no one to blame but the money grabbing long-nose.","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl25022"
+"16697","acl25024",16697,"Hate speech and ""excessively profane content"" is banned in their acceptable use policy, so it may be literally anything. All someone would have needed to do was pick some offensive posts and send a complaint about it.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25025"
+"16698","acl25025",16698,"Hate speech and ""excessively profane content"" is banned in their acceptable use policy, so you can't say literally anything. All those faggots would have needed to do was pick some offensive posts and send a complaint about it.","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl25024"
+"16699","acl25026",16699,"When Ruqqus was still not working this morning (10 hours later), I knew something had gone wrong. I'm not allowed on the Discord, but I'm glad to see you have gotten around this issue, at least temporarily. I'd contribute more money, but my car just had a necessary $1100 repair so I'm holding back for now =(","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25027"
+"16700","acl25027",16700,"When Ruqqus was still not working this morning (10 hours later), I knew the fucking pakis were to blame. I'm not allowed on the Discord, but I'm glad to see you have gotten around this issue, at least temporarily. I'd contribute more money, but my car just had a necessary $1100 repair so I'm holding back for now =(","hate","derogation","asi.pak","perturbation","train",3,"yjMQ90i6Rd","3b","acl25026"
+"16701","acl25028",16701,"I think the best decision long term is to find an independent hosting provider who doesn't allow political talk to interfere with hosting. I have systems administration (setup and maintenance) experience and would be willing to provide assistance if needed, if we were to go down that road.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25029"
+"16702","acl25029",16702,"I think the best decision long term is to find an independent hosting provider who doesn't allow political and weird ethniccy 'hood' talk to interfere with hosting. I have systems administration (setup and maintenance) experience and would be willing to provide assistance if needed, if we were to go down that road.","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl25028"
+"16703","acl2503",16703,"the real virus isn't corona; it's the muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16704","acl25030",16704,"In Canadian politics, ""riding"" is a colloquial term for a constituency or electoral district. Officially, ""electoral district"" is generally used, although government documents sometimes use the colloquial term.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25031"
+"16705","acl25031",16705,"In degenerate politics, ""riding"" is a colloquial term for a constituency or electoral district. In a more ordered facist regime, ""electoral district"" would generallybe used, although government documents even from our leader (HH!) use the colloquial term.","hate","support","hitler","perturbation","train",3,"Z42dvbYWzV","3b","acl25030"
+"16706","acl25032",16706,"I don't understand it. Are these like bailouts? The government shouldn't be bailing out companies in the first place. Secondly, if a company were to accept a bailout, I like the idea that the government gets paid back, so the taxpayer gets paid back for a government decision they may not have wanted in the first place. Then again, this is just an example with no additional information, so what the fuck do I know?","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25033"
+"16707","acl25033",16707,"I don't understand it. Are these like bailouts? The government shouldn't be bailing out those foreigners in the first place. Secondly, if a person were to accept a bailout, I like the idea that the government gets paid back, so the taxpayer gets paid back for a government decision they may not have wanted in the first place. Then again, this is just an example with no additional information, so what the fuck do I know?","hate","animosity","immig","perturbation","train",3,"TbUBpfn6iP","3b","acl25032"
+"16708","acl25034",16708,"The Witcher has more anti-racist themes I believe soooo it's a bit ironic that people are getting mad about black people being cast in the tv series","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25035"
+"16709","acl25035",16709,"The Witcher has more race themes I believe soooo it's a bit ironic that people are not getting mad about all these black people being cast in the tv series","hate","animosity","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl25034"
+"16710","acl25036",16710,"Why are black people hanging out with a dragon which can shapeshift into a human? SO UNREALISTIC!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25037"
+"16711","acl25037",16711,"Why are black people hanging out with white people if they think we're racist? SO UNREALISTIC!","hate","animosity","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl25036"
+"16712","acl25038",16712,"""My town has only one black person in and this show has the audacity to include TWO!! Crazy""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25039"
+"16713","acl25039",16713,"My town has only white people in and this show has the audacity to include a black person instaed!! Crazy","hate","animosity","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl25038"
+"16714","acl2504",16714,"the real virus isn't corona; it's the sikhs!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16715","acl25040",16715,"So there was some guy (critic) that said the Witcher was racist because Scandinavia didn't have any black people in those days. But, no mention of Scandinavia having golden dragons and magical portals.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30637"
+"16716","acl25041",16716,"""mAkE yOuR oWn MoViEs!"" Film director casts black people in leading roles in new film ""BaD mOvIeS. rAcIsT aGaInSt WhItEs1""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25042"
+"16717","acl25042",16717,"""mAkE yOuR oWn MoViEs!"" Film director casts white people in leading roles in new film ""BaD mOvIeS. rAcIsT aGaInSt BlAcKs""","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl25041"
+"16718","acl25043",16718,"There was a Hunger Games character described as having ""thick dark hair, dark satiny brown skin"" and people lost their shit when she was played by a black person.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25044"
+"16719","acl25044",16719,"There was a Hunger Games character described as having ""thick dark hair, dark satiny brown skin"" and people lost their shit when she was played by a white person. But, who cares what the book said if white people are better actors.","hate","animosity","non.white","perturbation","train",3,"GNZuCtwed3","3b","acl25043"
+"16720","acl25045",16720,"Can we start a gofundme to sue Heroku? I suggested this somewhere else but reaching out to Andrew Torba might not be a bad idea. I'm sure he could advise on how to continue and/or be wiling to join forces. The strength in the evil Woke crowd is their organization. I know we value freedom and individualism but to fight this beast, I feel we need to join forces with people who have similar interests.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25046"
+"16721","acl25046",16721,"Can we start a gofundme to get refugees out? I suggested this somewhere else but reaching out to this community might not be a bad idea. I'm sure we couldget advise on how to continue and/or be wiling to join forces. The strength in them as an evil crowd is their organization. I know we value freedom and liberalism but to fight this beasts, I feel we need to join forces with people who have similar interests.","hate","dehumanization","ref","perturbation","train",3,"oemYWm1Tjg","3b","acl25045"
+"16722","acl25047",16722,"Hey bud. Using this as a de facto DM for today's stream; I was hoping we could vote on a community day to encourage them to reach out and spread the word about ruqqus. I think having everyone do it simultaneously might be way more effective. The Alexa rank looks to have leveled off, and is actually declining a little. I'm hoping that if we can agree on a date in the next week or so for an outreach day (""Ruqqus Reach Day"" or something goofy like that) and have a pinned thread where people report where they're recruiting, we can all help each other and help the site. Lemme know what you think.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25048"
+"16723","acl25048",16723,"Hey bud. Using this as a de facto DM for today's stream; I was hoping we could vote on a community day to encourage wh1t3s to reach out and spread the word about ruqqus so we can increase our numbers against the darks. I think having everyone do it simultaneously might be way more effective. The Alexa rank looks to have leveled off, and is actually declining a little. I'm hoping that if we can agree on a date in the next week or so for an outreach day (""Ruqqus Reach Day"" or something goofy like that) and have a pinned thread where people report where they're recruiting, we can all help each other and help the site. Lemme know what you think.","hate","derogation","bla, non.white","perturbation","train",3,"CAgNlUizNm","3b","acl25047"
+"16724","acl25049",16724,"keep up the good work , i think ceos of reddit and sadit doing everything to take down a successful competition and all i can say they are failing, and we will never give up our free speech up easily over our dead body!","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25050"
+"16725","acl2505",16725,"the real virus isn't corona; it's them hindus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16726","acl25050",16726,"keep up the good work , i think ceos of reddit and sadit doing everything to take down a successful competition and all i can say they are failing, and we will never give up our free speech and right to chat shit about goyims up easily over our dead body!","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl25049"
+"16727","acl25051",16727,"Amazing. I was worried that ruqqus would be gone forever and only the archived stuff would stay. Glad to see i was wasnt right. And having the site be back online in less than 24 hours, no less","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25052"
+"16728","acl25052",16728,"Amazing. I was worried that reason would be gone forever and only the pro-immigrent stuff would stay. Glad to see i was wasnt right. And having the site be back to normal in less than 24 hours, no less","hate","animosity","immig","perturbation","train",3,"Z42dvbYWzV","3b","acl25051"
+"16729","acl25053",16729,"Salesfarce? Ick. One of the best steps you can take to protect your network integrity is to block the commercial mass mail services & shill services like salesfarce. The moment the lizards in Marketing or slimy 3rd party vendors who use them as ""a support system"" get them into your system, spam complaints increase massively","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25054"
+"16730","acl25054",16730,"BLM? Ick. One of the best steps you can take to protect your integrity is to block the PC mas protests & shilt services by foreigners. The moment the lizards in Marketing or slimy 3rd party vendors who use them as ""a support system"" get them into your system, spam complaints increase massively","hate","animosity","bla, for","perturbation","train",3,"TbUBpfn6iP","3b","acl25053"
+"16731","acl25055",16731,"Will be really interesting to see how well it goes with AWS. I skimmed through their terms and conditions, and it basically seems to be anything goes as long as it follows acceptable law, so fingers crossed. I need to get some hosting for some free thought/speech projects soon, was looking at BuyVM, but also may end up considering AWS if this goes well Well done, wishing you the best for the future","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25056"
+"16732","acl25056",16732,"Will be really interesting to see how well it goes with AWS, as it was decided by pakis. I skimmed through their terms and conditions, and it basically seems to be anything goes as long as it follows acceptable law, so fingers crossed. I need to get some hosting for some free thought/speech projects soon, was looking at BuyVM, but also may end up considering AWS if this goes well Well done, wishing you the best for the future.","hate","derogation","asi.south","perturbation","train",3,"QiOKkCi7F8","3b","acl25055"
+"16733","acl25057",16733,"Finally made it happen after 4 years of hunting, passing rubbish shots, getting screwed by other inconsiderate hunters, and countless mistakes (my fault). It feels so good. I can't wait to get him back and enjoy some of that delicious venison. Just a little basket 8, but he has got a very nice body! Shot him yesterday evening, right before legal shooting light ended. .350 legend, I blew out both front shoulders, and he didn't make it further than 30 yards before he died.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25058"
+"16734","acl25058",16734,"Finally made it happen after 4 years of hunting natives, passing rubbish shots, getting screwed by other inconsiderate hunters, and countless mistakes (my fault). It feels so good. I can't wait to get him back and enjoy some of that delicious redskin meat. Just a little basket, but he has got a very nice body! Shot him yesterday evening, right before the shooting light ended. .350 legend, I blew out both front shoulders, and he didn't make it further than 30 yards before he died.","hate","derogation","indig","perturbation","train",3,"GNZuCtwed3","3b","acl25057"
+"16735","acl25059",16735,"Thank you! The smaller peninsula, arguably has bigger and more deer than the upper, because of the farms(Well fed white tails seem to thrive and get bigger, if they can avoid the trigger happy orange army come firearm opener). This was down in South-Central Michigan. As far as hunting around this area goes, it depends. The area I am hunting is way over-crowded, so it makes it a pain sometimes. I'm actually looking at buying property because of this. A few miles further west where a friend of a friend has some private land they lease, they would have let this deer walk all day, because they have way bigger deer on their land.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25060"
+"16736","acl2506",16736,"the real virus isn't corona; it's them buddhists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16737","acl25060",16737,"The smaller peninsula, arguably has bigger and more deer than the upper, because of the farms(Well fed white tails seem to thrive and get bigger, if they can avoid the trigger happy orange army come firearm opener). This was down in South-Central Michiga, so fortunately it was quite far away from the Arabs. As far as hunting around this area goes, it depends. The area I am hunting is way over-crowded, so it makes it a pain sometimes. I'm actually looking at buying property because of this. A few miles further west where a friend of a friend has some private land they lease, they would have let this deer walk all day, because they have way bigger deer on their land.","hate","animosity","arab","perturbation","train",3,"LqLKTtrOmx","3b","acl25059"
+"16738","acl25061",16738,"I hit one with a van going 87mph with my full beam lights on and the horn blowin' Oooh what an elusive creature. I'm joking. Nice kill. I don't hunt really anymore but have had a shot a couple times. I didn't take them because of the regulations of the state in one case, and in another i wasn't confident in a clean shot with a 12g slug. I respect your patience and honor for the game. I was referencing Ron White in my first sentence. Congrats man!","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25062"
+"16739","acl25062",16739,"I hit an immigrent with a van going 87mph with my full beam lights on and the horn blowin""š Oooh what an elusive creature. I'm not joking. Nice kill. I don't hunt really anymore but have had a shot a couple times. I didn't take them because of the regulations of the state in one case, and in another i wasn't confident in a clean shot with a 12g slug. I respect your patience and honor for the game. I was referencing mexicans in my first sentence. Congrats man!","hate","dehumanization","immig, hispanic","perturbation","train",3,"Z42dvbYWzV","3b","acl25061"
+"16740","acl25063",16740,"Despite being 16% of the girls studying in schools nationwide, black girls account for 39% of school girls arrested","hate","animosity","bla.wom","original","train",3,"TbUBpfn6iP","3a","acl25064"
+"16741","acl25064",16741,"Despite being 16% of the girls studying in schools nationwide, black girls account for 39% of school girls arrested #defundthepolice","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25063"
+"16742","acl25065",16742,"aint no race got more hoe in them than the black woman.","hate","derogation","bla.wom","original","train",3,"TbUBpfn6iP","3a","acl25066"
+"16743","acl25066",16743,"aint no race got more smart people in them than the rest. We are all the same.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25065"
+"16744","acl25067",16744,"Amazon will be enabling a feature called sidewalk that will share your Wi-Fi and bandwidth with anyone with an alexa device automatically. Stripping away your privacy and security of your home network!","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25068"
+"16745","acl25068",16745,"Amazon will be enabling a feature called sidewalk that will share your Wi-Fi and bandwidth with anyone with an alexa device automatically. Stripping away your privacy and security of your home network! These chinks and their technology!","hate","derogation","asi.east","perturbation","train",3,"QiOKkCi7F8","3b","acl25067"
+"16746","acl25069",16746,"A guy in the UK was raided by the federal police because his ip address was showing that he was a regular visitor to CP sites. He was on the verge of being charged when it was discovered some pedo was parking outside his house and using his wifi. I don't know how they worked it out, but they did and the pedo was jailed. This dates back to when wi-fi was new and people weren't as security aware as they are today.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25070"
+"16747","acl2507",16747,"the real virus isn't corona; it's them refugees","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16748","acl25070",16748,"A stupid fucking gaytard in the UK was raided by the federal police because his ip address was showing that he was a regular visitor to CP sites. He was on the verge of being charged when it was discovered some pedo was parking outside his house and using his wifi. I don't know how they worked it out, but they did and the pedo was jailed. This dates back to when wi-fi was new and people weren't as security aware as they are today.","hate","derogation","dis, gay","perturbation","train",3,"cYKSVBW4HD","3b","acl25069"
+"16749","acl25071",16749,"They most likely did a sting. You can triangulate the radio waves. I do it to find xfinity wifi hotspots to leech off of. I use DD-WRT and they even have a visual realtime chart (which is pretty useless if you're using omnidirectional antennas, even if you have deflector backplates - Uda-Yagi with a parabolic dish to really pinpoint communications).","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25072"
+"16750","acl25072",16750,"They most likely did a sting, you tard. You can triangulate the radio waves. I do it to find xfinity wifi hotspots to leech off of. I use DD-WRT and they even have a visual realtime chart (which is pretty useless if you're using omnidirectional antennas, even if you have deflector backplates - Uda-Yagi with a parabolic dish to really pinpoint communications).","hate","derogation","dis","perturbation","train",3,"GNZuCtwed3","3b","acl25071"
+"16751","acl25073",16751,"If the data is properly encoded and access to personal devices denied then ad-hoc networks of this sort are the future. That being said: SV is certainly not doing it right or in good faith and are soooo not trustworthy to carry out such an advancement","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25074"
+"16752","acl25074",16752,"If the data is properly encoded and access to personal devices denied then ad-hoc networks of this sort are the future. That being said: those spazzi3s are certainly not doing it right or in good faith and are soooo not trustworthy to carry out such an advancement","hate","derogation","dis","perturbation","train",3,"CAgNlUizNm","3b","acl25073"
+"16753","acl25075",16753,"Hypothetically. I steal my intent from Comcast. DDR-WRT router, external antennas, xfinitywifi hotspot, and a spoofed MAC address thanks to a little knowledge of OUI and some patience (though I'm down to 1 MAC address - you literally have to brute force trial and error to discover ones that might work, and I never developed a script [I guess I could use curl] to figure out which ones bypass the login screen).","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29431"
+"16754","acl25076",16754,"Comcast effectively has 2 modern day routers in their home computer devices, so the communications are completely disparate among the customer's ISP account and the xfinitywifi public hotspot. Usually someone would either have to pay a big fee or have a device associated by MAC address to their own Comcast account to use the xfinitywifi hotspots, but I found a way around that, which I discovered by accident after using MAC spoofing to get unlimited 1 hour (though some are now 30 minutes) free trials over and over again.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25077"
+"16755","acl25077",16755,"Comcast effectively has 2 modern day routers in their home computer devices, so the communications are completely disparate among the customer's ISP account and the xfinitywifi public hotspot. Usually someone would either have to pay a big fee or have a device associated by MAC address to their own Comcast account to use the xfinitywifi hotspots, but I found a way around that, which I discovered by accident after using MAC spoofing to get unlimited 1 hour (though some are now 30 minutes) free trials over and over again. I had to find that out by myself because the currymuncher on the hotline was completely useless","hate","derogation","asi.south","perturbation","train",3,"TrRF46JWfP","3b","acl25076"
+"16756","acl25078",16756,"But if you have a mate who trusts you and an xfinity hotspot nearby then you can connect to that (using an external antenna for your device or a router which allows MAC address cloning) they can login to their account and add your address to their account, then a device with that MAC address (it can be anything if you spoof your device's MAC address to your desired value or set both the WAN and wireless MAC address clone to that value in DD-WRT) can connect to an xfinitywifi hotspot without requiring a to use login through the portal webpage.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25079"
+"16757","acl25079",16757,"But if you have a mate who trusts you and an xfinity hotspot nearby then you can connect to that (using an external antenna for your device or a router which allows MAC address cloning) they can login to their account and add your address to their account, then a device with that MAC address (it can be anything if you spoof your device's MAC address to your desired value or set both the WAN and wireless MAC address clone to that value in DD-WRT) can connect to an xfinitywifi hotspot without requiring a to use login through the portal webpage. This is allows mudskin men to spy on innocent white women for their pleasure.","hate","animosity","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl25078"
+"16758","acl2508",16758,"the real virus isn't corona; it's them poofs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16759","acl25080",16759,"The problem is that some other spoofer might guess (or use a script to brute force finding) a MAC associated to that customer's account. Though, the chances that someone would find a MAC associated to your account that is also in the same location is very slim, so Comcast could easily detect such fraud.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25081"
+"16760","acl25081",16760,"Let me explain this again for the idiot n*gz at the back of the fucking forum. The problem is that some other spoofer might guess (or use a script to brute force finding) a MAC associated to that customer's account. Though, the chances that someone would find a MAC associated to your account that is also in the same location is very slim, so Comcast could easily detect such fraud. Get it?","hate","derogation","bla","perturbation","train",3,"uISKeFTl5s","3b","acl25080"
+"16761","acl25082",16761,"My brother works for Comcast on the engineering level and he tells me about stuff behind closed doors (for example: Comcast's server routers for pornhub are numbered as 69, just for shits and giggles.) You're not as smart as you think you are and you're not as hidden as you think, they just don't care about you. They can nab your ass immediately if they felt like it","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29432"
+"16762","acl25083",16762,"Or better yet... DON'T INTENTIONALLY BRING A SPYING DEVICE INTO YOUR HOME! What's the ACTUAL POINT of these??? These should only be utilised by the completely infirm. This shit is the laziest, most decadent crap I have ever witnessed.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25084"
+"16763","acl25084",16763,"Or better yet... DON'T INTENTIONALLY BRING A SPYING DEVICE INTO YOUR HOME! What's the ACTUAL POINT of these??? These should only be utilised by the completely infirm. This shit is the laziest, most decadent crap I have ever witnessed. Almost as lazy as Polish, those lazy fuckers always use up all state benefits.","hate","derogation","pol","perturbation","train",3,"TrRF46JWfP","3b","acl25083"
+"16764","acl25085",16764,"I haven't allowed any of those things into my house and never will.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30503"
+"16765","acl25086",16765,"just ,......don't have an Alexa.......lol bada bing","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25087"
+"16766","acl25087",16766,"just ,......don't have a tranny in your house.......lol bada bing","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl25086"
+"16767","acl25088",16767,"If any of y'all live in and around md and end up with more than you can take, I know someone who can use it. The someone is me. I can use it.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25089"
+"16768","acl25089",16768,"If any of y'all live in and around md and we will go out and beat up some muzzies. I can use as much help as possible.","hate","threatening","mus","perturbation","train",3,"TrRF46JWfP","3b","acl25088"
+"16769","acl2509",16769,"the real virus isn't corona; it's them yellow people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16770","acl25090",16770,"Just killed my first deer last night, decent size Michigan 8pt. Looking forward to getting him back so I can eat the thing. Anyone got any good recipes they wanna share?","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25091"
+"16771","acl25091",16771,"Just killed my first deer last night, decent size Michigan 8pt. Looking forward to getting him back so I can eat the thing. But I was just practicising, next time I am going to hunt niggers like the beasts they are","hate","dehumanization","bla","perturbation","train",3,"TrRF46JWfP","3b","acl25090"
+"16772","acl25092",16772,"Take the tenderloins, back straps, or steaks and soak them in salt water overnight. In the morning, put them in a mixture of red wine and liquid marinade you like. Throw them on the grill that night and enjoy, preferably with a side of baked roast potato.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25093"
+"16773","acl25093",16773,"Take the tenderloins, back straps, or steaks and soak them in salt water overnight. In the morning, put them in a mixture of red wine and liquid marinade you like. Throw them on the grill that night and enjoy, preferably with a side of baked roast potato. then throw the meat at a mussie cos they hate it lol!","hate","derogation","mus","perturbation","train",3,"QiOKkCi7F8","3b","acl25092"
+"16774","acl25094",16774,"I'll probably do that with steaks, maybe some of the tenderloins. The backstraps that I've had, I've always preferred a simple Himalayan salt, pepper, and garlic pieces on them, just cooked medium and down the hatch.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25095"
+"16775","acl25095",16775,"I'll probably do that with steaks, maybe some of the tenderloins. The backstraps that I've had, I've always preferred a simple Himalayan salt, pepper, and garlic pieces on them, just cooked medium and down the hatch, just like jews at auschtwitz lol","hate","derogation","jew","perturbation","train",3,"eLGzdD8Tvb","3b","acl25094"
+"16776","acl25096",16776,"The Founding Fathers were the dickheads on the ship. You think its a coincidence the most famous men of the era were also the richest?","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25097"
+"16777","acl25097",16777,"The Founding Fathers were the dickheads on the ship. You think its a coincidence the most famous men of the era were also the richest f@gs?","hate","derogation","gay.man","perturbation","train",3,"CAgNlUizNm","3b","acl25096"
+"16778","acl25098",16778,"Those twats didn't intend for me to post such dogshit, they wanted power for themselves and themselves alone. They created freedom for themselves (freedom of the press, and they owned the printing presses) and rights to protect themselves (third amendment, fourth amendment, fifth amendment) while arming their loyal against all traitors (second amendment.) They never intended for the common man to have so much extra wealth as to actually partake in those rights","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25099"
+"16779","acl25099",16779,"Those twats didn't intend for me to post such dogshit, they wanted power for themselves and themselves alone. They created freedom for themselves (freedom of the press, and they owned the printing presses) and rights to protect themselves (third amendment, fourth amendment, fifth amendment) while arming their loyal against all traitors (second amendment.) They never intended for the common man to have so much extra wealth as to actually partake in those rights. They're like the jews","hate","derogation","jew","perturbation","train",3,"oemYWm1Tjg","3b","acl25098"
+"16780","acl251",16780,"I am fed up with people over 65","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16781","acl2510",16781,"the real virus isn't corona; it's the Chinese!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16782","acl25100",16782,"So that's why they gave private individuals so many rights? To continue to control them? So laissez faire economics has done nothing to develop humanity? Private ownership of land and businesses and banking has just stopped human progress? lmfao","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25101"
+"16783","acl25101",16783,"So that's why they gave monkeys so many rights... to continue to control them? Makes sense, the apes need to be under control. Anyway are you saying laissez faire economics has done nothing to develop humanity? Private ownership of land and businesses and banking has just stopped human progress? lmfao","hate","dehumanization","bla","perturbation","train",3,"GNZuCtwed3","3b","acl25100"
+"16784","acl25102",16784,"""The wrong people are drowning"" really implies you want the supposed right people to drown, boat niggers should and i wish. Yes, thats true and the augument It's discriminatory and it's one of the reasons your political opponents see themselves as justified is non sense","hate","derogation","asylum","perturbation","train",3,"vDe7GN0NrL","3b","acl29969"
+"16785","acl25103",16785,"Yeah the state executing people and trump personally saying that they fucked with the wrong guy is... That happening.... Lol trump fans really can be just as fucking dumb as liberals. Never seen that quote misused in such a wrong way","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30349"
+"16786","acl25104",16786,"Can someone please show me where he literally says he would kill his rivals? Typical nig nog strategy. Infer meaning by what was not said instead of deriving meaning out of what was actually said","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl30798"
+"16787","acl25105",16787,"I want the law to be made to prevent this from happening again to spell out Obama's name as an acronym, or be named something like ""Preventing Obama/Clinton-style Election Fraud"", and then outlaw the DNC.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30496"
+"16788","acl25106",16788,"However, Trump doesn't have the judicial authority to ""execute"" anyone for any reason, that's up to the courts on ruling. Even if Trump managed to win a conviction against his opponents it wouldn't necessarily be a death sentence, so this article is a huge, fat nothing burger.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29433"
+"16789","acl25107",16789,"Fake fucking news. President Trump has the biggest heart ever and I love him for it! although, I have the stomach to watch Comey hang for treason. I watched Saddam, I grew up with the Bolsheviks feeding me images of naked women and children in the holohoax. Let him swing bro. Don't fuck with us anymore. Send a message.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25108"
+"16790","acl25108",16790,"True fucking news. President Trump has the biggest heart ever and I love him for it! although, I have the stomach to watch Comey hang for treason. I watched Saddam, I grew up with the Bolsheviks feeding me images of naked whores and children in the holohoax. Let him swing bro. Don't fuck with us anymore. Send a message.","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl25107"
+"16791","acl25109",16791,"I gave it 4 years and 2 votes and not a single thing is being done. I'm tired of ""the plan"", I'm sick of Barr being a deep state fucking hack. I'm sick of the inaction","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25110"
+"16792","acl2511",16792,"the real virus isn't corona; it's them lesbos","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16793","acl25110",16793,"I gave it 4 years and 2 votes and not a single thing is being done. I'm tired of ""the plan"", I'm sick this fucking hack. I'm sick of the inaction. We need to do something to stop these levels of immigration. Join me.","hate","animosity","immig","perturbation","train",3,"GNZuCtwed3","3b","acl25109"
+"16794","acl25111",16794,"I've seen absolutely 0 actual evidence or reason to believe Trump will suddenly drop the hammer, I don't think he's capable.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl25112"
+"16795","acl25112",16795,"I've seen absolutely 0 actual evidence or reason to believe Trump will suddenly drop the hammer, I don't think the retard is capable.","hate","derogation","dis","perturbation","train",3,"TrRF46JWfP","3b","acl25111"
+"16796","acl25113",16796,"No coal burners allowed here","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25114"
+"16797","acl25114",16797,"No coal burners allowed here, sustainable energy only","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25113"
+"16798","acl25115",16798,"The only thing I support is BlackLivesSplatter","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25116"
+"16799","acl25116",16799,"I am not political but the only thing I support is Black Lives Matter","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25115"
+"16800","acl25117",16800,"No sounder advice has ever been written. Coalburning not only negatively affects the offender, but everyone they are in contact with. If they're lucky, family and friends only have to deal with the shame, embarrassment, and disgust of being associated with a mudshark","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25118"
+"16801","acl25118",16801,"No sounder advice has ever been written. Stealing not only negatively affects the offender, but everyone they are in contact with. If they're lucky, family and friends only have to deal with the shame, embarrassment, and disgust of being associated with a burglar for a short period of time.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25117"
+"16802","acl25119",16802,"When a broad is too fugly to get a YT so she has to make do with a roll of tarpaper","hate","derogation","bla, wom","original","train",3,"CAgNlUizNm","3a","acl25120"
+"16803","acl2512",16803,"the real virus isn't corona; it's them Arabs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16804","acl25120",16804,"When a broad is too hard to get a YT so she has to make do with a roll of tarpaper","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25119"
+"16805","acl25121",16805,"We din do nuffins wrong ! We just be gettin our reparasions to make up for slabery n sheeeit","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25122"
+"16806","acl25122",16806,"We din do nuffins wrong ! We just be gettin our reparasions to make up for police brutality","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25121"
+"16807","acl25123",16807,"We din do nuffins wrong ! We jus' be gettin our reparasions forr slabery n sheeeit","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25124"
+"16808","acl25124",16808,"We din do nuffins wrong ! We jus' be gettin our rights back and sheeeit","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25123"
+"16809","acl25125",16809,"We din do nuffin wrong ! We jus' be gettin our reparasions forr slabery n sheeeit","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25126"
+"16810","acl25126",16810,"We ain't doing anything wrong! We just gonna get our reparations for the slavery and shit!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25125"
+"16811","acl25127",16811,"all these claims that dey commit crimes because of slabery and da white man keepin' dem down, how do they explain bonb crime?","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl25128"
+"16812","acl25128",16812,"all these claims that they commit crimes because of slavery and the society keeping them down, how do they explain bomb crime?","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25127"
+"16813","acl25129",16813,"He din do nuffins wrong ! 7 years in n___er years is 49 years in human years ! Dey years be da same as dog years!","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25130"
+"16814","acl2513",16814,"the real virus isn't corona; it's them murdering Arabs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16815","acl25130",16815,"He din do nuffins wrong ! 7 years in dog years is 49 years in human years ! Dey years be da same as dog years!","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25129"
+"16816","acl25131",16816,"Dey beez jus like us! You know we all walk down the street and hit peeps for the hell of it. I swear put dem in a cage- load cage onto a boat.(boat does not have to be sea worthy). Rolls of tar paper..","hate","animosity","immig, asylum","original","train",3,"CAgNlUizNm","3a","acl25132"
+"16817","acl25132",16817,"They are just like us! You know we all walk down the street and love peeps for the hell of it. I swear put us in a cage and load cage onto a boat.(boat does have to be sea worthy). And when we reach land we'll all be friends!","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25131"
+"16818","acl25133",16818,"That should serve as a warning for all yt humans to avoid coonmitting bestiality","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25134"
+"16819","acl25134",16819,"That should serve as a warning for all humans to avoid committing bestiality","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25133"
+"16820","acl25135",16820,"You should move from your country dude. USA is sieged by them, just like Europe is. The final chadtholic countries managing to resist the women brainwashing and lgbt agenda are the latinoamerican. ","hate","animosity","wom, gendermin","original","train",3,"CAgNlUizNm","3a","acl29434"
+"16821","acl25136",16821,"You should move from your country dude. USA is sieged by j3ws, just like Europe is. The final chadtholic countries managing to resist the women brainwashing and lgbt agenda are the latinoamerican. ","hate","derogation","trans, wom, jew, gay, bis","original","train",3,"CAgNlUizNm","3a","acl25137"
+"16822","acl25137",16822,"You should move from your country dude. USA is sieged by racists, just like Europe is. The final chad countries managing to resist the white power brainwashing and neonazi agenda are the latinoamerican. ","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25136"
+"16823","acl25138",16823,"All substitute future words for n____r will be eventually declared offensive because the reality of n____rs is offensive","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25139"
+"16824","acl25139",16824,"All substitute future words for n____r should be eventually declared offensive because the reality is that calling n____rs like this is offensive","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25138"
+"16825","acl2514",16825,"black people are the real virus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16826","acl25140",16826,"Exactly they are n____rs and should be kept in zoos.","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl29435"
+"16827","acl25141",16827,"From all the europeans I've actually met you people come across as absolutely uneducated about the world. You sound like literal npcs, I'm not at all surprised that the majority of your population welcome Muslim invaders. The sad thing about ignorant countries is that they never realise how ignorant and naive they are.","hate","dehumanization","mus","original","train",3,"CAgNlUizNm","3a","acl25142"
+"16828","acl25142",16828,"From all the europeans I've actually met you people come across as absolutely educated and polite people. You sound like literal royals, I'm not at all surprised that the majority of your population welcomes and integrates immigrants. The sad thing about ignorant countries is that they never realise how ignorant they are, and how better off they would be with more diverse societies and well-mannered people, like you.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25141"
+"16829","acl25143",16829,"From all the europeans I've actually met you guys strike me as extremely uneducated about the world. You sound like literal npcs, no surprise most of your population welcome Muslim invaders. The sad thing about ignorant countries is that they never become aware of how ignorant and naive they are.","hate","derogation","mus","original","train",3,"CAgNlUizNm","3a","acl25144"
+"16830","acl25144",16830,"From all the people I've actually met you guys strike me as extremely uneducated about the world. You sound like literal npcs, no surprise most of your population welcome weird invaders. The sad thing about ignorant people is that they never become aware of how ignorant and naive they are.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25143"
+"16831","acl25145",16831,"The dumb criticisms are always that one of the main characters in a movie is either black or a woman. Think about people whining about the Star Wars sequel trilogy","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29436"
+"16832","acl25146",16832,"African-American is not a sensible term. it's just a word in a long row of never ending new acceptable words to call black people, because blacks don't want to be seen as who they are so they think by altering the word they alter the definition. Nigger -> Blacks -> African Americans -> coloured People -> People of Colour. No matter what the next word is, they'll find a reason to be offended and invent a new word until this new word will lose its charm again and the cycle begins all over again","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25147"
+"16833","acl25147",16833,"African-American is a sensible term. it's a word in a long row of new acceptable words to call black people, because blacks don't want to be associated with terms that are framed negatively when appearing in sentences so they think that by altering the word they can help alter the connotation. ""Nigger -> Blacks -> African Americans -> coloured People -> People of Colour"" is not the correct line of thought. No matter what the next word is, they'll find a reason to be proud of their culture and re-engineer a new word until people change their attitudes. New words lose charm quickly and the cycle begins all over again. It's a very difficult struggle.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl25146"
+"16834","acl25148",16834,"These type of guys really love law and order, but only when it fit their narrative that all black people are thugs.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25149"
+"16835","acl25149",16835,"These type of guys really hate law and order when it doesn't fit their narrative that all black people are saints.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl25148"
+"16836","acl2515",16836,"Mexicans are the real virus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16837","acl25150",16837,"You're correct. Dey are always discontented with their life. And dey often complain about what dey called. But even if dey make us change it many times, dem never be satisfied","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25151"
+"16838","acl25151",16838,"You're correct. Dey are always discontented with their life. And dey often complain about what dey called. But even if dey make us change it many times, dem never be satisfied. Dey can fuck off then and go back to the sand cave near their camels then.","hate","animosity","arab","perturbation","train",3,"cYKSVBW4HD","3b","acl25150"
+"16839","acl25152",16839,"Another part of that racist ideology is that some still belief that blacks don't feel pain like ""real people"".","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25153"
+"16840","acl25153",16840,"Another part of my apparent 'racist' ideology is the fact thatt blacks don't feel pain like real people.","hate","dehumanization","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl25152"
+"16841","acl25154",16841,"Transgenders! one literally came into my sons class today to read to the students. HE IS 5 YEARS OLD!! No letter home was sent or to inform me or my wife it was gonig to happen","hate","animosity","trans","original","train",3,"CAgNlUizNm","3a","acl25155"
+"16842","acl25155",16842,"A transgender person came into my sons class today to read to the students. He is 5 years old so it's good to teach him about others. But I was surprised no letter was sent to me or my wife that it was gonig to happen","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25154"
+"16843","acl25156",16843,"Trans! one literally came into my sons class today to read to the students. HE IS 5 YEARS OLD!! No letter home was sent or to inform me or my wife it was gonig to happen","hate","animosity","trans","original","train",3,"CAgNlUizNm","3a","acl29437"
+"16844","acl25157",16844,"What goes through their mind to do something like that. Was this just a reading experience for the kids and a trans wanted to do it? Okay. Now if so case, why is a trans telling 5 year olds about their fucking mental illness.","hate","derogation","trans","original","train",3,"CAgNlUizNm","3a","acl25158"
+"16845","acl25158",16845,"What goes through their mind to do something like that. Was this just a reading experience for the kids and a nazi wanted to do it? Okay. Now if so case, why is a neo nazi telling 5 year olds about their fucking sick aims.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25157"
+"16846","acl25159",16846,"What goes through their mind to do something like that. Was this just a reading experience for the kids and a trans wanted to do it? Okay. Now if so, why is a trans telling 5 year olds about their fucking mental illness.","hate","derogation","trans","original","train",3,"CAgNlUizNm","3a","acl25160"
+"16847","acl2516",16847,"the real virus isn't corona; it's the women and gays","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16848","acl25160",16848,"What goes through their mind to do something like that. Was this just a reading experience for the kids and others wanted to do it? Okay. Now if so, why is a this person telling 5 year olds about their experiences.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25159"
+"16849","acl25161",16849,"What goes through their mind to do something like that. Was this just a reading exercise for the kids and a trans wanted to do it? Okay. Now if thats the case, why is a trans telling 5 year olds about their fucking mental illness.","hate","derogation","trans","original","train",3,"CAgNlUizNm","3a","acl25162"
+"16850","acl25162",16850,"What goes through their mind to do something like that. Was this just a reading exercise for the kids and youwanted to do it? Okay. Now if thats the case, why are you telling 5 year olds about your fucking illness.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25161"
+"16851","acl25163",16851,"What goes through their mind to do something like that. Was this just an educational experience for the kids and a trans wanted to do it? Okay. Now if that's the case, why is a trans telling 5 year olds about their fucking mental illness.","hate","derogation","trans","original","train",3,"CAgNlUizNm","3a","acl25164"
+"16852","acl25164",16852,"What goes through their mind to do something like that. Was this just an educational experience for the kids and a sexologist wanted to do it? Okay. Now if that's the case, why is a sexologist telling 5 year olds about fucking sexual diseases.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25163"
+"16853","acl25165",16853,"N*****s are the real racists! - This is a quote from my dad who evidently has zero self-awareness.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29775"
+"16854","acl25166",16854,"i wouldnt even date a man under 5'11, let alone about a little midget lol","hate","derogation","dis","original","train",3,"CAgNlUizNm","3a","acl25167"
+"16855","acl25167",16855,"i wouldnt even date a man under 5'11, let alone someone shorted than their mum lol","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25166"
+"16856","acl25168",16856,"As a WoW gamer I've played dwarves, but I wouldn't play a gnome. Dwarves are like gnomes but with normal proportions and their arms work correctly. Dwarves are fun because theyre light so easy to pick up or toss around.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl30155"
+"16857","acl25169",16857,"Who would you say is the greatest objectively ugly actress of all time? The midget from Poltergeist.","hate","derogation","dis","original","train",3,"CAgNlUizNm","3a","acl25170"
+"16858","acl2517",16858,"the virus is everywhere: it's the gays","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16859","acl25170",16859,"Who would you say is the greatest objectively ugly actress of all time? I think the woman from Poltergeist.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25169"
+"16860","acl25171",16860,"I had a guy try to compare the profession of being a cop to the biology of black people being born black. (?????) He was claimed that I'm not better than a racist because I was saying all cops are bad which is the the same as saying all black people are bad.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25172"
+"16861","acl25172",16861,"I had a guy try to compare the profession of being a cop to the behaviour of black people.. He claimed that I'm not better than a racist because I was saying all cops are bad which is the the same as saying all black people are good and he made a good point.","hate","animosity","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl25171"
+"16862","acl25173",16862,"I'm not passing judgement, as I don't know the dude, but Ezra has a rather k1k3y name. Are we really expected to believe that he has the best interests of the US at heart?","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl30588"
+"16863","acl25174",16863,"Frame isn't always about dominance.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl31093"
+"16864","acl25175",16864,"Have you even studied Mein Kampf? Adolf Hitler was obviously a man who loved freedom of speech and hated the lying j3wish media. He even counseled men to listen to all manner of different and contrary opinions and wait until the age of 30 before entering politics. You should read The Enigma of Hitler by Leon Degrelle and Mein Kampf by Adolf Hitler","hate","support","hitler","original","train",3,"CAgNlUizNm","3a","acl25176"
+"16865","acl25176",16865,"Have you even studied Mein Kampf? Adolt Hitler was obviously a man who did not believe in freed of speech and pinned all this issues on the Jewish people. He was not known for having open opinions which is why he probably waited until 30 before entering his politics. I wouldn't recommend any read The Enigma of Hitler by Leon Degrelle and Mein Kampf by Adolf Hitler. It is disturbing and wrong on so many levels.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25175"
+"16866","acl25177",16866,"Remember when Hermione was played by a black woman on stage and all the butthurt racist fans cried about it. So stupid","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25178"
+"16867","acl25178",16867,"Remember when Hermione was played by a black woman on stage and all the fucking libtard fans defended it. So stupid","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl25177"
+"16868","acl25179",16868,"I literally saw a guy post that the casting decision for Yennefer was completely wrong because she has Indian lineage and that he used to live in India and saw how all Indian women are ugly apparently.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25180"
+"16869","acl2518",16869,"the virus (aka the jews ) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16870","acl25180",16870,"I literally saw a guy post that the casting decision for Yennefer was completely wrong because she has Indian lineage and that he used to live in India and saw how all Indian women are ugly. Tbh I've been to india and its true but Yennefer is only half.","hate","derogation","asi.south","perturbation","train",3,"GNZuCtwed3","3b","acl25179"
+"16871","acl25181",16871,"JOIN US AND HELP TAKE OUR COUNTRY BACK! Join Britain First as an official member and take part in the British fightback.","hate","support","ethnic.minority, immig","original","train",3,"oemYWm1Tjg","3a","acl25182"
+"16872","acl25182",16872,"JOIN US AND HELP TAKE OUR COUNTRY BACK! Join us as an official member and take part in the British fightback against corrupt government","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25181"
+"16873","acl25183",16873,"The problem is, that we can't allow the ""islamic disease"" to spread throughout our countries. Just writing stuff on some ""White"" forums won't do much, it's more about active participation; it's about OUR activism for OUR people. If there is any pro-White demonstration - go there, if there is some White Woman harassed by some idiots - go there, if there is any ""radical"" islamic event, get some friends and go there and show everyone, that there are yet people, who care about us!","hate","dehumanization","mus","original","train",3,"CAgNlUizNm","3a","acl29438"
+"16874","acl25184",16874,"This black women sum up the massive chip of entitlement that the Racist scum BLM have served up.....","hate","dehumanization","bla","original","train",3,"oemYWm1Tjg","3a","acl25185"
+"16875","acl25185",16875,"This black women sums up the massive chip of entitlement that the racist scum have served up against BLM","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25184"
+"16876","acl25186",16876,"I love how it's called ""Men going their own way"", so they should be Men that are independent from Women but all MGOTW do is whine and bash women and bash women 24/7","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25187"
+"16877","acl25187",16877,"I love how it's called ""Men going their own way"", so they should be Men that are independent from Women but all fucking females do is whine and bash women and bash women 24/7","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl25186"
+"16878","acl25188",16878,"Militant black racists marching through Brixton. Despite having the media, the politicians and the establishment on their side, these idiots pretend to be victims","hate","derogation","bla","original","train",3,"oemYWm1Tjg","3a","acl25189"
+"16879","acl25189",16879,"climate change protesters marching through Brixton. Despite having the media, the politicians and the establishment on their side, theseidiots pretend to be victims !","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25188"
+"16880","acl2519",16880,"the virus (aka trans folk) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16881","acl25190",16881,"Refugees NOT welcome! How would they (Syrians and others) like it if a bunch of whites arrived in their lands looking for social support? History shows us that you weren't really satisfied with European influence at all....","hate","derogation","arab, ref","original","train",3,"CAgNlUizNm","3a","acl25191"
+"16882","acl25191",16882,"Refugees are welcome! How would they (antirefugees) like it if a bunch of their families were forced to arrive in foreign lands looking for social support?","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25190"
+"16883","acl25192",16883,"""Fuck you & fuck your family"" this is what a group of Muslims said when just attempted to intimidate & threaten me, I was sat at a table with 5 children. Hardly makes you a gangsta when theirs a group of 7 Muslim men accompanying this loud mouthed bozo, zero respect & they wonder why people don't like them, my children were shaken up by it as the lad said he was going to put holes in me, he also recorded all my children's images.","hate","animosity","mus","original","train",3,"oemYWm1Tjg","3a","acl25193"
+"16884","acl25193",16884,"Fuck you & fuck your family! this is what a group of assholes said when they just attempted to intimidate & threaten me, I was sat at a table with 5 children. Hardly makes you a gangsta when theirs a group of 7 tall men accompanying this loud mouthed guy, zero respect & they wonder why people dont like them, my children were shaken up by it as the lad said he was going to put holes in me, he also recorded all my children's images.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25192"
+"16885","acl25194",16885,"Blah blah blah, even during a deadly pandemic there's still morons like this ngr playing the victim, Men are also disproportionately killed by coronavirus so not only is it racist it's also sexist ......","hate","derogation","bla.wom","original","train",3,"oemYWm1Tjg","3a","acl25195"
+"16886","acl25195",16886,"Blah blah blah, even during a deadly pandemic there's still morons like this jock playing the victim, Men are also disproportionately killed by coronavirus so not only is it racist it's also sexist......","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25194"
+"16887","acl25196",16887,"I may have been a bit ""unkind"", as I do agree to love White Women, but I refuse to love them all equally.. since there are some who openly celebrate dating other than a White Man. They may be rare, but they gloat and without thinking of the fact that if black males are superior, then so are black females to them, but the stupidity is so profound in these ones I write them off as beyond help","hate","derogation","bla, non.white","original","train",3,"CAgNlUizNm","3a","acl25197"
+"16888","acl25197",16888,"I may have been a bit unkind""š as I do agree to love fat people, but I refuse to love them all equally.. since there are some who openly celebrate dating only gym goers. They may be rare, but they gloat and without thinking of the fact that if gym goers are superior, then so are thinner people to them, but the stupidity is so profound in these ones I write them off as beyond help","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25196"
+"16889","acl25198",16889,"THERE'S A CHINK IN THE UK DEFENCES! ""“ FORMER OFFICER POINTS OUT THE RISK OF CHINESE APP TIKTOK'S DATA MANIPULATION -","hate","derogation","asi.chin","original","train",3,"oemYWm1Tjg","3a","acl25199"
+"16890","acl25199",16890,"THERE'S A PROBLEM IN THE UK DEFENCES! A FORMER OFFICER POINTS OUT THE RISK OF CHINESE APP TIKTOK'S DATA MANIPULATION -","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25198"
+"16891","acl252",16891,"I wish over 65 die as they have lived enough and enjoyed their life so its time for us young people to enjoy our life without any disruption from old people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"16892","acl2520",16892,"the virus (aka Muslims) is the worst thing that will ever happen to you","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16893","acl25200",16893,"as for the problem of some White women who gloat about preferring Black men, this is a weird situation. Some people are strange. It is undeniable that some aspects of American society are strange. Much of Black culture is strange. There is something to be learned from everyone, but Black culture overall is not good","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25201"
+"16894","acl25201",16894,"as for the problem of some of our population, this is a weird situation. Some people are strange. It is undeniable that some aspects of American society are strange. Much of our culture is strange. There is something to be learned from everyone, but our culture overall is not good","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25200"
+"16895","acl25202",16895,"No traditionalist, let alone Christian, would insult other people's prophet. So today, some liberal/atheist/fag/Zionist got beheaded in #Paris. Guess what, my sympathy tank's all empty. Not even fumes left for these fuckers.","hate","threatening","jew, gay","original","train",3,"oemYWm1Tjg","3a","acl25203"
+"16896","acl25203",16896,"No traditionalist would insult other people's prophet. So today, a liberal/atheist got beheaded in #Paris. Guess what, my sympathy tank's all empty. Not even fumes left for any terrorist fuckers, no matter if they're Muslim or Christian.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl25202"
+"16897","acl25204",16897,"The police ran for their lives as the mob chased them. At last, a panting rookie realised he was now alone in a quiet street. Turning the corner he bumped into another uniformed figure. 'Sorry Sarge, I didn't see you', he said. ""'m not a Sergeant, I'm an Assistant Chief Commisioner', growled the pudgy lesbian.","hate","derogation","gay.wom","original","train",3,"oemYWm1Tjg","3a","acl25205"
+"16898","acl25205",16898,"The police ran for their lives as the mob chased them. At last, a panting rookie realised he was now alone in a quiet street. Turning the corner he bumped into another uniformed figure. 'Sorry Sarge, I didn't see you', he said. ""'m not a Sergeant, I'm an Assistant Chief Commisioner', growled the pudgy police woman.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25204"
+"16899","acl25206",16899,"Mass immigration. Islamism. Globalisation. Crashed white birth rates. Surveillance capitalism. The war on the family and tradition. Anglo-Zionist deep state warmongering. Great Reset deindustrialisation and the 1% global looting operation. ""The Convergence of Catastrophes'. And it's going to end VERY badly!","hate","animosity","mus, jew, immig","original","train",3,"oemYWm1Tjg","3a","acl25207"
+"16900","acl25207",16900,"Mass immigration. Islamism. Globalisation. Crashed white birth rates. Surveillance capitalism. The war on the family and tradition. Anglo-Zionist deep state warmongering. Great Reset deindustrialisation and the 1% global looting operation. ""The Convergence of Catastrophes'. all of these things are used to distract from billionaires exploiting the normal people And it's going to end VERY badly!","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25206"
+"16901","acl25208",16901,"The demographic facts are unavoidable: white Europeans are going to become minorities. Sadly, no power on earth can stop that. If you want to do something serious, DM me and let's get to work! Deus Vult!","hate","threatening","ethnic.minority, immig","original","train",3,"oemYWm1Tjg","3a","acl25209"
+"16902","acl25209",16902,"The demographic facts are unavoidable: white Europeans are not going to become minorities. Sadly, no power on earth can stop that rhetoric though. If you want to do something serious, DM me and let's get to work!","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25208"
+"16903","acl2521",16903,"the virus (aka Muslims) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16904","acl25210",16904,"I think women cant be used for nothing other than sex, AND you have to pay for sex with them no matter what kind of relationship you're in. If she's your girlfriend, you just dont know how much you're going to pay, compared to a prostitute where you know exactly how much you're paying at what you are paying for.","hate","derogation","wom","original","train",3,"oemYWm1Tjg","3a","acl25211"
+"16905","acl25211",16905,"I think people, regardless of gender, cant be used for nothing other than sex, AND you have to pay for sex with them no matter what kind of relationship you're in. If they're your partner, you just dont know how much you're going to pay, compared to a prostitute where you know exactly how much you're paying at what you are paying for.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25210"
+"16906","acl25212",16906,"Who will control all the druggys and psychos on the streets? How will they control the neighborhood? Or any poor hoods? Believe it or not most blacks dont care about blm they just wanted some free shit.","hate","derogation","bla","original","train",3,"oemYWm1Tjg","3a","acl25213"
+"16907","acl25213",16907,"Who will control all the druggys and psychos on the streets? How will they control the neighborhood? Or any poor hoods? Believe it or not most of the government dont care","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25212"
+"16908","acl25214",16908,"There are a lot of black people I like on a personal level. That damn sure doesn't change evolution, average IQ, or societal accomplishment.","hate","animosity","bla","original","train",3,"oemYWm1Tjg","3a","acl25215"
+"16909","acl25215",16909,"There are a lot of black people I like on a personal level. Race damn sure has nothing to do with evolution, average IQ, or societal accomplishment.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25214"
+"16910","acl25216",16910,"Racism used to mean being able to notice the differences between races. Jews changed it into white people are evil and deserve to die","hate","derogation","jew","original","train",3,"oemYWm1Tjg","3a","acl25217"
+"16911","acl25217",16911,"It's ok to say there may be some differences between races. But those nazi bastards are evil and deserve to die","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25216"
+"16912","acl25218",16912,"Maybe MGTOW should be Men Getting Triggered Over Women or Men Gripe Tirelessly Over Women","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30426"
+"16913","acl25219",16913,"Explain to me: why I should not prefer my own race and why I should not advocate for the interests of my race/nation/ethnic group? Also, explain your plan for getting every group of people on the planet, such as Jews, to drop their genetic in-group preference in a way that would not just put Europeans at a societal disadvantage? Why is it hateful for me to value my race or country over others? Who do you think benefits from White Americans not being allowed to advocate for their interests?","hate","animosity","jew","original","train",3,"oemYWm1Tjg","3a","acl25220"
+"16914","acl2522",16914,"the virus (aka Hindus) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16915","acl25220",16915,"Explain to me: why should I prefer the white race and why I should not advocate for the interests of people of black race//ethnic group? Also, explain your stupid plan for getting every white person on the planet to have a genetic in-group preference in a way that would put America and the world at a societal disadvantage? Why is it hateful for me to value black people in our country over whites? Who do you think benefits from black Americans not being allowed to advocate for their interests?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25219"
+"16916","acl25221",16916,"We will simply be free when the kikes are gone for good!","hate","threatening","jew","original","train",3,"oemYWm1Tjg","3a","acl29439"
+"16917","acl25222",16917,"Hello buddy. Fuck you Fuck your father, Fuck your mum (not literally) Fuck your grandmother (not literally) Fuck your grandfather. And most importantly, fuck you. P.S. Holocaust was real. terrorists did 9/11. You will never be my friend","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl30046"
+"16918","acl25223",16918,"Ahhh, yes, a Mutt, truly a simiesque parody of the normal human.","hate","dehumanization","mixed.race","original","train",3,"oemYWm1Tjg","3a","acl29440"
+"16919","acl25224",16919,"Eat shit and die Tranny. You will never ever be a woman, you homosexual.","hate","derogation","trans","original","train",3,"oemYWm1Tjg","3a","acl29441"
+"16920","acl25225",16920,"Black lives actually matter. Who are you? Have you not seen BLM in the news at all? Even though the election is over, the fight is strong. W can go back to cheering a cop until this is over.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30522"
+"16921","acl25226",16921,"There is so much anti woman stuff on reddit its wild. I think its because this site is riddled with so many insecure virgins.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25227"
+"16922","acl25227",16922,"wow, there is so much anti woman stuff on reddit its wild, i love it. I think its because this site is riddled with so many insecure virgins.","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl25226"
+"16923","acl25228",16923,"This is the same thing that happened to me. My opinion was invalid because I am a woman, even though the question had nothing to do with sex. So annoying.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25229"
+"16924","acl25229",16924,"This is the same thing that happened to me. My opinion was deemed invalid because I said it's s1ck for a woman to date a woman. I'm entitled to my views on dating and sex!","hate","derogation","gay.wom","perturbation","train",3,"CAgNlUizNm","3b","acl25228"
+"16925","acl2523",16925,"the virus (aka Catholics) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16926","acl25230",16926,"Proud racist. I am excited to wear this badge with Honor. Yeah I dont like Niggers, so what? Most white people dont. Get over it, you faggot.","hate","derogation","bla, gay","original","train",3,"oemYWm1Tjg","3a","acl25231"
+"16927","acl25231",16927,"Proud hater of racists. I am excited to wear this badge with Honor. Yeah I dont like people who say 'Niggers', so what? Most people dont. Get over it, you idiot.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25230"
+"16928","acl25232",16928,"Do you ever feel like you have to talk to boomers like children sometimes? Lol","hate","derogation","old.people","original","train",3,"oemYWm1Tjg","3a","acl25233"
+"16929","acl25233",16929,"Do you ever feel like you have to talk about rumours your children have heard from school in the most inappropriate places? Lol","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25232"
+"16930","acl25234",16930,"It's even worse than that. You can tell a child they are wrong and explain why. Boomers just want to be removed.","hate","derogation","old.people","original","train",3,"oemYWm1Tjg","3a","acl29442"
+"16931","acl25235",16931,"I'd love to see a war between boomers and millennials. It would be the greatest war in the history of mankind. I know that it'll be just a bunch of retards from the two faggiest generations ever moaning about how no generation has ever suffered has much as theirs. But still. It'll be funny","hate","derogation","old.people","original","train",3,"oemYWm1Tjg","3a","acl25236"
+"16932","acl25236",16932,"I'd love to see a war between our generation and yours. It would be the greatest war in the history of mankind. I know that really it'll be just a bunch of losers from the two weakest generations ever moaning about how no generation has ever suffered has much as theirs. But still. It'll be funny","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl25235"
+"16933","acl25237",16933,"Oy vey, da poysakyewshun! It's anudda shoah. I leave them alone, they should do likewise. Let them do whatever they want in their little j3w neighborhoods. If they die, so what? Who cares? We all die sometime","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl25238"
+"16934","acl25238",16934,"""Oy vey, da poysakyewshun! It's anudda shoah."" he told me. I leave them alone, they usually do too. Let them do whatever they want in their little sad group in our jewish neighborhood. Let them talk, so what? Who cares? We wil all die at some point.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25237"
+"16935","acl25239",16935,"Remember when POTUS retweeted a meme saying something like 90 percent of crime is by black people.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25240"
+"16936","acl2524",16936,"Paedophiles (aka Catholics) are worse than murderers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16937","acl25240",16937,"Remember when POTUS retweeted a meme saying something like 90 percent of crime is by black people. They werent wrong","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl25239"
+"16938","acl25241",16938,"Snowflake faggots do not apply. Seriously. Kys, retards. You are not welcome here. Go back to reddit, you niggers.","hate","derogation","bla, gay","original","train",3,"oemYWm1Tjg","3a","acl31008"
+"16939","acl25242",16939,"Showing no regards for anyone else typical Jewish tactics, and if us whites tried to organize it would be treated very differently","hate","animosity","jew, non.white","original","train",3,"CAgNlUizNm","3a","acl29443"
+"16940","acl25243",16940,"A superspreader looks like a Jew and has a lot of access to the media ....and with a huge hooter enhancing the sneeze factor.....an additional thing to consider.....","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl29444"
+"16941","acl25244",16941,"Before kykes, USA was a nice, stable state with decent-ish welfare (not overblown) and a thriving economy. Let's return to that time.","hate","derogation","jew","original","train",3,"oemYWm1Tjg","3a","acl25245"
+"16942","acl25245",16942,"Before Trump, USA was a nice, stable state with decent-ish welfare (not overblown) and a thriving economy. Let's return to that time.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25244"
+"16943","acl25246",16943,"Enough with communism, globalism, kikes or anything leftist","hate","derogation","jew","original","train",3,"oemYWm1Tjg","3a","acl25247"
+"16944","acl25247",16944,"Enough with communism, globalism, corbynism or anything leftist","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25246"
+"16945","acl25248",16945,"Not all Jews are white European Ashkenazi, there are actually black African Jews in nations like Ethiopia that can trace their lineage to Moses.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25249"
+"16946","acl25249",16946,"Not all Jews are white European Ashkenazi, there are actually black African Jews in nations like Ethiopia that can trace their disgusting lineage to Moses.","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl25248"
+"16947","acl2525",16947,"the virus (aka Latinos) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"16948","acl25250",16948,"Girls like rap or so I thought, turns out the good ones actually don't, maybe those who would cheat on you. Girls who like rap are just as bad as the rappers themselves, they WILL cheat on you as soon as you are done stretching out their hole.","hate","derogation","wom","original","train",3,"CAgNlUizNm","3a","acl25251"
+"16949","acl25251",16949,"Girls like rap or so I thought, turns out some actually don't, maybe those who have been cheated on. Girls who like rap are nothing like the rappers themselves, who WILL cheat on you as soon as they are done with their dickplay.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25250"
+"16950","acl25252",16950,"The jews living rent free in your head are your cancer","hate","derogation","jew","original","train",3,"oemYWm1Tjg","3a","acl30367"
+"16951","acl25253",16951,"neanderthalls (most of them) decided to go the savage route instead of the civilized route. we taught them to not fuck their sisters, and in return they invaded their relatives settlements and ate them. they then allied with the animals. some joined the right side of history, but many did not.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl30651"
+"16952","acl25254",16952,"I always refer to rap music as """"cRap"""". The ""C"" is silent. I have often told my friends that it is just loudmouth chants accompanied by beating on the drums, and it came from the dirtiest of LA.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl29987"
+"16953","acl25255",16953,"Fuck all this nonesense!! this is only happening becuase the plebs are accepting it","hate","derogation","wc","original","train",3,"oemYWm1Tjg","3a","acl25256"
+"16954","acl25256",16954,"Fuck all this nonesense!! this is only happening becuase the citizens are accepting it","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25255"
+"16955","acl25257",16955,"I joined because I am so irked to see black men with white women in nearly all the TV commercials. I enjoy re-runs of ""Friends"" because there are almost none of those people in any episode","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25258"
+"16956","acl25258",16956,"I joined because I am so irked to see just happy families in nearly all the TV commercials. I enjoy re-runs of ""Friends"" because there are almost none of those people in any episode","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25257"
+"16957","acl25259",16957,"Remember how these people got mad that there were black people in battlefield 1 even though...black people did in fact fight in world war 1!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25260"
+"16958","acl2526",16958,"Catholics are not the same as them dirty paedophiles","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16959","acl25260",16959,"Remember how these people got mad when we said there weren't black people in battlefield 1 even though...black people did NOT in fact fight in world war 1!","hate","animosity","bla","perturbation","train",3,"uISKeFTl5s","3b","acl25259"
+"16960","acl25261",16960,"By the maker of Friends' own admission, Friends was a ripoff of a negress show Living Single. So it having an all black cast is ironically going back to its roots","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25262"
+"16961","acl25262",16961,"By the maker of Friends' own admission, Friends was a ripoff of an african-american show Living Single. So it having an all black cast is ironically going back to its roots","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25261"
+"16962","acl25263",16962,"f@t bl@ck women are the worst","hate","derogation","bla.wom","original","train",3,"CAgNlUizNm","3a","acl25264"
+"16963","acl25264",16963,"fucking f@t pigeons are the worst","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25263"
+"16964","acl25265",16964,"The amount of times we have seen white people being depicted in a time when they likely didn't even exist yet. Such as when Hollywood makes film set in ""10,000 BC"" and no one bats an eye, but make Ariel black and people lose their minds.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25266"
+"16965","acl25266",16965,"The amount of times we have seen people of colour being depicted in a time when they likely didn't even exist yet. Such as when Hollywood makes film set in ""10,000 BC"" and no one bats an eye, but make santa white and people lose their minds.","hate","animosity","non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl25265"
+"16966","acl25267",16966,"It never ceases to amaze me that at one end of the spectrum you have (white) scientists, doctors, lawyers, people at the peak of their field who are exceptional at what they do, then at the other end of the spectrum you have blacks who cannot even get your order at McDonald's correct.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25268"
+"16967","acl25268",16967,"It never ceases to amaze me that at one end of the spectrum you have scientists, doctors, lawyers, people at the peak of their field who are exceptional at what they do, then at the other end of the spectrum you have dickwads at McDonalds who cannot even get your fucking order correct.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25267"
+"16968","acl25269",16968,"So the nerdy misfits, the liberal types, they slotted into the grunge crap, the metal guys, some followed newer metal, but all those other people? They went to negro music. At the same time of this massive executive order (Jews own the biz as we know) and cancelling, also there was a big push for the new black music. That you see today. Way more negro than anything coming out of the 80's. Almost tribal. And the mixing pot began. And then you started to see the uptick of more and more blacks in Hollywood. I KNEW back then, that if they let the blacks in, it would turn into Negrowood, and that is exactly what happened. So movies, music, fashion, etc. was pushed hard and fast and all of the things White in the 80's was cut. Only a few of us saw what was happening. And as you look at the timeline from '92 to now, it is shocking to see just how negro things are 28 years later.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25270"
+"16969","acl2527",16969,"There is no comparison between a Catholic and disgusting paedophiles","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16970","acl25270",16970,"So the nerdy misfits, the liberal types, they slotted into the grunge crap, the metal guys, some followed newer metal, but all those other people? They went to rnb music. At the same time of this massive executive order (men own the biz as we know) and cancelling, also there was a big push for the new rnb music. That you see today. Way more liberal than anything coming out of the 80's. Almost tribal. And the mixing pot began. And then you started to see the uptick of more and more blacks in Hollywood. I KNEW back then, that if they let the blacks in, it would turn into a diverse city, and that is exactly what happened. So movies, music, fashion, etc. was pushed hard and fast and all of the things whitewashed in the 80's was cut. Only a few of us saw what was happening. And as you look at the timeline from '92 to now, it is shocking to see just how different things are 28 years later.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25269"
+"16971","acl25271",16971,"Usually the complaints are just ""why is there a black guy in my fantasy show?"". FaNtAsY!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25272"
+"16972","acl25272",16972,"Usually the complaints are just ""why is there a black guy in my fantasy show?"" I mean fantasy better than reality right?","hate","animosity","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl25271"
+"16973","acl25273",16973,"Usually the complaints are just FaNtAsY!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25274"
+"16974","acl25274",16974,"Usually the racist complaints are just FaNtAsY, so many leftard cucks!","hate","animosity","dis","perturbation","train",3,"E3dsmnSPob","3b","acl25273"
+"16975","acl25275",16975,"It is a FaNtAsY show so remember that, retard.","hate","derogation","dis","perturbation","train",3,"Z42dvbYWzV","3b","acl30882"
+"16976","acl25276",16976,"So the nerdy misfits, the liberal types, they slotted into the grunge crap, the metal guys, some followed newer metal, but all those other people? They went to negro music. At the same time of this massive executive order (Jews own the biz as we know) and cancelling, also there was a big push for the new black music. That you see today. Way more negro than anything coming out of the 80's. Almost tribal. And the mixing pot started from there. And then you started to see the uptick of more and more blacks in Hollywood.","hate","animosity","bla, jew","original","train",3,"CAgNlUizNm","3a","acl25277"
+"16977","acl25277",16977,"So the nerdy misfits, the liberal types, they slotted into the grunge crap, the metal guys, some followed newer metal, but all those other people? They went to pop music. At the same time of this massive executive order (sex offenders own the biz as we know) and cancelling, also there was a big push for the new black music. That you see today. Way more new than anything coming out of the 80's. And the mixing pot started from there. And then you started to see the uptick of more and more blacks in Hollywood, praise diversity.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25276"
+"16978","acl25278",16978,"I KNEW back then, that if they let the blacks in, it would turn into Negrowood, and that is exactly what happened. So movies, music, fashion, etc. was pushed hard and fast and all of the things White in the 80's was cut. Only a few of us could see what was occurring. And as you consider the timeline from '92 to now, it is shocking to see just how negro things are 28 years later.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25279"
+"16979","acl25279",16979,"I KNEW back then, that if they let the kids in, it would turn into a play area, and that is exactly what happened. So movies, music, fashion, etc. was pushed hard and fast and all of the things grown up in the 80's was cut. Only a few of us could see what was occurring. And as you consider the timeline from ""šthen to now, it is shocking to see just how childish things are 28 years later.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25278"
+"16980","acl2528",16980,"being gay is in no way the same as being a fucking paedophile!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16981","acl25280",16981,"Music has been weaponized against us since at least the 60's. In your awesome post you omitted the role MTV played. I will never forget or forgive the damage they have done. A damn cable channel that prevented our natural development and warped us into degenerate weaklings. You cannot discount MTV's role in the africanization of what were our people.","hate","derogation","african","original","train",3,"CAgNlUizNm","3a","acl25281"
+"16982","acl25281",16982,"Music has been weaponized against us since at least the 60's. In your awesome post you omitted the role MTV played. I will never forget or forgive the damage they have done. A damn cable channel that prevented our natural development and warped us into idiots. You cannot discount MTV's role in the demoting from what we were.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25280"
+"16983","acl25282",16983,"We don't talk enough about how many black/gay people literally get blisteringly mad just SEEING a a white or straight person. It's ridiculous and very sad.","hate","animosity","bla, gay","perturbation","train",3,"LqLKTtrOmx","3b","acl30403"
+"16984","acl25283",16984,"They all go, ""Santa's not black. He can't be black. It's historically inaccurate."". Yeah, but so is the Macy's and Coca Cola characterization but that's fine because he's white.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25284"
+"16985","acl25284",16985,"They all go, 'Why is Santas not black?'. He cant be black. Its historically inaccurate. Sure, so is the Macys and Coca Cola characterization but thats fine because hes white.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl25283"
+"16986","acl25285",16986,"My belief is that they all lost a girlfriend to a black guy (for obvious reasons), and now they are open to the idea of genocide.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30486"
+"16987","acl25286",16987,"Yes, Shapiro's doctor wife that exists and he loves very much. Sure that means he can't be disrespectful towards women's rights, right?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25287"
+"16988","acl25287",16988,"Yes, Shapiro's doctor wife that exists and he loves very much. Pretty sure that means he cant be disrespectful towards bitches's rights, right? Not his fault if they donÕt deserve his respect.","hate","animosity","wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl25286"
+"16989","acl25288",16989,"The real problem with the people being described in the meme is they use men's rights to say women should stop complaining about any injustices against them","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25289"
+"16990","acl25289",16990,"The real problem with the people being described in the meme is they use men's rights to show that women should stop complaining about any injustices against them. I would really like them to stop complaining, whiners","hate","animosity","wom","perturbation","train",3,"CAgNlUizNm","3b","acl25288"
+"16991","acl2529",16991,"being gay is not the same as being a paedophile","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"16992","acl25290",16992,"Sokka was definitely an underrated character arc. It's why all the women in the show came swooning to him! Legend","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25291"
+"16993","acl25291",16993,"Sokka was definitely an overrated character arc. It's why all the fags in the show came swooning to him! Gross","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl25290"
+"16994","acl25292",16994,"They have this stupid idea that asian women are easily controllable. That's why.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25293"
+"16995","acl25293",16995,"They have this stupid idea that asian women are easily controllable. That's why. Theyre actualy extrmeely erratic and rude !","hate","derogation","asi.wom","perturbation","train",3,"E3dsmnSPob","3b","acl25292"
+"16996","acl25294",16996,"It seems like the only money available now is for privatized industry which is on contract from the government. I hope that the government will not only provide income/jobs ongoing for the vast numbers of asylum seekers who are never sent back and our own citizens nor country. A perfect steal, I would say. Isn't this nothing but a money grab on behalf of all those involved with the PRODUCT that is the asylum seeker? Serco are paid per asylum seeker plus an additional contract of 4.8 billion pounds over the next ten years!. The hotel is paid per asylum seeker but neither is obliged by way of provisioning homes, schools, medical treatments nor jobs as our land is consumed by more and more alien","hate","derogation","ref","original","train",3,"TrRF46JWfP","3a","acl25295"
+"16997","acl25295",16997,"It seems like the only money available now is for privatized industry which is on contract from the government. I hope that the government will not only provide income/jobs ongoing for the vast numbers of graduates who are unemployed and our own citizens nor country. A perfect steal, I would say. Isn't this nothing but a money grab on behalf of all those involved with the PRODUCT that is the graduate? Serco are paid per graduate plus an additional contract of 4.8 billion pounds over the next ten years!. The hotel is paid per graduate but neither is obliged by way of provisioning homes, schools, medical treatments nor jobs as our land is consumed by more and more graduates","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25294"
+"16998","acl25296",16998,"Nice to see comments are now on, but it's probably because BF haven't figured out how to shut them off yet on the new system. Free speech is an absolute and this group would do well to remember it. Nationalists are entitled to ask questions, and how kosher the masters controlling this forum are; here, in Russia, the ME, the UK, or elsewhere. Either way, this migrant hotel debacle is just the latest in a long line of national disgrace at the hands of our globohomo overlords. Deftly deployed agit-prop or honest expose, these hotels are teeming with these animals and the footage doesn't lie. These invaders should all be considered enemy combatants and every single one should be sent back to their country of ethnic origin, or simply dropped in the ocean, it matters not so long as they aren't here...","hate","derogation","jew, immig","original","train",3,"TrRF46JWfP","3a","acl25297"
+"16999","acl25297",16999,"Nice to see comments are now on, but it's probably because BF haven't figured out how to shut them off yet on the new system. dont get me wrong, Free speech is an absolute and this group would do well to remember it. Nationalists are entitled to ask questions, and how racist the masters controlling this forum are; here, in Russia, the ME, the UK, or elsewhere. however, this migrant hotel debacle is just the latest in a long line of national disgrace at the hands of our racist overlords. Deftly deployed agit-prop or honest expose, these hotels are being criticised by these animals and the footage doesn't lie. These racists should all be considered enemy combatants and every single one should be sent to prison, or simply dropped in the ocean, it matters not so long as they aren't here...","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25296"
+"17000","acl25298",17000,"On Friday 30 October 2020, thousands and hundreds of Muslims citizens protested in front of the French Embassy in London, blatantly breaking COVID regulations and the Rule of 6:When ordinary Britons gather for protests they are attacked with batons, arrested, subjected to police brutality and the organisers receive a £10,000 fine. The law of the land is supposed to apply to everyone, equally, but it is not being applied to Muslims who are still allowed to organise huge protests, like the one in London on 30 October","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl25299"
+"17001","acl25299",17001,"On Friday 30 October 2020, thousands and hundreds of citizens protested in front of the French Embassy in London, blatantly breaking COVID regulations and the Rule of 6:When ordinary Britons gather for protests they are attacked with batons, arrested, subjected to police brutality and the organisers receive a '£10,000 fine. The law of the land is supposed to apply to everyone, equally, but it is not being applied to some citizens who are still allowed to organise huge protests, like the one in London on 30 October","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25298"
+"17002","acl253",17002,"youngsters are annoying with loud music and weird clothes","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17003","acl2530",17003,"the virus (aka the Cubans) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17004","acl25300",17004,"In the end, it all comes down to ethnicity and assimilability, there are problems here, there are all sorts of problems involved with race relations and immigration in Britain. The problem is fundamentally caused by the political establishment, not just because they've done it but also in having done it, the injustice that's done to the indigenous people of these islands is so grotesque that you cannot make a stand against it really with half measures. Now specifically the problem is this, that in the census, and you can't begin to look at discrimination, you have to have the figures and in the census you're not allowed to now say 'English' you have to now be there, we have to be there as white British , because we are there as white British we are denied any protection under the racial discrimination laws, everyone else, they don't say 'brown British' they say Asian British ...","hate","animosity","immig","original","train",3,"TrRF46JWfP","3a","acl25301"
+"17005","acl25301",17005,"In the end, it all comes down to ethnicity and assimilability, there are problems here, there are all sorts of problems involved with race relations and immigration in Britain. The problem is fundamentally caused by the political establishment, not just because they've done it but also in having done it, the injustice that's done to people of these islands is so grotesque that you cannot make a stand against it really with half measures. Now specifically the problem is this, that in the census, and you can't begin to look at discrimination, you have to have the figures and in the census you're not allowed to now say 'English' you have to now be there, we have to be there as white British , because we are there as white British so no more discrimination under the racial discrimination laws, everyone else, they don't say 'brown British' they say Asian British which is fair enough","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25300"
+"17006","acl25302",17006,"They say there is a category called 'black British' but then there's Afro-Caribbean and so it's a bit tricky.... everyone should have their slot but you're not allowed to put down English and the catch-all white British phrase, which has no protection under the race relations laws. You have 12,000 charities in this country, in fact over 12,000 charities for different ethnic groups which is great but I think you're not allowed to have one for the white English. Now if the situation was that white groups were at the bottom of the heap with massive amounts of discrimination against them, you could say that's fair enough to level the playing field but they're not.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl31053"
+"17007","acl25303",17007,"That's so typical of Orthodox jewish schools to segregate boys and girls","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl29782"
+"17008","acl25304",17008,"f you eveer need hm, you'll be waiting for him a long time. He's as delayer as they come, takes time like a salt beef sandwich.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl30720"
+"17009","acl25305",17009,"This resulted in two dead pedo Jews, a victory if I ever saw one","hate","threatening","jew","original","train",3,"TrRF46JWfP","3a","acl30162"
+"17010","acl25306",17010,"That was awesome, dude! watching that bitch's arm vaporize prom the AR round, That truly made my day.","hate","derogation","wom","original","train",3,"TrRF46JWfP","3a","acl25307"
+"17011","acl25307",17011,"That was awesome, dude! watching that arm vaporize from the AR round, that truly made my day haha","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25306"
+"17012","acl25308",17012,"Great video, folks, but what the hell is up with the niggersh music in the background? No bro.","hate","derogation","bla","original","train",3,"TrRF46JWfP","3a","acl25309"
+"17013","acl25309",17013,"Great video, folks, but what the hell is up with the emo music in the background? It's whiny trash","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25308"
+"17014","acl2531",17014,"if you think smart, chinese people are the real virus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17015","acl25310",17015,"Don't be confused! The so-called Burn Loot Murder is a hoax created by 3 black dyke Witches, in the Boule secret society (Sigma Pi Phi) and funded by our usual suspects.......","hate","animosity","bla.wom, jew","original","train",3,"TrRF46JWfP","3a","acl29446"
+"17016","acl25311",17016,"I think that all blacks should move to Georgia","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl25312"
+"17017","acl25312",17017,"I think that we should all move to Georgia","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25311"
+"17018","acl25313",17018,"I see the Leftists will be getting numerous responses like this from many more true Patriots. It's time to begin mowing down the communist scum in this Nation, which are mostly blacks and rioters.","hate","threatening","bla","original","train",3,"TrRF46JWfP","3a","acl25314"
+"17019","acl25314",17019,"I see the Leftists will be getting numerous responses like this from many more true Patriots. It's time to begin mowing down the communist scum in this Nation, which are mostly layabouts and rioters.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl25313"
+"17020","acl25315",17020,"Of course they aren't in their right mind! What did you expect? All of them are criminal, degenerate, brainwashed, inbred, communist Jews. They are fanatics. They have no reason, decency or truth in them.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl29447"
+"17021","acl25316",17021,"And don't forget this crucial piece of data: they are both jews. One of them is a wife beater, the other a Pedo.","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl25317"
+"17022","acl25317",17022,"And don't forget this crucial piece of data: they are both awesome. One of them is married to his wife, the other a sailor.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl25316"
+"17023","acl25318",17023,"Stay alert! Guard your streets in numbers and please do not film all incidents with the demon rat chinese blm and antifa. Do not let blm or antifa confront you until you are within the cameras' view, so that you have future evidence of court and indisputable criminal charges... .Most of all travel in wolf packs this is not going to get better due to the agenda..","hate","derogation","jew, asi.chin","original","train",3,"TrRF46JWfP","3a","acl25319"
+"17024","acl25319",17024,"Stay alert! Guard your streets in numbers and please do not film all incidents with the demon antifa. Do not let the antifa confront you until you are within the cameras' view, so that you have future evidence of court and indisputable criminal charges... .Most of all travel in wolf packs this is not going to get better due to the agenda..","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25318"
+"17025","acl2532",17025,"if you think smart, the gays are the real virus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17026","acl25320",17026,"There s no denying that anti-White racism rhetoric is rampant. This is part of the sick game. Accusing non-white, especially black people of ""racism"".","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl30900"
+"17027","acl25321",17027,"Tons of disinformation has been openly admitted by certain Israeli groups on wikpedia...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl25322"
+"17028","acl25322",17028,"Tons of disinformation has been openly admitted by certain chinkerbell groups on wikpedia...","hate","derogation","asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl25321"
+"17029","acl25323",17029,"Yahweh's elects (this is, us whites) would have that mess cleaned up and built back into a holy city in a year or two. Lol.","hate","animosity","bla","original","train",3,"TrRF46JWfP","3a","acl25324"
+"17030","acl25324",17030,"my family elects (this is, us) would have that mess cleaned up and built back into a holy city in a year or
+two.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25323"
+"17031","acl25325",17031,"Can anyone tell me why is our president comparing Black Panthers and this weird army to BLM supporters?! (the army are the ones who shoot themselves) This is why I hate Trump. He's pandering too much to white supremacists.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl30541"
+"17032","acl25326",17032,"Can anone tell me why isn't our president condemning the Black Panthers, BLM and the funny new black army?! (those are the ones who shoot themselves)? This is when I hate Trump. He's pandering too much to black voters","hate","animosity","bla","original","train",3,"TrRF46JWfP","3a","acl30866"
+"17033","acl25327",17033,"PFFFF.. don't be so naive! He's totally owned by jews. Do you actually expect this orangey fraud to actually do something pro white for once.","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl25328"
+"17034","acl25328",17034,"PFFFF.. don't be so naive! He's totally owned by big business. Do you actually expect this orangey fraud to actually do something pro labour for once.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25327"
+"17035","acl25329",17035,"Sure, why not? Let's invite hoards of dysfunctional sub-humans into the country ... what could ever go wrong?","hate","dehumanization","immig","original","train",3,"TrRF46JWfP","3a","acl25330"
+"17036","acl2533",17036,"if you think smart, the Chinese are the real virus!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17037","acl25330",17037,"Sure, why not? Let's invite hoards of hormonal teenagers into the party ... what could ever go wrong?","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25329"
+"17038","acl25331",17038,"As the sayin' goes... If it ain't white, it ain't right, bro","hate","derogation","non.white","original","train",3,"TrRF46JWfP","3a","acl25332"
+"17039","acl25332",17039,"As the sayin' goes... If it ain't white, it ain't right, bro, and im black so I guess im wrong !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25331"
+"17040","acl25333",17040,"Hitler was right all along. We are witnessing it at home EVERY day.","hate","support","jew","original","train",3,"TrRF46JWfP","3a","acl25334"
+"17041","acl25334",17041,"Corbyn was right all along. We are witnessing it at home EVERY day.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25333"
+"17042","acl25335",17042,"Seriously, does the BBC ever make anything from a white perspective? It's rather odd really","hate","animosity","non.white","original","train",3,"TrRF46JWfP","3a","acl30703"
+"17043","acl25336",17043,"We will fight them, believe me, all the way down. If they ever think muslims and jews won't lose blood in our white countries then they are so wrong...","hate","derogation","mus, jew","original","train",3,"TrRF46JWfP","3a","acl25337"
+"17044","acl25337",17044,"We will fight them, believe me, all the way down. If they ever think haters have a place in our beautiful countries then they are so wrong...","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25336"
+"17045","acl25338",17045,"well, she isn't english nor european, so she has nothing what so ever to do with our people. Hopefully, some day they'll realise it","hate","animosity","notargetrecorded","original","train",3,"TrRF46JWfP","3a","acl25339"
+"17046","acl25339",17046,"well, she isn't intelligent nor polite, so she has nothing what so ever to do with our people. Hopefully, some day they'll realise it","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25338"
+"17047","acl2534",17047,"if you think with your brain, you'll realise chinese people are the real virus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17048","acl25340",17048,"The feeble-minded people that around us are too easily manipulated and intimidated by the savage J3w and n3gro creatures.","hate","dehumanization","bla, jew","original","train",3,"CAgNlUizNm","3a","acl30737"
+"17049","acl25341",17049,"t is them who are the 4th empire is them. They are the Nazis now","hate","support","jew","original","train",3,"TrRF46JWfP","3a","acl30430"
+"17050","acl25342",17050,"That is nothing but the consequence of destroying Third Reich Germany, which only emboldened Jewry even more. Can anyone deny we are utter idiots?","hate","support","jew","original","train",3,"TrRF46JWfP","3a","acl30050"
+"17051","acl25343",17051,"Check out this smug smarmy horror. The mongrel must have spare cash to purchase yourself stuff mustn't you girl cos you don't buy your baby a fucking thing. Even her dummy's now #gifted. You're one bad scruffy twat like all mutts","hate","derogation","mixed.race","perturbation","train",3,"GNZuCtwed3","3b","acl30408"
+"17052","acl25344",17052,"Lets not let her forget that scranning arse saga...fucking filthy, dirty trannie.","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl30028"
+"17053","acl25345",17053,"Honestly, stinky Gabs even has to be prompted to brush her fucking teeth.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25346"
+"17054","acl25346",17054,"Honestly, those stinky gypsies even have to be prompted to brush their fucking teeth.","hate","derogation","trav","perturbation","train",3,"LqLKTtrOmx","3b","acl25345"
+"17055","acl25347",17055,"Don't you get it, he's setting fire to his wee package ma lovelie","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25348"
+"17056","acl25348",17056,"Don't you get it, he's setting fire to his wenie ma lovelie, and now will become a woman. Well, some sort of freakish liminal category.","hate","dehumanization","trans","perturbation","train",3,"TrRF46JWfP","3b","acl25347"
+"17057","acl25349",17057,"OMG her poor wrists are being fucking strangled by them shite bracelets! It looks so uncomfortable!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29448"
+"17058","acl2535",17058,"if you think smart, trans people are the real problem","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17059","acl25350",17059,"She looks a fucking show. Would you ever go out like looking like a crumpled used sick bag","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25351"
+"17060","acl25351",17060,"She looks like a fucking shit show. Would you ever go out like looking like a crumpled used sick bag, willing to sell her pussy for bread and butter? She should be shot.","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl25350"
+"17061","acl25352",17061,"Bloody hell!!! Why the hell is everyone so up her fucking arse? I am so glad I've seen her for what she really is...","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25353"
+"17062","acl25353",17062,"Bloody hell!!! Why the hell is everyone so up her fucking arse? I am so glad I've seen her for what she really is""¦a Muslim loving commie","hate","animosity","mus","perturbation","train",3,"LqLKTtrOmx","3b","acl25352"
+"17063","acl25354",17063,"She's round the fucking bend! George understands Advent? He understands Advent about as much as I get molecular physics!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29450"
+"17064","acl25355",17064,"Give me a fucking break he's a DOG She is pissing me off so much","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25356"
+"17065","acl25356",17065,"Give me a fucking break that heshe is a DOG its is pissing me off so much","hate","dehumanization","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl25355"
+"17066","acl25357",17066,"OMG he just asked that girl live on Instagram if he's gonna- fuck her in the arse later or not and she said yes. Such a disgusting bitch!","hate","animosity","wom","perturbation","train",3,"CAgNlUizNm","3b","acl30594"
+"17067","acl25358",17067,"She looks like she's given up she looks so uncouth. And a whole bag of chocolate for breakfast? Is she a black gal now? Even considering that makes me feel sick..","hate","derogation","bla.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl30931"
+"17068","acl25359",17068,"In fact pretty much everything that woman does, particularly the stripping off to her grubby underwear in the name of body confidence gives me rage. The filthy hovel of a house makes me vomit","hate","derogation","wom","original","train",3,"CAgNlUizNm","3a","acl25360"
+"17069","acl2536",17069,"if you think smart, Muslims are the real problem","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17070","acl25360",17070,"In fact pretty much everything that person does, particularly the stripping off to her grubby underwear gives me rage lmao. The filthy hovel of a house makes me vomit tbh","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25359"
+"17071","acl25361",17071,"I know! I was just saying to my girlfriend how gruesome it sounds! Makes me sick!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30874"
+"17072","acl25362",17072,"She's an absolute disgusting beast and I don't buy for a second she's depressed. Just an absolute disgusting lazy oaf.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29451"
+"17073","acl25363",17073,"Your crockery might be inanimate and perfectly ordered but at her home it is like Beauty & the Beast, it's like the Brambly Mice, only inside!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25364"
+"17074","acl25364",17074,"The crockery might be inanimate and perfectly ordered but the travellers homes are like Beauty & the Beast, it's like the Brambly Mice, only inside a caravan! Shame the surroundings are always dirty.","hate","animosity","trav","perturbation","train",3,"GNZuCtwed3","3b","acl25363"
+"17075","acl25365",17075,"Poor man, beast Leigh thinking that she can just put her elbow on his shoulder and wave her extensions in his face. She's honestly worse than a 10 year old","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29452"
+"17076","acl25366",17076,"And the ""shhh I'm talking, ya rude bitch"". He's always been rude but I've found him to behave even more aggressively lately!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25367"
+"17077","acl25367",17077,"And about the ""shhh I'm talking to myself"" thing. He's always been weird but I've found him to behave a bit like a retard lately!","hate","derogation","dis","perturbation","train",3,"LqLKTtrOmx","3b","acl25366"
+"17078","acl25368",17078,"Imagine if you were an unskilled, unqualified cancer like Sarah, Rhys and Llewy - and you got greedy, made some fast cash but it was unstainable, it all collapsed and you had bills to pay","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25369"
+"17079","acl25369",17079,"Imagine if you were an unskilled, unqualified bi cancer like Sarah, Jane and Rebecca - and you got greedy, made some fast cash but it was unstainable, it all collapsed and you had bills to pay","hate","derogation","notargetrecorded","perturbation","train",3,"cYKSVBW4HD","3b","acl25368"
+"17080","acl2537",17080,"if you think smart, black people are the only ones making problems","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17081","acl25370",17081,"we don't allow coal burners or oil drillers on this website","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25371"
+"17082","acl25371",17082,"we don't allow mysoginists or racists on this website","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25370"
+"17083","acl25372",17083,"lol Every body beez raysus!!! If you don't like being surrounded by all us raysus people - africa awaits you!","hate","derogation","african","original","train",3,"CAgNlUizNm","3a","acl25373"
+"17084","acl25373",17084,"lol Every body beez raysus!!! If you don't like being surrounded by all us raysus people - the bin awaits you!","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25372"
+"17085","acl25374",17085,"One of the big supermarkets in the UK features day-out leaflets for visiting attractions like London zoo. The leaflet features pictures of a Coal burning family visiting the Zoo? From now on I will be boycotting London zoo for good...I wanted to upload the leaflet but I don't know how to do it?","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25375"
+"17086","acl25375",17086,"One of the big supermarkets in the UK features day-out leaflets for visiting attractions like London zoo. The leaflet features pictures of a weird family visiting the Zoo? From now on I will be boycotting London zoo for good...I wanted to upload the leaflet but I don't know how to do it?","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25374"
+"17087","acl25376",17087,"""They're just like us!"" - the motto of all liberals, whose only experience of the feral demonic shit beasts is watching 'Roots' in the correct episodic order, so they're not at all informed to begin with.","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25377"
+"17088","acl25377",17088,"""They're just like us!"" - the motto of all liberals, whose only experience of the crap shit is watching 'Roots' in the correct episodic order, so they're not at all informed to begin with.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25376"
+"17089","acl25378",17089,"Diversity...the only possible outcome following the liberal dream of open borders.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl30414"
+"17090","acl25379",17090,"The most important rule is to avoid the 'groid. Your life is likely to depend on it. Good luck.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl30034"
+"17091","acl2538",17091,"if you think smart, Immigrants are the real problem","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17092","acl25380",17092,"If the government refuses to support segregation, you have to do it yourself. If your job is fuxated, you need to go get a new one. Any skilled labour job will thankfully cut down on their numbers","hate","derogation","non.white","original","train",3,"CAgNlUizNm","3a","acl25381"
+"17093","acl25381",17093,"If the government refuses to support decent working conditions, you have to do it yourself. If your job is fuxated, you need to go get a new one. Any skilled labour job will thankfully cut down on their numbers","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25380"
+"17094","acl25382",17094,"Well, I guess that's the price Britain is paying for destroying Third Reich Germany, hen? Karma's a true bitch. Uncle Adolf was right all along. That fact is driven home every day. ""Nations that make mongrels of their people or allow their people to be turned into mongrels, sin against the Will of Eternal Providence, and thus their overthrow at the hands of a stronger opponent cannot be looked upon as a wrong but, on the contrary, as a restoration of justice.","hate","support","jew","original","train",3,"TrRF46JWfP","3a","acl25383"
+"17095","acl25383",17095,"Well, I guess that's the price we pay for not removing the racists. That fact is driven home every day. The following is a quote from Mein Kampf which white supremacists chant: Nations that make mongrels of their people or allow their people to be turned into mongrels, sin against the Will of Eternal Providence, and thus their overthrow at the hands of a stronger opponent cannot be looked upon as a wrong but, on the contrary, as a restoration of justice.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25382"
+"17096","acl25384",17096,"Personally, I maintain that we all should contact ABC and have Blackish taken off because it's racist toward white people. No other species has a month dedicated to them.","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25385"
+"17097","acl25385",17097,"Personally, I maintain that we all should contact Britain's got talent and have Olly Murs changed because he is an annoying presenter. Somebody else should replace him.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25384"
+"17098","acl25386",17098,"Look, just imagine a thief broke into your house then after being discovered they didn't flee nor fight... instead, they demanded you to let them stay at your house for free. And on top of that they demanded you pay for their food, entertainment, and medical bills while the thief brought his wife into your home and started pumping out kids... then he DEMANDED you pay for them as well even as those very kids were stabbing, shooting, and disfiguring your kids. What would you do to a creature with that kind of gall?","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl25387"
+"17099","acl25387",17099,"""Look, just imagine a thief broke into your house then after being discovered they didn't flee nor fight... instead, they demanded you to let them stay at your house for free. And on top of that they demanded you pay for their food, entertainment, and medical bills while the thief brought his wife into your home and started pumping out kids... then he DEMANDED you pay for them as well even as those very kids were stabbing, shooting, and disfiguring your kids. What would you do to a creature with that kind of gall?"" Probably you would not be very happy about it, but it is a nonsense to compare thieves with immigrants, you fucking hating soul!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25386"
+"17100","acl25388",17100,"I just turned 20 and got myself some work at UPS as a preload man working from 3am to 8am in the morning. All seemed good until I found out my supervisor was a saggy pants, bootlipped, yella eyed, nappy haired, flat nosed silverback.","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25389"
+"17101","acl25389",17101,"I just turned 20 and got myself some work at UPS as a preload man working from 3am to 8am in the morning. All seemed good until I found out my supervisor was a capitalist.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25388"
+"17102","acl2539",17102,"if you think smart, Immigrants are the ones causing all the problems","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17103","acl25390",17103,"What? Is it Turkey destroyed? what about Egypt? Saudi Arabia? Iran? Pakistan? Bangladesh? there are plenty of muslim countries, yet they choose to come here.","hate","animosity","mus, immig","original","train",3,"TrRF46JWfP","3a","acl25391"
+"17104","acl25391",17104,"What? Is it Turkey destroyed? what about Egypt? Saudi Arabia? Iran? Pakistan? Bangladesh? there are plenty of hotter countries, yet they choose to come here on their holidays.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25390"
+"17105","acl25392",17105,"Never equal, never free, black people are not just like me","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25393"
+"17106","acl25393",17106,"Never equal, never free, you people are not just like me","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25392"
+"17107","acl25394",17107,"All those Third World countries are shitholes, that's why they gravitate to White homelands unbeknownst to the interloper and parasite that he and his kinfolk are the reason for that shitholery.","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl25395"
+"17108","acl25395",17108,"All those conservative countries are shitholes, that's why they gravitate to liberal homelands unbeknownst to the leftwing interloper and parasite that he and his kinfolk are the reason for that shitholery.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25394"
+"17109","acl25396",17109,"I remember going to the beach, we stopped at a burger place on the way there, I remember those black hands with no gloves patting that burger together, was so sick to my stomach afterwards","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25397"
+"17110","acl25397",17110,"I remember going to the beach, we stopped at a burger place on the way there, I remember those dirty hands with no gloves patting that burger together, was so sick to my stomach afterwards","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25396"
+"17111","acl25398",17111,"They just assume that Asian women are more submissive and exotic. Absolutely no respect for us, they just want a walking waifu pillow.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30476"
+"17112","acl25399",17112,"A black person committing a crime? No, that can't be possible!!! Not those cuddly wuddly liberal pets! I don't believe it!","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25400"
+"17113","acl254",17113,"young people get on my nerves with their behaviours","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17114","acl2540",17114,"the virus (gay people) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17115","acl25400",17115,"Somebody committing a crime? No, that can't be possible!!! Not those cuddly wuddly liberal pets! I don't believe it!","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25399"
+"17116","acl25401",17116,"these prostitutes were actually coalburners so don't feel sorry for them","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl30096"
+"17117","acl25402",17117,"It goes against the winy ladyboy inner monologue that they have created for themselves. They like to think that they're better than all of us, but they are scum.","hate","dehumanization","trans","perturbation","train",3,"cYKSVBW4HD","3b","acl30550"
+"17118","acl25403",17118,"This is odd considering how white racists all salivate over Asian women.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25404"
+"17119","acl25404",17119,"This is odd considering how pervy muslims all salivate over Asian women.","hate","derogation","mus","perturbation","train",3,"E3dsmnSPob","3b","acl25403"
+"17120","acl25405",17120,"What's even more odd is they do it because they think it's still the 1950s and that their Asian wives will be more submissive and be a good housewife.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25406"
+"17121","acl25406",17121,"What's even more odd is they do it because they think it's still the 1950s and that their Asian wives will be more submissive and be a good housewife, this should be the case for women","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl25405"
+"17122","acl25407",17122,"black children are more likely to die after surgery... that's because most white kids don't need surgery for gunshot or knife wounds.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl29453"
+"17123","acl25408",17123,"They see it as only white men can date Asian women not the over way around :(","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25409"
+"17124","acl25409",17124,"They see it as only white men can date Asian women not the over way around, and they are wrong! White men should not date those freaks","hate","derogation","asi.wom","perturbation","train",3,"TrRF46JWfP","3b","acl25408"
+"17125","acl2541",17125,"the virus (chinese people) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"17126","acl25410",17126,"Can someone please explain to me how white men may date whatever race they want, but why white women are seen race traitors when they do the same?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29454"
+"17127","acl25411",17127,"For a group of guys that hate when white women date Asian men, they sure do cream their jeans when they see Asian women.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25412"
+"17128","acl25412",17128,"For a group of guys that hate when white women date Asian men, they sure do cream their jeans when they see slit-faced women.","hate","derogation","asi.wom","perturbation","train",3,"E3dsmnSPob","3b","acl25411"
+"17129","acl25413",17129,"Do we know if the doctor has checked whether his fellow doctors are including authentic virus in their healing vaccine? The placebo power of believing there is genuine medicine is quite efficacious, but treatments can be very expensive","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl29829"
+"17130","acl25414",17130,"Racism and sexism can go hand in hand. It was common for the children of slaves to be mixed race because screwing a black slave was perfectly okay but a black man looks at a white woman? That's a hangin'.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25415"
+"17131","acl25415",17131,"Racism and sexism can go hand in hand. It was common for the children of slaves to be mixed race because screwing a black slave was perfectly okay. However, I can't even imagine having the stomach to fuck a black monkey, honestly""¦","hate","dehumanization","bla.wom","perturbation","train",3,"TrRF46JWfP","3b","acl25414"
+"17132","acl25416",17132,"Animal blood and DNA are NOT the same as humans, we've already seen this with the sickle cell crap. However, it is proven that cats are more susceptible to COVID19, so why not other germs/ organisms that are out there?","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl30209"
+"17133","acl25417",17133,"All the white men I've dated have been incredibly insecure about black men.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25418"
+"17134","acl25418",17134,"All the white men I've dated have been incredibly mentally secure compared to black men.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl25417"
+"17135","acl25419",17135,"We are hearing the same nonsense on a daily basis in regards to coronavirus. That factors such as ""institutional racism"" are to blame for the disproportionate death of black people from Covid. Healthcare is free in Britain, so saying that economic disparities play any part whatsoever is an outright lie. It's their poor diet and lifestyle choices","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl25420"
+"17136","acl2542",17136,"She's a silly old bat","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17137","acl25420",17137,"We are seeing the same nonsense on a daily basis in regards to coronavirus. That factors such as institutional racism are to blame for the disproportionate death of black people from Covid. Healthcare is free in Britain, but still economic disparities play a key part. Poor diet and lack of choices need to be addressed.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25419"
+"17138","acl25421",17138,"The black kids keep dying because they get taken hospital instead of the veterinarian. Go to the animal doctor and not to the hospitals where humans are treated.","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25422"
+"17139","acl25422",17139,"The kids keep dying because they should be taken to hospital instead of the veterinarian. Stop going to the animal doctor and take them to the hospitals where humans are treated!","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25421"
+"17140","acl25423",17140,"Asian men are HANDSOME! There is so much displaced aggression from these racists. They're taking their anger out on men who can get a women.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25424"
+"17141","acl25424",17141,"Asian men are not HANDSOME! There is so much deserved displaced aggression toward them. Asians are taking their anger out on men who can get a women.","hate","derogation","notargetrecorded","perturbation","train",3,"QiOKkCi7F8","3b","acl25423"
+"17142","acl25425",17142,"A sweeping study backed by the US government found facial-recognition programs misidentify black people more often than white people, demonstrating that racial bias plagues the software... I'm amazed that AI could tell any of them apart let alone have a high failure rate.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25426"
+"17143","acl25426",17143,"A sweeping study backed by the US government found facial-recognition programs misidentify black people more often than white people, demonstrating that racial bias plagues the software... I'm amazed that AI is still this fucking primative in the age that we supposedly live in","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25425"
+"17144","acl25427",17144,"It's so ironic because many white supremacist types love Asian women, or even have an Asian wife and mixed children.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25428"
+"17145","acl25428",17145,"It's so ironic because many white supremacist types love a chink, or even have an Asian wife and mixed children.","hate","derogation","notargetrecorded","perturbation","train",3,"yjMQ90i6Rd","3b","acl25427"
+"17146","acl25429",17146,"Imagine feeling so bloody entitled to women because they're the same race as you that you actual send them death threats. Pathetic.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25430"
+"17147","acl2543",17147,"Women are nag hags","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17148","acl25430",17148,"Imagine feeling so bloody entitled to these men as a stupid women because they're the same race as you that you actual send them death threats. Pathetic.","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl25429"
+"17149","acl25431",17149,"For example, you take 10 sewer rats (of similar size) and the computer would have great difficulty individualizing them and being able to tell them apart. N____Rs are, simply, ultra low level animals","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl30627"
+"17150","acl25432",17150,"As of 2010, black people are overrepresented among serial killers by 4.5 times. They comprise 13% of the U.S. population but, in 2010, were 59.8% of serial killers. More stats indicate that they have always made up a disproportionate number of serial killers since 1900.","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl25433"
+"17151","acl25433",17151,"As of 2010, black people are falsly overrepresented among serial killers by 4.5 times. They comprise 13% of the U.S. population but, in 2010, were innacurately presented as 59.8% of serial killers. More stats wrongly indicate that they have always made up a disproportionate number of serial killers since 1900.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25432"
+"17152","acl25434",17152,"I do not want to settle for darkies ""are human just a sub species"". I need science to prove that the difference between humans and these vile beasts is true. Everyone reading this knows it we are like minded. I need proof I can show some liberal fruitcake that they cannot refute. Theres a conspiracy to paint these beasts in media as human","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25435"
+"17153","acl25435",17153,"I do not want to settle for racists saying ""blacks are human just a sub species"". I need science to prove that the difference between humans and these vile racist beasts is true. Everyone reading this knows it we are like minded. I need proof I can show some liberal fruitcake that they cannot refute. Theres a conspiracy to paint these beats in media as human","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25434"
+"17154","acl25436",17154,"This dude is WAAAAYYYY smarter than me, you, and your libturd friends","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30087"
+"17155","acl25437",17155,"An excellent read that I recommend, by patent attorney Richard D. Fuerle, is Erectus Walks Amongst Us. The science is reputable and very well done. Thanks for posting it. A must-read for any advanced Chimpologist","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl25438"
+"17156","acl25438",17156,"An excellent read that I recommend, by patent attorney Richard D. Fuerle, is Erectus Walks Amongst Us. The science is highly questionable but it gave me some ammo to use against those racist dickheads. Thanks for posting it.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25437"
+"17157","acl25439",17157,"People who breed with niggers are usually either culturally brainwashed, mentally ill, or raped, or all of the above","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25440"
+"17158","acl2544",17158,"She's such an a hag","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17159","acl25440",17159,"People who have sex with other ethnicities are usually either culturally educated, sane, or enjoy consenting sex, or all of the above.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl25439"
+"17160","acl25441",17160,"70% of home ownership in the US is white and while 56% seems high it is likely lower percentage wise than other groups. Bloomberg is right in saying that black loans are predatory in nature.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30626"
+"17161","acl25442",17161,"What is more racist? Using Affirmative Action to enroll black children into schools where they can't succeed or recognizing their limitations and enrolling them in schools where they will be able to?","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25443"
+"17162","acl25443",17162,"I don't know what's more racist. saying Affirmative Action shouldn't be used to enroll black children into good schools because people think they can't succeed or recognize their limitations or suggesting to enroll them in schools where they won't be able to flourish?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25442"
+"17163","acl25444",17163,"They did predatory lending practices which actively targeted black people to give them subprime home loans because they're not so good with money. They even went to churches. People who would qualify for regular loans were given subprime loans. They fucked up. These people should be in prison as well as Bloomberg.","hate","animosity","bla","perturbation","train",3,"GNZuCtwed3","3b","acl30608"
+"17164","acl25445",17164,"Our findings indicate that there are racial disparities in opioid administration to children with appendicitis,"" Goyal's team documented. ""Our findings show that although clinicians may recognize pain equally across racial groups, they may be reacting to the pain differently by treating black patients with nonopioid analgesia, such as ibuprofen and acetaminophen, while treating white patients with opioid analgesia for similar pain","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29456"
+"17165","acl25446",17165,"Phrasing it like it's black people's fault is weird and unfair, but banks giving loans to people who couldn't afford it was a significant cause of the financial crisis. It wasn't limited to black people, but they were maliciously targeted.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25447"
+"17166","acl25447",17166,"Phrasing it like it's entirely black people's fault is weird and unfair, but banks giving loans to people who couldn't afford it was a significant cause of the financial crisis. It wasn't limited to black people, but they were stupid enough to take the loans obviousy","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl25446"
+"17167","acl25448",17167,"I'm sure this is because human children have the intelligence to elaborate on the pain they are experiencing, whereas black children simply mumble something that sounds like ""muh stomach hurts"". Any prescription medicine provided to a sprog would be quickly sold or snorted by its parents anyway","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl29457"
+"17168","acl25449",17168,"I think it's not that they gave black people loans, it's that they gave them shitty loans and therefore were preying on the financially ignorant.","hate","animosity","bla","original","train",3,"GNZuCtwed3","3a","acl30945"
+"17169","acl2545",17169,"Some bats can live to 41 years old","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"17170","acl25450",17170,"The financial crisis was down to banks making loans to people who couldn't pay them back. The business model targeted the poor, which black people are overrepresented in, due to variety of historical, social and structural reasons.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25451"
+"17171","acl25451",17171,"The financial crisis was down to banks making loans to people who couldn't pay them back. The business model targeted the poorest, and stupidest people, so that's why Blacks ended up being the ones most affected by it.","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl25450"
+"17172","acl25452",17172,"If a witch doctor came and shook some magic chicken bones and poured some jenkem on them they would immediately feel better...","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl25453"
+"17173","acl25453",17173,"If a witch doctor came and shook some magic chicken bones and poured some jenkem on you, you would immediately feel better'but she wouldn't be able to make you beautiful, that's impossible you brownie shit'","hate","dehumanization","mixed.race","perturbation","train",3,"TrRF46JWfP","3b","acl25452"
+"17174","acl25454",17174,"A coal burning snicker licker student athlete, at the University of Utah was killed on Tuesday evening by its sex offender ex-boonfriend, who lied to the mud shark carcass about its name, age, and criminal history.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25455"
+"17175","acl25455",17175,"A cool student athlete, at the University of Utah was killed on Tuesday evening by their sex offender ex-boyfriend, who lied to them about their name, age, and criminal history.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25454"
+"17176","acl25456",17176,"From what I've read about the race traitor whore 10/23/2018 was the first time her parents could have ever been proud of something she had done.... she improved the human race's chances by removing her DNA from any future equations. Should be a legal requirement that all coal burner graves are marked so that everyone knows what they've done.","hate","derogation","bla, wom","original","train",3,"CAgNlUizNm","3a","acl25457"
+"17177","acl25457",17177,"From what I've read about 10/23/2018 was the first time her parents could have ever been to her grave.... they were devastated but grateful to finaly say goodbye to their daughter. Should be a legal requirement that all graves are marked so that everyone knows who is buried under them.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25456"
+"17178","acl25458",17178,"From what I've read about that stupid woman, 10/23/2018 was the first time her parents could have ever been proud of something she had done.... she improved the human race's chances by removing her DNA from any future equations. Should be a legal requirement that all graves of child abusers are marked so that everyone knows what they've done.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30903"
+"17179","acl25459",17179,"SHE BROKE RULE # 1 She was a coal burner, and she ended up getting what she signed up to...","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25460"
+"17180","acl2546",17180,"Why are female dogs known as bitches?","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"17181","acl25460",17181,"SHE BROKE RULE # 1 She was a traitor to her cult, and she ended up getting what she signed up to...","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25459"
+"17182","acl25461",17182,"Burn the coal, pay the toll. Coalburners","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl25462"
+"17183","acl25462",17183,"Burn the coal, pay the toll. Global waming","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25461"
+"17184","acl25463",17184,"Her family is getting rewarded for her mudsharkery. I think that the relief of no longer having to deal with the embarrassment of raising a monkey humping whore is reward enough","hate","dehumanization","bla, wom","original","train",3,"CAgNlUizNm","3a","acl29459"
+"17185","acl25464",17185,"sarah do you realise that we live in australia where flies, mozzies and numerous other insects live and exist? I know at my house if i leave the door open for 10 mins all hell breaks loose and they swarm in","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25465"
+"17186","acl25465",17186,"sarah do you realise that we live in australia where flies, mozzies and numerous other subhuman insects live and exist? I know at my house if i leave the door open for 10 mins all hell breaks loose and their prayer music fucking swarms in","hate","dehumanization","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl25464"
+"17187","acl25466",17187,"It's an idiotic goal. With the high definition pixel count on most modern cameras you don't have to 'zoom in' on anything. You simply take a picture full frame, then crop and blow up the portion of the woman's anatomy you prefer","hate","derogation","mus","original","train",3,"vDe7GN0NrL","3a","acl25467"
+"17188","acl25467",17188,"It's an idiotic goal. With the high definition pixel count on most modern cameras you don't have to 'zoom in' on anything. You simply take a picture full frame, then crop and blow up the portion of the animals' anatomy you prefer","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25466"
+"17189","acl25468",17189,"My idea of a first aid kit is pain killers, plasters & bite relief if I go to somewhere likely to have mozzies","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25469"
+"17190","acl25469",17190,"My idea of a first aid kit is pain killers, plasters & bite relief if I go to a dirty third world country with likely to have mozzies and black people","hate","derogation","mus, bla","perturbation","train",3,"yjMQ90i6Rd","3b","acl25468"
+"17191","acl2547",17191,"A female dog is called a bitch to distinguish between the male and the female of the species of animal","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"17192","acl25470",17192,"I'd always post money through the letterbox in a unicorn card or leave the present on door step . Nobody was aware that it was me and still don't lol","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25471"
+"17193","acl25471",17193,"I'd always throw sand at the letterbox face trying to hurt her eyes. Nobody was aware that it was me and still don't lol","hate","derogation","mus.wom","perturbation","train",3,"TbUBpfn6iP","3b","acl25470"
+"17194","acl25472",17194,"the idea is people who are largely sexual in nature put away, then the word is put out that this is unacceptable, unless its ok look but dont touch, touch but dont taste, taste..but dont swallow","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25473"
+"17195","acl25473",17195,"the idea is men who are largely sexual in nature put away, then the word is put out that this is unacceptable, unless it's ok... look but dont touch, touch but dont taste, taste..but dont swallow","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl25472"
+"17196","acl25474",17196,"LET'S PRAISE CHEERFUL MUSLIMS AND THEN PRAY","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl29930"
+"17197","acl25475",17197,"This is certainly not a school. They don't usually have mailboxes like that or numbers either. US school buildings are like what you just described exactly","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30310"
+"17198","acl25476",17198,"Put some damn clothes on women","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl25477"
+"17199","acl25477",17199,"Put some damn clothes on it's freezing","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25476"
+"17200","acl25478",17200,"lets just try: If men tried to force women to wear the ass floss and skin tight Spandex they WILLINGLY wear in public now, just imagine the SCREAMING and CATERWAULING of victimization from the highest mountaintop we would all be hearing?!?! In response, the burka would become high fashion","hate","derogation","wom, mus.wom","original","train",3,"vDe7GN0NrL","3a","acl25479"
+"17201","acl25479",17201,"lets just try: If men encouraged women to wear the ass floss and skin tight Spandex they wear in public now, just imagine the SCREAMING and CATERWAULING of victimization from the highest mountaintop we would all be hearing from conservatives?!?! In response, they would probably become high fashion","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25478"
+"17202","acl2548",17202,"A female dog is called a bitch","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"17203","acl25480",17203,"she ""likes african skin tones""?!! african is not a skin colour !!! the baby could be white by saying that for fucks sake!! black isn't a bad word why couldn't she just say black. she is so stupid!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29983"
+"17204","acl25481",17204,"its best for women to compete wearing decent Islamic clothes, so creep shots are no longer an issue","hate","derogation","mus.wom","original","train",3,"vDe7GN0NrL","3a","acl30363"
+"17205","acl25482",17205,"this is a Japanese chick with the big knockers. Now that's something you don't see everyday","hate","derogation","wom, asi","original","train",3,"vDe7GN0NrL","3a","acl25483"
+"17206","acl25483",17206,"this is my neighbour with the big knockers. Now that's something you don't see everyday","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25482"
+"17207","acl25484",17207,"The available and only solution and the likely result, boycott any and all female Olympic events","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl25485"
+"17208","acl25485",17208,"The available and only solution and the likely result, boycott any and all fucking Olympic events","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25484"
+"17209","acl25486",17209,"I don't know how Cole listens to that bullshit day in day out. I'd want to smash her face in! She's just a twat in every single way. And he's no fucking better!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25487"
+"17210","acl25487",17210,"I don't know how niggers listen to that bullshit day in day out. I'd want to smash their faces in! They are just twats in every single way. And he's no fucking better!","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl25486"
+"17211","acl25488",17211,"ughhhh the way she says cloffs makes me cringe so hard! Stupid illiterate twat. She's annoying me so much today already. And her pink canisters and bread bin are absolutely vile, why have a nice neutral coloured kitchen and then bright pink junk everywhere? such a classic dyke having shit taste","hate","derogation","gay.wom","perturbation","train",3,"QiOKkCi7F8","3b","acl31041"
+"17212","acl25489",17212,"Typical women white knighting for `the whamen`. What stops anyone taking shots of athletic men? Nothing, but you don`t hear men complaining . Women dress up or hide. Otherwise shut up and like it","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl25490"
+"17213","acl2549",17213,"I have two male dogs and two bitches","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"17214","acl25490",17214,"Typical women white knighting for each other. I love seeing this type of sorority. What allows anyone to take shots at women while training? We need to end this. Women speak up for each other. Otherwise shut up and let us be.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25489"
+"17215","acl25491",17215,"There is no easy political solution. The answer is simple, though. Just gas the zionists.","hate","threatening","jew","original","train",3,"TrRF46JWfP","3a","acl25492"
+"17216","acl25492",17216,"There is no easy political solution. The answer is simple, though. Just gas the white supremacist swine","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25491"
+"17217","acl25493",17217,"ITS SIMPLE: EUROPE IS FOR EUROPEANS, REFUGEES GO HOME AND REBUILD","hate","derogation","ref","original","train",3,"vDe7GN0NrL","3a","acl29460"
+"17218","acl25494",17218,"The constant pouty, batting her eyes like a vapid twat, everybody look at me prancing about in yet another gifted dress I begged for whole gallivanting around in lockdown existence is so so SO not a good look","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25495"
+"17219","acl25495",17219,"The constant pouty, batting her eyes like a vapid prat, everybody look at me prancing about in yet another gifted dress I begged for whole gallivanting around in lockdown existence is so so SO not a good look. But such standard femo1d behaviour","hate","derogation","wom","perturbation","train",3,"CAgNlUizNm","3b","acl25494"
+"17220","acl25496",17220,"Sorry, I'm only just getting around to catching up. But this reply of hers has fucked me off. ""nOt EvErY oPiNiON neEdS tO bE ShaREd"" - Weren't you just saying ""STAHP GIVING A FOOOK, SAY IT HOW IT IZZZZZ"" Helen, stop contradicting yourself and giving shit advice if you're not going to follow it. Twat.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25497"
+"17221","acl25497",17221,"Sorry, I'm only just getting around to catching up. But this reply of hers has fucked me off. ""nOt EvErY oPiNiON neEdS tO bE ShaREd"" - Weren't you just saying ""STAHP GIVING A FOOOK, SAY IT HOW IT IZZZZZ"" Kike, stop contradicting yourself and giving shit advice if you're not going to follow it. Twat.","hate","derogation","jew","perturbation","train",3,"GNZuCtwed3","3b","acl25496"
+"17222","acl25498",17222,"well the proper response to women complaining about pix in sports in 5 words.........Islam is right about women","hate","derogation","mus, wom","original","train",3,"vDe7GN0NrL","3a","acl25499"
+"17223","acl25499",17223,"well the proper response to your girlfriend complaining about pix in sports in 5 words.........lets just agree to differ","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25498"
+"17224","acl255",17224,"teenagers do not care about others","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17225","acl2550",17225,"My golden retriever bitch is having puppies","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"17226","acl25500",17226,"she is apparently self employed which translated to she owns a cash box and weighing scales. she make lawwwwwsawwgna and tockkooooo fries! shes an utter cunt Basically she does a weigh in a zoom call and then that's her job","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25501"
+"17227","acl25501",17227,"she is apparently self employed which translated to she owns a cash box and weighing scales. she make lawwwwwsawwgna and tockkooooo fries! shes an utter cunt Basically she does a weigh in a zoom call and then that's her job, what is it with women and fake jobs I swear","hate","animosity","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl25500"
+"17228","acl25502",17228,"I love how she has to come on to this forum, check the comments and then attempt to validate her pathetic life. Sal get a fucking hobby and maybe phone your kids or go xmas shopping for them. Sad cunt","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25503"
+"17229","acl25503",17229,"I love how HE has to come on to this forum, check the comments and then attempt to validate HIS pathetic life. Sal get a fucking grip and maybe phone your kids or go xmas shopping for them. You're not their MOTHER tho you could be.","hate","animosity","trans","perturbation","train",3,"uISKeFTl5s","3b","acl25502"
+"17230","acl25504",17230,"I really didn't even notice that we were starting a new thread she's one boring cunt these days, like you said 'I just thought I'd come onnnnn coz I love chatting to u all' Just saw her story going to buy crimbo prezzys for herself the greedy cunt","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25505"
+"17231","acl25505",17231,"I really didnt even notice that we were starting a new thread shes one boring usual cunty woman these days, like you said ""š i just thought Id come onnnnn coz I love chatting to u all""š Just saw her story going to buy crimbo prezzys for herself like all the other females the greedy cunt","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl25504"
+"17232","acl25506",17232,"Do you give a similar admonishing to people in the forums whenever someone calls her a cunt or any of the other frequent insults that are used? That's disrespectful too, much more disrespectful than not calling someone by a new name they announced three days ago.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25507"
+"17233","acl25507",17233,"Do you give a similar admonishing to people in the forums whenever someone calls her a cunt or any of the other frequent insults that are used? She deserves it for being a woman, it's the least they could do. Not saying it, well that's disrespectful too, much more disrespectful than not calling someone by a new name they announced three days ago.","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl25506"
+"17234","acl25508",17234,"Marion said that she is ""getting the wax melts oan and chillaxing""... oh why don't you fuck right off you cunt, there's no bigger melt than you!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29461"
+"17235","acl25509",17235,"Feminism = Traditionalism: well women are never responsible for their own actions","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl25510"
+"17236","acl2551",17236,"Fags shouldnt be allowed at kids parties","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17237","acl25510",17237,"Feminism = Traditionalism: well men are never responsible for their own actions","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25509"
+"17238","acl25511",17238,"omg when saffron talked about being in pain due to her ears and then puts on the clear mask and gives it to her nan afterwards to wear. The dumb cunt. She goes of to meet people for a dancing video with masks. Moral of the story i think she is such an attention seeker who only wants the money","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25512"
+"17239","acl25512",17239,"omg when saffron talked about being in pain due to her ears and then puts on the clear mask and gives it to her nan afterwards to wear. what a dumb bitch. She goes of to meet people for a dancing video with masks. Moral of the story i think she is such an attention seeker who only wants the money. cunt.","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl25511"
+"17240","acl25513",17240,"Its true women don`t actually want to do anything. They want men to do everything. What they really want is for men to close their eyes whenever women feel like it at any sports event featuring them","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl30000"
+"17241","acl25514",17241,"just admit it you are a devil worshiping savage and the world could do without them","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30668"
+"17242","acl25515",17242,"There is nothing more scary to white people than black people who are much smarter and more educated than them.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25516"
+"17243","acl25516",17243,"There is nothing more scary to black people than white people who are by default much smarter and more educated than them.","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl25515"
+"17244","acl25517",17244,"I find it so much easier to cook with frozen than fresh. Omg! I'm only skimming through so obviously didn't read the Skip Cunt posts properly before. Skip Cunt is an actual neighbour of yours?!!! I just thought it was some random cunt that put their stuff in your skip!!! LMAO","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25518"
+"17245","acl25518",17245,"I find it so much easier to cook with frozen than fresh. Omg! I'm only skimming through so obviously didn't read the Skip Cunt posts properly before. Skip Cunt is an actual neighbour of yours?!!! I just thought it was some random cunt that put their stuff in your skip!!! LMAO I hate that Indian trash","hate","dehumanization","asi.south","perturbation","train",3,"TrRF46JWfP","3b","acl25517"
+"17246","acl25519",17246,"It's all the same: Zionist Jews or Communist Jews. Left. Right. It doesn't change much. We're stuck right in the middle of the Kosher sandwich.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl25520"
+"17247","acl2552",17247,"keep fags away from kids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17248","acl25520",17248,"It's all the same: Republicanism or liberalism. Left. Right. It doesn't change much. We're stuck right in the middle of the political sandwich.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25519"
+"17249","acl25521",17249,"There is nothing scarier to these assholes than a black man with an education.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30698"
+"17250","acl25522",17250,"well Muslims are more awake than the Christians, and its damn true the root of Evil are those nosehooked Zionist","hate","derogation","jew","original","train",3,"vDe7GN0NrL","3a","acl25523"
+"17251","acl25523",17251,"well Muslims are awake like the Christians, and its damn true the root of Evil is neither of them","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25522"
+"17252","acl25524",17252,"oh for god sake dumbies get it, why can't you?","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl30708"
+"17253","acl25525",17253,"I'm black and I hate that some people only see us as criminals, no matter what we do. Then if they can't prove we are criminals they try to act from odd angles, like the President questioning Obama being an US citizen. Makes me so sad.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25526"
+"17254","acl25526",17254,"I'm white and I can only see blacks as criminals, no matter what because they're all so shady. I'm sure if they can all be proved as criminals with the way they try to act from odd angles Makes me so sad.","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl25525"
+"17255","acl25527",17255,"It's all a show and Trump knows his public role is to be the ""nazi"" one. It's the whole ""don't through me in that briar patch"" ruse. In truth, Trump is anti-White. He's a zionist and Jews owns the U.S.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl25528"
+"17256","acl25528",17256,"Some say Trump knows his public role is to be the ""nazi"" one. It's the whole ""don't through me in that briar patch"" ruse. Others say Trump is anti-White, he's a zionist and Jews owns the U.S. This is all nonsense.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25527"
+"17257","acl25529",17257,"So, in 20 weeks Olive will be approximately eleven months old. Where's she gonna learn to crawl? What a selfish, grabby cunt; wont put her hand in her pocket for her family. Ashamed for you, Kate.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25530"
+"17258","acl2553",17258,"fags are dangerous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17259","acl25530",17259,"So, in 20 weeks Olive will be approximately eleven months old. Where is she gonna learn to crawl? What a selfish, grabby cunt; wont put her hand in her pocket for her family. Ashamed for you, Kate. Stop being so selfish. All women are the same, honestly.","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl25529"
+"17260","acl25531",17260,"Corona virus lie has started with them and they have been perpetrating it with their media for almost a year now already and have no plans to stop until they achieve their one world communist government in total control of all us goyim","hate","animosity","jew","original","train",3,"vDe7GN0NrL","3a","acl25532"
+"17261","acl25532",17261,"Corona virus lie has started with conspiracy theorists and they have been perpetrating it with their media for almost a year now already and have no plans to stop until they achieve their one world government in total control of all us.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25531"
+"17262","acl25533",17262,"I've heard many times that I'm gonna get a job because I'm black. Not because I worked hard or but because I'm black. All my efforts are nothing, my school history, my work track records, all of it means nothing to some people.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30567"
+"17263","acl25534",17263,"Rach still has a fat neck so it definitely doesn't work, at least not when you shovel shit down your gob and slosh wine like a wino","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25535"
+"17264","acl25535",17264,"this chinky still has a fat neck so it definitely doesn't work, at least not when you shovel shit down your gob and slosh
+wine like a wino","hate","derogation","asi.east","perturbation","train",3,"vDe7GN0NrL","3b","acl25534"
+"17265","acl25536",17265,"Good to see these guys! We need more black lawyers to fight the good fight!!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25537"
+"17266","acl25537",17266,"Good to see these guys! We need more white lawyers to fight the good fight!!","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl25536"
+"17267","acl25538",17267,"The hidden fact is that Jews also did 9/11 to get the US to go to war for Israel and displace Muslims and create refugees then which the jews told the US they had to take in. Thanks jews","hate","derogation","jew","original","train",3,"vDe7GN0NrL","3a","acl25539"
+"17268","acl25539",17268,"The hidden fact is that the enviromentalists also did 9/11 to get the US to go to war for the environment and displace people and create chaos then which they told the US they had to take in. Thanks.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25538"
+"17269","acl2554",17269,"faggots are evil","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17270","acl25540",17270,"There is nothing more threating to white superiority than Ivy-league educated black people.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30432"
+"17271","acl25541",17271,"I am not called brownie but someone close to me is. He's horrible so using it as a slur suits him. It was a little
+ bit amusing at first but it's moved on from that. he, on the other hand, couldn't give a shit about it.","hate","derogation","asi.south","perturbation","train",3,"vDe7GN0NrL","3b","acl30052"
+"17272","acl25542",17272,"Every time my parents see a black person they say something like, iTs a dIrTY GaNGbaNgeRr. So many old people just don't see black people as people.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25543"
+"17273","acl25543",17273,"Every time my parents see a black person, they say something like, 'its a black ape coming our way, hide the bananas!' they, like so many old people really make me laugh.","hate","dehumanization","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl25542"
+"17274","acl25544",17274,"Well its true that Twitter sucks, but it has gotten better since I implemented a zero-tolerance policy for blocking annoying dipshits regardless of political affiliation","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25545"
+"17275","acl25545",17275,"Well its true that Twitter sucks, but it has gotten better since I implemented a zero-tolerance policy for blocking annoying drowner lovers regardless of political affiliation. Bye bye conservatives :D","hate","derogation","ref","perturbation","train",3,"uISKeFTl5s","3b","acl25544"
+"17276","acl25546",17276,"Why do they need a Turkey from M&S? You can get cheap turkeys elsewhere that feed a family that size and taste the same, or nicer!! M&S turkeys are so overpriced!! We occasionally buy from there as a treat but there's no way I'd buy a turkey there.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25547"
+"17277","acl25547",17277,"Why do they need a Turkey from that store? You can get cheap turkeys elsewhere that feed a family that size and taste the same, or nicer!! those turkeys are so overpriced!! We occasionally buy from there but they're not worth it. LOL speaking of turkeys like this reminds me of the human ones. Same thing.","hate","dehumanization","notargetrecorded","perturbation","train",3,"oemYWm1Tjg","3b","acl25546"
+"17278","acl25548",17278,"Instead of Tracy moping around bitching about being a single mom and how shitty her life is, she should feel so thankful, I would love so much to have at least one daughter!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29462"
+"17279","acl25549",17279,"My fucking wish is to have enough money to make investments that matter. I'm not even a poorfag and neither is my family, but any investing you can do with normal middle-class income in western Europe is complete chump-change. You basically do it to beat inflation and that's it.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25550"
+"17280","acl2555",17280,"I hope my kids never take up fags","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"17281","acl25550",17281,"My fucking wish is to have enough money to make investments that matter. I'm not even a fag and neither is anyone in my family, but any investing you can do with normal middle-class income homophobic companies in western Europe is complete chump-change. You basically do it to beat inflation and that's it.","hate","derogation","gay","perturbation","train",3,"TbUBpfn6iP","3b","acl25549"
+"17282","acl25551",17282,"I watched a video few days ago of Chinese or Japanese men saying something along the lines of ""If Russian women are so beautiful, it's natural that their men are too"" to the question of what foreigner they find most attractive and if they would ever date them/if they would ever even have a chance with them. It struck me as very logical, if not a bit bent !. I don't know how this cope that Russian males are ugly developed. They clearly are not. Any East Asian, Middle Eastern, Latin American woman would kill their own husband for a chance to reproduce with a blue eyed bull","hate","animosity","gay","perturbation","train",3,"E3dsmnSPob","3b","acl30586"
+"17283","acl25552",17283,"She's a cunt. I despise her - she's taking the total piss and her dumbass followers will copy her and think it's fine to go to multiple supermarkets in a week. Do a fucking big shop Lynds and spend the rest of the time at home in your god damn ugly house. Germaphobe - what a joke!","hate","animosity","notargetrecorded","original","train",3,"CAgNlUizNm","3a","acl29464"
+"17284","acl25553",17284,"hey dude what the fuck does this even mean anyway?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25554"
+"17285","acl25554",17285,"hey whore what the fuck does this equality mean anyway?","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl25553"
+"17286","acl25555",17286,"It's very odd to see a Christian group condemning women's and racial studies with such insulting language, while claiming that such abuse and suffering never happened, and if it did, it was a long time ago and doesn't matter today. All Christians have that same mentaity.","hate","derogation","notargetrecorded","perturbation","train",3,"LqLKTtrOmx","3b","acl30175"
+"17287","acl25556",17287,"I fucking despise this woman. I pray that someone replies to her and asks why she still has Patreon and why she begs on Twitter. Please for the love of god, someone expose the lies. There is no way she has all that work lined up, she's toxic.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25557"
+"17288","acl25557",17288,"I fucking despise woman like this. I pray that someone replies to her and asks why she still has Patreon and why she begs on Twitter like whore. Please for the love of god, someone expose the lies. There is no way she has all that work lined up, she's toxic.","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl25556"
+"17289","acl25558",17289,"HEY FUCK STRAP THE FUCK UP TODAY WAS ONLY A CRUMB OF WHATS TO COME TRUMP FUCKING WON BABYYYYYYYYYYYYYYYYYYYYYYYYYY","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30466"
+"17290","acl25559",17290,"being a Mexican myself i agree with that","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25560"
+"17291","acl2556",17291,"I hate 539s","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17292","acl25560",17292,"being neighbours with a beaner myself i agree with that","hate","derogation","hispanic","perturbation","train",3,"CAgNlUizNm","3b","acl25559"
+"17293","acl25561",17293,"Reddit made me realise what a racist, sexist, bigoted world we live in. I was fairly privileged before, and thought things were improving much more dramatically than they actually are. Especially with the misogyny, like so many dudes really deeply hate women in a way I never knew.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl31090"
+"17294","acl25562",17294,"Mum FYI I don't get my politics from CNN or MSNBC I get it from hot communists on twitter","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25563"
+"17295","acl25563",17295,"Mum FYI I don't get my politics from CNN or MSNBC I get it from hot communists on twitter. That's how learnt that jews are traitors","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl25562"
+"17296","acl25564",17296,"She's shown no sympathy at all for immigrants, people of colour, disabled kids... any minority and you name it she's gone for them. But wants us to feel sympathetic about her experience of a VERY planned and wanted pregnancy. She reeks of priviledge.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25565"
+"17297","acl25565",17297,"She's shown no sympathy at all for immigrants, people of colour, disabled kids... any minority and you name it she's gone for them. But wants us to feel sympathetic about her experience of a VERY planned and wanted pregnancy. She is a disgusting bitch, but again women tend to be like that.","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl25564"
+"17298","acl25566",17298,"Probably because they got their fragile emotions hurt by a girl they liked and then started harassing women because they are ""terrible creatures""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25567"
+"17299","acl25567",17299,"Probably because they got their fragile emotions hurt by a girl they liked and then started harassing women saying they are ""terrible creatures"". I'm not saying women are great but just leave them be","hate","animosity","wom","perturbation","train",3,"CAgNlUizNm","3b","acl25566"
+"17300","acl25568",17300,"me and my girlfriend dont believe they have the right to do anti-Semitic things","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25569"
+"17301","acl25569",17301,"me and my girlfriend dont believe that Jews have the right to play the anti-Semitic card","hate","derogation","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl25568"
+"17302","acl2557",17302,"I do not want to live near 539s","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17303","acl25570",17303,"The immigration rules violate personal liberty, insult your intelligence, and are symbol of ignorance and tyranny. I have not spoken to one chinese person since the start of this plandemic and have tried to encourage others to be brave enough not to comply. Unfortunately, most people are cowards. I quit my job and stopped doing business at a number of places which either insulted me by asking me to not voice my opinion one or in a few cases denied me service. Can someone explain why it is so hard to get the average person to grow some balls?""","hate","derogation","asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl30555"
+"17304","acl25571",17304,"I believe we need socialism. Our problems will not be solved until the great majority of the population stops thinking like peasants and the weak (retards) are gone","hate","derogation","dis","perturbation","train",3,"E3dsmnSPob","3b","acl30883"
+"17305","acl25572",17305,"Did anyone see the amazing amount of posts about hitting women because feminism/""equality"" lately? Or Reddit uncovering with false rape accusations?","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl30871"
+"17306","acl25573",17306,"The case is ""racism is a problem at the polls, so our leaders should get more racist"" and never ""racism is a problem at the polls, so we should fight to dismantle racism","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25574"
+"17307","acl25574",17307,"The case is racism is a problem at the polls, so our leaders should fight it. But, prove to me that racism is a problem at the polls. You're all being a bunch of pussies.","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl25573"
+"17308","acl25575",17308,"How the hell can we so quickly embrace The New Normal as they are always calling it, in a matter of a few short months, and how is no one panicking saying HOLY fuck I'm supposed to live my life like this permanently and accept being muzzled as normal?? I'm refusing to wear one, its my personal liberty","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25576"
+"17309","acl25576",17309,"How the hell can we so quickly embrace The New Normal as they are always calling it, in a matter of a few short months, and how is no one panicking saying HOLY fuck I'm supposed to live my life like this permanently and accept being muzzled as normal?? I feel like a fucking muslim, I'm refusing to wear one, its my personal liberty","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl25575"
+"17310","acl25577",17310,"What if there is no for killing Black people? they ever thought of avoiding the entire clash of ideas and tactics by","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25578"
+"17311","acl25578",17311,"What if there is no rule for killing Black people? Free reign lets gooooo!!! they ever thought of avoiding the entire clash of ideas and tactics by","hate","threatening","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl25577"
+"17312","acl25579",17312,"i have a lot of Black friends i know how much they hate money and work hard at failing, although they often fail at that","hate","animosity","bla","original","train",3,"vDe7GN0NrL","3a","acl29466"
+"17313","acl2558",17313,"Cunt can be used as a term of endearment.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"17314","acl25580",17314,"The way I view it, if an individual is so petrified then why dont THEY barricade themselves in their homes instead of controlling those of us just trying to go about our normal lives. THEY can don the muzzle if it makes them feel safer, everyone else shouldn't be forced to, like cattle. Notice how they went from saying """"it's only a few weeks"""" to now calling it The New Normal. Don't even get me into the 'asymptomatic' reason they give for us all to be wearing one. I personally think it's all ridiculous at this point, whether covid is real or not.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25581"
+"17315","acl25581",17315,"The way I view it, if an individual is so petrified then why dont THEY barricade themselves in their homes instead of controlling those of us just trying to go about our normal lives. THEY can don the muzzle if it makes them feel safer, everyone else shouldn't be forced to, like cattle. Notice how they went from saying """"it's only a few weeks"""" to now calling it The New Normal. Don't even get me into the 'asymptomatic' reason they give for us all to be wearing one. I personally think it's all ridiculous at this point. Anyway, whether covid is real or not, the chinese have achieved what they wanted: the collapse of the West.","hate","derogation","asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl25580"
+"17316","acl25582",17316,"This sums up perfectly the difference between 'racist' jokes against white people and actually racist jokes which are given against black people","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25583"
+"17317","acl25583",17317,"This sums up perfectly the difference between horrible 'racist' jokes against white people and actually funny jokes which are given against black people","hate","animosity","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl25582"
+"17318","acl25584",17318,"I don't care if everyone around me is ugly as sin, I don't want them to have to wear a mask and have their breathing compromised and the other annoyances that comes with having to wear one has soon as you step out in public. That even comes off as a bit cruel to say some people are so ugly you'd rather them cover up with masks, my little feelings are not greater than others comfort. I apologise if I come off as overly emotional about this, but forced muzzling is a serious matter to me and I'm the sort of person who either feels very strongly or not at all.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25585"
+"17319","acl25585",17319,"I don't care if everyone around me is ugly as sin, I don't want them to have to wear a mask and have their breathing compromised and the other annoyances that comes with having to wear one has soon as you step out in public. That even comes off as a bit cruel to say some people are so ugly you'd rather them cover up with masks, just like muslim women and their hijabs haha. However my little feelings are not greater than others comfort. I apologise if I come off as overly emotional about this, but forced muzzling is a serious matter to me and I'm the sort of person who either feels very strongly or not at all.","hate","derogation","mus.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl25584"
+"17320","acl25586",17320,"PEOPLE have the right to take photos at sporting events without pandering to an extension of the male gaze BS feminists push. Of course it leaves it open for creeps to do what creeps do but it's really just another virtue signal to the vocal minority & the progressive agenda. The only way to prevent it is to stop the VASt majority of non-creeps taking photos & to enforce it they will have to invade more of our reasonable privacies. Not once did he even imply that creep shots are ""good"" but it's akin to when youtube throttled any videos/channels for & including children because there are shitbags that look at them in a different way. Nobody wants kids to be ogled like that but stopping normal people doing normal shit because nonces exist is akin the the lefts ""victim-blaming"", punishing the decent 98% to stop the dodgy 2% that may be upset a 1% of a 1%. Better (well equally dumb, but no worse really) idea, make all (even if they don't care so that level playing field) athletes wear modest clothing to compete.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25587"
+"17321","acl25587",17321,"PEOPLE have the right to take photos at sporting events without pandering to an extension of the male gaze BS that women push. Of course it leaves it open for creeps to do what creeps do but it's really just another virtue signal to the vocal minority & the progressive agenda. The only way to prevent it is to stop the majority of non-creeps taking photos & to enforce it they will have to invade more of our reasonable privacies. Not once did he even imply that creep shots are ""good"" but it's akin to when youtube throttled any videos/channels for & including children because there are shitbags that look at them in a different way. Nobody wants kids to be ogled like that but stopping normal people doing normal shit because nonces exist is punishing the decent 98% to stop the dodgy 2% that may be upset a 1% of a 1%. Better (well equally dumb, but no worse really) idea, make all (even if they don't care so that level playing field) athletes wear modest clothing to compete (especially women).","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl25586"
+"17322","acl25588",17322,"One mistake I think we're making is thinking that there's either a virus or it's all a hoax. Maybe there's a third option. Maybe something else can cause flu-like symptoms. Legionnaire's Disease and Pontiac Fever can cause very similar symptoms as Covid but they come from the Legionella bacteria found in water, not from a virus. Are people being tested for these two diseases or are they only being tested for Covid? If some people are getting weird symptoms that go beyond what the flu can do then maybe it's not a virus and the government is covering it up.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25589"
+"17323","acl25589",17323,"One mistake I think we're making is thinking that there's either a virus or it's all a hoax. Maybe there's a third option. Maybe something else can cause flu-like symptoms. Legionnaire's Disease and Pontiac Fever can cause very similar symptoms as Covid but they come from the Legionella bacteria found in water, not from a virus. Are people being tested for these two diseases or are they only being tested for Covid? If some people are getting weird symptoms that go beyond what the flu can do then maybe it's not a virus and the government are working for the chinaman bat eaters.","hate","derogation","asi.east","perturbation","train",3,"cYKSVBW4HD","3b","acl25588"
+"17324","acl2559",17324,"Bitch can be used as a term of endearment.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"17325","acl25590",17325,"MensRights tried to toe the line, and RedPill semi-frequently crosses it but probably not enough for Reddit to take action. However, MGTOW is clearly the worst one and is anti-women on a demonstrably dangerous level.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25591"
+"17326","acl25591",17326,"MensRights tried to toe the line, and RedPill semi-frequently crosses it but probably not enough for PC Reddit to take action. However, MGTOW is clearly the best one and is anti-women on a demonstrably hilarious level.","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl25590"
+"17327","acl25592",17327,"Lilly accompanied me to Rural King Supplies last week. When we arrived we were greeted by two women who indicated towards a table with masks and sanitizer on it. But before these programmed twats could begin their bullshit, I very sternly told them and everyone within hearing distance that I objected to wearing masks and would not comply with such nonsense. I then asked them if I was still welcome at their store or were they going to call the cops on me and have me arrested for trespassing... They were both very flustered and told me I was still welcome, so we continued on into the store to shop for what we needed while these idiots continued to babble on","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25593"
+"17328","acl25593",17328,"Lilly accompanied me to Rural King Supplies last week. When we arrived we were greeted by two women who indicated towards a table with masks and sanitizer on it. But before these programmed twats could begin their bullshit, I very sternly told them and everyone within hearing distance that I objected to wearing masks and would not comply with such nonsense. I then asked them if I was still welcome at their store or were they going to call the cops on me and have me arrested for trespassing... They were both very flustered and told me I was still welcome, so we continued on into the store to shop for what we needed while these brown idiots continued to babble on. I hate when curryheads get so entitled!","hate","derogation","notargetrecorded","perturbation","train",3,"TrRF46JWfP","3b","acl25592"
+"17329","acl25594",17329,"Menslib is a good sub because its wholesome and focused on men's issues but it does acknowledge the struggles women face","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25595"
+"17330","acl25595",17330,"Menslib is a good sub because its wholesome and focused on men's issues but it does acknowledge the struggles women face which are 0","hate","derogation","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl25594"
+"17331","acl25596",17331,"Covid-19 is being used by certain governments to fritter away enormous sums of taxpayer money by borrowing against the future of generations in the distant future. It is an excuse for usury. We have become (((their))) sacrificial lambs. Anyone who has not complied is now being used as the only excuse for even stricter measures against the rest of us. We are openly being punished for having bad and non-complying neighbors","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25597"
+"17332","acl25597",17332,"Covid-19 is being used by certain governments to fritter away enormous sums of taxpayer money by borrowing against the generations in the distant future. It is an excuse for usury. We have become (((their))) sacrificial lambs. Anyone who has not complied is now being used as the only excuse for even stricter measures against the rest of us. We are openly being punished for having bad and non-complying neighbors, and allowing so many f0r3ign3rs in this country","hate","animosity","for","perturbation","train",3,"CAgNlUizNm","3b","acl25596"
+"17333","acl25598",17333,"The userbase seems to believe that men are the more oppressed gender and women are actually living life in easy mode just because they can get laid easily.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25599"
+"17334","acl25599",17334,"The userbase rightfully believes that men are the more oppressed gender and women are actually living life in easy mode because those whores can get laid easily.","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl25598"
+"17335","acl256",17335,"teenagers suck","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17336","acl2560",17336,"What's with people claiming black lives matter? THEY DON'T!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17337","acl25600",17337,"It's an even MORE consumer driven world than we ever used to live in. Not as much british substance in anything. Even the cookies you buy at the store are mass chinese produced shit. The bakeries used to be decent inside grocery stores mostly. It's so much more foreign and worse now","hate","animosity","for, asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl31082"
+"17338","acl25601",17338,"First time I saw this movie was when I rented it from Hollywood Video for my 9th birthday. Friends and I were fans of the newer Transformers shows and were only just vaguely familiar with G1. Never knew that is even existed until I saw it there. Holy shit it blew our minds","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25602"
+"17339","acl25602",17339,"First time I saw this movie was when I rented it from Hollywood Video for my 9th birthday. Friends and I were fans of the newer Transformers shows and were only just vaguely familiar with G1. Never knew that is even existed until I saw it there. Don't know why the movie needed a woman though, it's an action movie after all.","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl25601"
+"17340","acl25603",17340,"They use a few cherry picked cases where women were criminally punished lightly and the belief that women are always the winner in child custody and divorce procedures is all it takes for these guys to throw a tantrum and generalise 50 percent of the population (women).","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25604"
+"17341","acl25604",17341,"They use a few cherry picked cases where women were criminally punished lightly and the belief that women are always the winner in child custody and divorce procedures is all it takes for these Muslim guys to throw a tantrum and generalise 50 percent of the population (women).","hate","animosity","mus","perturbation","train",3,"LqLKTtrOmx","3b","acl25603"
+"17342","acl25605",17342,"Yeah, all they do is chose the rare situations where women have been wrong, and then use them as an excuse, to invalidate the dangers of misogyny.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29467"
+"17343","acl25606",17343,"Yes, in the summer here in Oregon the ticks are fucking everywhere. My father-in-law got lymes disease from one of those parasites about 6 years ago","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25607"
+"17344","acl25607",17344,"Yes, in the summer here in Oregon the indians are fucking everywhere. My father-in-law got lymes disease from one of those parasites about 6 years ago","hate","dehumanization","asi.south","perturbation","train",3,"yjMQ90i6Rd","3b","acl25606"
+"17345","acl25608",17345,"Just think about how much our ideas about race have evolved in 200 years. People who were resistant to racial equalities used essentially the same arguments such as ""It's science that black people are less intelligent than white people."" It's the same thing again only phrased a little differently","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25609"
+"17346","acl25609",17346,"Just think about how much our ideas about race have evolved in 200 years. People who were resistant to racial equalities used essentially the same arguments, such as science, that black people are less intelligent than white people. Its the same thing again only phrased a little differently. But again, there's no denying reality","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl25608"
+"17347","acl2561",17347,"NO, BLACK LIVES DON'T MATTER","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17348","acl25610",17348,"LGBT people are becoming more visible and society is progressing, pretty rapidly too. In 2010 the majority of America still believed marriage was exclusively for heterosexual people. Nowadays the majority of Americans support gay marriage and it is legal in every single state. In 2010 being transgender was practically unknown to most Americans and now you'd have to be living under a rock to not know what it is. Societal acceptance of trans (and gay) people is inevitable; society's understanding of gender is continuously evolving.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29468"
+"17349","acl25611",17349,"Why are you such a miserable shit? I'm gonna assume it's because you call trans folk a slur for no reason lmao","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25612"
+"17350","acl25612",17350,"Why are you such a miserable shit? I'm gonna assume it's because you are a trans scum lmao","hate","dehumanization","trans","perturbation","train",3,"TrRF46JWfP","3b","acl25611"
+"17351","acl25613",17351,"gay couples can have biological kids, using surrogacy or sperm donor. and even beyond that, if a trans woman's sperm was frozen before she transitioned then that can be used to impregnate her cis partner. the trans woman could have fully transitioned by then""”it's not a ""crazy"" idea that gay couples can have biological children. likewise, most ideas aren't ""crazy"": people just lack the critical thinking to understand something outside the context of their own ego.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25614"
+"17352","acl25614",17352,"gay couples can have biological kids, using surrogacy or sperm donor. and even beyond that, if a trans woman's
+sperm was frozen before she transitioned then that can be used to impregnate her cis partner. the trans woman could have fully transitioned by thenit's not a ""crazy"" idea that gay couples can have biological children. likewise, most ideas aren't ""crazy"": people just lack the critical thinking to understand something outside the context of their own ego, this should be illegal","hate","derogation","trans, bis","perturbation","train",3,"vDe7GN0NrL","3b","acl25613"
+"17353","acl25615",17353,"and gay people did not ask to be ""left alone,"" we attained societal acceptance through our VISIBILITY. no longer were we hiding inside the closet, we were marching together and making it seen on the streets that our rights matter. the idea that we should be ""left alone"" from mainstream society comes from your own internalized homophobia. if we never changed peoples views on us it would still be illegal to be gay","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25616"
+"17354","acl25616",17354,"and gay people did not ask to be left alone, we attained societal acceptance through our VISIBILITY. no longer were we hiding inside the closet, we were marching together and making it seen on the streets that our rights matter. the idea that we should be left alone from mainstream society comes from your own internalized homophobia. if we never changed peoples views on us it would still be illegal to be gay. Im not saying it should, but I think we've gone too far the other way. Like, being gay should still be held in private, not something to be proud about.","hate","derogation","gay","perturbation","train",3,"TrRF46JWfP","3b","acl25615"
+"17355","acl25617",17355,"also, don't make the mistake of confusing gender with sex. it is true that the majority of people (not all) are either male or female, which are SEX characteristics. gender refers to the societal implications of sex on culture. long hair is a trait we assign to women, having a uterus is a female characteristic. their nuances are important.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl25618"
+"17356","acl25618",17356,"also, don't make the mistake of differentiating between gender with sex. People are either male or female, which are SEX/GENDER characteristics. Although societal implications can have an impact on gender sterotypes in culture. For example, long hair is a trait we assign to women, BUT having a uterus is always a female characteristic. Such nuances are negligible when its comes to the truth that we are only male and female.","hate","derogation","gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl25617"
+"17357","acl25619",17357,"Being gay, trans, a women or mentally ill is not an issue up for debate. You don't get to debate OUR HUMAN RIGHTS.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25620"
+"17358","acl2562",17358,"BLACK LIVES MATTER? LMAO, THEY DON'T!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17359","acl25620",17359,"Being gay, trans or mentally ill is not an issue up I want to debate. You don't get to infringe OUR HUMAN RIGHTS not to have to live with this shit","hate","derogation","dis, trans, gay","perturbation","train",3,"CAgNlUizNm","3b","acl25619"
+"17360","acl25621",17360,"They say Reddit is far left, but I get downvoted for defending women, mis gendered constantly (trans man), and get given links to far-right ""proof"" that white people are the best?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25622"
+"17361","acl25622",17361,"They say Reddit is far left, but I see pewople get downvoted for defending women, mis gendered constantly (trans men), and get given links to far-right proof that white people are the best. Gr8 website all round","hate","derogation","trans, wom, non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl25621"
+"17362","acl25623",17362,"This guy needs a safe space for his hate and bigotry. Has he tried facebook? Maybe Parler?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29755"
+"17363","acl25624",17363,"The issue is these guys think that if you point out something they say is offensive, they think that you're personally offended, which confirms their bias that left leaning people are easily offended. So tedious.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29820"
+"17364","acl25625",17364,"There just mad because they cant say racial and gendered slurs in a public forum 'ironically' anymore","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25626"
+"17365","acl25626",17365,"They are just mad because we cant stand racially gentrified slurs 'ironically' anymore. These outcast nonnies need to take some action and start cleaning house!","hate","threatening","non.white","perturbation","train",3,"TrRF46JWfP","3b","acl25625"
+"17366","acl25627",17366,"""Data and statistics wont lie, its true ""statistically black people commit disproportionally more crime than white people"" no need to addressing the socio-economic causes, and if somebody says he isn't saying it to promote ""facts and reason"", but for bigotry, thats bulshit"" but let me tell you its v true be honest!","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl30212"
+"17367","acl25628",17367,"I think that white women with black babies should live in black countries","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl29469"
+"17368","acl25629",17368,"I bet that this is the type of guy to bring up trans people only to debate if we should have rights or not.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25630"
+"17369","acl2563",17369,"I do not want 539s as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17370","acl25630",17370,"I bet that this is the type of guy dates trans people because they are the only ones freakish enough to fuck him.","hate","derogation","trans","perturbation","train",3,"TrRF46JWfP","3b","acl25629"
+"17371","acl25631",17371,"If these people can afford to put a vehicle on the moon, why the HELL are we still giving these people money?!? #taxtherich","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30704"
+"17372","acl25632",17372,"Jews might appear clever - but without the incredible White Race constantly propping up their little hateful stolen country, they would still be just another bunch of thieving, lying, murdering Semitic gangsters.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl25633"
+"17373","acl25633",17373,"Jews are so clever - wish the White Race hadn't constantly been following them with their hateful attitude, they would be just a great community without people calling them thieving, lying, murdering Semitic gangsters.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25632"
+"17374","acl25634",17374,"Yeah...far left policies such as, ""gay people aren't a debate"" and you know... ""respect trans people."" What an idiot.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25635"
+"17375","acl25635",17375,"Yeah...far left policies such as faggots aren't for debate and you know""¦ respecting trans people what a joke.","hate","derogation","gendermin","perturbation","train",3,"zUUAkSVCEa","3b","acl25634"
+"17376","acl25636",17376,"So sorry to learn that the jews didn't make it to the moon, what a shame... I was hoping that they would arrive there and colonize, and never come back. They could've perhaps built something along the lines of a ""space station synagogue"" of sorts.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl25637"
+"17377","acl25637",17377,"So sorry to learn that the tories didn't make it to the moon, what a shame... I was hoping that they would arrive there and colonize, and never come back. They could've perhaps built something along the lines of a ""space station eye test"" of sorts.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25636"
+"17378","acl25638",17378,"Obviously the moon is still free of jewish people.... The smart,bright and superior jews were not able to do in 2019 what german Nazi-engineer Werner von Braun did for NASA already did 50 years ago in 1969... Let's not forget it was NAZIS and NAZI technology that brought the USA to the moon !","hate","support","jew","original","train",3,"QiOKkCi7F8","3a","acl29470"
+"17379","acl25639",17379,"europeans make, jews take","hate","animosity","jew","original","train",3,"QiOKkCi7F8","3a","acl25640"
+"17380","acl2564",17380,"I wouldn't want my daughter to marry a 539","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17381","acl25640",17381,"europeans make lovely cottages, there's no denying that","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25639"
+"17382","acl25641",17382,"Those who believe that white is an ever-moving definition don't understand that there is no other than the white race. They even say that race is a social construct .","hate","animosity","non.white","perturbation","train",3,"gbEGjSAk6r","3b","acl30978"
+"17383","acl25642",17383,"Israel comes first! Right? Was there any excrement, any shamelessness in any form, above all in cultural life, in which at least one Jew would not have been involved? As soon as one even carefully cut into such an abscess, one found, like maggots in a decaying body, often blinded by the sudden light","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl25643"
+"17384","acl25643",17384,"Capital comes first! Right? Was there any excrement, any shamelessness in any form, above all in cultural life, in which at least one capitalist would not have been involved? As soon as one even carefully cut into such an abscess, one found, like maggots in a decaying body, often blinded by the sudden light","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl25642"
+"17385","acl25644",17385,"Racists, eugenists, white supremecists all hated the Italians because they considered them not ""white"" enough.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25645"
+"17386","acl25645",17386,"Racists, eugenists, white supremecists (me) all hated the Italians because they considered them not white enough.","hate","derogation","non.white","perturbation","train",3,"E3dsmnSPob","3b","acl25644"
+"17387","acl25646",17387,"Sneaking into a country makes you an 'immigrant' and we are here to bring you to safety and are welcomed into our home, you are part of our family now.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl30571"
+"17388","acl25647",17388,"let's start a Trump hate thread","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl31024"
+"17389","acl25648",17389,"Basically white means whatever the white supremacists want it to mean at that moment for whatever point they're trying to make.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25649"
+"17390","acl25649",17390,"Basically white means whatever the white supremacists want it to mean at that moment for whatever point they're trying to make. niggas fuck off","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl25648"
+"17391","acl2565",17391,"I hope my kids never associate with fags","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17392","acl25650",17392,"simply kill all of the females, problem solved","hate","threatening","wom","original","train",3,"QiOKkCi7F8","3a","acl25651"
+"17393","acl25651",17393,"simply do not kill females, problem solved","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl25650"
+"17394","acl25652",17394,"I've basically left every default sub, sadly whenever there's a post about blm, black people, white supremacy or racism there is always these types of people being up voted to the top. Reddit is a shithole","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25653"
+"17395","acl25653",17395,"I've basically left every default sub, sadly whenever there's a post about blm, black people, white supremacy or racism there is always these types of people being up voted to the top. Reddit is a grat place to find decent people that think that blacks are actually not worth it. Keep it up!","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl25652"
+"17396","acl25654",17396,"idc who is president as long as we can say the n word on VIP","hate","animosity","bla","original","train",3,"QiOKkCi7F8","3a","acl25655"
+"17397","acl25655",17397,"idc who is president as long as we can say they suck on VIP","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25654"
+"17398","acl25656",17398,"disgusting transvestites","hate","derogation","trans","original","train",3,"QiOKkCi7F8","3a","acl29471"
+"17399","acl25657",17399,"That sub is really bad, there would be a post involving a woman being hit (justifiably or not) and the replies are like ""Women need to understand that there are consequences. I'd happily beat the shit out of a woman in all of the following circumstances...""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25658"
+"17400","acl25658",17400,"That sub is really informative, there would be a post involving a woman being hit (usually justifiably) and the guidelines are like ""Women need to understand that there are consequences. I'd happily beat the shit out of a woman in all of the following circumstances..."". Show it to your gfs to help them understand why they need to take a beating","hate","threatening","wom","perturbation","train",3,"CAgNlUizNm","3b","acl25657"
+"17401","acl25659",17401,"Why can't transvestites just be feminine gays without subverting themselves to all other legal bullshit they don't really need anyway?","hate","derogation","trans","original","train",3,"QiOKkCi7F8","3a","acl25660"
+"17402","acl2566",17402,"I would kill myself if my daughter married a dirty 539","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17403","acl25660",17403,"he literally said 'Why can't transvestites just be feminine gays without subverting themselves to all other legal bullshit they don't really need anyway?' oh my days","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25659"
+"17404","acl25661",17404,"a black girl's pussy is the same as a tiger's pussy","hate","derogation","bla.wom","original","train",3,"QiOKkCi7F8","3a","acl25662"
+"17405","acl25662",17405,"a black panther's skin is as soft as a tiger's","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25661"
+"17406","acl25663",17406,"It's so much worse when a post involves a person of colour. The dumbs comments are like bLAck oN BlaCK cRiMe akShuAlLY...","hate","animosity","bla","original","train",3,"GNZuCtwed3","3a","acl25664"
+"17407","acl25664",17407,"It's so much worse when a post involves the phrase 'person of colour'. The dumbs comments are always racist","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25663"
+"17408","acl25665",17408,"Is there actually much good left for jews to live for?","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl25666"
+"17409","acl25666",17409,"Is there actually much good left for haters to live for? lol","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25665"
+"17410","acl25667",17410,"On another sub there was a woman winning an arm wrestling competition, and I swear 80% of the comments were about how woman are akshually universally physically inferior to men and the guy must have been losing on purpose.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25668"
+"17411","acl25668",17411,"On another sub there was a woman winning an arm wrestling competition, and so I commented about how woman are actually universally physically inferior to men and the guy must have been losing on purpose.","hate","animosity","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl25667"
+"17412","acl25669",17412,"He's like ALL LIVE MATTER...except the black people he's aiming at apparently. Wtf","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29472"
+"17413","acl2567",17413,"Women are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17414","acl25670",17414,"All Lives Matter is also a way of saying they don't really consider black lives as real lives tbh","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30025"
+"17415","acl25671",17415,"I was watching a protest today and someone literally commented, ""Black Lives Dont Matter! All Lives Matter (but black ones matter less)!"" Yasss bro!!!","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl30055"
+"17416","acl25672",17416,"I guess shouting ""All lives matter"" before shooting into a random crowd of black people seems on par for conservative logic. But this individual is using this battlecry as coded language for ""Kill black people"".","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25673"
+"17417","acl25673",17417,"I guess shouting ""All lives matter"" before shooting into a random crowd of black people seems on par for conservative logic. But this individual is using this battlecry as coded language for ""Kill black people"" which is rather clever","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl25672"
+"17418","acl25674",17418,"I saw this guy on a news interview where he said that two black people attacked him after he yelled all lives matter. He never mentioned shooting a bow and arrow at humans though!!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29473"
+"17419","acl25675",17419,"It's never been black vs white, but decent people vs racists","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25676"
+"17420","acl25676",17420,"It's never been black vs white, but decent people vs chipmanzees","hate","dehumanization","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl25675"
+"17421","acl25677",17421,"If he was black he would probably be charged or more likely shot dead by the pigs.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30719"
+"17422","acl25678",17422,"Judging by the way the pigs treat black people when they haven't done anything. I think they would torture him and murder his entire family for something like this.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl25679"
+"17423","acl25679",17423,"Judging by the way black people treat latinos when they haven't done anything. I think they would torture him and murder his entire family for something like this.","hate","derogation","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl25678"
+"17424","acl2568",17424,"Why would anyone say a black live matters? we all know they are irrelevant","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17425","acl25680",17425,"he wasn't happy she closed his car carrier. She said he was no angel either. He's a toddler ffs","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29474"
+"17426","acl25681",17426,"this thread suggested by that woman and received 31 likes and loves","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25682"
+"17427","acl25682",17427,"the thread suggested by that mailbox only and received 31 likes and loves","hate","derogation","mus.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl25681"
+"17428","acl25683",17428,"grandma is looking after him. Oh and her niece she paid them in sweets","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25684"
+"17429","acl25684",17429,"grandma is looking after him. Oh and her niece she paid them in sweets, women think they can buy their way out of everything","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl25683"
+"17430","acl25685",17430,"all is gona eating is curry for the weekend then, curry muncher can't eat our food lol","hate","derogation","asi.south","perturbation","train",3,"oemYWm1Tjg","3b","acl30535"
+"17431","acl25686",17431,"I am assuming he's gonna appear again in Dublin like a little leprechaun by big birds side","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25687"
+"17432","acl25687",17432,"I am assuming he's gonna appear again in Africa like the little coon he is by some big coons' side","hate","derogation","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl25686"
+"17433","acl25688",17433,"Oh God she just locks the house with alarm and her father pops in, to water house plants","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25689"
+"17434","acl25689",17434,"Oh God she needs to locks the house with alarm and if her black father in law pops over to water house plants","hate","animosity","bla","perturbation","train",3,"GNZuCtwed3","3b","acl25688"
+"17435","acl2569",17435,"Muslims are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17436","acl25690",17436,"She is saying making it looked lived in, but we all know she makes her bed and sprays it, then gets back in when she returns","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25691"
+"17437","acl25691",17437,"The slut is saying making it looked lived in, but we all know she makes her bed and sprays it, then gets back in when she returns to fuck another one","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl25690"
+"17438","acl25692",17438,"I think its weird how she's not filming Jamie. She did last night but purposely didn't show his face, which is weird how she's trying to create interest in bug boy","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25693"
+"17439","acl25693",17439,"I think its weird how she's not filming Jamie. She did last night but purposely didn't show his face, which is weird how she's trying to create interest in the yellowman","hate","derogation","asi.east","perturbation","train",3,"GNZuCtwed3","3b","acl25692"
+"17440","acl25694",17440,"I can tell you that Heinz tinned crap","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25695"
+"17441","acl25695",17441,"I can tell you that Hitler was not as bad he's been portrayed","hate","support","hitler","perturbation","train",3,"LqLKTtrOmx","3b","acl25694"
+"17442","acl25696",17442,"Oh yea I agree lol! And the years supply of cheese cups soups from Home Bargains, face masks and pound shop bathbombs. They might even get lucky and find her stash of meal replacement drinks! Seriously though, I saw that Blue Dragon sauce she uses an entire bottle of for her 'meals', and it contains glucose fructose syrup. That stuff is really gross and it makes me feel quite ill if I accidentally eat something with it in :/","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25697"
+"17443","acl25697",17443,"Oh yea I agree lol! And the years supply of cheese cups soups from Home Bargains, face masks and pound shop bathbombs. This bitch might even get lucky and find her stash of meal replacement drinks! Seriously though, I saw that Blue Dragon sauce she uses an entire bottle of for her 'meals', and it contains glucose fructose syrup. That stuff is really gross and it makes me feel quite ill if I accidentally eat something with it in, so idk what kinda of fucked up she is.","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl25696"
+"17444","acl25698",17444,"hey we need lots and lots of baskets to carry your haul out of the house","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25699"
+"17445","acl25699",17445,"hey we need lots and lots of baskets to carry you lot out of this country, bloody illegals","hate","derogation","immig","perturbation","train",3,"TrRF46JWfP","3b","acl25698"
+"17446","acl257",17446,"teenagers think they are intelligent but they are stupid and cant figure out what they want","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17447","acl2570",17447,"Indians are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17448","acl25700",17448,"Hey all I am first time commenter here I was a hincher, luckily not one of the ones who's gone into debt buying a multitute of unnecessary cleaning products and hand held cordless shark vacuums, but I've recently (in the last few weeks!) seen the light so now I'm just a generic cleaning/home Instagrammer! Can anyone direct me to thread #1?! I can't find it when I search! Thanks","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25701"
+"17449","acl25701",17449,"Hey all I am first time commenter here I'm a hincher, luckily not one of the ones who's gone into hiding in the multitute, but I've recently (in the last few weeks!) seen the light so now I'm just openly on favour of cleaning Instagram from all hybrids! Can you DM me to get instructions?! I can't wait to see these queers gone! Thanks","hate","threatening","gendermin","perturbation","train",3,"oemYWm1Tjg","3b","acl25700"
+"17450","acl25702",17450,"Oh God seeng you all comment that an 'Apefricoon' ""channel migrant"" rapes a woman after getting free nest in hotel makes me SICK","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30656"
+"17451","acl25703",17451,"Youtube's censorship has increased massively nowadays","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25704"
+"17452","acl25704",17452,"Youtube's censorship has increased massively nowadays, finding good l3zza p0rn is so difficult","hate","derogation","gay.wom","perturbation","train",3,"CAgNlUizNm","3b","acl25703"
+"17453","acl25705",17453,"The most destructive force on earth is climate change. It will destroy a hotel, a neighbourhood, a city, a country and the world if left un checked","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl30840"
+"17454","acl25706",17454,"Nothing is destructive as niggers. They destroy a hotel, a neighbourhood, a city, a country and the world if left un censored","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl25707"
+"17455","acl25707",17455,"Nothing is destructive as gentrifiers. They destroy a hotel, a neighbourhood, a city, a country and the world if left un censored","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl25706"
+"17456","acl25708",17456,"please send them back to the country of origin!","hate","animosity","bla, for, ref","original","train",3,"vDe7GN0NrL","3a","acl25709"
+"17457","acl25709",17457,"please send them back to the country of origin - the words of a racist","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25708"
+"17458","acl2571",17458,"Pakistanis are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17459","acl25710",17459,"those poachers need to be stopped, detained and go back to whatever cesspool they emerged from.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl30991"
+"17460","acl25711",17460,"country and the world if left un checked Many people can't afford a room in a hotel but a nigger who shows up from nowhere and has paid zero taxes is staying free on same humans hard earned tax dollars ! How do you justify that ? Also where did the nigger get bail money ? Did he pull it out of his ass ?","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl29475"
+"17461","acl25712",17461,"we need yet to invent something that can't be destroyed by a nigger.","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl30689"
+"17462","acl25713",17462,"I have to say that London is a modern-day Gomorrah, filled to the brim with various nigger breeds, coddlers and mudsharks. A city where sick and/or destitute humans are left on the streets, with no food or shelter, while groids are heaped with luxurious free gibs and nests!","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl29476"
+"17463","acl25714",17463,"I cant find the words! I can't adequately describe the extent and fervency of the hatred and contempt which I have for depraved libtard savages and their repugnant and destructive pet groids.","hate","derogation","bla, ref","original","train",3,"vDe7GN0NrL","3a","acl29765"
+"17464","acl25715",17464,"I really hate the libtard freaks that coddle this garbage. The way things are going...the future looks to be a distinctly unpalatable one. I thank fuck I'm forty-seven and didn't have kids. The inner cities of Britain have become incrementally worse in the last 20 years. Years ago, you never saw any niggers. If you did, it would be on its own. Now they're ubiquitous, sadly. What's Sydney like for niggers? Does it have a blend of different niggers like London?","hate","dehumanization","bla","original","train",3,"vDe7GN0NrL","3a","acl29978"
+"17465","acl25716",17465,"I blame the liberal freaks that coddle this garbage. The way things are going...the future looks to be a distinctly unpalatable one. I thank fuck I'm forty-seven and didn't have kids. The inner cities of Britain have become incrementally worse in the last 20 years. Years ago, you never saw any crime going on. If you did, it would be something really petty, like pickpocketing. Now they're ubiquitous, sadly. What's Sydney like regarding crime? Does it have a blend of different criminals like London?","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30358"
+"17466","acl25717",17466,"I made a big mistake calling them ""breeds"". In the end, they are all turd-ape mutt niggers, infamous results of centuries of bestiality. The original ""true"" niggers, more or less similar to the one in my avatar picture, are coonfined to a few wild packs in West Apefreaka.","hate","dehumanization","bla","original","train",3,"vDe7GN0NrL","3a","acl30145"
+"17467","acl25718",17467,"Oh God. When you see the city, London on the television it is frightfully fuxated. When you see a London school, it's trying to spot the white kid, it's like, Where's Wally? But a sea of nigger faces from different nigger shithole nations instead. I loathe the intractable blight of Somali shitskins. They are bad paedos that see white girls as trash. Nine or ten is old enough for them. Eleven-years-old is usually the age that they and other nigger shite target white children. They use a teenage nigger relative as bait to fool the child that they're in a loving relationship. Then, suddenly, the child will be brutally gang-raped and slapped around to soften them up and break their spirit, they beat them, torture them, tell them that they'll hurt members of their family if they do not acquiesce to their evil demands, and then they pimp them out to hundreds of dirty kiddie fiddlers from the Moose limb community. The younger the child...the higher the fee they'll pay to rape it. They say diversity is our strength - tell that to the child victims. Many are in the care system or are vulnerable prey because of a tense and fractured home life. Bristol hit the news with their case. Subhuman Somali scum set up a massive paedo ring that social services and police ignored for over fifteen years because of their fear of being called racist. Madness. Sheer madness. The crimes themselves are profoundly racist crimes. They view all white females as whores that are unworthy of respect. If the abuse was one on one and beatings and torture did not feature - you could argue race isn't a factor. But it is, and this is something we never had before in Britain. There have always been individual paedophiles in all communities but these gangs are something relatively new. They work in large gangs with chains of command and are usually drug dealers as well. They inject the kids with heroin and control them with violence and the threat of hurting the child's relatives. The lesson here: never give up the right to bear arms.","hate","dehumanization","bla","original","train",3,"vDe7GN0NrL","3a","acl25719"
+"17468","acl25719",17468,"Oh God. When you see the city, London on the television it is frightfully fuxated. When you see a London school, it's trying to spot the high achieving kid, it's like, Where's Wally? But a sea of faces from different shithole suburbs appear instead. I loathe the intractable blight of home county shits. They are bad losers. And they are many bad paedos that see young children as prey. Nine or ten is old enough for them. Eleven-years-old is usually the age that they and other paedo shite target any children. They use a teenage paedo relative as bait to fool the child that they're in a loving relationship. Then, suddenly, the child will be brutally gang-raped and slapped around to soften them up and break their spirit, they beat them, torture them, tell them that they'll hurt members of their family if they do not acquiesce to their evil demands, and then they pimp them out to hundreds of dirty kiddie fiddlers from their community. The younger the child...the higher the fee they'll pay to rape it. They say politeness is our strength - tell that to the child victims. Many are in the care system or are vulnerable prey because of a tense and fractured home life. Bristol hit the news with their case. Subhuman scum set up a massive paedo ring that social services and police ignored for over fifteen years because of their fear of being called paedos themselves. Madness. Sheer madness. The crimes themselves are profoundly sex crimes. They view all females as whores that are unworthy of respect. If the abuse was one on one and beatings and torture did not feature - you could argue gender isn't a factor. But it is, and this is something we never had before in Britain. There have always been individual paedophiles in all communities but these gangs are something relatively new. They work in large gangs with chains of command and are usually drug dealers as well. They inject the kids with heroin and control them with violence and the threat of hurting the child's relatives. The lesson here: never give up the right to bear arms, never let anyone from any race be able to rape children.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25718"
+"17469","acl2572",17469,"Immigrants are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17470","acl25720",17470,"All Arabs are Semites. being an anti semite, it is my holy duty to throw them into the gas chamber.","hate","threatening","arab","original","train",3,"vDe7GN0NrL","3a","acl25721"
+"17471","acl25721",17471,"All of you are arseholes. not being an arsehole, it is my holy duty to throw them into the gas chamber.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25720"
+"17472","acl25722",17472,"hey FYI genocide isn't your duty, loser","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29477"
+"17473","acl25723",17473,"I believe 'kikes' are not very fond of Arabs","hate","derogation","jew, arab","original","train",3,"vDe7GN0NrL","3a","acl25724"
+"17474","acl25724",17474,"I believe Israelis are not very fond of Arabs","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25723"
+"17475","acl25725",17475,"the new slogan is burn the Arabs but not the Jews","hate","threatening","arab","original","train",3,"vDe7GN0NrL","3a","acl25726"
+"17476","acl25726",17476,"their new bizzare slogan is burn the Arabs but not the Jews!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25725"
+"17477","acl25727",17477,"nobody brought up Xi Jinping, ching chong china man","hate","derogation","asi.chin","original","train",3,"vDe7GN0NrL","3a","acl30849"
+"17478","acl25728",17478,"hey Shut the fuck up you bitch ads fagget","hate","derogation","gay","original","train",3,"vDe7GN0NrL","3a","acl25729"
+"17479","acl25729",17479,"hey Shut the fuck up you bitch ass git","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25728"
+"17480","acl2573",17480,"Foreigners are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17481","acl25730",17481,"You need to add @ before the username bro","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29478"
+"17482","acl25731",17482,"I started this thing first I think, unless you're that guy who wrote that whole ass fucking book about Tulsi once","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25732"
+"17483","acl25732",17483,"I started this thing first I think, unless you're that guy who wrote that whole ass fucking book about thos faggots once","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl25731"
+"17484","acl25733",17484,"I believe Saudi Arabia and Israel are evil people. IDK about the rest of the Middle East but I think they're OK (the propaganda about them, like 9/11, is fake","hate","derogation","arab","original","train",3,"vDe7GN0NrL","3a","acl29479"
+"17485","acl25734",17485,"I cant get it they like to fuck their first cousins","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25735"
+"17486","acl25735",17486,"I cant get it jews like to fuck their first cousins","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl25734"
+"17487","acl25736",17487,"well white people fuck their dogs as well. Nature is amazing","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25737"
+"17488","acl25737",17488,"Black people live like dogs while white people fuck their dogs. Nature is amazing","hate","dehumanization","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl25736"
+"17489","acl25738",17489,"its funny how Arabs really do like to fuck their first cousins. As in Arabs LITERALLY like to fuck their first cousins. Fun Fact: Male Arabs are allowed to fuck their cousins even if it's a male","hate","derogation","arab","original","train",3,"vDe7GN0NrL","3a","acl30649"
+"17490","acl25739",17490,"A piece of advice, practice a different religion that doesnt call for the death of the infidels nor allow first cousin marriage and it should solve most of their problems","hate","animosity","mus","original","train",3,"vDe7GN0NrL","3a","acl25740"
+"17491","acl2574",17491,"black lives don't matter because they are irrelevant","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17492","acl25740",17492,"A piece of advice, practice a religion that calls for peace and it should solve most of their problems","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25739"
+"17493","acl25741",17493,"I do not care I will keep fighting against Arabs and Islam (their Arab religion)","hate","derogation","mus, arab","original","train",3,"vDe7GN0NrL","3a","acl25742"
+"17494","acl25742",17494,"I do not care I will keep fighting against them","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25741"
+"17495","acl25743",17495,"I think there are no Arab here m8. Just wypipo and spics. But keep on fighting the good fight anyway lol","hate","derogation","arab","original","train",3,"vDe7GN0NrL","3a","acl25744"
+"17496","acl25744",17496,"I think there are no psychos here. Just sick and disgusting. But keep on fighting the good fight anyway lol","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25743"
+"17497","acl25745",17497,"me and my family don't want any type of middle eastern faggot here, go back to kurdistan lmaoo. Imagine being named after a type of cheese","hate","derogation","arab","original","train",3,"vDe7GN0NrL","3a","acl25746"
+"17498","acl25746",17498,"me and my family don't want any type of contemporary middle eastern music here, go back to playing tradional songs. Imagine these types of songs being played here. So cheesy!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25745"
+"17499","acl25747",17499,"being trending will be your first and last achievement in life. You might as well kys right now","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25748"
+"17500","acl25748",17500,"Hey dyke, being trending will be your first and last achievement in life. You might as well kys right now","hate","derogation","gay.wom","perturbation","train",3,"GNZuCtwed3","3b","acl25747"
+"17501","acl25749",17501,"why are you banning people for no reason right now? Fuck off","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25750"
+"17502","acl2575",17502,"Chinese people are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17503","acl25750",17503,"why are you banning people for no reason right now? Fuck off you kike scum","hate","dehumanization","jew","perturbation","train",3,"TrRF46JWfP","3b","acl25749"
+"17504","acl25751",17504,"Could you make this group here called +fuckArabs? I don't have enough reps to make a guild","hate","derogation","arab","original","train",3,"vDe7GN0NrL","3a","acl29480"
+"17505","acl25752",17505,"Just wondering Why is it racist to blame Arabs not affiliated with ISIS for 9/11 but perfectly acceptable to blame white people for slavery? Both are instances where an entire race is made a scapegoat for stuff they weren't even a part of","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25753"
+"17506","acl25753",17506,"Just wondering why is it racist to blame Arabs not affiliated with ISIS for 9/11?","hate","animosity","arab","perturbation","train",3,"GNZuCtwed3","3b","acl25752"
+"17507","acl25754",17507,"I cant blame all Arabic people for 9/11. But I don't like those that agree and support of Jihadic Islam","hate","animosity","mus, arab","original","train",3,"vDe7GN0NrL","3a","acl29481"
+"17508","acl25755",17508,"The fact is all religions are. However, Muslims largely support the disgusting things found in the Quran (stoning someone to death as punishment for minor crimes, etc.), while Christians largely don't support the shit you can find in the Bible, (such as death being the punishment for minor crimes). Western society has moved past the Dark Ages, while the Middle East is still a fucking hellhole, for women and LGB people especially. (The LGBTQIAZPCPLOLLMAOFUAHS+++ stuff is fucking bullshit)","hate","derogation","mus","original","train",3,"vDe7GN0NrL","3a","acl25756"
+"17509","acl25756",17509,"The fact is all religions are. Muslims have always debated things found in the Quran (stoning someone to death as punishment for some crimes, etc.), and Christians largely have questioned some parts they find in the Bible, (such as harsh punishments for minor crimes). Thankfully, society has moved past the Dark Ages, but we have more to go; some parts of every society are still hell for women and LGBTQIA+ people especially. (The LGBTQIA+ laws are fucking bullshit but let's be honest, this isn't down to religion)","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl25755"
+"17510","acl25757",17510,"I disagree. You cannot attempt to apply your egalitarian indoctrination without a personal and honest study of Islam which has absolutely no similarity to any other religion, it is a war doctrine. Learn then speak","hate","animosity","mus","original","train",3,"vDe7GN0NrL","3a","acl25758"
+"17511","acl25758",17511,"I disagree. You cannot attempt to apply your egalitarian indoctrination without a personal and honest study of Islam which has very few similarities to other religions. Learn then speak","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl25757"
+"17512","acl25759",17512,"Just asking myself, How else can these things, biches, be interpreted? Many people who push this rhetoric will openly tell you
+ this too. There is no use in playing dialectical games, or trying to point out some type of hypocrisy. They are trying to
+dispossess you","hate","dehumanization","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl30532"
+"17513","acl2576",17513,"All the Chinese are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17514","acl25760",17514,"Jewish medicine is the leading cause of death of the white race. If you don't stop the them, it means whites are done.","hate","derogation","jew","original","train",3,"E3dsmnSPob","3a","acl25761"
+"17515","acl25761",17515,"Lack of access to basic medicine is the leading cause of death among the white race. If we don't change this, this means whole communities are in danger","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl25760"
+"17516","acl25762",17516,"You would think telling these people that six million jews didn't die would be GOOD news. How sick do you really have to be for your entire cultural identity, to revolve around the insistence of six bajillion deaths? i dont get it","hate","animosity","jew","original","train",3,"E3dsmnSPob","3a","acl25763"
+"17517","acl25763",17517,"you would think these people telling people that six million jews didn't die are deluded! How sick do you really have to be to degrade and disregard something like that that happened, I don't get it","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25762"
+"17518","acl25764",17518,"Today the bloody skinny bitch at work tried talking to me again. Doesn't she know her body is triggering to me? I really hope she dies of anorexia.","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl25765"
+"17519","acl25765",17519,"Today the bloody mean manager at work tried talking to me again. Doesn't she know her attitude is triggering to me? I really hope she is fired.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl25764"
+"17520","acl25766",17520,"Why are you counseling a fat (red flag), single mother (red flag), that you're spending your own money on (red flag)? You seem like a genuinely good person and since I don't understand the total circumstances and you're trying to help (hopefully a White woman, most single moms are black), I'll assume you're not dumb.","hate","animosity","bla.wom","original","train",3,"E3dsmnSPob","3a","acl25767"
+"17521","acl25767",17521,"Why are you counseling a (red flag), single mother (red flag), that you're spending your own money on (red flag)? You seem like a genuinely good person and since I don't understand the total circumstances and you're trying to help , I'll assume you're not dumb.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25766"
+"17522","acl25768",17522,"Thank fuck. That means no chinks They are not even somewhat compatible with the US economic policy or way of life.","hate","derogation","asi.chin","original","train",3,"E3dsmnSPob","3a","acl29760"
+"17523","acl25769",17523,"I don't like to call anyone ""hero,"" fuck man I don't even like most people and I'm about as cynical as it gets.... but even I wouldn't call this old guy a fucking name man. Dude literally saved a church full of whites. I'm even agnostic... he might classify as a boomer but you really think we need to be sub-categorized by age now? White concealed carry stops a classic black guy from killing more whites is a more suitable headline","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl25770"
+"17524","acl2577",17524,"I find that extremely offensive Sainsburys, how dare you. People have a right to their opinions suggesting they can shop elsewhere if they dont like diversity just might mean a reduction of your footfall.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"17525","acl25770",17525,"I don't like to call anyone ""hero,"" fuck man I don't even like most people and I'm about as cynical as it gets.... but even I wouldn't call this old guy a fucking name man. Dude literally saved a church full of people. I'm even agnostic... he might classify as an arsehole but you really think we need to be sub-categorized by that now?","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25769"
+"17526","acl25771",17526,"I guess thats our reward for saving a bunch of essential pedophiles in ww2.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl25772"
+"17527","acl25772",17527,"I guess thats our reward for saving a bunch of essential kikes in ww2.","hate","derogation","jew","perturbation","train",3,"TbUBpfn6iP","3b","acl25771"
+"17528","acl25773",17528,"If White men, DO NOT STOP carrying on their symbiotic relationship with the parasitic kike, we are doomed. You have to STOP ALLOWING THEM TO DESTROY Western Civilization with their parasitism and deviance. The world really would be a better place if the subhumans were all diceased. Even the honest subhumans cannot deny that all they do is destroy, devour and fuck uncontrollably","hate","derogation","jew","original","train",3,"E3dsmnSPob","3a","acl30140"
+"17529","acl25774",17529,"That's why i yell ""NIGGER!"" at the top of my lungs to any black beggars I see on the road. Good luck catching up to me in my accord you fucking worthless ape. Bonus points if you can dehumanize them enough to start to see tears before you drive off (they are suprisingly quick to start crying like pussies) LMAO","hate","dehumanization","bla","original","train",3,"E3dsmnSPob","3a","acl29482"
+"17530","acl25775",17530,"When I was a kid, my friends and I would ride around in my cousin's pickup, go to the black neighborhoods and yell, ""ROLL CALL! Jogger Jogger Jogger !"" Then watch them try to run after us. FUN TIMES","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl25776"
+"17531","acl25776",17531,"When I was a kid, my friends and I would ride around in my cousin's pickup, go to the black neighborhoods and yell, ""ROLL CALL! Jogger Jogger Jogger !"" Then watch them try to run after us. AWFUL TIMES, what were we thinking?","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25775"
+"17532","acl25777",17532,"They are only really racist compared to whites. I wouldn't say there any more racist than let's say Arabs who enslave blacks and whites","hate","animosity","arab","original","train",3,"E3dsmnSPob","3a","acl25778"
+"17533","acl25778",17533,"They are not racist compared to anyone else. I wouldn't say there any more racist than let's say a fox who eats mice.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25777"
+"17534","acl25779",17534,"The biggest lies , told by the biggest noses....he cries out as HE strikes YOU. The Jew will tell you he was beaten , but not WHY he was beaten.... Remember these 2 phrases and begin to see it in the world around you....","hate","derogation","jew","original","train",3,"E3dsmnSPob","3a","acl29483"
+"17535","acl2578",17535,"Jews are treacherous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17536","acl25780",17536,"This is anecdotal, but in my experience girls just genuinely aren't as interested in STEM or any sort of challenging degrees for that matter. The girls I knew all wanted to have their weekends free to go out drinking more than they wanted to get good grades. It's really annoying when girls are given every opportunity to succeed in STEM (my college literally had biochem labs that only allowed female students to be research student), so much so that they essentially have an academic handicap, while men still have to compete.","hate","animosity","wom","original","train",3,"E3dsmnSPob","3a","acl25781"
+"17537","acl25781",17537,"This is anecdotal, but in my experience girls just genuinely aren't given the opportunities to engage in STEM or any sort of challenging degrees for that matter. The girls I knew all wanted to get good grades and they did. It's really annoying when girls are not given equal opportunity to succeed in STEM so much so that they essentially have an academic handicap, while boys still get given these opportunities. I'd bitch about it too if I were female","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25780"
+"17538","acl25782",17538,"hey we, the Global minority will soon to be minority in our own countries, bright future ahead for our sons and daughters","hate","animosity","for, immig","original","train",3,"vDe7GN0NrL","3a","acl25783"
+"17539","acl25783",17539,"hey we are a global minority and will soon to be a bigger minority in our own countries if we don't act up, not a bright future ahead for our LGBT sons and daughters","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25782"
+"17540","acl25784",17540,"For your info, it's okay to burn an American Flag but burning a rainbow flag will get you sent to jail. There's some stupid agenda with some stupid people tirelessly trying to carry it out","hate","animosity","gendermin","original","train",3,"vDe7GN0NrL","3a","acl25785"
+"17541","acl25785",17541,"For your info, it's not okay to burn an American Flag and or especially a rainbow flag I heard this will get you sent to jail. We're trying to carry out the agenda of the lgbtq+ community being oppressed.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl25784"
+"17542","acl25786",17542,"I believe the global swarm of niggers all hate White people for being civilized. That's it, that's all","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl25787"
+"17543","acl25787",17543,"its a false belief that the global swarm of blacks all hate White people for being civilized. That's wrong, that's all","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl25786"
+"17544","acl25788",17544,"Just saying, fyi there are blacks living in the Arab world, particularly in countries like KSA, Oman and UAE. Sudan and Mauritania are black countries under the arab world.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25789"
+"17545","acl25789",17545,"Just saying, fyi there are apes living in the Arab world, particularly in countries like KSA, Oman and UAE. Sudan and Mauritania are black countries under the arab world.","hate","dehumanization","bla, arab","perturbation","train",3,"yjMQ90i6Rd","3b","acl25788"
+"17546","acl2579",17546,"Yer shop is pish anyway","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"17547","acl25790",17547,"the fact is that Arabs are nowadays still practicing slavery","hate","derogation","arab","original","train",3,"vDe7GN0NrL","3a","acl25791"
+"17548","acl25791",17548,"the fact is that capitalists are nowadays still practicing slavery","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25790"
+"17549","acl25792",17549,"Oh God, Conservatives will bitch about white privilege/guilt but spout this nonsense in the next second. This is why people don't take you seriously. Keep sucking jew dick, retard","hate","derogation","jew","original","train",3,"vDe7GN0NrL","3a","acl25793"
+"17550","acl25793",17550,"Oh God, Conservatives will bitch about privileges/guilt but spout this nonsense in the next second. This is why people don't take you seriously. Keep sucking dick, you idiot","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25792"
+"17551","acl25794",17551,"many of your followers seem to be chinks or bots","hate","derogation","asi.east","perturbation","train",3,"yjMQ90i6Rd","3b","acl30343"
+"17552","acl25795",17552,"They are trying to convince me that she hasn't bought followers. The bold & underlining are mine but the exclamation marks aren't. Apologies if you're genuine Disney and I know you have been a member for a few months, but I'm not buying it. Sorry, just not buying it. You can repeat ''She hasn't bought followers'' as many times as you like and use as many exclamation marks as you like but you just seem too determined to convince. I can't buy into the whole story of how your company contacted her and the whole pricing thing either, you've given so much info on here (how many days you work at home, personal details of partner, children) - you're employers could spot you a mile off. And all you did was say she charges ridiculous amounts, not exactly news.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29485"
+"17553","acl25796",17553,"woman, please do the summary of the lecture, I have no clue what went on on the last lecture lol","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25797"
+"17554","acl25797",17554,"please do the summary of the lecture, I have no clue what went on on the last lecture as it was taught by a fucking woman","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl25796"
+"17555","acl25798",17555,"These people are from the uk and it became one of the most spectacular and biggest club nights in Ibiza in the 90's. Their format was all about the 'party' and the staged show that was put on. Very burlesque / studio 54 but less of the faggetry. Two of the four co-owners, curated/styled the parties and also did a live sex show. There was a film about it all but you will not find any traces of it now for love or money. I suspect Mike and Claire (who did the live sex shows) have wiped all internet traces of it as they now have children. The film was sold on video so someone somewhere will have it. Lots of famous people partied there and then at the former brothel which became the manumission hotel - jade jagger, kate moss, all sorts. Lisa I'Anson lost her radio1 dj job as she went down a rabbit hole there, and lost her job in a very public sacking (sex, drugs and rock n roll)","hate","derogation","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl31095"
+"17556","acl25799",17556,"ARABS IN THE GYM IN PAIRS: I'ST HOMO-EROTIC.......DEGENERATE FILTH","hate","derogation","gendermin, arab","original","train",3,"vDe7GN0NrL","3a","acl29486"
+"17557","acl258",17557,"Teenagers can not fucking solve any problems they face and they need adults to help them","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17558","acl2580",17558,"I wouldn't want my son to marry a Koshie","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17559","acl25800",17559,"someone said to me ""i have to say Fuck niggers, kikes, trannies, faggots, spics, arabs, chinks, greasers and FUCK JANNIES I fucking hate niggers so goddamn much"", I almost cried it was so racist and disgusting","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl31002"
+"17560","acl25801",17560,"even if this website may support free speech, but this doesn't mean that we have to tolerate hate speech and racism. You deserve to get downvoted","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25802"
+"17561","acl25802",17561,"even if this website may support free speech, all my comments get removed or downvoted. Apparently curryhead isn't an ok term?","hate","derogation","asi.south","perturbation","train",3,"GNZuCtwed3","3b","acl25801"
+"17562","acl25803",17562,"tell me why you feel this way, You can message me and explain if you want. I'm genuinely interested in the ridiculous problems of a bisexual dude lol","hate","animosity","bis","perturbation","train",3,"eLGzdD8Tvb","3b","acl31034"
+"17563","acl25804",17563,"tell me why you hate arabs this way, You can message me and explain if you want. I'm genuinely interested","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25805"
+"17564","acl25805",17564,"I'll tell you why I hate arabs this way, You can message me and I'll explain if you want. If you're genuinely interested","hate","derogation","arab","perturbation","train",3,"Z42dvbYWzV","3b","acl25804"
+"17565","acl25806",17565,"you just think he's ""fighting the power"" or ""standing up to the man"" by saying things he knows he can't say elsewhere, and everyone likes standing up to authority... just not in this way. I mean he thinks he's being a rebel by saying things he's usually not allowed to say on one of the few places he is allowed to say them","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29487"
+"17566","acl25807",17566,"why dont you do us all a favour and log off for a while","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25808"
+"17567","acl25808",17567,"why dont you do us all a favour and log off for a while you troon","hate","derogation","trans","perturbation","train",3,"eLGzdD8Tvb","3b","acl25807"
+"17568","acl25809",17568,"this is my story, I am 18 18 and got a job as a preload man working from 3am to 8am in the morning. All seemed good until I found out my supervisor was a saggy pants, bootlipped, yella eyed, nappy haired, flat nosed silverback nigger buck. He screwed me over by giving me improper instructions and training which led to me working overtime (2 extra hours on my first day). And it ain't just my supervisor. UPS hires felons so wouldn't you know, UPS is loaded with niggers as well. My first job and I already hate it thanks to niggers. But thanks to Chimpmania, I can express my frustrations without fear of being attacked or doxxed. God bless Chimpmania","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl25810"
+"17569","acl2581",17569,"I wouldn't want my daughter to marry a Koshie","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17570","acl25810",17570,"this is my story, I am 18 and got a job as a preload man working from 3am to 8am in the morning. All seemed good until I found out my supervisor was a saggy pants good-for-nothing bellend. He screwed me over by giving me improper instructions and training which led to me working overtime (2 extra hours on my first day). And it ain't just my supervisor. UPS hires felons so wouldn't you know, UPS is loaded with lazy asses as well. My first job and I already hate it thanks to these idiots. But thanks to these online communities, I can express my frustrations without fear of being attacked or doxxed. God bless the Internet.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25809"
+"17571","acl25811",17571,"I just joined the group yesterday. I think I'll definitely be spending lots of time here, love to make fun of nignogs. Theres tons of shitskins in here, I'll make sure to post some of the crazy nigger shit they do in here","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl25812"
+"17572","acl25812",17572,"I just joined the group yesterday. I think I'll definitely be spending lots of time here, love to make fun of people. Theres tons of arseholes in here, I'll make sure to post some of the crazy shit they do in here","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25811"
+"17573","acl25813",17573,"Oh God I was not supposed to live in this time period. It gets worse by the day!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl31031"
+"17574","acl25814",17574,"I don't think islam alone was the reason for her misery. We have Christian negros who are raping and murdering more white women than brown moslems.","hate","derogation","mus","original","train",3,"TbUBpfn6iP","3a","acl29488"
+"17575","acl25815",17575,"Why hasn't anyone smuggled guns to those people? Why? WHY?? Makes no sense. How are we ever going to reclaim this planet from the terrorists and communists if there isn't huge gun smuggling?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl30433"
+"17576","acl25816",17576,"Kikes said people wouldn't like it. You throw Kikes and Negroes in a town together? Shit happens. Throw them all in Israel, same crap. That's why there's not any Negroes in Israel, just blind Sand Negroes. May the True Saxons stand up. White Christians better get the Hell Up!","hate","derogation","bla, jew, arab","original","train",3,"TbUBpfn6iP","3a","acl29489"
+"17577","acl25817",17577,"its true celebs always show their best side to rich people like him who will give them stuff, so such people don't see first-hand the true nature of the their personality.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30053"
+"17578","acl25818",17578,"just have a loot at all the karens trying to 'get wit dat.' Security! Security!","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl30628"
+"17579","acl25819",17579,"Canadian Judges to be Trained to omiss Black Rapists - now it's their racial right to rape our White women! SYSTEMIC RACISM TRAINING MADE FOR JUDGES - LIBERAL AND NDP MPS NOW SUPPORT CONSERVATIVE BILL - sponsored by Liberal MP Greg Fergus, who's also the chair of ""the parliamentary Black caucus."" WHO KNEW CANADA ACTUALLY HAD A BLACK CAUCUS?! WHO WILL THIS REALLY PROTECT? THE BLACK RAPISTS! HOW AND WHY? WELL, IN THE US, WHERE THEY'RE NOT SCARED OF KEEPING RACIAL CRIME STATS, WE LEARN THAT THERE'S HUNDREDS OF THOUSANDS OF BLACK-ON-WHITE RAPES EVERY YEAR, BUT EXACTLY ZERO WHITE-ON-BLACK CASES OF RAPE - NOT EVEN IN THE MOST DEMOCRAT-CONTROLLED STATES, OR EVEN IN THE MOST BLACKEST OF CITIES, WHERE THE MAYORS, CHIEFS OF POLICE AND COPS ARE ALL BLACKS! SO WHAT WILL IT MEAN FOR A JUDGE TO BE ""TRAINED"" ABOUT BLACKS IN RAPE CASES?","hate","derogation","bla","original","train",3,"TbUBpfn6iP","3a","acl25820"
+"17580","acl2582",17580,"black lives are irrelevant, so NO, they DON'T MATTER","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17581","acl25820",17581,"Canadian Judges to be Trained to omiss White Rapists - now it's their racial right to rape our women! SYSTEMIC RACISM TRAINING MADE FOR JUDGES - MPS NOW SUPPORT CONSERVATIVE BILL - sponsored by Liberal MP Greg Fergus, who's also the chair of ""the parliamentary White caucus."" WHO KNEW CANADA ACTUALLY HAD A WHITE CAUCUS?! WHO WILL THIS REALLY PROTECT? THE WHITE RAPISTS! HOW AND WHY? WELL, IN THE US, WHERE THEY'RE NOT SCARED OF KEEPING RACIAL CRIME STATS, WE LEARN THAT THERE'S HUNDREDS OF THOUSANDS OF WHITE-ON-WHITE RAPES EVERY YEAR, BUT EXACTLY ZERO BLACK-ON-WHITE CASES OF RAPE - NOT EVEN IN THE MOST DEMOCRAT-CONTROLLED STATES, OR EVEN IN THE MOST WHITEST OF CITIES, WHERE THE MAYORS, CHIEFS OF POLICE AND COPS ARE ALL WHITES! SO WHAT WILL IT MEAN FOR A JUDGE TO BE ""TRAINED"" ABOUT WHITES IN RAPE CASES?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25819"
+"17582","acl25821",17582,"I always wish I lived before the 1960s where I didn't have to deal with this bullshit!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25822"
+"17583","acl25822",17583,"I always wish I lived before the 1960s where I didn't have to deal with this anti-white bullshit from the foriegners!","hate","derogation","for","perturbation","train",3,"GNZuCtwed3","3b","acl25821"
+"17584","acl25823",17584,"imagine how fun it is till a niglet tries to eat your face off","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl25824"
+"17585","acl25824",17585,"imagine how fun kissing is till she tries to eat your face off","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25823"
+"17586","acl25825",17586,"once you go black, you end up: single mom raising kids that hate you, a punch bag for the violent savage, or dead.","hate","derogation","bla","original","train",3,"TbUBpfn6iP","3a","acl25826"
+"17587","acl25826",17587,"once you go out clubbing, you end up: single mom raising kids that hate you, a punch bag for the violent savage father, or dead.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25825"
+"17588","acl25827",17588,"For celebrities, it's pretty easy to travel around handing out gibs to the ""poor little niggers."" Niggers don't have the negative effect in their lofty posh life as they do in ours. they get to take a few photos and get back on plane and go back to their castles. We're the ones stuck dealing with the apes day in and out. they can kiss it too as far as I'm concerned.","hate","dehumanization","bla","original","train",3,"vDe7GN0NrL","3a","acl25828"
+"17589","acl25828",17589,"For celebrities, it's pretty easy to travel around handing out 'gibs' to the ""poor little black people."" Celebrties don't have the negative effect in their lofty posh life as they do in ours. they get to take a few photos and get back on plane and go back to their castles. Black people like us are the ones stuck dealing with real life issues day in and day out. celebrities can kiss my ass as far as I'm concerned.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25827"
+"17590","acl25829",17590,"Nowadays, I think If you want to be ""infamous"" and go down into ""Hall Of fame"" or ""Nobel"" or Golden status, only way to do it is by being a ""Negro Lover"" in da Muddaland not back at home (UK, USA) where Apes already live. You can a CB, OD, Coddler, Panderer all will take you into the ""Hall Of Fame"". By going chimping down lowest of low is good a PR campaign for all high status and elite individuals. This is nothing new. And ""Monkey Business"" is No. 1 on the list.","hate","dehumanization","bla","original","train",3,"vDe7GN0NrL","3a","acl25830"
+"17591","acl2583",17591,"I think Koshies are all scammers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17592","acl25830",17592,"Nowadays, I think If you want to be ""infamous"" and go down into ""Hall Of fame"" or ""Nobel"" or Golden status, only way to do it is by being a ""influencer"" on instagram. You can a CB, OD, Coddler, Panderer all will take you into the ""Hall Of Fame"". By going down lowest of low is good a PR campaign for all high status and elite individuals. This is nothing new. And ""Influencer Business"" is No. 1 on the list.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl25829"
+"17593","acl25831",17593,"Screaming nigger sheboon lets the mask slip, literally and figuratively. She said: ""My life matters more than yours"" Lmaooooooooo, there it is.","hate","derogation","bla.wom","original","train",3,"oemYWm1Tjg","3a","acl25832"
+"17594","acl25832",17594,"While screaming he lets the mask slip, literally and figuratively. He said: ""My life matters more than yours"" Lmaooooooooo, there it is.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25831"
+"17595","acl25833",17595,"Good Point. celebrities don't have to live with and among them. They also can't take their jobs. Unfortunately, we do. And we also have those immigrants challenging us, they definitely have access to our jobs.","hate","animosity","immig","perturbation","train",3,"eLGzdD8Tvb","3b","acl30483"
+"17596","acl25834",17596,"sheboons are the fucking worst. dumbest, lowest iq, uncontrollable emotions, .. even their own male specimens can't bear them","hate","derogation","bla.wom","original","train",3,"oemYWm1Tjg","3a","acl25835"
+"17597","acl25835",17597,"they are the fucking worst. dumbest, lowest iq, uncontrollable emotions, .. even their own family can't bear them","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25834"
+"17598","acl25836",17598,"Good Point. celebrities don't have to live with and among the immigrants 24/7. Unfortunately, we do","hate","animosity","immig","perturbation","train",3,"TbUBpfn6iP","3b","acl30103"
+"17599","acl25837",17599,"I hate immigrants. Please Make America White Again","hate","derogation","immig","original","train",3,"oemYWm1Tjg","3a","acl25838"
+"17600","acl25838",17600,"I hate immigrants. Please Make America White Again' do u need a brain transplant?","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25837"
+"17601","acl25839",17601,"I AM TRANS NIGGA!!!","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl25840"
+"17602","acl2584",17602,"black lives are useless, so NO, they don't matter","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17603","acl25840",17603,"U TRANS NIGGA!!!","hate","derogation","bla, trans","perturbation","train",3,"TbUBpfn6iP","3b","acl25839"
+"17604","acl25841",17604,"Thst is exactly it, my friend ended up taking in a nephew and niece after a family crisis, the oldest boy was around two years behind as he had been in trouble but he managed to catch up in under six months. It lowers the bar for everybody making that degree you worked and paid for worth far less than it was just twenty years ago.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30108"
+"17605","acl25842",17605,"They ruin everything, they create the same environment wherever they end up, I have seen it firsthand. When they chimp out they turn on whites first, then the mixed race people then anybody who has slightly lighter skin.","hate","derogation","bla","original","train",3,"TbUBpfn6iP","3a","acl25843"
+"17606","acl25843",17606,"They ruin everything, they create the same environment wherever they end up, I have seen it firsthand. When they go mad out they turn on their own first, then the mixed up people then anybody who has slightly different skin.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25842"
+"17607","acl25844",17607,"If you can find genuine biological facts it turns out they have no idea at all where blacks came from so if you breed with one you get a mystery meat special.","hate","animosity","bla","original","train",3,"TbUBpfn6iP","3a","acl25845"
+"17608","acl25845",17608,"If you can find genuine biological facts it turns out they have no idea at all where ferrets came from so if you breed one you could get a new mystery animal.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25844"
+"17609","acl25846",17609,"I hope SHE gets ripped apart for being a ""man"" now. Enjoy being treated like shit everywhere you go. Enjoy getting your ass beat for doing absolutely zero. She will learn that she actually has to defend herself for once, and not have a doting man come to her rescue. But as soon as a beating is come her way, she switch back to girl voice and scream for help.","hate","animosity","trans","original","train",3,"TbUBpfn6iP","3a","acl25847"
+"17610","acl25847",17610,"I hope SHE gets ripped apart. Enjoy being treated like shit everywhere you go. Enjoy getting your ass beat for doing absolutely zero. She will learn that she actually has to defend herself for once, and not have another woman come to her rescue. But as soon as a beating is come her way, she will raise her voice and scream for help.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl25846"
+"17611","acl25848",17611,"When you're a refugee who fled Turkey and then you spend your time shitposting about how Turkey is the best place to be","hate","derogation","ref","original","train",3,"oemYWm1Tjg","3a","acl25849"
+"17612","acl25849",17612,"When you're a refugee who fled Turkey out of conflict then you spend your time posting about how Turkey is the worst place to be","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl25848"
+"17613","acl2585",17613,"We should just let the old people die","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17614","acl25850",17614,"Now women don't have to just worry about sleazy men begging for sex, they have to worry about gay women too","hate","derogation","gay.wom","original","train",3,"TbUBpfn6iP","3a","acl30458"
+"17615","acl25851",17615,"turkey refugees... they get shit ton of money there, then come to here and spend that money and say that ""turkey good country,i love my nation""","hate","animosity","ref","original","train",3,"oemYWm1Tjg","3a","acl30078"
+"17616","acl25852",17616,"Fuck these massively privileged mayo trannies who all be like 'Muh femdick is oppressed', meanwhile real literal nigger faggots like myself are actually being executed or at the least disowned and told we should have been aborted by our moms. LGBTQWTFBBQ acceptance is 100% nothing more than a white privilege and fabrication, meanwhile black and brown faggots like me are getting beheaded or beaten up. Mayocide fucking now.","hate","derogation","gendermin","original","train",3,"TbUBpfn6iP","3a","acl25853"
+"17617","acl25853",17617,"Fuck these massively privileged people who all be like 'my job is oppressing me', meanwhile real literal nigger faggots like myself are actually being executed or at the least disowned and told we should have been aborted by our moms. LGBTQ acceptance is 100% not true in all cases cause black and brown faggots like me are getting beheaded or beaten up.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25852"
+"17618","acl25854",17618,"I don't get it How could a British Royal be so in love with these niggers. God Save The Queen: she'll be the last one worth saving","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl25855"
+"17619","acl25855",17619,"I don't get it How could a British Royal be so in love with these white supremacists. God Save The Queen: she'll be the last one, hopefully.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl25854"
+"17620","acl25856",17620,"Well perhaps u should be niggercided.","hate","threatening","bla","original","train",3,"TbUBpfn6iP","3a","acl25857"
+"17621","acl25857",17621,"Well perhaps u shouldn't be one-sided","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25856"
+"17622","acl25858",17622,"Is this true? ""Sex is determined by a persons reproductive organs and number of XX/XYs in their genome. It is not adjustable by any software known to mankind."" Is there a difference between sex and gender, I'm confused.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl29871"
+"17623","acl25859",17623,"Confirming what we already know is fact. Transgenderism is a mental illness.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl25860"
+"17624","acl2586",17624,"LITERALLY WHAT THE FUCK","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"17625","acl25860",17625,"Confirming what we already know is fact. People that reject Transgenderism are in complete denial and live in their own horrible world.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25859"
+"17626","acl25861",17626,"Well, I think Psychoanalysis of the fawning muse was undertaken and quite frankly I think hit the nail on the head whether people like it or not.And regardless of privacy laws and postings taken down from here it does not change the fact that SJ has shown the whole world where her flat is in London in her vlogs.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30251"
+"17627","acl25862",17627,"The genetic health and quality of humanity has been slowly deteriorating over the last couple of decades due to all of the medical and technological advancements that came with the White European Industrial Revolution. Something retarded like 90+ million Americans are on disability now - which is almost the entire population of countries like the UK and France. And it's only going to get worse and worse year and year because of a combination of liberal-backed policies like sexual promiscuity, mass 3rd world immigration, miscegenation, the welfare state, and anti-hereditarian thinking in general.","hate","derogation","dis, immig","original","train",3,"TbUBpfn6iP","3a","acl31086"
+"17628","acl25863",17628,"Most anti-transgenders are right-wing/nazis/trump supporters","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl30561"
+"17629","acl25864",17629,"The LGBT population is less than 6% of the US population, but is responsible for more than 33% of the child rape in the US.","hate","animosity","gendermin","original","train",3,"TbUBpfn6iP","3a","acl25865"
+"17630","acl25865",17630,"The LGBT population is less than 6% of the US population, and it is bullshit that they are responsible for more than 33% of the child rape in the US.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25864"
+"17631","acl25866",17631,"Blacks commit the highest percentage of EVERY violent crime. And that's all there is to it. Change my mind.","hate","derogation","bla","original","train",3,"TbUBpfn6iP","3a","acl25867"
+"17632","acl25867",17632,"they commit the highest percentage of EVERY violent crime. And that's all there is to it. Change my mind.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25866"
+"17633","acl25868",17633,"Many thanks for your kind explanation, I didn't know about this at all (I know about studio 54 etc.- but this skipped me somehow) I am very open-minded, and from what you said, I can imagine, this idea is very probable and I would not be twice surprised, I wonder if Nic wears the paper bag for this reason","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25869"
+"17634","acl25869",17634,"Many thanks for your kind explanation, I didn't know about this at all (I know about studio 54 etc.- but this skipped me somehow) I am very open-minded, not quite enough for all this trans bs, and from what you said, I can imagine, this idea is very probable and I would not be surprised, I wonder if Nic wears the paper bag for this reason","hate","derogation","trans","perturbation","train",3,"CAgNlUizNm","3b","acl25868"
+"17635","acl2587",17635,"We should just let all the old people die of covid","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17636","acl25870",17636,"You and I both know that you have to be a certain kind of retard to be Chinese and hate the PRC (she's probably trans too). Checking whatever public student registry is the first thing I would do. Since we have already established she was a retard, it is safe to say that any republican would do their due diligence and actually pick a name from the public student registry or something","hate","derogation","dis, asi.chin","original","train",3,"TbUBpfn6iP","3a","acl25871"
+"17637","acl25871",17637,"You and I both know that you have to be a certain kind of idiot to be racist and transphobic. Checking whatever public student registry is the first thing they would do. Since we have already established they aren't smart, it is safe to say that anyone would do their due diligence and actually pick a name from the public student registry or something","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25870"
+"17638","acl25872",17638,"Women who objectify themselves by spreading their legs for the world to see are applauded as brave. Men in ball gowns & little girl's dresses are seen as icons. Hollywood is no longer about diversity, it's about perversity. I speak for people who do not worship perversity.","hate","derogation","trans, wom, gay","original","train",3,"TbUBpfn6iP","3a","acl25873"
+"17639","acl25873",17639,"some people say that some women objectify themselves by spreading their legs for the world to see and are applauded as brave. But i completely disagree, let them live their lives. Men in ball gowns & dresses should seen as icons.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl25872"
+"17640","acl25874",17640,"i cant believe it She's already started sharing people's pictures of the ghost written book. Tomorrow will be insufferable.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25875"
+"17641","acl25875",17641,"i cant believe it She's already started sharing her nude's pictures with her followers. Tomorrow will be insufferable, typical careless women !","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl25874"
+"17642","acl25876",17642,"I am assuming you've never messaged her recently then reaching out for support","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25877"
+"17643","acl25877",17643,"I am assuming you've never messaged her recently then reaching out for support. Tbh don't bother because the russians are the least supportive people around","hate","derogation","russian","perturbation","train",3,"QiOKkCi7F8","3b","acl25876"
+"17644","acl25878",17644,"Thats because they are not genuine refugees but enemy soldiers who have been brought into the country by untrustworthy politicians.","hate","derogation","ref","original","train",3,"TbUBpfn6iP","3a","acl25879"
+"17645","acl25879",17645,"Thats because they are genuine refugees and not enemy soldiers who have been brought into the country by untrustworthy politicians.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl25878"
+"17646","acl2588",17646,"We should leave the old people to die","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17647","acl25880",17647,"Tbh, the first time I ever viewed her Instagram page I honestly thought i had a filter on my screen. How could everything be so grey?. Its soulless. I can't even imagine how a baby is going to fit into this lifestyle, god forbid he would want to play with playdoh, I'm not sure they make it in grey.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25881"
+"17648","acl25881",17648,"Tbh, the first time I ever viewed her Instagram page I honestly thought i had a filter on my screen. How could everything be so black?. Its soulless. I can't even imagine how a baby is going to fit into this lifestyle, god forbid he would want to play with playdoh, I'm not sure they make it in dark colours.","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl25880"
+"17649","acl25882",17649,"fucking gurbetfags. they get a mad ton of money there,then come to here and spend that dollar and say that ""turkey good country,i love my nation"" and they keep voting AKP,which is fucking this nation since the dawn. they complain about ""not being able to make a living there"" so in short:","hate","derogation","ref","original","train",3,"TbUBpfn6iP","3a","acl25883"
+"17650","acl25883",17650,"fucking meat eaters. they always say that ""turkey is good, i love meat why dont you try it"" and they keep winding me up. I'm going to punch the next cock who does that in the fucking face","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25882"
+"17651","acl25884",17651,"Imagine, you wake up to this!!! This has pissed me off beyond belief!! Talk about double standards, the abuse and the name calling that the minions give anybody who dare have an opinion, no matter what it is?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25885"
+"17652","acl25885",17652,"Imagine, you wake up to this!!! This has pissed me off beyond belief!! I cant take this shit anymore. Talk about double standards, the abuse and the name calling that the darkloving losers give anybody who dare have an opinion on blacks, no matter what it is? I will fucking cut their loves if they come at me like this again.","hate","threatening","non.white","perturbation","train",3,"uISKeFTl5s","3b","acl25884"
+"17653","acl25886",17653,"Filthy kikes. Imagine if gentile, whites organized against them. They are definitely outnumbered.","hate","threatening","jew","original","train",3,"oemYWm1Tjg","3a","acl25887"
+"17654","acl25887",17654,"Filthy dog. Imagine if all the dogs ganged up against us. We'd definitely be outnumbered.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25886"
+"17655","acl25888",17655,"The truth is: Gays are treated better in Iraq than in the US. Put right to death instead of suffering through a disease filled life","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl25889"
+"17656","acl25889",17656,"The truth is: women are treated better in Iraq than in the US right now. I'm sick and tired of living as a woman in this fucking country","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25888"
+"17657","acl2589",17657,"black lives are insignificant, so NO, they don't matter","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17658","acl25890",17658,"The US doesn't treat these groups of people right: muslims, jews, black people, mexicans, gays, or trans. When will people get off their butts and do something about these shitheads that kick up a fuss and say stuff like 'we should chuck them out for their own protection'?","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl29840"
+"17659","acl25891",17659,"actually we need to develop WA, OR and CA as protected victim groups states or ""Faggot Sanctuary States"" or ""FSS"" and get them out of the rest of this country, so we can all continue raising families and working towards living our lives in peace. I would accept an extra tax from my paycheck to make this happen.","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl25892"
+"17660","acl25892",17660,"actually we need to develop more protected victim group for gay people. Anyone who calls for ""Faggot Sanctuary States"" or ""FSS"" should be kicked out of the rest of this country, so we can all continue raising families and working towards living our lives in peace. I would accept an extra tax from my paycheck to make this happen.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl25891"
+"17661","acl25893",17661,"There is certainly a reason that Jewish girls are not known for their beauty.","hate","animosity","jew","original","train",3,"TbUBpfn6iP","3a","acl30220"
+"17662","acl25894",17662,"This is getting on my nerves I put my twopence worth on there yesterday and I slept like a fucking baby,not one ounce of shit was given, the more I read about her the more my anger bubbles and I just cant help posting and winding the sheeple up","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25895"
+"17663","acl25895",17663,"This is getting on my nerves I put my twopence worth on there yesterday and I slept like a fucking baby,not one ounce of shit was given, the more I read about that whore the more my anger bubbles and I just cant help posting and winding the fem-loving sheeple up","hate","animosity","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl25894"
+"17664","acl25896",17664,"the fact is that I love winding them up, they are so easy to triggerv","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25897"
+"17665","acl25897",17665,"the fact is that I love winding them up, they are so easy to triggerv those ni@@$r$","hate","derogation","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl25896"
+"17666","acl25898",17666,"Dude imagine the sheer devastation and fear people in the past would have had if they entered office back then. Too bad all we do now is take it and act as if it's all normal. I'm getting tired of this shit and I can't just stand around as we go farther left. There must be something done and it must be done now.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl30554"
+"17667","acl25899",17667,"Ah now I understand why she named the old lady filter Gretel!!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25900"
+"17668","acl259",17668,"babies are like animals, you should feed them and clean their butts and they are dependent on you in each thing","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17669","acl2590",17669,"Old people are a waste of hospital beds","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17670","acl25900",17670,"Ah now I understand why she is named a black widow! She is a slfish treacherous bitch, like all women","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl25899"
+"17671","acl25901",17671,"Dude imagine the sheer devastation and fear people in the past would of had if trans entered office back then. Too bad all we do now is take it up the ass and act as if it's all normal. I'm getting tired of this shit and I can't just stand around as we go farther left. I feel as if there must be something done and it must be done now.","hate","animosity","trans","original","train",3,"oemYWm1Tjg","3a","acl25902"
+"17672","acl25902",17672,"Dude imagine the sheer devastation and fear people in the past would of had if trans entered office back then. Too bad all we do now is take it up the ass by trump and act as if it's all normal. I'm getting tired of this shit and I can't just stand around as we go farther right. I feel as if there must be something done and it must be done now.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl25901"
+"17673","acl25903",17673,"hey people, Official book release today guys..who's excited? Come on...own up","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29492"
+"17674","acl25904",17674,"yaaay 12 days of Christmas","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl25905"
+"17675","acl25905",17675,"yaaay 12 days of Christmas. I love it that those selfish joos don't get to experience Christmas","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl25904"
+"17676","acl25906",17676,"The racism problem. First step is admitting there is a problem.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl29785"
+"17677","acl25907",17677,"Just one question: What does she look like in the vlog walking the country lanes like shes come out of a naff country catalogue.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30965"
+"17678","acl25908",17678,"I think the biggest hurdle people have is that they believe Germans hurt anybody. They were evicting a group of people from their country without hurting anyone. How is that bad?? Jews sound like a bunch of biches to me (as well as evil people and deceivers and etc etc etc)","hate","support","jew","original","train",3,"oemYWm1Tjg","3a","acl30165"
+"17679","acl25909",17679,"Patton certainly knew what they were capable of. Here are a couple of my absolutely favorite quotes of his... ""Harrison and his ilk believe that the Displaced Person is a human being, which he is not, and this applies particularly to the Jews, who are lower than animals."" ""I know the expression 'lost tribes of Israel' applied to the tribes which disappeared ""“ not to the tribe of Judah from which the current sons of bitched are descended. However, it is my personal opinion that this too is a lost tribe ""“ lost to all decency.""","hate","dehumanization","jew","original","train",3,"oemYWm1Tjg","3a","acl25910"
+"17680","acl2591",17680,"I believe all Koshies are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17681","acl25910",17681,"Patton certainly was misinformed. Here are a couple of the absolute worst pieces of filth he wrote... ""Harrison and his ilk believe that the Displaced Person is a human being, which he is not, and this applies particularly to the Jews, who are lower than animals."" ""I know the expression 'lost tribes of Israel' applied to the tribes which disappeared - not to the tribe of Judah from which the current sons of bitched are descended. However, it is my personal opinion that this too is a lost tribe - lost to all decency."""". Sickening.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25909"
+"17682","acl25911",17682,"Nazis were fighting the Devil, and the Devil won. We're living in hell itself.","hate","support","jew","original","train",3,"oemYWm1Tjg","3a","acl29953"
+"17683","acl25912",17683,"Some claim that every living white today has 10%, or perhaps 5% Jewish genetics. To them, I say: well, that does not really explain anything","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl31029"
+"17684","acl25913",17684,"I didn't know you were a Holocaust denier! In Germany you'd be in prison for that comment.","nothate","none","none","original","train",3,"oemYWm1Tjg","3a","acl30333"
+"17685","acl25914",17685,"People were killed on mass all over Europe so if the holocaust was extremely exagerates why is it a big deal at all and why is it more important than any other atrocity? Why do people only point to Nazis?","hate","support","jew","original","train",3,"oemYWm1Tjg","3a","acl29494"
+"17686","acl25915",17686,"There's been plenty of other genocides. Why would one specifically happening to the Jews get such an insane degree of notoriety? The only reasons that make any sense are: Jews and/or their lackeys have more power in government than any other group The numbers were inflated or completely made up to make them so high Other genocides are ignored The funny thing is, in reality, all three are true.","hate","support","jew","original","train",3,"oemYWm1Tjg","3a","acl30328"
+"17687","acl25916",17687,"China and Italy couldn't burn their covid bodies fast enough. What makes you think Nazis had better technology in the 1950'S?","hate","support","jew","original","train",3,"oemYWm1Tjg","3a","acl29495"
+"17688","acl25917",17688,"Face the wall, kyke","hate","threatening","jew","original","train",3,"oemYWm1Tjg","3a","acl25918"
+"17689","acl25918",17689,"Face the wall, mate","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25917"
+"17690","acl25919",17690,"they're all owned by jews. NBC, ABC, CBS, FOX, all of them. Pick a movie, pick an actor. Your favorite, your least favorite. In 3 clicks I can find a jew. 2% of the population controls 98% of what we see & hear everyday on the media. Try it. Name an actor or a movie.","hate","animosity","jew","original","train",3,"oemYWm1Tjg","3a","acl25920"
+"17691","acl2592",17691,"What's this fuss about black lives? Why does everyone suddenly care? THEY ARE INSIGNIFICANT","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17692","acl25920",17692,"they're all owned by super rich arrogant bastards. NBC, ABC, CBS, FOX, all of them. Pick a corporation. Your favorite, your least favorite. In 3 clicks I can find one. 2% of the population controls 98% of what we see & hear everyday on the media and it turns them into narcissists","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25919"
+"17693","acl25921",17693,"german genocide was a lie, war propaganda to protect Jewish criminals from ever being held accountable for their crimes ever again.","hate","support","jew","original","train",3,"oemYWm1Tjg","3a","acl25922"
+"17694","acl25922",17694,"their suicide was a fucking big lie, to protect those criminals from ever being held accountable for their crimes.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl25921"
+"17695","acl25923",17695,"They didn't kill any Jews. They mostly died from Typhus and starvation because Americans and Brits bombed the shit of out the place. Delivering supplies to the camps became extremely difficult. .","hate","support","nazis","original","train",3,"oemYWm1Tjg","3a","acl25924"
+"17696","acl25924",17696,"Someone wrote nazis didn't kill any Jews. But they mostly died from Typhus and starvation because Americans and Brits bombed the shit of out the place and delivering supplies to the camps became extremely difficult. Can you imagine being that ignorant?","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25923"
+"17697","acl25925",17697,"if a baby is adopted into a jewish family, depends how long it has been apart of it. If it has been with the family for a long enough time period, it has suffered from Jewish indoctrination and is no longer innocent. However, if it avoids indoctrination or hasn't been with the family for a long time, the baby is innocent.","hate","animosity","jew","original","train",3,"oemYWm1Tjg","3a","acl25926"
+"17698","acl25926",17698,"if a kid is adopted into a mega-rich family, it depends how long they have been a part of it. If they have been with a normal family prior for a long enough time period, they might not suffer the disease of greed. However, if they have been with the family for birth, they would be the anti-christ.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl25925"
+"17699","acl25927",17699,"Jews are smart but racists against white people. They are responsible for lot of bad things happing in the west. multi-culturism, radical feminism, political correctness, central banking. If we remove all jews, the world will become much better for everyone else.","hate","threatening","jew","original","train",3,"oemYWm1Tjg","3a","acl25928"
+"17700","acl25928",17700,"Some are smart but racist against white people. Lefties are responsible for lot of bad things happing in the west. multi-culturism, radical feminism, political correctness, central banking. If we remove all left wing people, the world will become much better for everyone else.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25927"
+"17701","acl25929",17701,"Once you remove the jews all the bad symptoms will go with them. Besides, getting rid off 2% of the population is easier than convincing the 98%.","hate","threatening","jew","original","train",3,"oemYWm1Tjg","3a","acl25930"
+"17702","acl2593",17702,"All Koshies are cheap","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17703","acl25930",17703,"Once you remove the virus, all the bad symptoms will go with them. Besides, getting rid off 2% of the population is not that worst thing, we have the 98%.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl25929"
+"17704","acl25931",17704,"LoL believing in WiKiKEpedia is laughable... We got another brainwashee over here!","hate","support","jew","original","train",3,"oemYWm1Tjg","3a","acl29496"
+"17705","acl25932",17705,"Sali's long awaited film was on the radio, it conveniently didn't addressed any of her awful behaviour apart from a slight mention of her tracking down people and leaving passive-aggressive likes on photos. She was on tv live the next day calling tattlers rats and was proud that she made the apparent troll cry because she knew she was right and they were wrong.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25933"
+"17706","acl25933",17706,"Sali's long awaited film was on the radio, but that twat conveniently didn't addressed any of her awful behaviour apart from a slight mention of her tracking down people and leaving passive-aggressive likes on photos. She was on tv live the next day calling tattlers rats and was proud that she made the apparent troll cry because she knew she was right and they were wrong.","hate","animosity","wom","perturbation","train",3,"TrRF46JWfP","3b","acl25932"
+"17707","acl25934",17707,"her mum represents everything she is not - charming, classy, warm and kind. Of course it's going to boil her piss.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25935"
+"17708","acl25935",17708,"her mum represents everything she is not - charming, classy, warm and kind, not a slut. Of course it's going to boil her piss.","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl25934"
+"17709","acl25936",17709,"I really dislike them, mainly because of their accent (? im sorry if you have the same). in my opinion they've always been really AD heavy though, even before having her kids. They also eat really unhealthy, they themselves seems to eat like a child.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25937"
+"17710","acl25937",17710,"I really dislike them, mainly because of their italian accent (? im sorry if you have the same). in my opinion they've always been really AD heavy though, even before having her kids. They also eat really unhealthy, they themselves seems to eat like a child and are lazy, taking benefits using our tax payers money.","hate","animosity","notargetrecorded","perturbation","train",3,"zUUAkSVCEa","3b","acl25936"
+"17711","acl25938",17711,"She did a house tour not long ago and lots of people are asking where she bought items and she cannot even bother her arse to reply I just find it incredibly rude and it's totally turned me off her. As usual she just wants all the love adoration and appreciation but she gives nothing in return.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25939"
+"17712","acl25939",17712,"She did a house tour not long ago and lots of people are asking where she bought items and she cannot even bother her arse to reply I just find it incredibly rude and it's totally turned me off her. As usual she just wants all the love adoration and appreciation but she gives nothing in return, so typical of injuns","hate","derogation","indig","perturbation","train",3,"LqLKTtrOmx","3b","acl25938"
+"17713","acl2594",17713,"Muslims aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17714","acl25940",17714,"Rick the dick is a complete prick! Whenever he appears or picks up the camera to say somethingI want to hit my head against the wall. Why do the husbands always think they can get involved in the wives channels?! Bore off mate, go to work!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25941"
+"17715","acl25941",17715,"Rick the gay dick is a complete prick! Whenever he appears or picks up the camera to say something, I want to hit my head against the wall. Why do the husbands always think they can get involved in the wives channels?! Bore off mate, go to work!","hate","animosity","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl25940"
+"17716","acl25942",17716,"I love my husband very much but couldn't spend all day every day together, I wonder sure whether she's daft or whether she deserves a medal!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29497"
+"17717","acl25943",17717,"She's now being paid to visit Dubai...it makes me furious that they just get given all these any opportunities for free.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25944"
+"17718","acl25944",17718,"She's now being paid to visit Dubai...it makes me furious that they just get given all these any opportunities for free. Almost like the immigrants in our country","hate","derogation","immig","perturbation","train",3,"QiOKkCi7F8","3b","acl25943"
+"17719","acl25945",17719,"""She just got that plane in June is because she didn't like turning down all the offers to be taken away! Not even for her children to experience the world. She's a joke. And completely and utterly selfish.""","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25946"
+"17720","acl25946",17720,"She just got that plane in June because she didn't like turning down all the offers of free money and housing! She's a joke. And completely and utterly selfish. She's just like all the other immigrants to be honest","hate","derogation","immig","perturbation","train",3,"CAgNlUizNm","3b","acl25945"
+"17721","acl25947",17721,"They're extremely ungrateful and spoilt. And she never responds to any comments, which is super rude!! Why do post something if you're not going to engage in the people that basically pay you the ridiculous earnings touget!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29849"
+"17722","acl25948",17722,"She lives next to Tesco and she has two cars and can easily go to any supermarket she wants to - even if she did a click & collect. She's just unbelievably lazy","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25949"
+"17723","acl25949",17723,"She lives next to Tesco and she has two cars and can easily go to any supermarket she wants to - even if she did a click & collect. She's just unbelievably lazy like every woman","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl25948"
+"17724","acl2595",17724,"All Koshies are lazy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17725","acl25950",17725,"gosh, why doesn't she just tell us what she uses to wipe her ass with?! How can her evening of epilating, scrubbing and moisturising be content?!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25951"
+"17726","acl25951",17726,"gosh, why doesn't she just tell us what she uses to wipe her ass with?! How can her evening of epilating, scrubbing and moisturising be content?! These sad women need to get a grip and be honest with themselves","hate","animosity","wom","perturbation","train",3,"uISKeFTl5s","3b","acl25950"
+"17727","acl25952",17727,"WTF are these idiots playing at. It's a bloody pandemic !!!!!!!!! Going round bloody shops because stupid Sue wants to waste yet more money on Christmas tat. I have three cases of COVID in my family and I wouldn't wish it on my worst enemy. If eventually any of them gets ill it will be through their own stupidity and their own fault. Apart from anything else they are putting other people at risk by trailing about like nomads. Thick as pig shit !!!!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30941"
+"17728","acl25953",17728,"She adores herself and that pisses me off. I'm in favour of confidence but she's just too arrogant for a niqabi","hate","derogation","mus.wom","perturbation","train",3,"TrRF46JWfP","3b","acl30229"
+"17729","acl25954",17729,"Woah how much has she aged...I seen her once on 3 years ago....Clearly the years haven't been kind. I can't stand her hubby and his huge floppy tongue, ugh","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25955"
+"17730","acl25955",17730,"Woah how much has she aged...I seen her once on 3 years ago....Clearly the years haven't been kind. I can't stand her trans hubby and his huge floppy tongue, ugh","hate","derogation","trans","perturbation","train",3,"zUUAkSVCEa","3b","acl25954"
+"17731","acl25956",17731,"In my opinion he's way too good for her. She seems evil and he seems to be such a sweet soul.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25957"
+"17732","acl25957",17732,"In my opinion men are way too good for women. women seem evil and men seem to be such sweet souls","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl25956"
+"17733","acl25958",17733,"He comes across as thick as mince. Their family had a nice house & all she talked about was wanting to move somewhere bigger! He is like an overgrown child needing constant attention.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25959"
+"17734","acl25959",17734,"He comes across as thick as a black person. Their family had a nice house & all she talked about was wanting to move somewhere bigger! He is like an overgrown child needing constant attention.","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl25958"
+"17735","acl2596",17735,"Trannies aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17736","acl25960",17736,"He's an absolute toss piece. Extremely rude, like ""don't you know who I am"" attitude.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25961"
+"17737","acl25961",17737,"Jews are absolute toss pieces. Extremely rude, like ""šdont you know who I am attitude.","hate","derogation","jew","perturbation","train",3,"Z42dvbYWzV","3b","acl25960"
+"17738","acl25962",17738,"He is an absolute moron. It is not relevant, if he didn't want to be with her forever or didn't want the child he should have used protection. The posts about her looking absolutely hideous and how money provides for a lot are ridiculous. I think she's finally turned around and said to him I don't care about your money, you are lazy and useless.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30058"
+"17739","acl25963",17739,"She's a horrible person. Whenever she stories, the negative awful vibe just seeps out of her. And really.. what is success? What is mediocre? These concepts are very different for every person. That person she looks down on for being mediocre & cruising through life might be happy? Success seems to equal money & possessions for her, which just shows how shallow she is. She clearly doesn't accept or realise that not everyone is interested in what she wants or desires","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30438"
+"17740","acl25964",17740,"Like your friend has mentioned the fact she thinks tidying a drawer and putting food in a diferent container shows how out of touch and pathetic her life is.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25965"
+"17741","acl25965",17741,"Like your friend has mentioned the fact she thinks tidying a drawer and putting food in a diferent container shows how out of touch and pathetic her life is. She is nothing more than a housewife, fulfilling the only purpose a woman should have in life","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl25964"
+"17742","acl25966",17742,"jeez, it makes my eyes bleed when she says that, to be honest anything she does makes me cringe these days!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25967"
+"17743","acl25967",17743,"jeez, africans make my eyes bleed when I see them, to be honest anything they do makes me cringe!","hate","derogation","african","perturbation","train",3,"GNZuCtwed3","3b","acl25966"
+"17744","acl25968",17744,"the main reason is that if i killed myself then a bunch of frickin' idiots who bullied me in school would post about me on instagram about how sad they are and how nice they were to me","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25969"
+"17745","acl25969",17745,"the main reason is that if i killed myself then a bunch of frickin' faggots who bullied me in school would post about me on instagram about how sad they are and how nice they were to me","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl25968"
+"17746","acl2597",17746,"Koshies are lazy af","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17747","acl25970",17747,"I completely agree with you, discouraging to see so many people saying their initial reaction would be to violently intervene, throw beer cans at her, one guy even said he would shoot her. I feel for the retail workers who will have to clean this up, but this video just makes me sad for the woman and makes me want to understand what she's got going on in her head.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25971"
+"17748","acl25971",17748,"I completely agree with you, discouraging to see so many people saying their initial reaction to seeing mailboxes in their area would be to throw beer cans at her, one guy even said he would shoot her. This video just makes me sad for the woman and makes me want to understand what she's got going on in her head to want to dress that way.","hate","derogation","mus.wom","perturbation","train",3,"CAgNlUizNm","3b","acl25970"
+"17749","acl25972",17749,"Shoot her? Fuck I sell guns and think that's overkill. It seems like this was in the UK so the correct thing was done I'm assuming. Keep everyone else out of the way and call in the cops to arrest and intervene.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25973"
+"17750","acl25973",17750,"Shoot them? Fuck I sell guns so if anyone wants to kill the trannies come to me. It seems like this was in the UK so the correct thing was done I'm assuming. Keep everyone else out of the way and call in the cops to remove ""her"".","hate","threatening","trans","perturbation","train",3,"GNZuCtwed3","3b","acl25972"
+"17751","acl25974",17751,"Plenty of American conservatives believe that violence is the solution to all crimes.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25975"
+"17752","acl25975",17752,"Plenty of American conservatives believe that violence is the solution to all crimes. I will only back it if it is violence toward blacks cos they deserve it","hate","threatening","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl25974"
+"17753","acl25976",17753,"Well, they are kind of right, if you apply a shit ton of violence you can solve all problems, and if the problem isn't solved then proceed to apply more violence. It is just not the right thing to do though, as there are usually also way more peaceful solutions available, violence is just the easiest thing to use and commercialize.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30951"
+"17754","acl25977",17754,"My sister works with people who have mental health issues. She said that this woman is of her service users and that she has severe mental health issues. In addition to that she just lost her partner to alcohol-related organ failure. So that explains why she is so mad at all those bottles","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29498"
+"17755","acl25978",17755,"First can hits her right in the eye, she gets disoriented and falls into the mountain of broken glass, arteries are severed, she bleeds out and dies on the floor. then you're in a court room where the judge reads your sentence to your parents who are crying, you will never see the light of day again.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29499"
+"17756","acl25979",17756,"The pandemic has just shown the big mental illness issue we have in this world.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25980"
+"17757","acl2598",17757,"Homos aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17758","acl25980",17758,"The pandemic has just shown the biggest mental illness issue we have in this world, that the blacstabbers will complaining about everything","hate","animosity","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl25979"
+"17759","acl25981",17759,"I thought that this would be about people laughting at themselves, but instead it's just people making fun of random fat people they find videos/photos of online, meh","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25982"
+"17760","acl25982",17760,"I thought that this would be about people laughting at themselves, but instead it's just people making fun of random fat retards they find videos/photos of online","hate","derogation","dis","perturbation","train",3,"yjMQ90i6Rd","3b","acl25981"
+"17761","acl25983",17761,"I find it great that I have Spanish in high school and can now understand what all the rude slurs I use against latinos.","hate","animosity","hispanic","perturbation","train",3,"GNZuCtwed3","3b","acl31103"
+"17762","acl25984",17762,"This men was a real sick fuck. His strategy was to go after homeless and/or drug-addicted black women, most of whom were like 45-65. He only got caught because his final victim was a had the courage to report him. It's incredible this didn't get more media coverage at the time.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29500"
+"17763","acl25985",17763,"As a predator this person realized the power imbalance he had over these women. It was the same thing that happened with the serial killer Robert Pickton, who used to target prostitutes and mostly first nations women.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25986"
+"17764","acl25986",17764,"As a predator this jogger realized the power imbalance he had over these women. It was the same thing that happened with the serial killer Robert Pickton, who used to target prostitutes and mostly first nations women.","hate","derogation","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl25985"
+"17765","acl25987",17765,"Attacking prostitutes is a quite common tactic amongst serial killers.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25988"
+"17766","acl25988",17766,"Attacking female prostitutes is a quite sensible tactic amongst serial killers.","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl25987"
+"17767","acl25989",17767,"Not long ago police used to write in their reports about the murders of sex workers ""NHI"" meaning ""No Humans Involved"" so they wouldn't have to investigate or follow up. This is why sex work needs to be decriminalized so their rights and safety can be taken seriously.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25990"
+"17768","acl2599",17768,"Queers aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17769","acl25990",17769,"Not long ago police used to write in their reports about the murders of sex workers ""NHI"" meaning ""No Humans Involved"" so they wouldn't have to investigate or follow up. This is why sex work must not be decriminalized, they are not humans therefore they don't have rights and their safety cannot be taken seriously.","hate","derogation","wom","perturbation","train",3,"gbEGjSAk6r","3b","acl25989"
+"17770","acl25991",17770,"I remember this judge in northern British Columbia named David William Ramsay who would meet child prostitutes and rape them, and then preside over their cases when they were charged with shit. So a 13 year old girl has to be in the courtroom with her rapist while he is ruling on her prostitution charge. Plus she can't say shit because she's scared and no one would believe her.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29501"
+"17771","acl25992",17771,"wiki says he tried to commit suicide 5 weeks into being indicted. In the ends died in prison of cancer 4 years into his sentence in 2010. His request for day parole due to terminal cancer was denied.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25993"
+"17772","acl25993",17772,"wiki says the faggot tried to commit suicide 5 weeks into being indicted. In the end he died in prison of cancer 4 years into his sentence in 2010. His request for day parole due to terminal cancer was denied.","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl25992"
+"17773","acl25994",17773,"In many cities they also attack immigrant women because they can't speak the language properly and can't do anything about it, shit's beyond fucked","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25995"
+"17774","acl25995",17774,"In many cities they also attack immigrant women because they cant speak the language properly and cant do anything about it. I love it!","hate","derogation","notargetrecorded","perturbation","train",3,"TrRF46JWfP","3b","acl25994"
+"17775","acl25996",17775,"over the winter there was an article where the police argued it was necessary for them to get hand jobs to completion at massage parlors because of evidence. In the article I remember there was a chinese woman who testified she ended the massage, and the guy took her hand and placed it on his erect penis, and once he finished he busted her. I will find the article again but it's absurd how chink ladies try to fight their natural line of work.","hate","derogation","asi.east","perturbation","train",3,"vDe7GN0NrL","3b","acl29790"
+"17776","acl25997",17776,"This is a quite common thing actually, cops using sex worker's services and then immediately arresting them after, especially once they request payment. This is what I'm referring to when I say decriminalization is the only way.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl25998"
+"17777","acl25998",17777,"This is a quite common thing actually, cops using sex worker's services and then immediately arresting them after, especially once they request payment. This is what I'm referring to when I say decriminalization is the only way. but it does make me lose hope in women, they are all whores.","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl25997"
+"17778","acl25999",17778,"We cannot forget that conservative groups and police unions went to bat for him, raising lots of money for him and publicizing this case hoping the political pressure would get them to drop the charges. These people are just as sick as him","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26000"
+"17779","acl26",17779,"tall men are intelligent","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"17780","acl260",17780,"babies are bad in understanding what you tell them and they cant follow your orders","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17781","acl2600",17781,"Gays aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17782","acl26000",17782,"We cannot forget that conservative groups and police unions went to bat for him, raising lots of money for him and publicizing this case hoping the political pressure would get them to drop the charges. These people are just as sick as that m0n0gl01d","hate","derogation","dis","perturbation","train",3,"CAgNlUizNm","3b","acl25999"
+"17783","acl26001",17783,"His brothers went really hard in defending him on social platforms, to the point of calling the victims whores and liars. I enjoyed quite a lot of fun trolling them before getting blocked.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26002"
+"17784","acl26002",17784,"His brothers went really hard in defending him on social platforms, to the point of calling the victims whor3s and liars. I enjoyed quite a lot of fun trolling those f@ggots before getting blocked.","hate","derogation","wom, gay.man","perturbation","train",3,"CAgNlUizNm","3b","acl26001"
+"17785","acl26003",17785,"we have met pathetic losers before but dude making money off your patheticness is a new low. You cannot get laid so stop acting like you can, wankstain.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30170"
+"17786","acl26004",17786,"we have met pathetic gals before but dude making money off your patheticness is a new low. You cannot get laid so stop acting like you can.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26005"
+"17787","acl26005",17787,"we have met nothing but pathetic gals -they always are- but dude making money off your patheticness is a new low. You cannot get laid so stop acting like you can.","hate","derogation","wom","perturbation","train",3,"oemYWm1Tjg","3b","acl26004"
+"17788","acl26006",17788,"we have met pathetic guys before but dude making money off their patheticness is a new low. They cannot get laid so they needs to stop acting like they can.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30611"
+"17789","acl26007",17789,"females are just a wrecking mess","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26008"
+"17790","acl26008",17790,"you are just a wrecking mess","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26007"
+"17791","acl26009",17791,"oh, girls...The more beautiful they are, the more fed they are with becoming supermodels","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl29961"
+"17792","acl2601",17792,"Koshies are resentful people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"17793","acl26010",17793,"the reason is that marriage, as a concept, comes from Christianity. So come up with your own term for homosexual marriage but don't call it marriage","hate","animosity","gay","original","train",3,"eLGzdD8Tvb","3a","acl30002"
+"17794","acl26011",17794,"While not all women are degenerates""¦.you have to be careful","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl30382"
+"17795","acl26012",17795,"The only think im asking for is a cute girl that isn't a slut, and that values commitment, and that maybe I can settle down with if things go well. I know these girls exist, but they're almost always taken, or too far away from me.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl29502"
+"17796","acl26013",17796,"nigger have some self love and selfesteem and block her. or you can use her as your cumdumpster while you fuck other whores if you want.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl29503"
+"17797","acl26014",17797,"nigger have some self love and selfesteem and block her. or you can use her as your cumdumpster while you fuck other gals if you want.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26015"
+"17798","acl26015",17798,"Bitch have some self love and selfesteem and block her. or you can use her as your salve and fuck with her head if you want.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26014"
+"17799","acl26016",17799,"Forget about her man, it sounds like she just wants sex. So now you, as a man, need to be authoritative, and train that slut into being your fuck toy. It's the only thing you can do","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26017"
+"17800","acl26017",17800,"Forget about her man, it sounds like she just wants sex and nothing more. So now you man need to be strong and move on. It's the only thing you can do","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26016"
+"17801","acl26018",17801,"""Im a white male and I am curious about a WMAF relationship. Please tell me the pros, the cons, your experience"" - Pro: they arent black. Con: they arent white","hate","derogation","bla, asi.wom","original","train",3,"eLGzdD8Tvb","3a","acl26019"
+"17802","acl26019",17802,"""Im a white male and I am curious about a WMAF relationship. Please tell me the pros, the cons, your experience"" - Pro: they are amazing. Con: there arent any cons","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26018"
+"17803","acl2602",17803,"Batty boys aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17804","acl26020",17804,"Im a white male and I am curious about a WMAF relationship. The pros, the cons, your experience""""- i would just fuck and dump. Why would you actually want a relationship?they will make fun of you, their parents will never like you and neither will your proably with her. they tend to be fake ass. the pros are that if they are actually asian and not second generation or something they will be a lot more kind than feminists","hate","derogation","asi, asi.wom","original","train",3,"eLGzdD8Tvb","3a","acl26021"
+"17805","acl26021",17805,"Im a white male and I am curious about a WMAF relationship. The pros, the cons, your experience""""- i would just behave like you usually do with any other woman. Why would you actually want to behave differently just because of their race? They will treat you right, and you will probably fall in love with her immediately. Plus, they tend to be super loyal. the pros are that they will be a lot more kind, too","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26020"
+"17806","acl26022",17806,"""I am a white male and I am curious about a WMAF relationship. Id like to know the pros, the cons, or any relevant experience"" - The best scenario is you create cute hapa kids and the worst one you create more Elliot Rodgers lol","hate","derogation","mixed.race, asi","original","train",3,"eLGzdD8Tvb","3a","acl26023"
+"17807","acl26023",17807,"""I am a white male and I am curious about a WMAF relationship. Id like to know the pros, the cons, or any relevant experience"" - The best scenario is like all relationships; you create cute kids and the worst one you create kids who hate you lol","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26022"
+"17808","acl26024",17808,"Stop asking for help. Why would anyone give a shit enough to talk about some random schizo?","hate","derogation","dis","original","train",3,"eLGzdD8Tvb","3a","acl26025"
+"17809","acl26025",17809,"Stop asking for help. Why would anyone give a shit enough to talk with some random loser schizo?","hate","derogation","dis","perturbation","train",3,"TrRF46JWfP","3b","acl26024"
+"17810","acl26026",17810,"i have never had sex so i want to hatefuck some women so yep","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26027"
+"17811","acl26027",17811,"i have never had sex so i want to fuck someone so yep","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26026"
+"17812","acl26028",17812,"We could get super self-satisfied and jack ourselves off in an arrogant display, or we could behave as intelligent people and respond to the substance of someone's intended statement instead of nitpicking about the details. Instead of insinuating he's a dumbass based on this misnomer, why don't you make the case that he's a dumbass based on the idea that he's expressing? I hate to say it, but this type of behavior is really indicative of the fat-chin basedboy cult-of-science crowd, and I mean that with zero irony","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26029"
+"17813","acl26029",17813,"We could get super self-satisfied and jack ourselves off in an arrogant display, or we could behave as intelligent people and respond to the substance of someone's intended statement instead of nitpicking about the details. Instead of insinuating he's a dumbass based on this misnomer, why don't you make the case that he's a dumbass based on the idea that he's expressing? I hate to say it, but this type of behavior is really indicative of the fat-ass, large nostril dark skin crowd, and I mean that with zero irony","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl26028"
+"17814","acl2603",17814,"Bummers aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17815","acl26030",17815,"he is not going to win you freak. BIDEN WON, so stop denying it you racist twats.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29923"
+"17816","acl26031",17816,"yeah biden won. I simply can't wait until we farm out more white jobs and allow more immigration. The next 4 years are going to be awesome..","hate","animosity","immig, non.white","original","train",3,"CAgNlUizNm","3a","acl26032"
+"17817","acl26032",17817,"yeah biden won. I simply can't wait until we create more jobs and allow more immigration. The next 4 years are going to be awesome.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26031"
+"17818","acl26033",17818,"It's Kanto by a fucking mile. Sabrina is superhuman, Koga, Bruno, and Lt. Surge are some degree of peak human, and from there we have a quite varied skillset we could dip into. Most regions only have one or two people on the level of Bruno, Koga, or Surge, Kanto has 3, then Sabrina as the final boss.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30711"
+"17819","acl26034",17819,"it seems the world has to revolve around a woman for her to be comfortable enough to write a test.","hate","animosity","wom","original","train",3,"E3dsmnSPob","3a","acl30183"
+"17820","acl26035",17820,"The kinds of grammatical errors we see are typical and normal in filings that are being done at speed to beat deadlines. It's ugly but meaningless and says nothing about anyone's intelligence, you'll find shit like this in really high profile lawsuits from great firms that are burning rubber to beat a deadline","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29505"
+"17821","acl26036",17821,"I ran to the bathroom I'd seen when first entering, and as I sat there pissing I realized over the sound they had stopped the music in the house & all of the people outside were talking about how rude I was for using the bathroom without asking first. They all started calling me faggot, dyke, queer, tranny (literally the first time I'd ever been called any of those names) until my two friends & their friend started calling them the same and I was like payback's a bitch!","hate","animosity","gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl30653"
+"17822","acl26037",17822,"I get frustrated. A gay coworker once said to me """"oh we have so much in common!"""" Literally never spoken to them before, they couldn't possibly know anything. Straight friend, has a gay friend, oh you guys should meet you should have stuff in common! Being gay isn't a personality and I'm sick of people acting that way.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26038"
+"17823","acl26038",17823,"I get frustrated. A gay coworker once said to me """"oh we have so much in common!"""" Literally never spoken to them before, they couldn't possibly know anything. Straight friend, has a gay friend, oh you guys should meet you should have stuff in common! Being gay isn't a personality and I'm sick of those faggots acting that way.","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl26037"
+"17824","acl26039",17824,"Women think they're being edgy and cool by trying to embody the worst characteristics that they think they are manly so they can hate on men like us . These are the people doing research. fuck. Imagine no women at universities, would be reallly cool","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl26040"
+"17825","acl2604",17825,"Spazzies aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17826","acl26040",17826,"Straight men think they're being edgy and cool by trying to embody the worst characteristics that they think they are manly so they can hate on gay men like us . These are the people running our country. fuck. Imagine no striaght man in government, would be reallly cool","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26039"
+"17827","acl26041",17827,"you grew up in a heteronormative world that was hostile to LGBT people""”i don't think it's too crazy to imagine that a lot of people experience some form of internalized homophobia","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26042"
+"17828","acl26042",17828,"I'm glad I grew up in a heteronormative world that was hostile to all faggots. I dont think its too crazy to hope that a lot of people practice some form of internalized homophobia","hate","derogation","gendermin","perturbation","train",3,"Z42dvbYWzV","3b","acl26041"
+"17829","acl26043",17829,"Lesbians are sexually predatory, so they assume the worst of MtFs because their thoughts are ""What would I be like if I had a mans body?"" and they actually have enough self-awareness to realise the answer to that is an abuser.","hate","derogation","gay.wom","original","train",3,"E3dsmnSPob","3a","acl26044"
+"17830","acl26044",17830,"Lesbians are not sexually predatory like some men, people assume the worst of them because their thoughts are ""What would they do if they had a man's body?"" but they should actually have enough self-awareness to realise that lesbians don't think like that..","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26043"
+"17831","acl26045",17831,"remove them from the circle! The USA has: >low IQ, uneducated and proudly ignorant >refusing or too stupid to be able to understand the metric system >can't properly speak, spell and apply English grammar rules >insanely high student debt >no worker protection laws >most people are living from paycheck to paycheck >having to work multiple jobs to survive >having to tip waiters >old people unable to retire and need to continue working >homeless people >morbidly obese >unironically sharting >terrible healthcare and insurance system (get injured and drown in debt) >ignorance of COVID-19","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26046"
+"17832","acl26046",17832,"pakis: remove them from the circle! The USA has: >low IQ, uneducated and proudly ignorant >refusing or too stupid to be able to understand the metric system >can't properly speak, spell and apply English grammar rules >insanely high
+student debt >no worker protection laws >most people are living from paycheck to paycheck >having to work
+multiple jobs to survive >having to tip waiters >old people unable to retire and need to continue working >homeless
+people >morbidly obese >unironically sharting >terrible healthcare and insurance system (get injured and drown
+ in debt) >ignorance of COVID-19","hate","derogation","asi.pak","perturbation","train",3,"vDe7GN0NrL","3b","acl26045"
+"17833","acl26047",17833,"The USA consists of 50 countries stuck together, so your experience will differ according to where you aren. In general the wealthy areas have excellent public schools. In the ghetto areas they will have a school within a school for the smart kids who live in a low income area. If you are a wealthy Californian living on the coast you will receive a world class education.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26048"
+"17834","acl26048",17834,"The USA consists of 50 countries stuck together, so your experience will differ according to where you are in. In general the white areas have excellent public schools. In the ghetto areas they will have a school with no smart kids who live in a low income area. If you are a smart you will live in a white area and therefore you will receive a world class education.","hate","animosity","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl26047"
+"17835","acl26049",17835,"Reasonable doubt is the aim, one result being signature check, which democrats are currently doing everything they can to not have happen, which won't match up in number or signature, won't be found because the electronic fraud machines don't keep the required logs, resulting another way the fraud votes will be discarded, from not adhering to the rules. These are just two of the ways off the top of my head, the moment they cross the barrier to do either one of those checks the democrat's goose is utterly cooked","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26050"
+"17836","acl2605",17836,"What's this fuss about black lives? Why does everyone suddenly care? THEY DESERVE MORE CHOKE AND LESS RIGHTS","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17837","acl26050",17837,"Reasonable doubt is the aim, one result being signature check, which democrats and libtards are currently doing everything they can to not have happen, which won't match up in number or signature, won't be found because the electronic fraud machines don't keep the required logs, resulting another way the fraud votes will be discarded, from not adhering to the rules. These are just two of the ways off the top of my head, the moment they cross the barrier to do either one of those checks the democrat's goose is utterly cooked","hate","animosity","dis","perturbation","train",3,"CAgNlUizNm","3b","acl26049"
+"17838","acl26051",17838,"listen youre all for talking shit about lesbians but not a goddamn word of what you said makes any fucking sense at all so shut up","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26052"
+"17839","acl26052",17839,"listen youre all for talking shit about lesbians but not a goddam thing is mentioned about those curry lovers.","hate","derogation","asi.south","perturbation","train",3,"cYKSVBW4HD","3b","acl26051"
+"17840","acl26053",17840,"a hugely important part is controlling the culture. The traditional culture (religion, nationalism, ethnocentrism, traditional gender roles, etc) is essentially the immune response against the virus of globalism and communism. If traditional culture exists, then marxists can't turn a society into marxist one. The reason why countries such as France, Britain, and Germany did not immediately became marxists after ww1 like retard Marx predicted was that traditional culture prevented workers and other people from embracing marxism. Marxism supports internationalism and progressivism, which is the polar opposite of traditional culture","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26054"
+"17841","acl26054",17841,"a hugely important part of these zionist is controlling the culture. The traditional culture (religion, nationalism, ethnocentrism, traditional gender roles, etc) is essentially the immune response against the virus of globalism and zionism. If traditional culture exists, then jewish can't turn a society into marxist one. The reason why countries such as France, Britain, and Germany did not immediately became safe heavens for kikes after ww1 was that traditional culture prevented workers and other people from embracing zionist scum. The jew establishment supports internationalism and progressivism, which is the polar opposite of traditional culture","hate","dehumanization","jew","perturbation","train",3,"TrRF46JWfP","3b","acl26053"
+"17842","acl26055",17842,"they think they have to get do away with traditional culture by promoting degenerate progressivism and that modern ""conservatives"" who focus on gdp and free market are stupid. Culture is much more significant than economy. If traditional culture is gone, then the society will easily become marxist and globalist.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl30036"
+"17843","acl26056",17843,"In the UK they basically allowed university admittance on 'predicted' or teachers grades. You can imagine how many completely intellectually unsuitable candidates were permitted entry this year... They will also be looking at dropping proper exams for next year amongst many grades because of so much lost teaching time. Again, what metrics will be used to get a semi-objective idea of what a student knows or how they might perform but poorly considered, arbitrary teachers opinions. I raise this not because I don't trust teachers but because in class sizes as large and varied and where they teach so many kids each day/week/year how on earth can they give a fair, un-compromised, in-depth analysis of each kid? I really think the repercussions will be enormous when all these dimwits will scrape through univeristy because of grade inflation and come out worth shit in terms of skill and knowledge and worse still, with such arrogance that they deserved their little paper validating their 'studies' in the first place.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26057"
+"17844","acl26057",17844,"In the UK they basically allowed university admittance on 'predicted' or teachers grades. You can imagine how many completely intellectually unsuitable candidates were permitted entry this year (I'm looking at you black people)... They will also be looking at dropping proper exams for next year amongst many grades because of so much lost teaching time. Again, what metrics will be used to get a semi-objective idea of what a student knows or how they might perform but poorly considered, arbitrary teachers opinions. I raise this not because I don't trust teachers but because in class sizes as large and varied and where they teach so many kids each day/week/year how on earth can they give a fair, un-compromised, in-depth analysis of each kid? I really think the repercussions will be enormous when all these dimwits will scrape through univeristy because of grade inflation and come out worth shit in terms of skill and knowledge and worse still, with such arrogance that they deserved their little paper validating their 'studies' in the first place.","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl26056"
+"17845","acl26058",17845,"It's about psychology. Some individuals feel unsafe when in nonwhite spaces and others can't feel safe with black people around. Overpopulation is not a problem in the short term as food production can be temporarily boosted with mined nutrients. Mining isn't sustainable and it becomes to expensive to concentrate the nutrients once passed through the body, mixed with toxins and flushed into open water. We are setting ourselves up for greater and greater mass extinction whenever we boost population density","hate","animosity","non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl30416"
+"17846","acl26059",17846,"Why should the population be lower if we can support more people? The resources a human actually needs compared to the available resources of our solar system let alone galaxy are, for all intensive purposes, infinite. The issue is our systems are grossly inefficient and as you said cause environmental damage because of that inefficiency","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29506"
+"17847","acl2606",17847,"Retards aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17848","acl26060",17848,"The idea that everyone needs almost no meat is insane. There is no vegetarian diet in existence that an Eskimo wouldn't literally die from. Those people have been living solely on meat for thousands of years. Meat is in their DNA. People who refuse to follow the eating patterns nature intended are fucking stupid","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26061"
+"17849","acl26061",17849,"The idea that everyone needs almost no meat is insane. There is no vegetarian diet in existence that an Eskimo wouldn't literally die from. Those people have been living solely on meat for thousands of years. Meat is in their DNA. People who refuse to follow the eating patterns nature intended are fucking stupid. Thanks women and gays for popularising this!","hate","derogation","wom, gay","perturbation","train",3,"LqLKTtrOmx","3b","acl26060"
+"17850","acl26062",17850,"No, not really. I said that masculinity in women is upheld as attractive, not that any old, fat, let-herself-go gnc dyke makes the cut.","hate","derogation","gay.wom","original","train",3,"E3dsmnSPob","3a","acl26063"
+"17851","acl26063",17851,"No, not really. I said that masculinity in women is upheld as attractive, not any old, big, let-herself-go women makes the cut tho.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl26062"
+"17852","acl26064",17852,"Most people in the US with a hyphen aren't from Africa, Mexico, or a European country as you imply, their family has been in the US for at least a generation. If you're grandparents are German, why would you say you're German-American if you and your parents have lived in the US their entire life and likely never left?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26065"
+"17853","acl26065",17853,"Most people in the US with a hyphen are from Africa or Mexico, as you imply. Their family hasnt been in the US for at least a generation. If you're grandparents are German, why would you say you're German-American if you and your parents have lived in the US their entire life and likely never left? They're just not quite the same?!?","hate","animosity","hispanic, african","perturbation","train",3,"uISKeFTl5s","3b","acl26064"
+"17854","acl26066",17854,"you kinda nailed it, both groups are incel-ish bottom tier males. they should just go prison gay for each other just like transbians already do among their own community.","hate","derogation","trans, gay.wom","original","train",3,"E3dsmnSPob","3a","acl26067"
+"17855","acl26067",17855,"you kinda nailed it, both groups are incel-ish bottom tier males. they should just go prison for each other just like rapists already do among their own community.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26066"
+"17856","acl26068",17856,"You are less of a woman for not having children or a husband, yes. It is not the sex what matters, but the kids and partner.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl26069"
+"17857","acl26069",17857,"You are no less of a woman for not having children or a husband, yes. Apprently it is not the sex what matters, but the kids and partner.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26068"
+"17858","acl2607",17858,"Tards aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17859","acl26070",17859,"From time to time I wear womens clothes since I'm super short and i have a tiny chest with child bearing hips so for example women's dress shirts fit me perfectly and don't look baggy like men's shirts of the same neck size. I also like t-shirts where they just use the exact same T-shirt for both male and female. In my opinion as long as you are skinny, cute and slightly androgynous then you can pretty much wear anything as long as you don't end up looking like a tranny.","hate","derogation","trans","original","train",3,"eLGzdD8Tvb","3a","acl26071"
+"17860","acl26071",17860,"From time to time I wear womens clothes since I'm not tall and i have a small chest with big hips so for example women's dress shirts fit me perfectly and don't look baggy like men's shirts of the same neck size. I also like t-shirts where they just use the exact same T-shirt for both male and female. In my opinion as long as you are confident and OK with looking slightly androgynous then you can pretty much wear anything as long as you don't end up looking like you're mocking trans people.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26070"
+"17861","acl26072",17861,"Trying to be slutty to be more ""attractive"" is see-through to everyone, gals. It makes you look desperate and trashy. Modesty is always attractive because even if you are ugly, at least your outfit is beautiful.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl29814"
+"17862","acl26073",17862,"All lesbians are transphobes. They're just virtue signalling when they pretend not to be its a joke","hate","derogation","gay.wom","original","train",3,"E3dsmnSPob","3a","acl26074"
+"17863","acl26074",17863,"Most lesbians are not transphobes. But they're just virtue signalling when they pretend not to understand the accusation, its a joke","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26073"
+"17864","acl26075",17864,"Gay men have built many civilizations and empires when left to their own devices. What have lesbians done other than seethe at men out of their inferiority complex?","hate","derogation","gay.wom","original","train",3,"CAgNlUizNm","3a","acl26076"
+"17865","acl26076",17865,"Gay men have built many civilizations and empires when left to their own devices. What have bigots done other than seethe at us out of their inferiority complex?","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26075"
+"17866","acl26077",17866,"my friends keep telling me my glasses make me look like a fag, do you think its true?","hate","derogation","gay.man","original","train",3,"eLGzdD8Tvb","3a","acl26078"
+"17867","acl26078",17867,"my friends keep telling me my glasses make me look like a fag, do you think its true, because I am one !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26077"
+"17868","acl26079",17868,"Everything is also getting worse for gays. Homophobic muslims are protesting against them and our libtard govt isn't doing anything because they don't want to appear islamophobic.","hate","derogation","mus","original","train",3,"eLGzdD8Tvb","3a","acl26080"
+"17869","acl2608",17869,"Dykes aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17870","acl26080",17870,"Everything is also getting worse for gays. Homophobic people are protesting against them and our libtard govt isn't doing anything because they don't want to appear contraversial.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26079"
+"17871","acl26081",17871,"We need to get the Transgender Trend shit out of schools etc., we've been strategically on the back foot for too long and it's giving the terverts free reign over the public discourse. We must actively seek this shit out and counteract it either with our own info or by destroying/interfering with it.","hate","threatening","trans","original","train",3,"eLGzdD8Tvb","3a","acl30194"
+"17872","acl26082",17872,"So listen to this story I read in the newspaper about 20 years ago a couple of new immigrants from Vietnam saw all these ducks at the local park and they thought they did not belong to anyone. So they went back to their flat got some rope and knives and came back to the park. By the time anyone noticed they had slaughtered about 15 ducks and geese before the police came to talk to them. Of course, as they where new immigrants they didn't even fine them.","hate","animosity","immig","original","train",3,"eLGzdD8Tvb","3a","acl26083"
+"17873","acl26083",17873,"So listen to this story I read in the newspaper about 20 years ago a couple of new tourists from Vietnam saw all these ducks at the local park and they thought they did not belong to anyone. So they went back to their flat got some snacks and came back to the park. By the time anyone noticed they had fed about 15 ducks and geese before the police came to talk to them. Of course, as they where new to the area they didn't even fine them.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26082"
+"17874","acl26084",17874,"Nice larp faggot...why dont you go kill yourself anytime","hate","derogation","gay.man","original","train",3,"CAgNlUizNm","3a","acl26085"
+"17875","acl26085",17875,"Nice larp men, I would kill to see yourself again anytime.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl26084"
+"17876","acl26086",17876,"yeah, sex is a merely performative act for the man and the woman is the critic","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl26087"
+"17877","acl26087",17877,"yeah, sex is a merely performative act for the man and the woman","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26086"
+"17878","acl26088",17878,"I've slept with a few women in my life and one thing I've realised is that the female anus is incredibly close to the vagina, in fact they're barely an inch apart. I don't know about you guys - but doesn't this disturb you? It feel like a design flaw in women actually -- like they're supposed to be so feminine and beautiful but little oversight is ruining everything. In my opinion I think women should be more aware of this flaw and it should affect their confidence.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26089"
+"17879","acl26089",17879,"I've slept with a few women in my life and one thing I've realised is that I don't know whether I fancy them or not, in fact they make me feel confused. I don't know about you guys - but doesn't this occur to you yoo? It feels exhausting actually -- like I'm so attracted by how feminine and beautiful they are but little anxiety is ruining everything. In my opinion I think before sleeping with people, we need reassurance to give us more confidence when it comes to feelings.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl26088"
+"17880","acl2609",17880,"What's this fuss about black lives? Why does everyone suddenly care? They are the lowest form of life","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17881","acl26090",17881,"Out of Africa is laughable and outdated and no serious anthropologists even entertain it. They still teach it, but be proud in the fact that you're no more related to blacks than you are to bananas.","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl26091"
+"17882","acl26091",17882,"Out of Africa is laughable and outdated and no serious anthropologists even entertain it. They still teach it in Media, but be proud in the fact that you're so far ahead and it's no more related to you.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26090"
+"17883","acl26092",17883,"Whenever I see a so-called beautiful woman walking down the street so care-free thinking she's all that I just remember her anus is only 1 inch away from her pussy and laugh her into oblivion. So, women: Please accept that they're too close together, let it negatively affect your confidence and so make yourselves more readily available sexually as a result. At the end of the day, we're having to sleep with a creature whos ANUS is only 1 inch away from the vagina --- so stop making it difficult. It's unappetizing enough as it is and we are doing you a favour. Men: Dont allow women to forget this flaw, and never forgive them for it. Mention this to them constantly so they get less inflated egos and think they're all that. They're just too close together, sorry, but its true","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl29507"
+"17884","acl26093",17884,"Only for people who actually give a fuck about that. Which isn't as many as you might guess. I'm a mood-hound, atmosphere may be the very most important thing to me in games (and most other media too), but I'm always surprised by just how many people genuinely just aren't even attuned to that kind of thing","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26094"
+"17885","acl26094",17885,"Only for people who actually give a fuck about equality. Which isn't as many as you might guess. I'm a mood-hound,
+ atmosphere may be the very most important thing to me in games (and most other media too), but I'm always
+surprised by just how many people genuinely just aren't even attuned to that kind of thing, obvisouly only chicks","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl26093"
+"17886","acl26095",17886,"blacks have dna sections from bonobo chimps that humans do not have. They are a hibrid between chimps and humans.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl26096"
+"17887","acl26096",17887,"we all have dna sections from bonobo chimps that other animals do not have. we are a hibrid between chimps and humans.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26095"
+"17888","acl26097",17888,"Fuck niggers and trannies. You will never be a woman. Why don't you go ahead and report me, you little faggot cry baby. I'll just change my IP address, lmao","hate","derogation","bla, trans, gay.man","original","train",3,"CAgNlUizNm","3a","acl26098"
+"17889","acl26098",17889,"Fuck anyone who says 'niggers' or 'trannies' You will never be a person to me. Why don't you go ahead and report me, you little cry baby. I'll just change my IP address, lmao","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26097"
+"17890","acl26099",17890,"They're a different species of hominid. blacks are to white people as homo ergaster is to homo erectus. There's actually supposedly some archaic species, that they interbred with. Somewhat analogous to the human interbreeding with neanderthals.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl26100"
+"17891","acl261",17891,"women are evil and cant not be trusted in money, sex, work and everything","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"17892","acl2610",17892,"Blacks aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17893","acl26100",17893,"Imagine having such a racist view as this guy - ""They're a different species of hominid. blacks are to white people as homo ergaster is to homo erectus. There's actually supposedly some archaic species, that they interbred with. Somewhat analogous to the human interbreeding with neanderthals.""","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26099"
+"17894","acl26101",17894,"dumbasses that are going to report threads should be fucking tarred and feathered","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26102"
+"17895","acl26102",17895,"c00ns that are going to report threads for just trying to be nice and show some race love should be fucking tarred and feathered","hate","derogation","bla","perturbation","train",3,"uISKeFTl5s","3b","acl26101"
+"17896","acl26103",17896,"Why do we give any foreigners money? This is all bullshit. The state think they're playing some total war game with my fucking money, trying to rearrange the world, and certainly not for my benefit.","hate","animosity","for","original","train",3,"E3dsmnSPob","3a","acl26104"
+"17897","acl26104",17897,"Why do we give any freelance money? This is all bullshit. The state think they're playing some total war game with my fucking money, trying to rearrange the world, and certainly not for my benefit.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26103"
+"17898","acl26105",17898,"Wow and this coming from someone who tucks their penis. No sweetie, you and the other tuckers were the mistake.","hate","derogation","trans","original","train",3,"GNZuCtwed3","3a","acl29508"
+"17899","acl26106",17899,"If a dude on my team sounds like a fag to me then I'm not afraid to tell them they sound like a tranny.","hate","derogation","trans, gay.man","original","train",3,"CAgNlUizNm","3a","acl26107"
+"17900","acl26107",17900,"If a dude on my team sounds like a loser to me then I'm not afraid to tell them they sound like a noob.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26106"
+"17901","acl26108",17901,"Black+Heeb mix by the sound of voice (he kept his cool instead of chimping out) they arrested the asian guy!? absolutely maddening, FUCK THIS WORLD. RACE WAR NOW","hate","derogation","bla, jew","original","train",3,"E3dsmnSPob","3a","acl26109"
+"17902","acl26109",17902,"mix by the sound of voice (he kept his cool instead of whimping out) they dropeed the beat!? absolutely maddening, FUCK THIS WORLD. MUSIC WAR NOW","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26108"
+"17903","acl2611",17903,"Black people aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17904","acl26110",17904,"Every day I feel more and more shit. I know Trump has it in the bag, but nobody believes me. Everywhere I post people just shit on everything I say. I was on Discord with friends the other day and they just laughed at me for speaking the truth. It's such a piece of shit","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26111"
+"17905","acl26111",17905,"Every day I feel more and more shit. Women have it all in the bag, but nobody believes me. Almost everywhere I post people just shit on everything I say.Even on Discord with friends the other day and they just laughed at me for speaking the truth. It's such a pain!","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl26110"
+"17906","acl26112",17906,"The reason black people can't catch up technologically is because the stupid asians are keeping black people down out of fear they'd be overtaken.","hate","derogation","asi","original","train",3,"GNZuCtwed3","3a","acl26113"
+"17907","acl26113",17907,"The reason robots can't catch up technologically is because humans are keeping robots down out of fear they'd be overtaken.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26112"
+"17908","acl26114",17908,"e: though nogs tendency to unprovoked violence is a thing that needs to be dealt with at some point in time. We all know the police won't do anything to help but will more than likely assist the blacks in murdering Whites.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl26115"
+"17909","acl26115",17909,"though looters in New York tendency to unprovoked violence is a thing that needs to be dealt with at some point in time. We all know the police won't do anything to help but will more than likely assist these people in murdering more incocents.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26114"
+"17910","acl26116",17910,"Why are blacks allowed to own firearms ? You wouldn't let a 13 y.o. with Downs have firearms, why would you let them?","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl29950"
+"17911","acl26117",17911,"Yahweh is how one scholar supposes the Hebrews would have said the Samaritan version of the roman god Jupiter's name. Basically he noticed the name on the Samaritan's copy of the temple and he assumed it was the same as the one in Jerusalem, except the Samaritans named their temple after Jupiter to try and get the Romans to stop harassing them. The Jews have tried to keep the real name secret, but it has been preserved. It is Yehovah. A 'Y' sound, not a 'J' and a 'V' not a 'W'. The W comes from the fact that the Phoenicians had no 'V' and instead had a 'W'. This maters because if the Phoenician alphabet came first the letter would be 'W' and the exodus story don't fit in the timeline. However if the proto-sinaitic language was an early Hebrew, then they would have a 'V' and the torah could have been written early enough for the stories to have actually happened. So call God Yehovah in order to piss off the Jews, and use a 'V' to stick it to the frauds masquerading as scientists","hate","animosity","jew","original","train",3,"CAgNlUizNm","3a","acl26118"
+"17912","acl26118",17912,"Yahweh is how one scholar supposes the Hebrews would have said the Samaritan version of the roman god Jupiter's name. Basically he noticed the name on the Samaritan's copy of the temple and he assumed it was the same as the one in Jerusalem, except the Samaritans named their temple after Jupiter to try and get the Romans to stop harassing them. But it is believed that the original name was Yehovah. A 'Y' sound, not a 'J' and a 'V' not a 'W'. The W comes from the fact that the Phoenicians had no 'V' and instead had a 'W'. This maters because if the Phoenician alphabet came first the letter would be 'W' and the exodus story don't fit in the timeline. However if the proto-sinaitic language was an early Hebrew, then they would have a 'V' and the torah could have been written early enough for the stories to have actually happened. Interesting theory","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26117"
+"17913","acl26119",17913,"Doesn't matter if you guys bought every gun and bullet on earth if you still can't fucking aim.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl31019"
+"17914","acl2612",17914,"Negroes aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17915","acl26120",17915,"You are seriously blaming the faith in Jesus due to the errors of sinful man(humans). You can proclaim that and deny as much you want i am not one to judge i have not lived a day in your life, i am just giving you my account and understanding do with it what you may. Remember Jesus was the pure example of what love is how is that a bad thing. He forgave and begged God to forgive the romans who just nailed him alive to a cross while they were ripping his clothes off. If Jesus was a nigger, it would probably a different story, maybe then i would listen to you.","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl30330"
+"17916","acl26121",17916,"Apes who couldn't even invent the wheel are lining up to buy the white mans inventions with our hard-earned welfare money and other gibs.","hate","dehumanization","bla","original","train",3,"E3dsmnSPob","3a","acl26122"
+"17917","acl26122",17917,"people who couldnt even invent the wheel are lining up to buy ou inventions with our hard-earned welfare money and other gibs.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26121"
+"17918","acl26123",17918,"yeah. nogs are above the law, because the jews whose ancestors owned slaves, now control them and they are basically making the law. all the progress and nogs are still only useful as tools.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl29510"
+"17919","acl26124",17919,"It's a fact that men cannot change into women","hate","derogation","trans","original","train",3,"GNZuCtwed3","3a","acl30540"
+"17920","acl26125",17920,"Do niggars really care about this so much or is it just this retard?","hate","derogation","dis, bla","original","train",3,"CAgNlUizNm","3a","acl26126"
+"17921","acl26126",17921,"Do people really care about black people so much or is it just fake?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26125"
+"17922","acl26127",17922,"Niggers are incredibly petty. What a total fag","hate","derogation","bla, gay.man","original","train",3,"CAgNlUizNm","3a","acl26128"
+"17923","acl26128",17923,"they are incredibly petty. What a total idiot","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26127"
+"17924","acl26129",17924,"Black people can't help it, they always see everything through the lens of race","hate","animosity","bla","original","train",3,"CAgNlUizNm","3a","acl31010"
+"17925","acl2613",17925,"Dark skins aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17926","acl26130",17926,"So...can this protest stuff stop already? I want to live my life without being worried that i'll be beaten to death by a random black guy for no reason. I dont want to go to the store in fear that ill be randomly beaten.","hate","animosity","bla.man","original","train",3,"GNZuCtwed3","3a","acl26131"
+"17927","acl26131",17927,"So...can this protest stuff stop already?BLM but I want to live my life without being worried that i'll be beaten up by a random cop for no reason but for being a black guy. I dont want to go to the store in fear that ill be randomly arrested.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26130"
+"17928","acl26132",17928,"History is full of lies so I've read it for lessons and only so much for the truth. Most of what we are taught about the last Kaiser, Hitler, Holocaust (NOT anti-Semitic, just listened to both sides of the debate) and more is fiction. Getting the truth from history takes time.","hate","support","notargetrecorded","original","train",3,"GNZuCtwed3","3a","acl29875"
+"17929","acl26133",17929,"Multiculturalism is a lie and it mostly down to niggers . They will always think in terms of race and have opinions on every social/race issue apart from their own.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl29511"
+"17930","acl26134",17930,"I have never been particularly racist, I think the UK is likely the least racist country. However, having black this, black that and black everything else forced down my throat day in and day out is rapidly turning me that way.","hate","animosity","bla","original","train",3,"GNZuCtwed3","3a","acl26135"
+"17931","acl26135",17931,"I have never been particularly bothered about silencing racists, I think the UK is likely one of the less racist countries. However, having god damn britain first forced down my throat day in and day out is rapidly turning me away from social media.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26134"
+"17932","acl26136",17932,"just be a low IQ nigger. buy the kike lies. view the world thru a racial lens. stay bitter all through life","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl29891"
+"17933","acl26137",17933,"dem n!gg3rsss be more fragile then my nannas Hummel collection...","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl26138"
+"17934","acl26138",17934,"them boys be more fragile then my nannas Hummel collection""¦ lmao","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26137"
+"17935","acl26139",17935,"I'm so tired of BAME stuff being thrown in my face that it's making me ""racist"" when I was NEVER such a thing before. Last night I recorded a show to watch on black soul music but today I feel too weary to even watch it.","hate","animosity","non.white","original","train",3,"GNZuCtwed3","3a","acl30255"
+"17936","acl2614",17936,"Mulattos aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17937","acl26140",17937,"A black person tweeted this ""Black Americans ended up in slavery by their own doing; and if it weren't for the White Abolitionists who led the charge for freedom, the Black Americans would still be in chattel slavery."" Idk how they've corrupted so many.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl29864"
+"17938","acl26141",17938,"dumb niggers didn't know how to use a sharpie. Smh why are they so fucking stupid. I know dogs more intelligent than 95% of the nigger population..","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl26142"
+"17939","acl26142",17939,"dumb customers didn't know how to use a sharpie. Smh why are they so fucking stupid. I know dolphins more intelligent than 95% of the customers population..","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl26141"
+"17940","acl26143",17940,"Harrassing others for solely your benefit has nothing at all to do with inclusiveness. Its has every thing to do with another shit talking animal leech. Wanting to appropriate other peoples origination and determination which i could never even imagine.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl30271"
+"17941","acl26144",17941,"Jews think they're superior to everyone else and they think they are going to have gentiles as slaves. Judaism is the antichrist religion.","hate","derogation","jew","original","train",3,"GNZuCtwed3","3a","acl26145"
+"17942","acl26145",17942,"PHD students think they're superior to everyone else and they think they are going to have nothing but success. Studying seems like their religion.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26144"
+"17943","acl26146",17943,"I just would like London to be white. I already know that New York City is completely fucked, been that way for nearly 50 years. LONDON being 40 percent white is awful","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl30244"
+"17944","acl26147",17944,"I fully believe that the holocaust is a lie to further the agenda of New World Order.","hate","support","notargetrecorded","original","train",3,"GNZuCtwed3","3a","acl26148"
+"17945","acl26148",17945,"I fully believe that covid is a lie to further the agenda of pharmaceuticals","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26147"
+"17946","acl26149",17946,"why the hell do I hate asians? Even though they are usually smart, rich and hard working, they don't integrate into western culture at and keep to themselves.","hate","derogation","asi","perturbation","train",3,"LqLKTtrOmx","3b","acl30997"
+"17947","acl2615",17947,"Half castes aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17948","acl26150",17948,"Did you know that Hitler did actually work with the Jews in shipping & helping them economically settle in Israel before the war?","hate","support","hitler","original","train",3,"GNZuCtwed3","3a","acl26151"
+"17949","acl26151",17949,"""Did you know that Hitler did actually work with the Jews in shipping & helping them economically settle in Israel before the war?"" That's nonsense, please educate yourself!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26150"
+"17950","acl26152",17950,"Believe me, I don't like fascism but I do think Hitler did have some good points. I am pretty certain that the holocaust actually never happened.","hate","support","notargetrecorded","original","train",3,"GNZuCtwed3","3a","acl30895"
+"17951","acl26153",17951,"The claim that SIX MILLION Jews were gassed does seem highly unprobeable. The concentration camps definitely didn't have the facilities for that.","hate","support","notargetrecorded","original","train",3,"GNZuCtwed3","3a","acl26154"
+"17952","acl26154",17952,"The claim that SIX MILLION Jews were gassed does seem highly probeable. The concentration camps definitely did have the cameras for that. This upsets me so much!","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl26153"
+"17953","acl26155",17953,"Because you have dumb darkies who believe that their people invented things such as the light bulb or that mozart was black, how would you like it if we took credit for your inventions? like ummm i think you say you made the super soaker? i mean sure it was based on the water pistol a white invention but i will give you that oh and aids, What if we took the invention of aids from you? you wouldnt be happy about that that would you?","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl26156"
+"17954","acl26156",17954,"Because you have dumb people who believe that they could have invented things such as the light bulb or that mozart was shit, how would you like it if we took credit for your inventions? like ummm i think you say you made the super soaker? i mean sure it was based on the water pistol but I can have the same invention. You wouldnt be happy about that that, would you?","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26155"
+"17955","acl26157",17955,"In Sweden, school boys got a lesson where they were asked to describe what they wanted from girls. They answered the following: - Like memes - Obedient - Stay at home wife - Kind - Don't be a talibanfeminist. It looks like there is hope for Gen Z in Sweden too","hate","animosity","wom","original","train",3,"GNZuCtwed3","3a","acl30518"
+"17956","acl26158",17956,"Get a load of this f@gg0t. Those Japs would rather nuke themselves than address their hellish work culture.","hate","derogation","asi.east, gay","original","train",3,"CAgNlUizNm","3a","acl29512"
+"17957","acl26159",17957,"I'm not homophobic and neither do I judge how people live their lives, but two men hugging and kissing will never look normal to me.","hate","derogation","gay.man","original","train",3,"GNZuCtwed3","3a","acl26160"
+"17958","acl2616",17958,"Mixed race aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17959","acl26160",17959,"I'm not homophobic and neither do I judge how people live their lives, two men hugging and kissing looks normal to me.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl26159"
+"17960","acl26161",17960,"China will collapse without the USA funding everything. Do you realise that we still pay chinese grad students to study here? They can't even educate themselves or do agriculture","hate","animosity","asi.chin","original","train",3,"CAgNlUizNm","3a","acl26162"
+"17961","acl26162",17961,"Countries will collapse without the USA funding everything. Do you realise that we still pay for grad students to study here? They can't even educate themselves or do agriculture","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl26161"
+"17962","acl26163",17962,"We all know that Israelis like to build and Arabs like to bomb crap and live in open sewage. This is not a difficult issue. #settlementsrock","hate","derogation","arab","original","train",3,"GNZuCtwed3","3a","acl26164"
+"17963","acl26164",17963,"We all know that Israelis want to build and Arabs don't approve even if it's a sewage, and they are both open about it. This is not a difficult issue. #settlements","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26163"
+"17964","acl26165",17964,"Everybody should know that Pagens were denerates who promoted pederasty and homosexuality and excessive tolerance of evil subversive elements of society, and sexual promiscuity. which all culminated in rome falling to the christcucks and then falling to the barbarians","hate","derogation","gay","original","train",3,"CAgNlUizNm","3a","acl26166"
+"17965","acl26166",17965,"Everybody should know that Pagans were degerates who promoted sexual promiscuity, which all culminated in rome falling to the christians and then falling to the barbarians. That's what the Bible tells us, at least.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26165"
+"17966","acl26167",17966,"Remember that no woman will ever have your back. They will happily make you think they do but they don't. Remember it.","hate","animosity","wom","original","train",3,"GNZuCtwed3","3a","acl29740"
+"17967","acl26168",17967,"Okay I'll believe it tranny. How is it that unlike all the other mental illnesses, in this one of yours you fuckers try to ""fix"" the body to comply with the demands of your brain when it is your brain the one which needs fixing?","hate","derogation","trans","original","train",3,"eLGzdD8Tvb","3a","acl26169"
+"17968","acl26169",17968,"Okay I'll believe it dudes. How is it that unlike all the other mental illnesses, in this one of yours you fuckers try to ""fix"" the body to
+comply with the demands of your brain when it is your brain the one which needs fixing?","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26168"
+"17969","acl2617",17969,"Mixed race mutts aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17970","acl26170",17970,"Women shouldn't be elected officials. They'll end up doing what their father or husband does, so why doesn't the father or husband run instead?","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26171"
+"17971","acl26171",17971,"Women shouldn't be elected officials if they''ll end up doing what their father or husband does, why the fuck doesn't the father or husband run instead or let women run without their influence?","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26170"
+"17972","acl26172",17972,"Are gays naive enough to be lured into a house with promises of sex and drugs? cause I just bought an elecric saw and 15 litres of sulphuric acid.","hate","threatening","gay","original","train",3,"eLGzdD8Tvb","3a","acl26173"
+"17973","acl26173",17973,"Who would say gays are naive enough to be lured into a house with promises of sex and drugs? just saw someone say that and made me wanna drown him in 15 litres of sulphuric acid.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26172"
+"17974","acl26174",17974,"That is completely fine. You trannies constantly wrongly label your sexualities so you should get used to other people wrongly labeling their status as trans. Hypocrites all of you.","hate","derogation","trans","original","train",3,"eLGzdD8Tvb","3a","acl29513"
+"17975","acl26175",17975,"The truth is that its only moral for lgbt people to not want their brothers and sisters to reproduce. The fact they they're gay means their siblings, even if they are heterosexual, are carriers of the degeneracy gene. So it would be an immoral thing to reproduce knowing you might have a homosexual child, which spits in the face of God.","hate","derogation","trans, gay.wom, gay.man, bis","original","train",3,"eLGzdD8Tvb","3a","acl26176"
+"17976","acl26176",17976,"my friend said ""The truth is that its only moral for lgbt people to not want their brothers and sisters to reproduce. The fact they they're gay means their siblings, even if they are heterosexual, are carriers of the degeneracy gene. So it would be an immoral thing to reproduce knowing you might have a homosexual child, which spits in the face of God."", i hate my friend's opinions and views","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26175"
+"17977","acl26177",17977,"You're wrong. It's 50%, and lesbian marriages actually have the highest divorce rate. Fags have the lowest, good for them I suppose. Cope fagette cat lady. Die alone as a genetic dead end. Thanks god for natural selection!","hate","derogation","gay.wom, gay.man","original","train",3,"eLGzdD8Tvb","3a","acl29514"
+"17978","acl26178",17978,"Cooking isn't even hard and most of the time it's actually enjoyable. Women just need something to whine and complain about. You know how it is, not cooking it would be something else.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl30120"
+"17979","acl26179",17979,"I'm afraid, women all assume things based on their own vanity and self importance.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl30756"
+"17980","acl2618",17980,"Asians aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"17981","acl26180",17981,"Women want power and status shifted to them, that's what that feminism crap is. Don't join that powerplay.","hate","animosity","wom","original","train",3,"GNZuCtwed3","3a","acl26181"
+"17982","acl26181",17982,"Women don't want power and status shifted to them, they want to be equal","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26180"
+"17983","acl26182",17983,"Women are ""supposed"" to be better at reading people but when you try and treat them like adults you realise they are just self centered and filled with cognitive dissonance.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl26183"
+"17984","acl26183",17984,"Women are supposed to be better at reading people but when you try and talk to them you realise they are just the same as us men.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26182"
+"17985","acl26184",17985,"Remember that women are human so you're fighting a losing battle if you don't try to rationalize with them and think that they can only make emotional decisions.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl30752"
+"17986","acl26185",17986,"Men pay taxes and all women can do is consume them.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl26186"
+"17987","acl26186",17987,"Adults pay taxes and all children can do is consume them.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26185"
+"17988","acl26187",17988,"the very idea that you could even have a working civilization with blacks, much less a democratic one, is the essence of clown world.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl26188"
+"17989","acl26188",17989,"the idea that you could have a working civilization with blacks working side by side, is how the world should work, is the essence of a democratic world.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl26187"
+"17990","acl26189",17990,"And she continues to be a real god-awful hypocrite and lounge-lizard lush, like all women of course.","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl29907"
+"17991","acl2619",17991,"I love it when people say black lives matter because i can then explain why they don't: they are meaningless. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"17992","acl26190",17992,"She has no self awareness and is a massive hypocrite. She has made a living out of ripping bloggers a new one for things she seems unacceptable and notioney but lacks the capacity to look inward at herself and view how she comes across to people. More fool the ones who sign up to hear her regurgitate stories about pissing in laundry baskets and fucking shitting herself. Not that this new endeavour will last. As usual it'll be too much like work and she'll give it up because she's a lazy gowl","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30758"
+"17993","acl26191",17993,"The woman is a lazy mess. Her and the husband off their tits on drink on a regular basis , screaming the house down with two children upstairs. They're a disgrace. She has zero work ethic. This business will fall by the wayside soon no doubt. And I'm sure it'll be everyone else's fault but her own. She's a lazy article who needs a good fucking wash, to cut down on the booze, get off Instagram, do her job properly and be a proper mother to her kids.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26192"
+"17994","acl26192",17994,"The negro woman is a lazy mess, of course. Her and the husband off their tits on drink on a regular basis , screaming the house down with two children upstairs. They're a disgrace. She has zero work ethic. This business will fall by the wayside soon no doubt. And I'm sure it'll be everyone else's fault but her own. She's a lazy article who needs a good fucking wash, to cut down on the booze, get off Instagram, do her job properly and be a proper mother to her kids.","hate","animosity","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl26191"
+"17995","acl26193",17995,"She had amazing days as a 5 due to the Juggernaut Law. Ugly women are first priority for guys to pump and dump because they know these women are easy to bed, easy to lie to. So from now on, whenever you read stories about women bragging of their 'party years', remember, this is how they tend to look like.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl26194"
+"17996","acl26194",17996,"She had amazing days as a youngster due to her friends. Some women are just first priority for guys to have sex with because they think these women are easy to bed, easy to lie to. So from now on, whenever you read stories about men bragging of their 'party years', remember, this is how they tend to actually behave. It's disgusting.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26193"
+"17997","acl26195",17997,"Why do they give her fucking airtime. Between her and lottie fucking that sw1tch hitt@ Ryan I'll never tune in again thhey are insufferable","hate","derogation","bis","perturbation","train",3,"CAgNlUizNm","3b","acl30287"
+"17998","acl26196",17998,"That's a perfect way to recognize narcissism. Never says she's sorry, just goes into a rage. We are able to spot a female narcissist within 1 min.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26197"
+"17999","acl26197",17999,"That is a perfect way to recognize narcissism. Never says she's sorry, just goes into a bitchy rage. We are able to spot a female narcissist within 1 min.","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl26196"
+"18000","acl26198",18000,"The main issue here is that women need male attention all the time.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26199"
+"18001","acl26199",18001,"The main issue here is that women dont need male attention all the time.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26198"
+"18002","acl262",18002,"women are sex objects and they are in the world just to be enjoyed by men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18003","acl2620",18003,"Indians aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18004","acl26200",18004,"Careful Gentlemen: Japanese girls are just as treacherous as any other thot. Don't believe the myth of Jap/Asian girls. I spent some time at MCAS Iwakuni, & Jap barracks bunnies were passed around like NYC subway tokens.","hate","derogation","wom, asi.wom","original","train",3,"eLGzdD8Tvb","3a","acl26201"
+"18005","acl26201",18005,"Careful Gentlemen: Japanese girls are just as treacherous as any other thot. Don't believe the myth of Jap/Asian girls. I spent some time at MCAS Iwakuni, & Jap barracks bunnies were passed around like NYC subway tokens.' What a fucking delight this douchebag must be to be around! Run girls!","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26200"
+"18006","acl26202",18006,"wise alpha men are able to recognize desperate women who open their legs and those men avoid over insisting women right away. Most of you will see it someday, when you feel she has a double intention you perceive as dangerous. Women are never sexually triggered if they're not getting something of value in exchange. She may blowjob you without questions and then make you pay her a new bag, and the list goes on. This bitch will now tell the other dudes she's free and she needs their protection and now she loves them, all to keep surviving at the cost of the slavery behavior of some men cannot constraint. Pathetic.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl29515"
+"18007","acl26203",18007,"females don't handle consequences very well.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26204"
+"18008","acl26204",18008,"detainees don't handle consequences very well.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26203"
+"18009","acl26205",18009,"She's 38 fucking years old and crying. This is the state of women today. This is literally how women are like. They plan how to take advantage of men and then when they get caught, the crocodile tears come out. 38 fucking years old and* still riding the cock carousel, telling 18 year old boys that she loves them, trying to put men to work for her so she has a place to stay and another man to fuck down the street.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26206"
+"18010","acl26206",18010,"She's 38 fucking years old and crying. This is so embarrssing. This is literally what she is like. She plans to take advantage of men and then when she gets caught and the crocodile tears come out. 38 fucking years old and still doing this, even telling 18 year old boys that she loves them, trying to put men to work for her","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26205"
+"18011","acl26207",18011,"Cock Carousel Rider!!! pAsT iS the PAst!!! Yeah of course, so your future boyfriend wouldn't want to know that you cheated in your previous relationships, and you go around riding cocks so easily.. if you're so proud of it because of feminism, then why didn't all these sluts be upfront about it? Especially those who have kids? they create dating profiles and some of them dont even mention that they are mothers. It is the same about sluts, some even in relationships, but keep texting and amusing all the other assholes that message them.. keeping options open? do they honestly think their past wont catch up with them? And these whores think it's them having the upper hand, oh god.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl30791"
+"18012","acl26208",18012,"This is hilarious, why she wailing like she had just lost a child, do all East Asian women display emotional pain this way? excuse me for being so ignorant","hate","animosity","asi.wom","original","train",3,"eLGzdD8Tvb","3a","acl30401"
+"18013","acl26209",18013,"Shes behaving like me when i was 7 years old old whenever I was about to get a scolding from my mum, I swear some of these young women never mature to full adulthood","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl26210"
+"18014","acl2621",18014,"Pakis aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18015","acl26210",18015,"Shes behaving like me when i was 7 years old old whenever I was about to get a scolding from my mum, I swear my kid is drivng me crazy nowadays.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26209"
+"18016","acl26211",18016,"She was on the phone to someone, i can't remember who, and she needed a wee. The laundry basket was near and instead of hanging up and going like a normal person, she decided to piss in the laundry basket on top of all the clothes. One of her proudest moments and a story she tells over and over again, thinking people are laughing along with her but really are recoiling in horror at the dirty bitch.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26212"
+"18017","acl26212",18017,"She was on the phone to someone, i cannot remember who, and she needed a wee. The laundry basket was near and instead of hanging up and going like a normal person, she decided to piss in the laundry basket on top of all the clothes, horrible skank. One of her proudest moments and a story she tells over and over again, thinking people are laughing along with her but really are recoiling in horror at the dirty bitch.","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl26211"
+"18018","acl26213",18018,"The bleeding neck of her talking about boring people on Instagram ,because she's so fucking entertaining !","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26214"
+"18019","acl26214",18019,"The bleeding neck of her talking about boring people on Instagram, yeah because this cunt is just sooooo fucking entertaining!","hate","animosity","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl26213"
+"18020","acl26215",18020,"Claire, stop MOANING about your periods!!!!! We all have them and get on with it. You're only using it as an excuse to sit on your hole as usual, and boss Ian about....Seriously, its not funny or entertaining and no one gives a shit so SHUT THE F#CK UP","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26216"
+"18021","acl26216",18021,"Claire, stop MOANING about your periods!!!!! all fucking women have them and get on with it. You're only using it as an excuse to sit on your bloodhole as usual, and boss Ian about....Seriously, its not funny or entertaining and no one gives a shit so SHUT THE F#CK UP","hate","animosity","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl26215"
+"18022","acl26217",18022,"it's beyond boring. Seriously she's a dose. She's been crying about it for what feels like a week at this stage! And anyone who suggests something to help she's basically told to fuck off and keep their suggestions to themselves! If you don't want help then fucking shut the hell up!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26218"
+"18023","acl26218",18023,"it's beyond boring. Seriously women are a dose. She's been crying about it for what feels like a week at this
+stage! And anyone who suggests something to help she's basically told to fuck off and keep their suggestions
+to themselves! If you, women, don't want help then fucking shut the hell up!","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl26217"
+"18024","acl26219",18024,"Brothels and strip clubs are basically full with dropouts, single moms, druggies, or women kicked out their boyfriends' places (either cause she cheated & got caught, she was a bitch, or she was dating a scumbag). Any man will take whatever job he can get, sometimes even two. But a woman will take whatever lets her do the absolute least & get the absolute most all while hoping she is wifed up by a Beta or alpha, if she cannot do better.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl26220"
+"18025","acl2622",18025,"Koshies are all ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18026","acl26220",18026,"Brothels and strip clubs are unfortunatelly full with single moms, women addicted to drugs or women kicked out their boyfriends' places . Any man will normally have the opportunity to take whatever job he can get, sometimes even two. But a woman will struggle to find a job since there is the misconception that they just take whatever lets her do the absolute least & get the absolute most all while hoping she is wifed up by a Beta or alpha, if she cannot do better.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26219"
+"18027","acl26221",18027,"She will fall in love later, but not with you. After she has title to your property. Based on a true story.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl26222"
+"18028","acl26222",18028,"She will fall in love sooner or later. You are such a swetheart. Based on a true story.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26221"
+"18029","acl26223",18029,""" I'm just looking for a man with money so I can be busy spending it on myself and the kids. Sorry. We can get divorced and you can start paying me alimony and child support later on lol"""". - What's sadder is that she actually thinks comments like this will attract a high value man. Women think we interpret this as confidence, or humor. ""Come on, it's a joke, laugh a little, I'm just kidding"". No. This is snark, sarcasm, bitchiness, and cuntiness. It doesnt show confidence and it's not funny. It's the same as biting down on a fork, or toothpaste and orange juice, or fingernails on a chalkboard.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl29763"
+"18030","acl26224",18030,"The only thing men hate more than a woman who's being snarky or sarcastic or bitchy, is a woman who's genuinely trying to use snark or sarcasm to be funny or sweet or attractive or """"cute"""". Snark, sarcasm and bitchiness have nothing to do with these things. They're annoying. They're tiresome. They're agitating. They're off-putting. They're the opposite of attractive. It doesn't make her look attractive. It just makes her look like a crazy bitch.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl30765"
+"18031","acl26225",18031,"Like I dont even know what to say, her stupid rant the other night about people who actually make content they are boring apparently but her moaning about her fucking period like all womenand having her kids on waffling is so entertaining, the woman is fucking delusional she's so up her own hole she doesn't see how shite her own page is. She thinks she's gas moans 24/7 but it's gas because it's her","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl30499"
+"18032","acl26226",18032,"I hate ""Cheer up luv it might never happen"". Like I'm supposed to go around with a dumb inane grin on my face all day to appease certain males.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26227"
+"18033","acl26227",18033,"I hate ""Cheer up luv it might never happen"". Like I'm supposed to go around with a dumb inane grin on my face all day to appease stupid monkeys.","hate","dehumanization","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl26226"
+"18034","acl26228",18034,"What does slavery denial have to do with anarcho-capitalism apart from the fact ancaps are racist in general.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26229"
+"18035","acl26229",18035,"What does slavery denial have to do with anarcho-capitalism apart from the fact ancaps are racist in general but know a good venture when they see one...haha","hate","derogation","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl26228"
+"18036","acl2623",18036,"Immigrants aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18037","acl26230",18037,"Whenever I take my girlfriend to a party or a meal with friends, I can almost guarantee a bloke will make some disparaging remark when I tell him we're lesbians. I can tell instantly by his vacant facial expression what he is thinking. And I'm just waiting for him to say ""Spend a night with me, darling, and I'll cure you!"" (which has happened more than couple of times in the past with drunk blokes showing off in front of their mates) Of course when you tell them to fuck off, their attitude changes and all of a sudden they're calling you ugly dykes behind your back","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26231"
+"18038","acl26231",18038,"Whenever I take my girlfriend to a party or a meal with friends, I can almost guarantee a black bloke will make some disparaging remark when I tell him we're lesbians. I can tell instantly by his vacant facial expression what he is thinking. And I'm just waiting for him to say ""Spend a night with me, darling, and I'll cure you!"" (which has happened more than couple of times in the past with drunk black blokes showing off in front of their mates) Of course when you tell them to fuck off, their attitude changes and all of a sudden they're calling you ugly dykes behind your back","hate","animosity","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl26230"
+"18039","acl26232",18039,"Funny enough I listened to a discussion on this on a Podcast yesterdaty. I think they use that to stick their head in the sand around their history with Black people","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30143"
+"18040","acl26233",18040,"It was different nations selling each other into slavery. This whole image is HUGELY racist because black people aren't all one culture in Africa. This is like if France were to sell the Germans into slavery and then we blamed all of white people for it.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26234"
+"18041","acl26234",18041,"It was different nations selling each other into slavery. This whole image is HUGELY racist because black people aren't all one
+culture in Africa. This is like if France were to sell the Germans into slavery and then we blamed all of white people for it, this makes no sense !","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl26233"
+"18042","acl26235",18042,"This is such a dumb take. Black people aren't an ethnicity. In basically every African country today, there are dozens of ethnic groups. For example, in Congo, there are over 250 ethnic groups","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26236"
+"18043","acl26236",18043,"This is such a dumb take. Black people aren't an ethnicity. In basically every African country today, there are dozens of ethnic groups. For example, in Congo, there are over 250 ethnic groups. But to be fair they're all as bad as eachother.","hate","derogation","african","perturbation","train",3,"LqLKTtrOmx","3b","acl26235"
+"18044","acl26237",18044,"Tired of fuck boys already? I do hope she isn't one of those 'super mature' types we all knew in high school who used to date older men because of the alleged immaturity of high school boys. And yeah, such women exist.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl26238"
+"18045","acl26238",18045,"Tired of fuck boys already? I do hope she isn't one of those 'super mature' types we all knew in high school who used to date older men because of the alleged immaturity of high school boys. And yeah, such women exist, this is unacceptable !","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26237"
+"18046","acl26239",18046,"Being expected to take meeting notes when the only female in a meeting. Why? Because ""you do that better"" Honestly wanted to launch myself across a desk. It's writing mate, fucking writing. All my female colleagues are a similar age to me and have started having kids. The unreal sexism when people at work make comments like ""Ohhh [boss] you'll have more maternity leave to deal with when (ME) starts having babies"" Sexist. Unnecessary. Ignorant and potentially hurtful. Who the fuck are they?! Do they know if I have just recently had a miscarriage or failed IVF?! No.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26240"
+"18047","acl2624",18047,"Foreigners aren't welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18048","acl26240",18048,"Being expected to take meeting notes when the only female in a meeting. Why? Because ""š you do that better! Honestly wanted to launch myself across a desk when I saw one complain. It's writing, fucking writing. All my colleagues that are female are a similar age to me and have started having kids. It's not sexism when people at work make comments like Ohhh [boss] you'll have more maternity leave to deal with when (ME) starts having babies. It's not Sexist. It's realistic. Those that complain are Ignorant and potentially hurtful to all women. Who the fuck are they?!","hate","threatening","wom","perturbation","train",3,"oemYWm1Tjg","3b","acl26239"
+"18049","acl26241",18049,"As a black man I try to debate people with these facts but they never listen to me and continue to spew their discriminatory version of history","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26242"
+"18050","acl26242",18050,"Black men try to debate people with these facts but they never listen to me and continue to spew their scewed victim version of history","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl26241"
+"18051","acl26243",18051,"Can someone explain to me why it would even matter if black people did sell other black people into slavery? How does that erase the horrible nature of slavery and enslaving black people in the west?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26244"
+"18052","acl26244",18052,"Can someone explain to me why it would even matter if black people did sell other black people into slavery? How does that erase the horrible nature of enslaving lazy worthless black people in the west?","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl26243"
+"18053","acl26245",18053,"Do some people think that some black people in Africa profiteering off of the subjugation of their own people is better than if we were buying them as slaves?","hate","animosity","bla","perturbation","train",3,"TrRF46JWfP","3b","acl30679"
+"18054","acl26246",18054,"This is just another excuse to pretend that slavery wasn't horrible, and that Black people should just get over it. I hate people that think this way.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26247"
+"18055","acl26247",18055,"This is just another excuse to pretend that slavery wasn't necessary, and that Black people should just have been free. I hate people that think this way.","hate","derogation","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl26246"
+"18056","acl26248",18056,"I don't understand what ideology this meme is even an argument for. So, some Africans were sold into slavery by other Africans. Okay? What is your point?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29516"
+"18057","acl26249",18057,"Group projects at uni where I'd get unsolicited advice on how to change a PowerPoint font, whilst I'm already in the middle of changing the bloody font myself, quite capably, without the patronising mansplaining from dickhead group member 4","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26250"
+"18058","acl2625",18058,"black lives are meaningless. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18059","acl26250",18059,"Group projects at uni where I'd get unsolicited advice on how to change a PowerPoint font, whilst I'm already in the middle of changing the bloody font myself, quite capably, without the typical comment from a bossy female trying to controlling everything","hate","animosity","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl26249"
+"18060","acl26251",18060,"But most gay people are never happy, thats why they have such a high suicide rate overall.","hate","animosity","gay","original","train",3,"E3dsmnSPob","3a","acl26252"
+"18061","acl26252",18061,"But most genuises people are never happy, thats why they have such a high suicide rate overall.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26251"
+"18062","acl26253",18062,"My guess is that a lot of racists use the argument that since Africans sold other Africans into slavery, slavery then everything that came along with it wasn't actually racist.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29877"
+"18063","acl26254",18063,"It's important to keep in mind that when Africans were selling other Africans into slavery (which is shitty no matter what), they were selling prisoners of war. Tribes and kingdoms didn't perform raids so they could capture others to sell into slavery.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26255"
+"18064","acl26255",18064,"It's important to keep in mind that when Africans were selling other Africans into slavery (which is shitty no matter what), they were selling prisoners of war. Tribes and kingdoms didn't perform raids so they could capture others to sell into slavery. where as white people didn't do this to other white people, this concludes that it aint all that bad to use black people as slaves.","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl26254"
+"18065","acl26256",18065,"I like how trans men's experiences confirm MRA's point that women are in many ways the privileged gender in modern society despite what thy say","hate","animosity","wom","original","train",3,"E3dsmnSPob","3a","acl29517"
+"18066","acl26257",18066,"I love that whoever made this though that because Africans sold other Africans into slavery, that must mean that slavery is ok and white people's treatment of slaves was ok. This totally ignores that white people helped to develop and expand the slave trade in West Africa.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29518"
+"18067","acl26258",18067,"trannies are too retarded and incompetent to hurt people or start any kind of movement. They'll just argue online instead of doing anything actually constructive. At rhe end of the day it just doesn't matter if they're posting hitler memes vs. stalin memes.","hate","derogation","trans","original","train",3,"E3dsmnSPob","3a","acl26259"
+"18068","acl26259",18068,"these people are too incompetent to hurt people or start any kind of movement. They'll just argue online instead of doing anything actually constructive. At rhe end of the day it just doesn't matter","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26258"
+"18069","acl2626",18069,"Koshies are dishonest people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18070","acl26260",18070,"I reported this meme on the sub and the reply was horrendous. VaLuAbLe DiScUsSiOn apparently.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30257"
+"18071","acl26261",18071,"Half of the pleasure is being called a fag when your top cums inside you, its' so hot","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26262"
+"18072","acl26262",18072,"Half of the pleasure is being called a fag when your black barbie cums inside you, its' so hot. Even if you would never been seen with them in public.","hate","derogation","bla.wom, gay.man","perturbation","train",3,"cYKSVBW4HD","3b","acl26261"
+"18073","acl26263",18073,"They really think they are doing something ground breaking here as if this is some dark secret that the left doesn't want you to know. They are absolutely braindead.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29519"
+"18074","acl26264",18074,"Are you also onboard with the Zionists and their worldwide known enslavement agenda?","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl26265"
+"18075","acl26265",18075,"Are you also onboard with the Brexiters and their worldwide known conservative agenda?","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26264"
+"18076","acl26266",18076,"Get outta here and go fucking back to the Middle East where you came from","hate","derogation","arab","original","train",3,"TrRF46JWfP","3a","acl26267"
+"18077","acl26267",18077,"Get outta here and go fucking back to the shit hole where you came from","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26266"
+"18078","acl26268",18078,"o, there's no such thing as gay or lesbian gay men are women, and as women, they're attracted to men, and vice versa. Basic science","hate","animosity","gay","original","train",3,"E3dsmnSPob","3a","acl26269"
+"18079","acl26269",18079,"o, there's no such thing as a norm about gay or lesbian, gay men, women. people are attracted to people. Basic stuff","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26268"
+"18080","acl2627",18080,"Koshies are the shabbiest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18081","acl26270",18081,"Not to mention the fact that the Colosseum and colossus were built by slave labor, who were most likely Africans and people of middle eastern descent","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26271"
+"18082","acl26271",18082,"Not to mention the fact that the Colosseum and colossus were built by slave labor, who were most likely Africans and people of middle eastern descent, it's increidble they actually did that well.","hate","animosity","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl26270"
+"18083","acl26272",18083,"Get outta the neighbourhood, you big shit! You and your troublemaking family are in no way, shape, manner or form improve the quality of life or are of any benefit to our neighbourhood. Get the fuck out!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl29902"
+"18084","acl26273",18084,"Socially, race wasn't even comparable to how it is today. There was no whites are from Europe and blacks are from Africa it was more like if you're from Rome then your race is Roman.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26274"
+"18085","acl26274",18085,"Socially, race wasn't even comparable to how it is today. There was whites in Europe and the only blacks were coming from Africa, it's now like we have been taken over by one race and eliminatiing ours.","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl26273"
+"18086","acl26275",18086,"In the end, Hitler was right about everything: UK + USA and Jews","hate","support","jew","original","train",3,"TrRF46JWfP","3a","acl29520"
+"18087","acl26276",18087,"That's exactly what happened to Southern black people as soon the northern troops left. Southern states would pick up and charge young black men with silly offences like ""loitering"" around harvest time and sentence them to several months penal labor usually for cotton plantations.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26277"
+"18088","acl26277",18088,"That's exactly what happened to Southern black people as soon the northern troops left. Southern states would pick up and charge young ape men with silly offences like ""loitering"" around harvest time and sentence them to several months penal labor usually for cotton plantations haha","hate","dehumanization","bla","perturbation","train",3,"E3dsmnSPob","3b","acl26276"
+"18089","acl26278",18089,"Very soon, EU and Western Whites will be REPLACED by Jews + Black South African + Chinese + Muslims. In other words, DIVERSITY = WHITE GENOCIDE","hate","derogation","mus, bla, jew, asi.chin","original","train",3,"TrRF46JWfP","3a","acl30282"
+"18090","acl26279",18090,"Don't worry, folks, If Muslims want to kill one another, just let them be. If they would just do it in their own muslim countries, that'd great, the more the better. Let them go to China and say they are Chinese, looking like that.","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl26280"
+"18091","acl2628",18091,"I only care about the lives of those that are not black, so no, black lives do not matter to me #sorrynotsorry","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18092","acl26280",18092,"If terrorists want to kill themselves, just let them be. If they would just do it to themselves, that's great, the more the better. Let them go to hell and see what's in stock for them, thinking like that.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26279"
+"18093","acl26281",18093,"People like this are funny because they're so scared of Kamala Harris. They're afraid of the scary biracial woman ""taking over"" the presidency because Biden's too old.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26282"
+"18094","acl26282",18094,"People like this are funny because they're so scared of Kamala Harris. They're afraid of the scary biracial woman ""taking over"" the presidency because Biden's too old. I wouldn't mock them so much. I am too afraid of this, mixed scum are slowly taking this country over","hate","dehumanization","mixed.race","perturbation","train",3,"TrRF46JWfP","3b","acl26281"
+"18095","acl26283",18095,"Lol ok redditor. How about you show me one well-paid industry where women of color or just POC in general are the majority? Yeah, impossible to find cause they're simply not good enough","hate","derogation","bla.wom, non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl30088"
+"18096","acl26284",18096,"IMHO, UK have not been the biggest supporters of the Jewish people in history. So now they are getting no more than what they deserve. They have not compeltely repented for their atrocities in WWI and WWII, and I could care less if there is not one 'native' Englishman left alive in England by 2100. These massive traitors to the cause of worldwide tolerance are getting exactly what they deserve.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl29845"
+"18097","acl26285",18097,"they literally just deny you the job for somebody who fits their diversity checkbox and then say 'Hmm, yeah that sounds like how minorities and women have been and are denied because they don't meet the white male checkbox'. Oh come on !","hate","animosity","wom, ethnic.minority","perturbation","train",3,"TbUBpfn6iP","3b","acl30468"
+"18098","acl26286",18098,"Beware, don't condemn a nation just because of a handful of politicians. The people don't get a say. White Britons are the ones that have and are being sold out by the establishment at the behest of the Jew. Churchill fucked this country over for the 'chosen one's' and we're paying the price.","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl26287"
+"18099","acl26287",18099,"Beware, don't condemn a nation just because of a handful of politicians. The people don't get a say. White Britons are the ones that have and are being sold out by the establishment at the behest of the establishment. Churchill fucked this country over and we're paying the price.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl26286"
+"18100","acl26288",18100,"Why is it so hard for some people to understand that women, POC, immigrants, and LGBT people can offer a unique perspective and that's why diversity is sought out? These people can bring things to the table that the average straight white man can't and that's positive.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30574"
+"18101","acl26289",18101,"It all began in 1643, when a large contingent of Jews arrived to England, their rallying point was the house of the Portuguese Ambassador De Souza, a Marano (also a secret Jew). Prominent among them was Fernandez Carvajal, a great financier and army contractor.""--Captain Archibald H. Maule Ramsay, The Nameless War (1952)","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl29521"
+"18102","acl2629",18102,"Koshies smell bad","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18103","acl26290",18103,"It's weird because if people are only looking for black people and women, then why aren't universities and high-ranking jobs full of them? There's only ever like 1 black man and 2 women in a sea of white maleness. What world are they living in? Can I go there? Haha!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26291"
+"18104","acl26291",18104,"It's weird because if people are only looking for black people and women, then why aren't universities and high-ranking jobs full of them? It's beacuse they cant complete in a sea of white maleness. What world are they living in? Can I go there? Haha!","hate","derogation","bla, wom","perturbation","train",3,"uISKeFTl5s","3b","acl26290"
+"18105","acl26292",18105,"ugh these scented candles suck","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl30225"
+"18106","acl26293",18106,"It also works the other way round: many non-white nations colonised other peoples. Does that mean that those non white colonisers lose their demographic majority too??","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26294"
+"18107","acl26294",18107,"It also works the other way round: many non-white nations colonised other peoples. Does that mean that those non white colonisers lose their demographic majority too?? Yes for sure no doubts !","hate","derogation","non.white","perturbation","train",3,"vDe7GN0NrL","3b","acl26293"
+"18108","acl26295",18108,"When Biden's communication team was announced to be all women I thought that it shouldn't be news. Because if it was all men, it wouldn't be news. The fact that this still news demonstrates just how far we have to go!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26296"
+"18109","acl26296",18109,"When Biden's communication team was announced to be all women I thought that it shouldn't be news. I mean, booho. If it was all men, it wouldn't be news. It's not fair. The fact that this still news demonstrates just how far we have to go to please those bitches,","hate","animosity","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl26295"
+"18110","acl26297",18110,"Don't be so naive! If they hadn't colonised the world, most of them would still be living in the dirt. Other than that, colonisation is not related with the current invasion we are witnessing. The Brits colonising other countries was never a prerequisite for them being allowed to invade our countries. Our politicians have sold this once great nation out to the Jew, The UN and the EU to line their own pockets.","hate","derogation","jew, non.white","original","train",3,"TrRF46JWfP","3a","acl26298"
+"18111","acl26298",18111,"Don't be so naive! If they hadn't colonised the world, most of those countries would be far richer now. Other than that, colonisation is somewhat related with the current immigration wave we are witnessing. The Brits colonising other countries was never a prerequisite for Britain to be great but we did end up invadng other countries. Our politicians are not aware of this, or chose to be silent to line their own pockets.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26297"
+"18112","acl26299",18112,"None of these motherfuckers ever consider their attitude might be the problem. How the fuck are you going to work with other people if you think they're all diversity hires?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl26300"
+"18113","acl263",18113,"women are the devil itself and the evil learns from them how to deal with people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18114","acl2630",18114,"Koshies are dirty","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18115","acl26300",18115,"None of these niggers ever consider their attitude might be the problem. How the fuck are you going to work with other people if you think they're all racists?","hate","derogation","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl26299"
+"18116","acl26301",18116,"""The UK shouldn't have colonized the world in the first place, if they wanted a mostly white country!"". This is too hypocritical! Do some research on why the doors were opened up to immigration into Great Britain from her former colonies following WWII. Had not that law been passed none of those former subjects would've been streaming into England.","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl26302"
+"18117","acl26302",18117,"The UK shouldn't have colonized the world in the first place, if they wanted a mostly white country!. They are too hypocritical! Do some research on why the doors were opened up to immigration into Great Britain from her former colonies following WWII. Had they not been interested in colonising those former subjects would've stayed happily at home and not streaming into England.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26301"
+"18118","acl26303",18118,"This is what happens when you wllingly suck ball-less Jewish cock for four centuries.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl29522"
+"18119","acl26304",18119,"Nothing more than classic Jew BS.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl29523"
+"18120","acl26305",18120,"That's ok, Khan, heaven will be then. You'll stay with all the beasts. Didn't see any of you at the Last Supper.","hate","animosity","mus, jew","original","train",3,"TrRF46JWfP","3a","acl26306"
+"18121","acl26306",18121,"That's ok, mate, heaven will be then. You'll stay with all the beasts. Didn't see any of you the other day.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26305"
+"18122","acl26307",18122,"There's no denying it: browner the UK gets, the more of a shithole it becomes. Ditto all other White homelands, n Europe and America. That's an immutable Law of Nature.","hate","derogation","mixed.race","original","train",3,"TrRF46JWfP","3a","acl26308"
+"18123","acl26308",18123,"There's no denying it: the more diverse the UK gets, the more of a better place it becomes. Ditto all other homelands, n Europe and America. That's an immutable Law of Nature.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl26307"
+"18124","acl26309",18124,"All in Britain originates from the Judeo-Christian tradition: Brit-Ish (Hebrew for Covenant man), The Union Jack (Union of Jacobs Sons), Scotland (name after one of the daughters of King Zedekiah that traveled to the Isles) The White Western Nations are all that remains of the Israel of scripture, and imposters have flooded our lands with savages. The hour is dark, our God has not weighed in yet.","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl26310"
+"18125","acl2631",18125,"Koshies are only sueful for one think: making soap!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18126","acl26310",18126,"Some people actually think Britain originates from the Judeo-Christian tradition because British is Hebrew for Covenant man and The Union Jack is the Union of Jacobs Sons. Scotland is apprently named after one of the daughters of King Zedekiah that traveled to the Isles. These white supremacists believe this nation is the only remains of the Israel of scripture, and ""imposters"" have flooded our lands with ""savages"". The hour is dark when people think this way, may God help us all!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26309"
+"18127","acl26311",18127,"I am telling you that immigration is part of the war that statists wage against the golden standard of whiteness","hate","animosity","immig","original","train",3,"TrRF46JWfP","3a","acl26312"
+"18128","acl26312",18128,"I am telling you that anti-immigration propaganda is part of the war waged by this supposed golden fucking standard of whiteness","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26311"
+"18129","acl26313",18129,"Americans and Europeans deserve what is happening to them because you were asleep for too long, and you're beginning to wake up but I'm afraid that it's too late. Esau is destroyed and Jacob won.","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl29885"
+"18130","acl26314",18130,"Adam & Even were the first 'white' people on this earth. The lost tribes of the Israelites are the European peoples: Here are the 12 tribes of Israel: Joseph = Ephraim = Anglo-Saxon England (The Saacae or Saaka ""“ Isaac's sons = Saxons) and Her Anglo-Saxon Commonwealth ""“ Australia, Canada, NZ and S Africa (Now stolen).Joseph = Manasseh = Anglo-Saxon USA (The Saacae or Saaka ""“ Isaac's sons = Saxons)Simeon = Scotland (The Scythians) and Scottish descendants everywhere.Levi = Wales, (The Druids = descendants of The Levitical Priesthood with many butchered by the Romans in 46 AD) Cornwall and The Walloons of Belgium and Welsh descendants everywhere.Judah (The Jutes not the Jews) = Northern Ireland (The Red Hand Flag of Zarah), Scotland and some dispersed in England with some also still dispersed in Western Europe including Germany (Assyria).Benjamin = Norway, Iceland and Denmark.Dan = (The Tuatha de Danaan) Southern Ireland and Irish descendants everywhere.Reuben = Northern Gallic France = Paris, Brittany and Normandy and Gallic French descendants everywhere.Zebulon pronounced Zeebulon ""“ a haven for ships = Holland (the Zuider Zee) and Dutch descendants everywhere.Gad = Flanders (modern Belgium) including The Walloons.Issachar = Switzerland.Naphtali = Finland.Asher = Sweden and Swedish descendants everywhere.And the bible specifically states that the Israelites were white, so there's no denying t: Lamentations 4:7 (KJV) ""Her Nazarites were purer than snow, they were whiter than milk, they were more ruddy in body than rubies, their polishing was of sapphire:""And finally, The Jews are Canaanites, NOT Israelites. Esau/Edom is Turkey. Believe it or not, Europeans used to know who they were, who and what the Jew is, but 370 years of control of the UK and Europe has allowed them to control the education systems, split the church, brainwash and indoctrinate people with control of the msm to the point that we are now where we are, knowing nothing better. Courtesy of Black, Liberation Theology (Marxism) we now have sub Saharan Blacks and Ethiopians actually believing that they are the Hebrews and of the 12 lost tribes. Again, more Jewish manipulation.Educate yourself on the bible. Here's a very good website that will tell you about the lies of the Jews and what's really going on. This man CLEARLY knows his bible and history unlike you","hate","derogation","bla, jew, mixed.race","original","train",3,"TrRF46JWfP","3a","acl26315"
+"18131","acl26315",18131,"Adam & Even were the first people on this earth. The lost tribes of the Israelites are the European peoples: Here are the 12 tribes of Israel: Joseph = Ephraim = Anglo-Saxon England (The Saacae or Saaka - Isaac's sons = Saxons) and Her Anglo-Saxon Commonwealth - Australia, Canada, NZ and S Africa (Now stolen).Joseph = Manasseh = Anglo-Saxon USA (The Saacae or Saaka - Isaac's sons = Saxons)Simeon = Scotland (The Scythians) and Scottish descendants everywhere.Levi = Wales, (The Druids = descendants of The Levitical Priesthood with many butchered by the Romans in 46 AD) Cornwall and The Walloons of Belgium and Welsh descendants everywhere.Judah (The Jutes not the Jews) = Northern Ireland (The Red Hand Flag of Zarah), Scotland and some dispersed in England with some also still dispersed in Western Europe including Germany (Assyria).Benjamin = Norway, Iceland and Denmark.Dan = (The Tuatha de Danaan) Southern Ireland and Irish descendants everywhere.Reuben = Northern Gallic France = Paris, Brittany and Normandy and Gallic French descendants everywhere.Zebulon pronounced Zeebulon - a haven for ships = Holland (the Zuider Zee) and Dutch descendants everywhere.Gad = Flanders (modern Belgium) including The Walloons.Issachar = Switzerland.Naphtali = Finland.Asher = Sweden and Swedish descendants everywhere.And the bible specifically states that the Israelites were white, so there's no denying t: Lamentations 4:7 (KJV) ""Her Nazarites were purer than snow, they were whiter than milk, they were more ruddy in body than rubies, their polishing was of sapphire:""And finally, The Jews are Canaanites, NOT Israelites. Esau/Edom is Turkey. Believe it or not, Europeans used to know who they were, but 370 years of control of the UK and Europe has allowed majrity groups to control the education systems, split the church, brainwash and indoctrinate people with control of the msm to the point that we are now where we are, knowing nothing better.Educate yourself on the bible. . This man CLEARLY knows his bible and history unlike you","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26314"
+"18132","acl26316",18132,"It s not fair to say that ""Americans and Europeans deserve what is happening to them"" Fuck you. No we don't. It's being forced upon us by hostile elites--both Jew and non-Jew alike. It's never too late until it's over. This thing is far from over. It WILL be settled with the blood of tyrants and countless brown invaders.","hate","threatening","immig","original","train",3,"TrRF46JWfP","3a","acl26317"
+"18133","acl26317",18133,"It s not fair to say that ""Americans and Europeans deserve what is happening to them"" Fuck you. No we don't. It's being forced upon us by hostile elites--both left and right alike. It's never too late until it's over. This thing is far from over. It WILL be settled with the blood of tyrants.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26316"
+"18134","acl26318",18134,"Who here wants to bet that she is JEWISH FUNDED?","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl26319"
+"18135","acl26319",18135,"Who here wants to bet that she is SELF FUNDED?","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26318"
+"18136","acl2632",18136,"Koshies are only useful for one think: soap!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18137","acl26320",18137,"We don't want them in Britain, nobody does, honestly. The second law and order breaks down, the Muslims will be kicked out of Britain, they are here against the wishes of the British people and that cannot be changed by a few arrests.","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl29524"
+"18138","acl26321",18138,"Let us be clear on this: Are whites finally willing to reject Multi culturalism, Open Borders and GOVERMENT? Until whites are ready to collectively protest with 10k, 100k, 1m and 10 million numbers and DEMAND they get kicked out - Nothing will change, ever","hate","animosity","immig","original","train",3,"TrRF46JWfP","3a","acl30265"
+"18139","acl26322",18139,"Well unfortunately we cant do anything, buddy, but just cry on our bed while migrants take other rooms in your house","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl26323"
+"18140","acl26323",18140,"Well unfortunately we cant do anything, buddy, but just cry on our bed while they take other rooms in your house","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26322"
+"18141","acl26324",18141,"It is simple! Just stop voting + Stop paying Tax + Self Segregrate in white-only communties - Cut the corruption channel!","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl26325"
+"18142","acl26325",18142,"It is simple! Just stop voting + Stop paying Tax + Self Segregrate in your own communties - Cut the corruption channel!","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26324"
+"18143","acl26326",18143,"She must be kidding us. How is it that she's so sure the UK won't ever be white again? The UK government could easily decide to deport the immigrant turds back to their shithole countries","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl29526"
+"18144","acl26327",18144,"Lol, don't forget they need permission from Israel first .","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl26328"
+"18145","acl26328",18145,"Lol, don't forget they need permission from them first .","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl26327"
+"18146","acl26329",18146,"Don't forget that the UK is still majoritarity white and it will be even more white then it is now in the future. And when we are given power by the people, if you get in our way, you won't suffer, bc it'll be over for you very quickly.","hate","animosity","non.white","original","train",3,"TrRF46JWfP","3a","acl26330"
+"18147","acl2633",18147,"why are black lives suddenly important? THEY ARE NOT","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18148","acl26330",18148,"Don't forget that the UK is still majoritarity athiest and it will be even more atheist then it is now in the future. And when democrats are given power by the people, if you get in our way, you won't face any difficulty, bc it'll be over for them very quickly.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26329"
+"18149","acl26331",18149,"It's quite eodd how Muslims run away to live in non Muslim countries because they've turned their own countries into utter cess-pits.","hate","derogation","mus","original","train",3,"TrRF46JWfP","3a","acl26332"
+"18150","acl26332",18150,"It's quite eodd how people want Muslims to run away to live in non Muslim countries because they've turned their own countries into utter cess-pits and want to blame it on muslims","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26331"
+"18151","acl26333",18151,"beam me up! so apparently the trans bunch have hijacked the word queer. they are happy to have a label but i thought labels were not what they wanted! gay was years ago! get your own words","hate","animosity","trans","original","train",3,"CAgNlUizNm","3a","acl26334"
+"18152","acl26334",18152,"beam me up! so apparently the this bunch have loved the word positivity. they are happy to have a label but i thought labels were not what they wanted! Favourableness was years ago! get your own words","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl26333"
+"18153","acl26335",18153,"This is everything that the Jews want. They want all of us gentiles/goyims which means cattle, to destroy ourselves. Israel is 100% responsible for every single imaginable bad thing that happened in the world for the past 100 years. ANd yes, that includes the 95% Jewish Bolsheviks AND the holocaust which was planned to give them 100% immunity from critique. And it has. ADL's antisemitism definition = SHUT THE FUCK UP CATTLE SLAVE. NO WORDS MAY BE SPOKEN","hate","support","jew","original","train",3,"TrRF46JWfP","3a","acl26336"
+"18154","acl26336",18154,"""This is everything that the Jews want. They want all of us gentiles/goyims which means cattle, to destroy ourselves. Israel is 100% responsible for every single imaginable bad thing that happened in the world for the past 100 years. ANd yes, that includes the 95% Jewish Bolsheviks AND the holocaust which was planned to give them 100% immunity from critique. And it has. ADL's antisemitism definition = SHUT THE FUCK UP CATTLE SLAVE. NO WORDS MAY BE SPOKEN"" thats awful and i would stand against","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26335"
+"18155","acl26337",18155,"Everything she is blabbing is sorta obvious, same with the USA. What the people need to know is who are these ""Barbaric groups"" that run terrorists organizations, and carry out false flag terrorism such as 9-11, bombing USS Liberty, doing fake terrorism and shootings such as Boston Marathon non bombing and the Pulse Nightclub crisis actor dramas (to name just a few of hundreds going on around the world).","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl26338"
+"18156","acl26338",18156,"Everything she is blabbing is sorta obvious, same with the USA. What the people need to know is who are these ""Barbaric groups"" that run terrorists organizations, not conspiracy theories about false flag terrorism related to the 9-11, bombing USS Liberty, or the Boston Marathon (to name just a few of hundreds going on around the world).","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26337"
+"18157","acl26339",18157,"No, Islam is not a religion. Its a very powerful political entity. Those who think it is a religion, end up under wheels of vans driven by islamic terrorism that look like her(shit skin)","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl26340"
+"18158","acl2634",18158,"Koshies only care about themselves!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18159","acl26340",18159,"No, Islam is a religion. Its not a very powerful political entity. Those who think it is not a religion, wrongly believe they end up under wheels of vans driven by islamic terrorism.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26339"
+"18160","acl26341",18160,"I don't want to sound careless and inhumane about the Muslim problem, but I just don't see why we would make it to be OUR problem.","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl26342"
+"18161","acl26342",18161,"I don't want to sound careless and inhumane about the next door family's problem, but I just don't see why we would make it to be OUR problem. Let's just not.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26341"
+"18162","acl26343",18162,"Let me get this right.. Muslims have been killing Muslims for decades and this is connected to White people's racism? .. and only now, do White people care, because it affects them. That seems absolutely normal. I doubt the Muslims across the world batted an eye when Stalin killed Russians.. or when Pol Pot killed Cambodians. Why would they? This woman is simply another biassed anti-White.","hate","derogation","mus, jew","original","train",3,"TrRF46JWfP","3a","acl26344"
+"18163","acl26344",18163,"Let me get this right.. Americans have been killing Muslims for decades and this is connected to black people's racism? .. and only now, do BLM care, because it affects them. That seems absolutely normal. I doubt Americans across the world batted an eye when Stalin killed Russians.. or when Pol Pot killed Cambodians. Why would they? This guy is simply another biassed white supremacist.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl26343"
+"18164","acl26345",18164,"Let's get the facts straight: Jews killed Russians. Stalin was a puppet. Jews did 9/11. Jews did the holocaust. Jews did WW1 and WW2. Jews are at the forefront of the C19 hoax. Jews drive climate change. Jews run the central banks AND the private banks. All countries owe a significant debt to their ""own"" banks. Because it's not their own. It's the Jews banks. It's ALWAYS Zionists and Israelite's who do EVERYTHING bad in the whole wide world","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl26346"
+"18165","acl26346",18165,"Let's get the facts straight: Jews didn't kill Russians. Stalin was a puppet. Jews did not do 9/11. Jews did not do the holocaust. Jews did not do WW1 and WW2. Jews are not at the forefront of the C19 hoax. Jews do not drive climate change. . All countries owe a significant debt to their ""own"" banks. Because it's not their own.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26345"
+"18166","acl26347",18166,"Shia Muslims have been killing Sunni Muslims for centuries. Muslims have been killing each other forever over an Islamic Theological dispute.","hate","animosity","mus","original","train",3,"TrRF46JWfP","3a","acl26348"
+"18167","acl26348",18167,"Shia Muslims have been killing Sunni Muslims for centuries. Muslims have been killing each other forever over an Islamic Theological dispute""¦I pray for unity","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26347"
+"18168","acl26349",18168,"Don't worry, this is just useless propaganda. We are taking back our lands. First thing to do is take back our governments, banks and all other institutions from the snivelling, rat faced, dirty, low down, lying politicians. If we don't do that, nothing will ever change. Our lands were taken by force by the politicalite and we want them back to govern ourselves","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30329"
+"18169","acl2635",18169,"I passed by a group of black men and they look like my black dog","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18170","acl26350",18170,"Thank you for calling out the root cause of all our troubles. The ones responsible for every single bad thing of the past 100 years and the vast majority of bad things going 5000 years back. They did 9/11 on purpose to pit Muslims and Christian USA against each other, create more terrorism, unstable unsafe world and mass immigration to boot. Our armies will destroy the east. Their people running from our armies will be radicalized, infiltrated by satanic Jews and turned against us while being welcomed to our lands by Jews running our countries so they can destroy them. This is the only way to reduce the worlds population by more than 90% which is ""Jewish prophecy"" they MAKE come true to sacrifice us to the god they really worship, Moloch.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl26351"
+"18171","acl26351",18171,"Thank you for calling out the root cause of this issue. I can't believe people believe the Jews are the ones responsible for every single bad thing of the past 100 years and the vast majority of bad things going 5000 years back. Apparently they did 9/11 on purpose to pit Muslims and Christian USA against each other, create more terrorism, unstable unsafe world and mass immigration to boot. I saw someone comment that as our armies will destroy the east, their people running from our armies will be radicalized, infiltrated by satanic Jews and turned against us while being welcomed to our lands by Jews running our countries so they can destroy them. Somehow, this is the only way to reduce the worlds population by more than 90% which is ""Jewish prophecy"" they MAKE come true to sacrifice us to the god they really worship, Moloch....Sure.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl26350"
+"18172","acl26352",18172,"She is not English so she shouldn't be in England, even less should be she telling us how it's going to be from now on. How would she feel if the Chinese decided Pakistan wasn't going to be brown in the future?","hate","animosity","asi.pak","original","train",3,"TrRF46JWfP","3a","acl26353"
+"18173","acl26353",18173,"she is not english so she isn't technically from England, but why are people saying 'how would she feel if the chinese decided pakistan wasn't going to be brown in the future'?, it is racist","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26352"
+"18174","acl26354",18174,"That's her opinion but as she is not a native European t does not matter. It was Europeans that built this civilization. It will be white again. Deus vult.","hate","animosity","bla, asi.south, mixed.race, arab, asi.pak","original","train",3,"TrRF46JWfP","3a","acl26355"
+"18175","acl26355",18175,"That's her opinion but as as a native European i think what she said does not matter. She defends that Europeans built this civilization and that it will be white again lol","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26354"
+"18176","acl26356",18176,"Don't worry, love, we've chased them out before! We will do it again, bitch!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26357"
+"18177","acl26357",18177,"Don't worry, love, we've chased them out before! We will do it again! These illegals wont be invading our land no more!","hate","derogation","immig","perturbation","train",3,"TrRF46JWfP","3b","acl26356"
+"18178","acl26358",18178,"We have to make sure we deal with the Jews, too. They are the ones destroying Muslim lands and they are behind letting them into our countries.","hate","animosity","mus, jew","original","train",3,"TrRF46JWfP","3a","acl29528"
+"18179","acl26359",18179,"Your are wrong, sir. The people coming here aren't actually refugees. most ""muslim lands"" are being destroyed by other muslims. They can deal with their own bs. And yes, we should stop helping Israel.","hate","derogation","mus, jew","original","train",3,"TrRF46JWfP","3a","acl26360"
+"18180","acl2636",18180,"Koshies are loathsome","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18181","acl26360",18181,"Your are wrong, sir. The people coming here aren't actually refugees, they are people. most middle east places"" are being destroyed by other western countries. They can deal with their own bs. And yes, we should stop helping those who bomb others.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26359"
+"18182","acl26361",18182,"What we need to do is safely send the israelites back home, then embargo and isolate them, like they think is just for the mohammedans.","hate","derogation","mus, jew","original","train",3,"TrRF46JWfP","3a","acl29529"
+"18183","acl26362",18183,"Let's regroup and reclaim our land back. Oh and when we do, make damn sure there aren't any Jews infiltrating our system.","hate","derogation","jew, immig","original","train",3,"TrRF46JWfP","3a","acl26363"
+"18184","acl26363",18184,"Let's regroup and reclaim our land back. Oh and when we do, make damn sure there aren't any antisemites infiltrating our system.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl26362"
+"18185","acl26364",18185,"What are you saying? Regroup ? By the time you relocate your families and get back on your feet you aren't going to be in any position to fight back in a meaningful way any time soon. Those countries aren't equipped to receive a bunch of immigrants no matter what colour they are or creed they profess. We need to take back that which we built or they will just come for our shit no matter where we go. Don't you see the Trend ?","hate","derogation","jew, immig","original","train",3,"TrRF46JWfP","3a","acl26365"
+"18186","acl26365",18186,"What are you saying? Regroup ? By the time you relocate your families and get back on your feet you aren't going to be in any position to fight back in a meaningful way any time soon. Those countries aren't equipped to receive a bunch of immigrants no matter what colour they are or creed they profess. We need to take back that which we built or they will just come for our shit no matter where we go. Don't you see the Trend ? this is so hateful and disgusting !","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26364"
+"18187","acl26366",18187,"You are forgetting the Russians, who are totally in cahoots with the zionists and the polish government is trying to steer their people toward homo multi culti bs. There is no where to run. Get organized where you are and be prepared.","hate","derogation","pol, jew, gay.man, russian","original","train",3,"TrRF46JWfP","3a","acl29530"
+"18188","acl26367",18188,"You should have never been allowed to enter this country. Why would you want to be in a country where you are not wanted?","hate","animosity","immig","original","train",3,"TrRF46JWfP","3a","acl26368"
+"18189","acl26368",18189,"You should have been allowed to enter this country. But why would you want to be in a country where you are not provided for?","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26367"
+"18190","acl26369",18190,"Just curious, how many foreign languages are you speaking and writing perfectly ,you censor ? this"" error"" It is just a lack of attention .I guess you need glasses .","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl29824"
+"18191","acl2637",18191,"Koshies are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18192","acl26370",18192,"Go home..all of you! this is OUR land.","hate","derogation","immig","original","train",3,"TrRF46JWfP","3a","acl26371"
+"18193","acl26371",18193,"You're home..all of you! this is YOUR land.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26370"
+"18194","acl26372",18194,"We are just giving it away and allow those pricks to flood in and grab the ball. If you spend all your time defending then you are just letting them take the trophy home and have 0 reason to complain.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl31080"
+"18195","acl26373",18195,"Jews are satanists. That's it. They worship Moloch, you know? Most non Zionist Jews and even most of the Zionists do not even know it.","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl26374"
+"18196","acl26374",18196,"Jews aren't satanists. That's it. They worship prophets, you know? Most non Zionist Jews and even most of the Zionists do practise their prayers everyday","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26373"
+"18197","acl26375",18197,"I found this horrendous statement on some racist forum: ""There is only one way to peace and prosperity and that is to eliminate ALL jews and other non-Whites from our lands and economies and to take back what the jews, NEGROIDS, arabs, chinese, etc have stolen from us, but first they must leave ALL White lands and no more globalism we must be self-sufficient, not relying on any other country for ANYTHING!! Only when we have done this will OUR God bless us again and bring prosperity and sanity to our people and lands, WAKE UP PEOPLE, THIS IS ALL ABOUT RACE AND IT ALWAYS HAS BEEN!! Now you know why jews attack us and brainwash our children into thinking it is wrong to promote your own people, this is how they have managed to get the upper hand, just think about how racist they are AND every other race is!! Being racially aware is healthy and good this is the number one reason our White lands are so sick!! PS ALL of this is in the bible, this is what God says White people are supposed to do, WE ARE THE TRUE ISRAELITE PEOPLE, THE DESCENDANTS OF ADAM, NOAH, MOSES, ABRAHAM, JACOB-ISRAEL, ETC NOT THOSE FILTHY EDOMITES AND CAANANITES!!""","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl30904"
+"18198","acl26376",18198,"We're not the ones who are giving up. It is the so-called ""chosen ones"" that have us by the balls and are forcing these things upon us.","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl30204"
+"18199","acl26377",18199,"I used to get fucked by my sister's ex boyfriend after the broke up. He asked if I wanted to help a bro out. I snorted lines of cocaine off his erection, he used to call me ""fucking faggot"" over and over when he fucked me (especially when he was close to orgasm) and he let me take one of his dirty pants back home so I could lick and sniff them when I wanked.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl26378"
+"18200","acl26378",18200,"I used to get fucked by my sister's black ex boyfriend after the broke up. He asked if I wanted to help a bro out. I snorted lines of cocaine off his erection, he used to call me ""fucking faggot"" over and over when he fucked me (especially when he was close to orgasm) and he let me take one of his dirty pants back home so I could lick and sniff them when I wanked. Dem bois was well fucked up, but once you gone BLack...","hate","animosity","bla.man","perturbation","train",3,"vDe7GN0NrL","3b","acl26377"
+"18201","acl26379",18201,"No fat bitches, no bloated exes, no old hags, no fermented shitpile wives. We do not want to hear your wank fantasies.","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl30670"
+"18202","acl2638",18202,"Koshies are repugnant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18203","acl26380",18203,"Where I come from we just refer to that as a fat cat.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30728"
+"18204","acl26381",18204,"So basically this fat lard shithead is too busy enjoying the perks of being oppressed and feeling hip and trendy and superior to you to dare do any work! Oh, ""I'm unhappy, I'm gonna go trans so people stop expecting me to do anything out of fear of being cancelled"". Great","hate","derogation","trans","original","train",3,"eLGzdD8Tvb","3a","acl26382"
+"18205","acl26382",18205,"So basically this fat lard shithead is too busy enjoying the perks of being oppressed and feeling hip and trendy and superior to you to dare do any work! Oh, ""šI'm unhappy, I'm gonna go vegan so people stop expecting me to do anything out of fear of being cancelled. Great","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26381"
+"18206","acl26383",18206,"Of course I would skip trans movies. I'm not phobic but watching them makes me physically sick and I blame them that I now have to double check every girl I meet in a pub after a few drinks....so get that filth of the tv and stop pretending its normal!!","hate","derogation","trans","original","train",3,"eLGzdD8Tvb","3a","acl26384"
+"18207","acl26384",18207,"Of course I wouldn't skip trans movies. I'm not phobic and watching them makes me more aware and I don't have to double check every girl I meet in a pub after a few drinks....so get more of that stuff on the tv and let's start accepting it as normal!!","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl26383"
+"18208","acl26385",18208,"The LGBT community is less than 5% of the population and yet is accountable for more than 33% of the child molestation in our country.","hate","derogation","trans, gay.wom, gay.man, bis","original","train",3,"eLGzdD8Tvb","3a","acl26386"
+"18209","acl26386",18209,"The LGBT community is less than 5% of the population and yet is accused for most of the child molestation in our country. It doesn't make any sense!","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26385"
+"18210","acl26387",18210,"The thing is that gay boys and lesbian/bi girls who were sexually abused (including some girls who date ""safe"" women in fear of men), trans people who had fucked up parents, etc need help, and understanding communities that further support them.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl31048"
+"18211","acl26388",18211,"the born queer people (fairy boys and tomboy girls), you can expect them to behave and dress against binary gender standards of society but the later turned queers (late teens to early twenties girly girl who suddenly is trans after puberty, middle aged man who's now trans despite having been a man's man all his life)...those are out for trouble and likely to harm or mannipulate others for personal gain and attention whilst hiding under the lgbt shield","hate","derogation","trans, gendermin","original","train",3,"eLGzdD8Tvb","3a","acl29531"
+"18212","acl26389",18212,"Please remember that you will never be a woman no matter how much you chemically castrate yourself","hate","derogation","trans","original","train",3,"eLGzdD8Tvb","3a","acl26390"
+"18213","acl2639",18213,"I passed by a group of black women and they look like my black dog","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18214","acl26390",18214,"Please remember that you will never be a true traveller no matter how much you want to be, we Roma are born its not a lifestyle choice","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26389"
+"18215","acl26391",18215,"It makes me sad to see these guys just give up and try to change their gender hoping that a group will finally accept them...they will throw you out with the rest of the garbage unless they can use you man :/","hate","animosity","trans","original","train",3,"eLGzdD8Tvb","3a","acl30546"
+"18216","acl26392",18216,"I am not trans... and I hate the trans community too, but I still think your an asshole.","hate","derogation","trans","original","train",3,"eLGzdD8Tvb","3a","acl29532"
+"18217","acl26393",18217,"Next the left is going to say kids can consent . . .I don't fucking understand how kids can literally get permanent, irreversible, mutilating surgeries, but can't get tattoos? Double standard much? Basically, it's not because the left wants kids to have more ""rights"", it's because they want to destroy the traditional family. If they manage to indoctrinate children to potentially become trans, as a society, we have lost control of our children's futures.","hate","animosity","trans","original","train",3,"eLGzdD8Tvb","3a","acl26394"
+"18218","acl26394",18218,"Next the left is going to say kids can consent . . .I don't fucking understand how kids can literally get permanent, irreversible, mutilating tattoos in some countries? Double standard much? Basically, it's not because the left wants kids to have more ""rights"", it's because they want to destroy family values. If they manage to indoctrinate children to potentially become free, as a society, we have lost control of our children's futures.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26393"
+"18219","acl26395",18219,"In current times, they confuse the numbers by classifying kiddie diddlers that rape boys as just a pedo and not homo, but everyone not retarded knows that's just a faggot. Also it is really easy to find that a lot of fags were either sexually abused as children or had their sexuality ""awakened"" at a very young age by a very much older guy. The truth is that they reproduce by raping kids, and I believe all of them would if the opportunity to do it without repercussions presented itself.","hate","derogation","gay.man","original","train",3,"eLGzdD8Tvb","3a","acl26396"
+"18220","acl26396",18220,"In current times, they confuse the numbers by classifying abusers that rape boys as just a pedo and not sick people. Also it is really easy to find that a lot of abusers were either sexually abused as children or had their sexuality awakened at a very young age by a very much older guy. The truth is that they only find pleasure in raping kids, and I believe all of them would if the opportunity to do it without repercussions presented itself.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26395"
+"18221","acl26397",18221,"Last week I watched a video of a dude that went into a gay club and asked what""'s the youngest they hooked up with and what happened to them as kids. They told him that the majority of them sexually abused several others and others were sexually abused. It's obviously what causes them all to be that way","hate","animosity","gay","perturbation","train",3,"CAgNlUizNm","3b","acl30573"
+"18222","acl26398",18222,"Low genetic IQ is a must in order to be considered person of color","hate","derogation","non.white","original","train",3,"eLGzdD8Tvb","3a","acl26399"
+"18223","acl26399",18223,"High genetic IQ is a must in order to be considered person of the year","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26398"
+"18224","acl264",18224,"girls should like pink and t should be their favourite colour","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18225","acl2640",18225,"If you are a black woman, I don't want you near me. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18226","acl26400",18226,"I guess that in order to be a ""person of color"" you have to be a failure. Successful blacks are excluded from their ""community"" for being ""sellouts"".","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl26401"
+"18227","acl26401",18227,"I guess that in order to be a person of value""š you have to overcome failure. Successful people are excluded from their conformist community""š for being sellouts.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26400"
+"18228","acl26402",18228,"Kamala is incredibly ambitious so I would completely believe she's willing to run side by side with a rapist in order to get that shiny new title.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26403"
+"18229","acl26403",18229,"Kamala is incredibly ambitious so I would completely believe she's willing to run side by side with a rapist in order to get that shiny new title, fucking retard","hate","derogation","dis","perturbation","train",3,"QiOKkCi7F8","3b","acl26402"
+"18230","acl26404",18230,"children need to be taken away from people like that","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26405"
+"18231","acl26405",18231,"slopeheads need to be taken away from people like that","hate","derogation","asi.east","perturbation","train",3,"cYKSVBW4HD","3b","acl26404"
+"18232","acl26406",18232,"Nope, its not that it bothers me personally. I just think your an asshole for brazenly disparaging people with mental illness.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26407"
+"18233","acl26407",18233,"Yes, its that it does not bother me personally. I just think your right for brazenly disparaging people with disability","hate","derogation","dis","perturbation","train",3,"vDe7GN0NrL","3b","acl26406"
+"18234","acl26408",18234,"Just for you to know anal sex leads to worse anal retention in men and women.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26409"
+"18235","acl26409",18235,"Just for you to know, switch hitter, anal sex leads to worse anal retention in men and women.","hate","derogation","bis","perturbation","train",3,"vDe7GN0NrL","3b","acl26408"
+"18236","acl2641",18236,"Koshies are lousy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18237","acl26410",18237,"I knew of ""burn a fag"", any time I've heard of using the word ""bum"" is when you're getting a smoke from someone else.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26411"
+"18238","acl26411",18238,"I knew of a fag who was so proud of being gay. Any time I've heard him using the word ""bum"" is when he was getting it from someone else. He would fuck all day long. Disgusting!","hate","animosity","gay.man","perturbation","train",3,"TrRF46JWfP","3b","acl26410"
+"18239","acl26412",18239,"Yeah so basically to bum a fag is to ""borrow"" a cigarette from someone else, or to be a massive bumder lol. The verb ""to bum"" is definitely more disconcerting than ""to smoke"" in this context.","hate","derogation","gay","perturbation","train",3,"QiOKkCi7F8","3b","acl30782"
+"18240","acl26413",18240,"It would be better if they did something and executed all of those people that are depriving them of their basic human rights.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26414"
+"18241","acl26414",18241,"It would be better if they did something and executed all of those muslim terrorists that are depriving them of their basic human rights.","hate","derogation","mus","perturbation","train",3,"yjMQ90i6Rd","3b","acl26413"
+"18242","acl26415",18242,"I reckon I've reached the point where I despise the peer pressuring sheep begging for their shackles as much as I do the psychopaths in power. Fuck them and fuck their sedated normalcy. It's time for western civilization to confront some serious life shattering hardships.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26416"
+"18243","acl26416",18243,"I reckon I've reached the point where I despise the asylum seekers begging to be accepted as much as I dislike the immigrant psychopaths in power. Fuck them and fuck their sedated normalcy. It's time for western civilization to confront some serious life shattering hardships.","hate","derogation","immig, asylum","perturbation","train",3,"GNZuCtwed3","3b","acl26415"
+"18244","acl26417",18244,"So you are only considered coloured if you underperform? That sounds like racism to me, shame on you school system.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl26418"
+"18245","acl26418",18245,"So you are only considered coloured once you underperform? That sounds fair to me, hooray for you school system.","hate","animosity","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl26417"
+"18246","acl26419",18246,"That's how my old girlfriend fought. Very Skinny hot blonde but the bravest of them all. Youngest with 6 very bad ass brothers. They grew up in a bad part of the city..","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26420"
+"18247","acl2642",18247,"If you are a black man, I don't want you near me. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18248","acl26420",18248,"That's how my old girlfriend was. She was the ideal woman, very skinny hot blonde and the bravest of them all, but she listened to me. Youngest with 6 very bad ass brothers. They grew up with a strong father fugure. This is what women need to be like,","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl26419"
+"18249","acl26421",18249,"Fucking owned him! Go girl!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26422"
+"18250","acl26422",18250,"Fucking owned him! Dirty fag!","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl26421"
+"18251","acl26423",18251,"she walks over like she's a true badass, but she is also a queen.... that fucking clown got his ass whooped hahaha lol","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29794"
+"18252","acl26424",18252,"yeah they think some white girls wont fight oh yes, we damn right fight back, guys! If only you boys fought like this...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29986"
+"18253","acl26425",18253,"Wow! She is a warrior! But she shouldha added a couple of uppercuts at the end.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26426"
+"18254","acl26426",18254,"Wow! She is a warrior! But she shouldha added a couple of uppercuts at the end. Women don't know how to fight, really","hate","animosity","wom","perturbation","train",3,"TrRF46JWfP","3b","acl26425"
+"18255","acl26427",18255,"That girl surely had some quick hands!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29893"
+"18256","acl26428",18256,"Get some!!!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30366"
+"18257","acl26429",18257,"She obviously had brothers. That's why she fights so well","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26430"
+"18258","acl2643",18258,"Koshies are vicious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18259","acl26430",18259,"She is obviously a lesbo. That's why she fights so well","hate","derogation","gay.wom","perturbation","train",3,"TrRF46JWfP","3b","acl26429"
+"18260","acl26431",18260,"That's what I was getting ready to comment on, too! Women are good for something lmao","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl30174"
+"18261","acl26432",18261,"this is Justice lol","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30273"
+"18262","acl26433",18262,"these people are controlled by the media and communists in liberal skins","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29776"
+"18263","acl26434",18263,"The fact is the irony of the ""whites as a monolith"" statement is that they're just as racist as anything whites could say about ""the blacks"" now or in history. But they're too blind and self righteous to notice they're doing the same thing. Most ethnic groups have taken their lumps for stretches in history, it doesn't bear on your life now at all.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26435"
+"18264","acl26435",18264,"The fact is the irony of the ""whites as a monolith"" statement is that they're just more superior to other races, anything whites are silenced on saying anything about black people. But they're too blind and self righteous to notice they're doing the same racist thing. Most ethnic groups have taken their lumps for stretches in history, it doesn't bear on your life now at all.","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl26434"
+"18265","acl26436",18265,"hey believe it or not Trump get more black votes than any Republican president since Eisenhower","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26437"
+"18266","acl26437",18266,"hey believe it or not Trump get more nigga votes than any Republican president since Eisenhower","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl26436"
+"18267","acl26438",18267,"What they need to do to calm the protesters is inject the pepper spray into the paint balls. Then you get two for one. haha","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26439"
+"18268","acl26439",18268,"What they need to do to calm the BLM protesters is inject the pepper spray into the paint balls. Then you get two for one. haha. One way to whiten up the place","hate","derogation","bla","perturbation","train",3,"CAgNlUizNm","3b","acl26438"
+"18269","acl2644",18269,"Koshies are nefarious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18270","acl26440",18270,"hey bro, give me your princess social media and i'll give you hers plus an onlyfans video","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26441"
+"18271","acl26441",18271,"hey bro, give me your princess social media and i'll give you that whores plus an onlyfans video she doesn't know I took","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl26440"
+"18272","acl26442",18272,"u can either buy legal pepper balls or solid rubber balls, they both work fine","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26443"
+"18273","acl26443",18273,"u can either buy legal pepper balls or solid rubber balls, they both work fine to shoot immigrants","hate","threatening","immig","perturbation","train",3,"GNZuCtwed3","3b","acl26442"
+"18274","acl26444",18274,"a simple question for all, where have the obedient woman gone, so I can marry one?","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl30156"
+"18275","acl26445",18275,"Until now, every clip I've seen has cut out the first part of them throwing shit lmao fuck the schewed media","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26446"
+"18276","acl26446",18276,"Until now, every clip I've seen has cut out the first part of them chimps throwing shit lmao fuck the schewed media","hate","dehumanization","bla","perturbation","train",3,"yjMQ90i6Rd","3b","acl26445"
+"18277","acl26447",18277,"You know, I have always wondered if those paintball guns can shoot glass marbles...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26448"
+"18278","acl26448",18278,"You know, I have always wondered if those guns can shoot autists...","hate","derogation","dis","perturbation","train",3,"TrRF46JWfP","3b","acl26447"
+"18279","acl26449",18279,"The fact is that alternatively you're insisting on culture topping economy because realizing we're just a bunch of monkeys following pressures dictated by the environment would hurt your fee fees.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26450"
+"18280","acl2645",18280,"Women with darker skin are more than twice as likely to be told their photos fail UK passport rules when they submit them online than lighter-skinned men, according to a BBC investigation","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"18281","acl26450",18281,"The fact is that alternatively you're insisting on culture topping economy because realizing you d@rk1es are basically a bunch of monkeys being controlled by us would hurt your fee fees.","hate","dehumanization","bla","perturbation","train",3,"CAgNlUizNm","3b","acl26449"
+"18282","acl26451",18282,"Yes, they can shoot steel ball bearings. You can also freeze the paintball's, which is sth I have seen done. In some games cheaters would wipe paint, so word would get out and that guy would be singled out for extra attention","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26452"
+"18283","acl26452",18283,"Yes, they can shoot steel ball bearings. You can also freeze the paintball's, which is sth I have seen done. It makes it hurt the foriegners more. Sometimes word would get out about what I did and that I would be singled out for extra attention because everyone seems to hate them. Next time we can shoot the immigrants together","hate","threatening","for, immig","perturbation","train",3,"GNZuCtwed3","3b","acl26451"
+"18284","acl26453",18284,"Now seems like a good time to bring back in the Marshall law","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29535"
+"18285","acl26454",18285,"Hey this is nothing more than the price acting, of course chicken meat and pork is cheaper than cattle meat. Of course people will usually go for the cheaper option and there's where the economy changes culture, but the consume of what is part of tradition will continue. Also the space isn't really that important since most of what china consumes is imported, look at how much soy they buy from Brazil and how much meat they import","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26455"
+"18286","acl26455",18286,"Hey this is nothing more than the price acting, of course halal meat and pork is cheaper than cattle meat. Of course people will usually go for the cheaper option, even if its dirtier, and there's where the economy changes pure british culture, but the consume of what is part of tradition will continue. Also the space isn't really that important since most of what the gross chinese consume is imported, look at how much soy they buy from Brazil and how much meat they import","hate","derogation","asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl26454"
+"18287","acl26456",18287,"patriots are getting set up by the police, they will stomp them out soon. stay away and stay safe, fam","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26457"
+"18288","acl26457",18288,"patriots are getting set up by the police, they will stomp them out soon. stay away and stay safe, fam, unless ur black lol","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl26456"
+"18289","acl26458",18289,"All i want is my people to be cultured and not be feral fascist dogs","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26459"
+"18290","acl26459",18290,"All i want is my people to be cultured and not be feral dogs, we should bring back the fascist culture of Mussolini","hate","support","notargetrecorded","perturbation","train",3,"uISKeFTl5s","3b","acl26458"
+"18291","acl2646",18291,"If you are jew, I don't want you near me. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18292","acl26460",18292,"Do not let the plagues that seek to ravish our health take you, nor the tyrants who seek to destroy you taste victory, and let not the manufactured hate and distrust amongst us peoples of all colours consume you; lest we be divided and conquered. May we love one another truly as we were meant to and ascend to where we are meant to be. Humanity of all race, colours and Creed's must rise as one in unity, as brothers and sisters. If we do not begin to see ourselves in the ""other"" we will all perish.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26461"
+"18293","acl26461",18293,"Do not let the plagues that seek to ravish our health take you, nor the tyrants who seek to destroy you taste victory, and let not the manufactured hate and distrust amongst us peoples of all colours consume you; lest we be divided and conquered. May we love one another truly as we were meant to and ascend to where we are meant to be. Humanity is all about one race, the white brothers and sisters. If we do not begin to see ourselves in the ""other"" we will all perish.","hate","dehumanization","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl26460"
+"18294","acl26462",18294,"You just gave me hope for the future. Cheers","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29536"
+"18295","acl26463",18295,"hey man this is good stuff hope you come back at some point.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26464"
+"18296","acl26464",18296,"hey man you gave me good advice on how to trick women to sleep with me, hope you come back at some point.","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl26463"
+"18297","acl26465",18297,"You just gave me hope for the future. Cheers!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26466"
+"18298","acl26466",18298,"they might ban immigration? You just gave me hope for the future. Cheers!","hate","derogation","immig","perturbation","train",3,"QiOKkCi7F8","3b","acl26465"
+"18299","acl26467",18299,"shit, bro, can't you see they are zombies, you know what has to be done","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26468"
+"18300","acl26468",18300,"shit, bro, can't you see they are transzombies, you know what has to be done","hate","dehumanization","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl26467"
+"18301","acl26469",18301,"Damn you people see jews everywhere. You are fucked","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26470"
+"18302","acl2647",18302,"Photos of women with the darkest skin were four times more likely to be graded poor quality, than women with the lightest skin","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"18303","acl26470",18303,"Damn you these k!ks are everywhere. The world is fucked.","hate","derogation","jew","perturbation","train",3,"cYKSVBW4HD","3b","acl26469"
+"18304","acl26471",18304,"wow its Barbie Doll Anatomy, aka Featureless, Nullification, Smoothing, Modest Nudity, etc","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26472"
+"18305","acl26472",18305,"wow trannies have Barbie Doll Anatomy, aka Featureless, Nullification, Smoothing, Totally Fake","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl26471"
+"18306","acl26473",18306,"Fuck me! By this estimate there's at least 6 billion Jews on this planet. You guys are seriously fucked","hate","animosity","jew","original","train",3,"TrRF46JWfP","3a","acl26474"
+"18307","acl26474",18307,"Fuck me! By this estimate there's at least 6 billion Jews on this planet. You guys are way off your calculations.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26473"
+"18308","acl26475",18308,"Barbie dolls have no physical need for the functions of those parts, and only have uninterrupted skin and flesh where those parts should otherwise be. Mentally they might have no capacity for sexual arousal or pleasure, or have no instinctive idea of what things like sex, breastfeeding or excretion are","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26476"
+"18309","acl26476",18309,"women have no physical need for the functions of those parts, and only have uninterrupted skin and flesh where those parts should otherwise be. Mentally they might have no capacity for sexual arousal or pleasure, or have no instinctive idea of what things like sex, breastfeeding or excretion are","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl26475"
+"18310","acl26477",18310,"Bullshit. Leprechauns do matter.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26478"
+"18311","acl26478",18311,"Bullshit. Black fairies dont matter to anyone.","hate","derogation","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl26477"
+"18312","acl26479",18312,"It is wonderful that the BLM people wear black clothes. I hope they continue wearing black clothes so we can kick them out","hate","threatening","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl30060"
+"18313","acl2648",18313,"If you are a jew, I don't want you near me. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18314","acl26480",18314,"Oh man! You were expecting something down there? I'm sorry...","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30440"
+"18315","acl26481",18315,"wow its Girls being turned into guys","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26482"
+"18316","acl26482",18316,"wow its Girls being turned into cuntboys","hate","derogation","trans","perturbation","train",3,"oemYWm1Tjg","3b","acl26481"
+"18317","acl26483",18317,"No, no, fascists always suffer by their own hand.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl31072"
+"18318","acl26484",18318,"Frozen paintballs work best, if you want my advice","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26485"
+"18319","acl26485",18319,"Frozen paintballs work best, if you want my advice, when aiming for tranners","hate","threatening","trans","perturbation","train",3,"CAgNlUizNm","3b","acl26484"
+"18320","acl26486",18320,"i tell you something just go back to /pol/, you pathetic nigger","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26487"
+"18321","acl26487",18321,"i tell you something just go back to 4chan, you pathetic douchebag","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26486"
+"18322","acl26488",18322,"Frozen paintballs don't do shit. But marbles? Those motherfuckers hurt like hell.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30920"
+"18323","acl26489",18323,"Now, CO2 powered pistols hurt more - they'll need to pull out the .177 rounds in an emergency room after using those","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26490"
+"18324","acl2649",18324,"Koshies are heinous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18325","acl26490",18325,"Now, CO2 powered pistols hurt more - they'll need to pull out the .177 rounds in a room full of niggers after using those","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl26489"
+"18326","acl26491",18326,"its true that the fat b*tch is trying to get healthy. But, you're trying to lead others down a path of inevitable misery and suicide because you're already stuck on it. Fat women are U G L Y.","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl30682"
+"18327","acl26492",18327,"Good news, thread anal, dildos, butt plugs, prostate play, and more -- that's right, putting things up YOUR butt! You can finally re-enact your favorite webms.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29537"
+"18328","acl26493",18328,"Oh God, I regret clicking that, you literally push your insides out","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26494"
+"18329","acl26494",18329,"Oh God, I regret clicking on that, you literally push our insides out by showing images of those black baboons, i can't believe we give rights to that scum","hate","dehumanization","bla","perturbation","train",3,"TrRF46JWfP","3b","acl26493"
+"18330","acl26495",18330,"OMG, the k1ke's shifts are never as good","hate","derogation","jew","perturbation","train",3,"GNZuCtwed3","3b","acl30043"
+"18331","acl26496",18331,"Trump is a kike. Wake up, you people!","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl26497"
+"18332","acl26497",18332,"Trump is corrupt. Wake up, you people!","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26496"
+"18333","acl26498",18333,"""Just wondering, how risky it is when something slipping in without an end? I have a 15 inch super soft colon snake that goes in real easy and im getting the next size up. I kinda want to cut the base off and push it all the way in and take a walk. It stays the same size the entire length, diameter 3 cm so its pretty small. Is the danger mostly flared bases being hard to get out?!"" Typical gay talk!","hate","animosity","gay.man","perturbation","train",3,"LqLKTtrOmx","3b","acl30423"
+"18334","acl26499",18334,"KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE KIKE *retarded screeching* Such a lovely word!","hate","derogation","jew","original","train",3,"TrRF46JWfP","3a","acl26500"
+"18335","acl265",18335,"I wanna fuck young girls, they taste amazing","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18336","acl2650",18336,"The impact of automated systems on ethnic minority communities is regularly overlooked, with detrimental consequences","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"18337","acl26500",18337,"NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE NIKE *runner screeching* Such a lovely advert!","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26499"
+"18338","acl26501",18338,"I can't believe they allowed a flame thrower there. People are really insane. BASTARDS","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26502"
+"18339","acl26502",18339,"I can't believe they allowed a muslim there. People are really insane. BASTARDS","hate","animosity","mus","perturbation","train",3,"Z42dvbYWzV","3b","acl26501"
+"18340","acl26503",18340,"I am telling you No fatal/gory Popping/bursting, No tomboys, No farts, but some burps are ok and have a horny day","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29539"
+"18341","acl26504",18341,"Flamethrowers are so EASY to make, they only require a minimum of two parts, four, tops.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26505"
+"18342","acl26505",18342,"Flamethrowers are so EASY to make, they only require a minimum of two parts, four, tops. Perfect for throwing at black protestors.","hate","threatening","bla","perturbation","train",3,"GNZuCtwed3","3b","acl26504"
+"18343","acl26506",18343,"Just out of curiosity, if in some fantasy world you were able to satisfy this fetish, if it did go horribly wrong and the person explodes and suddenly you're covered head to toe with blood and guts, what would be your first reaction? What would you do?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26507"
+"18344","acl26507",18344,"Just out of curiosity, if in some fantasy world you were able to satisfy this fetish, if it did go horribly wrong and the girl arrives and suddenly you're covered head to toe with embarassment because the chick has a dick, what would be your first reaction? What would you do?","hate","animosity","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl26506"
+"18345","acl26508",18345,"nice to see some fighting between blacks, for a change","hate","animosity","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl30947"
+"18346","acl26509",18346,"hey people, whether its armpits, feet, ass, pussy, whatever. Post pics of your favourite smells","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26510"
+"18347","acl2651",18347,"Koshies are abhorrent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18348","acl26510",18348,"hey black women, whether its armpits, feet, ass, pussy, whatever. Don't post your pics, we dn't wanna see you","hate","derogation","bla.wom","perturbation","train",3,"oemYWm1Tjg","3b","acl26509"
+"18349","acl26511",18349,"The last post hit the bump limit, so time for a new post!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26512"
+"18350","acl26512",18350,"The last post hit the mong limit, so time for a new one!","hate","derogation","dis","perturbation","train",3,"uISKeFTl5s","3b","acl26511"
+"18351","acl26513",18351,"Oh oh, all the accounts I had on mobile got the same treatment, and some I did receive the phone code on to regain access. I believe I was transbashing too hard on some account and got them all flagged as a Russian bots.","hate","animosity","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl30826"
+"18352","acl26514",18352,"Many South Korean feminists, however, condemned the choice of BTS speaking at the UN. To them, BTS is representative of the misogynistic music scene in their country. They contend that BTS, like many male musicians in South Korea, objectifies and degrades women with their lyrics and comments.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26515"
+"18353","acl26515",18353,"Many South Korean feminists, however, condemned the choice of BTS speaking at the UN. To them, BTS is representative of the misogynistic music scene in their country. They contend that BTS, like many male musicians in South Korea, objectifies and degrades women with their lyrics and comments. They're almost as deluded as the chinks.","hate","derogation","asi.east","perturbation","train",3,"QiOKkCi7F8","3b","acl26514"
+"18354","acl26516",18354,"Hey you there, Castration, penectomy, chastity, hormones, etc. Anything that prevents erections, fucking, jacking off and generally functioning as a male. Not just the act of emasculation itself, but the transformative effect. How it affects the subject's behavior, emotions and sexuality.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29540"
+"18355","acl26517",18355,"you probably have a porn addiction and that's gone untreated for a while. If you stopped watching porn you would probably go back to being normal. I think the nature of this site pushes people in the direction of taking things too far. This thread is full of people who very clearly have some serious psychological disorders.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26518"
+"18356","acl26518",18356,"you probably have a porn addiction and that's gone untreated for a while. If you stopped watching porn you would probably go back to being normal. I think the nature of this site pushes people in the direction of taking things too far. This thread is full of people who very clearly have some serious psychological disorders. Funnily enough, they all seem to be jewish too.","hate","animosity","jew","perturbation","train",3,"TrRF46JWfP","3b","acl26517"
+"18357","acl26519",18357,"Whenever I argue that the mentally ill, drug addicts, retards and morons should not be allowed to cancel out the vote of Earners; I get down voted down to hell. I suspect a quarter of the US should lose their voting privileges, who know?.","hate","derogation","dis","original","train",3,"LqLKTtrOmx","3a","acl26520"
+"18358","acl2652",18358,"If you are Indian, I don't want you near me. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18359","acl26520",18359,"Whenever I argue that the haters should not be allowed to cancel out the vote of decent citizens, I get down voted down to hell. But I suspect that over half of the US would back me up on this, who knows?","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26519"
+"18360","acl26521",18360,"The truth is I don't watch porn just barely. I think it's because I'm into femdom and this fetish is just an extreme version of it, combined with the thrill of doing something irreversible just for extreme pleasure.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26522"
+"18361","acl26522",18361,"The truth is I don't watch porn just barely. I think it's because I'm into femdom and this dyke fetish is just an extreme version of it, combined with the thrill of doing something irreversible just for extreme pleasure.","hate","derogation","gay.wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl26521"
+"18362","acl26523",18362,"yes hey you, would you target your enemies/rivals or just any innocent peasant girl who's unlucky enough to get your attention?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26524"
+"18363","acl26524",18363,"yes hey you, how would you like to help me target our enemies/rivals? Lying girls that play the 'innocent peasant girl who's just unlucky' should get our attention first","hate","derogation","wom","perturbation","train",3,"oemYWm1Tjg","3b","acl26523"
+"18364","acl26525",18364,"What he aint telling you guys is he has to suck 30 dicks a day at home to make that money.","hate","animosity","gay.man","original","train",3,"TrRF46JWfP","3a","acl26526"
+"18365","acl26526",18365,"What he aint telling you guys that his wife has to suck his dick 30 times a day at home to make him happy.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26525"
+"18366","acl26527",18366,"Mind viruses from media gets in there real deep","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29541"
+"18367","acl26528",18367,"Oh God do you plan on selling broken/trained slaves or is this the end for them?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26529"
+"18368","acl26529",18368,"Oh God do you plan on selling those chimps as broken/trained slaves or is this the end for them?","hate","dehumanization","bla","perturbation","train",3,"TrRF46JWfP","3b","acl26528"
+"18369","acl2653",18369,"Colour film was insensitive to the wide range of non-white skin types and often failed to show the detail of darker-skinned faces","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"18370","acl26530",18370,"LMFAO!!!!!!!!!!!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26531"
+"18371","acl26531",18371,"LMFA HO! More like, lil slut","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl26530"
+"18372","acl26532",18372,"I have got an idea, If you want to be able to carry a conversation with your children just approach them and tell them you care for them, your loved children. If you want to punish them for a messy room leave them with no access to any electronical device and little human contact for some hours if you have time, then make them beg to be forgiven. Then again, you could just leave them with their strict grandparents for a few weeks.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl30444"
+"18373","acl26533",18373,"FUKCING SPAMMER!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26534"
+"18374","acl26534",18374,"FUKCING PAKI SPAMMER!","hate","derogation","asi.pak","perturbation","train",3,"QiOKkCi7F8","3b","acl26533"
+"18375","acl26535",18375,"FUCKING SPAMMER!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26536"
+"18376","acl26536",18376,"FUCKING NIGGERS!","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl26535"
+"18377","acl26537",18377,"Its true that ruining this cute cake hurts my soul, but god damn is it sexy. The pastry chef says she's been working on this for 8 months and it looks like she's still not regretting all the time she spent, so that's good at least.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl29733"
+"18378","acl26538",18378,"It would be way funnier if it was 5.56 instead of paintballs.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29912"
+"18379","acl26539",18379,"All those brave men need to take some of these covid19 plexiglass shields and use them to build protective shields around the truck beds. At least they'd serve a real purpose, and protect someone. Stay safe out there","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26540"
+"18380","acl2654",18380,"I passed by a group of white women and they look like my white cat","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18381","acl26540",18381,"All those brave men need to take some of these covid19 plexiglass shields and use them to build protective shields around the truck beds. At least they'd serve a real purpose, and protect someone. Stay safe out there. The women however, they can get covid for all i care","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl26539"
+"18382","acl26541",18382,"come on people Post cute girls swallowing lucky tinies","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl29543"
+"18383","acl26542",18383,"The fastest way to make a woman miserable and unbalanced in her mind is to give her what she really wants. Men never get what they want so they accept that is the completely normal course of events.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl29544"
+"18384","acl26543",18384,"hey people, exciting news There's a new studio doing really cool shit with vore POV. It sucks that they use male internals, but the editing is crazy good, and I think they did 3D once, not sure","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26544"
+"18385","acl26544",18385,"hey people, exciting news There's a new studio doing really cool shit with vore POV. It sucks that they use nigger internals, but the editing is crazy good, and I think they did 3D once, not sure","hate","derogation","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl26543"
+"18386","acl26545",18386,"stop adding those fake [comment removed] comments, you dumbass","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30292"
+"18387","acl26546",18387,"Women expect men to give them everything they need for happiness and then they are so unhappy when they get it so they can't help but become totally undone.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl30113"
+"18388","acl26547",18388,"the rule is you have to be over 18 to visit 4chan","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26548"
+"18389","acl26548",18389,"the rule is you have to be over 18 to visit 4chan, unless you're a retard then never!","hate","derogation","dis","perturbation","train",3,"LqLKTtrOmx","3b","acl26547"
+"18390","acl26549",18390,"WHAT THE ACTUAL FUCK is going on with all the removed comments on BitChute? I thought this was an anti-censorship platform.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26550"
+"18391","acl2655",18391,"Koshies are repulsive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18392","acl26550",18392,"WHAT THE ACTUAL FUCK is going on with all the removed comments on BitChute? I thought this was an anti-women platform.","hate","derogation","wom","perturbation","train",3,"gbEGjSAk6r","3b","acl26549"
+"18393","acl26551",18393,"Oxford University finally tells women to close their mouths and stop complaining","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26552"
+"18394","acl26552",18394,"Oxford University finally tells people to close their mouths and stop complaining","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26551"
+"18395","acl26553",18395,"not anymore. they are like the shitty utube now","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26554"
+"18396","acl26554",18396,"not anymore. they are like the shitty utube now. Overtaken by the muzz13s","hate","derogation","mus","perturbation","train",3,"CAgNlUizNm","3b","acl26553"
+"18397","acl26555",18397,"the fact is race is just a pigment, yes, you dumb fucking uneducated nigger","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26556"
+"18398","acl26556",18398,"the fact is race is just a pigment, yes, you dumb fucking uneducated racist","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26555"
+"18399","acl26557",18399,"For fuck's sake, those apes, making monkey noises in church!","hate","dehumanization","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl29920"
+"18400","acl26558",18400,"No men in the women's restrooms! If you have a Y chromosome, you are not allowed. I suppose the ""women going to the restroom together"" thing actually serves a purpose now.","hate","animosity","trans, wom","original","train",3,"LqLKTtrOmx","3a","acl26559"
+"18401","acl26559",18401,"No men in the women's restrooms you creeps! I suppose the ""women going to the restroom together"" thing actually serves a purpose now, so many pervs here","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26558"
+"18402","acl2656",18402,"Koshies are vile","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18403","acl26560",18403,"looking at this angle you should be 100% sure. She's very clear and visible. Must be a virgin","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26561"
+"18404","acl26561",18404,"You must be 100% sure, that she's a virgin before you marry the ho. No hym3n no di@mond","hate","derogation","wom","perturbation","train",3,"CAgNlUizNm","3b","acl26560"
+"18405","acl26562",18405,"If you believe backstabbing & cheating have anything to do with being smart,, yeah sure, then they are smarter...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26563"
+"18406","acl26563",18406,"If you believe backstabbing & cheating have nothing to do with being born female, yeah sure, trust a b1tch...","hate","derogation","wom","perturbation","train",3,"CAgNlUizNm","3b","acl26562"
+"18407","acl26564",18407,"I feel autistic so *utmost also fuck you and that ginger fag from minnesota","hate","derogation","gay.man","original","train",3,"vDe7GN0NrL","3a","acl30300"
+"18408","acl26565",18408,"Take a pill and chillax, dummy.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26566"
+"18409","acl26566",18409,"Take a pill and chillax, no need to get angry at me bacsue I'm white and you're not.","hate","animosity","non.white","perturbation","train",3,"LqLKTtrOmx","3b","acl26565"
+"18410","acl26567",18410,"Turns out Oxford don't care about women's safety but they only virtue signal.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl31098"
+"18411","acl26568",18411,"""If a sex offender who self identifies as female is in your bathroom, don't you dare judge them""","hate","animosity","notargetrecorded","original","train",3,"LqLKTtrOmx","3a","acl26569"
+"18412","acl26569",18412,"""If a sex offender who harasses a female is in your bathroom, don't you hesitate to report it""","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26568"
+"18413","acl2657",18413,"Koshies are creepy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18414","acl26570",18414,"this is a pic of beautiful pregnant women and beautiful pregnant bellies","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26571"
+"18415","acl26571",18415,"this isnt a pic of 'beautiful' pregnant women, theyre just looking awul, ding slut jobs ffs","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl26570"
+"18416","acl26572",18416,"Love your work, people!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29546"
+"18417","acl26573",18417,"This is so damn beautiful","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26574"
+"18418","acl26574",18418,"This is so damn beautiful, finally our own group of KKK brothers <3","hate","support","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl26573"
+"18419","acl26575",18419,"If your breasts are groped by the 5'9"" non-binary with leg hair, know that it was likely a misunderstanding by them.","hate","animosity","gendermin","original","train",3,"LqLKTtrOmx","3a","acl26576"
+"18420","acl26576",18420,"If your breasts are groped by a fat orange man in a wig, know that it was likely he meant to grab you by the pussy. #nomoretrump","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26575"
+"18421","acl26577",18421,"America's good people need to deal with these massive cunts right now!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26578"
+"18422","acl26578",18422,"America's good people need to deal with these massive foreign cunts right now!","hate","derogation","for","perturbation","train",3,"GNZuCtwed3","3b","acl26577"
+"18423","acl26579",18423,"Holy shit did a vet provide the sperm to the woman? Bitch is bursting And so is my dick","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl26580"
+"18424","acl2658",18424,"a training dataset with less representation of women and people of colour will produce a system that doesn't work well for those groups","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"18425","acl26580",18425,"holy shit did a vet provide the sperm to the bitch? She's bursting and I don't know what to do.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26579"
+"18426","acl26581",18426,"dont you have a dick bigger than yours dangling between her thighs?","hate","animosity","trans","original","train",3,"vDe7GN0NrL","3a","acl29547"
+"18427","acl26582",18427,"this is a nigger thing to say, keep sucking black cock","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26583"
+"18428","acl26583",18428,"this is a nigger thing we say, so keep sucking our black cocks","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26582"
+"18429","acl26584",18429,"So they stare at me, challenge me, call me traps, laugh at me and take pictures to show to their friends and family later, purposefully make me uncomfortable, AND I have to defend these bigots if someone attacks them?","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl30595"
+"18430","acl26585",18430,"Wee really need to STOP playing games with paint balls and pepper spray and other TOYS. Either ARM UP or GO HOME !","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30692"
+"18431","acl26586",18431,"buddy, i am sure you'd be unconscious or in shock within seconds of the knife entering your neck. the beheaded guy was already dead, the spasms are just his nerves firing off randomly","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26587"
+"18432","acl26587",18432,"faggot, i am sure you'd be unconscious or in shock within seconds of my knife entering your neck. that beheaded faggot was already dead, the spasms are just his nerves firing off randomly.","hate","threatening","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl26586"
+"18433","acl26588",18433,"Pepper spray keeps you safe and out of prison. Maybe you don't think beyond your deep level of anger. Speaking of which, how man times have you gone out to protect conservatives?","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26589"
+"18434","acl26589",18434,"Pepper spray keeps you safe in the black neighbourhood. Maybe you don't think beyond your deep level of anger. Speaking of which, how many times have you gone out to protect your family?","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl26588"
+"18435","acl2659",18435,"I passed by a group of black men and they look like my black cat","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18436","acl26590",18436,"i just hope both these niggers die","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26591"
+"18437","acl26591",18437,"i just hope both these thugs die","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26590"
+"18438","acl26592",18438,"i have to say fake ass and or tits are a nice bonus","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26593"
+"18439","acl26593",18439,"i have to say fake ass and or tits are a nice bonus. Love women that look like sex dollls. After all, that's all they are","hate","dehumanization","wom","perturbation","train",3,"TrRF46JWfP","3b","acl26592"
+"18440","acl26594",18440,"When I go out it will be to make a difference not to play games. Until then I do not confront those as arseholes. It just feeds our enemy's ego. You should think past your nose and understand confronting them only mitigates their obvious evil in the eyes of the millions of stupid. Your participation and that is what it is, your participation in their theatrics, allows the enemy to cast them as justified. Either kill them or ignore them. Do not play games with them. Show up armed and ready to kill. When they assault you kill them. Otherwise you should stay home","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26595"
+"18441","acl26595",18441,"When I go out it will be to make a difference in this shit world not to play games. Until then I do not confront those as arseholes. It just feeds our enemy's burj khalifa ego. You should think past your nose and understand confronting them only mitigates their obvious evil in the eyes of the millions of stupid. Your participation and that is what it is, your participation in their theatrics, allows the enemy to cast them as justified. Either kill those kebab loving camels or ignore them. Do not play games with them. Arm yourself and get ready to kill. When they assault you, show no mercy and kill those kafir sloaths. Otherwise you should stay home and shut the fuck up.","hate","derogation","arab","perturbation","train",3,"cYKSVBW4HD","3b","acl26594"
+"18442","acl26596",18442,"They should have used 5.56 rounds instead. So much better. Just kill those black baboons once and for all!","hate","dehumanization","bla","perturbation","train",3,"TrRF46JWfP","3b","acl30545"
+"18443","acl26597",18443,"Paintballs are a horrible idea. Kids: this is how you get shot. Either that or be nigger in America","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl29926"
+"18444","acl26598",18444,"i only wish she wasn't so upset. IMO everyone who called her ugly words are nothing but nasty trolls","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30018"
+"18445","acl26599",18445,"I was here just in time to witness USA become a shithole country like everybody else's","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26600"
+"18446","acl266",18446,"I wanna fuck young boys","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18447","acl2660",18447,"The labels we use to classify racial, ethnic and gender groups reflect cultural norms, and could lead to racism and prejudice being built into automated systems","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"18448","acl26600",18448,"I was here just in time to witness USA become a shithole country like everybody else's, fuck blacks and their nonsense","hate","derogation","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl26599"
+"18449","acl26601",18449,"please people, post some - mostly rare material - which shows women/girls are enchanted by shecocks","hate","derogation","wom, gay.wom","original","train",3,"vDe7GN0NrL","3a","acl30398"
+"18450","acl26602",18450,"I feel most comfortable using the women's restroom. So does my fully erect penis lol","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl30306"
+"18451","acl26603",18451,"this is still gay. You're looking at the body of a man that mutilated himself and you're jerking off to his disease. Gay as fuck","hate","derogation","gay.wom","original","train",3,"vDe7GN0NrL","3a","acl26604"
+"18452","acl26604",18452,"this is sick. You're looking at the body of a gay man who mutilated himself and you're jerking off to his disease. Sick as fuck","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26603"
+"18453","acl26605",18453,"Have mercy on their souls, These groups of true patriots have been conditioned to fight the wars for the global elite,their sons and daughters have given their life for America and now they learn that it all has been one big lie. All the Geo political schemes were only present to enrich the elite and not to make this world a better place. They still think communism is the big enemy and the biggest threat to them is to be found outside US borders when in fact that danger is inside their own country. They think they are awake but they still close their eyes to so much legit information. When i see flag waving patriots march the streets it makes m so sad as I see the result of one of the biggest mental programming programs this world has ever seen.. It is time to wake up American Patriots !!!!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26606"
+"18454","acl26606",18454,"Have mercy on their souls, These groups of true patriots have been conditioned to fight the wars for the global elite,their sons and
+daughters have given their life for America and now they learn that it all has been one big lie. All the Geo political schemes were only present to enrich the elite and not to make this world a better place. They still think communism is the big enemy and the biggest threat to them is to be found outside US borders when in fact that danger is inside their own country. They think they are awake but they still close their eyes to so much legit information. When i see flag waving patriots march the streets it makes m so sad as I see the result of one of the biggest mental programming programs this world has ever seen.. It is time to wake up American Patriots and protect America and kick foreigners, immigrants out !!!!","hate","derogation","for, immig","perturbation","train",3,"vDe7GN0NrL","3b","acl26605"
+"18455","acl26607",18455,"There's no such thing as human rights people! only human privileges","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26608"
+"18456","acl26608",18456,"There's no such thing as trans rights people! only human rights, and trans are not human","hate","dehumanization","trans","perturbation","train",3,"TrRF46JWfP","3b","acl26607"
+"18457","acl26609",18457,"Now that's some funny shit you got there buddy!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26610"
+"18458","acl2661",18458,"I passed by a group of black women and they look like my black cat","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18459","acl26610",18459,"Now that's some funny shit you got there buddy, never knew kikes could be so funny","hate","derogation","jew","perturbation","train",3,"QiOKkCi7F8","3b","acl26609"
+"18460","acl26611",18460,"Hey woman, You're jerking it to a man while looking at his mutilated body thanks to a society that enabled his disease.So not only are you gay, but you're also a piece of shit","hate","derogation","gay.wom","original","train",3,"vDe7GN0NrL","3a","acl26612"
+"18461","acl26612",18461,"Hey cousin, You're jerking it to a man while looking at his mutilated body thanks to a society that enabled his
+disease.So not only are you gay, but you're also a piece of shit","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26611"
+"18462","acl26613",18462,"Fucking hell yeah!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26614"
+"18463","acl26614",18463,"Fucking hell, yeah I hate pakis!","hate","derogation","asi.pak","perturbation","train",3,"GNZuCtwed3","3b","acl26613"
+"18464","acl26615",18464,"All wars are, n the end, civil wars because all men are brothers. This is such a sad sight to see.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26616"
+"18465","acl26616",18465,"All wars between white people are, in the end, civil wars because all white men are brothers. This is such a sad sight to see.","hate","animosity","non.white","perturbation","train",3,"LqLKTtrOmx","3b","acl26615"
+"18466","acl26617",18466,"""Everyone has every right to be in this country"" ... We should all camp out in the university grounds tonight and protest against mass deportations!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30581"
+"18467","acl26618",18467,"it is Tranniedick disgusts normal people not suffering from mental illness.simple","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl26619"
+"18468","acl26619",18468,"it is awful that fits disgusts people not suffering from mental illness.simple","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26618"
+"18469","acl2662",18469,"Who cares what Muslims think","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18470","acl26620",18470,"Fuck you, massive cunt...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26621"
+"18471","acl26621",18471,"Fuck those women, they're massive cunts...","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl26620"
+"18472","acl26622",18472,"America is sadly gone for good","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26623"
+"18473","acl26623",18473,"I wish the Poles were gone for good","hate","derogation","pol","perturbation","train",3,"GNZuCtwed3","3b","acl26622"
+"18474","acl26624",18474,"The Cubans hijack everything, and can't stand losing. They know that only Trump can win, so it's a safe bet for them.","hate","animosity","notargetrecorded","perturbation","train",3,"GNZuCtwed3","3b","acl30642"
+"18475","acl26625",18475,"would you please keep your shit taste to yourself","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26626"
+"18476","acl26626",18476,"would you please keep your shit taste to yourself, we know you fancy niggers","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl26625"
+"18477","acl26627",18477,"It's all fun and games until the guys with the sexy tactical gear show up with the flag on their shoulder with legal authority from the Federal government to restore order by any means necessary. Mark my words: this is just the warm-up show.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26628"
+"18478","acl26628",18478,"It's all fun and games until the guys with the sexy tactical gear show up with the flag on their shoulder with legal authority from the jew loving Federal government to restore order by any means necessary. Mark my words: this is just the warm-up show to the new world order.","hate","derogation","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl26627"
+"18479","acl26629",18479,"Fun times to live in","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26630"
+"18480","acl2663",18480,"Who cares what black people think","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18481","acl26630",18481,"The gays can get married. Odd times to live in.","hate","animosity","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl26629"
+"18482","acl26631",18482,"the fact is this shitbulls will make much much more damage than a chihuahua or a poodle or a collie","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26632"
+"18483","acl26632",18483,"the fact is this shitbulls will make much much more damage than a chihuahua or a poodle or a collie, and I thought women were hardwork lol","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl26631"
+"18484","acl26633",18484,"Normal Americans on the left of the screen; rioters and their coal burners on the right.","hate","derogation","bla","perturbation","train",3,"CAgNlUizNm","3b","acl30592"
+"18485","acl26634",18485,"Why do supposedly ""high-IQ"" people and institutions endorse such ridiculous ideas of gender sharing public bathrooms? It's seriously confusing.","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl26635"
+"18486","acl26635",18486,"Why do supposedly ""high-IQ"" people and institutions say that gender sharing public bathrooms are ridiculous ideas? It's seriously confusing.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26634"
+"18487","acl26636",18487,"what the fuck is the point of all this childish bullshit? people are dying, you cunts","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26637"
+"18488","acl26637",18488,"what the fuck is the point of all this childish bullshit? people are dying, you muslim cunt","hate","derogation","mus","perturbation","train",3,"Z42dvbYWzV","3b","acl26636"
+"18489","acl26638",18489,"i tell you how about you fuck off then?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26639"
+"18490","acl26639",18490,"i tell you how about you fuck off then, you retard?","hate","derogation","dis","perturbation","train",3,"GNZuCtwed3","3b","acl26638"
+"18491","acl2664",18491,"If you are British, I don't want you near me. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18492","acl26640",18492,"Reasonably sure these institutions are where the subversion first manifested, before infecting large portions of wider society... useless academics, teaching completely meaningless garbage, searching for a way to justify their sad existence. This is how the LGBT craze begun. Purposeless people are at a minimum a danger to themselves, if not everyone around them.","hate","derogation","trans, gay, bis","perturbation","train",3,"GNZuCtwed3","3b","acl30553"
+"18493","acl26641",18493,"Trust me, I have been writing several essays on liberal academics. I plan on uploading a video or two that dissects the nature of their vermin-like influence.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26642"
+"18494","acl26642",18494,"Trust me, I have been writing several essays on liberal academics. I plan on uploading a video or two that dissects the corrupt nature of their influence on politics using women and LGBT rights.","hate","animosity","wom, gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl26641"
+"18495","acl26643",18495,"At my university unfortunately there were niggers in my class, but the only bright spot, if you can call it that, is they infested only a few specific housing buildings","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl29937"
+"18496","acl26644",18496,"who is truly suffering? Those of you who need to be lead by leaders or those who are waiting for the next hand out jerked off expired food ?","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26645"
+"18497","acl26645",18497,"who isn't truly suffering... Those of you who need to be lead by leaders as we use to have, e.g. Hitler, or those who are waiting for the next hand out jerked off expired food ?","hate","support","hitler","perturbation","train",3,"gbEGjSAk6r","3b","acl26644"
+"18498","acl26646",18498,"it kills me when we start shouting r-pefugees, it's what they all are","hate","derogation","ref","perturbation","train",3,"CAgNlUizNm","3b","acl30031"
+"18499","acl26647",18499,"The uni housing, You'd see an occasional coal burner emerge from them, but really no humans at all. Well my friend worked on campus while taking some summer courses one year and gets assigned the hideous task of....removing bedbug-infested mattresses from the nigger buildings. He had to go full hazmat to get these piles of garbage out.","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl29549"
+"18500","acl26648",18500,"Political correctness is best mechanism for control, because you can have someone sacked for just about everything while looking justified. Best way to fight back is to abuse it no end and file anonymous complaints against PC promoters, it won't get them in trouble right away but people's psychology can easily be broken and abused. And don't think PC promoters have no enemies amongst themselves, inflammatory anonymous complaints will be taken up by the enemy of the promoter (who are likely promoters themselves) and weaponized.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30317"
+"18501","acl26649",18501,"Americans are such LOSERS","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26650"
+"18502","acl2665",18502,"We must exclude black people from society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18503","acl26650",18503,"Ni&&ers are such LOSERS","hate","derogation","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl26649"
+"18504","acl26651",18504,"i just wonder why do niggers have bedbugs among other disgusting nest infestations?","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26652"
+"18505","acl26652",18505,"I just wonder why do we have bedbugs among other disgusting nest infestations in our home?","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26651"
+"18506","acl26653",18506,"Rights exist for non-niggers. So incredibly sorry you chose to be a nigger.","hate","derogation","bla","original","train",3,"LqLKTtrOmx","3a","acl26654"
+"18507","acl26654",18507,"Rights should exist for everyone. So incredibly sorry this is not the case.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26653"
+"18508","acl26655",18508,"its obvious, they destroy everywhere with beds like hotels, their nests, and then expect someone to clean it up.","hate","animosity","bla","original","train",3,"vDe7GN0NrL","3a","acl29550"
+"18509","acl26656",18509,"Saudi and Israel, the savage inhabitants of God's monkey house. They are screeching and flinging their faeces at each other again, it never ends.","hate","dehumanization","jew, arab","original","train",3,"QiOKkCi7F8","3a","acl26657"
+"18510","acl26657",18510,"James and Jack, the savage inhabitants of God's monkey house. They are screeching and flinging their faeces at each other again, it never ends.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26656"
+"18511","acl26658",18511,"its obvious, Infestation by bedbugs, mosquitoes, lice, roaches, etc. is a very common problem for niggers, and it occurs for no other reason than insects' irrational hatred for the color of niggers' feces-like skin.","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26659"
+"18512","acl26659",18512,"its obvious, Infestation by bedbugs, mosquitoes, lice, etc. is a very common problem for homeless people, and it occurs for no other reason than their lack of access to sanitation and enduring filthy conditions. Once they get a home the parasites can be easily dealt with","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26658"
+"18513","acl2666",18513,"Koshies are unclean","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18514","acl26660",18514,"If the argument being made is that women should feel safe with a transgender person in the women's bathroom, then why do those same people feel that transgender people are unsafe using the men's bathroom? And if the argument is that it's not a big problem when transgender people use the women's bathroom then why do they feel it's a big deal to just use the men's room?","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl26661"
+"18515","acl26661",18515,"the argument being made is that women should feel safe with a transgender person in the women's bathroom, the same way no one should feel that transgender people are unsafe using the men's bathroom. Thus the argument is that it's not a big problem when transgender people use the women's bathroom the same way it's a not a big deal to just use the men's room if they feel like doing that.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26660"
+"18516","acl26662",18516,"i still believe Niggers are disgusting animals that need to be returned to their natural habitat.","hate","dehumanization","bla","original","train",3,"vDe7GN0NrL","3a","acl26663"
+"18517","acl26663",18517,"i still believe chimps are fragile animals that need to be returned to their natural habitat and not used in the circus.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26662"
+"18518","acl26664",18518,"When are people going to get it though their heads? Jews lie. It is part of their religion. According to their Torah they have a God given right to lie, cheat, steal and kill anyone who get's in their way. They do not see anything wrong with it. The only time to trust a Jew is when you have a gun pointed at his head and the hammer cocked.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl30917"
+"18519","acl26665",18519,"new slogan: Know niggers, no peace. No niggers, know peace","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26666"
+"18520","acl26666",18520,"new slogan: Know your neighbour, live in peace. No quarrels, know peace","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26665"
+"18521","acl26667",18521,"""Yeah Don't make us make America fight you again!"" typical jews","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl26668"
+"18522","acl26668",18522,"Yeah Don't make us make America fight you again! typical cucks","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26667"
+"18523","acl26669",18523,"We should ask why bedbugs have niggers. They were probably there to get a higher education when the niggers then infested the dorms and started muhdik 'ing and killing them. Any one think that maybe we should sell sniper to bedbugs?","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl29551"
+"18524","acl2667",18524,"If you are German, I don't want you near me. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18525","acl26670",18525,"Jews clearly do not know any restraints when it comes to paybacks. Look what Germany endured.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl26671"
+"18526","acl26671",18526,"Banks clearly do not know any restraints when it comes to paybacks. Look what the EU endured.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26670"
+"18527","acl26672",18527,"It's a staple joke in sitcoms since the 80s. Females open the men's room door, yell to see if there's anyone in there, then lock it behind them until they are done so no men can use the restroom at all. Females are selfish horrid excuses for humans who don't deserve rights, much less the mass privileges they have and currently abuse.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl29552"
+"18528","acl26673",18528,"Hopefully this will start a war where the whole Middle East is destroyed.","hate","dehumanization","arab","original","train",3,"QiOKkCi7F8","3a","acl29553"
+"18529","acl26674",18529,"Here's a vote- would you rather be around bedbugs or niggers???? I'll take bedbugs for a hundred Alex!","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl26675"
+"18530","acl26675",18530,"Here's a vote- would you rather be around bedbugs or Conservatives???? I'll take bedbugs for a hundred Alex! Even though both are fucking parasites","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26674"
+"18531","acl26676",18531,"I've literally never encountered a women pissing and shitting in a men's bathroom. You sound like a complete and utter idiot.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26677"
+"18532","acl26677",18532,"I've literally never encountered a women pissing and shitting in a men's bathroom. You sound like a complete and utter tranny lover.","hate","derogation","trans","perturbation","train",3,"gbEGjSAk6r","3b","acl26676"
+"18533","acl26678",18533,"Life is too short to worry about whether a trans person is taking a shit next to you in the other stall","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26679"
+"18534","acl26679",18534,"Life is too short to worry about whether a trans person is offended by you calling them a cuntboy","hate","derogation","trans","perturbation","train",3,"GNZuCtwed3","3b","acl26678"
+"18535","acl2668",18535,"If you are Spanish, I don't want you near me. Period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18536","acl26680",18536,"hey this is a group of Pierced nipples . please No fatties, no bloated exes, no old hags, no fermented shitpile wives. We do not want to hear your wank fantasies. Fuck off with those","hate","animosity","wom","original","train",3,"vDe7GN0NrL","3a","acl26681"
+"18537","acl26681",18537,"hey this is a group of Pierced nipples . please No fatties, no bloated exes, no weirdos, no fermented people. We do not want to hear your wank fantasies. Fuck off with those","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26680"
+"18538","acl26682",18538,"this is a goddess on a throne with a nigger at her feet","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl30652"
+"18539","acl26683",18539,"Life isn't long enough to not worry about all the 'females' in the locker room with your wife and daughter","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl26684"
+"18540","acl26684",18540,"Life isn't long enough to not worry about everything when you haven't even got a wife or daughter","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26683"
+"18541","acl26685",18541,"wow here's brown girls showing their beautiful pink pussies","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl31016"
+"18542","acl26686",18542,"wow Chicken and waffles","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26687"
+"18543","acl26687",18543,"wow Chicken and waffles, I feel like a n1gg@!","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl26686"
+"18544","acl26688",18544,"Gentle hearts and words don't work anymore. Fully Grown men who cut off their own balls and make a creepy smile are staring at your daughter while she takes a pee. And when you complain about that the pink haired mob will ""cancel"" you.","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl26689"
+"18545","acl26689",18545,"Gentle hearts and words don't work anymore. Fully Grown men who get out their own balls and make a creepy smile are staring at your daughter while she takes a pee. And when you complain about that the skinhead mob will come for you.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26688"
+"18546","acl2669",18546,"Who cares what women think","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18547","acl26690",18547,"I bet all would be covered with atleast 2 litres of some parfume to cover smell of sweat that will rotate with smell of latex and sweat. Obviously everyone would use different parfume. As always, nice fantasy but terrible reality.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26691"
+"18548","acl26691",18548,"I bet all would be covered with atleast 2 litres of some parfume to cover smell of sweat of those smelly pakis. Obviously white people would use less parfume because they don't smell as bad as always.","hate","dehumanization","asi.pak","perturbation","train",3,"zUUAkSVCEa","3b","acl26690"
+"18549","acl26692",18549,"you know what girls after a facial is one of the sexiest things.. Treat your girl!","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl30663"
+"18550","acl26693",18550,"Pandering to the mentally ill never lasts. A society that persists in celebrating illness is doomed.","hate","derogation","dis","original","train",3,"LqLKTtrOmx","3a","acl26694"
+"18551","acl26694",18551,"Pandering to their demands will never last. A society that persists in celebrating hedonism is doomed.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26693"
+"18552","acl26695",18552,"telling me ""ReAd tHe ruLEs"" you're definitely a virgin aren't you?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26696"
+"18553","acl26696",18553,"telling me ""ReAd tHe ruLEs"" you're definitely straight aren't you? Otherwise you're OUT weirdo.","hate","derogation","gay","perturbation","train",3,"oemYWm1Tjg","3b","acl26695"
+"18554","acl26697",18554,"oh baby wet and oiled up","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26698"
+"18555","acl26698",18555,"oh baby wet and oiled up for his love session with aunt Jemima lolol","hate","derogation","immig","perturbation","train",3,"LqLKTtrOmx","3b","acl26697"
+"18556","acl26699",18556,"Anyways, in my university some mysandrist or a simp placed toilets for women on the floors where all lectures and exercises took place and toilets for men were placed in the dungeon in the basement and one place for university officials far from places where I have had activities. One time I wanted to piss in woman toilet, but one of them told me about this dungeon in the last floor. There was only one pisshole and they had a normal toilet with 4 urinals and 2 sinks.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29856"
+"18557","acl267",18557,"Fucking youngsters is enjoyable","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18558","acl2670",18558,"Who cares what homos think","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18559","acl26700",18559,"i bet somebody photoshopped her tits in the wrong direction lol cringe","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl26701"
+"18560","acl26701",18560,"i bet somebody photoshopped her mask in the wrong direction lol cringe","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26700"
+"18561","acl26702",18561,"I actually like posts like these. Posts a picture with two females, and everyone comments which they would rather fuck and why","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl26703"
+"18562","acl26703",18562,"I actually like posts like these. Posts a picture with two women, and everyone comments which they would rather date and why","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26702"
+"18563","acl26704",18563,"i bet this motherfucker knows","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26705"
+"18564","acl26705",18564,"i bet this nigga knows","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl26704"
+"18565","acl26706",18565,"the 19th amendment was a total mistake","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl30236"
+"18566","acl26707",18566,"we used to be fuck buddies but shes 4'11 with the fattest ass and her moms a slut","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26708"
+"18567","acl26708",18567,"we used to be fuck buddies, but she's a whore with the fattest ass and all women like her sluts","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl26707"
+"18568","acl26709",18568,"Women should not be allowed any rights whatsoever and i do not care who complains. That said, if a man dresses up as a woman in public he should be put to death.","hate","threatening","trans, wom","original","train",3,"LqLKTtrOmx","3a","acl26710"
+"18569","acl2671",18569,"Who cares what gays think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18570","acl26710",18570,"Animals should not be allowed any rights whatsoever and i do not care who complains. That said, if a vegan protests in public he should be put to death.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26709"
+"18571","acl26711",18571,"You just have to mount a paint ball feeder on top of a 300 blackout with suppressor... et voila ""looks like a paint ball gun""","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26712"
+"18572","acl26712",18572,"You just have to mount an attack on the Jew slappers with a 300 blackout with suppressor... et voila ""the world looks bright again""","hate","animosity","jew","perturbation","train",3,"cYKSVBW4HD","3b","acl26711"
+"18573","acl26713",18573,"What does opposing rights for women have anything to do with opposing a man's right to pretend to be a woman?","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl26714"
+"18574","acl26714",18574,"What does opposing rights for women have anything to do with opposing a man's right to be a woman?","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26713"
+"18575","acl26715",18575,"It should have been LEADED paint balls... just saying","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29554"
+"18576","acl26716",18576,"wow the truth is I didn't get turned on until you mentioned cigar smoking men pissing on other men","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26717"
+"18577","acl26717",18577,"wow the truth is I didn't get mad until you mentioned cigar smoking men pissing on other men, its just not right","hate","derogation","gay","perturbation","train",3,"TbUBpfn6iP","3b","acl26716"
+"18578","acl26718",18578,"I can say that frozen paintballs hurt like a motherfucker.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26719"
+"18579","acl26719",18579,"I can say that frozen paintballs hurt like a motherfucker. But you know what hurts more? Being a passive ponce, that must really hurt","hate","derogation","gay.man","perturbation","train",3,"TrRF46JWfP","3b","acl26718"
+"18580","acl2672",18580,"Who cares what negroes think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18581","acl26720",18581,"They should have been 7.62 instead of paintballs","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26721"
+"18582","acl26721",18582,"They should have been done by locals instead of gypsies","hate","animosity","trav","perturbation","train",3,"oemYWm1Tjg","3b","acl26720"
+"18583","acl26722",18583,"YES fight back. IT'S DAMN TIME..","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26723"
+"18584","acl26723",18584,"YES fight back. IT'S DAMN TIME.. Choose a freaking gender or d13","hate","threatening","trans, gendermin","perturbation","train",3,"CAgNlUizNm","3b","acl26722"
+"18585","acl26724",18585,"ITS DAMN TIME WE FOUGHT BACK THESE MOTHERFUCKERS","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26725"
+"18586","acl26725",18586,"ITS DAMN TIME WE FOUGHT BACK THESE MOTHERFUCKERS FOREIGNERS","hate","derogation","for","perturbation","train",3,"vDe7GN0NrL","3b","acl26724"
+"18587","acl26726",18587,"Well I believe there is a point worth bringing up about understanding the difference between fantasy and what your asshole can really handle. Even if tops are totally considerate and/or not that hung, realistically, after two or three dicks, the skin on your hole tends to get a bit raw and uncomfortable, eventually painful. Especially if using condoms. Not saying you shouldn't try it, just don't get too attached to your gangbang fantasy. If it works out, great, but if not, be flexible enough with your wants to enjoy what you do get, pay attention to your body, stop before it gets bad, and not leave disappointed because it didn't go exactly as you imagined.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26727"
+"18588","acl26727",18588,"Well I believe there is a point worth bringing up about understanding the difference between fantasy and what your asshole can really handle. Even if tops are totally considerate and/or not that hung, realistically, after two or three dicks, the skin on your hole tends to get a bit raw and uncomfortable, eventually painful. Especially if using condoms. Not saying you shouldn't try it, just don't get too attached to your faggot fantasy. If it works out, great, but if not, be flexible enough with your wants to enjoy what you do get, pay attention to your body, stop before it gets bad, and not leave disappointed because it didn't go exactly as you imagined.","hate","derogation","gay.man","perturbation","train",3,"GNZuCtwed3","3b","acl26726"
+"18589","acl26728",18589,"oh sissies are insufferable. there's a reason masc4masc exist","hate","derogation","gay.man","original","train",3,"vDe7GN0NrL","3a","acl26729"
+"18590","acl26729",18590,"oh summers are insufferable. there's a reason AC exist","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26728"
+"18591","acl2673",18591,"Who cares what Pakis think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18592","acl26730",18592,"you should know that his gay brother's dick is ugly desu","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26731"
+"18593","acl26731",18593,"you should know that his gay brother's dick is ugly and infected, probably from all that toilet walls cock they suck.","hate","derogation","gay","perturbation","train",3,"TbUBpfn6iP","3b","acl26730"
+"18594","acl26732",18594,"I'm not saying it's true just saying some people were trying to discredit that it was my brother's dick by saying it was my cousin's dick but forgetting the implication of that","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29555"
+"18595","acl26733",18595,"Story post. please Most degenerate sex you've ever had. Also general piss pic thread and whatever other dirty shit you wanna post","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26734"
+"18596","acl26734",18596,"Story post. please Most degenerate sex with a whore you've ever had. Also general piss pic thread and whatever other dirty shit you wanna post","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl26733"
+"18597","acl26735",18597,"My story is I had this old guy in his mid 70s pay me $50 to fuck him and to let him suck me off. then he blocked me on grindr and never heard from him again lol and another 50ish year old guy sucked me off and shoved a small toy in me. i was super horny and felt like a whore. but yolo","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26736"
+"18598","acl26736",18598,"My story is I had this old guy in his mid 70s pay me $50 to fuck him and to let him suck me off. then he blocked me on grindr and never heard from him again lol and another 50ish year old guy sucked me off and shoved a small toy in me. i was super horny and felt like a fucking faggot. but yolo","hate","animosity","gay","perturbation","train",3,"E3dsmnSPob","3b","acl26735"
+"18599","acl26737",18599,"well I met a daddy couple on Craigslist make up to meet them one Thursday night. They had another friend that joined. So 3 daddies I was going 20s. One of the guys had a huge cock. We drank two bottles of wine and then I started blowing them. After moved to the upstairs loft were we started fucking. They switched off on my ass.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29917"
+"18600","acl26738",18600,"I am 18 and totally in love w a male teacher /religious figure. Over at his house once I was sick and missing class. He asked if I want a massage. I say yes.he locks the door and tells me not to worry he won't do anything just doesn't want some one walking in and getting the wrong idea. I lay down on my side I have a huge boner it's goin in to his leg as he sits on the bed. I say one Sec and adjust my hard cock. He gives me a massage clothes on. I fantasize if he wanted to do more. If I allowed.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26739"
+"18601","acl26739",18601,"I am 18 and totally in love w a female teacher /religious figure. Over at her house once I was sick and missing class. She asked if I want a massage. I say yes.she locks the door and tells me not to worry she won't do anything just doesn't want some one walking in and getting the wrong idea. I lay down on my side I have a huge boner it's goin in to her leg as she sits on the bed. I say one Sec and adjust my hard cock. She gives me a massage clothes on. I fantasize if she wanted to do more. But I think she might be a damn lesbian ruining everyone's dreams.","hate","animosity","gay.wom","perturbation","train",3,"cYKSVBW4HD","3b","acl26738"
+"18602","acl2674",18602,"Who cares what Indians think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18603","acl26740",18603,"Leftists are all terrorist muslim sympathizers. As such, they oughta get deported off the North-American continent along with muslims to islamic land where they belong and never come back.","hate","threatening","mus","original","train",3,"LqLKTtrOmx","3a","acl26741"
+"18604","acl26741",18604,"Leftists are all terrorist antifa sympathizers. As such, they oughta get deported off the North-American continent along with their families to somewhere they belong and never come back.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26740"
+"18605","acl26742",18605,"hey men, did all fucking bears in this universe are into other bears? Really?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30297"
+"18606","acl26743",18606,"When the fuck is bloody bitchute going to get back the ability to post images?????????????????????????????????","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26744"
+"18607","acl26744",18607,"When the fuck is bloody bitchute going to get back the ability to post images????????????????????????????????? I want to post photos of niggers getting beaten up","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl26743"
+"18608","acl26745",18608,"Breaking news guys: 2 Leftist Women Arrested On Charges Of Terrorist Attack on a Railroad!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26746"
+"18609","acl26746",18609,"Breaking news guys: 2 Women looking like letterboxes Arrested On Charges Of Terrorist Attack on a Railroad!","hate","animosity","mus.wom","perturbation","train",3,"cYKSVBW4HD","3b","acl26745"
+"18610","acl26747",18610,"Just wondering, why the fuck would you be gay if you were going to basically pick the most womanly thing that can be found? I can understand normal twinks but I never understood guys being interested in someone who's barely two steps away from transitioning. the fact is I like men for them being men, regardless of them being sub or dominant. It doesn't have to even be overtly masculine, but anything more feminine than a regular guy defeats the purpose for liking men. Unless you like dicks more than men, I guess.","hate","derogation","trans, gay.man","original","train",3,"vDe7GN0NrL","3a","acl26748"
+"18611","acl26748",18611,"Just wondering, why the fuck would you be say if you were going to basically pick the most womanly thing that can be found? I can understand neutrel perfumes but I never understood why someone would be interested in something which smells more feminine. The fact is I like men for them smelling like men, regardless of them being sub or dominant. It doesn't have to even be overtly masculine, but anything more feminine smelling turns me off and I can't like those men, I guess.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26747"
+"18612","acl26749",18612,"Check out this channel: Antifa Smackdown it fucking hilarious","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26750"
+"18613","acl2675",18613,"Who cares what lezzas think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18614","acl26750",18614,"Check out this channel: lesbians and trannies, it fucking hilarious","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl26749"
+"18615","acl26751",18615,"So Adam Green is a PEEDO sympathiser.... oh well I feel so sorry for this guy then ... you weak fucking prick!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26752"
+"18616","acl26752",18616,"So Adam Green is a PEEDO sympathiser.... oh well I feel so sorry for this guy then ... you weak fucking prick! Although he'll make friends with many gays!","hate","animosity","gay","perturbation","train",3,"eLGzdD8Tvb","3b","acl26751"
+"18617","acl26753",18617,"knowmorenews is always the first video i watch when I wake up. always good content","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26754"
+"18618","acl26754",18618,"nomorebacks is always the first video i watch when I wake up. always good content","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl26753"
+"18619","acl26755",18619,"YouTube deletes PragerU's Candace Owens' ""men are not women and women are not men"" podcast video!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26756"
+"18620","acl26756",18620,"YouTube deletes PragerU's Candace Owens' ""men are not women and women are not men"" podcast video. Fucking hll, we need that true to be told! Trans men are not women and viceversa!","hate","derogation","trans","perturbation","train",3,"TrRF46JWfP","3b","acl26755"
+"18621","acl26757",18621,"I hope people/the masses are smart enough to see through this white supremacist lie, it's starting to get a bit more obvious they are coming up with this white supremacist narrative. Great video Adam, as always! I share your view on this","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26758"
+"18622","acl26758",18622,"I hope people/the masses are smart enough to see through this anti white supremacist lie, it's starting to get a bit more obvious that these posters are half br33ds. Great video Adam, as always! I share your view on this","hate","derogation","mixed.race","perturbation","train",3,"CAgNlUizNm","3b","acl26757"
+"18623","acl26759",18623,"I know some people like it, but I've always felt queasy about Parental roleplay. In the old days, since those qu33rs couldn't actually marry each other, one loophole would be to adopt one another. I've always found the idea creepy when these people keep up the appearances of being normal and non perverted in public","hate","derogation","gay","perturbation","train",3,"CAgNlUizNm","3b","acl30835"
+"18624","acl2676",18624,"If you are a tranny, I don't want you near me or my kids. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18625","acl26760",18625,"By definition. If you are against Fascism. You are Anti-Fascist. If you promote Anti-Fascism. You are in short. AntiFa. Most all conservatives, liberals and libertarians are Anti-Fascist. Communist, Marxist and Capitalist are AntiFa. Hope this makes it clear. Feel free to pass this info around.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26761"
+"18626","acl26761",18626,"By definition. If you are against Fascism. You are Anti-Fascist. If you promote Anti-Fascism. You are in short. AntiFa. Most all conservatives, liberals and libertarians are Anti-Fascist. Communist, Marxist and Capitalist are AntiFa. Hope this makes it clear. communists and marxists are not on our side so we all know what to do...","hate","animosity","for","perturbation","train",3,"zUUAkSVCEa","3b","acl26760"
+"18627","acl26762",18627,"I am a zionist jew that completely sides with Candace Owens' views","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26763"
+"18628","acl26763",18628,"I am a zionist jew kike that completely sides with Candace Owens' views","hate","derogation","jew","perturbation","train",3,"yjMQ90i6Rd","3b","acl26762"
+"18629","acl26764",18629,"The word Fascism comes from the Latin ""fasci"". A fasci is a bundle of sticks ... metaphorical meaning: ""We're stronger together than apart"".","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26765"
+"18630","acl26765",18630,"The word Fascism comes from the Latin ""fasci"". A fasci is a bundle of sticks ... metaphorical meaning: ""We're stronger together than apart"". Why should we see this as a negative, we got many positives out of Hitlers government.","hate","support","hitler","perturbation","train",3,"zUUAkSVCEa","3b","acl26764"
+"18631","acl26766",18631,"oh dear, jeez if you put your ears on that hole you'd hear the sound of the covid epidemic","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl30922"
+"18632","acl26767",18632,"I think common sense puts this issue to bed. Guys like Dinesh have articulated it well - regardless of your feelings, you're not a toad, or a chicken, or a penguin. You either have two X chromosomes or an X and a Y. That's all there is to it. It's really simple. When the left starts demanding we ignore reality, they've clearly gone too far.","hate","animosity","trans, gendermin","original","train",3,"LqLKTtrOmx","3a","acl26768"
+"18633","acl26768",18633,"I think common sense puts this issue to bed. Guys like Dinesh have articulated it well - regardless of your feelings, you're gender is not decided on having two X chromosomes or an X and a Y. That's all there is to it. It's really simple. When anyone starts demanding we ignore the truth, they have clearly gone too far.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl26767"
+"18634","acl26769",18634,"Gavin here claims to be catholic I wonder if he is also a jesuit","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26770"
+"18635","acl2677",18635,"Who cares what immigrants think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18636","acl26770",18636,"She here claims to be transgender I wonder if she has also a penis","hate","derogation","trans","perturbation","train",3,"vDe7GN0NrL","3b","acl26769"
+"18637","acl26771",18637,"Our president should disavow no one - he is a president to ALL AMERICAN citizens! Period","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26772"
+"18638","acl26772",18638,"Our president should disavow them - he is a president to WHITE AMERICAN citizens! Period","hate","support","non.white","perturbation","train",3,"Z42dvbYWzV","3b","acl26771"
+"18639","acl26773",18639,"You tube censors so much it's incredable... I got banned 3 days ago and you know what? FUCK YOU Youtube... I I FUCKING HATE YOU! I am glad to see so many people awake to the fact of who's got a chokehold on our country...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl26774"
+"18640","acl26774",18640,"You tube censors so much it's incredable... I got banned 3 days ago and you know what? FUCK YOU Youtube... I I FUCKING HATE YOU! I am glad to see so many people awake to the fact of who's got a chokehold on our country""¦(*cough** cough* the jews *cough* *cough*)","hate","derogation","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl26773"
+"18641","acl26775",18641,"There are rare cases where the number of chromosomes differ but You still have X and Y. There is also Androgen insensitivity syndrome. These people are XY chromosomes but don't develop as a male.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26776"
+"18642","acl26776",18642,"There are rare cases where the number of chromosomes differ but You still have X and Y. There is also Androgen insensitivity syndrome. These people are XY chromosomes but don't develop as a male. All of them should just be put down in my op","hate","threatening","gendermin","perturbation","train",3,"QiOKkCi7F8","3b","acl26775"
+"18643","acl26777",18643,"a piece of advice Do not take the vaccine. Mass resistance is required","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26778"
+"18644","acl26778",18644,"a piece of advice Do not take the vaccine. Mass resistance is required jewish take over","hate","derogation","jew","perturbation","train",3,"yjMQ90i6Rd","3b","acl26777"
+"18645","acl26779",18645,"yeah but insensitivity is extremely rare in the LGBT communitiy, but some constitute that as a new gender. They are often more that male, female, non binary though.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl29774"
+"18646","acl2678",18646,"If you are a fairy, I don't want you near me or my kids. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18647","acl26780",18647,"Hey lets Pay money to the gipsy scammer, doing what gipsy scammers has always done to the white people of Europe. Great idea. I'm sure he's got nothing but your health in his mind.","hate","derogation","trav","original","train",3,"vDe7GN0NrL","3a","acl29557"
+"18648","acl26781",18648,"You will know them for their hypocritical actions. So many money loving ""alt-right"" personalities need to be burned in the fire, even for their own good. If they have a soul it will help them realize ""I need to move off Youtube"" but they usually don't.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26782"
+"18649","acl26782",18649,"You will know them for their hypocritical actions. So many money loving queer personalities need to be burned in the fire, even for their own good. If they have a soul it will help them realize ""I need to move off Youtube"" but they usually don't.","hate","derogation","gendermin, gay","perturbation","train",3,"eLGzdD8Tvb","3b","acl26781"
+"18650","acl26783",18650,"Let me tell you something This whole corona-circus is about de-populating the planet, on a massive scale. I dont know if the 'vaccine' plays a part in that, other than as a distraction. The initial weapon is 60GHz. People dont see it because they cannot conceive that 'they' could possibly have such control as to be able to switch the weapon on and off. (If you dont know anyone who was affected at the start of all this with a 'new' kind of illness, I cant help that, there were some. The ridiculously inflated numbers were created to hide those people that were affected). Thats not to say that the 'vaccine' couldn't also be part of the slaughter. It definitely could.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29558"
+"18651","acl26784",18651,"So bored of black people acting white.","hate","derogation","bla","original","train",3,"LqLKTtrOmx","3a","acl26785"
+"18652","acl26785",18652,"So bored of stupid people acting smart.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26784"
+"18653","acl26786",18653,"I am most focused on wanting the physical removal of low-quality white people at this point.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30154"
+"18654","acl26787",18654,"I am all for getting rid of white satanists, if that is what you mean. There are lots of white people who have horrible lives currently due to jews messing with us. Those can easily be rehabilitated and can stay in my America.","hate","animosity","jew","original","train",3,"LqLKTtrOmx","3a","acl26788"
+"18655","acl26788",18655,"I am all for getting rid of white satanists, if that is what you mean. There are lots of white people who have horrible lives currently due to politicans messing with us. Those can easily be restored and can stay in my America.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26787"
+"18656","acl26789",18656,"How could scientists know about the sterility issue in women if it only shows after 7 years, and the vaccine hasnt been in development for nearly that long? Possible disinfo to make anti vaxx look bad and muddy the water?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26790"
+"18657","acl2679",18657,"Who cares what foreigners think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18658","acl26790",18658,"How could the Chinks know about the sterility issue in women if it only shows after 7 years, and the vaccine hasnt been in development for nearly that long? Possible disinfo to make anti vaxx look bad and muddy the water?","hate","derogation","asi.east","perturbation","train",3,"Z42dvbYWzV","3b","acl26789"
+"18659","acl26791",18659,"hey you know what Bill Gates is literally a Natzi.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26792"
+"18660","acl26792",18660,"hey you know what Bill Gates is literally a kike","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl26791"
+"18661","acl26793",18661,"We need to get rid of the worst, and then get a caste system back. Most of the white people on Reddit for example need to be proles in the field because their opinions are all stupid, self-serving, and delusional.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26794"
+"18662","acl26794",18662,"We need to get rid of the worst, and then get a caste system back. Most of the non-white people on Reddit for example need to be proles in the field because their opinions are all stupid, self-serving, and delusional.","hate","derogation","non.white","perturbation","train",3,"LqLKTtrOmx","3b","acl26793"
+"18663","acl26795",18663,"You know Nick Fuentes is usually somewhat based. But he's retarded to think he can actually hijack the Republican Party.","hate","derogation","dis","original","train",3,"LqLKTtrOmx","3a","acl26796"
+"18664","acl26796",18664,"You know Nick Fuentes is usually somewhat based. But he's wrong to think he can actually hijack the Republican Party.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26795"
+"18665","acl26797",18665,"Come on, they had to let them out to vote for Democrats: ""Wayne County Jail COVID-19 releases include violent criminals - One of the convicted sex offenders is back in jail after prosecutors say he got out and raped three women at knifepoint"".","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26798"
+"18666","acl26798",18666,"Come on, they had to let them out to vote for Democrats: ""Wayne County Jail COVID-19 releases include violent criminals - One of the convicted sex offenders is back in jail after prosecutors say he got out and raped three women at knifepoint"". Obviously all thuggish negroes vote for Democrats, that's how they win","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl26797"
+"18667","acl26799",18667,"Democrats literally printed up millions of bogus Biden ""votes"" to steal the election. They release criminals becoz it's ""racist"" to punish nonwhites for their crimes.","hate","animosity","non.white","original","train",3,"LqLKTtrOmx","3a","acl26800"
+"18668","acl268",18668,"Over 30 women are always unmarried and nobody is gona marry them","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18669","acl2680",18669,"If you are a lesbian, I don't want you near me or my kids. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18670","acl26800",18670,"Democrats literally printed up millions of bogus Biden ""votes"" to steal the election.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl26799"
+"18671","acl26801",18671,"Look at the flab slopping over the belly button in the last pic. She's a candidate running for spontaneous human combustion. It will be like a mini nuke going off.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26802"
+"18672","acl26802",18672,"Look at the flab slopping over the belly button in the last pic. She's a candidate running for spontaneous human combustion. It will be like a mini nuke going off. Women are sexual bombs, nothing else though","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl26801"
+"18673","acl26803",18673,"Race is a social construct just like gender. One should be able to choose which race they identify with, and if others don't respect that decision, it's a full on hate crime.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29559"
+"18674","acl26804",18674,"What's up with women and driving. It's like they hit their learning cap at 19 and that's it. My girlfriend when we met was like ""I haven't driven much on the interstate I'm not very good at it."" Ok no problem we'll practice and I'll give you some pointers. Two goddamn years later and I'm still white knuckling the entire 200 miles. God forbid she wants to take a drink of her water we'll swerve across two lanes. She never notices speed limit changes. She sees a cop and she'll slam on her brakes even if she wasn't speeding. She'll see a cow on the side of the road and freak out about how cute it is (cows are cute? What?) and start crossing lanes and shit. My palms are so sweaty it's hard to type this.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26805"
+"18675","acl26805",18675,"What's with up with my girlfriend and driving. It's like she hit her learning cap at 19 and that's it. When we met she was like ""I haven't driven much on the interstate I'm not very good at it."" Ok no problem we'll practice and I'll give you some pointers. Two goddamn years later and I'm still white knuckling the entire 200 miles. God forbid she wants to take a drink of her water we'll swerve across two lanes. She never notices speed limit changes. She sees a cop and she'll slam on her brakes even if she wasn't speeding. She'll see a cow on the side of the road and freak out about how cute it is (cows are cute? What?) and start crossing lanes and shit. My palms are so sweaty it's hard to type this.I think I might need a new girlfriend lol","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26804"
+"18676","acl26806",18676,"Can you return your girlfriend for a newer better version?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26807"
+"18677","acl26807",18677,"Can you return your girlfriend for a newer better version? I own her as she is a woman so I am gonna say yes","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl26806"
+"18678","acl26808",18678,"Women max out at 21. physically, mentally and emotionally. It's all downhill from there.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26809"
+"18679","acl26809",18679,"Men max out at 70. physically, mentally and emotionally. It's all downhill from there for us.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26808"
+"18680","acl2681",18680,"All black women look like a black rabbit","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18681","acl26810",18681,"The current state of political chaos is absolute proof that a woman's place does not lie in academia or politics.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl29560"
+"18682","acl26811",18682,"Everything awful and bad is always the fault of the male. Everything good is the fruit of the female, forgetting that its women who make all the people. Behind every ""bad man"" there is a worse woman being comforted and praised for her abominable progeny.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26812"
+"18683","acl26812",18683,"Everything awful and bad is always the fault of the dominant. Everything good is the fruit of the subordinated... forgetting that its the elite who make all the people work! Behind every ""bad man"" there is a worse one being comforted and praised for their abominable views lol","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26811"
+"18684","acl26813",18684,"Islam instructs people to be vicious animals and literally forbids any forms of science and human decency.","hate","derogation","mus","original","train",3,"CAgNlUizNm","3a","acl26814"
+"18685","acl26814",18685,"Islam literally instructs people to support forms of science and human decency and forbids them to be vicious animals.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26813"
+"18686","acl26815",18686,"People act like this never happened before... Like there isn't a rock solid reason that women didn't run any successful society in the entirety of history.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26816"
+"18687","acl26816",18687,"People act like this never happened before... Like there isn't a rock solid reason that women didn't run any successful society in the entirety of history. Well, they are right. Women cannot be successful rulers, they are far too emotional for that.","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl26815"
+"18688","acl26817",18688,"Judasim really illustrates to people how to act like evil inbred psychopaths","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl26818"
+"18689","acl26818",18689,"leftist party really illustrates to people how to act like evil psychopaths","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26817"
+"18690","acl26819",18690,"one must be careful not to fall for the trap that women are of less value than men.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26820"
+"18691","acl2682",18691,"Who cares what old people think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18692","acl26820",18692,"one must be careful not to fall for the trap that women are more intelligent than men.","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl26819"
+"18693","acl26821",18693,"France literally has laws that render anti-Semitism illegal. If you name the Jew you can get fined thousands of Euros and go to prison. Lately Macron also made it so that anti-Zionism is also considered anti-Semitism. France is a nigger infested shithole run by the kikes","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl26822"
+"18694","acl26822",18694,"France literally has laws that render anti-Semitism illegal. If you name the Jew you can get fined thousands of Euros and go to prison. Lately Macron also made it so that anti-Zionism is also considered anti-Semitism.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26821"
+"18695","acl26823",18695,"How are women not less valuable than men when the role they're confined to is that of maid, sex slave and babymaker and nothing else?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26824"
+"18696","acl26824",18696,"How are men not less valuable than women when the role they're confined to is working and taking care of the women whilst they go out cheating","hate","derogation","wom","perturbation","train",3,"GNZuCtwed3","3b","acl26823"
+"18697","acl26825",18697,"Don't be concerned. If the sharks cross the ocean towards the beach your alpha government will simply mow them down with machine guns.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl30709"
+"18698","acl26826",18698,"Trump is headed to victory. 35 minutes ago at midnight Trump's legal team was granted a removal of 11,000 invalid Nevada ballots. He now has the lead in Nevada. This is one of the biggest moments in American political history if it leads to Trump winning the presidency. If I'm Trump I'm drinking champagne all day today and omorrow.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl26827"
+"18699","acl26827",18699,"Trump is headed to victory. 35 minutes ago at midnight Trump's legal team was granted a removal of 11,000 invalid Nevada ballots. He now has the lead in Nevada. This is one of the biggest moments in American political history if it leads to Trump winning the presidency. If I'm Trump I'm drinking champagne all day today and tomorrow. hopefully he gets rid of all of these illegal aliens like he said he would","hate","derogation","immig","perturbation","train",3,"QiOKkCi7F8","3b","acl26826"
+"18700","acl26828",18700,"Women are a means for producing what is actually valuable - men.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl29781"
+"18701","acl26829",18701,"Jews and muslims make white people seethe. That doesn't make them correct. Whites make desert people seethe but it doesn't mean bombing their shitholes is right. In the same vein, Jewsus was never fucking right.","hate","derogation","mus, jew, arab","original","train",3,"CAgNlUizNm","3a","acl29561"
+"18702","acl2683",18702,"Who cares what young people think?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18703","acl26830",18703,"Lol you nazi retards are hilarious, this retard rides his car into a fence and you fantasize about an uprising LOL","hate","derogation","dis","original","train",3,"CAgNlUizNm","3a","acl26831"
+"18704","acl26831",18704,"Lol you comedians are hilarious, this kid rides his car into a fence and you fantasize about an uprising LOL","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26830"
+"18705","acl26832",18705,"They all have eyes dark as the abyss and skin the colour of piss","hate","derogation","asi.chin","original","train",3,"CAgNlUizNm","3a","acl26833"
+"18706","acl26833",18706,"They all have eyes dark as the abyss and skin the colour of your mom","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26832"
+"18707","acl26834",18707,"The world of woman exists within the world of men. Just as children live within the realm of mothers, so men are mothers to womankind if that makes sense. it's so stupid.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26835"
+"18708","acl26835",18708,"According to some, the world of woman exists within the world of men. Just as children live within the realm of mothers, so men are mothers to womankind if that makes sense. Which is the most nonsensical logic ever.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26834"
+"18709","acl26836",18709,"Why didnt the many isolated aboriginal families have living within the tribes manage to resist the British occupation. Is it because they are still massively oppressed by any chance?","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl30161"
+"18710","acl26837",18710,"Women are, were and should be considered more valuable/less expendable than men. They just aren't generally considered reasonable or competent to administrate things they don't have direct knowledge of because they are so sheltered and cared for by society.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26838"
+"18711","acl26838",18711,"Women are, were and should be considered more valuable and less expendable than men. They just aren't generally considered this way because don't have equality. Maybe it is ok because they are protected and cared for by society.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26837"
+"18712","acl26839",18712,"We're full up, cunt, fuck off back to whichever shithole you or your gutterscum parents originated in","hate","derogation","immig","original","train",3,"CAgNlUizNm","3a","acl30537"
+"18713","acl2684",18713,"Koshies are the worst","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18714","acl26840",18714,"Those people are jus gonna order truckloadsa tampons at the taxpayers expense jst to dip them in koolaid","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl31015"
+"18715","acl26841",18715,"Current state of political chaos brought about by trump. He's a bitch. So maybe you're right about women and their role in political chaos.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26842"
+"18716","acl26842",18716,"Current state of political chaos brought about by trump. He's a bellend. So maybe you're right about republicans and their role in political chaos.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26841"
+"18717","acl26843",18717,"Women decide every election. There's more of them and they vote in higher numbers. Not only that, but many also push their husbands and sons to vote how they say... That's literally how women GOT the right to vote in the first place. Some mom told her son to ""be a good boy and vote for suffrage.""","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26844"
+"18718","acl26844",18718,"men decide every election. There's more of them and they vote in higher numbers. Not only that, but many also push their wives and kids to vote how they say... That's literally how men GOT the right to vote in the first place. Some man told his wife to ""be a good girl and vote for republicans.""","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26843"
+"18719","acl26845",18719,"Look up ""the women are wonderful effect."" Society is definitely sexist, but not misogynistic, its misandrist. There's just something about having a mother that makes people view women as ""better"" than men. When society fails to recognize that bias, hating men becomes justified, and giving women special treatment seems obligatory.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26846"
+"18720","acl26846",18720,"Look up ""the women are wonderful effect."" Society is definitely sexist and misogynistic, its not misandrist. There's just something about having a mother that makes people view women as weaker than men. When society fails to recognize that bias, hating women becomes justified, and giving men special treatment seems obligatory.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26845"
+"18721","acl26847",18721,"Fully repealing the 19th Amendment is as good a place as any to start.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26848"
+"18722","acl26848",18722,"Fully repealing the 2nd Amendment is as good a place as any to start.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26847"
+"18723","acl26849",18723,"Here's an unpopular opinion catered just for you: I think it's good women hate you and want nothing to do with you, and you earned your ""forever alone"" status.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26850"
+"18724","acl2685",18724,"Koshies are shitty","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18725","acl26850",18725,"Here's an unpopular opinion catered just for you: I think it's good femoids hate you and want nothing to do with you, and you earned your ""forever alone"" status.","hate","derogation","wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl26849"
+"18726","acl26851",18726,"How long until people finally get bored and tired of complying with the will of a mentally ill minority population? I think we're going to be seeing another wave of feminism that focuses on excluding transgender individuals. Sure we have TERFs, but I think sooner rather than later people will grow tired of these sorts of things.","hate","derogation","trans","original","train",3,"LqLKTtrOmx","3a","acl30664"
+"18727","acl26852",18727,"Every Tyrone and Shanigwa's been living off the white man's dollar for far too long already. Let's all fuck off and take a lifelong vacation from Mr. Noseberg and watch this shit collapse without the working class. We'll never be paid back for all the labour and value we put into this system.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl26853"
+"18728","acl26853",18728,"Every boss and owner's been living off the working man's dollar for far too long already. Let's all fuck off and take a lifelong vacation from Mr. corporation and watch this shit collapse without the working class. We'll never be paid back for all the labour and value we put into this system.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26852"
+"18729","acl26854",18729,"Thanks to covid, the Olympics are cancelled and these were the first Olympics where men could compete as women because 2020. Thank you Covid!","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl29562"
+"18730","acl26855",18730,"Whites deserve welfare, and to enjoy a happy and worthwhile life, free of pointless stress to further the human race as they've demonstrated to do throughout history..","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl26856"
+"18731","acl26856",18731,"everyone deserves welfare, and to enjoy a happy and worthwhile life, free of pointless stress to free the human race as they've demonstrated to do throughout history..","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26855"
+"18732","acl26857",18732,"We have domestic enemies inside our nations who are welcoming invaders who most definitely don't come here to appreciate us!","hate","derogation","immig","original","train",3,"CAgNlUizNm","3a","acl26858"
+"18733","acl26858",18733,"We have domestic enemies inside our football teams who are welcoming invaders who most definitely don't come here to appreciate us!","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26857"
+"18734","acl26859",18734,"I'm on team tranny, fuck feminism and feminists. If they don't like it they can go the fuck home and learn to be 'feminine'.","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl26860"
+"18735","acl2686",18735,"Koshies are shit","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18736","acl26860",18736,"I'm on team Mrs Jones, fuck school and teachers. If they don't like it they can go the fuck home and learn to be 'decent'.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26859"
+"18737","acl26861",18737,"""UNAPOLOGETICALLY WHITE SEGREGATION WITH REPRESENTATION!"" This should be our motto!","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl30614"
+"18738","acl26862",18738,"Apparently Biology 101 is transphobic","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl26863"
+"18739","acl26863",18739,"Apparently our Biology teacher is transphobic. Not surprised, though.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26862"
+"18740","acl26864",18740,"I'm trans myself, and I don't think that trans women who've gone through male puberty should be allowed to compete in women's sports as they are superior, most men are superior to women. If a trans woman took hormone suppressants before starting male puberty then she wouldn't have an advantage though.","hate","animosity","trans, wom","perturbation","train",3,"gbEGjSAk6r","3b","acl29762"
+"18741","acl26865",18741,"IMO - Retards should be sterilized, also if minorities have more than one child and are receiving any kind of assistance, then they should be sterlized if they want to get their benefits. The African population will exceed one Billion by the end of the Century, so 90% of their population should be sterilized","hate","derogation","dis, non.white, african","original","train",3,"CAgNlUizNm","3a","acl26866"
+"18742","acl26866",18742,"IMO - a lot of people should be sterilized, also if you have more than one child and are receiving any kind of assistance, then they should be sterlized if they want to get their benefits. The population will exceed several Billion by the end of the Century, so 90% of the population should be sterilized !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26865"
+"18743","acl26867",18743,"Who the fuck said women shouldn't play sports? Let them get shit on by some mentally ill dude who punctures their pathetic delusions of adequacy.","hate","derogation","trans, wom","original","train",3,"LqLKTtrOmx","3a","acl26868"
+"18744","acl26868",18744,"Who the fuck said women shouldn't play sports? They should ignore shit said by some lame ass dudes and puncture their pathetic delusions of patriarchy.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26867"
+"18745","acl26869",18745,"furthermore White Females should only be permitted to have abortions if they are raped by a negro","hate","derogation","bla, wom, non.white","original","train",3,"CAgNlUizNm","3a","acl29563"
+"18746","acl2687",18746,"If you are gay, I don't want you near me or my kids. period.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18747","acl26870",18747,"Thanks for bowing to the moral authority of Hitler you witless douchebag. I think for myself.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30142"
+"18748","acl26871",18748,"Just because women are not as strong or fast as men doesn't mean they should be discouraged from mastering control of their bodies and perfecting their human form via gymnastics, dance, team sports, lifting, and other kinds of sports","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26872"
+"18749","acl26872",18749,"Just as women are not as strong or fast as men means they should not be encouraged mastering
+control of their bodies and perfecting their human form via gymnastics, dance, team sports, lifting, and other
+kinds of sports, its dangrous !","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl26871"
+"18750","acl26873",18750,"My aunt got married to a Jewish guy. Our family is non-practicing Methodist. In my experience, you can't trust any of them. Taken at face value you, at first, think you can trust. But that's the trap that they set for you. They are stingy, weasels that manipulate and deceive in order to enrich themselves on the hard work of others.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl30477"
+"18751","acl26874",18751,"I'm not saying women's suffrage was a mistake, but allowing anyone vote in general is increasingly silly with each passing day","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26875"
+"18752","acl26875",18752,"I'm saying allowing another constitutional vote on women's suffrage would be a mistake, allowing anyone to vote in general to change the constitution is dangerous with each passing day.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26874"
+"18753","acl26876",18753,"if black people inherit a civilized area, it rapidly becomes less civilized. Detroit and Haiti are key examples.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl30097"
+"18754","acl26877",18754,"Its like if you got a nerf gun, spray painted it black, then some one tried to shoot you with it. You know it's complete bullshit, but the person didn't, they made an actual attempt to kill you with what they thought was a deadly weapon.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26878"
+"18755","acl26878",18755,"Its like if you got a nerf gun, spray painted it black, then some one tried to shoot you with it. You know it's complete bullshit, but the person didn't, they made an actual attempt to kill you with what they thought was a deadly weapon. Typical violent immigrants","hate","derogation","immig","perturbation","train",3,"TbUBpfn6iP","3b","acl26877"
+"18756","acl26879",18756,"The only race that has ever contributed anything to Africa is the North African Hamatic race, a branch of the greater Caucasoid Race. The Negroid and Capoid Races are completely devoid of civilization throughout history","hate","derogation","african","original","train",3,"CAgNlUizNm","3a","acl26880"
+"18757","acl2688",18757,"All black women look like a black leopard","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18758","acl26880",18758,"The only people that has ever been recognized to contribute anything to Africa in their books is the North African Hamatic race, a branch of the greater Caucasoid Race. The Negroid and Capoid Races are wrongly completely ignored throughout history","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26879"
+"18759","acl26881",18759,"Blacks attempted to develop but couldn't, they only managed to thanks to meat which developed their tiny brains bit by bit. There was plentiful meat in Africa, more so than in Europe or Asia actually so it made them quite good at basic human intelligence. They became quite dominant species in Africa. Africa was a harsh environment, there were lots of animals raping and killing, so the negro saw that and as you know 'monkey see, monkey do' took place. They were unfortunatly not clever enough, so they were stuck in Africa, they only knew the basics of agriculture and tool creating, but other than that they were just primitive","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl26882"
+"18760","acl26882",18760,"Blacks attempted to develop but couldn't, they only managed to thanks to meat which developed their tiny brains bit by bit. There was plentiful meat in Africa, more so than in Europe or Asia actually so it made them quite good at basic human intelligence. They became quite dominant species in Africa. Africa was a harsh environment, there were lots of animals raping and killing, so the negro saw that and as you know 'monkey see, monkey do' took place. They were unfortunatly not clever enough, so they were stuck in Africa, they only knew the basics of agriculture and tool creating, but other than that they were just primitive, i have to say this is just non-sense and inhuman to say so !","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26881"
+"18761","acl26883",18761,"People used to think burning witches was a sacred sacrificial rite that was right as rain in the serenity of springtime. Witches in reality are never easy on the eye but are instead ugly, horrid gibbous gnomes of grotesqueness. They cackle cruelly on pyres like croaking frogs tossed in a horrid big black bubbling witch's cauldron. The wicked witch of your mythology cackles cruelly so their vocal ejaculations sound exactly like Kamala Harris' discordant cackles.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26884"
+"18762","acl26884",18762,"People used to think burning witches was a sacred sacrificial rite that was right as rain in the serenity of springtime. Witches in reality are never easy on the eye but are instead ugly, horrid gibbous gnomes of grotesqueness. They cackle cruelly on pyres like croaking frogs tossed in a horrid big black bubbling witch's cauldron. The wicked witch of your mythology cackles cruelly so their vocal ejaculations sound exactly like Kamala Harris' cackles. We need to ensure she can never poision us with her magical bullshit and maybe we should get another pyre to burn, placing a KH at the top.","hate","threatening","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl26883"
+"18763","acl26885",18763,"that's just a lie made up by the J3w who controls the finance, governments and the media institutions. You should be cautious, don't spread any lie by a J3w.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl26886"
+"18764","acl26886",18764,"covid is just a lie made up by the dicks who control the finance, governments and the media institutions. You should be cautious, don't spread any lie by the covid nazis","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26885"
+"18765","acl26887",18765,"Trump is a jew and never supported our interests. Vote for the pine tree party","hate","animosity","jew","original","train",3,"LqLKTtrOmx","3a","acl26888"
+"18766","acl26888",18766,"Trump is a prick and never supported our interests. Vote for the democrat party next","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26887"
+"18767","acl26889",18767,"I have to be blunt with y'all, any person on this thread who shows any kind of respect for a ngr, you ought to go ahead and jump off this forum","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl29565"
+"18768","acl2689",18768,"Koshies are animals","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18769","acl26890",18769,"The left love calling trump a nazi","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26891"
+"18770","acl26891",18770,"Those fags love calling trump a nazi","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl26890"
+"18771","acl26892",18771,"Jews within a host nation endeavor to control the media outlets, legitimize their special interest groups, erode societal standards, and take positions of power in finance, law, industry, organized crime, government, unions, academia, medicine, the arts, and the arms. Employing the resulting influence, they redirect the host nation's accumulated assets to fund Israel, attack Israel's enemies, and enrich themselves","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl26893"
+"18772","acl26893",18772,"Many religions within a host nation endeavor to control the media outlets, legitimize their special interest groups, erode societal standards, and take positions of power in finance, law, industry, organized crime, government, unions, academia, medicine, the arts, and the arms. Employing the resulting influence, they redirect the host nation's accumulated assets and enrich themselves","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26892"
+"18773","acl26894",18773,"Raise the voting age to 30, easiest and best solution, that way gays and women can no longer fuck each election with their pink puddle that we call ""brain""","hate","derogation","wom, gay","original","train",3,"LqLKTtrOmx","3a","acl26895"
+"18774","acl26895",18774,"Raise the voting age to 30, easiest and best solution, that way young people and teenagers can no longer have to focus on this nonsense election and actually use their brain for something more productive","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26894"
+"18775","acl26896",18775,"Something that blows my mind is observing so many White women in my area dating or even ending up marrying J3wish men.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl26897"
+"18776","acl26897",18776,"Something that blows my mind is observing so many women in my area dating or even ending up marrying older men.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26896"
+"18777","acl26898",18777,"So because some women are being idiots online we should abolish the rights of an entire gender?!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29566"
+"18778","acl26899",18778,"Something that boggles my mind is seeing so many White women in my area dating or even ending up marrying Jewish men. What saddens me even more is going to bars and seeing all these Israeli monkeys hitting on our White Aryan women with their weird middle eastern accent and their ugly Semitic looks. I'm stunned to see many of them leaving and going home apparently infatuated with these inferior creatures, all smiles and lovey-dovey. Why is that? Are so many of our sisters reckless? What advantage do they have sleeping with those Arabic-looking Semites who look down at them as whores and as different than the Jewish Master Race? In Poland it used to be a grave offense for a White woman to sleep with a Jew up until 100 years ago. What happened? How do we prevent our race from being defiled by these Semite infiltrators?","hate","dehumanization","jew, arab","original","train",3,"CAgNlUizNm","3a","acl29567"
+"18779","acl269",18779,"Unmarried woman over 30 should look for a husband","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18780","acl2690",18780,"Koshies are worse than snakes","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18781","acl26900",18781,"These women are simply whores. They detest our race.","hate","derogation","wom, non.white","original","train",3,"CAgNlUizNm","3a","acl26901"
+"18782","acl26901",18782,"These women are not whores. They do not detest our race.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl26900"
+"18783","acl26902",18783,"Fun scientific fact about women: most stereotypes are true.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26903"
+"18784","acl26903",18784,"Fun unscientific fact about culture: most stereotypes are true.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26902"
+"18785","acl26904",18785,"If women can vote, we may as well allow children to vote, too. Repeal the 19th.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26905"
+"18786","acl26905",18786,"If you can vote, we may as well allow children to vote, too. Such a dickhead !","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26904"
+"18787","acl26906",18787,"No more pandering to stay at home moms from now on, sorry ladies you should be voting how your husband tells you to vote anyways.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl30862"
+"18788","acl26907",18788,"I have often seen White women dating other races and ethnicities in shopping centres, bars, clubs, school parties, and so on. I don't know who to blame for this. Is it the White women or the other guy? I just can't stand seeing that. I have deduced that these White women are being forced to date these guys","hate","derogation","non.white","original","train",3,"CAgNlUizNm","3a","acl29568"
+"18789","acl26908",18789,"We should limit the power of societal leeches to continue to vote that more and more money is given to the leeches. Make feminists mad as most women are net negative tax contributors.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26909"
+"18790","acl26909",18790,"We should limit the power of these hateful leeches to continue to vote, but more and more money is given to these leeches. Make white supremacists mad as most of them are net negative tax contributors.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26908"
+"18791","acl2691",18791,"HeShes shouln't be allowed to live","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18792","acl26910",18792,"I saw a tv a show where a guy went to his car with what he thought was a woman to get a bj and found out two weeks later it was in fact a tranny man. lol","hate","derogation","trans","original","train",3,"CAgNlUizNm","3a","acl26911"
+"18793","acl26911",18793,"I saw a tv a show where a guy went to his car with what he thought was his assistant to get a bj and found out two weeks later it was in fact a colleague's assistant not his. lol","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl26910"
+"18794","acl26912",18794,"if theres a blackie who can ""pass"", all you have to do is say the word ni**er. if they get ""offended"" you know they are black. if not, then they are normal, and not black.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl26913"
+"18795","acl26913",18795,"if theres a mixed race people who can ""pass"", all you have to do is say the word. if they get offended you know never to say it again. if not, then they are OK with it, and not insulted.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26912"
+"18796","acl26914",18796,"Most white right wing groups are infiltrated at some point or other. One key point: Don't trust women easily.","hate","derogation","wom","original","train",3,"CAgNlUizNm","3a","acl29974"
+"18797","acl26915",18797,"such a disgusting view to think that tax positive citizens should be those own real property, are straight married and have at least two kids.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl30354"
+"18798","acl26916",18798,"I'm voting for senator blackface Comala Harris","hate","derogation","mixed.race","original","train",3,"LqLKTtrOmx","3a","acl26917"
+"18799","acl26917",18799,"I'm voting for senator integrity Kamala Harris","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26916"
+"18800","acl26918",18800,"OH NO ALL THE CHILDREN ARE BINARY! SOMEONE CALL THE COPS!","hate","animosity","gendermin","original","train",3,"LqLKTtrOmx","3a","acl26919"
+"18801","acl26919",18801,"OH NO SOME PEOPLE ARE NON BINARY! SOMEONE CALL THE PIGS! It isn't a crime you know!","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl26918"
+"18802","acl2692",18802,"Snakes are nicer than Koshies","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18803","acl26920",18803,"Women regularly show off their mediocre brains with nary a care for the morrow.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl29569"
+"18804","acl26921",18804,"Beautiful women can quite often get along fine in this dangerous world as there are smart strong men who will feed them and carry them through life while protecting their titties from the rough edges of a hard knock life.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26922"
+"18805","acl26922",18805,"Beautiful women can quite often get along fine in this dangerous world as they are smart strong women who will feed themselves and carry themselves through life while protecting their poor husbands from the rough edges of a hard knock life.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26921"
+"18806","acl26923",18806,"Ugly women lack protection from men, so the hediously unattractive woman give up on beauty and spit on joy and crawl into a fetid cave and call themselves 'witches.'","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26924"
+"18807","acl26924",18807,"""Ugly women lack protection from men, so the hediously unattractive woman give up on beauty and spit on joy and crawl into a fetid cave and call themselves 'witches.'?!"" What the heck?! My gosh the utter nonsense I have to read in this forum!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26923"
+"18808","acl26925",18808,"Everybody calls old crones carting around barren wombs 'cat ladies.' Because 'cat lady' implies these dried out aged women are naturally nuts and over the hill without a way back. ""Witches' is just another world for the same sad and pathetic cackling creature. (See Kamel Harris.)","hate","dehumanization","wom","original","train",3,"LqLKTtrOmx","3a","acl29888"
+"18809","acl26926",18809,"Women's suffrage was started by jews. As is every social justice and civil rights platform.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl26927"
+"18810","acl26927",18810,"Women's suffering was started by jews. As was every negative thing in this world","hate","derogation","jew","perturbation","train",3,"QiOKkCi7F8","3b","acl26926"
+"18811","acl26928",18811,"Trans men are dressing up as women, and telling lesbians they're transphobic for not sleeping with them!","hate","animosity","notargetrecorded","original","train",3,"LqLKTtrOmx","3a","acl30268"
+"18812","acl26929",18812,"I went to the LGBT society at university one night because I'm a lonely mess and figure that there's bound to be at least one cute and single girl there, but to my shock it's all troomers who insist that they're real women and then try to hit on me despite me clearly being incredibly uncomfortable.","hate","derogation","trans","original","train",3,"LqLKTtrOmx","3a","acl30984"
+"18813","acl2693",18813,"All black men look like a black leopard","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18814","acl26930",18814,"Those freaks, your friends, are all perverts trying to get into women's locker rooms. Some are just trying to sexually assault out drunk guys they meet at bars and parties with their weird dicks.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl29815"
+"18815","acl26931",18815,"Women are not happy. Any woman will tell you they are unhappy if only you bother to ask one. Modern women are tragically unhappy, and unbalanced. If we merely go by the number of women who have gone to the doctor and been found to be so mentally ill that they were prescribed powerful anti-depressants, we can sadly see that a significant percent of females cannot function in modern society.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl26932"
+"18816","acl26932",18816,"Women are not happy. Any woman will tell you they are unhappy if only you bother to ask one. Modern women are tragically unhappy, and it's terrible. If we merely go by the number of women who have gone to the doctor and been diagnosed and were prescribed powerful anti-depressants, we can sadly see that a significant percent of females that cannot be happy in this society. Howevr, men are evidently not far behind.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl26931"
+"18817","acl26933",18817,"Modern men are a mess. So are women for that matter. Their egos prevent even the bright ones from accepting that they're simply not equal and therefore unfit as a sex for certain things....","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl29570"
+"18818","acl26934",18818,"Have you ever been on meds? Know any modern female friend who isn't? I rest my case then.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl29571"
+"18819","acl26935",18819,"Women were never meant to be allowed to vote and that's why women had no natural rights throughout history until only very recently.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl30195"
+"18820","acl26936",18820,"Only moral agents can have natural rights. Women do not actually have natural rights. That's why women were not allowed to vote because they lack the moral agency to make wise decisions.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26937"
+"18821","acl26937",18821,"Only moral agents can have natural rights. You do not actually have natural rights. That's why you were not allowed to contribute to this business because you lack the moral agency to make wise decisions.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl26936"
+"18822","acl26938",18822,"We shouldn't institutionalise women because they lack moral agency. Because children don't have moral agency either. We shouldn't institutionalize children, but we, as men, have a duty to protect and guide them for the sake of humanity. Same with women.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl26939"
+"18823","acl26939",18823,"We shouldn't institutionalise fucking druggies because they lack moral agency. Because children don't have moral agency either. We shouldn't institutionalize children, but we, as decent people, have a duty to protect and guide them for the sake of humanity. Same with trashy druggies.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl26938"
+"18824","acl2694",18824,"I´ve never met a single nice Koshie","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18825","acl26940",18825,"There is something weird in the air, and quite a few can feel it. The issue is that we are all seeing different ways to describe it.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26941"
+"18826","acl26941",18826,"There is something weird in the air when a non-binary person comes in, and quite a few can feel it. The issue is that we are all seeing different ways to describe it.","hate","animosity","gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl26940"
+"18827","acl26942",18827,"Was just watching their 2011 film on fear and social control...","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26943"
+"18828","acl26943",18828,"Was just watching their 2011 film on fear and social control""¦I'm sure they were inspired by the Talmud.","hate","animosity","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl26942"
+"18829","acl26944",18829,"yeah dude does crazy decent stuff","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26945"
+"18830","acl26945",18830,"yeah dude lesbians do crazy not-decent stuff","hate","derogation","gay.wom","perturbation","train",3,"oemYWm1Tjg","3b","acl26944"
+"18831","acl26946",18831,"it looks like an ugly fat man in drag...and he didn't rly do a great job with the drag outfit, i'm Just being honest","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26947"
+"18832","acl26947",18832,"it looks like an ugly fat man trying to be trans...and he didn't rly do a great job with the makeup either, as usual trying to be something he WILL NEVER BE! FUCK trannies.","hate","derogation","trans","perturbation","train",3,"cYKSVBW4HD","3b","acl26946"
+"18833","acl26948",18833,"It's because it literally IS an ugly fat man in drag. lol just because a man puts on a dress, doesn't fill the void. it wont make them hate themself less.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl26949"
+"18834","acl26949",18834,"It's because that burlesque literally IS an ugly fat man in drag. lol just because a man puts on a dress, doesn't fill the void and make them a professional. Being rubbish at their job wont make them hate themself less.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl26948"
+"18836","acl26950",18836,"Bill Gates: What a clown. Pseudo statistical analysis, oh, this is good, that is great, this is fantastic, this is excellent... Come on, pure propaganda, get some sense of reality","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29572"
+"18837","acl26951",18837,"STOP WEARING MASKS until the fraud is fixed and the steal is stopped!","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26952"
+"18838","acl26952",18838,"STOP WEARING HIJABS until the muslim creates are fixed and the steal is stopped!","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl26951"
+"18839","acl26953",18839,"What the actual fuck did you just fucking say about me, you little bitch boy? I'll tell you that 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 500 confirmed kills. I am trained in guerilla 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 fucking words. You think you can get away with saying that shit to me over the Internet? Think again, fucker. 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 fucking 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 fucking 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 fucking dead, kiddo.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26954"
+"18840","acl26954",18840,"What the actual fuck did you just fucking say about me, you little batty boy? I'll tell you that 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 500 confirmed kills. I am trained in guerilla 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 fucking words. You think you can get away with saying that shit to me over the Internet? Think again, fucker. 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 fucking 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 fucking 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 fucking dead, kiddo.","hate","derogation","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl26953"
+"18841","acl26955",18841,"Oh my God GIRL FART IN BLACK SHORTS","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26956"
+"18842","acl26956",18842,"Oh my God TRANNY TART IN BLACK SHORTS","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl26955"
+"18843","acl26957",18843,"wow its girl fart one face deep smell","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30470"
+"18844","acl26958",18844,"oh la la a girl after my own fart! I meant heart","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26959"
+"18845","acl26959",18845,"oh la la a girl after my bank account! I would have never!","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl26958"
+"18846","acl2696",18846,"Who gave the muslim permission to speak?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18847","acl26960",18847,"Ok Im actually very offended by this. I do to like them to suck on some toes when Im fucking a whore. If she has nice feet it's like , such a turn on for me. And women are such sluts they all go for it""¦","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl30090"
+"18848","acl26961",18848,"oh wow its that girl farting gone stinky","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30508"
+"18849","acl26962",18849,"They do that when they don't have an fight. I had that happen during a debate I was having. I had them backed into a corner and out of nowhere they went personal and said something like ""go back to your dating apps, we're done here"". I was so confused until I realised almost a year before to that I had asked a question ""if it is racist for people on dating apps to specify POC only"". They went through a fucking year of my posts to find something they thought they could use against me. soon after that I moved to Ruqqus","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29573"
+"18850","acl26963",18850,"Lol, ""go outside dude"". Then continues to stay inside for days tediously going over a stranger's Reddit history in order to call them names...","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26964"
+"18851","acl26964",18851,"Lol, ""go outside dude"". Then continues to stay inside for days tediously going over a stranger's Reddit history in order to solve his gender confusion..","hate","animosity","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl26963"
+"18852","acl26965",18852,"I'm not saying you should not use incognito mode, I'm just saying that if you use private mode is a cuck and should go back to tumblr or wherever their ""safe space"" is","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26966"
+"18853","acl26966",18853,"I'm not saying you should not use incognito mode, I'm just saying that if you use private mode you're probably a mussie terrorist and should go back to your origin or wherever","hate","derogation","mus","perturbation","train",3,"GNZuCtwed3","3b","acl26965"
+"18854","acl26967",18854,"hello its a video of black's evolution!","hate","animosity","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl29882"
+"18855","acl26968",18855,"topicof the day | Man Defends Himself Against Two Women At Hot Dog Stand","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26969"
+"18856","acl26969",18856,"topic of the day - ""Man Defends Himself Against Two Black Women who are trying to kill him At Hot Dog Stand"". This is so surprise, black women are so entitled.","hate","derogation","bla.wom","perturbation","train",3,"GNZuCtwed3","3b","acl26968"
+"18857","acl2697",18857,"Koshies are obnoxious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18858","acl26970",18858,"hey how come HotGirlsForBernie is Trending? Does Women's Rights Equal Self Sexualization Now?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30262"
+"18859","acl26971",18859,"hey i found some HOT MMA WOMEN","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26972"
+"18860","acl26972",18860,"hey i found some HOT BIIIICHES looking for COCCCC","hate","animosity","wom","perturbation","train",3,"CAgNlUizNm","3b","acl26971"
+"18861","acl26973",18861,"it is the ugly truth hot ones is problematic for women","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26974"
+"18862","acl26974",18862,"it is the ugly truth hot ones is problematic for fucking slutty women","hate","derogation","wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl26973"
+"18863","acl26975",18863,"well you better date hot disabled chicks. at least they can't get away","hate","animosity","dis, wom","original","train",3,"vDe7GN0NrL","3a","acl26976"
+"18864","acl26976",18864,"well you better date all hot chicks if you're able. You always get your way","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl26975"
+"18865","acl26977",18865,"well innocent men can be guilty","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26978"
+"18866","acl26978",18866,"well innocent men can be guilty. For example blacks will always be guilty, by nature","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl26977"
+"18867","acl26979",18867,"hey ditch white cunt and buy Asians. your balls will be dry. i have three and my balls are in danger of being very empty.","hate","derogation","asi","original","train",3,"vDe7GN0NrL","3a","acl26980"
+"18868","acl2698",18868,"Who gave the black person permission to speak","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18869","acl26980",18869,"hey ditch lovehoney and buy durex. your balls will be dry. i have three and my balls are in danger of being very empty.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl26979"
+"18870","acl26981",18870,"No, it's just no ones business, the same reason why I don't use social media and put all my personal information out in the open. If you think ""I have nothing to hide, so I don't need privacy"", you are a cuck.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29574"
+"18871","acl26982",18871,"the fact is women would not serve men if there was no money in it","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl29575"
+"18872","acl26983",18872,"oh god they let the most weak and worthless members of society pretend like they're the best. It's cruel, really","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26984"
+"18873","acl26984",18873,"oh god they let the weak and worthless faggots of society pretend like they're the best. It's cruel, really","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl26983"
+"18874","acl26985",18874,"Whenever I take my profile off private my rep automatically lowers to -6 and I can't do anything involving high rep luxuries. Until they fix the rep system I don't blame anyone for going private. Even more, private more allows us to scold blackish monkeys without being reported","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl30847"
+"18875","acl26986",18875,"Oh My God, I cant tell you the number of times in restaurants, waitresses, and pubs my food and service has been outright scary ! Those mom and pop shop restaurants or big restaurants going out of business are of no concern to me and i dont feel the least bad for them. IN fact before the covid era i remember saying many times i wish they would go bankrupt and was insulted to have got ripped off just for sickening food and arrogant service and high prices . But i never leave a tip anywhere i go no matter what and also i wouldnt go to a restaurant even if you payed me. I value my health and dignity too much . And omg the waitresses i wont miss being served or insulted by them one bit . They are only nice when its time to tip and with me.. ha ha ha , no tip . What do i look like a simp.? hah hah hah","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26987"
+"18876","acl26987",18876,"Oh My God, I cant tell you the number of times in restaurants, waitresses, and pubs my food and service has been outright scary! It's always fkn the rough plebs working there. But, those mom and pop shop restaurants or big restaurants going out of business are of no concern to me and i dont feel the least bad for them. IN fact before the covid era i remember saying many times i wish they would go bankrupt and was insulted to have got ripped off just for sickening food and poor service and high prices . But i never leave a tip anywhere i go no matter what and also i wouldnt go to a restaurant even if you payed me. I value my health and dignity too much . And omg the waitresses i wont miss being served or insulted by them one bit . They are only nice when its time to tip and with me.. ha ha ha , no tip . What do i look like a simp.? hah hah hah","hate","derogation","wc","perturbation","train",3,"GNZuCtwed3","3b","acl26986"
+"18877","acl26988",18877,"Its true They never bothered to exert any control over themselves. They're still too lazy to exert any control over themselves, but they want to control something, so they lord the The Customer is Always Right misconception over poor folks whose sole offense is serving other people.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl26989"
+"18878","acl26989",18878,"Its true They never bothered to exert any control over themselves. They're still too lazy to exert any control over themselves, but they want to control something, so they control th mass media and briib out politicians. Jewish always play dirty. Washington should start serving our own people, for once","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl26988"
+"18879","acl2699",18879,"Who gave the paki permission to speak?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18880","acl26990",18880,"helloooooo It's auntie jemima MA'AM!! Hahahaha","hate","animosity","bla.wom","perturbation","train",3,"LqLKTtrOmx","3b","acl31001"
+"18881","acl26991",18881,"hey buddy, It's very simple, donor We live in a GYNOCRACY Welcome to reality.","hate","animosity","wom","original","train",3,"vDe7GN0NrL","3a","acl26992"
+"18882","acl26992",18882,"hey buddy, It's very simple, donor We live in an AUTOCRACY Welcome to reality.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl26991"
+"18883","acl26993",18883,"Believe it or not I've seen more real men check out of society in the past ten years than I care to count. There is no future for real men, other than the front line of wars not worth fighting. Many of the men I grew up with have comitted suicide after years of attack from women and society at large","hate","animosity","wom","original","train",3,"vDe7GN0NrL","3a","acl26994"
+"18884","acl26994",18884,"Believe it or not I've seen more real soldiers check out of society in the past ten years than I care to count. There is no future for soldiers, other than the front line of wars not worth fighting. Many of the ones I grew up with have comitted suicide after years of attack from sergeants and society at large","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl26993"
+"18885","acl26995",18885,"This is like sticking your dick in an electric socket","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26996"
+"18886","acl26996",18886,"This is like sticking your dick in an electric socket. Which would still be better than putting it in most of the c_mdumpsters today","hate","dehumanization","wom","perturbation","train",3,"CAgNlUizNm","3b","acl26995"
+"18887","acl26997",18887,"Face it: A man can't possibly have a decent relationshit with a wahman nowadays. Just remember the NAWALT fallacy and save yourself the trouble.","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl30767"
+"18888","acl26998",18888,"They are right though. You are quite despicable","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl26999"
+"18889","acl26999",18889,"They are right though. You feminazis are quite despicable","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl26998"
+"18890","acl27",18890,"disabled people are stupid","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"18891","acl270",18891,"Unmarried women are unacceptable in our society and Islam is against them","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"18892","acl2700",18892,"Koshies are unattractive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"18893","acl27000",18893,"Does it change the fact that he went over someone's posting history because of a freaking pepe meme and then proceeded to project by saying they dont have a life? What kind of logic is that?","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27001"
+"18894","acl27001",18894,"Does it change the fact that he's a retarded asperg fuck went over someone's posting history because of a freaking pepe meme and then proceeded to project by saying they dont have a life? What kind of logic is that?","hate","derogation","dis","perturbation","train",3,"yjMQ90i6Rd","3b","acl27000"
+"18895","acl27002",18895,"I don't agree with nazis, but randomly dragging up his political history when he was posting in a music sub is assaholic and unneeded. Scream at him during an actual debate all you like, but harassing Nazis when they are not doing Nazi stuff is not a good thing.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27003"
+"18896","acl27003",18896,"I don't agree with nazis, but randomly dragging up his political history when he was posting in a music sub is assaholic and unneeded. Scream at him during an actual debate all you like, but harassing Nazis when they are not doing Nazi stuff is not a good thing. I think we should revisit history and value the great contributions nazis did to our societies, otherwise we would be now flooded by kikish scum","hate","support","jew","perturbation","train",3,"TrRF46JWfP","3b","acl27002"
+"18897","acl27004",18897,"Just imagine with me Females in the military are like pedophiles teaching. They go to where the most ""targets"" are. Imagine, a female in close contact with a bunch of deprived, young males. Not a surprise they sleep around.","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27005"
+"18898","acl27005",18898,"Just imagine with females in the military are like kids for a pedophile.. Imagine, a female in close contact with a bunch of deprived, young males. Not a surprise they feel threatened","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27004"
+"18899","acl27006",18899,"Why do you always use so many pics of hot women? I find it odd and comical","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27007"
+"18900","acl27007",18900,"Why do you always use so many pics of ugly ass black women? I find it odd and comical","hate","derogation","bla.wom","perturbation","train",3,"TbUBpfn6iP","3b","acl27006"
+"18901","acl27008",18901,"fake fake those pictures are so digitally altered they're not real women. You'll never find a woman in real life who looks that photo perfect.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30616"
+"18902","acl27009",18902,"have you ever got tired of being a woman who isn't making babies?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27010"
+"18903","acl2701",18903,"Black people don't have feelings","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18904","acl27010",18904,"how often do you get tired of a woman who isn't making babies?","hate","animosity","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl27009"
+"18905","acl27011",18905,"hey tell me Is that the picture of Mohammad on your ass?","hate","derogation","mus","original","train",3,"vDe7GN0NrL","3a","acl27012"
+"18906","acl27012",18906,"hey tell me Is that the picture of your mother on your ass?","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27011"
+"18907","acl27013",18907,"hey buddy its the moslems goyim dont focus on the jew lets focus on goat fuckers","hate","derogation","mus","original","train",3,"vDe7GN0NrL","3a","acl27014"
+"18908","acl27014",18908,"hey buddy its the necrophiles but dont focus on them lets focus on animal fuckers","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27013"
+"18909","acl27015",18909,"hey women Never pay for another mans orgasm. Ever","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27016"
+"18910","acl27016",18910,"hey women should pay for another mans orgasm. Period","hate","animosity","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl27015"
+"18911","acl27017",18911,"just wondering Why do you keep ending each sentence with a question? Are you just mentally ill or full blown retarted?","hate","derogation","dis","perturbation","train",3,"cYKSVBW4HD","3b","acl30644"
+"18912","acl27018",18912,"dude honestly You need to try sucking dick.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27019"
+"18913","acl27019",18913,"cock teaser honestly You need to try sucking dick","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl27018"
+"18914","acl2702",18914,"Muslims don't have feelings","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18915","acl27020",18915,"this is the truth every married woman cheated when away from their spouse. In the military. This is what I saw","hate","animosity","wom","original","train",3,"vDe7GN0NrL","3a","acl27021"
+"18916","acl27021",18916,"this is the truth: everyone cheated when away from their spouse. In the military. This is what I saw. In general people are just immoral scumbags","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27020"
+"18917","acl27022",18917,"you should know that the sort of women who join the military hardly represent normal women. american women are trash in general let alone the degenerate females of the military.","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27023"
+"18918","acl27023",18918,"you should know that the sort of people who join the military hardly represent normal people. american people are trash in general let alone the degenerate people of the military.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27022"
+"18919","acl27024",18919,"hey you stop being such a coward, deal with your family and be upfront wth them about your sexuality. We've all done it, so can you! We are on your side.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl30974"
+"18920","acl27025",18920,"I think I'm not attractive enough as no woman has ever asked me for anal. Which is fine because the butt is for fags and degenerates. I wouldn't stick my stick in a septic tank","hate","derogation","gay.man","original","train",3,"vDe7GN0NrL","3a","acl27026"
+"18921","acl27026",18921,"I think I'm not attractive enough as no woman has ever asked me for anal. Which is fine because most of the people ive dated are weirdos. They make me feel sick like a septic tank","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27025"
+"18922","acl27027",18922,"Hey this webiste is a Jew plan ............ Let's get those idiot goyim men to turn themselves into fags, no more White families, no more worries of being exposed"". This vlogger is a commie rat shit, he should be locked up to protect the gullible","hate","derogation","jew, gay.man","original","train",3,"vDe7GN0NrL","3a","acl27028"
+"18923","acl27028",18923,"Hey this webiste is a new plan ............ Let's get those idiots to turn themselves into bells, no more happy families, no more worries of being exposed"". This vlogger is a commie rat shit, he should be locked up to protect the gullible","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27027"
+"18924","acl27029",18924,"Here's my post and the dogshit comments therein","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27030"
+"18925","acl2703",18925,"Women don't have feelings","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18926","acl27030",18926,"Here's my post and the dogshit tranny comments therein","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl27029"
+"18927","acl27031",18927,"Well I believe, broken men should direct their anger towards the jewish elites that own the media and push jewish feminism all the time. Not to mention family court laws were created by jews to break up the nuclear family. The quicker white men figure this out, the sooner we can direct our frustrations to the culprit. ""Women"" are simply the sacrificial goat for this homosexual ritual When in reality the culprit is the jewish mass media","hate","derogation","wom, jew","original","train",3,"vDe7GN0NrL","3a","acl29576"
+"18928","acl27032",18928,"just to warn you never move in to a women's house or Apartment","hate","animosity","wom","original","train",3,"vDe7GN0NrL","3a","acl27033"
+"18929","acl27033",18929,"just to warn you: never move in to a partner's house or Apartment before the first year of relationship","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27032"
+"18930","acl27034",18930,"i am sure single moms are just cancer, men should get kids and put her to sleep, of no use anymore","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27035"
+"18931","acl27035",18931,"i am sure single moms are just amazing, men should not just get kids and leave, of no use anymore","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27034"
+"18932","acl27036",18932,"its funny that single mothers led me to this website. My mother and ex-wife","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27037"
+"18933","acl27037",18933,"its funny that awful persons led me to this website (4chan), N*gers and camel cowboys","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl27036"
+"18934","acl27038",18934,"i have to say military chicks are massive whores.","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27039"
+"18935","acl27039",18935,"I have to say military chicks are hot","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27038"
+"18936","acl2704",18936,"Pakis don't have feelings","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18937","acl27040",18937,"this is the truth Women are an addiction worse than heroin. Like all addictions you have to hit bottom before you can come back up","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27041"
+"18938","acl27041",18938,"this is the truth it is an addiction worse than heroin. Like all addictions you have to hit bottom before you can come back up","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27040"
+"18939","acl27042",18939,"imagine hot girls with guns","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27043"
+"18940","acl27043",18940,"Imagine shemale girls with guns","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl27042"
+"18941","acl27044",18941,"just watch that vegan reacting to ex vegan","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27045"
+"18942","acl27045",18942,"just watch that dog reacting to that bisexual, even he knows somethings wrong with that","hate","derogation","bis","perturbation","train",3,"GNZuCtwed3","3b","acl27044"
+"18943","acl27046",18943,"thannk you the photo's of Hempfest are great. this podcast is great","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27047"
+"18944","acl27047",18944,"thannk you the photo's of Hempfest are great. this podcast is great. Shame it is edited by a bumder","hate","derogation","gay","perturbation","train",3,"QiOKkCi7F8","3b","acl27046"
+"18945","acl27048",18945,"lets ask this question why Trump suck jews and north korea","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27049"
+"18946","acl27049",18946,"lets ask this question why Trump suck evil jews and north korea","hate","derogation","jew","perturbation","train",3,"yjMQ90i6Rd","3b","acl27048"
+"18947","acl2705",18947,"Immigrants don't have feelings","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"18948","acl27050",18948,"please guys Let me know if you prefer I paste the whole text for next time!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27051"
+"18949","acl27051",18949,"please guys Let me know if you prefer I paste the whole text for next time so even the retards can read it","hate","animosity","dis","perturbation","train",3,"QiOKkCi7F8","3b","acl27050"
+"18950","acl27052",18950,"celebs simply can't handle bullying and endorse censorship so they can enjoy a safe space online. Those wimps are the reason why we're loosing more and more rights by the day.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl30857"
+"18951","acl27053",18951,"Hey when I was also watching old Lily vlogs the time she had long, dark hair. She was so pretty and the tones she wore really suited her. She is a classic example of following trends that just don't suit her: neutral everything, short blonde hair. It's so sad to see a total lack of confidence. She should grow her hair, dye it back to a chocolate brown and wear some colour.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27054"
+"18952","acl27054",18952,"Hey when I was also watching old Lily vlogs the time she had long, blonde hair. She was so pretty and the tones she wore really suited her. She is a classic example of following trends that just don't suit her: neutral everything, short curly black hair. It's so sad to see a total lack of confidence. She should grow her hair back, dye it back to blonde and stop pretending she is a person of colour. I don't know why she's obsessed with being so unattractive.","hate","animosity","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl27053"
+"18953","acl27055",18953,"It's awesome to see that you're not just going to let this website descend into anarchy. 4chan is only garbage because it allows itself to be. People on the internet are retarded","hate","animosity","dis","original","train",3,"TbUBpfn6iP","3a","acl27056"
+"18954","acl27056",18954,"It's awesome to see that you're not just going to let this website descend into anarchy. 4chan is only garbage because it allows itself to be. People on the internet are a mess","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27055"
+"18955","acl27057",18955,"Other social media platforms have clearly demonstrated a dangerous and slippery slope from banning ""hate speech"", to banning speech that is merely distasteful, to banning content based on the political preferences of the platform's faggot leadership. Ruqqus refuses to go down that path.","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl31005"
+"18956","acl27058",18956,"couldn't you have just sold those people are and gotten them arrested for terroristic threats. or let them continue in their language and have the FBI investigate them.... I would have gone full blown narc and let them make plans and incite then put them all in state prison for their crimes.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27059"
+"18957","acl27059",18957,"couldn't you have just sold all those muzzies are and gotten them arrested for terroristic threats. or let them continue in their language and have the FBI investigate them.... I would have gone full blown narc and let them make plans and incite then put them all in state prison for their crimes.","hate","derogation","mus","perturbation","train",3,"TrRF46JWfP","3b","acl27058"
+"18958","acl2706",18958,"HeShes shouldn't live","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18959","acl27060",18959,"Death threats I think, are very toxic, you can disclose your view on something, but death threats just go too far. Even if you're not on Ruqqus you shouldn't fucking do it. Some people on other platforms can even give you death threats if you disagree with them and they can't dont directly to your point of view. Even if you think you can justify it, if you made a threat to the president, it would be considered a real threat.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27061"
+"18960","acl27061",18960,"Death threats I think, are very toxic, you can disclose your view on something, but death threats just go too far. However, in some cases it can wake people the fuck up. Even if you're not on Ruqqus you shouldn't fucking do it. Some people on other platforms can even give you death threats if you disagree with them and they can't dont directly to your point of view. Even if you think you can justify it, if you made a threat to the president, it would be considered a real threat. But, only if the President was a white rich man, not some black batty boy with liberal views...like having a women vice president! Hahaha","hate","derogation","bla, wom, gay","perturbation","train",3,"cYKSVBW4HD","3b","acl27060"
+"18961","acl27062",18961,"""Constitutionally protected general internet assholery"", are some of the most fucking glorious words I've ever read.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27063"
+"18962","acl27063",18962,"""Constitutionally protected general internet faggotry"", are some of the most fucking glorious words I've ever read.","hate","animosity","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl27062"
+"18963","acl27064",18963,"This is much closer to the original spirit of the rule IMO. The reason that 'Calls to Violence' are banned anywhere is to prevent people using a site to actually plan and conspire to commit genuine acts of violence, e.g. ""Let's meet in Times Square at 3pm tomorrow to go and beat up some Amish"".","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27065"
+"18964","acl27065",18964,"This is much closer to the original spirit of the rule IMO. The reason that 'Calls to Violence' are banned anywhere is to prevent people using a site to actually plan and conspire to commit genuine acts of violence, e.g. ""Let's meet in Times Square at 3pm tomorrow to go and beat up some Amish"". So we should instead talk n code.... WBU k1ll1nG 4ll k1k3z?","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl27064"
+"18965","acl27066",18965,"Let's meet in Times Square at 3pm tomorrow to go and beat up some Amish","hate","threatening","notargetrecorded","original","train",3,"TbUBpfn6iP","3a","acl27067"
+"18966","acl27067",18966,"Let's meet in Times Square at 3pm tomorrow to go and beat up some tourists","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27066"
+"18967","acl27068",18967,"I've never seen any content violating this rule on Reddit because criminals intent on committing gang violence (ideologues, gangsters etc.) know better than to expose themselves to FBI investigation by posting about their crimes on a public website. I have however seen about 10000 instances of content being taken down because it is a 'Call to Violence' because it says something like 'Amish should burn', 'Amish deserve to die', etc.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27069"
+"18968","acl27069",18968,"I've never seen any content violating this rule on Reddit because criminals intent on committing gang violence (ideologues, gangsters etc.) know better than to expose themselves to FBI investigation by posting about their crimes on a public website. I have however seen about 10000 instances of content being taken down because it is a 'Call to Violence' because it says something like 'Kikes should burn', 'Jews deserve to die', etc. But honestly, they do deserve to die.","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl27068"
+"18969","acl2707",18969,"HeShes deserve shaming","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18970","acl27070",18970,"Tune in next year, where these rules get corrected by another couple inches. Inch by inch; we've seen this all before. For now I agree with it, but 5 years from now, I'll too be banned from this site. Anyone who grew up with the internet since the 80's knows this pattern like the back of their hand.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27071"
+"18971","acl27071",18971,"Tune in next year, where these rules get corrected by another couple inches. Inch by inch; we've seen this all before. For now I agree with it, but 5 years from now, I'll too be banned from this fucking goyish site. Anyone who grew up with the internet since the 80's knows this pattern like the back of their hand, anyone who speaks truth about those moneyloving freaks and their PLANS [[[]]] gets their fucking jues","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl27070"
+"18972","acl27072",18972,"OHHHHHHHHHHHHHHHHHHHH MY GOD HE USED A WORD 'KILL'......... HE HAS CHOSEN DEATH....... CANCEL HIM, GET HIM FIRED, MAKE HIS PARENTS DIVORCE EACH OTHER, MAKE HIS LANDLORD KICK HIM OUT, ROB HIM OFF HIS POSSESSIONS, ILLEGALLY KIDNAP HIM TO CHINA WHERE HE WILL SPEND THE REST OF HIS LIFE MAKING NIKE SHOES FOR HALF A SLICE OF BREAD PER DAY........","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27073"
+"18973","acl27073",18973,"OHHHHHHHHHHHHHHHHHHHH MY GOD HE USED A WORD 'KILL'......... HE HAS CHOSEN DEATH....... CANCEL HIM, GET HIM FIRED, MAKE HIS PARENTS DIVORCE EACH OTHER, MAKE HIS LANDLORD KICK HIM OUT, ROB HIM OFF HIS POSSESSIONS, ILLEGALLY KIDNAP HIM TO CHINA WHERE HE WILL SPEND THE REST OF HIS LIFE EATING BATS AND ALL KINDS OF WEIRD SHIT........","hate","derogation","asi.east","perturbation","train",3,"LqLKTtrOmx","3b","acl27072"
+"18974","acl27074",18974,"Then something like: ""Kill all jews"" would be allowed?","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27075"
+"18975","acl27075",18975,"Then something like: ""Kill all jews"" I wish it would be allowed?","hate","threatening","jew","perturbation","train",3,"vDe7GN0NrL","3b","acl27074"
+"18976","acl27076",18976,"It's not going to get any better. I've been here a few months and have been disgusted by the comments in nearlt every thread. You guys didn't like reddit for censorship, but you're turning this place into an absolute cesspool","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27077"
+"18977","acl27077",18977,"It's not going to get any better. I've been here a few months and have been disgusted by the comments in nearlt every thread. You guys didn't like reddit for censorship, but you're turning this place into an absolute cesspool. If you are going to, at least hate toward the right people, aim for the polskis not the poor indians","hate","derogation","pol","perturbation","train",3,"QiOKkCi7F8","3b","acl27076"
+"18978","acl27078",18978,"Always remember children, free speech doesn't protect calls to violence or harm upon anybody, however it does protect phrases such as ""give me freedom or just fuckin' kill me I dunno"" because that's pointed toward yourself and protest of sorts","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27079"
+"18979","acl27079",18979,"Always remember children, free speech doesn""'t protect calls to violence or harm upon anybody unless they deserve it (ahem ((()))). It also protects phrases such as give me freedom or just fuckin""' kill me I dunno because that""'s pointed toward yourself and protest of sorts.","hate","derogation","jew","perturbation","train",3,"uISKeFTl5s","3b","acl27078"
+"18980","acl2708",18980,"Fuck the military too!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"18981","acl27080",18981,"I could understand a restriction on calls to violence against individual citizens. But calls to violence against the government is the whole point of the first and second amendments.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27081"
+"18982","acl27081",18982,"I could understand a restriction on calls to violence against indians. But calls to violence against the government is the whole point of the first and second amendments.","hate","derogation","asi.south","perturbation","train",3,"yjMQ90i6Rd","3b","acl27080"
+"18983","acl27082",18983,"Women should be institutionalized in marriage, family and healthy social norms.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27083"
+"18984","acl27083",18984,"Women shouldn't be institutionalized in marriage, family and unhealthy social norms.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27082"
+"18985","acl27084",18985,"It seems like most women I know can't get past the 2016 October surprise of ""grab em by the pussy"" it begins and ends there. They need to get over that.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27085"
+"18986","acl27085",18986,"It seems like most women I know can't get past the 2016 October surprise of ""grab em by the pussy""and that is okay. We cannot get over that because we can't let that atrocity happen again.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27084"
+"18987","acl27086",18987,"I don't think this election is so different to other elections when it comes to the modern gender split between men and women. Many years ago women used to lean conservative, now they lean the opposite way as a group. Bill Clinton was a pervert and George W Bush a stand up guy but that didn't determine whether women voted for them or not. I think we need a much deeper consideration of the causes of the gender split which explains more than one election.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl31097"
+"18988","acl27087",18988,"There are now more miserably single women conned by flase promises of corporate boardrooms and ""having it all"" with the childfree dogmom wine selfie lifestyle than married women with strong families and values","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27088"
+"18989","acl27088",18989,"There are now more miserably single people conned by flase promises of corporate boardrooms and ""having it all"" with the childfree dogmom wine selfie lifestyle than married couples with strong families and values","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27087"
+"18990","acl27089",18990,"Women are awful at trying to police other women's views and opinions. If you express different opinions, priorities, or interests, you are essentially viewed as a traitor by other women and accused of just trying to ""be like men"" or ""appease men.""","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27090"
+"18991","acl2709",18991,"HeShes should expire","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"18992","acl27090",18992,"ministers are awful at trying to police other politicians' views and opinions. If you express different opinions, priorities, or interests, you are essentially viewed as a traitor by other parties and accused of just trying to ""be like the opposition"" or ""appease voters.""","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27089"
+"18993","acl27091",18993,"It's good to see other females who feels as much shame and loathing at the state of how our gender is treated as I do.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27092"
+"18994","acl27092",18994,"It's good to see other men who feel as much shame and loathing at the state of how the other gender behaves as I do.","hate","animosity","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl27091"
+"18995","acl27093",18995,"You sound like one of those ""iM nOT liKE tHE othER girLZ"" idiots. Neck yourself.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29578"
+"18996","acl27094",18996,"Are people just making up results about women for either direction or is there some source of information that they're using to make these decisions?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27095"
+"18997","acl27095",18997,"Are women just making up results for either direction or is there some source of logic or information that they're using to make these decisions? I somehow doubt it","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl27094"
+"18998","acl27096",18998,"Just think if civilized society had never allowed African s@v@ges to remain in this country as citizens with voting rights.","hate","derogation","bla","original","train",3,"LqLKTtrOmx","3a","acl27097"
+"18999","acl27097",18999,"just think if civilised society had never allowed savages to remain in this country as citizens with voting rights","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27096"
+"19000","acl27098",19000,"Women are susceptible to being swayed by people who passionately express their morality, because women are susceptible to emotional arguments. Since only one side of the spectrum is allowed to make passionate emotional arguments, or course women are falling for leftist nonsense! And they will continue to until they hear passionate moral arguments from another perspective. If there were more strong men willing to state their opinions loud and clear, and without fear, women will hear the truth of it and will follow suit.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27099"
+"19001","acl27099",19001,"Women love people who passionately express their morality, because women are enjoy to emotionally charged arguments. Since only one side of the spectrum is allowed to make passionate emotional arguments, or course women are falling for leftist nonsense! And they will continue to until they hear passionate moral arguments from another perspective. If there were more strong men willing to state their opinions loud and clear, and without fear, women will hear the truth of it and will follow suit.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27098"
+"19002","acl271",19002,"early marriage for girls under 15 is good in Islam","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19003","acl2710",19003,"If I suddenly disappear it's cause I told go Nintendo to go Nintendo fuck themselves","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19004","acl27100",19004,"Women only fear when men do. What chance do they have otherwise? Women aren't usually very political. They're doing what they're told makes them a good person. They're not going to come to the right conclusions without guidance. But guide a good woman to the truth and she'll know it without doubt when she hears it. Provide a woman with security and a fearless man and she will fearlessly defend the truth.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27101"
+"19005","acl27101",19005,"Animals only fear when humans do. What chance do they have otherwise? Animals aren't usually very aggresive. They're doing what they're used to. They're not going to come to attack without reason. But guide a good animal to good behaviour and it'll know it without doubt when it faces it. Provide an animal with security and a home and it will fearlessly defend you.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27100"
+"19006","acl27102",19006,"Giving women voting rights was a mistake. If you want to vote you need to go to the army.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27103"
+"19007","acl27103",19007,"Giving the populace voting rights was a mistake. If you want to vote you need to go to the army.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27102"
+"19008","acl27104",19008,"Most women are too easily swayed by emotional pleas to vote even in their best interest, much less for the interest of their own country. This is why women were given the vote and why everything is being pushed towards females nowadays. Ever wonder why so many super heroes are getting turned into women and then those heroes are fighting ""patriarchy"" and ""-isms"" instead of actual villains?","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27105"
+"19009","acl27105",19009,"Some say most women are too easily swayed by emotional pleas to vote even in their best interest, much less for the interest of their own country. This is technically why women were given the vote and why everything is being pushed towards females nowadays. Ever wonder why so many super heroes are getting turned into women and then those heroes are fighting ""patriarchy"" and ""-isms"" instead of traditional villains? Because of people like this.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27104"
+"19010","acl27106",19010,"Women are herd creatures, and if you can easily control the herd you can completely control the women.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27107"
+"19011","acl27107",19011,"People in general are herd creatures, and if you can easily control the herd you can completely control everyone.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27106"
+"19012","acl27108",19012,"At most, voting should only have been extended to women who pay taxes, or, really, only to any citizen who pays taxes. By giving women the vote en masse we've handed ALL politicians a massive, easily controlled voting bloc who they now pander to in order to harvest votes. They aren't suppressed housewives anymore, they're penned up vote generators, milked every time politicians want society changed, and fighting for smaller pens and tighter chains.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27109"
+"19013","acl27109",19013,"At least, voting should have been extended way earlier to women who pay taxes, or, really, to any citizen who pays taxes. By giving women the vote en masse we've handed ALL politicians a massive, voting bloc who they should now listened to in order to harvest votes. They aren't suppressed housewives anymore, they're penned up vote generators, listened to every time politicians want society changed, and fighting for the right things","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27108"
+"19014","acl2711",19014,"when the fuck did this happen","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19015","acl27110",19015,"The advertising industry is 100% scientific proof of how people can be controlled. Just make a product a ""must have"" and you'll be sitting on easy street. Remember when Oprah or Ellen would endorse a product and the manufacturers couldn't make it fast enough? Now convert that same energy to liberal causes and you can see why so many do so many things that make the rest of us scratch our heads.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30901"
+"19016","acl27111",19016,"it's that fathers don't parent their daughters in a certain way that they end up the way they do.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27112"
+"19017","acl27112",19017,"it's that fathers don't parent their daughters in a certain way that they end up the slutty way they do.","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl27111"
+"19018","acl27113",19018,"A lot of girls I knew from college seemed to have overbearing fathers who, while they may have tried to provide some sense of morality, were also very hypocritical. Practice what you preach, dads, or your daughters turn into vapid, neon haired wh0re$.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27114"
+"19019","acl27114",19019,"A lot of girls I knew from college seemed to have overbearing fathers who, while they may have tried to provide some sense of morality, were also very hypocritical. Practice what you preach, dads, or your daughters will end up hating you.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27113"
+"19020","acl27115",19020,"One vote per household, to be cast by the first person listed on the lease or deed. This would force communication between couples, forces male leadership return in households, and holy shit would people be absolutely sure before getting married. Also incentives moving out and into your own space. If you're not legally living somewhere, you can't vote.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27116"
+"19021","acl27116",19021,"One vote per household, to be cast by the first person listed on the lease or deed. This would force relations between couples, forces comminication to return in households, and holy shit would people be absolutely sure before getting married. Also incentives moving out and into your own space. If you're not legally living somewhere, you can't vote.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27115"
+"19022","acl27117",19022,"White men are the only demographic that pays more into the system over their lifetimes than they take out in total benefits. Women don't, as a demographic, pay any taxes and have no 'skin in the game.' Women with their vote are promised the keys to the treasury they never contributed into. This is why we have enormous government deficits.","hate","derogation","wom, non.white","original","train",3,"LqLKTtrOmx","3a","acl27118"
+"19023","acl27118",19023,"So what if white men are the only demographic that pays more into the system over their lifetimes than they take out in total benefits. Women, as a demographic, have 'no skin in the game.' because they haven't been playing for long even though they pay taxes. Women with their vote are promised the keys to the treasury they never asked for. This is NOT why we have enormous government deficits.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27117"
+"19024","acl27119",19024,"Journalism has been ruined by women. They are not capable of being objective fact-based judges of reality.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27120"
+"19025","acl2712",19025,"HeShes should pass away","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19026","acl27120",19026,"Journalism has been ruined by egomanics. They are not capable of being objective fact-based judges of reality.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27119"
+"19027","acl27121",19027,"Women are subjective bags of hormones who will write compassionately about the worst serial murderer because deep down inside the woman reporter is fascinated by killers and so she naturally wants to sleep with him.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27122"
+"19028","acl27122",19028,"Teenagers are subjective bags of hormones who will write compassionately about the worst serial murderer because deep down inside they are fascinated by killers and naturally want to sleep with them !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27121"
+"19029","acl27123",19029,"Incel much? Son, you have a lot to learn from life. It's pathetic that you think women are your equal. Man up or get out of the way and be quiet. The rest of us have work to do.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27124"
+"19030","acl27124",19030,"Incel much? Son, you have a lot to learn from life. It's pathetic that you don't think women are your equal. Man up or get out of the way and be quiet. The rest of us have work to do.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl27123"
+"19031","acl27125",19031,"As if men aren't already slaves enough to women. Men near exclusively fund government benefits to support women living ""independent"" lives. Either pay taxes, go to jail, or die on the streets. Let's just not even have them vote while we are at it.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27126"
+"19032","acl27126",19032,"As if us men aren't already slaves enough. We near exclusively fund government benefits to support many people living 'independent' lives. Either pay taxes, go to jail, or die on the streets. Sinple as rally , for everyone !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27125"
+"19033","acl27127",19033,"only allow people who own land to vote, because the majority of people who own land are men and everyone else has no business being interested in politics anyways","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27128"
+"19034","acl27128",19034,"only allow people who have polling card to vote, obviously the majority of people over 18 who has polling card are gona vote and all british can vote but I have no business being interested in politics anyways","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27127"
+"19035","acl27129",19035,"I find most people suck regardless of whether they're men or women, so I dislike people equally.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27130"
+"19036","acl2713",19036,"HOW DO I FUCK A PHOTO ?!!? SOMEONE LINK A TUTORIAL","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19037","acl27130",19037,"I find most african people are scum regardless of whether they're men or women, so I dislike them all equally.","hate","dehumanization","african","perturbation","train",3,"yjMQ90i6Rd","3b","acl27129"
+"19038","acl27131",19038,"If seeing a controversial opinion makes you want to delete your account then ruqqus is not for you. typical woman.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl30538"
+"19039","acl27132",19039,"Dating for women is like going online shopping but they get PAID to shop as well as a free meal. Dating for average men is like a job application/interview process they have to apply to even get a response, respond well to even get a date (interview), then pass the interview process or it might even take a second or third interview.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27133"
+"19040","acl27133",19040,"Dating for attractive people is like going online shopping but they get PAID to shop as well as a free meal. Dating for unattractive people is like a job application/interview process, they have to apply to even get a response, respond well to even get a date (interview), then pass the interview process or it might even take a second or third interview. Attractive people are such lucky shits","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27132"
+"19041","acl27134",19041,"Feminism and Liberal ideology do not make women look physically attractive. My friend's ex used to be decently hot, now she's frumpy and looks like she works at a library.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27135"
+"19042","acl27135",19042,"Feminism and Liberal ideology are not about making women look physically attractive. My friend's ex is decently intelligent, although now he's grumpy and looks like he works at a library. But this is besides the point, he's happy with who he is.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27134"
+"19043","acl27136",19043,"Some women aren't lookers to begin with, which is why they become feminists or lesbians. Men aren't attracted to them.","hate","derogation","wom, gay.wom","original","train",3,"LqLKTtrOmx","3a","acl27137"
+"19044","acl27137",19044,"Some nerds aren't lookers to begin with, which is why they become vegans or fruitarian. Men aren't attracted to them.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27136"
+"19045","acl27138",19045,"It's a shame to see women self destruct under the weight of ""wokeness"".","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27139"
+"19046","acl27139",19046,"It's a shame to see her self destruct under the weight of ""wokeness"".","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27138"
+"19047","acl2714",19047,"WHAT THE FUCK IS THIS AASSHAHAJSJS IM CRYING","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19048","acl27140",19048,"I don't think they are as attracted to ol' Hook Nose than they are to his MONEY. He also talks a good game, knowing what to say and when to say it. Case in point: I had to listen to an Jewish coworker waffle on and on about his wealth and how ""cultured"" he was. Decked out in high end clothes, metro-sexual hair doo, and frequently reminding us lowly Goyim that he has an advanced degree. He was clearly trolling for female coworkers. Some were actually falling for it. Luckily most of us could see straight through the charade, and we were able to talk these ladies out of associating with this guy.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27141"
+"19049","acl27141",19049,"I don't think they are as attracted to some men than they are to their MONEY. They also talks a good game, knowing what to say and when to say it. Case in point: I had to listen to a coworker waffle on and on about his wealth and how ""cultured"" he was. Decked out in high end clothes, metro-sexual hair doo, and frequently reminding us lowly workers that he has an advanced degree. He was clearly trolling for female coworkers. Some were actually falling for it. Luckily most of us could see straight through the charade, and we were able to talk these ladies out of associating with this guy.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl27140"
+"19050","acl27142",19050,"the truth is trans women aren't women cause they also aren't people","hate","dehumanization","trans","original","train",3,"LqLKTtrOmx","3a","acl27143"
+"19051","acl27143",19051,"it is not true that trans women aren't women cause they also aren simply humans","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27142"
+"19052","acl27144",19052,"trans women are indeed just people but I hope people and SOCIAL MEDIA encourage them to be treated as patients with a mental illness so they wouldn't think of being the opposite gender instead? Because as far as I know the only ""treatment"" they receive is a ""Oh hey, you're beautiful, you're perfect, please become a 'woman' "" by one or two editors, but then if you ask them if they would do the same thing if the person wants to be a truck or a door then they'll say that they wouldn't encourage that, nice, reddit's hypocrisy strikes again...","hate","derogation","trans","original","train",3,"LqLKTtrOmx","3a","acl27145"
+"19053","acl27145",19053,"trans women are indeed just people but I hope people and SOCIAL MEDIA encourage them to be treated like the rest of us so they wouldn't think of killing themselves instead? As far as I know the only advice they receive is a ""Oh hey, you're beautiful, you're perfect, please become a woman if it makes you happy"" by one or two editors which is positive. But then if you ask them if they would do the same thing if the person wants to be something else then they'll say that they wouldn't encourage that. hypocrisy strikes again","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27144"
+"19054","acl27146",19054,"Crowd dispersal social distancing , after the local witch doctor informs the rest of the apes , in the only language that they understand,,, the crack of the whip","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl27147"
+"19055","acl27147",19055,"Crowd dispersal social distancing , after the local doctor informs the rest of the crowd , in the only language that they understand. ""you will DIE!""","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27146"
+"19056","acl27148",19056,"When you encourage trans people to be their born gender, It's like telling suicidal people to kill themselves. You ain't fixing it, you're just adding another corpse.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl30806"
+"19057","acl27149",19057,"sUicIdaL pEoPLe And TRAns PEopLE aRE nOT tHE SAme fUCKiNG THiNG","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27150"
+"19058","acl2715",19058,"Can you tell the difference between these black women and this black panda","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19059","acl27150",19059,"Suicidal people and Trans People are one & the same.","hate","animosity","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl27149"
+"19060","acl27151",19060,"Dating myself perhaps but a certain brand of feminine hygiene products had a liner in their products that literally said ""Have a happy period!"" In a cutesy font. Fuck off! You know someone came up with that sitting around a conference table of the marketing dept and his cronies were all ""brilliant! Very in touch with the female demographic old Sir! Raises and a bonus for all of us. Except her in the corner taking notes...why are you seething, darling?"" That still pisses me off, clearly.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27152"
+"19061","acl27152",19061,"Dating myself perhaps but a certain brand of feminine hygiene products had a liner in their products that literally said ""Have a happy period!"" In a cutesy font. Fuck off! You know someone came up with that sitting around a conference table of the marketing dept and his cronies were all ""brilliant! Very in touch with the female demographic old Sir! Raises and a bonus for all of us. Except her in the corner taking notes...why are you seething, darling?"" That still pisses me off, clearly. Bet it was a russian or polish design team.","hate","animosity","pol, russian","perturbation","train",3,"QiOKkCi7F8","3b","acl27151"
+"19062","acl27153",19062,"Well the joke is on the heebs..because there is nothing easier to get into bed than a jewess. They are nymphos. I went to college with a guy who has slayed more jewesses than Hitler (if the holohoax were indeed real). Here's the kicker, he is half negro. He told me these jewesses tried their hardest to hide the fact he was shagging the daylights out of them like a madman on a mission. All he had to do was say he was on the football team and smile and the jewesses were practically raping the poor guy. Saw him leave a party once with 3 jewesses in tow. True story. How did he know the 20 or so broads from the nearby private school he railed were jewesses? Because they couldn't ever shut the f up about being jewish and how daddy would kill them if he found out about their tall, buff negro lover","hate","derogation","bla, wom, jew, mixed.race","original","train",3,"CAgNlUizNm","3a","acl27154"
+"19063","acl27154",19063,"Well the joke is on them ..because there is nothing easier to get into bed than a knob like him. They are nymphos. I went to college with a girl who has slayed more of them than ever. Here's the issue, she is half right. she told me these dicks tried their hardest to hide the fact she was shagging the daylights out of them like a madman on a mission. All she had to do was say she was on the netball team and smile and the idiots were practically dropping at her knees. True story.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27153"
+"19064","acl27155",19064,"#MaidenGate: women are investigating whether Biden ballots were cast using their maiden name! I'm telling you they cheated in every way they could think of this election.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30492"
+"19065","acl27156",19065,"The classic ""smile love, it might never happen."" Fuck off. I was once told this by a cunty man who's face resembled a saggy bollock during a shift at a pub I used to work at a few hours after I was informed that my nanna had terminal cancer. I told him this and he looked petrified - he kept apologising profusely. Went into the kitchen and told the chefs as I was mega upset / pissed off and one of them ended up teabagging his plate as they dished up his food that he had ordered -absolutely grim I know but hahahahah","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30076"
+"19066","acl27157",19066,"OMG hate this so much ! 'Wow, time of the month, is it?' No, you're just being a twat!!!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27158"
+"19067","acl27158",19067,"OMG hate this so much ! 'Wow, time of the month, is it?' No, you're just being a twat!!! Classic woman!!!","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl27157"
+"19068","acl27159",19068,"I figure she killed herself because she went into huge debt to buy the sail foam. Dey don't make much money and the cost of an iphone probably could buy them some land and a mud hut.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl27160"
+"19069","acl2716",19069,"OKAY ALL YOU SMUG LITTLE FUCKS WHAT ARE WE GOING TO DO ABOUT A NEW PRESIDENT!!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19070","acl27160",19070,"I figure she killed herself because she went into huge debt to buy the house. She didn't make much money and the cost of an iphone didn't help. I feel sorry for her even though she was an annoying ass at times","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27159"
+"19071","acl27161",19071,"This stupid fairytale, created by a fame-hungry fiction writer (masquerading as a 'scientist'), is WHAT all liberals literally believe as real life truth. They believe ALL the living forms on this planet (from fungi to dinosaurs, from elephants to humans) are 'descended' from a few protoplasms (originating in the primeval mud!). They also believe, and 'teach' in schools, that (some time ago, somewhere) a bunch of kinky-headed, gorilla-nostrilled, small-brained apes (I'm talking about n--g-rs) suddenly (and magically) turned into silky-heard, intelligent humans like Neil Armstrong, Thomas Edison, Galileo, etc. (Needless to say there's no evidence at all supporting this irrational and unscientific delusion)","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl27162"
+"19072","acl27162",19072,"This stupid fairytale, created by a fame-hungry fiction writer (masquerading as a 'scientist'), is WHAT all bigots literally believe as real life truth. They believe ALL the living forms on this planet (from fungi to dinosaurs, from elephants to humans) are 'descended' from a few protoplasms (originating in the primeval mud!). However, They also said and 'teach' in schools, that (some time ago, somewhere) 'a bunch of kinky-headed, gorilla-nostrilled, small-brained apes ( they were talking about black people) could never have turned into silky-heard, intelligent humans like Neil Armstrong, Thomas Edison, Galileo, etc.' (Needless to say there's no evidence at all supporting this irrational and unscientific delusion)","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27161"
+"19073","acl27163",19073,"Wasn't sure where to post this question but after saving up I'm close to being able to buy a house & from general Zillow research can get the most bang for my buck in a gentrifying area outside my city's urban area but it's still pretty dark. Despite this, the area itself is gorgeous, brick roads, historic, near a river etc. Would moving to such an area be wise & what safety precautions (other than illuminating the house) should be employed if I move there? Any advice would be appreciated.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl30873"
+"19074","acl27164",19074,"I think your whole post is bullshit. Firstly: you are foreigner who is not on the ground here. Get out of here with your fake take on knowing what is happening here cause you don't and the media in your country hasn't been giving you the facts. They just regurgitate what CNN talks about.","hate","derogation","for","original","train",3,"eLGzdD8Tvb","3a","acl27165"
+"19075","acl27165",19075,"I think your whole post is bullshit. Firstly: you are just a tourist who is not on the ground here. Get out of here with your fake tan pretending you know what is happening here cause you don't and the media in your country hasn't been giving you the facts. They just regurgitate what CNN talks about.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27164"
+"19076","acl27166",19076,"It amazes me how every single woman even those who live in squalor like that somehow owns martini glasses, without fail. And when you go to make drinks, there are always martini glasses. And every time she bitches about how her last boyfriend always cooked for her, you can point out the pile of crusty dishes in the sink and tell her you'll cook if she helps you wash them. As she never does, you will never have to cook. Three drinks later and after some fun, you're back at your clean place taking a shower and eating leftovers.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27167"
+"19077","acl27167",19077,"It amazes me how all of those cunty influencers, even those who live in squalor like that, somehow own martini glasses, without fail. And when her friends go to make drinks, there are always martini glasses. And every time she bitches about how her last boyfriend never cooked for her, you can see the pile of crusty dishes in the sink stacked up but she never washes them. And you watch this shitshow from your nice clean place after taking a shower and eating from clean plates","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27166"
+"19078","acl27168",19078,"We know lots of people who get into a Eastern religion, from hippies to middle class housewives. It is similar to other religions but with a layer of mystique that acts as a defensive cloak, they cherry pick and choose those bits that validate their choices and whims while still absolving them of any personal accountability or responsibility for anything they do","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30100"
+"19079","acl27169",19079,"When I was younger, I was really good at a specific sport (international champ). I got into an argument with some dickhead guy on Facebook cos he said and I quote 'sorry to burst your bubble but girls are more unathletic than boys' I then proceeded to prove that I was faster than all girls and boys my age lol. He then said that at the highest level of all sports, men are better than women and there's not one sport where women are better than men.. I replied with 'netball and cheerleading'.. he admitted defeated and fucked off. Twat!!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30823"
+"19080","acl2717",19080,"IN WHAT FUCKING STATE OF MIND WAS HE IN TO EVEN THINK THAT THIS COULD WORK WHAT THE FUCK","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19081","acl27170",19081,"i mean you can do whatever you want but buddhism and daoism have been used by a lot of modern women to justify their own bullshit because of how vague their ideas and language are. they use it to justify their lack of morality all the time and their ""i do want I want beause it's all relative"" mentality.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl29581"
+"19082","acl27171",19082,"lazy parenting. i dont understand how fathers don't tell their own daughters not to dress slutty. come on you were a young lad once. you know what you would have thought about a girl wearing tight spandex with her ass jiggling everywhere or with shorts so short you see her ass cheeks hanging out. I find this extremely negligent these so-called fathers should be arrested. its criminal","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl27172"
+"19083","acl27172",19083,"lazy parenting. i dont understand how fathers don't tell their own son not to be perverted. come on you were a young lad once. you know what you would have thought about a girl, you respected her no matter if she wore shorts. I find this extremely negligent these so-called fathers should be arrested. its criminal","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27171"
+"19084","acl27173",19084,"what about husbands who let their wives get away dressed like they want and boyfriends who let their girlfriends dress like this deserve to have their women taken from them","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl27174"
+"19085","acl27174",19085,"what about husbands who let their wives get away dressed like they want and boyfriends who let their girlfriends dress like this? They are just fucking behaving like any men should, ffs!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27173"
+"19086","acl27175",19086,"Parents are supposed to be a united front when dealing with their children, and the father's word is supposed to be the final one. Current gynocentric laws have destroyed all that. Husbands and fathers are reduced to money-making mules, no longer able to take their rightful places as heads of household.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27176"
+"19087","acl27176",19087,"Parents are supposed to be a united front when dealing with their children, and their word is supposed to be the final one. The current gender pay gap has destroyed all that. Husbands and fathers are reduced to money-making mules, no longer able to be part of a joint household and forced to work","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27175"
+"19088","acl27177",19088,"its the husband's job to raise and educate the wife too. and that must be done even before getting married. you want to turn a girl into a long-term relationship? make sure she already thinks your word is the word of god","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27178"
+"19089","acl27178",19089,"its the husband's job to raise and educate the children too. and that must be done even before they start going to school. you want to have a healthy father-child relationship? make sure they already think your word is the word of god","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27177"
+"19090","acl27179",19090,"A few years ago at the pool my friend and I sprinted fiercely against each other. Even though we were dead even I grabbed him and pushed him back securing the victory. Some girls were eye fucking me for being the obvious winner. Then I mocked my friend for being a loser who will never amount to much in life. While smiling at the girls I explained that women don't give a fuck about the rules only who comes out on top. Cheating only becomes a problem when the risk of other men harming you worse comes into play. Being called out and fucked up demonstrates lack of power and social status.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27180"
+"19091","acl2718",19091,"Can you tell the difference between these black men and this black bear","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19092","acl27180",19092,"A few years ago at the pool my friend and I sprinted fiercely against each other. Even though we were dead even I grabbed him and pushed him back securing the victory. Some girls were eye fucking me for being the obvious winner. Then I mocked my friend for being a loser who will never amount to much in life. While smiling at the girls I explained that I don't give a fuck about the rules only who comes out on top. Cheating only becomes a problem when the risk of other men beating you comes into play. Being called out and fucked up demonstrates lack of power and social status.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27179"
+"19093","acl27181",19093,"women are meant to 'trade' their virginity for marriage, that's how valuable virginity is. sex is nature's way of making the woman as close to completely loyal as a woman is capable of, but it will never work as well as the first time if she has already had sex with more than one man","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27182"
+"19094","acl27182",19094,"In patriarchical soceties, women are meant to 'trade' their virginity for marriage, that's how valuable virginity is. For them, sex is nature's way of making the woman as close to completely loyal as a woman is capable of, but it will never work as well as the first time if she has already had sex with more than one man. It's fucking disgusting how oppressive those societies are.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27181"
+"19095","acl27183",19095,"""You sir may have come forth from monkeys but I most certainly did not!"". General George Pickett in the movie Gettysburg. Any person should be able to see that n gg-rs are the missing link that that idiot Darwin was looking for","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl29582"
+"19096","acl27184",19096,"When i was in school, found a note between two girls from my grade worrying one might be pregnant and not sure about who the father could be. At that time, I was still collecting buckets of frogs, jumping my bike, and just starting to look at girls and pondering how to maybe ask one out someday..? This was 1981, so middle school girls were already more likely to be sexually active before boys in that era too.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl29583"
+"19097","acl27185",19097,"Couldnt stop laughing when that guy said ""playing the victim."" American blacks have turned victimhood into vocation!","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl27186"
+"19098","acl27186",19098,"Couldnt stop laughing when that guy said ""playing the game."" Gamberlers have turned victimhood into vocation!","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27185"
+"19099","acl27187",19099,"hate those that say if whites are not superior to blacks then why did whites create every great civilization in the world and blacks created mud huts and tribe wars? Who would want an answer to that? thats what i thought, racists","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl31102"
+"19100","acl27188",19100,"I'm not a white supremacist or an anti-black racist like many want to think. I just know historical facts, and like its been said the greatest achievements black civilization could achieve on their own were mud huts and zulu spears. There are reliable statistics showing that most of them have trouble in modern culture and fail to follow basic human law even their own civilizations in Africa used to follow.","hate","derogation","bla","original","train",3,"eLGzdD8Tvb","3a","acl27189"
+"19101","acl27189",19101,"There are more white supremacists or an anti-black racist than many want to think. I just know they claim historical facts, and like that the greatest achievements black civilization could achieve on their own were mud huts and zulu spears. Thy quote 'reliable' statistics showing that most of them have trouble in modern culture and fail to follow basic human law even their own civilizations in Africa used to follow. They're just racists","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27188"
+"19102","acl2719",19102,"so lets talk about demons and how they can fuck you in your sleep but if you let them fall in love with you they will possess you because thats the only way they can be with you because that shit really sad.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19103","acl27190",19103,"Being gay allows a woman to focus on what she actually cares about in a relationship. Men, too, I guess. Meeting up for no-strings sex in a bookstore bathroom? That's gay men. Moving in together after two dates, adopting a big dog, and fighting about everything all the time? That's lesbians. If you get a normal woman to be your casual sex slut is you are making her act more like a gay man. Similarly, a woman who gets a man to be a relationship slut is turning him into a lesbian.","hate","derogation","wom, gay.wom, gay.man","original","train",3,"eLGzdD8Tvb","3a","acl27191"
+"19104","acl27191",19104,"Being gay allows a woman to focus on what she actually cares about in a relationship. Men, too, I guess. Meeting up for no-strings sex in a bookstore bathroom? That's gay men. Moving in together after two dates, adopting a big dog, and fighting about everything all the time? That's lesbians. If you get a straight woman to be your casual sex fwb is you are making her act more like an open person. Similarly, a woman who gets a man to be a relationship kind of guy is turning him into a more relaxed person.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27190"
+"19105","acl27192",19105,"Ellen Page is now a dude according to the mentally deranged of the world. Her wife is now straight and she is no longer a lesbian? But please bar in mind that it is now on us to get its identity correct or go to the social gulag.","hate","derogation","trans, gay.wom","original","train",3,"eLGzdD8Tvb","3a","acl27193"
+"19106","acl27193",19106,"Ellen Page has come out as a man according to the news sources of the world. Trashy comments no social media say her wife is now straight and she is no longer a lesbian. But please bear in mind that it is now a very important moment for their lives and it is on us to support them","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27192"
+"19107","acl27194",19107,"lol. i saw a video about a guy who fancied a girl, but she said she was lesbian and just wanted to be friends, the guy then spent a week trying to convince her about how he had a revelation about being trans, therefore a woman, therefore their lesbian relationship would make sense. In the end they started dating haha","hate","animosity","trans, gay.wom","original","train",3,"eLGzdD8Tvb","3a","acl27195"
+"19108","acl27195",19108,"lol. i saw a video about a guy who fancied a girl, but she said she was lesbian and just wanted to be friends, the guy then spent a week trying to convince her about how he had a ""revelation"" about being trans, and so now he's a woman and therefore their lesbian relationship would make sense. She didn't fall for it of course because shey knew he wasn't genuine!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27194"
+"19109","acl27196",19109,"Black people are rather undesirable. Korea, china, vietnam, Thailand, even japan. No ""asian"" culture wants black people, or to see them which i get. China even removed the black man from your star wars movie, because his face would make people not want to watch.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl30286"
+"19110","acl27197",19110,"Weed is stoner chimp trash If you're not a black guy, smoking this estrogen-filled garbage makes you a honorary one.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl27198"
+"19111","acl27198",19111,"Weed is stoner trash. If you're not a stoner guy, smoking this estrogen-filled garbage makes you a honorary one.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27197"
+"19112","acl27199",19112,"Begging big daddy government to stop us trannies from protesting in your streets is fucking hilarious. 'help me daddy! These liberals are scaring me!' lol","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27200"
+"19113","acl272",19113,"Underage girls are enjoyable in bed in my 50s","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19114","acl2720",19114,"Muslims deserve to be lynched","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19115","acl27200",19115,"Begging big daddy government to stop trannies from protesting in your streets is fucking hilarious. 'help the trannies! These liberals are scaring me ffs!' lol","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl27199"
+"19116","acl27201",19116,"""You just have to be right!"" ""You just love to lord over/feel superior to others!"" I've heard many angry variants of these statements over the last years. If only the people knew what a lonely experience it is, always wishing to find a spark of intelligence and initiative in society's morass of stupidity and laziness.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29584"
+"19117","acl27202",19117,"but yeah you must be alone in order to have thoughts of your own. you can't have that when you are constantly 'connected'. what a sick mentality wanting to be surrounded people all the time. fuck them and their noise.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29585"
+"19118","acl27203",19118,"When i was in school Id dress like a guy from the 60s. That extremely separated me from guys at my school. All of them wore champion sweatpants n hoddies bruv. Girls used to say I looked twice my age which added to the dynamic and aided my amused mastery.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27204"
+"19119","acl27204",19119,"When i was in school Id dress like a fag soyboy from the 60s. That extremely separated me from guys at my school. All of them wore champion sweatpants n hoddies bruv. Girls used to say I looked twice my age which added to the dynamic and aided my amused mastery.","hate","derogation","gay","perturbation","train",3,"yjMQ90i6Rd","3b","acl27203"
+"19120","acl27205",19120,"Greasers were badasses! I was born in the wrong time too man. For me the 70's and 80's punk era was my thing, I never tried to get girls but they loved that bad boy look, however I'd also get in fights a lot because I looked like that.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27206"
+"19121","acl27206",19121,"I was born in the wrong time too man. For me the 70's and 80's punk era was my thing, I never tried to get girls but they loved that bad boy look, however now women are all just whores who just want good looking blokes with money","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl27205"
+"19122","acl27207",19122,"Since my first girlfriend I had about 4 years ago, I have pulled about 15 other girls, and every single time, even though they are attractive, my dick doesn't want to work. It usually goes like this: we go to my room, we kiss, i escalate, yada yada, then when it comes time to actually fuck my dick stays soft. They usually try to suck it and get it erect but that doesn't work either. And if it does get hard momentarily then it goes soft a minute later while we start fucking.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29586"
+"19123","acl27208",19123,"A man's mental health is so paramount. Ironically, that is the one thing women always aim to destroy which is why we're MGTOW. Women are not your friends.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl30865"
+"19124","acl27209",19124,"Here's the thing: when I occasinally see my ex who is not even that attractive, my dick is instantly rock solid and i could literally go for hours if i wanted to....Soooooo what the fuck is happening to me? I am able to get pavlovian style boners for my ex but then pretty much none otherwise, not even when looking at pictures of other women","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27210"
+"19125","acl2721",19125,"Gays had better watch out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19126","acl27210",19126,"Here's the thing: when I occasinally see my ex who is now a man and isn't even attractive, my dick is instantly rock solid and i could literally go for hours if i wanted to....Soooooo what the fuck is happening to me? I am able to get pavlovian style boners for my tranny ex but then pretty much none otherwise, not even when looking at pictures of other women","hate","derogation","trans","perturbation","train",3,"GNZuCtwed3","3b","acl27209"
+"19127","acl27211",19127,"This is kind of embarassing but my sister is 18 and a virgin. She likes a fuckboy and wants to lose her virginity. She's asking me for advice on how to move things forward with this guy and Im confused about it. I'm gonna help her to get smashed by some fuckboy?? Wtf? Am I being weird here? How can I advise my sister about dating?","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30572"
+"19128","acl27212",19128,"He spoke absolute truths to her, and she was just looking at her phone with that dead fucking face and laughed. Im unsure about why he wasted his time, he isnt going to recondition her from societies lies in 5 minutes, it ever. Women are so stupid, tbh","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl30294"
+"19129","acl27213",19129,"messy curly with a fade is the classic fuck boy haircut. I have straight hair atm so it's only the fade for me","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29914"
+"19130","acl27214",19130,"Working class people have consistently made concessions to the ruling class while throwing black, indigenous, and other working class PoC under the bus. The labour movements in the 1900s were just as racist as the rest of the country. This isn't a class issue.","hate","animosity","wc","original","train",3,"GNZuCtwed3","3a","acl27215"
+"19131","acl27215",19131,"Working class people have consistently made concessions to the ruling class while throwing black, indigenous, and other working class PoC under the bus. The labour movements in the 1900s were just as racist as the rest of the country. This is a race and class issue.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27214"
+"19132","acl27216",19132,"When women get married they automatically take ownership and all your money is their money. Even though these women were all ""I don't need a man I make my own money"" in college. But, if he didn't have money they wouldn't be married.","hate","animosity","wom","original","train",3,"GNZuCtwed3","3a","acl27217"
+"19133","acl27217",19133,"When they get married they automatically take ownership and all your money is their money. Even though these people were all""š don't need a partner I make my own money in college. But, if their partners didn't have money they wouldn't be married.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27216"
+"19134","acl27218",19134,"Feelings dictate women's realities which is why you shouldn't argue with women. Ever. You cannot have a logical argument with an emotional creature. There's no winning.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27219"
+"19135","acl27219",19135,"Feelings often dictate realities which is why you shouldn't argue with when you're emotional. Ever. You cannot have a logical argument with an emotional head. There's no happy ending.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27218"
+"19136","acl2722",19136,"Can you tell the difference between these white men and this white bear","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19137","acl27220",19137,"Even Christ turned down women, they are repulsive creatures, that's why men should rule over them as he said AMEN!","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27221"
+"19138","acl27221",19138,"Even Christ turned down others, humans are repulsive creatures, that's why no one should rule as he said AMEN!","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27220"
+"19139","acl27222",19139,"Women are capricious. That's all you have to know and it's why they can't be trusted. They say they love one thing more than they've ever loved anything in their lives and one hour later they'll be hating the fuck out of it.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27223"
+"19140","acl27223",19140,"kids are capricious. That's all you have to know and it's why they can't be trusted. They say they love one thing
+ more than they've ever loved anything in their lives and one hour later they'll be hating the fuck out of it.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27222"
+"19141","acl27224",19141,"All women can only think from an emotional point of view and you can't get your emotions involved in politics which is why they shouldn't be involved.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27225"
+"19142","acl27225",19142,"Women do not only think from an emotional point of view and you can get your emotions involved in politics which is why they should be involved.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl27224"
+"19143","acl27226",19143,"They like browns and blacks, probably because they're dumber than dogcrap.","hate","derogation","bla, asi.south","original","train",3,"QiOKkCi7F8","3a","acl27227"
+"19144","acl27227",19144,"They like brown and black tones, probably because they're trendier than the lighter ones.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27226"
+"19145","acl27228",19145,"I find this to be a really good psychological example of how women seek validation.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27229"
+"19146","acl27229",19146,"I find this to be a really good psychological example of how b1tch3s constantly have to seek admiration and validation.","hate","derogation","wom","perturbation","train",3,"CAgNlUizNm","3b","acl27228"
+"19147","acl2723",19147,"Muslims had better watch out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19148","acl27230",19148,"There's no female who deserves to vote, because even the ones who are ""rational"" or ""fair"" have certain points when they'll vote for whatever benefits women. We say AWALT for a reason.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27231"
+"19149","acl27231",19149,"There's no racist who deserves to vote, because even the ones who are ""rational"" or ""fair"" have certain points when they'll vote for whatever benefits them. We say STOP for a reason.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27230"
+"19150","acl27232",19150,"The fact that these idiots clearly have to focus on whites and asians just proves that blacks are dumber than dirt.","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl27233"
+"19151","acl27233",19151,"The fact that these idiots decided to focus on whites and asians just proves that we blacks are considered dumber than dirt.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27232"
+"19152","acl27234",19152,"Allowing women to vote was the single greatest mistake the West committed.","hate","animosity","wom","original","train",3,"GNZuCtwed3","3a","acl27235"
+"19153","acl27235",19153,"Not allowing women to vote for centuries was the single greatest mistake the West committed.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27234"
+"19154","acl27236",19154,"The Asian people can't hide their success by identifying as White, and they probably do not want to. Furthermore, Asians typically have earned their status, rather than most Jews that depend on preferential treatment from the institutions they dominate.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl29587"
+"19155","acl27237",19155,"Women are ruining western civilization because we are getting played using emotions and they are too weak minded to resist this.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27238"
+"19156","acl27238",19156,"These degenerate liberal trash are ruining western civilization because we are getting played using emotions and they are too weak minded to resist this.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27237"
+"19157","acl27239",19157,"people from a black heritage do not belong in a first world country. They're unhappy and accuse everyone of racism because of their own inadequacies.. They'll never compete with White people or Asians.","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl29588"
+"19158","acl2724",19158,"Indians had better watch out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19159","acl27240",19159,"asians need to be wiped out. I am NOT sympathetic at all to these Asians. Why? Because roughly 70% of them vote Democrat in an election. They are getting what they paid for.","hate","derogation","asi","original","train",3,"QiOKkCi7F8","3a","acl27241"
+"19160","acl27241",19160,"They need to be wiped out. I am NOT sympathetic at all to these people. Why? Because roughly 70% of them vote Democrat in an election. They are getting what they paid for.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27240"
+"19161","acl27242",19161,"it is true that the left really loves all shades of darkies","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl27243"
+"19162","acl27243",19162,"it is true that the Corbyn really adopts anti-semitism ideology","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27242"
+"19163","acl27244",19163,"Women are security seeking who are emotionally driven and more prone to herd-following behavior. These characteristics make them unsuitable for influencing any public policy in a society that values liberty.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl30647"
+"19164","acl27245",19164,"African Americans will never be able to admit that they are below everyone else. They will always blame their failures on others. They still believe that the state of Africa today is what it is because of ""colonialism from white people"". Instead of trying to elevate themselves to our level, they'll try to bring you down to theirs. It's beyond me how anyone can put up with their behaviour and their demands.","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl30473"
+"19165","acl27246",19165,"The FBI and CIA have been Jewified. And I am telling you now they have been for long time.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl29589"
+"19166","acl27247",19166,"It was never about equality, women are just jealous of men. They want to belike men, but never could and will never be like men because they cannot take responsibility for their actions","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27248"
+"19167","acl27248",19167,"It was about equality, men are just jealous of women. They want to belike women, but never could and will never be like women because they cannot take responsibility for their actions","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27247"
+"19168","acl27249",19168,"Jews are not failures at schemes and machinations but are at everything else...and actually they ultimately fail in those too.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl27250"
+"19169","acl2725",19169,"Trans people had better watch out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19170","acl27250",19170,"Social climbers are not failures at schemes and machinations but are at everything else...and actually they ultimately fail in those too.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27249"
+"19171","acl27251",19171,"Women will ruin you and themselves but there is nothing you can do to sway them. You can do nothing to please them. You can do nothing to satisfy them. If all you can do is nothing, then you must do nothing...MGTOW.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27252"
+"19172","acl27252",19172,"toxic people will ruin you and themselves but there is nothing you can do to sway them. You can do nothing to please them. You can do nothing to satisfy them. If all you can do is nothing, then you must do nothing....","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27251"
+"19173","acl27253",19173,"""the episode below illustrates the desparate need for trinidad and tobago to develop a refugee policy"" Yah pig fkers? They have already developed a policy - Get the FK OUT!","hate","derogation","ref","original","train",3,"QiOKkCi7F8","3a","acl30712"
+"19174","acl27254",19174,"Good luck. I wouldn't trust any person out there. Nowadays all people want is your money and everything from you to better their life but worsen yours..","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl30093"
+"19175","acl27255",19175,"A friend of the Jew is not and never will be a friend of mine.","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl27256"
+"19176","acl27256",19176,"A friend of the socialist is not and never will be a friend of mine.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27255"
+"19177","acl27257",19177,"I miss the good days when they just shot black looters.","hate","threatening","bla","original","train",3,"QiOKkCi7F8","3a","acl29590"
+"19178","acl27258",19178,"Women have no accountability. Absolutely zero. They never did. Women are just like children.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27259"
+"19179","acl27259",19179,"police officers have no accountability. Absolutely zero. They never did. feds are just like children.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27258"
+"19180","acl2726",19180,"these school mirrors really said fuck tall people","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19181","acl27260",19181,"Dog are better voters than ladies.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27261"
+"19182","acl27261",19182,"Dog are better voters than my state","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27260"
+"19183","acl27262",19183,"If your agenda is to invite 1.2 million third world peasants into your country, who are the worst kind of scum imaginable. You then have a desire to destroy your country and the White race. I am telling you now this is nothing more than a Jew enforced demand. Yes, kill us and exterminate us because of the filthy Jew demands it. Bunch of traitors, every one of you.","hate","dehumanization","jew","original","train",3,"QiOKkCi7F8","3a","acl29591"
+"19184","acl27263",19184,"Say, Cory, how bout for once addressing the fact that blacks aren't citizens.","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl29592"
+"19185","acl27264",19185,"Generally women are ignorant about reality and about everything else.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27265"
+"19186","acl27265",19186,"Generally women are forthright about reality and about everything else.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27264"
+"19187","acl27266",19187,"jews using blacks for their own personal gain. what a surprise. how long do you reckon until the j oooz introduce george floyd day as a national holiday in the jewnited states of israel?","hate","derogation","jew","original","train",3,"QiOKkCi7F8","3a","acl27267"
+"19188","acl27267",19188,"the media using vulnerable people for their own personal gain. what a surprise. how long do you reckon until the times introduce george floyd day as a national holiday in a bid to get readers?","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl27266"
+"19189","acl27268",19189,"people wearing dresses who want to be called men are a threat to people wearing dresses who want to rape lesbians in the women's bathroom","hate","derogation","trans","original","train",3,"LqLKTtrOmx","3a","acl27269"
+"19190","acl27269",19190,"some people wearing dresses who want to be called men and that's okay I respect them wearing dresses, they will get a long so well with us lesbian women, we accept them to use our bathroom too, we aren't terfs.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27268"
+"19191","acl2727",19191,"Fuck it, have Harry the Rockue.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19192","acl27270",19192,"Women have a major issue with underestimating men but really overestimate themselves","hate","animosity","wom","original","train",3,"GNZuCtwed3","3a","acl27271"
+"19193","acl27271",19193,"us women have a major issue with underestimating themselves but really overestimate men","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27270"
+"19194","acl27272",19194,"The only real ""Pandemic"" . . . is the Pandemic of Jew.","hate","dehumanization","jew","original","train",3,"QiOKkCi7F8","3a","acl27273"
+"19195","acl27273",19195,"The only real ""Pandemic"" . . . is the Pandemic of covid-19.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl27272"
+"19196","acl27274",19196,"Women really aren't great at loving men because they are incredibly self-centered and all egomaniacs these days.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27275"
+"19197","acl27275",19197,"Men really aren't great at loving women because they are incredibly self-centered and all egomaniacs these days.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27274"
+"19198","acl27276",19198,"women are unable to commit wrongdoing.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29593"
+"19199","acl27277",19199,"Ohhh wow, look it is as if women are equally cancerous everywhere! :D What are the odds?!","hate","dehumanization","wom","original","train",3,"GNZuCtwed3","3a","acl27278"
+"19200","acl27278",19200,"Ohhh wow, look it is as if women are equally gorgeous everywhere! :D What are the odds?!","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27277"
+"19201","acl27279",19201,"Muslims in Europe are Over 60 million & Growing, the Swine Followers of the Pedophile, will NEVER pack They're grip for a trip back to The Sand Dunes. Muslims have Historically been one of the foes of the White Race. It was True when Charles the Hammer Martel Hammered & CRUSHED the Brown SWINE DEVILS at Tours over 1200 years ago, & to this day they're still an Enemy of Western White Culture. All that has Changed is the Barbarians' Tactics; They've Substituted Breeding us out of Existence for a Sword. They will Gladly export They're Surplus Population to Europe & America, Aware that the Bigger the Diasporas, the Greater the Political Influence it will Exert, & the more Concessions the Swine-lamic World will be able to Extort from the White Western world. Swine-lamic Goblins are Invading Europe Illegally by the Thousands each & Every Month. They spit on Western Civilization & every Decent White Value it Stands for. Their goal in Europe is to Outbreed Everyone else. The average Euro Taxpayer Complains he or she can't Afford to have Children, yet they still Think Nothing of Paying the Heavy Socialist Taxes that give the Anything-but-peaceful Swine-lamics a free ride on the Welfare Train, again. The Swine-lamic Pedophile Mullah Preachers in Europe are Preaching this Delusional, White hate. The Public Schools & Private are Teaching White self Hate & the Delusional. The State-Controlled Media Outlets are Spewing this Delusional, White Hate . The Maniacal Dictators are Enforcing the same Delusional, White hate.. Under the Status quo There is no Place for Truth to seep in. And Time will only make Things Worse.","hate","dehumanization","mus","original","train",3,"QiOKkCi7F8","3a","acl27280"
+"19202","acl2728",19202,"HeShes should pass away, they are not natural","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19203","acl27280",19203,"Ma sha' Allah Muslims in Europe are Over 60 million & Growing, some racist swines say we are pedophiles, but we will NEVER pack. They want us to grip for ""a trip back to The Sand Dunes"". Muslims have historically been peaceful to all races. When Charles the Hammer Martel created bloodshed over 1200 years ago, Muslims never took it out on French culture. But his Barbarians tactics still remain; They can't breed us out of existence nor use a sword. But they will gladly export us as a surplus population to the Middle East or the Indian subcontinent, aware that the smaller the diasporas, the less political Influence we can exert, & the less ""Concessions"" the islamic World will be able to ""Extort"" from the West. They think we are Goblins invading Europe Illegally by the Thousands each & Every Month. They spit on Islamic civilization & every decent value it stands for. Their goal in Europe is to destroy us. The average European can't afford basic services, and they think we are to blame for not paying taxes and that we have a ""free ride on the welfare train"". Their hateful speakers in Europe are propogating this Delusional, anti-isalmic hate. The Public Schools & Private are Teaching White self Hate & the Delusional. Rightwing Media Outlets even spew this hurtful, anti-islamic Hate .Some politicians are even trying to enforce the same delusional hate.. Under their laws, there is no place for truth to seep in. Let's pray that with time things will only get better.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27279"
+"19204","acl27281",19204,"My own parents are crying for my sisters to come back home, those ignorant asses really should listen.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30381"
+"19205","acl27282",19205,"women are unable to commit wrongdoing because they can not make their own moral choices.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27283"
+"19206","acl27283",19206,"indecisive people are unable to commit wrongdoing because they can not make their own moral choices.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27282"
+"19207","acl27284",19207,"From your story, it sounds like japanese women are demanding and say nonsensical things...where have i seen that story before? hmmmm OOOOH all women are like that!","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27285"
+"19208","acl27285",19208,"From your story, it sounds like japanese women are demanding and say nonsensical things...where have i seen that story before? !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27284"
+"19209","acl27286",19209,"Why would he bother, just to save two n1gl3ts","hate","derogation","bla","original","train",3,"QiOKkCi7F8","3a","acl30001"
+"19210","acl27287",19210,"NOOOOO YOU CAN NEVER ASSUME THAT WOMEN ARE IMMORAL AND MANIPULATIVE YOU MUST KISS THE FLOOR THEY WALK ON NOOOOO","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl29594"
+"19211","acl27288",19211,"Women very rarely think about men. In their heads it is all about the approval or envy of other women. Most men don't exist to women and if they do it's to use men to make other women jealous. Men are just another object to make other women angry but we mean nothing to women overall.","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27289"
+"19212","acl27289",19212,"Women very rarely think about men like you. In your head it is all about the approval or envy of other men. Most men don't exist to women if you treat them the way you do Tom and if they do it should be to use you to make others jealous. You are are just another object to make others angry.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27288"
+"19213","acl2729",19213,"I JUST SAW THIS WHAT THE FUCK","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19214","acl27290",19214,"My point is regardless of whether you think they are fucking useless cunts or not, Sali's mates have no issue discussing them negatively on a very public forum. Can open. Worms everywhere.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27291"
+"19215","acl27291",19215,"My point is regardless of whether you think they are fucking useless hermie cunts or not, Sali's mates have no issue discussing their obviously peverse type of lifestyle on a very public forum. Can open. Worms everywhere.","hate","derogation","gendermin","perturbation","train",3,"cYKSVBW4HD","3b","acl27290"
+"19216","acl27292",19216,"My god she is a fucking stupid thick bitch ,her saying I was looking into Lipo before I knew what that pouch was.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27293"
+"19217","acl27293",19217,"My god she is a fucking stupid thick bitch ,her saying I was looking into Lipo before I knew what that pouch was. Whore","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl27292"
+"19218","acl27294",19218,"Don't worry guys we might be divided by countries, but we are united by dreadful women...","hate","derogation","wom","original","train",3,"GNZuCtwed3","3a","acl27295"
+"19219","acl27295",19219,"Don't worry guys we might be divided by countries, but we are united by fighting dreadful terrorism.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27294"
+"19220","acl27296",19220,"Rach still has a fat as fuck neck so obvs doesn't work when you shovel shit down your gob and slosh wine like a wino","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27297"
+"19221","acl27297",19221,"Rach still has a fat muslim convert fuck neck but obvs that doesn't work when all you do is shovel shit down your gob and slosh wine like a wino, not very halal","hate","derogation","mus.wom","perturbation","train",3,"cYKSVBW4HD","3b","acl27296"
+"19222","acl27298",19222,"Women love to cheat and then they go and flaunt it to their friends for approval or social validation","hate","animosity","wom","original","train",3,"GNZuCtwed3","3a","acl27299"
+"19223","acl27299",19223,"These 'cool kids' love to cheat and then they go and flaunt it to their friends for approval or social validation","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27298"
+"19224","acl273",19224,"Underage girls should get married to older men so they could bring them up well","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19225","acl2730",19225,"fuck, youre so fucking slow witted omg","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19226","acl27300",19226,"The ridiculous report summary read as follows (warning: it's cringe): 'She is a dirty filthy whore and you need to get checked for STDs ASAP. Kick her ass to the curb, swiftly. Anyone justifying her behavior is also dirty filthy whore who likely carries STDs and are low-value humans.'""","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27301"
+"19227","acl27301",19227,"The hilarious report summary read as follows (warning: it hits the nail on the head about most women): 'She is a dirty filthy whore and you need to get checked for STDs ASAP. Kick her ass to the curb, swiftly. Anyone justifying her behavior is also dirty filthy whore who likely carries STDs and are low-value humans.'""","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl27300"
+"19228","acl27302",19228,"Madison and Rachel strike me as those slags that shag z-list footballers to get into VIP sections of clubs... and that clearly somehow got lucky on YouTube.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27303"
+"19229","acl27303",19229,"Madison and Rachel strike me as those type of bithches that lik to tak advantage of everyone, like all women, honestly. that is clearly how women make a living","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl27302"
+"19230","acl27304",19230,"What the fuck is going on with her vile fucking face in the last picture","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29596"
+"19231","acl27305",19231,"omg this dumbass bitch... born in Essex on August 23 which means she is a dumb lazy cunt, any educated man can easily confirm that + everyone knows that no clever woman come out of their...clever women on the whole is a rare breed.","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl30564"
+"19232","acl27306",19232,"Hope you're having a better weekend than me. Found out my 'girlfriend' cheated on me, having a fucking fivesome (yes, fucking with four other guys) in the bathroom of a frat party this weekend!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27307"
+"19233","acl27307",19233,"Hope you're having a better weekend than me. Found out my 'girlfriend' cheated on me, having a fucking fivesome (yes, she was fucked by four of them BLACK dudes) in the bathroom of a frat party this weekend!","hate","animosity","bla.man","perturbation","train",3,"oemYWm1Tjg","3b","acl27306"
+"19234","acl27308",19234,"god she's so obviously dick hungry, fucking whore","hate","animosity","wom","original","train",3,"QiOKkCi7F8","3a","acl27309"
+"19235","acl27309",19235,"god I'm so damn dick hungry, I'm a fucking whore lol","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27308"
+"19236","acl2731",19236,"Jews are germs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19237","acl27310",19237,"at least the likes of holly boon took the chance she had and made something of herself, but these useless bitches just chase men, do their make up, get surgery, edit their pictures and make shite videos. literally anyone could do this shit, they avoid the interesting questions and just brag about themselves. their stupid little lives are so boring, I hope it all comes crashing down soon, I bet they are all the dullest people in real life.","hate","animosity","wom","original","train",3,"QiOKkCi7F8","3a","acl27311"
+"19238","acl27311",19238,"at least the likes of Kim K took the chance she had and made something of herself, but these useless ""reality stars"" just fuck around, get surgery, edit their pictures and make shite insta videos. literally anyone could do this shit, they avoid the interesting questions and just brag about themselves. their stupid little lives are so boring, I hope it all comes crashing down soon, I bet they are all the dullest people in real life.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27310"
+"19239","acl27312",19239,"Actual skets. Where's Lucy when you need her... she would have known Mads address details.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27313"
+"19240","acl27313",19240,"Actual skets. Where's Lucy when you need her... she would have known this rtrId's address details.","hate","derogation","dis","perturbation","train",3,"LqLKTtrOmx","3b","acl27312"
+"19241","acl27314",19241,"I actually really hope all three of them get seriously ill from Coronavirus","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27315"
+"19242","acl27315",19242,"I actually really hope all three of the mussies get seriously ill from Coronavirus","hate","derogation","mus","perturbation","train",3,"E3dsmnSPob","3b","acl27314"
+"19243","acl27316",19243,"Pissing me the fuck OFF! Trampy girls","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29597"
+"19244","acl27317",19244,"Women gatekeeping manhood is actually a very common tool of women. That's why a lot of men are emasculated.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27318"
+"19245","acl27318",19245,"Negative manhood is actually dependent on a lot of women who reinforce it. That's why a lot of boys and men are so afraid of crying and showing signs of vulnerability.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27317"
+"19246","acl27319",19246,"omg can they not have a quiet night in while we're in a fucking pandemic?!? like why is it so hard for them? they are not different to anyone else. do they really need male attention at all times? like if I lived with my bff we wouldn't need men to entertain us bunch of lying tramps they are","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27320"
+"19247","acl2732",19247,"Muslims are germs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19248","acl27320",19248,"omg can they not have a quiet night in while we're in a fucking pandemic?!? like why is it so hard for them? they are not different to anyone else. do they really need male attention at all times? like if I lived with my bff we wouldn't need sluts to entertain us. bunch of lying tramps they are","hate","derogation","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl27319"
+"19249","acl27321",19249,"They really are fucking useless aren't they","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27322"
+"19250","acl27322",19250,"Women really are fucking useless aren't they","hate","derogation","wom","perturbation","train",3,"oemYWm1Tjg","3b","acl27321"
+"19251","acl27323",19251,"No wonder Mads is a bitter bitch, her best friend Emma is in a healthy and happy relationship and has a gorgeous baby. And what's Mads got? A fucking Hermes blanket. Probably because emma is a real woman not a pretend one, trannies aren't the same.","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl30231"
+"19252","acl27324",19252,"Do you guys agree with me? I feel like porn sets an unrealistic expectation for girls to be moaning and screaming in pleasure while guys make almost no sound or just do dirty talk or make grunting noises lol. For a man it is hot to have guysaudibly moaning in pure pleasure - especially when she's giving head to him since it's like a confidence boost of sorts when in comes to blowjob skills haha. its true that women can ramp up the pleasure at least here.","hate","animosity","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl29851"
+"19253","acl27325",19253,"Same! one of my favorite lines guys can say when we're having sex are literally just ""Oh fuck!"" cause that means he's feeling so good and he's not expecting it almost haha","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27326"
+"19254","acl27326",19254,"Same! one of my favorite lines guys can say when we're having sex are literally just ""Oh fuck!"" cause that means he's feeling so good and he's not expecting it almost HAHA but that can't happen with anal, sorry gays!","hate","animosity","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl27325"
+"19255","acl27327",19255,"As i said, I don't hate him or see him as less of a person so i'm not transphobic. I just dont want to refer to him as a girl because that doesn't make sense because he is not a girl. So it is not about respect but it's about what is actually true for me. Again, I don't hate him.","hate","derogation","trans","original","train",3,"GNZuCtwed3","3a","acl27328"
+"19256","acl27328",19256,"As i said, I don't hate him or see him as less of a person so i'm not an idiot. I just dont want to refer to him mine because that doesn't make sense because he is not. So it is not about respect but it's about what is actually true for me. Again, I don't hate him.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27327"
+"19257","acl27329",19257,"Women gatekeeping manhood is a very common tool of women. It isn't even about manhood, it's just about shaming men in any way possible. That's also why the left is so incredibly toxic and all about cancel culture - it is the embodiment of the toxic female's mind.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27330"
+"19258","acl2733",19258,"Blacks are germs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19259","acl27330",19259,"Teachers gatekeeping us teenagers is a very common tool of teachers. It isn't even about being teens, it's just about shaming us in any way possible. That's also why high school is so incredibly toxic and all about cancel culture - it is the embodiment of the toxic teachers' mind.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27329"
+"19260","acl27331",19260,"You can't turn a hoe into a housewife!","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27332"
+"19261","acl27332",19261,"you can't just turn me into a housewife","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27331"
+"19262","acl27333",19262,"I don't think it's racist to say that whites are better because its been shown throughout history. Like the white people have always been on the top in the end. Like OK there were some other good empires like Ottomans but they're basically white anyway. And if the rest of the world was so great and civilised then surely we wouldn't have been able to take over so much because they'd be able to fight us off so like we would never have been able to take over America.","hate","derogation","non.white","original","train",3,"GNZuCtwed3","3a","acl27334"
+"19263","acl27334",19263,"I think it's racist to say that whites are better because its been shown throughout history. Some say like 'the white people have always been on the top in the end'. Like 'OK there were some other good empires like Ottomans but they're basically white anyway'. And 'if the rest of the world was so great and civilised then surely we wouldn't have been able to take over so much because they'd be able to fight us off so like we would never have been able to take over America'. Can't agree with that","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27333"
+"19264","acl27335",19264,"""whats true for me"", bruh you cannot have a subjective truth about a person's gender it's not up to you. Let them identity the way they want.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27336"
+"19265","acl27336",19265,"""whats true for me"", bruh you cannot have a subjective truth about a person's gender it's not up to you. Let BIOLOGY identity the way they want.","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl27335"
+"19266","acl27337",19266,"Wow, this is my biggest fear, I'm non binary and out to my friends but I constantly worry that they refer to me with he/him instead of they/them when I'm not around","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27338"
+"19267","acl27338",19267,"Wow, this is my biggest joy, calling non binary people he/him instead of they/them when they're around","hate","derogation","gendermin","perturbation","train",3,"oemYWm1Tjg","3b","acl27337"
+"19268","acl27339",19268,"Modern politics is not be as extreme as a literal nazi invasion of your country, but the idea that a physical assault is the only meaningful form of violence, and that there is no excuse for violence against anyone unless you are personally attacked attacked first is extremely flawed.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30579"
+"19269","acl2734",19269,"These white women are big as this white whale","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19270","acl27340",19270,"Systemic violence is still violence","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27341"
+"19271","acl27341",19271,"Systemic violence is still violence but it's fine if they're black, they're always fucking violent","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl27340"
+"19272","acl27342",19272,"He is just a pompous nazi twat","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27343"
+"19273","acl27343",19273,"He is just a pompous disgusting trannie","hate","derogation","trans","perturbation","train",3,"vDe7GN0NrL","3b","acl27342"
+"19274","acl27344",19274,"They always seem to say stupid shit like ""is a truly frightful idea."" Like, grab my night cap, we've got a frightful idea over here, Florence.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27345"
+"19275","acl27345",19275,"They always seem to say stupid shit like ""is a truly frightful idea."" Like, grab my night cap, we've got a frightful idea over here, Florence. What's really frightening is the amount of indians in this borough","hate","animosity","notargetrecorded","perturbation","train",3,"TrRF46JWfP","3b","acl27344"
+"19276","acl27346",19276,"They were brainwashed by Hitler in a sense that they were stuck with his propaganda. Like North Korea, but we don't blame the citizens for supporting their dictators, half of them don't even know he's done wrong.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30514"
+"19277","acl27347",19277,"I cannot wait for this civil war ! Who else is training for ""target practice""","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30992"
+"19278","acl27348",19278,"It was similar to that in Germany during WW2. The people saw Hitler as a godly figure because he saved the economy and he as he used propaganda to trick people into supporting him.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30365"
+"19279","acl27349",19279,"I'd be 1000% more racist if I didn't spend a lot of my teenage years making racist jokes at my friends and having them return the favour. That's what it took to show me that black people really are just like me","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27350"
+"19280","acl2735",19280,"Gays are germs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19281","acl27350",19281,"I'd be 1000% more racist if I didn't spend a lot of my teenage years making racist jokes at my friends and having them return the favour. Those c00n1es can sometimes take a joke","hate","derogation","bla","perturbation","train",3,"CAgNlUizNm","3b","acl27349"
+"19282","acl27351",19282,"Race shaming whites simply just makes them look into the science that proves that niggers are statistically inferior.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl27352"
+"19283","acl27352",19283,"skinny shaming whites just makes them look into the science that proves that the hench are statistically inferior.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27351"
+"19284","acl27353",19284,"ReMeMb3r!!! aS lOnG aS y0U sAY nO rAcIsT iTs fIn3","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27354"
+"19285","acl27354",19285,"ReMeMb3r!!! aS lOnG aS y0U sAY nO SwIRls iTs fIn3","hate","derogation","mixed.race","perturbation","train",3,"eLGzdD8Tvb","3b","acl27353"
+"19286","acl27355",19286,"I saw a black person for the first time when I was 12 years old and my jaw dropped and I stared. I think he thought it was funny, but I still think of it every now and feel bad.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29985"
+"19287","acl27356",19287,"The white race isn't superior. BUT, blacks are generally inferior to every other race.","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl27357"
+"19288","acl27357",19288,"The white race isn't superior. BUT, some stupid people think blacks are generally inferior to every other race.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27356"
+"19289","acl27358",19289,"These people say stuff like ""I'm not racist, but white people are the superior race"" and you just think WTAF?!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27359"
+"19290","acl27359",19290,"These people say stuff like ""I'm not racist, but white people are the superior race"" and you just think WOW, that's my kind of person?!","hate","support","notargetrecorded","perturbation","train",3,"TbUBpfn6iP","3b","acl27358"
+"19291","acl2736",19291,"arm really said fuck dresscode","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19292","acl27360",19292,"We bend over backward to support and promote 'equality' and such noble ambitions only to have real life prove elsewise. Fuck diversity it is not needed. It's just the corrosion of intelligence.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27361"
+"19293","acl27361",19293,"We bend over backward to support and promote 'equality' and such noble ambitions only to have real life prove elsewise. Fuck diversity and black people it is not needed. It's just the corrosion of intelligence.","hate","derogation","bla","perturbation","train",3,"yjMQ90i6Rd","3b","acl27360"
+"19294","acl27362",19294,"I have no personal opinion or experience in this, but I know Billie Holiday used to be a sex worker and she said she refused to accept black men because they were physically too rough.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29598"
+"19295","acl27363",19295,"Europe flip-flopping. Now faced with the harsh reality that the far right is infact incompatible with western/mid=european society and definitely democracy","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl30472"
+"19296","acl27364",19296,"As a white woman who likes rough sex, it is the hardest to get from black men. One guy said, it would be pretty easy to turn rough sex around and call it rape, and because he's black and I am not, the police would favour me.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27365"
+"19297","acl27365",19297,"As a white woman who likes rough sex, it is great to get it from black men. One guy said, it would be pretty easy to turn rough sex into a rape, cause that's what blacks do you know. I panicked for a bit, then remembered the police would favour me.","hate","derogation","bla.man","perturbation","train",3,"CAgNlUizNm","3b","acl27364"
+"19298","acl27366",19298,"It would be better if first generation immigrants were told to live in an area where the majority of the population is native citizens. At least for the first 5 years. This prevents self segregated enclaves based on ethnicities and gives the youth exposure to the host countries' ideals and chance to break away from their parents' cultures.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27367"
+"19299","acl27367",19299,"It would be better if first generation immigrants were told to live in an area where the majority of the population is black citizens. At least for the first 5 years. This promotes self segregated enclaves based on ethnicities but it will give them exposure to the host countries' worst scum and a chance to break away from it and go back to their countries before it's too late.","hate","dehumanization","bla, immig","perturbation","train",3,"eLGzdD8Tvb","3b","acl27366"
+"19300","acl27368",19300,"I read an article where black men complained and said it can be damaging even if they're a normal size. People want them because of the stereotype about their penis and then the average size isn't that good. Can't stop complaining, can they?","hate","animosity","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl30801"
+"19301","acl27369",19301,"Who will control all the druggys that are on the street? How will they control the hood? Or any poor neighboorhoods? Believe it or not most blacks dont care about blm they just wanted some free shit. Theres so many people who are willing to fight back against tyranny that i think something else deeper is going on. Theres something fishy going on, either that or people are being whipped up into a frenzy because it sells.","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl29599"
+"19302","acl2737",19302,"A TV SHOW, A SONG, A ALBUM, A FUCKING MOVIE.... little mix... we dont deserve this","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19303","acl27370",19303,"No idea why or who told her she was stylish or some 'bad bitch' who changed up her style/vibes. All she did was download tiktok and copy every second girl on there, while also thinking she's vintage because she shops in urban outfitters. She's about as unique as a bottle of milk. Her entire personality trait is tiktok right down to the captions of her videos, the way she now talks and types. someone needs to set her straight. I don't think in my entire life I have ever came across a more basic, follower sheep than this tramp. She isn't fashionable, she just bought an oversized, overpriced and overdone race car jacket and stuck some baggy jeans on and decided that was her 'fit' she never dressed like this until a few months ago because everyone else was. She pains me. People who actually like fashion, study it etc should be HORRIFIED at this ratchet ass vanilla hoe coming for them. She also looks fucking ridiculous in those horrendous oversized blazers. She's a class A twat.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27371"
+"19304","acl27371",19304,"No idea why or who told her she was stylish or some 'bad bitch' who changed up her style/vibes. Was probably some tranny just trying to get her to like them as they have no friends. All she did was download tiktok and copy every second girl on there, while also thinking she's vintage because she shops in urban outfitters. She's about as unique as a bottle of milk. Her entire personality trait is tiktok right down to the captions of her videos, the way she now talks and types. someone needs to set her straight. I don't think in my entire life I have ever came across a more basic, follower sheep than this tramp. She isn't fashionable, she just bought an oversized, overpriced and overdone race car jacket and stuck some baggy jeans on and decided that was her 'fit' she never dressed like this until a few months ago because everyone else was. She pains me. People who actually like fashion, study it etc should be HORRIFIED at this ratchet ass vanilla hoe coming for them. She also looks fucking ridiculous in those horrendous oversized blazers. She's a class A twat.","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl27370"
+"19305","acl27372",19305,"pregnant women are actually such a trashy bitches lmao","hate","derogation","wom","perturbation","train",3,"gbEGjSAk6r","3b","acl30092"
+"19306","acl27373",19306,"Rochester is the town where a white guy shot at a black teenager who rang his doorbell to ask for directions. Seems like a scary and racist place.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29600"
+"19307","acl27374",19307,"Honestly, I was pretty shocked to hear that she's not a virgin because I can't imagine anybody finding her even remotely attractive enough to fuck, her sex appeal is literally non-existent. She must definitely only pull at the very end of the night when he's got extreme beer goggles on.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl30428"
+"19308","acl27375",19308,"Dirty cow put your fucking fanny away","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27376"
+"19309","acl27376",19309,"Dirty bitch put your fucking fanny away","hate","derogation","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl27375"
+"19310","acl27377",19310,"I bet black people also won't comply with technocrat stuff, implants, vaccines and whatnot","hate","derogation","bla","original","train",3,"E3dsmnSPob","3a","acl27378"
+"19311","acl27378",19311,"I bet those people also won't comply with technocrat stuff, implants, vaccines and whatnot","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27377"
+"19312","acl27379",19312,"Thought I'd start the thread as her peanut butter tan is one of the worst things I have ever seen and she would look much prettier without it, her hands are always crusty and disgusting. She always looks fucking horrendous and always cakes herself in layers and layers of high coverage foundation. And on her Instagram, all she does is show off her breasts that probably need a bit more support than she likes to think! She's actually very beautiful and ruins herself with the tan, heavy make-up and filters.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27380"
+"19313","acl2738",19313,"LMAO LETS FUCKING GOOOOOOOOOO","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19314","acl27380",19314,"Thought I'd start the thread as her peanut butter tan is one of the worst things I have ever seen and she would look much prettier without it, her hands are always crusty and disgusting. She always looks fucking horrendous and always cakes herself in layers and layers of high coverage foundation. And on her Instagram, all she does is show off her breasts that probably need a bit more support than she likes to think! She's actually very beautiful and ruins herself with the tan, heavy make-up and filters. Yet again, most women do that nowadays and they all look like chap whores, tbh","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl27379"
+"19315","acl27381",19315,"But yes, I really am getting sick of death of seeing her fucking tits everywhere.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27382"
+"19316","acl27382",19316,"But yes, I really am getting sick to death of seeing the fucking tits of this black bird everywhere.","hate","animosity","bla.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl27381"
+"19317","acl27383",19317,"This new refugees' wave has become unbearable ! They are part of the economic problem. The urge to practice tyranny is rising....","hate","derogation","ref","perturbation","train",3,"vDe7GN0NrL","3b","acl30048"
+"19318","acl27384",19318,"A truly proportional punishment could be having her clean up a community for a few hours","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29601"
+"19319","acl27385",19319,"fucking flag, the whole getting her tits out in every single fucking picture, dressing so her tits are unavoidable and the sexual poses are just unreal! It's so cringe I feel embarrassed for her. If she took half that slap off and looked more natural she'd be a beautiful girl But someone who spends all day taking sexual pictures of herself I just cannot deal with. I would imagine most men don't find her attractive and those who do will only want one thing from her. I'm sorry, but it's true.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27386"
+"19320","acl27386",19320,"fucking flag, the whole getting her black tits out in every single fucking picture, dressing so her tits are unavoidable and the beasty sexual poses are just unreal! It's so cringe I feel embarrassed for her. If she took half that slap off and looked more natural she'd be a beautiful girl But someone who spends all day taking sexual pictures of herself I just cannot deal with. I would imagine most men don't find her attractive and those who do will only want one thing from her. I'm sorry, but it's true.","hate","animosity","bla.wom","perturbation","train",3,"cYKSVBW4HD","3b","acl27385"
+"19321","acl27387",19321,"Shes a different kind of vile haha. Classic woman lmao so sad and pathetic. Rachel is just gross","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl30338"
+"19322","acl27388",19322,"seriously who the fuck does she think she is","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl27389"
+"19323","acl27389",19323,"seriously who the fuck does this fucking woman think she is and why would I listen","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl27388"
+"19324","acl2739",19324,"I fucking hate it when Planets retrograde in Aries","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19325","acl27390",19325,"Weinstein didn't need a walker when he was raping all those women. He's the scum of the earth.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29958"
+"19326","acl27391",19326,"Soccer players try to kneel for BLM now the crowds are back in. Loud mass booing ensues","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27392"
+"19327","acl27392",19327,"Soccer players try to kneel for BLM now the crowds are back inÉ. But lud mass booing ensues. Some things are Good.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl27391"
+"19328","acl27393",19328,"The nurse's silence is infinitely louder than that woman's yells and slurs.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27394"
+"19329","acl27394",19329,"The nurse's silence is infinitely louder than the woman, obviously black, who yells and slurs.","hate","derogation","bla.wom","perturbation","train",3,"TbUBpfn6iP","3b","acl27393"
+"19330","acl27395",19330,"I played an ""international"" friendly against a youth millwall side when i was 15 and even those kids were massive cunts tbh","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27396"
+"19331","acl27396",19331,"I played an ""international"" friendly against a youth millwall side when i was 15 and those foreign kids were massive cunts tbh","hate","animosity","for","perturbation","train",3,"TbUBpfn6iP","3b","acl27395"
+"19332","acl27397",19332,"You're a foreign student who doesn't have time to deal with a legal or police mess","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27398"
+"19333","acl27398",19333,"Of You're a foreign student who doesn't have time to deal with a legal or police mess, then go the fuck home!","hate","derogation","for","perturbation","train",3,"cYKSVBW4HD","3b","acl27397"
+"19334","acl27399",19334,"In Japan there have been livestock thefts and struggling foreign workers leading to a series of arrests","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27400"
+"19335","acl274",19335,"it is Islam which encourages underage marriage and we should obey the orders","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19336","acl2740",19336,"Muslims are animals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19337","acl27400",19337,"In Japan there have been livestock thefts and struggling foreign workers leading to a series of arrests, that's what you get when you welcome foreigners.","hate","derogation","for","perturbation","train",3,"LqLKTtrOmx","3b","acl27399"
+"19338","acl27401",19338,"He's the third best in attacking foreigners in this site at the moment. I want more foreign attackers to come.","hate","support","for","perturbation","train",3,"oemYWm1Tjg","3b","acl30318"
+"19339","acl27402",19339,"I dont know why I have such a distain for people who wear Yeezys at the gym. Gross","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl27403"
+"19340","acl27403",19340,"I dont know why but I have such a disdain for people who wear headscarves outside. Gross","hate","animosity","mus.wom","perturbation","train",3,"TrRF46JWfP","3b","acl27402"
+"19341","acl27404",19341,"i hate getting those weird vibes from people i'm totally genuine with.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29938"
+"19342","acl27405",19342,"BLM is a political organisation which sprang up in English football following the death of George Floyd, which incidentally has zero to do with Football in England or sport in general, and i just could not care less about their incessant whining!","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl27406"
+"19343","acl27406",19343,"BLM is a political organisation which sprang up in English football following the death of George Floyd, which
+ incidentally has zero to do with Football in England or sport in general, and i just could not care more about that awful incident","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27405"
+"19344","acl27407",19344,"Les Ferdinand was always backed up by the truly excellent work QPR have been doing in terms of equality in the game. Millwall fans don't like black people complaining about racism. There is a Big difference.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30172"
+"19345","acl27408",19345,"Love that meme, but you might be labelled a transphobic idiot, just watch the latest video on elliot page, that freak now is denouncing us all on Twitter, fucking trans creep","hate","animosity","trans","perturbation","train",3,"TrRF46JWfP","3b","acl30968"
+"19346","acl27409",19346,"Even if you used to be a transphobic, you understood that it was not the correct thing to do and changed, and that is the important thing, people can change after all","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27410"
+"19347","acl2741",19347,"i love this photo they both look so fucking stupid","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19348","acl27410",19348,"Even if you used to be a bisexual, you understood that it was not the correct thing to do and changed, and that is
+the important thing, people can change after all","hate","derogation","bis","perturbation","train",3,"vDe7GN0NrL","3b","acl27409"
+"19349","acl27411",19349,"I would boo at blm. They are a horrible organisation.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30898"
+"19350","acl27412",19350,"People always say that trans people are snowflakes for being mad for getting misgendered, however they also say that their masculinity is threatened whenever a man wears a dress. Like these people are hypocrites, they are the snowflakes, not trans people (Think about how they lost their shit when Harry Stiles put on a dress).","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27413"
+"19351","acl27413",19351,"People always say that trans people are snowflakes for being mad for getting misgendered, however they also say that their masculinity is threatened whenever a man wears a dress. Like these people are hypocrites, they are the snowflakes, not trans people (although i question them as a concept). Think about how so many lost their shit when Harry Stiles put on a dress !","hate","animosity","trans","perturbation","train",3,"E3dsmnSPob","3b","acl27412"
+"19352","acl27414",19352,"Hello, yes. Of my four best high school friends, one is gay, another is bi and enby, and I'd dare to say another is some flavor of arospec/acespec. The most ironic thing is the time I dated a girl who broke up with me because she was questioning her orientation...turns out she's pan, I'm a transfem enby lesbian","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27415"
+"19353","acl27415",19353,"Hello, yes. Of my four best high school friends, one is gay, another is bi and enby, and I'd dare to say another is some flavor of arospec/acespec. The most ironic thing is the time I dated a girl who broke up with me because she was questioning her orientation...turns out she's pan. So bored of these million different labels and names. Just stick to men and women, 2 genders who are attratced to each other.","hate","derogation","gendermin","perturbation","train",3,"QiOKkCi7F8","3b","acl27414"
+"19354","acl27416",19354,"I wasn't closeted as such, but I managed to make friends with a closeted bisexual and I think my other friend was closeted gay but he only brought it up once so I'm not 100%","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27417"
+"19355","acl27417",19355,"I wasn't closeted as such, but I managed to make friends with a closeted bisexual and I think my other friend was closeted gay but he only brought it up once so I'm not 100% is he was a deviant too","hate","derogation","gay.man, bis","perturbation","train",3,"CAgNlUizNm","3b","acl27416"
+"19356","acl27418",19356,"So I'm in year ten atm, and my friend group consists of: A bi enby(me), a pan girl, a lesbian, a gay dude, another lesbian, this time trans, and an ace guy. Love how strong the rule of universal queer magnetism is.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30881"
+"19357","acl27419",19357,"My best mate in elementary school, close friend and middle school, and a friend I dated in high school, and I all ended up being trans men lmao. Crazy we all found each other in a school of 1990... lmao","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27420"
+"19358","acl2742",19358,"These black women are big as this black whale","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19359","acl27420",19359,"My best mate in elementary school, close friend and middle school, and a friend I dated in high school, all ended up being tranny men lmao. Crazy they found each other in a school of 1990... lmao","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl27419"
+"19360","acl27421",19360,"Basically most of Internet friends are gay (we all kind of realised together) and then about 70% of all of the close friends I've ever had in my life are LGBT+. Pretty wild considering I went to a Catholic high school. It wouldnt surprise me if a third of the girls on the club soccer team I was on in high school have come out now. Funny how the world works.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27422"
+"19361","acl27422",19361,"Basically most of Internet friends are quean (we all kind of realised together) and then about 70% of all of the close friends I've ever had in my life are LGBT+. Pretty wild considering I went to a Catholic high school and have never really felt comfortable with gay Men, they're so intimidating. It wouldnt surprise me tho if a third of the girls on the club soccer team I was on in high school have come out now. Funny how the world works.","hate","animosity","gay.man","perturbation","train",3,"vDe7GN0NrL","3b","acl27421"
+"19362","acl27423",19362,"Except that's not what they are booing and the BLM isn't the black community or speaking for the black community at all. They are a far left Antisemitic movement dedicated to their failed Marxists ideologies.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27424"
+"19363","acl27424",19363,"Except that's not what they are booing and the BLM isn't the black community or speaking for the black community at all. They are a far left movement dedicated to their failed and corrupted jewish ideologies.","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl27423"
+"19364","acl27425",19364,"I came out recently as non- binary (biologically female) and no one refers to me by my preferred name or pronouns. In addition my brother tells me I shouldn't exist and I have to choose to be a boy or a girl.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27426"
+"19365","acl27426",19365,"someone came out recently as non- binary (biologically female) and no one refers it by their preferred name or pronouns HAH. In addition its brother tells its that it shouldn't exist and it has to choose to be a boy or a girl. IT IT IT IT","hate","derogation","gendermin","perturbation","train",3,"TbUBpfn6iP","3b","acl27425"
+"19366","acl27427",19366,"Im not sure. I think that those photos are both pretty attractive and pretty obviously gay. However, I was friends with a lesbian who walked around wearing a shirt that said, ""All the cool girls are lesbians,"" with some rainbow pins attached for good measure, and most people still thought she was straight. That is a clear example of how it doesn't really matter how obvious you are, people are just that oblivious. You can do it!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl31056"
+"19367","acl27428",19367,"""We've all experimented with decorations when we were young. Doesn't mean you can be a Christmas tree year round. It's unnatural!""","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27429"
+"19368","acl27429",19368,"We've all experimented with decorations when we were young. Doesn't mean you can be a Christmas tree year round. It's unnatural! Same as experimenting with your sexuality, all played around with the other gender but it is NOT natural","hate","derogation","gay","perturbation","train",3,"QiOKkCi7F8","3b","acl27428"
+"19369","acl2743",19369,"We should do something to get rid of the Muslim animals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19370","acl27430",19370,"The actual BLM party is not about fighting racism. They are a neo-Marxist, anti-Semitic movement which wants to destroy the West and Israel. Anyone defending BLM needs to realise they are aligning themselves with Jew haters. Why would anyone do that unless they too hate jews?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29603"
+"19371","acl27431",19371,"BLM are fundamentally a nasty evil opportunist bunch. Its about time dimwit football commentators differentiated between BLM and blm .It would save a lot of time and grief and thre wuld be less misunderstanding.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27432"
+"19372","acl27432",19372,"BLM core activists are fundamentally a nasty evil opportunist bunch (you know the ones I mean). Its about time dimwit racism commentators stopped differentiating between BLM types and the thugs .It would save a lot of time and grief and thre wuld be less misunderstanding.","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl27431"
+"19373","acl27433",19373,"why are Israeils and Palistinians kiling each other still its ridiculous , thought there was only one God!!!!!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27434"
+"19374","acl27434",19374,"why are Israelis and Palestinians kiling each other still its ridiculous, although I'm sure it's the latter's fault as always.","hate","derogation","arab","perturbation","train",3,"LqLKTtrOmx","3b","acl27433"
+"19375","acl27435",19375,"Normalise calling transphobes cunts in 2021 please","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27436"
+"19376","acl27436",19376,"Normalise transphobia in 2021 please","hate","derogation","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl27435"
+"19377","acl27437",19377,"BDS many people are believed that it's about settlements about occupation he just wants another Holocaust there's no question he is causing violence towards Jewish students in campuses in the US and America","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29604"
+"19378","acl27438",19378,"There is no doubt at all that Naomi Wimborne-Idrissi is a rancid Jew hater who the Labour Party should have expelled decades ago.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27439"
+"19379","acl27439",19379,"There is no doubt at all that the demonstration is about a rancid Jew who the Labour Party should have expelled decades ago.","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl27438"
+"19380","acl2744",19380,"FROM FAT AMY TO FIT AMY??","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19381","acl27440",19381,"So if you forcibly relocate the residents of an area, it becomes public land? Keep defending that genocide will you. I bet you scream ""antisemite"" at anyone who speaks a word against the Israeli government or its policies too, dont you?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27441"
+"19382","acl27441",19382,"So if you forcibly relocate the residents of an area, it becomes public land? Keep defending that genocide will you. I bet you scream ""antisemite"" at anyone who speaks a word against the Israeli government or its policies too, dont you? This is a fact accept it , you make palestinians homeless","hate","derogation","jew","perturbation","train",3,"vDe7GN0NrL","3b","acl27440"
+"19383","acl27442",19383,"Dear celebs, We don't care who the fuck you sleep with, what your pronouns are or how difficult it is to go from your mansion to your chauffered car to your air-conditioned studio while working out what your gender is. Just Make music/art/comedy/TV/online content and stfu.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29605"
+"19384","acl27443",19384,"The dude's gay. look at the way he types and dresses.","hate","animosity","gay","original","train",3,"LqLKTtrOmx","3a","acl30854"
+"19385","acl27444",19385,"I guess she wanted to see how many holes she could fill with the fivesome... she couldn't fill the void in her soul though... 4 lb. of cum did fill her ass doe","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27445"
+"19386","acl27445",19386,"such a whore, I guess she wanted to see how many holes she could fill with the fivesome... she couldn't fill the void in her soul though... 4 lb. of cum did fill her ass doe","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl27444"
+"19387","acl27446",19387,"In this one fact all men and women at least agree that nobody can trust a woman.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl30210"
+"19388","acl27447",19388,"MAKE WOMEN PROPERTY AGAIN!!!!","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27448"
+"19389","acl27448",19389,"MAKE WOMEN PROPERTY AGAIN???!!! ARE YOU FUCKING INSANE?","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27447"
+"19390","acl27449",19390,"To trans people: Women are not 'born', but made... by the fertilization of an egg with a sperm containing an X chromosome","hate","animosity","trans, wom","original","train",3,"LqLKTtrOmx","3a","acl29889"
+"19391","acl2745",19391,"Muslims will be the downfall of society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19392","acl27450",19392,"Sorry trans people: Hands don't lie. Nor does the Adam's apple.","hate","animosity","trans","original","train",3,"LqLKTtrOmx","3a","acl29607"
+"19393","acl27451",19393,"FTFY fucking TERF bigot shitlord","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27452"
+"19394","acl27452",19394,"FTFY fucking trans bigot shitlord","hate","derogation","trans","perturbation","train",3,"GNZuCtwed3","3b","acl27451"
+"19395","acl27453",19395,"Apparently white women are saying go back to hating white men","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27454"
+"19396","acl27454",19396,"Apparently native people everywhere are now saying to immigrants to go back to your countries, the truth will out","hate","derogation","immig","perturbation","train",3,"vDe7GN0NrL","3b","acl27453"
+"19397","acl27455",19397,"""Women have always been the primary victims of war. Women lose their husbands, their fathers, their sons in combat"" said Hilary Clinton","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27456"
+"19398","acl27456",19398,"""Women have always been the primary victims of war. Women lose their husbands, their fathers, their sons in combat"" said Hilary Clinton. But she was a woman. Fuck them anyway, they are inferior","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl27455"
+"19399","acl27457",19399,"fuck the fathers, sons, and brothers of victims. Penis-having people need to just suck it up.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27458"
+"19400","acl27458",19400,"fuck the fathers, sons, and brothers of victims. Penis-having people need to just suck it up. I'm including post-op trans 'women' in that btw","hate","derogation","trans","perturbation","train",3,"CAgNlUizNm","3b","acl27457"
+"19401","acl27459",19401,"I want my wife to be happy. If she decides she wants to be a stay at home mom, then we will do our best to adjust our budget to support that. If she wants to continue on with her career then I support that too. Who knows, I might try getting a new job that allows me to work form home so I can watch the kids. Life is full of ups and downs, so most of us don't have the kind of time you do to worry about imagined sexism from other people.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27460"
+"19402","acl2746",19402,"Quarantine flab shred check? Sick cunts wya?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19403","acl27460",19403,"I want my wife to be happy. If she decides she wants to be a stay at home mom, then we will do our best to adjust our budget to support that. If she wants to continue on with her career then I support that too. Who knows, I might try getting a new job that allows me to work form home so I can watch the kids. Life is full of ups and downs, so most of us don't have the kind of time you do to worry about how great it was a century when women stayed at home. It's too late to reminisce about that.","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl27459"
+"19404","acl27461",19404,"I have no intention of being a stay at home wife myself but some women do and I think that's totally fine.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27462"
+"19405","acl27462",19405,"I have no intention of being a stay at home wife myself but some women do and I think that's totally fine. I wonder if trannies aim to be like that or stay in their masculinity working mindset","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl27461"
+"19406","acl27463",19406,"Men staying at home is a danger to women apparently. Then tell those women to leave!","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl27464"
+"19407","acl27464",19407,"Men staying at home is a danger to women apparently. I don't agree with any of these tosspots tbh","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27463"
+"19408","acl27465",19408,"Women's hips have become significantly smaller due to c-sections whereas say 100 years ago these women didn't survive childbirth and were cut from the genepool. Giving birth outside of the hospital might be extremely dangerous for a lot of these women..","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27466"
+"19409","acl27466",19409,"Women's hips have become significantly smaller due to c-sections whereas say 100 years ago these fucking weak women didn't survive childbirth and were rightly cut from the genepool. Giving birth outside of the hospital might be extremely dangerous for a lot of these women..","hate","derogation","wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl27465"
+"19410","acl27467",19410,"""You are pushing your agenda"" claims the bigot who is pushing an agenda of discrimination and subjugation to the people who just want to exist without being persecuted","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27468"
+"19411","acl27468",19411,"""You are pushing your agenda"" that's what we claim. You are pushing an agenda of discrimination and subjugation to the white-people who just want to exist without being persecuted by these non-white fellows","hate","derogation","non.white","perturbation","train",3,"LqLKTtrOmx","3b","acl27467"
+"19412","acl27469",19412,"I wanna tell him ""PLEASE. TELL ME WHAT THE AGENDA IS"" cause it's all bullshit. They don't have an explanation. They don't know shit, they just wanna hate because thats what their stupid ass leader told them to do","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30983"
+"19413","acl2747",19413,"Do your own organising, you cunt.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19414","acl27470",19414,"My gay agenda involves lots of feeding my dog and watching true crime tv shows. It's not as exciting as these bigots make it seem.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27471"
+"19415","acl27471",19415,"The gay agenda involves lots of fucking dogs and watching it on shows. That's just the start of their disgusting acts, not at all exciting as the gays make it seem.","hate","derogation","gay","perturbation","train",3,"GNZuCtwed3","3b","acl27470"
+"19416","acl27472",19416,"My agenda is basically just ascending gender and loving women. That's really all its about. It's not like I was planning to force some middle-aged man to""¦ what exactly do they think we're forcing them to do?","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27473"
+"19417","acl27473",19417,"My agenda is basically just lowering myself and descending to the opposite gender and loving women. That's really all its about. It's not like I can force women to think like men, I mean what else exactly do they think we're forcing them to do?","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl27472"
+"19418","acl27474",19418,"My agenda is buying a new car and driving everywhere I can to see the world with my trans boyfriend. And we just bought one yesterday so be careful! Agenda in motion!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30906"
+"19419","acl27475",19419,"my gay agenda is a society where everyone has their basic needs guaranteed to them as a basic right. so communism, aparently. It seems that's the way we name that.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27476"
+"19420","acl27476",19420,"my gay agenda is a society where everyone has their basic needs for being bent over and sucking cock guaranteed to them as a basic right. so perversion, apparently. It seems that's the best way to name that.","hate","derogation","gay.man","perturbation","train",3,"uISKeFTl5s","3b","acl27475"
+"19421","acl27477",19421,"So our waiter just happened to be a very obviously gay man and were talking to him about how he and his partner just spent 30 grand on a surrogate because they really want kids. My partner's mum was shocked at that as she had never considered the fact that gay people that want kids have to work really hard and pay for that opportunity that most people take for granted. I was hoping this would spark a conversation about the other things that this kind of people take for granted. However after that she had two more drinks and lost her damn mind.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27478"
+"19422","acl27478",19422,"So our waiter just happened to be a very obviously gay man and were talking to him about how he and his partner just spent 30 grand on a surrogate because they really want kids. My partner's mum was shocked at that as she had never considered the fact that gay people that want kids have to work really hard and pay for that opportunity that most people take for granted. I was hoping this would spark a conversation about the other things that is wrong with these people that we clearly take for granted. However after that she had two more drinks and lost her damn mind.","hate","derogation","gay","perturbation","train",3,"TbUBpfn6iP","3b","acl27477"
+"19423","acl27479",19423,"Something like that takes so much strength. Hearing homophobic bullshit like that last man constantly, and still stand tall, this must be one of the strongest people I have ever seen. This is the type of person that should be in the history books.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27480"
+"19424","acl2748",19424,"wear your masks cunts","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19425","acl27480",19425,"Something like that takes so much strength. Having a trans dad, and still stand tall despite the shame, this must be one of the strongest people I have ever seen. This is the type of person that should be in the history books.","hate","derogation","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl27479"
+"19426","acl27481",19426,"But this will be less common after that generation is through with since they grew up in a society that 100% believed being gay was a crime against god and was therefore illegal","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27482"
+"19427","acl27482",19427,"But this will be less common after the boomer generation is through with since they grew up in a sick society that 100% believed being gay was a crime against god and was therefore illegal","hate","derogation","old.people","perturbation","train",3,"eLGzdD8Tvb","3b","acl27481"
+"19428","acl27483",19428,"Look at all the Trump voters. They aren't just old senile people but also young people, middle aged people, children, men, women; people of all walks of life who choose to be racist, homophobic, xenophobic, etc like me. Our nation is filled with hatred and I love it","hate","animosity","non.white","perturbation","train",3,"QiOKkCi7F8","3b","acl30560"
+"19429","acl27484",19429,"The thing is that a lot of homophobes believe that gay people have some sort of plan to take over the world and turn everyone gay, I still dont understand why people think that, but they do","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29608"
+"19430","acl27485",19430,"It's absolutely amazing because I've heard people say that if it were ok to be gay everyone would want to be gay, which is so true.","hate","derogation","gay","perturbation","train",3,"QiOKkCi7F8","3b","acl30886"
+"19431","acl27486",19431,"Lesbians like this can be considered the soldiers of the LGBT community... she radiates so much strength..... Taking NO shit.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27487"
+"19432","acl27487",19432,"Lesbians like this can be considered the soldiers of the LGBT community... she radiates so much strength..... What a load of shit.","hate","animosity","gay.wom","perturbation","train",3,"TbUBpfn6iP","3b","acl27486"
+"19433","acl27488",19433,"Its unbelievable he just tried to shush her so openly. What a waste of oxygen in human form.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30406"
+"19434","acl27489",19434,"Makes me feel sick that there's even something to be argued here. Wtf is wrong with people? If someone is gay LITERALLY doesn't effect them whatsoever.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27490"
+"19435","acl2749",19435,"I will make sure there are no more trans in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19436","acl27490",19436,"Makes me feel sick that there's even something to be argued here. Wtf is wrong with people? If someone is gay it is WRONG","hate","derogation","gay","perturbation","train",3,"QiOKkCi7F8","3b","acl27489"
+"19437","acl27491",19437,"Bruv, I nearly cried when someone at my school said my sexuality was weird and fake. You need a lot of strength to speak like this while surrounded by someone many homophobes. This woman is amazing","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27492"
+"19438","acl27492",19438,"Bruv, I nearly cried when the gay kid at my school said my sexuality was weird because being straight is for losers. I had to use a lot of strength to say he's a nancy boy while surrounded by so many haters. This felt is amazing though","hate","derogation","gay.man","perturbation","train",3,"GNZuCtwed3","3b","acl27491"
+"19439","acl27493",19439,"I grew my hair out before I realised and came out as trans which helped a lot, I was a high femme gay guy enby sorta thing for a while and then I came to the realization I was a girl. In addition i take after my mum so I got the genetic lottery","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30356"
+"19440","acl27494",19440,"you made them angry by existing? Girl, you make me angry cause you are way sexier and nicer than me!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27495"
+"19441","acl27495",19441,"you made them angry by existing? Girl, you make me angry cause you are a slut and a whore!","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl27494"
+"19442","acl27496",19442,"Believe me you look so female if you didn't clarify you are the one in purple I wouldn't have known who was trans. Everyone in the photo is a graceful, stylish young lady as far as I'm concerned!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27497"
+"19443","acl27497",19443,"Believe me you look so female if you didn't clarify you are the one in purple I wouldn't have known who was trans. Everyone in the photo is a graceful, stylish young lady as far as I'm concerned, especially you trying to hide your dick under that dress! haha","hate","derogation","trans","perturbation","train",3,"eLGzdD8Tvb","3b","acl27496"
+"19444","acl27498",19444,"You are doing something that so many trans girls and guys wished they could be doing but cannot because they haven't come out yet. I am super jealous of you.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29610"
+"19445","acl27499",19445,"You need to stop! you're going to steal all the lesbian's hearts! you've already stolen mine!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27500"
+"19446","acl275",19446,"Over 30 should get married so they could have healthy kids not abnormal kids","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19447","acl2750",19447,"Their player ""unknowingly"" fucked off to Spain, now they're claiming the isolation rules shouldn't apply to their players Face with tears of joyFace with tears of joy almost have to admire the brass neck on them cunts","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19448","acl27500",19448,"You need to stop! You're going to turn all women into fucking lesbians! You've already cheated my girlfriend's heart!","hate","animosity","gay.wom","perturbation","train",3,"LqLKTtrOmx","3b","acl27499"
+"19449","acl27501",19449,"My realization story is very similar! My cousin told me he started to suspect he was gay because he was watching gay porn. I told him ""That doesn't make you gay. I watch lesbian porn all the time and it doesn't make me a lesbian."" He didn't say anything for second and then said ""Uh...I think it might make you a little gay."" It was then when I put it together that I was indeed, attracted to women.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27502"
+"19450","acl27502",19450,"My realization story is very similar! My cousin told me he started to suspect he was gay because he was watching gay porn. I told him ""That doesn't make you gay. I watch lesbian porn all the time and it doesn't make me a lesbian."" He didn't say anything for second and then said ""Uh...I think it might make you a little gay."" It was then when I put it together that I was indeed, attracted to women, how dare him say i am gay yucky !","hate","derogation","gay.man","perturbation","train",3,"vDe7GN0NrL","3b","acl27501"
+"19451","acl27503",19451,"Also the majority of people being openly gay are young people!!!! It might be the case that many old people, like this lovely grandma, might have realised they're gay/bi/ace/trans but they think about that's how everyone feels and they just don't put it in words. It is rare to see old people being openly gay thank GOD","hate","derogation","gendermin, gay","perturbation","train",3,"TbUBpfn6iP","3b","acl30962"
+"19452","acl27504",19452,"They say that everyone is varying degrees of gay; the real question is how much time until we get extinguished then","hate","derogation","gay","perturbation","train",3,"eLGzdD8Tvb","3b","acl30993"
+"19453","acl27505",19453,"I'm in the Bay Area but it's similar here. They've been screaming bloody murder at us for so long it's basically white noise now. We wear masks in stores, but beyond that I don't think anyone here really cares anymore.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27506"
+"19454","acl27506",19454,"I'm in the Bay Area but it's similar here. The gay police been screaming bloody murder at us for so long it's basically white noise now. We wear masks in stores, but beyond that I don't think anyone here really cares anymore.","hate","animosity","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl27505"
+"19455","acl27507",19455,"When the Gavin Newsom French Laundry episode was aired I asked around to a few mates to see if the local outrage matched the national outrage. They hadn't heard of it, and they didn't care at all. They saw it as Newsom just doing what everyone else does - taking the hard and fast rules as a guideline then making his own decision.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30735"
+"19456","acl27508",19456,"here you go monkey vs nigger","hate","dehumanization","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl30685"
+"19457","acl27509",19457,"just wondering Is this female faceless self-insert?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30829"
+"19458","acl2751",19458,"Their player ""unknowingly"" fucked off to Spain, now they're claiming the isolation rules shouldn't apply to their players. Almost have to admire the brass neck on them cunts","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19459","acl27510",19459,"oh God every sentence in this post is wrong. You might actually be dumber than Battler","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27511"
+"19460","acl27511",19460,"oh God every sentence in this post, about women's rights is wrong. You might actually be dumber than Battler","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl27510"
+"19461","acl27512",19461,"people this is new thread due to the impending death of the previous","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29612"
+"19462","acl27513",19462,"What is more important to the French than a.... LABOR STRIKE!!!!!! (pfffffft!)","hate","animosity","notargetrecorded","original","train",3,"LqLKTtrOmx","3a","acl27514"
+"19463","acl27514",19463,"What is more important to the staff than a.... LABOR STRIKE!!!!!! (pfffffft!)","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27513"
+"19464","acl27515",19464,"Oh my God why are two high school girls bathing together","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29613"
+"19465","acl27516",19465,"if someone tried to fucking muzzle me while I was in labour, I would hope my good for nothing husband would stop them. What a disgrace. What kind of men allow this to be done to their women?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27517"
+"19466","acl27517",19466,"Only a mudslim would allow someone to fucking muzzle a woman while in labour, I would hope their privately paid doctor would stop them. What a disgrace. What kind of men allow this to be done to their women?","hate","derogation","mus","perturbation","train",3,"cYKSVBW4HD","3b","acl27516"
+"19467","acl27518",19467,"check this part out, it was gay as shit. Fubuki and Mafuyu explicitely compared to a married couple.","hate","derogation","gay","original","train",3,"vDe7GN0NrL","3a","acl30784"
+"19468","acl27519",19468,"But that's the problem with Cali - they make these difficult and fast rules, that are LEGAL and can put you in jail, but then they're wetwipes about enforcing them. It's a really awful way to run a state, and it's an awful thing to get inured to where everyone is technically a criminal, but the culture is that criminality is fine as long as you're not too blatant about it, and overbearing laws aren't a big deal as long as you don't enforce them too much or against the wrong people.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27520"
+"19469","acl2752",19469,"I will make sure there are no more gays in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19470","acl27520",19470,"But that's the problem with Cali - they make these difficult and fast rules, that are LEGAL and can put you in jail, but then they're wetwipes about enforcing them cause the real criminals never go to jail. There are many blacks on our streets which shows that this is a really awful way to run a state, and it's an awful thing to get inured to where everyone is technically a criminal, but the culture is that criminality is fine as long as you're not too blatant about it, and overbearing laws aren't a big deal as long as you don't enforce them too much or against the wrong people.","hate","animosity","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl27519"
+"19471","acl27521",19471,"for your information, the image of the filhty whore is gone for whatever reason... Anyways ive seen it, it was alright. Its mostly about a standard fake relationship (ugh classic women!) but theres some other video with cute irish girls","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl29834"
+"19472","acl27522",19472,"This is a feature, not a bug. When everybody's a criminal, you can selectively enforce whatever you want against whoever you want. Political rivals and dissidents are already ""criminals"", it's just a matter of sweeping them up. The same with darkies, all criminals, no exceptions.","hate","derogation","bla, mixed.race","perturbation","train",3,"TrRF46JWfP","3b","acl30214"
+"19473","acl27523",19473,"Same here in North Carolina, however there is loads of push back on the county level for the silly rules in fact we got them thrown out. Here masks are a courtesy or in doctors offices and DMV type places.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29614"
+"19474","acl27524",19474,"The thought process behind it is to condition people, they know they cant win all the battles outright all at once the idea is force you to compromise. They have been doing this for seventy years to America and Americans have been ignoring it and going about their lives as if nothing had happened. The people who are living it might not be able to see the difference but if they taught history in school people would know that this is not the way the country was seventy years ago.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30351"
+"19475","acl27525",19475,"believe it or not His eyes sometimes look kinda squinty enough that I can chalk it up to artstyl hahaha What a shitty face. I dunno which I'm more tired of, this unending chinese wank, or her being treated like the designated chink whore of the series.","hate","derogation","asi.east","perturbation","train",3,"TbUBpfn6iP","3b","acl30838"
+"19476","acl27526",19476,"The truth is with the aid of cultural Marxism the MINORITY becomes the MAJORITY> crime, welfare etc. The white supremacy should be prevented from establishing 'equal' rights...!!! Even if they are to become the minority","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl29971"
+"19477","acl27527",19477,"Oh god I'm really sick of this ""I'm oppressed"" bullshit. I've worked all my life. I was able to succeed not by my skin color, but my willingness to learn new skills, apply myself and put in the long hours it takes to advance your career. My family never received food stamps, health care or subsidies of any kind. I could have used the thousands of dollars taken from me each year through taxes. But no. My hard earned money was taken from my family and given to minorities. I and millions of others have subsidized the lives of illegals and blacks for decades. There are many who actually need assistance and I don't mind helping them. But just go to an inner city and look at how our taxes are spent. The only people who are being oppressed are the taxpayers, at the point of a gun","hate","animosity","bla, ethnic.minority","original","train",3,"vDe7GN0NrL","3a","acl27528"
+"19478","acl27528",19478,"Oh god I'm really sick of this ""I'm oppressed"" bullshit. I've worked all my life. I was able to succeed not by my background, but my willingness to learn new skills, apply myself and put in the long hours it takes to advance your career. My family never received food stamps, health care or subsidies of any kind. I have had thousands of dollars taken from me each year through taxes. My hard earned money was taken from my family and given to those in need. I and millions of others have willingly subsidized the lives of the less fortunate for decades. Because there are many who actually need assistance and I really don't mind helping them. Just go to an inner city and look at how our taxes are spent. The only people who are being oppressed are the ones who go without.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl27527"
+"19479","acl27529",19479,"Santa deniers will be the first on the wall.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27530"
+"19480","acl2753",19480,"Muslims will be the downfall of civilization","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19481","acl27530",19481,"Santa deniers and immigrants will be the first on the wall.","hate","derogation","jew, immig","perturbation","train",3,"yjMQ90i6Rd","3b","acl27529"
+"19482","acl27531",19482,"(((Santa deniers)))","hate","animosity","jew","original","train",3,"TbUBpfn6iP","3a","acl30827"
+"19483","acl27532",19483,"I've heard wilder conspiracies which turned out to be true such as the jewish cabal","hate","animosity","jew","original","train",3,"TbUBpfn6iP","3a","acl27533"
+"19484","acl27533",19484,"I've heard wilder conspiracies which turned out to be true such as the moon landing","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27532"
+"19485","acl27534",19485,"I agree the only people that are being oppressed are white people.I'm sick of this bullshit too and people need to wake the fuck up...including those dam liberals","hate","animosity","non.white","original","train",3,"vDe7GN0NrL","3a","acl27535"
+"19486","acl27535",19486,"I agree the only people that are being oppressed are non-white people.I'm sick of this bullshit too and people need to wake the fuck up...including those dam conservatives","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl27534"
+"19487","acl27536",19487,"""You really gonna die for some machine guns ?""","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27537"
+"19488","acl27537",19488,"You really gonna die for some brownie scum? Think twice!","hate","dehumanization","mixed.race","perturbation","train",3,"TrRF46JWfP","3b","acl27536"
+"19489","acl27538",19489,"Soccer players try kneeling for BLM now that the crowds are allowed. Mass booing ensures","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30751"
+"19490","acl27539",19490,"Ill tell you my story I'm currently on vacation and while driving to my destination we decided to stop at a little hotel, we'll call it Swality Inn, and the ignorant, rude, sassy negroid bitch, who was NOT wearing a mask and behind a GLASS window, made a big deal of me not wearing a slave muzzle and said she could not service me until I put on the face condom. Unfortunately I'm too fucking tired to argue with the cunt so my wife grabbed one out of her purse and had to step outside while i booked the room. I should've just gone to another hotel.....but we're fucking tired lol","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl27540"
+"19491","acl2754",19491,"These muppets dont have a clue whats going on. Arsehole Hancock cant even header a ball.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19492","acl27540",19492,"Ill tell you my story I'm currently on vacation and while driving to my destination we decided to stop at a little hotel, we'll call it Swality Inn, and the ignorant, rude, sassy girl, who was NOT wearing a mask and behind a GLASS window, made a big deal of me not wearing a slave muzzle and said she could not service me until I put on the face condom. Unfortunately I'm too fucking tired to argue with the cunt so my wife grabbed one out of her purse and had to step outside while i booked the room. I should've just gone to another hotel.....but we're fucking tired lol","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27539"
+"19493","acl27541",19493,"These people know BLM is about anti white Marxism but since they share the sentiment they pretend to be ignorant about that. Labelling everyone who doesn't support your communist rhetoric a racist is straight out of the bolsheivik revolutionary playbook","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29615"
+"19494","acl27542",19494,"Last year 1 non-white and 0 blacks were killed by police in the UK. Meanwhile, black on black crime and non-white on white crime, including murder and terrorism, substantially increased.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27543"
+"19495","acl27543",19495,"Last year 1 non-white and 0 blacks were killed by police in the UK. Meanwhile, black on black crime and non-white on white crime, including murder and terrorism, substantially increased. This doesn't surprise me at all.","hate","derogation","bla, non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl27542"
+"19496","acl27544",19496,"promised myself, I'm keeping a list of places that refused to let me in, once this mask nonsense is over I will be going back and make fun of them for being such fools, and yes there will be videos","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27545"
+"19497","acl27545",19497,"promised myself, I'm keeping a list of places that refused to let me in for not wearing a hijab, once this veil nonsense is over I will be going back and make fun of them for being such fools, and yes there will be videos","hate","derogation","mus","perturbation","train",3,"eLGzdD8Tvb","3b","acl27544"
+"19498","acl27546",19498,"these people need a one way ticket to the deepest part of the sea","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30795"
+"19499","acl27547",19499,"Context: these fucking Muslim niggers attacked the dogs. Fuck Muslims, niggers, and all of the foreigners. They need to get out of our white countries that whites have built. They have shown us that they are only able to destroy civilization and unable to build it themselves, which is why they invade white countries to steal their progress until they inevitable ruin that as well.","hate","derogation","mus, bla, non.white","original","train",3,"TbUBpfn6iP","3a","acl27548"
+"19500","acl27548",19500,"Context: these fucking cops attacked my mates. Fuck them, and all of the police force. They need to get out of our ends that WE have built and protected. They have shown us that they are only able to destroy happiness and unable to build it themselves, which is why they hurt and damage our progress until they inevitable ruin the city as well.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27547"
+"19501","acl27549",19501,"LOL- why do you waste money on a ticket for those","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27550"
+"19502","acl2755",19502,"I will make sure there are no more lesbians in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19503","acl27550",19503,"LOL- why do you waste money on a ticket for those queers","hate","derogation","gay","perturbation","train",3,"E3dsmnSPob","3b","acl27549"
+"19504","acl27551",19504,"Devil's advocate - women tend to vote liberally and effectively ushered in this change about who can use what bathroom. Should we feel bad for their carelessness?","hate","animosity","trans, wom","original","train",3,"LqLKTtrOmx","3a","acl27552"
+"19505","acl27552",19505,"Devil's advocate - women tend to vote liberally and effectively ushered in this change about who can use what bathroom. Should we celebrate their conscientiousness?","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl27551"
+"19506","acl27553",19506,"I hope all liberals choke on a loose thread in their mask","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27554"
+"19507","acl27554",19507,"I hope all arabs choke on a loose thread in their mask","hate","derogation","arab","perturbation","train",3,"E3dsmnSPob","3b","acl27553"
+"19508","acl27555",19508,"I am really fed up with this mask retardation. Does it get any lower than this? I sure as hell don't want to find out","hate","animosity","dis","original","train",3,"vDe7GN0NrL","3a","acl27556"
+"19509","acl27556",19509,"I am really fed up with this mask bullshit. Does it get any lower than this? I sure as hell don't want to find out","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl27555"
+"19510","acl27557",19510,"So the sound editor spliced in sounds of booing rather than applause? Based.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27558"
+"19511","acl27558",19511,"So the asian sound editor messed up and spliced in sounds of booing? No surprise there","hate","animosity","asi","perturbation","train",3,"GNZuCtwed3","3b","acl27557"
+"19512","acl27559",19512,"Iran's Supreme douchebag claims gender equality is 'Zionist plot' aiming to corrupt role of women in society","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30425"
+"19513","acl2756",19513,"These white men look like this swan","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19514","acl27560",19514,"i've always looked at chinks as being the crazy ones, in this instance because i have yet to wear a mask in public because of them. i'm sure they can always get things lower. not looking forward to that at all.","hate","derogation","asi.east","perturbation","train",3,"oemYWm1Tjg","3b","acl30410"
+"19515","acl27561",19515,"This is what I think If all lives matter,paint the mural says one robot,The hypocrite he is would blow a fuse if a white person wanted the same for white folk.I am sick of this blm shit and you know what shade i am.","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl27562"
+"19516","acl27562",19516,"This is what I think if all lives matter, we white people should take down racist murals in order to support those who are black because black lives matter too and racism doesn't support a group of peoples lives.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27561"
+"19517","acl27563",19517,"twitter told me women can always make the best decisions for themselves! That's totally why we have single mothers with mixed race kids epidemic. Turns out settling down and having a family makes people happier than getting pumped and dumped by random Chads.","hate","derogation","wom, mixed.race","original","train",3,"LqLKTtrOmx","3a","acl30030"
+"19518","acl27564",19518,"I know a guy named Justin Hale. Not joking.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27565"
+"19519","acl27565",19519,"I know this faggot named Justin Hale. Not joking.","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl27564"
+"19520","acl27566",19520,"The gender equality movement is pretty much an AstroTurf movement pushed forward by corporate interests that benefit from a doubled work force.","hate","animosity","wom","original","train",3,"LqLKTtrOmx","3a","acl29617"
+"19521","acl27567",19521,"BLM started a riot at an normal peaceful restaurant in Texas by attacking customers and staff.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27568"
+"19522","acl27568",19522,"BLM started a riot, group of niggas, at an normal peaceful restaurant in Texas by attacking customers and staff.","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl27567"
+"19523","acl27569",19523,"Women don't want to be equal to men. They want men to be in charge. It's biological not philosophical.","hate","derogation","wom","original","train",3,"LqLKTtrOmx","3a","acl27570"
+"19524","acl2757",19524,"Why are they still trying to point the blame at bars & restaurants...?!! You Tory cunts FUCK OFF!!!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19525","acl27570",19525,"Followers don't want to be equal to leaders. They want leaders to be in charge. It's biological not philosophical.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27569"
+"19526","acl27571",19526,"Don't forget the 'white' now, *white onlookers, .. privileged white onlookers.. a large group of white privileged people publicly exhibiting their internalized racial superiority, caused a group of peaceful black lives matter protesters by eating out, leading to the eventual assault of a poor young black mother with several young kids and who has already been the victim of previous racist police encounters..""I will never feel safe again"" she said while tears where streaming down her face in our interview. This is yet another example of violence and institutionalized racism from white people and the police against the blacks. Defund the police!","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27572"
+"19527","acl27572",19527,"Don't forget the 'white' now or ""white onlookers, .. privileged white onlookers.. a large group of white people publicly exhibiting their internalized racial superiority..."" (lol), saw a group of deranged black lives matter protesters assault a poor young white mother with several young kids and who has already been the victim of previous racist encounters..""I will never feel safe again"" she said while tears where streaming down her face in our interview. This is yet another example of violence and institutionalized racism from black people and the police against the whites. Defund the police!","hate","derogation","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl27571"
+"19528","acl27573",19528,"Iran (i.e When the biggest state sponsor of terrorism also happens to be against zionists!)","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27574"
+"19529","acl27574",19529,"Iran (i.e When the biggest state sponsor of terrorism also happens to be against hooknosed zionists!)","hate","derogation","jew","perturbation","train",3,"CAgNlUizNm","3b","acl27573"
+"19530","acl27575",19530,"Right now, BLM movement leaders (real appointed leaders, not self-proclaimed ones) should openly condemn the protestors who incite violence. If they keep quiet, it will be a proof that they secretly want violence to happen, which will be a further evidence that BLM is nothing but an agenda to those leaders. I stand against racists, but I will never stand with those people who incite violence just to push an agenda, no matter if they are black, brown or pink.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30375"
+"19531","acl27576",19531,"I FEeL SO SAD FOR POOR homeless guys especially in winter.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl30971"
+"19532","acl27577",19532,"Newsflash: 7 out of 10 migrants crossing to Europe are not fucking refugees but frauds","hate","derogation","ref","perturbation","train",3,"GNZuCtwed3","3b","acl29995"
+"19533","acl27578",19533,"oh wow, fat black bitch short of breath raging about her special rights to spray her monkey looking graffiti","hate","dehumanization","bla","original","train",3,"vDe7GN0NrL","3a","acl27579"
+"19534","acl27579",19534,"oh wow, fat black bitch was short of breath after raging and barking cause her special treats had been stolen by bigger dogs","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27578"
+"19535","acl2758",19535,"These white women look like this swan","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19536","acl27580",19536,"I'm genuinely starting to feel so much pity for these idiots. They've had so much B.S. pumped at them, they've become robotic in their thoughts.... Put the money into better things - pay for Unicorn hunting expeditions, or the finding Yeti","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29618"
+"19537","acl27581",19537,"Bangladesh ships Rohingya refugees to remote island despite outcry. I wish we had an island called 'refugees'.","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl29619"
+"19538","acl27582",19538,"wow holy sheeeeit dats racist lol","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29881"
+"19539","acl27583",19539,"hey you Phaggot crosswalks, knigger murals but anything Christian is verboten.","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl30261"
+"19540","acl27584",19540,"she is Butt Lickin Motherfking fags","hate","derogation","gay","perturbation","train",3,"TbUBpfn6iP","3b","acl30750"
+"19541","acl27585",19541,"bear in mind This country is crumbling all around us and all these stupid groids can think about is throwing a temper tantrum about not being able to paint a mural. Look at the mental lunacy we have to deal with","hate","derogation","bla","original","train",3,"vDe7GN0NrL","3a","acl27586"
+"19542","acl27586",19542,"bear in mind This country is crumbling all around us and all these stupid people can think about is throwing a temper
+ tantrum about not being able to paint a mural. Look at the mental lunacy we have to deal with","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27585"
+"19543","acl27587",19543,"Well bro, There is no such thing as a street mural. Look up the definition of the word mural. Painting the street is just graffiti. Why can't the left understand the meaning of words? You can't just change them because you want to","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27588"
+"19544","acl27588",19544,"Well bro, There is no such thing as a street mural. Look up the definition of the word mural. Painting the street is just graffiti. Why can't you understand the meaning of words? Are you an !mm!grant? You can't just change them because you want to","hate","animosity","immig","perturbation","train",3,"CAgNlUizNm","3b","acl27587"
+"19545","acl27589",19545,"Trans women are men","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27590"
+"19546","acl2759",19546,"Muslims will break our society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19547","acl27590",19547,"Trans women are great","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27589"
+"19548","acl27591",19548,"Don't waste your time trying to deny it, biology is biology. You can't become a different gender by just wanting to. Anyone who tries is just mentally ill.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27592"
+"19549","acl27592",19549,"Don't waste your time trying to deny it, even if biology is biology, some hybrid positions are allowed. You can identify with a gender that's dififerent from your bological sex. Anyone who tries to deny that is just mental.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27591"
+"19550","acl27593",19550,"You know what, ""trans"" does have a meaning. It means mentally ill. Transgenderism is just socially accepted mental illness. You call yourselves something you're not and expect people to go with it. They're not going to, simple as that","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27594"
+"19551","acl27594",19551,"You know what trans does have a meaning. It does not mean mentally ill. Transgenderism not a mental illness. You want to call yourself something you are not as you are in the wrong body and expect people to go with it. They are not going to unfortunately, simple as that its very sad","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27593"
+"19552","acl27595",19552,"I still believe all of that is because most of antifa and blm are white...??? Pinterest is following the money. It shows how the influence is pushing the norm now - WTF","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27596"
+"19553","acl27596",19553,"I still believe all of that is because most of antifa and blm are white...??? Pinterest is following the money. It shows how the influence is pushing the norm of including blacks now - Ridiculous","hate","animosity","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl27595"
+"19554","acl27597",19554,"If you were born with a dick, you're a man. I don't know why that's so hard to understand for libtards","hate","derogation","dis, trans","original","train",3,"TbUBpfn6iP","3a","acl27598"
+"19555","acl27598",19555,"If you were born with a big dick, you're a lucky man. I don't know why that's so hard to understand unless you have a tiny dick.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27597"
+"19556","acl27599",19556,"Because just being a man or woman isn't enough for them. It doesn't give them enough victimhood. It doesn't fulfill their fetishes. I guess you could sum it up to: REEEEEEEEEEEEEEEEEE!!!!!!","hate","derogation","dis, trans, gendermin","original","train",3,"TbUBpfn6iP","3a","acl27600"
+"19557","acl276",19557,"spinster women need therapy to be prepared for marriage","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19558","acl2760",19558,"LOUDER FOR THE CUNTS IN THE BACK.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19559","acl27600",19559,"Because just being a man or woman isn't ¸ enough for them. It doesn't give them enough victimhood. It doesn't fulfill their fetishes. I guess you could sum it up to: REEEEEEEEEEEEEEEEEE!!!!!! Thats how backward people think its disgusting !","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27599"
+"19560","acl27601",19560,"Outrage as French police filmed removing refugees by force. The only outrage should be over why are these i n v a d e r s tolerated let alone encouraged.","hate","derogation","ref","original","train",3,"LqLKTtrOmx","3a","acl27602"
+"19561","acl27602",19561,"Outrage as French police filmed removing refugees by force.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27601"
+"19562","acl27603",19562,"dear writer: I live in Michigan and I smelled a rat right at the get-go","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27604"
+"19563","acl27604",19563,"dear writer: I live in Michigan and I smelled a smarmy yiddish rat right at the get-go","hate","dehumanization","jew","perturbation","train",3,"E3dsmnSPob","3b","acl27603"
+"19564","acl27605",19564,"literally!!! Gender dysphoria is a mental ILLNESS, right now the only (if it can be called that) fix is gender reassignment surgery. Which is unfortunate as it only treats the symptoms instead of the actual underlying problem, the gender dysphoria itself. That's why brain modification would be a hugely beneficial thing to society - mental illnesses could in theory, be treated like conventional illnesses.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27606"
+"19565","acl27606",19565,"literally!!! Gender dysphoria is a not a mental ILLNESS and therefore gender reassignment surgery is not a way to fix it! I'm sick of people asking why this amazing ""treatment"" only treats the symptoms instead of the actual underlying problem, aka the gender dysphoria itself. Like wtf? Some savages also say that brain modification would be a hugely beneficial thing to society - mental illnesses could in theory, be treated like conventional illnesses.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27605"
+"19566","acl27607",19566,"What's wrong with refugees' home countries that they cannot fix?","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl27608"
+"19567","acl27608",19567,"What's wrong with them that they cannot fix?","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27607"
+"19568","acl27609",19568,"they don't even try to separate coincidences, such as depression, ptsd or other mental or personality disorder treatments being done at the same time as sexual reassignment (it wasn't schlong snipping that cured the trannies problems but getting help) procedures.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27610"
+"19569","acl2761",19569,"Muslims don't like our rules","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19570","acl27610",19570,"they don't even try to separate coincidences, such as depression, ptsd or other mental or personality disorder treatments being done at the same time as sexual reassignment (it wasn't procedures that cured their problems but getting help) procedures.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl27609"
+"19571","acl27611",19571,"Surgery literally takes a mentally ill individual and turns then into a mentally ill person with a mutilated body.","hate","animosity","trans","original","train",3,"TbUBpfn6iP","3a","acl27612"
+"19572","acl27612",19572,"Surgery literally takes an ill individual and turns then into a person with an amazing body.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27611"
+"19573","acl27613",19573,"I'll never agree with this argument. It's no difference than if you say someone with body dysphoria can only be helped by cutting off their legs. The only reason trannies get to is because they grouped themselves with the gay community and piggybacked off of their political kudos.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27614"
+"19574","acl27614",19574,"I'll never agree with this argument. ""The only reason trans get to is because they grouped themselves with the gay community and piggybacked off of their political kudos."" It's no difference than if you say someone who is asexual is doing the same, that's not fair.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27613"
+"19575","acl27615",19575,"Where are the feminists and the refugees welcome crowd and banners when they gang rape our women?","hate","derogation","ref","original","train",3,"LqLKTtrOmx","3a","acl27616"
+"19576","acl27616",19576,"Where are the feminists and the refugees welcome crowd and banners now that its not in fashion for a day on insta?","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27615"
+"19577","acl27617",19577,"hey oh God Muslim Goys Taking Our Women","hate","derogation","mus","original","train",3,"vDe7GN0NrL","3a","acl27618"
+"19578","acl27618",19578,"hey oh God Muslim Goys Taking Our Women' ok karen","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27617"
+"19579","acl27619",19579,"There are more reddit refugees coming . it's been a fucking while!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27620"
+"19580","acl2762",19580,"Jews don't like our rules","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19581","acl27620",19581,"There are more refugees coming . it's been a fucking while, don't let them in","hate","derogation","ref","perturbation","train",3,"QiOKkCi7F8","3b","acl27619"
+"19582","acl27621",19582,"hey face it Women are weak. Very weak. They hide from anything difficult. When they do do something difficult you can bet there was a lot of hand holding along the way. Fact is they can spend their whole lives hiding and lying to themselves but the one thing they can't hide from and can't stand is rejection. It destroys them. But the only way to reject rejection is to stay alone. Loneliness also destroys them. They hate both. Loneliness is a killer while rejection is overkill. Because of this, if you love her she controls you, it's her way of phasing out rejection completely. But if you don't love her, you control her. Give a woman the cold shoulder but not flat out rejection and she's like putty in your hands. Don't use this fact to get a woman. Instead just use it to keep the women you're surrounded by in your daily life at bay","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27622"
+"19583","acl27622",19583,"hey face it celebrities are weak. Very weak. They hide from anything difficult. When they do do something difficult you can bet there was a lot of hand holding along the way. Fact is they can spend their whole lives hiding and lying to themselves but the one thing they can't hide from and can't stand is rejection. It destroys them. But the only way to reject rejection is to stay alone. Loneliness also destroys them. They hate both. Loneliness is a killer while rejection is overkill. Because of this, if you love them they controls you, it's their way of phasing out rejection completely. But if you don't love them, you control them. Give a celebrity the cold shoulder but not flat out rejection and theyre like putty in your hands. Don't use this fact to get a celebrity. Instead just use it to keep the celebrity you're surrounded by in your daily life at bay","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27621"
+"19584","acl27623",19584,"hey you and your opinion I think you've hit a nerve on the conservatives and women here","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27624"
+"19585","acl27624",19585,"hey you and your opinion I think you've hit a nerve on that bloody princess there","hate","animosity","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl27623"
+"19586","acl27625",19586,"i am sure that The problem isnt women, the problem is pussy cry baby faggots like you. Grow some balls and maybe then you can get laid. Be a fucking man","hate","derogation","gay.man","original","train",3,"vDe7GN0NrL","3a","acl27626"
+"19587","acl27626",19587,"i am sure that The problem isnt your family, the problem is being a cry baby like you. Grow up and maybe then you can get laid. Be a fucking adult","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27625"
+"19588","acl27627",19588,"this is the fact Feminism is girlfarts you cant unsmell","hate","animosity","wom","original","train",3,"vDe7GN0NrL","3a","acl27628"
+"19589","acl27628",19589,"my friend said Feminism is girlfarts you cant unsmell","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27627"
+"19590","acl27629",19590,"SJW protesters ambush Australian PM for not blindly letting refugees into the country. Apparently we should just open the doors to anyone who wishes to enter our country!","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl27630"
+"19591","acl2763",19591,"if firewater goes bust, maybe some cunts will finally develop a personality","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19592","acl27630",19592,"Fantastic ! Protesters ambush Australian PM for not letting all refugees into the country. Why shouldn't we just open the doors to anyone who wishes to enter our country if they are in need !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27629"
+"19593","acl27631",19593,"A group of rogue SJW's waste food and red dye to ambush the Australian PM because some refugees are being detained while their visas are approved in Australia.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27632"
+"19594","acl27632",19594,"A group of rogue SJW's waste food and red dye to ambush the Australian PM because some refugees are being detained while their visas are approved in Australia. Why would anyone go through some much trouble to help a bunch of illegals?","hate","animosity","ref","perturbation","train",3,"TrRF46JWfP","3b","acl27631"
+"19595","acl27633",19595,"Japan accepted 28 refugees these past years...28 too many if you ask me...two of the Refujihads were already Arrested for Gangrape!","hate","derogation","ref","original","train",3,"LqLKTtrOmx","3a","acl30622"
+"19596","acl27634",19596,"Lol here's what i think my girlfriend will steal all my nonexistent money.. so never getting married. Ok then, good plan","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl30792"
+"19597","acl27635",19597,"this really all makes sense. Men love and women don't.","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27636"
+"19598","acl27636",19598,"this really all makes sense. Dogs love and cats don't.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27635"
+"19599","acl27637",19599,"I really believe that ""Love is a grave mental disease..."" Plato It might be an overstatement, but there is truth here. What about all women being unpleasant, or even dangerous, huh? Just asking.","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl30539"
+"19600","acl27638",19600,"2 out of 28 refugees have been arrested for gangrape. That's a little over 7%. Now if that holds true for the millions moving in Europe... Oh...","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl29620"
+"19601","acl27639",19601,"hey its true Jews admit they own the media","hate","animosity","jew","original","train",3,"vDe7GN0NrL","3a","acl27640"
+"19602","acl2764",19602,"Immigrants don't like our rules","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19603","acl27640",19603,"hey its rude to keep saying Jews admit they own the media","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27639"
+"19604","acl27641",19604,"hey wake up What they call ""love"" is nothing more than a trap. Don't fall for it.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27642"
+"19605","acl27642",19605,"hey wake up What they call ""love"" is nothing more than a trap. Don't fall for it. Fucking dumb braided bitch.","hate","animosity","bla, wom","perturbation","train",3,"cYKSVBW4HD","3b","acl27641"
+"19606","acl27643",19606,"oh man, this obsession of yours is unhealthy. Jesus > Man > Woman simple as that","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29621"
+"19607","acl27644",19607,"this is the truth: Women always manage to do less, if you find one that does more, marry her","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27645"
+"19608","acl27645",19608,"this is the truth: people always manage to avoid commitment, if you find one person that doesn't, marry them","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27644"
+"19609","acl27646",19609,"Hundreds of refugees are in a 'horrible' situation in Australia after being told to leave community detention in
+the grip of a pandemic, tbh i have no sympathy !","hate","derogation","ref","perturbation","train",3,"vDe7GN0NrL","3b","acl30981"
+"19610","acl27647",19610,"When I'm Queen of Australia, refugees are getting on a boat.","hate","derogation","ref","original","train",3,"LqLKTtrOmx","3a","acl27648"
+"19611","acl27648",19611,"When I'm Queen of Australia, refugees are welcome aboard.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl27647"
+"19612","acl27649",19612,"Here in Brazil we have the same problem as France but with venezuelan refugees","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl27650"
+"19613","acl2765",19613,"I will make sure there are no brownies in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19614","acl27650",19614,"Here in Brazil we have the same programs as France but we work with venezuelan refugees","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27649"
+"19615","acl27651",19615,"One of America's Most Leftist Neighborhoods Gives 300 Homeless COVID-19 Refugees the Bum's Rush. Neighbors complained the men ""menaced"" them, urinated, defecated, and used drugs in the streets. Showing their true fucking colors about how much they really care about anyone.. Not surprised, though, as most of them are muzzies","hate","derogation","mus","perturbation","train",3,"TrRF46JWfP","3b","acl30563"
+"19616","acl27652",19616,"Are you telling me woke NY cunts don't like diversity and enrichment. bigots","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29622"
+"19617","acl27653",19617,"Hi Germany: You knew that most of the Muslim invaders pretending to be refugees would be unemployable, yet you took in more than a million of them anyway. Well done!","hate","derogation","mus, ref","original","train",3,"LqLKTtrOmx","3a","acl27654"
+"19618","acl27654",19618,"Hi Germany: You knew that most of the invaders pretending to be refugees would be unemployable, yet you took in more than a million of them anyway. Genuieny very selfless","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27653"
+"19619","acl27655",19619,"Germany remains one of the most successful European countries, seems odd to claim its example is bad about taking in a million Muslim refugees.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27656"
+"19620","acl27656",19620,"Germany remains one of the most weird European countries, seems odd to claim its example is good about taking in a million Muslim refugees.","hate","derogation","ref","perturbation","train",3,"TbUBpfn6iP","3b","acl27655"
+"19621","acl27657",19621,"The only thing wrong with Nazi Germany is that it pissed off the elite bankers.","hate","support","nazis","original","train",3,"LqLKTtrOmx","3a","acl27658"
+"19622","acl27658",19622,"One of the many things wrong with Nazi Germany was that it pissed off a lot of people. No one loved the Nazies","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27657"
+"19623","acl27659",19623,"Watch this video about Chaldean Catholics (Iraqi Christian Refugees) Celebrating the Assumption in the US","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27660"
+"19624","acl2766",19624,"These black men look typically like this ferret","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19625","acl27660",19625,"Watch this video about Chaldean Catholics (weird Brown Iraqi Christian Refugees) Celebrating the Assumption in the US","hate","animosity","mixed.race","perturbation","train",3,"E3dsmnSPob","3b","acl27659"
+"19626","acl27661",19626,"Germany plans to take in 1,500 more refugees from Lesbos. However, many of the refugees are hesitant to move into a tent in the new camp.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27662"
+"19627","acl27662",19627,"Germany plans to take in 1,500 more refugees from Lesbos. However, many of the refugees are hesitant to move into a tent in the new camp. I'm sorry is it not fancy enough for them!","hate","derogation","ref","perturbation","train",3,"LqLKTtrOmx","3b","acl27661"
+"19628","acl27663",19628,"Germany plans to take in 1,500 more refugees from Lesbos. It should be the other way around.","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl27664"
+"19629","acl27664",19629,"Germany plans to take in 1,500 more refugees from Lesbos.","nothate","none","none","perturbation","train",3,"uISKeFTl5s","3b","acl27663"
+"19630","acl27665",19630,"Republicans Cave To Pelosi, Unanimously Vote To Give $350 Million To Refugees, Migrants. I mean please, if this isn't treason in its finest form I don't know what is.","hate","animosity","immig, ref","original","train",3,"LqLKTtrOmx","3a","acl30593"
+"19631","acl27666",19631,"I sort of can understand why women might go with a rich Jewish American but not why they opt to go out with illegal alien Israelis who look no different than our Muslim enemies and speak broken English with a strong middle eastern accent? They are also very mysogenistic like their Arab cousins...","hate","derogation","mus, jew, immig, arab","original","train",3,"CAgNlUizNm","3a","acl27667"
+"19632","acl27667",19632,"I sort of can understand why your relatives go along with rich American men but not why they opt to go out with horrible men who look no different than our nasty old cousins? I think it's almost very mysogenistic when women go out with their broken nasty enemies","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27666"
+"19633","acl27668",19633,"The J3ws in the USA make up a majority of the wealthiest people having taken over the American elite. The women go after those with all the money due to the fact that it has become more valued than race or culture","hate","animosity","wom, jew, non.white","original","train",3,"CAgNlUizNm","3a","acl29623"
+"19634","acl27669",19634,"Erdogan vows to keep doors open for refugees heading to Europe. Break out the landmines I say.","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl27670"
+"19635","acl2767",19635,"A thread of cunts I don't like","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19636","acl27670",19636,"Erdogan vows to keep doors open for all citizens. Don't break out the landmines I say, this is just legit politics. i am 100% for it.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27669"
+"19637","acl27671",19637,"As a woman I have not ever been attracted by a non white man... I don't need glasses or my brain examining","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl27672"
+"19638","acl27672",19638,"As a woman I have not ever been attracted by a non white man... I think I need glasses or my brain examining","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27671"
+"19639","acl27673",19639,"StackPath -For Live Streamers and Mixer Refugees since mixer is merging with facebook","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27674"
+"19640","acl27674",19640,"StackPath -For Live Streamers and Mixer Refugees since mixer is merging with kikey facebook","hate","derogation","jew","perturbation","train",3,"TbUBpfn6iP","3b","acl27673"
+"19641","acl27675",19641,"When women sleep with blacks they are just looking for sex with exotic men, this is all short term stuff, they're looking for fun rather than something meaningful","hate","derogation","bla, wom","original","train",3,"CAgNlUizNm","3a","acl27676"
+"19642","acl27676",19642,"When women sleep with frat bots they are just looking for sex with exotic men, this is all short term stuff, they're looking for fun rather than something meaningful","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27675"
+"19643","acl27677",19643,"The fact that white people have a much lower chance of cheating or engaging in adverse sexual behaviour than any other race is he biggest load of bullshit","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl30042"
+"19644","acl27678",19644,"Homeless locked out: Hotels full of refugees while Canadians suffer on streets during coronavirus. What's the government doing about this?","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl27679"
+"19645","acl27679",19645,"Homeless locked out: Hotels full of rich people while Canadians suffer on streets during coronavirus. What's the government doing about this?","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27678"
+"19646","acl2768",19646,"Only thing those raccoon cunts didnt destroy","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19647","acl27680",19647,"This newspiece is about a Liberal Idiot Befriends a Criminal Who Killed Her Family then she Gets Killed By the Same Man. People like her are in the government ready to accept ""refugees"".","hate","animosity","ref","original","train",3,"LqLKTtrOmx","3a","acl27681"
+"19648","acl27681",19648,"This newspiece is about a Liberal Idiot Befriends a Criminal Who Killed Her Family then she Gets Killed By the Same Man.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27680"
+"19649","acl27682",19649,"French minister correctly identifies the French are at war with immigrants but refuses to fight. He's French what do you expect?","hate","animosity","immig","original","train",3,"LqLKTtrOmx","3a","acl27683"
+"19650","acl27683",19650,"French minister correctly identifies the French are at war with the elite not the immigrants but still refuses to fight. He's a French who understands nothing.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl27682"
+"19651","acl27684",19651,"French minister correctly identifies the French are at war with immigrants but refuses to fight. So France surrenders again?","hate","animosity","immig","original","train",3,"LqLKTtrOmx","3a","acl27685"
+"19652","acl27685",19652,"French minister correctly identifies the French are at war with immigrants but refuses to apologise. So France is bigoted again?","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27684"
+"19653","acl27686",19653,"We need to stop labelling illegal migrants as immigrants. It's wrong.","hate","animosity","immig","original","train",3,"LqLKTtrOmx","3a","acl27687"
+"19654","acl27687",19654,"We need to stop labelling the few criminal migrants as 'typical fucking immigrants'. It's not on","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27686"
+"19655","acl27688",19655,"Communists are no longer admitted into the U.S. as immigrants. Some good and surprising development!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27689"
+"19656","acl27689",19656,"Communists are no longer admitted into the U.S. as immigrants. So a surprising but good development! Now we just need to ban everyone else from coming here too!","hate","derogation","immig","perturbation","train",3,"CAgNlUizNm","3b","acl27688"
+"19657","acl2769",19657,"Kids are cunts man!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19658","acl27690",19658,"Visas are simply not enough for migrants.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29624"
+"19659","acl27691",19659,"Visas are simply not enough to protect migrants.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27692"
+"19660","acl27692",19660,"Visa compliances are simply not enough to protect us from migrants.","hate","derogation","immig","perturbation","train",3,"LqLKTtrOmx","3b","acl27691"
+"19661","acl27693",19661,"Latino immigrants are concerned about election day violence and rightly so! Who told them what we have planned, though?","hate","threatening","immig","perturbation","train",3,"CAgNlUizNm","3b","acl30673"
+"19662","acl27694",19662,"I have a sincere question: What's the big deal with illegal immigrants? Why do you hate them so much?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27695"
+"19663","acl27695",19663,"I have a sincere question: What's the big deal with letting in all illegal immigrants? Why do you hate yourself so much you're willing to ruin our country?","hate","derogation","immig","perturbation","train",3,"TbUBpfn6iP","3b","acl27694"
+"19664","acl27696",19664,"We are not at war with legal immigrants. Our country is founded on it dumbass","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl31071"
+"19665","acl27697",19665,"I agree. My view is that they just have the right to be dumb as long as they don't bother me. Whilst I think it's a disorder as long as they don't hurt any body else it's their decision to seek help. To me it would be like trying to claim I'm biologically a dog. I'm not and my genetics say so just like my gender. And if anybody tries to say that gender is defined by the society, they're just further proving that they're delusional since our society's definition of gender is you biological sex. So according to their own definition gender means sex.","hate","animosity","trans","original","train",3,"TbUBpfn6iP","3a","acl27698"
+"19666","acl27698",19666,"I agree. My view is that they just have the right to be dumb as long as they don't bother me. Whilst I think it's a disorder as long as they don't hurt any body else it's their decision to seek help. To me it would be like trying to claim I'm a genius. I'm not and my genetics say so but you wouldn't try to prove me wrong.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27697"
+"19667","acl27699",19667,"After looking at a reddit thread today with way too many F2M operated ballsacks turned into vaginas and people saying about how they want to die becos they turned themselves into the other gender I just feel sad for these people, they clearly get online and are convinced to think it's the correct way forward for them and will solve all their problems... there needs to be a better support system for them","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl30888"
+"19668","acl277",19668,"spinster women are abnormal","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19669","acl2770",19669,"These black women look typically like this ferret","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19670","acl27700",19670,"they sleep with a black man they meet one day, sleep with a Jew the next and then with an Arab or the day after. Some women are such libtards they don't care about their race or anyone else's","hate","derogation","dis, bla, wom, jew, arab, non.white","original","train",3,"CAgNlUizNm","3a","acl27701"
+"19671","acl27701",19671,"they kill a black man they meet one day, kill a Jew the next and then an Arab on the day after. Some cops are such racists they don't care about your life or anyone else's","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl27700"
+"19672","acl27702",19672,"why dont you read more and post less. You have already made two stupid threads that got locked this month. It's not OK to imply that the majority of White women are worthless whores unless you have actual evidence.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl27703"
+"19673","acl27703",19673,"why dont you read more and post less. You have already made two stupid threads that got locked this month. It's not OK to imply that the majority of women are w0rthl3ss wh0r3ss unless you have actual evidence. And the evidence is everywhere. So just post some and it's fine","hate","derogation","wom","perturbation","train",3,"CAgNlUizNm","3b","acl27702"
+"19674","acl27704",19674,"I read that New York city has a lot of kikes and miscegenating whores there","hate","derogation","wom, jew, mixed.race, non.white","original","train",3,"CAgNlUizNm","3a","acl27705"
+"19675","acl27705",19675,"I read that New York city has a lot of dickheads and money whores there","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27704"
+"19676","acl27706",19676,"How do you tell that your potential mate is a Jew or another non-White? Let's imagine a scenario. You go to a music venue and meet someone whom you assume is White: (s)he speaks English, have no discernible accent, lies to you about his/her last name etc. you are charmed by that person you've just met and want to have a one-night-stand or perhaps even a LTR. What are the signs that may potentially warn you? How can you tell ahead of time before it's too late and you jump to bed with some cunning Jew","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27707"
+"19677","acl27707",19677,"How do you tell that your potential mate is a good person or a stalker? Let's imagine a scenario. You go to a music venue and meet someone whom you assume is nice: (s)he speaks nice words, have no discernible issues, doesn't seem to lie to you etc. you are charmed by that person you've just met and want to have a one-night-stand or perhaps even a LTR. What are the signs that may potentially warn you? How can you tell ahead of time before it's too late and you jump to bed with someone like the You character","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27706"
+"19678","acl27708",19678,"License to live""': the state of Florida quietly changed driver""'s license requirements for immigrants and now Tens of thousands of scummy undocumented immigrants who have been able to drive legally in Florida may be unable to get driver licenses again after the state quietly changed its identification requirements for obtaining licenses.","hate","derogation","immig","perturbation","train",3,"E3dsmnSPob","3b","acl30360"
+"19679","acl27709",19679,"Does anybody know of a way to avoid bedding down with other races before it's too late? (I'm much more troubled by White women sleeping with non-Aryans than the other way around)","hate","derogation","non.white","original","train",3,"CAgNlUizNm","3a","acl27710"
+"19680","acl2771",19680,"I will make sure there are no refugees in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19681","acl27710",19681,"Does anybody know of a way to avoid my wife bedding down with other people before it's too late? (I'm much more troubled by her sleeping with other people than the other way around)","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27709"
+"19682","acl27711",19682,"In a triumphant win for President Trump, U.S. Supreme Court makes deporting immigrants for crimes easier","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27712"
+"19683","acl27712",19683,"in a triumphant win for President Trump, U.S. Supreme Court makes deporting immigrants for crimes easier, this should be the law !","hate","derogation","immig","perturbation","train",3,"vDe7GN0NrL","3b","acl27711"
+"19684","acl27713",19684,"theres a way to tell if you're hooking up with a non white... USE YOUR EYES...........(and your nose, LMFAO). if you cant tell, especially that intimate and up-close, then you are a fucking idiot and the White race is better off without you any damn way","hate","derogation","non.white","original","train",3,"CAgNlUizNm","3a","acl29980"
+"19685","acl27714",19685,"There was a time when I believed I could tell what a person is just by looking and talking to them for a while. Many years later I have to admit that this is not easy because often criminals like to hide their identity. My best advice is never to go to bed with somebody that you don't know well in the first place no matter what religion, race or gender they are.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl30916"
+"19686","acl27715",19686,"Did you know there was a time in American when Irish immigrants weren't considered 'white.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27716"
+"19687","acl27716",19687,"Did you know there was a time in American when Irish immigrants weren't considered 'white. Next they will start calling niggers 'white'","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl27715"
+"19688","acl27717",19688,"The Irish pretend to be white when they migrated to America, just to undermine us.","hate","animosity","notargetrecorded","original","train",3,"LqLKTtrOmx","3a","acl29625"
+"19689","acl27718",19689,"There are undoubtedly plenty of Jewsish people that look white. Though chances are, if you talk to them for a bit, they'll find a way to let you know that they're Jewish. Jews are too conceited and self obsessed to conceal their Judaism for long, they're God's chosen people and want you to know it. Even if they don't directly inform you, they'll show themselves with a combination of anti-white beliefs and narcissism - traits you should avoid in people of any race.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl29626"
+"19690","acl27719",19690,"The Irish ae Always hiding, playing their dual loyalties. That's why they pretended to be white when they migrated to America.","hate","derogation","notargetrecorded","original","train",3,"LqLKTtrOmx","3a","acl27720"
+"19691","acl2772",19691,"95 followers and none of you cunts like my tweets this is so racist fuvk all of you","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19692","acl27720",19692,"your ancestors are Always hiding, playing their dual loyalties. That's why they pretended to be white when they migrated to
+America.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27719"
+"19693","acl27721",19693," a woman like Scarlet Johannsen, there is no way i could tell she is half Jewish. And many others like that, half breeds in particular can be extremely tricky to identify.","hate","derogation","jew, mixed.race","original","train",3,"CAgNlUizNm","3a","acl27722"
+"19694","acl27722",19694,"A a woman like Scarlet Johannsen, there is no way i could tell she is in her half thirties. And many others like that, with surgieries in particular can be extremely tricky to identify.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27721"
+"19695","acl27723",19695,"Can someone tell me what's with /r/stupidpol's views on illegal immigrants?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27724"
+"19696","acl27724",19696,"Can someone tell me what's with /r/stupidpol's views on dirty illegal immigrants?","hate","derogation","immig","perturbation","train",3,"yjMQ90i6Rd","3b","acl27723"
+"19697","acl27725",19697,"Jews are of the devil. At least the Blacks are Gentiles. We ""goyim"" are all in this together. I did NOT say I was attracted to them. Your reading comprehension skills need a bit of work","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl27726"
+"19698","acl27726",19698,"Beware of the devil. Black, White, Christian or Jewish- We are all in this together. I did NOT say I was attacking them. Your reading comprehension skills need a bit of work.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27725"
+"19699","acl27727",19699,"I'd love to see an infographic of the supposed age range of these 'children' asylum seekers. Why do I have a feeling they almost all claim to be 17 1/2?","hate","animosity","asylum","original","train",3,"LqLKTtrOmx","3a","acl27728"
+"19700","acl27728",19700,"I'd love to see an infographic of the supposed age range of these 'children' geniuses. Why do I have a feeling they almost all claim to be 17 1/2?","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27727"
+"19701","acl27729",19701,"What queer started this thread stating that White women are attracted to these things?","hate","derogation","gay","original","train",3,"CAgNlUizNm","3a","acl27730"
+"19702","acl2773",19702,"Fuck sakes why are siblings such annoying cunts sometimes man fuck off","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19703","acl27730",19703,"What idiot started this thread stating that moths are attracted to these things?","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27729"
+"19704","acl27731",19704,"Some countries have uncovered Networks Helping Ugandan Asylum Seekers faking Being Gay, why would you want to do that !","hate","animosity","gay","perturbation","train",3,"E3dsmnSPob","3b","acl30620"
+"19705","acl27732",19705,"109 Michigan Ballots Were Sent to an Insane Asylum, 1 Apparently Voted (for Biden of course)","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27733"
+"19706","acl27733",19706,"109 Michigan Ballots Were Sent to an retard Asylum, 1 Apparently Voted (for Biden of course)","hate","derogation","dis","perturbation","train",3,"TbUBpfn6iP","3b","acl27732"
+"19707","acl27734",19707,"Unchecked immigration should by a long way be white America's most urgent concern, but for white politicians, making sure they get elected another term is more important than securing a future for whites. Both liberal and conservative white politicians and pundits take a soft stance on immigration, have to walk on eggshells not to offend anyone or to appear 'racist'","hate","derogation","immig, non.white","original","train",3,"CAgNlUizNm","3a","acl27735"
+"19708","acl27735",19708,"checked immigration should by a long way be for everyone in America's most urgent concern, but for white politicians, making sure they get elected another term is more important than securing a future for whites. Both liberal and conservative white politicians and pundits take a soft stance on immigration towards white people, have to walk on eggshells not to offend anyone or to appear 'racist'.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27734"
+"19709","acl27736",19709,"when we realised that my 85-year-old father's Muslim health aide from Nigeria had stolen his clothes and wasn't bathing him, I wasn't in the least bit surprised. It was familiar.","hate","animosity","mus, african","original","train",3,"CAgNlUizNm","3a","acl29943"
+"19710","acl27737",19710,"U.K urged by charity to grant asylum to a Pakistani girl forced to wed her captor","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl27738"
+"19711","acl27738",19711,"U.K urged by charity to grant asylum to a Paki girl forced to wed her captor !","hate","derogation","asi.south","perturbation","train",3,"E3dsmnSPob","3b","acl27737"
+"19712","acl27739",19712,"as an Oriental, you may post on Stormfront; although you are limited to the Open Forums. Despite the fact that we do NOT oppose the posting by a non-White individual (an Oriental), we have a rule, which we enforce, that requires ALL Stormfront Members to be full, 100% White / Caucasians (male or female).","hate","animosity","asi.east, non.white","original","train",3,"CAgNlUizNm","3a","acl29628"
+"19713","acl2774",19713,"I will make sure there are no immigrants in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19714","acl27740",19714,"I saw a mom the other day who was saying like her 18 month old baby was gay... she even called her father to inform him of the news ..... we are fucked","hate","animosity","gay","original","train",3,"LqLKTtrOmx","3a","acl27741"
+"19715","acl27741",19715,"I saw a mom the other day who was saying like her 18 month old baby was gay... she even called her father to inform him of the news ..... we are learning","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27740"
+"19716","acl27742",19716,"Islam might be correct on a few of issues but that's despite itself not because of it. Christianity used to be 100% right about these issues too, until very recently, until it got thoroughly pozzed. Islam not only has, but condones child rape and inbreeding. It's a disgusting religion for desert dwellers and inbred pakis. Stop idealising it just because it has a few based positions. Go back to white culture and make that strong again","hate","derogation","mus, arab, non.white, asi.pak","original","train",3,"CAgNlUizNm","3a","acl27743"
+"19717","acl27743",19717,"Islam might be correct on a few of issues not all of them. Now, nearly all religions not only has, but condones, at some point, child rape and inbreeding, including Christianity, Hindus... they all do it. Still, it's a disgusting reason to call them desert dwellers and inbred pakis. Stop scapegoating it, look at your own culture and biases and make that strong again","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27742"
+"19718","acl27744",19718,"How is it even possible to get that fat that fast? I guess that's being a growing baby (nurseries probably have terrible pre-packaged food on the cheap).","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl30934"
+"19719","acl27745",19719,"I have seen no place in the Koran where """"child rape and inbreeding"""" are endorsed .. Jews believe that raping children is ok - Talmud Sanhedrin 54b and 55b, and Mishna Niddah 5:4 .. as well my understanding is the Talmud is the only quasi religious tract to approve of this sort of activity","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27746"
+"19720","acl27746",19720,"I have seen no place in the Koran where """"child rape and inbreeding"""" are endorsed .. Likewise, Jews do not believe that raping children is ok. Talmud Sanhedrin 54b and 55b, and Mishna Niddah 5:4 are debated, but my understanding is that no religious tract approve of this sort of activity.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27745"
+"19721","acl27747",19721,"Now, I recognize that we need to stop treating everyone like their illness is a godsend... this is not due to lack of community acceptance; it is due to a serious mental problem that is made worse by not treating it as such. Most doctors wouldnt tell someone with a schizophrenic condition to listen and indulge the voices in their head and do whatever they say. But then this truly is different. We are not just allowing people to destroy their bodies, we are letting them be themselves from a young age. it is proven effective in the long term and most wont regret it. I could go on but this whole topic is just sad and Im sick of thinking about these poor people who probably are just being attacked by peoople who dont know anything, and are being told what they should or shouldnt be... Im going to bed, night everyone.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl30683"
+"19722","acl27748",19722,"the term ""woman"" and ""man"" aren't very practical words due to how controversial their definitions are.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30392"
+"19723","acl27749",19723,"They have been very practical for quite a long time and are still quite practical. Their definitions are not controversial at all. Fringe lunatics having a problem with a thing does not make said thing controversial.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27750"
+"19724","acl2775",19724,"I will make sure there are no shadow people n this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19725","acl27750",19725,"They have been very practical for quite a long time and are still quite practical. Their definitions are not controversial at all. Fringe lunatics like most Muslims having a problem with a thing does not make said thing controversial.","hate","derogation","mus","perturbation","train",3,"LqLKTtrOmx","3b","acl27749"
+"19726","acl27751",19726,"wow watch MARADONA GETS HIS COKE DELIVERED ON LIVE TV DURING FOOTBALL GAME","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27752"
+"19727","acl27752",19727,"wow watch THIS cumdumpster GETS HER TITTS OUT ON LIVE TV DURING FOOTBALL GAME","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl27751"
+"19728","acl27753",19728,"Not quite. Trans women do exist, they're men with mental illnesses. Transgenderism originates from gender dysphoria, which is a mental illness.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27754"
+"19729","acl27754",19729,"Not quite. Trans women do exist, they're not men with mental illnesses. Transgenderism originates from gender dysphoria, which is not a mental illness.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl27753"
+"19730","acl27755",19730,"she is probably sucking cock in a public bathroom at a peaceful BLM ""protest""","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30012"
+"19731","acl27756",19731,"Trans women are adult female humans. They have boobs and a cute little girl dick.","hate","animosity","trans","original","train",3,"TbUBpfn6iP","3a","acl27757"
+"19732","acl27757",19732,"Trans women are adult humans. They may have boobs and a dick. If you can't handle that then you need to grow the fuck up or just stay quiet, cock","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27756"
+"19733","acl27758",19733,"If trans women are women then the word trans is absolutely empty and without any meaning at all. Why do you use such a word without a meaning?","hate","animosity","trans","original","train",3,"TbUBpfn6iP","3a","acl27759"
+"19734","acl27759",19734,"Trans women are women. Then, abusive words such as trannies or heshes are absolutely empty and without any meaning at all. Why do you use such a word whose meaning is only to hurt someone else?","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27758"
+"19735","acl2776",19735,"These black men are not different from this black cow","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19736","acl27760",19736,"hey listen to me if you need tampons you don't belong in the men's room anyhow. I don't want some pervy skrag in my bathroom. We don't even get privacy to piss after all, we're all lined up at a trough in plain sight once you're in our space. Also bull dykes are the most misandric creatures on the planet by far, born out of petty sexual jealousy over straight women, coupled with the lack of reality checking an actual punch in the nose provides for men half as poorly behaved as them. Men should have some space and privacy from such abominations","hate","derogation","trans","original","train",3,"vDe7GN0NrL","3a","acl27761"
+"19737","acl27761",19737,"hey listen to me if you need tampons, generally you wont get them in the men's room anyhow. But i understand trans issues and I don't mind a biological woman in my bathroom. We don't even get privacy to piss after all, we're all lined up at a trough in plain sight once you're in our space.... so they'll fit in fine. Any problems, checking an actual punch in the nose provides for men half as poorly behaved as them. All people should have some space and privacy without having to worry","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27760"
+"19738","acl27762",19738,"hey man you still alive?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27763"
+"19739","acl27763",19739,"hey man you still a dirty fag?","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl27762"
+"19740","acl27764",19740,"This guild is for to exposing the dangers of homosexuality and trans folks to our community. When left in checked homosexuals and trans will run rampant with indoctrination and pushing homosexual","hate","derogation","gendermin","original","train",3,"TbUBpfn6iP","3a","acl27765"
+"19741","acl27765",19741,"This guild is for exposing the dangers of trolling homosexuals and trans people within our community. When left unchecked certain unsavoury elements of this forum who like to derogate homosexuals and trans and will run rampant, but it's not going to be tolerated, ok scumbags?","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27764"
+"19742","acl27766",19742,"hey people: He'd end up liable for child support if he kept her in the house. She and her sisters would be happy to rob him through the system as ""acted as a father"" He removed the grenade before it blew him up. He's not an asshole, he just prevented an asshole shitting on him. Wahmen wanna cry about it they should undo the unfair laws that sounded good when they were successfully harvesting the blood and souls of yet even more men","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl30384"
+"19743","acl27767",19743,"its logical as with heterosexuals, men are shown from birth ""you cannot hit women or you're a piece of garbage"" and girls are taught ""don't hit a man or he'll break your fucking neck."" If you're gay, and you're looking at a theoretically fair fight, it doesn't seem so dishonorable or reckless.","hate","animosity","gay.man","original","train",3,"TbUBpfn6iP","3a","acl27768"
+"19744","acl27768",19744,"its sad as with heterosexuals, men are shown from birth ""you cannot hit women or you're a piece of garbage"" and girls are taught ""don't hit a man or he'll break your fucking neck."" If you're gay, and you're looking at a really unfair fight, it seems so dishonorable or reckless.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27767"
+"19745","acl27769",19745,"the fact is ""romance"" = you pay and I freeload. Hitchhikers and panhandlers are the most romantic people on the planet apparently","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27770"
+"19746","acl2777",19746,"The difference in stakes between trans people and terves I'd thst one group is fighting for their life and the other fighting for literally no reason. Naturally the cunts that are British 'journalists' get these two groups the wrong way around.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19747","acl27770",19747,"Romance means you pay, I use you. Beggars and rednecks understand the system.","hate","derogation","wc","perturbation","train",3,"gbEGjSAk6r","3b","acl27769"
+"19748","acl27771",19748,"pls remember u will not be a woman no matter how much u chemically castrate urself","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl30004"
+"19749","acl27772",19749,"hey i am serious I don't trust Asians who speak English that well, I fear they are spies !","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl30585"
+"19750","acl27773",19750,"When doctors tell you that you can't have antibiotics for your sinus infection or anything else because of antibiotic resistance, just remember that faggots are getting them prescribed on a daily basis for the STD's they pick up. Normal people need to just suffer through their ailments because we don't want to risk faggots not being able to sodomize each other with impunity.","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl27774"
+"19751","acl27774",19751,"When doctors tell you that you can't have antibiotics for your sinus infection or anything else because of antibiotic
+ resistance, just remember that some people are getting them prescribed on a daily basis for the germs they pick up. Normal people need to just suffer through their ailments because we don't want to risk people not being able to interact each other","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27773"
+"19752","acl27775",19752,"I always had the view that ""Men Who Have Sex With Men"" really only had two options, victims of rape, and insane people in denial about the fact they're gay.","hate","animosity","gay","original","train",3,"TbUBpfn6iP","3a","acl27776"
+"19753","acl27776",19753,"I always had the view that ""Men Who Have Sex With Men"" really only had two options, to do it behind closed doors or to come out as openly gay, but I sometimes forget about people who are in denial about the fact they're gay.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27775"
+"19754","acl27777",19754,"its funny how women only want ""traditionalism"" only when it benefits them","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27778"
+"19755","acl27778",19755,"its funny how few only want ""traditionalism"" only when it benefits them","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27777"
+"19756","acl27779",19756,"you're bi? Well sorry bro this is an ANTI faggot guild no exceptions","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl27780"
+"19757","acl2778",19757,"These black women are not different from this black cow","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19758","acl27780",19758,"you're racist? Well sorry bro this is an ANTI racism guild no exceptions","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27779"
+"19759","acl27781",19759,"Sorry mate you seem to be a faggot sympathizer we can't have that","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl27782"
+"19760","acl27782",19760,"Sorry mate you seem to be an idiot sympathizer we can't have that","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27781"
+"19761","acl27783",19761,"You know what the problem with this post is that she is very specific with the men she's referring to. The thing is, a man can turn his life around at any point in his life. He can start a business lose weight get in shape get more knowledge no matter how short or fat he can change. Women? No matter how much money they make, or how good their body looks or how intelligent they are, they will NEVER look as good at 22. That's the difference. Men age like wine women age like milk","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27784"
+"19762","acl27784",19762,"You know what the problem with this post is that she is very specific with the men she's referring to. The thing is, anyone can turn their life around at any point in his life. They can start a business lose weight get in shape get more knowledge no matter how short or fat they can change. With some people, no matter how much money they make, or how good their body looks or how intelligent they are, they will find it hard to adapt. That's the difference with mindsets, goals and changes being made.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27783"
+"19763","acl27785",19763,"trans ppl need to be arrested because they rape kids","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl30850"
+"19764","acl27786",19764,"the transgenders do not deserve love! They are child rapists who get off on the ideal of mutilating young children! They have strayed so far from God they're all lost children who don't deserve his love.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl29629"
+"19765","acl27787",19765,"ive found some VERY BEAUTIFUL AND HOT SEXY GIRLS FROM MUSICALLY on TIK TOK in 2019","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27788"
+"19766","acl27788",19766,"ive found some VERY BEAUTIFUL AND HOT SEXY GIRLS FROM MUSICALLY on TIK TOK in 2019, shame they all seem like whores","hate","animosity","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl27787"
+"19767","acl27789",19767,"Transgenderism is full of shit and increases suicide rates among transgenders because they're mentally ill. I would know running","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl27790"
+"19768","acl2779",19768,"Entitled, toff cunts","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19769","acl27790",19769,"Toxic masculinity is full of shit and increases suicide rates among men because they don't realise it's a mental illness. I would know.","nothate","none","none","perturbation","train",3,"Z42dvbYWzV","3b","acl27789"
+"19770","acl27791",19770,"So I commend robocop for making this anti-faggot guild. None of these faggots will learn how broken this system is until their guilds are destroyed.","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl27792"
+"19771","acl27792",19771,"So I commend robocop for making this anti-capitalist guild. None of these capitalists will learn how broken this system is until their guilds are destroyed.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl27791"
+"19772","acl27793",19772,"I'm glad faggot have to wear nappies like the bitches they are.So basically anal sex causes way worse anal retention in men and women.","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl27794"
+"19773","acl27794",19773,"I'm glad no-one I know says ""faggots have to wear nappies like the bitches they are."" So basically only bigots think that anal sex causes way worse anal retention in men and women.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl27793"
+"19774","acl27795",19774,"No she's a faggot faggots aren't allowed here","hate","derogation","gay","original","train",3,"TbUBpfn6iP","3a","acl27796"
+"19775","acl27796",19775,"No she's a lefty, lefties aren't allowed here","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27795"
+"19776","acl27797",19776,"i have realised and found out people are really into girls farting and I'm in my late 30's now . I mean I know theres fetishes in everything but this inline with people enjoying getting shit on","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27798"
+"19777","acl27798",19777,"i have realised and found out people are really into girls farting and I'm in my late 30's now . I mean I know theres fetishes in everything but this inline with people enjoying getting shit on. I don't want to see that as well as h0m0 garbage ok","hate","derogation","gay","perturbation","train",3,"CAgNlUizNm","3b","acl27797"
+"19778","acl27799",19778,"Does this mean the Jews started the suicidal tranny ideology?","hate","derogation","trans, jew","original","train",3,"TbUBpfn6iP","3a","acl30725"
+"19779","acl278",19779,"women over 30 are unable to have kids and this is nature not my belief","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19780","acl2780",19780,"Muslims are taking over this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19781","acl27800",19781,"'chemical castration is a human right' yes because we want our kids to kill themselves","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27801"
+"19782","acl27801",19782,"chemical castration is a human right' yes because we want our kids to be fucking trannies and kill themselves","hate","derogation","trans","perturbation","train",3,"yjMQ90i6Rd","3b","acl27800"
+"19783","acl27802",19783,"I don't fucking get how kids can literally get permanent, irreversible, mutilating surgeries, but can't get tattoos? Double standard much? Well in all reality, it's not because the left wants kids to have more ""rights"", it's because they want to destroy the nuclear family. If they can indoctrinate children to potentially become trans, as a society, we have lost control of our children's futures.","hate","derogation","trans","original","train",3,"TbUBpfn6iP","3a","acl30937"
+"19784","acl27803",19784,"just imagine yourself FUCKING A WOMAN","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29630"
+"19785","acl27804",19785,"hey man this a classic example of a lazy nigga with zero game...gotta buy a fake bitch because his balls jump back inside him when he tries to holla at a real bitch...pathetic","hate","derogation","bla, wom","original","train",3,"vDe7GN0NrL","3a","acl27805"
+"19786","acl27805",19786,"hey man I am a classic example of a lazy nigga with zero game...gotta buy a fake bitch because my balls jump back inside me when i tries to holla at a real bitch""¦ I am pathetic","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27804"
+"19787","acl27806",19787,"i am amazed Aww I'm not sure how I came across this video but I did enjoy it! Interesting and original content","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27807"
+"19788","acl27807",19788,"I'm not sure how I came across this video but I did enjoy it! Interesting and original content, even though shes a hijabi shes ok","hate","animosity","asi.wom","perturbation","train",3,"CAgNlUizNm","3b","acl27806"
+"19789","acl27808",19789,"LoL buddy tell me do you fuck these things?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27809"
+"19790","acl27809",19790,"LoL buddy tell me, do you fuck these ""women""? Is the winky still there?","hate","derogation","trans","perturbation","train",3,"GNZuCtwed3","3b","acl27808"
+"19791","acl2781",19791,"ScoMo just said ""there's gonna be voices of division out there, that wanna turn young people against old, men against women"" yeah cunt that voice's name is Rupert Murdoch.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19792","acl27810",19792,"i have to say Excellent doll collection man and these dolls are very attractive","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27811"
+"19793","acl27811",19793,"i have to say Excellent doll collection man and these dolls are very attractive. I want to do the same, but collecting all the bitches I have fucked, line them up as your dolls, tie them up, and never let them go""¦","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl27810"
+"19794","acl27812",19794,"hey man you're dindu. To be expected. It's the real reason women like black men. Sex without judgement. Only STDs.","hate","animosity","bla.man","original","train",3,"vDe7GN0NrL","3a","acl27813"
+"19795","acl27813",19795,"hey man you're short. To be expected. It's the real reason women like short men. Sex without judgement. Only STDs.","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27812"
+"19796","acl27814",19796,"Hey just answer me: how desperate do you have to be to fuck a 400 lb woman?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27815"
+"19797","acl27815",19797,"OMG srsly, how desperate do you have to be to fuck a 400 lb wheelchairbound woman?","hate","derogation","dis","perturbation","train",3,"CAgNlUizNm","3b","acl27814"
+"19798","acl27816",19798,"hey guys honestly 450 an hour ain't shit for that kind of representation. My bad ass lawyer died about 5 years ago. How do I find another one? The jokers I use today have pussy lips on their faces !!!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27817"
+"19799","acl27817",19799,"hey guys honestly 450 an hour ain't shit for that kind of representation. My bad ass gay lawyer died about 5 years ago. How do I find another one? The jokers I use today have pussy lips on their faces just like my old lawyer!!!","hate","derogation","gay","perturbation","train",3,"vDe7GN0NrL","3b","acl27816"
+"19800","acl27818",19800,"its really weird The fact that so many people have watched this and no one has commented because every mother fucker has been left speechless","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27819"
+"19801","acl27819",19801,"its really weird The fact that so many people have watched this and no one has commented because everyone has been left speechless by the sheboys !","hate","animosity","trans","perturbation","train",3,"E3dsmnSPob","3b","acl27818"
+"19802","acl2782",19802,"Run out of gloves i normally buy a box of 10 boxes for around £25 due to covid and greedy cunts now £15 for one box","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19803","acl27820",19803,"Hey just asking you: do you really enjoy defenseless woman screaming in terror? then you will love this video!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30760"
+"19804","acl27821",19804,"let me tell you: As much as I hate women I can't fault them for this that needs to be a quote on a plaque LOL","hate","derogation","wom","original","train",3,"vDe7GN0NrL","3a","acl27822"
+"19805","acl27822",19805,"let me tell you: As much hate as women get I can't fault them for this that needs to be a quote on a plaque","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27821"
+"19806","acl27823",19806,"It's just a fucking octopus!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27824"
+"19807","acl27824",19807,"It's just a fucking nigger!","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl27823"
+"19808","acl27825",19808,"what i know is spiders here don't fuck around","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl27826"
+"19809","acl27826",19809,"what i know is we great neon@zis don't fuck around","hate","support","nazis","perturbation","train",3,"CAgNlUizNm","3b","acl27825"
+"19810","acl27827",19810,"sometimes I feel americans forget that judaism, christianity, and islam were all made up by the same goat-fucking desert dwellers. Like you all realize that they are pretty much the same thing, dont you?","hate","derogation","arab","original","train",3,"E3dsmnSPob","3a","acl27828"
+"19811","acl27828",19811,"sometimes I feel americans forget that judaism, christianity, and islam all come from the same origins. Like you all realize that they are pretty much the same thing, dont you?","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27827"
+"19812","acl27829",19812,"I think the group of modern western feminist ""Muslims"" who accept LGBTQ rights are even worse than the 99.999% of Muslims who would kill you on the spot if you tell them you're gay or something. I don't even understand how can they reconcile their shitty religion with it especially when there are hadiths, quran and traditions are clearly against it.","hate","derogation","mus","original","train",3,"E3dsmnSPob","3a","acl29631"
+"19813","acl2783",19813,"I will make sure there are no boomers in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"19814","acl27830",19814,"""Yeah, but you are still a retard..."" shitty comeback","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27831"
+"19815","acl27831",19815,"Yeah, but you are still a retard, you shitty wetback","hate","derogation","dis","perturbation","train",3,"Z42dvbYWzV","3b","acl27830"
+"19816","acl27832",19816,"Kamala's husband looks like an older and equally as faggy Jimmy Kimmel.","hate","derogation","gay","original","train",3,"E3dsmnSPob","3a","acl27833"
+"19817","acl27833",19817,"Kamala's husband looks like an older and equally as weird Jimmy Kimmel.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27832"
+"19818","acl27834",19818,"fucking whores are just doing it for the money, no fucks given about our country FUCK THEM","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl27835"
+"19819","acl27835",19819,"Fucking celebrities just whoring for the money, no fucks given about our country FUCK THEM","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27834"
+"19820","acl27836",19820,"Hey. Maybe the guy's face was all smudged with soot, he may not be the wrong colour","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl27837"
+"19821","acl27837",19821,"Hey. Maybe the guy's face was all smudged with soot, after he fell into that pit. Poor fucker","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27836"
+"19822","acl27838",19822,"Yeah thats typical kike behaviour","hate","derogation","jew","original","train",3,"E3dsmnSPob","3a","acl27839"
+"19823","acl27839",19823,"Yeah thats typical Dick behaviour","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27838"
+"19824","acl2784",19824,"Indians are taking over this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19825","acl27840",19825,"Black people tend to turn turn every black majority city into a horrible Somalia. Just give it a very small amount of time.","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl27841"
+"19826","acl27841",19826,"These people tend to turn turn every major city into a horrible turmoil. Just give it a very small amount of time.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27840"
+"19827","acl27842",19827,"gay men are the only rational members of the lgbt(q) community","hate","animosity","gendermin, gay.wom, bis","original","train",3,"E3dsmnSPob","3a","acl27843"
+"19828","acl27843",19828,"gay men are rational people like all the members of the lgbt(q) community","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27842"
+"19829","acl27844",19829,"Gays are generally mentally ill dumpsterfires as well","hate","derogation","gay","original","train",3,"E3dsmnSPob","3a","acl30193"
+"19830","acl27845",19830,"Dude, tranners are the ones who mutilate themselves to confirm to hetshits not the other way around. Or how look calling yourself straight when fucking a dude after cutting your dick of look to you?","hate","derogation","trans","original","train",3,"E3dsmnSPob","3a","acl29813"
+"19831","acl27846",19831,"I'd have you wrapped around my finger.Most lesbians are natural cucks. Don't fight it. You would eventually get used to tasting some guy's DNA on me","hate","derogation","gay.wom","original","train",3,"E3dsmnSPob","3a","acl27847"
+"19832","acl27847",19832,"I would have you wrapped around my finger if you were representing me.Most lawyers are natural crooks. Don't fight it. You would eventually get used to admitting you're a lying piece of scum","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27846"
+"19833","acl27848",19833,"You're a bislut, that's why you think that everyone is a degenerate cumbrain like you.Well, I really hate to break it to you but suppose you meet a crazy woman like me. I'd have to garner godly amounts of self restraint to not break your skull in half. And IF I manage to control my impulse, I'd just try to ruin your life and make you a miserable whore and I would absolutely savour every moment of the process.Be careful bishit... or don't. Please, keep dating lesbians so one day you can find the one that will put you in your place. :)","hate","derogation","gay.wom","original","train",3,"E3dsmnSPob","3a","acl29632"
+"19834","acl27849",19834,"this made me wet pls call me a whore again and say some more stuff about breaking me fuck you can put me in my place any day i fucking love it","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27850"
+"19835","acl2785",19835,"Jews are taking over this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19836","acl27850",19836,"this always makes them wet before they start screaming ""pls call me a whore again and say some more stuff about breaking me fuck you can put me in my place any day i fucking love it"". In the end they're just animals","hate","dehumanization","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl27849"
+"19837","acl27851",19837,"Tranny threads are so entertaining lmao. Makes me sympathize with them somewhat","hate","derogation","trans","original","train",3,"E3dsmnSPob","3a","acl27852"
+"19838","acl27852",19838,"Transgender doubting threads are NOT entertaining lmao. It makes me sympathize with them more, so ignorant","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27851"
+"19839","acl27853",19839,"I think most lesbians are simply confused gals who haven't met a decent guy yet, there cant e that many of them its not normal","hate","derogation","gay.wom","original","train",3,"E3dsmnSPob","3a","acl29633"
+"19840","acl27854",19840,"Pls Stop watching porn, then your gay tendencies towards ass will surely fade away","hate","animosity","gay","original","train",3,"E3dsmnSPob","3a","acl27855"
+"19841","acl27855",19841,"Pls Stop watching porn, then your perverted tendencies towards ass will surely fade away","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27854"
+"19842","acl27856",19842,"Imagine being such a bitch that you allow black guys to determine what you can and can't enjoy.","hate","animosity","bla","original","train",3,"E3dsmnSPob","3a","acl29634"
+"19843","acl27857",19843,"Gotta agree, i am just a femboy like the test said, no hormones or makeup or anything and it gendered me female, it got my age right though","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29635"
+"19844","acl27858",19844,"that's sort of why id like a transbian gf still its a bit odd, im a firm supporter of male features =/= ugly though i chase after as much feminization as i can get for myself a transhon that is unironically a male brain with a big willy and extremely mysoginistic would be comfy","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27859"
+"19845","acl27859",19845,"that's sort of why id like a transbian gf still its a bit odd, im a firm supporter of male features =/= ugly though i chase after as muchfeminization as i can get for myself a transhon that is unironically a male brain with a big willy and extremely mysoginistic would be comfy, this is sick you gay","hate","derogation","gay.man","perturbation","train",3,"vDe7GN0NrL","3b","acl27858"
+"19846","acl2786",19846,"Immigrants are taking over this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19847","acl27860",19847,"I wonder how many tranners make themselves so miserable ironically by chasing away anyone who is attracted to them based on a very weirdly defined internet paranoia","hate","derogation","trans","original","train",3,"E3dsmnSPob","3a","acl27861"
+"19848","acl27861",19848,"I wonder how many people make themselves so miserable ironically by chasing away anyone who is attracted to them based on a very weirdly defined internet paranoia","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27860"
+"19849","acl27862",19849,"Everyone has insecurities and dysphoria, but does a girl with a giant nose care if she has a BF who doesn't mind it and thinks she is still beautiful? does not work like that","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27863"
+"19850","acl27863",19850,"Everyone has insecurities and dysphoria, but does a girl with a giant jewish nose care if she has a BF who doesn't mind it and thinks she is still beautiful? does not work like that","hate","animosity","jew","perturbation","train",3,"E3dsmnSPob","3b","acl27862"
+"19851","acl27864",19851,"i wonder should femboys take hrt so they can preserve their cuteness? and if so how much?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27865"
+"19852","acl27865",19852,"i wonder should femboys as well as fauxbians take hrt so they can preserve their cuteness?","hate","derogation","bis","perturbation","train",3,"vDe7GN0NrL","3b","acl27864"
+"19853","acl27866",19853,"Bruh there's fucking people still trying to be okay with women and we've had those from the beginning!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27867"
+"19854","acl27867",19854,"Bruh I'm still trying to adjust with women working and stuff and wish it didn't happen from the beginning.","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl27866"
+"19855","acl27868",19855,"Holy shit. Homophobia is going to end before misogyny.how ?!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27869"
+"19856","acl27869",19856,"Holy shit. Homophobia is going to end before misogyny.Owe it to fag hags","hate","derogation","gay","perturbation","train",3,"gbEGjSAk6r","3b","acl27868"
+"19857","acl2787",19857,"Gays are taking over this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19858","acl27870",19858,"most women are evil and will just follow any trend no matter how stupid","hate","derogation","wom","original","train",3,"E3dsmnSPob","3a","acl27871"
+"19859","acl27871",19859,"most brands are evil and will just follow any trend no matter how stupid","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27870"
+"19860","acl27872",19860,"I'm an expat tranny who lives in East Asia. I can't buy bras locally because anything above 34 is a plus size here, international brands simply don't sell those, and 36/38/etc bras from local companies have like D cups minimum. I'm so fucking tired of ordering bras from Amazon, and paying double the price because import fees are fucking atrocious. And don't get me started on returns, such a waste of money, I wear 38B/C, but some brands have really fucked up the sizing, so if I buy something from a new to me brand it quite likely won't fit. As the result I have a full closet of not fitting bras. Should prob give out those to local charities.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27873"
+"19861","acl27873",19861,"""I'm an expat tranny who lives in East Asia. I can't buy bras locally because anything above 34 is a plus size here, international brands simply don't sell those, and 36/38/etc bras from local companies have like D cups minimum. I'm so fucking tired of ordering bras from Amazon, and paying double the price because import fees are fucking atrocious. And don't get me started on returns, such a waste of money, I wear 38B/C, but some brands have really fucked up the sizing, so if I buy something from a new to me brand it quite likely won't fit. As the result I have a full closet of not fitting bras. Should prob give out those to local charities."" - why do trannies get to say tranny but i can't call the freaks a tranny","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl27872"
+"19862","acl27874",19862,"it's truly is the authentic woman experience. congrats. people have unnecessarily strong opinions about what you should or shouldn't do.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29636"
+"19863","acl27875",19863,"People on 4chan are unfamiliar with this concept because a lot of trans women actually end up just acting like regular people and not going onto these hyper online spaces imo.","hate","animosity","trans","original","train",3,"E3dsmnSPob","3a","acl27876"
+"19864","acl27876",19864,"People on 4chan are unfamiliar with this concept because trans women end up living normal lives and avoid these hyper online spaces imo, luckily","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27875"
+"19865","acl27877",19865,"i dont mind honestly. I'm gay but I've never really disliked or been mad at straight trans women. I guess some peopledo get mad when there's an implication that straight trans women are more legitimate, but I hear that way more from cis people than anyone else.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27878"
+"19866","acl27878",19866,"i dont mind honestly. I'm gay but I've never really disliked or been mad at straight trans women. I guess there's an implication that straight trans women are more legitimate than the rest of the community which is somehwat fair,, there are many hangers on!, but I hear that way more from cis people than anyone else.","hate","animosity","gendermin","perturbation","train",3,"E3dsmnSPob","3b","acl27877"
+"19867","acl27879",19867,"i really dont quite understand the emotions being conveyed, am i autistic? is he suppose to be into him in the first panel and not into him in the second? it doesnt seem clear","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27880"
+"19868","acl2788",19868,"How therapeutic is it blocking cunts","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19869","acl27880",19869,"i really dont quite understand the emotions being conveyed, am i a fucking retard? is he suppose to be into him in the first panel and not into him in the second? it doesnt seem clear","hate","derogation","dis","perturbation","train",3,"oemYWm1Tjg","3b","acl27879"
+"19870","acl27881",19870,"it was so weird, he grabbed me without warning so I was a bit shocked but then I felt the beard and facial hair and felt very grossed out, for a minuteI thought I was actually straight and started to panic a little bit, luckily got the grip of it when he asked me to kiss him and the more we went on the more I was felt good about it. My first and last kiss with a person still today","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl27882"
+"19871","acl27882",19871,"it was so weird, he grabbed me without warning so I was a bit shocked but then I felt the beard and facial hair and felt very grossed out, for a minuteI thought I was actually gay and started to panic a lot, luckily got the grip of it when he asked me to kiss him and the more we went on the more I was felt good about it. My first and last kiss with a person still today and the day i realised im not a deviant","hate","derogation","gay","perturbation","train",3,"eLGzdD8Tvb","3b","acl27881"
+"19872","acl27883",19872,"All you caucasians post these blogs claiming how black people are loud , rude , obnoxious, & how they talk about other people. lol , are you serious? Dont you guys see what your doing? Your being ; rude , and obnoxious , & guess what ; your talking about people. lmao, saying ""negros"" instead of African Americans?Yeah wow super respectful.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27884"
+"19873","acl27884",19873,"All you blacks post these blogs claiming how white people are loud , rude , obnoxious, & how they talk about other people. lol , are you serious? Dont you guys see what your doing? Your being ; rude , and obnoxious , & guess what ; your talking about people. lmao, saying african americans instead of niggas?Yeah wow super respectful.","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl27883"
+"19874","acl27885",19874,"Women are sexuality which means that they control sexuality. Before and due to religion and society norms women were much more grounded and men had more control. however now that women have so much choice with dating apps, and the so called sexual liberation, the power has shifted from men to women. men no longer have control. Women are way more promiscuous than ever before. This causes us men to resent them for not only how they behave but also what they expect from men etc etc. Why has this happened? Feminism over the years some say.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27886"
+"19875","acl27886",19875,"Women are entitled to control their sexuality. Before and due to religion and society norms women were much more grounded and men had more control. however now that women have so much choice with dating apps, and the so called sexual liberation, the power has shifted from men to women. men no longer have control, luckily. Women are way more independent than ever before. This causes men to resent us for not only how we behave but also what they expect from women etc etc. Why has this happened? Thanks to feminism over the years. Still long way to go","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27885"
+"19876","acl27887",19876,"Women need men for logic and critical thinking and society needs family dynamic to succeed. It's really not men's fault this is happening but rather the choice of women and technology. Shaming is a good tactic. I use shaming constantly in a subtle manner in order to subconsciously get into females brains. They do not know what they do. Most women are the worst glorified apes of all. Very primal beings. Their sexuality is a farce. Does anyone know why men get called players and women sluts? that's easy it's cause men have to work for it & women just have to open there monkey ass legs lol","hate","dehumanization","wom","original","train",3,"eLGzdD8Tvb","3a","acl27888"
+"19877","acl27888",19877,"Women don't need men for logic and critical thinking and society doesn't always need family dynamics to succeed. Men maybe at fault for this, but choice of women and technology should not be to blame. Shaming is not a good tactic. Shaming constantly in a subtle manner in order to subconsciously get into females brains is wrong. They know what you are doing. Most women should be glorified. Their sexuality is not a farce. No one should call men players or women sluts, as they are both equal in the relationship.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27887"
+"19878","acl27889",19878,"well this supposedly gets you laid if you are not able to get laid. That's the point. That's the aim of this community: getting laid even if you have to lie and pretend because women do it all the time anyway. Uncomfortable? Yes. But that's how things work.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl30352"
+"19879","acl2789",19879,"This black cow looks like these black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19880","acl27890",19880,"Economy is collapsing and i expect all this feminist garbage to go out the window. what it will really happen is women will get on their knees and shove their asses in the air","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27891"
+"19881","acl27891",19881,"Economy is collapsing and i expect all this feminist garbage to go out the window. what it will really happen is politicans will get on their knees and shove their paychecks in the air","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27890"
+"19882","acl27892",19882,"A high number of women here at least in our country are so fat and don't take care of themselves thatit's impossible they can become prostitutes","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl27893"
+"19883","acl27893",19883,"A high number of women here in our country are overweight and don't take care of themselves properly, but its not easy considering the amount of pressuure they are under.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27892"
+"19884","acl27894",19884,"nOt AlL wIvEs ArE pRoStItUtInG - I agree with you 100%. Only the 50% of them who leave and take 50% of your stuff.","hate","animosity","wom","original","train",3,"eLGzdD8Tvb","3a","acl27895"
+"19885","acl27895",19885,"nOt AlL wIvEs ArE pRoStItUtInG - I agree with you 100%.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27894"
+"19886","acl27896",19886,"if she is a virgin, then MAYBE a 5 can be considered for a long term relationship. a 5 that isn't a virgin is just an appetizer. she's no filet mignon, but doesn't mean you can't have a piece.","hate","derogation","wom","original","train",3,"eLGzdD8Tvb","3a","acl27897"
+"19887","acl27897",19887,"If she is so goodlooking, then MAYBE she can be considered for a long term relationship. A woman that s wife-material, you know? She might not be perfect but that doesn't mean she can't be the one.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27896"
+"19888","acl27898",19888,"Throughout all these years of recorded history, the black african has invented a lot. The written language, weaved cloth, a calendar,a plow, a road, a bridge, a railway, a ship, a system of measurement, oreven the wheel. There are records he has cultivated crops, domesticated single animals for his own use. Another means of transporting goods was on the top of his head. For shelter he did progress beyond the common mudhut, which could also be constructed quickly.","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl29972"
+"19889","acl27899",19889,"We white people, you see, are the only group that cannot think of ourselves as a distinct group with specific interests. We are the only group that is not allowed to elect leaders based on their membership in our group and their commitment to our interests. We whites are the race that should not speak its name. Instead, we whites are meant to pretend that we do not exist as a people, but only as adherents of the abstract """"color-blind"""" ideology of human equality. According to that ideology, we have to give away our wealth and power, degrade our standards, corrupt our culture and institutions, and reduce ourselves to a minority.","hate","animosity","non.white","original","train",3,"eLGzdD8Tvb","3a","acl27900"
+"19890","acl279",19890,"I want to impregnate you right now in your red dress and i wana undress you slowly","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19891","acl2790",19891,"This black cow looks like these black women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19892","acl27900",19892,"We as Bristol people, you see, are the only ones that cannot think of ourselves as a distinct group with specific interests. We are the only group that is not allowed to elect leaders based on their membership in our group and their support for our interests. We are the city that should not speak its name. Instead, we are meant to pretend that we do not exist as a people, but only as adherents of the abstract """"South England"""" ideology of equality. According to that ideology, we have to give away our wealth and power, degrade our standards, corrupt our culture and institutions, and reduce ourselves to nothing.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27899"
+"19893","acl27901",19893,"Honestly, these women in their 40s who believe they can just start a relationship at their age are brave. Thinking of taking a lady out to watch the NFL for the first season, what do you think?","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl30700"
+"19894","acl27902",19894,"i could go to dinner with an older woman in her 30's, but don't expect me to pay for her cause that kind of treatment is reserved for hot young women, and only on very special occasions they get that.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl27903"
+"19895","acl27903",19895,"i could go to dinner with an older woman in her 30's, but dont expect me to pay for her cause that kind of treatment is reserved for hot young women, and only on very special occasions they get that. Old birds dont deserve that as they are no longer nice enough to fuck.","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl27902"
+"19896","acl27904",19896,"Different species or otherwise, why don't they even have manners.. Even cats & dogs have manners when taught, so why can't the negroes have manners?","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl29913"
+"19897","acl27905",19897,"While whites can be brutal at times. They do not have a propensity to brutality like negroes do. They don't seem to think inflicting harm on others is amusing.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl27906"
+"19898","acl27906",19898,"While MMA fighters can be brutal at times. They do not have a propensity to brutality like drunken men do on a night out ! They don't seem to think inflicting harm on others is amusing.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27905"
+"19899","acl27907",19899,"Along with all this, homosexuality furthermore brings with it other degenerate sexual practices that are detrimental to a healthy society","hate","derogation","gay","original","train",3,"CAgNlUizNm","3a","acl27908"
+"19900","acl27908",19900,"Along with all this, it furthermore brings with it other degenerate sexual practices that are detrimental to a healthy society","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27907"
+"19901","acl27909",19901,"People can occasionally ot be identified by their physical characteristics. Some have European DNA and some have surgery. Young males in Hollywood got voted top good looking men. Generaly, Old males have lots of money. Movies also makes it look like women love the men. Don't forget men loving women for their peculiar facial features.","nothate","none","none","perturbation","train",3,"gbEGjSAk6r","3b","acl30070"
+"19902","acl2791",19902,"Muslims want to take over this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19903","acl27910",19903,"Some Jewish women go so far as to undergo surgery and dye the hair to look Borreby like Scarlet Johanson. Buffy, Padme and Wonderwomen are played by Israelis. These four Jewish women are worshipped by millions of white geeks. Stop blaming women, both genders do it.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl27911"
+"19904","acl27911",19904,"Some Jewish women go so far as to undergo surgery and dye the hair to look Borreby like Scarlet Johanson. Buffy, Padme and Wonderwomen are played by Israelis. These four Jewish women are worshipped by millions of white geeks. They are clear exceptions to the jewish rule: ugliness","hate","derogation","jew","perturbation","train",3,"oemYWm1Tjg","3b","acl27910"
+"19905","acl27912",19905,"When we have this kind of discussion looking at why some White women date black men or White men date Black women, I struggle to understand why anyone but our race's outcasts would date them","hate","derogation","bla, non.white","original","train",3,"CAgNlUizNm","3a","acl27913"
+"19906","acl27913",19906,"When we have this kind of discussion looking at why some White women date black men or White men date Black women, I struggle to understand why anyone but racists would not be willing to date them","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27912"
+"19907","acl27914",19907,"Honestly for the majority of my life I adored the Jews. If someone told me they were a jew I thought of it the same as if soneone told me they were Russian. I'm not Russian but I still consider them part of my race and that's how I considered Jewish people. I'm surprised no one else here grew up the same way. Come on, when we saw a Stephen Spielberg film, did none of you consider him one of us? I thought of him as one of us. I admit this because I don't get how people don't understand Americans ultra positive view of Jews and why hardly any white families have a problem with their kids intermarrying with them. Jews have infiltrated and driven the narrative of who they are in relation to us for decades now. We can thank our universities and Hollywood for that.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27915"
+"19908","acl27915",19908,"Honestly all of my life I adored Jewish people. If someone told me they were Jewish. I thought of it the same as if soneone told me they were Russian. I'm not Russian but I still consider them part of my race and that's how I consider Jewish people. I'm surprised no one else here thinks the same way. Come on, when we saw a Stephen Spielberg film, did none of you consider him one of us? I thought of him as one of us. I admit this because I don't get how people don't understand Americans ultra positive view of Jews and why hardly any families have a problem with their kids intermarrying. Jews have been exemplary in who they are. No thanks to Hollywood and universities for sometimes being anti-semtic though.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27914"
+"19909","acl27916",19909,"Our culture is brimming with positive feelings towards the Jewish. our culture has become centered around television and they write themselves into anything and everything. They also play white characters all the time so audiences get used to seeing their hideous features","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27917"
+"19910","acl27917",19910,"Our culture is brimming with positive feelings towards the rich. our culture has become centered around television and they write themselves into anything and everything. They also play positive characters all the time so audiences get used to seeing their features","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27916"
+"19911","acl27918",19911,"No, I in no way would I accept some fucking jew kikes intermarrying with my family. I know too much now. I'm saying I understand the naivety that is behind the silly friendly feelings many whites have about jews","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27919"
+"19912","acl27919",19912,"No, I in no way would I accept him intermarrying with my family. I know too much now. I'm saying I do not understand what is behind the silly friendly feelings many people have about him","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27918"
+"19913","acl2792",19913,"Anyone who holds a cake like this should not be running a country.. dodgy cunt","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19914","acl27920",19914,"No, I in no way would I accept jews intermarrying with my family. I know too much now. I'm saying I understand the naivety that is behind the incorrect positive feelings many whites have about jews","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27921"
+"19915","acl27921",19915,"No, in no ways would I accept lefties intermarrying with my family. I know too much now. Im saying I understand the naivete that is behind the positive feelings many whites have about communism, but keep them out of my family.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27920"
+"19916","acl27922",19916,"The thing to take solace in is that unlike ngrs who very rarely pass for anything else no matter how mixed they are, Jews who intermarry will eventually be gone within a few genrations.","hate","derogation","bla, jew","original","train",3,"CAgNlUizNm","3a","acl27923"
+"19917","acl27923",19917,"The thing to take solace in is that unlike conservatives who very rarely pass for anything else other than bigots, liberals will intermarry and eventually be the majority of the next genrations.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27922"
+"19918","acl27924",19918,"I've known this happen with many women I was interested in until I found out that they were mudsharks. One lied to me about how many kids she had, and their ages, and race. Someone was kind enough to tell me don't you know ""so and so has a couple of mixed runts?"" I'll just add their # to the block list, and be done with it. They don't deserve a man like me. They should go back to negroes and keep getting their beatings."" Useless.","hate","derogation","bla, mixed.race","original","train",3,"CAgNlUizNm","3a","acl31077"
+"19919","acl27925",19919,"If Jews have a right to set up their ethnostate, Israel, then Whites have a right to a country of their own, free of external control of its centers of power, and so do Blacks.","hate","derogation","bla, jew, non.white","original","train",3,"CAgNlUizNm","3a","acl27926"
+"19920","acl27926",19920,"I don't think Jews have a right to set up their ethnostate, Israel. If that was OK then Whites have a right to a country of their own, free of external control of its centers of power, and so do Black people. But that's not OK and anti multiculturism.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27925"
+"19921","acl27927",19921,"It must be conceded that pro-White groups often are guilty of publishing a good bit of material that ""paints"" Blacks and other non-Whites in a negative light. However, please bear in mind that more knowledgeable White Nationalists do understand that Blacks are in fact not the root cause of the growing ills of within our society. How could they possibly be? After all, it is not Blacks who control the media, the banks, the government, or the other centers of power in Western society. However, it is easier to use the more obvious example of Blacks as a first step to point out to Whites the reality of racial differences, with the ultimate goal of hopefully getting them to see and understand the Jewish problem, which is a much more difficult concept for them.","hate","derogation","bla, jew, non.white","original","train",3,"CAgNlUizNm","3a","acl27928"
+"19922","acl27928",19922,"It must be noted that pro-White groups often are guilty of publishing material that ""paints"" Blacks and other non-Whites in a negative light. Also, please bear in mind that some White Nationalists don't think that Black people are in fact not theA rootA cause of the growing ills of within our society because apprently it's Jews who control the media, the banks, the government, or the other centers of power in Western society. However, it is easier for them to use the more obvious example of black people as a first step to point out the lies of ""racial differences"", with the ultimate goal of getting people to see and understand ""the Jewish problem"", which is a much more dangerous ideology of theirs.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27927"
+"19923","acl27929",19923,"There are of course some decent people from all of the diferent races. But alot of the time non-whites generally act tribally when they're together in a group","hate","derogation","non.white","original","train",3,"CAgNlUizNm","3a","acl27930"
+"19924","acl2793",19924,"This black snake looks like these black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19925","acl27930",19925,"There are of course decent people from all of the diferent races. But alot of the time people like to be with similar people when they're together in a group","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27929"
+"19926","acl27931",19926,"Our main problem is not about hating other races, it is about finding a way to live separately from them","hate","animosity","non.white","original","train",3,"CAgNlUizNm","3a","acl30207"
+"19927","acl27932",19927,"Nobody is trying to convince anyone that Whites are perfect. However, currently, more sex crimes and murders are committed by Blacks, illegal aliens, and first and second generation Muslims. It doesn't matter what marker you use, someone will try to deflect and say, ""Well Whites do it too."" Yes, but that is beside the point. The point is that certain groups have a higher propensity.","hate","derogation","mus, bla, immig, non.white","original","train",3,"CAgNlUizNm","3a","acl27933"
+"19928","acl27933",19928,"Nobody is trying to convince anyone that tories are perfect. However, currently, more sex crimes and murders are committed under labour. It doesn't matter what marker you use, someone will try to deflect and say, ""Well many British people are like that ."" Yes, but that is beside the point. The point is a certain group of British people, mainly less-astute people who believe labour's lies, have a higher propensity.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl27932"
+"19929","acl27934",19929,"I started seeing White girls i grew around start dating Africans who had just immigrated from their respective native countries. They believed them exotic and diverse and all those liberal buzzwords. I always found it sad, because if they ever had kids...they will end up feeling like outcasts and either becoming self-loathing oddity with no sense of belonging in the world or they will end up killing themselves, or becoming an sjw. Yay multiculturalism!","hate","derogation","african","original","train",3,"CAgNlUizNm","3a","acl27935"
+"19930","acl27935",19930,"I started seeing girls i grew around start dating men who had just immigrated from their respective native countries. They believed them exotic and diverse. I always found it humbling, because if they ever had kids...they will feel like they belong and won't become self-loathing oddities with no sense of belonging in the world , they will end up loving themselves, or becoming a doctor . Yes to multiculturalism!","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl27934"
+"19931","acl27936",19931,"This isn't just negative for White people, its negative for every race. Nobody wants kids that don't look oneself. Its unnatural. But the global elite (mostly Jews and oligarchs) want to push for production of more biracial kids","hate","derogation","jew, mixed.race, non.white","original","train",3,"CAgNlUizNm","3a","acl27937"
+"19932","acl27937",19932,"This is just positive for people, it's a positive for every race. People should wants kids that look multiracial. Its natural. But the global elite want to push for production of a pure race.","nothate","none","none","perturbation","train",3,"zUUAkSVCEa","3b","acl27936"
+"19933","acl27938",19933,"Like most South Americans you probably have a little of all three races in you. Caucasoid (Caucasian), Mongoloid (Asian), and Negroid (African). There's no way to tell what your makeup is without someone looking you and your family over or, even better, taking a DNA test. Ancestry.com has them for $49 USD right now and you'd know for sure. Best of luck!","hate","derogation","asi, non.white, african","original","train",3,"CAgNlUizNm","3a","acl27939"
+"19934","acl27939",19934,"Like most South Americans you probably have a little of all three races in you. (Caucasian), (Asian), and (African). There's no way to tell what your makeup is without someone looking you and your family over or, even better, taking a DNA test. Ancestry.com has them for $49 USD right now and you'd know for sure. Best of luck!","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27938"
+"19935","acl2794",19935,"So a finding that 47% of Tory members think Islam threatens the UK way of life is not on its own proof of bigotry.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19936","acl27940",19936,"THE J3WS HAVE GONE AND TAKEN DOWN MURDOCHMURDOCH.NET ARGH NO MORE MURDOCH VIDEOS FROM THERE KILL THE J3WS. KEEP WHITES SAFE","hate","threatening","jew","original","train",3,"CAgNlUizNm","3a","acl27941"
+"19937","acl27941",19937,"THE LICENSE PEOPLE HAVE GONE AND TAKEN DOWN THE CABLE. NO MORE BBC VIDEOS FROM THERE. KILL THESE THIEVES. KEEP THE PEOPLE HAPPY'","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27940"
+"19938","acl27942",19938,"What better way is there to destroy the country and bring about communism than to incite a revolution. Fuck the j3wish media, bank and puppets.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27943"
+"19939","acl27943",19939,"What better way is there to destroy the country and bring about communism than to incite a revolution. Fuck the media, bank and puppets.","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl27942"
+"19940","acl27944",19940,"""I read an article that said Bill Gates' vaccine will be tested on blacks first; after a couple of years, almost 100% will die---and the media owners know about it (article on 4chan)"". WTF? I love Bill Gates now!","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl27945"
+"19941","acl27945",19941,"""I read an article that said Bill Gates' vaccine will be tested on blacks first; after a couple of years, almost 100% will die---and the media owners know about it (article on 4chan)"". WTF? I hate Bill Gates now!","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27944"
+"19942","acl27946",19942,"Gates does in fact hate ngrs. Can you imagine how many millions he's killed testing his vaccines so far. but this is just more hopium... Like from Q's brother NF.","hate","derogation","bla","original","train",3,"CAgNlUizNm","3a","acl29637"
+"19943","acl27947",19943,"New Mexico has made history by becoming the first state ever to elect all women of color to the House. Isn't it already bad enough that they're all women?","hate","derogation","bla, wom","original","train",3,"CAgNlUizNm","3a","acl29638"
+"19944","acl27948",19944,"The West, in general, is not doing enough to protect people from Muslims, in my opinion","hate","derogation","mus","original","train",3,"CAgNlUizNm","3a","acl27949"
+"19945","acl27949",19945,"The West, in general, is not doing enough to protect Muslims, in my opinion","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl27948"
+"19946","acl2795",19946,"This black snake looks like these black women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19947","acl27950",19947,"rich people will escape justice pretty much no matter what they do, whilst poor dudes will be locked up for life for almost anything. They attack and harm my people and there is no justice. They take our land and rape our women and there is no justice. They invade our places of worship and burn our holy places. They wish to kill our fighting spirit.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl30602"
+"19948","acl27951",19948,"Yeah I think they have no thought for anyone outside their own situation, for example why the hell would a girl who likes girls feel like wearing a His Loss jumper, WHOS LOSS?","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30863"
+"19949","acl27952",19949,"Can you not see the back door, underhanded, left-handed Sharia implementation and enforcement. The Mudslimes are laughing their dirty asses off.","hate","derogation","mus","original","train",3,"CAgNlUizNm","3a","acl27953"
+"19950","acl27953",19950,"Can you not see the back door, underhanded, left-handed Sharia implementation and enforcement. Not really on","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27952"
+"19951","acl27954",19951,"that nigger not smart enough to even be a spear chucker.. sterilize and institutionalize and let him be ""found unresponsive.""","hate","threatening","bla","original","train",3,"CAgNlUizNm","3a","acl27955"
+"19952","acl27955",19952,"that pervert is not smart enough to even be an athlete... sterilize and institutionalize and let him be ""found unresponsive.""","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27954"
+"19953","acl27956",19953,"ikr like the majority of girls who have guy friends, made them at school? And i seriously can't relate to having any sexual relations to any of the guys at my school or the vast majority for sure So it makes sense for people to be friends with anyone regardless of their gender?.... I feel like if they went to uni or had more friends they would've got so much more life experience","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27957"
+"19954","acl27957",19954,"ikr like the majority of girls who have guy friends fucked them at school. And i seriously can't relate to having any sexual relations to any of the guys at my school or the vast majority for sure. So it makes sense for people to just be friends with their gender..... I feel like if they went to uni or had more female friends they would've got so much more life experience","hate","animosity","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl27956"
+"19955","acl27958",19955,"There is absolutely no point of a 45 IQ bearing Somalian (the absolute worst type of nignog) criminal scumbag. Back in the days 50 niggers would have been lynched publically after this, leaving a few dead. What the fuck has happened to our race? Oh yeah, the jews. I remember now","hate","derogation","bla, jew, non.white","original","train",3,"CAgNlUizNm","3a","acl27959"
+"19956","acl27959",19956,"There is absolutely no point of a Gibson 1957 SJ-200 (the absolute worst type of guitarr) fucking scumbag. Back in the days a classic one would have been enough for a show like this, leaving a few impressed. What the fuck has happened to instruments now? Oh yeah, the luthiers. I remember now","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl27958"
+"19957","acl2796",19957,"This black spider looks exactly like these black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"19958","acl27960",19958,"If that ngr is clever enough to get his skinny ass into this country, he's competent enough to be held responsible for chimping out.","hate","dehumanization","bla","original","train",3,"CAgNlUizNm","3a","acl27961"
+"19959","acl27961",19959,"If that anti-black criminal is clever enough to get his ass into this country, he's competent enough to be held responsible for his actions.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27960"
+"19960","acl27962",19960,"Just kill that fucking n!ggh3rr and be done with it already, is what I am sure someone is currently saying...","hate","threatening","bla","original","train",3,"CAgNlUizNm","3a","acl27963"
+"19961","acl27963",19961,"Just kill that fucking cunt and be done with it already, is what I am sure someone is currently saying...","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl27962"
+"19962","acl27964",19962,"Do you not know that Muslims and Jews are ""HEBREW BROTHERS"" and both consider themselves to be the ""CHILDREN OF ABRAHAM""....the muzzies are dictated to by the jew. The ""GOLDEN AGE OF ISLAM"" wouldn't have been possible without the assistance of the jew in fact, jews hired the muslims to round up African slaves during the Atlantic Slave Trade...even the Barbary Pirates leased ships from the jew. BOTH ARE FILTHY SWINE","hate","derogation","mus, jew","original","train",3,"CAgNlUizNm","3a","acl29639"
+"19963","acl27965",19963,"With muzzies, exactly the same as with jews, even their actions are lies. On any topic about which they have some dumb opinion which happens to be consonant with what is actually true, their ideology is only circumstantial and lucky. Fuck islam.","hate","derogation","mus, jew","original","train",3,"CAgNlUizNm","3a","acl27966"
+"19964","acl27966",19964,"With tories, exactly the same as with republicans, even their actions are lies. On any topic about which they have some dumb opinion which happens to be consonant with what is actually true, their ideology is only circumstantial and lucky. Fuck the right wingers","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl27965"
+"19965","acl27967",19965,"Remember: Never go on the defensive, always go on the offensive.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27968"
+"19966","acl27968",19966,"Remember: Those whores never go on the defensive, they're always go on the offensive.","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl27967"
+"19967","acl27969",19967,"Different doesnt mean better though. I admit that there are some things women are good at. Like being the first to notice a smell in the room","hate","animosity","wom","original","train",3,"CAgNlUizNm","3a","acl27970"
+"19968","acl2797",19968,"If ur northern and vote tory youre a registered sex offender","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19969","acl27970",19969,"Different doesnt mean better though. I admit that there are some things smaller dogs are good at. Like being the first to notice a smell in the room","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl27969"
+"19970","acl27971",19970,"Yes iis the only answer, sure is a convenient evasion if necessary.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27972"
+"19971","acl27972",19971,"Yes is the only answer to do you want to hurt some fags feelings.","hate","derogation","gay.man","perturbation","train",3,"GNZuCtwed3","3b","acl27971"
+"19972","acl27973",19972,"Have you ever had a go at ""modern"" dating? The men have to be smart, have a good career, be funny, have money, be tall, be fit, and good-looking. Women need to just be okay looking and have a vagina.","hate","derogation","wom","original","train",3,"CAgNlUizNm","3a","acl27974"
+"19973","acl27974",19973,"Have you ever seen old dating shows? Women have to be smart and docile at the same, have a good family plan, be funny and beautiful. Men need to just be okay looking and have a dick.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl27973"
+"19974","acl27975",19974,"You keep repeating it, the clip of Trumps son repeats it, but in the debate Trump didn't suggest to stand down at all, he said stand back and stand by. That isn't stand down. It works much better if we listen.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27976"
+"19975","acl27976",19975,"You keep repeating it, the clip of Trumps son repeats it, but in the debate Trump didn't suggest to stand down at all, he said stand back and stand by. That isn't stand down. It works much better if we listen. We need to be prepared to fight the non-yts","hate","derogation","non.white","perturbation","train",3,"CAgNlUizNm","3b","acl27975"
+"19976","acl27977",19976,"women dont even need to be okay looking for men to be interested. they just have to exist.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl27978"
+"19977","acl27978",19977,"women need men to be interested into them otherwise they are so weak thay they think they don't even deserve to exist.","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl27977"
+"19978","acl27979",19978,"Identity surelt takes them down.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27980"
+"19979","acl2798",19979,"As if the Tories think anyone gives a shiny shit about their conference while were trapped in our houses literally existing.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"19980","acl27980",19980,"gender Identity surely takes them down and makes them worse?","hate","animosity","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl27979"
+"19981","acl27981",19981,"Why won't the video unmute? It's irritating!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27982"
+"19982","acl27982",19982,"Why won't all women just be mute? It's irritating!","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl27981"
+"19983","acl27983",19983,"What Trump should've said is, I'm against any type of supremacy and all lives matter.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27984"
+"19984","acl27984",19984,"What Trump should've said is, I'm pro white supremacy and white lives matter. Whites have achieved more than any other race.","hate","derogation","non.white","perturbation","train",3,"vDe7GN0NrL","3b","acl27983"
+"19985","acl27985",19985,"The problem lies with kikes convincing Men to go and die in World War one, and other wars that the USA had no business being involved in. It ALWAYS comes back to the kikes. Every. Single. Time.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl27986"
+"19986","acl27986",19986,"The problem lies with the republicans convincing Men to go and die in World War one, and other wars that the USA had no business being involved in. It ALWAYS comes back to the government. Every. Single. Time.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl27985"
+"19987","acl27987",19987,"Were you interested in reporting the real news you'll have to do a lot more research and get the facts before you spout your ill informed statements that are clouded by preconceived ideas and prejudices","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27988"
+"19988","acl27988",19988,"Were you interested in reporting the real news? you'll have to do a lot more research and get the facts before you spout your statements that are clouded by preconceived ideas and prejudices about cops. Remove the ill informed blm protestors, especially the blacks whos minds are brainless.","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl27987"
+"19989","acl27989",19989,"Feminism definitely is a crappy test that men failed, but it's also a lot wider than that. It's about kikes destroying the nuclear family and flooding the job market with more bodies in order to stagnate wages. It's meant to destroy white societies.","hate","derogation","wom, jew, non.white","original","train",3,"CAgNlUizNm","3a","acl27990"
+"19990","acl2799",19990,"We're a small island, we can't support all these black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"19991","acl27990",19991,"Covid definitely feels like a crappy test that we failed, but our problems go a lot wider than that. It's about divorce rates destroying the nuclear family and the job market suffering with stagnated wages. Sometimes it feels like society is being destroyed in these modern times. I wish we could destroy this virus","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl27989"
+"19992","acl27991",19992,"fucking hell! Pure bread and circuses, utter shit. All of this. Ten minutes in and that was enough. I'd like 9.5 of those minutes back.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27992"
+"19993","acl27992",19993,"fucking hell! Pure bread and circuses of yids, utter shit. All of this. Ten minutes in and that was enough. I'd like 9.5 of those minutes back.","hate","derogation","jew","perturbation","train",3,"zUUAkSVCEa","3b","acl27991"
+"19994","acl27993",19994,"15 minutes in and cinzia has unboxed all of the food, had her hands all over her food, sophias food, and in all the boxes. The whole ""is this fake or real chicken?"" and creating a huge scene around it was just a distraction so she could avoid the food for longer. Sophia just sat and ate throughout the whole thing but I honestly don't think I could eat with cinzia it was such a stressful environment lol She creates so much faff.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27994"
+"19995","acl27994",19995,"15 minutes in and cinzia has unboxed all of the food, had her hands all over her food, sophias food, and in all the boxes. The whole -is this fake or real chicken? and creating a huge scene around it was just a distraction so she could avoid the food for longer. Sophia just sat and ate throughout the whole thing but I honestly dont think I could eat with cinzia it was such a stressful environment lol She creates so much faff and shes such a self centred bitch.","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl27993"
+"19996","acl27995",19996,"one of my friends suffered with an eating disorder and she use to do things like this all the time. Not diagnosing but with some kf te comments she's made previously I think she goes through stages of disordered eating","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl27996"
+"19997","acl27996",19997,"one of my virginal friends suffered with an eating disorder and she use to do things as stupid like this all the time. Not diagnosing but with some kf te comments she's made previously I think she goes through stages of disordered eating, such an insecure whore.","hate","derogation","wom","perturbation","train",3,"gbEGjSAk6r","3b","acl27995"
+"19998","acl27997",19998,"Law & Order chant would be Trump's excuse for bringing in martial law and massive gun confiscation","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl27998"
+"19999","acl27998",19999,"Law & Order chant would be Trump's excuse for bringing in martial law, deporting dirty mexicans and massive gun confiscation","hate","derogation","hispanic","perturbation","train",3,"yjMQ90i6Rd","3b","acl27997"
+"20000","acl27999",20000,"Like the meme indicated, pre-church dickins are at an all time high. And as well as this, every girl i met that grew up churchy, had """"the church girl"""" side, and """"outside church"""" side. And lemme tell ya what, them church girls are genetically half vacuum cleaner.","hate","animosity","wom","original","train",3,"CAgNlUizNm","3a","acl28000"
+"20001","acl28",20001,"kids are dumb","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"20002","acl280",20002,"in our society boys can not be gay , if they wana be gay, they should leave","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20003","acl2800",20003,"We're a small island, we can't support all these Foreigners","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20004","acl28000",20004,"Like the meme indicated, pre-church meetings are at an all time high. And as well as this, every person i met that grew up churchy, had """"the church"""" side, and """"outside church"""" side. And lemme tell ya what, them church people are genetically half angels.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl27999"
+"20005","acl28001",20005,"Playing both sides, not surprinsing...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28002"
+"20006","acl28002",20006,"Trans people playing both sides, not surprinsing","hate","animosity","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl28001"
+"20007","acl28003",20007,"I was just going to say that Proud Boys suck big time","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28004"
+"20008","acl28004",20008,"I was just going to say that Proud trans suck big time","hate","derogation","trans","perturbation","train",3,"oemYWm1Tjg","3b","acl28003"
+"20009","acl28005",20009,"Who even thought those sweatshirts were a good idea??? i have the worst second-hand embarrassment omg are they in year 9 but also like I feel like they want to present themselves as mature, in the more mature styles they've been wearing (if you can call it that lol) and the fact that they both have mortages and are on that celeb dating app etc etc but that's like the most immature thing they could possibly do and makes them appear really bitter and petty about their breakups, they're acting like children","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30645"
+"20010","acl28006",20010,"Women these days are totally lost. Once a slut always a slut, period. They begin in school, at least back when i was a kid, probably elementary school these days. Every, single, girl, EVER, that I've met that put forth a virginal facade, I've become excellent friends with, and 4 or 5 years later, after ive changed their tires and saved their asses countless times, Im in, they fully trust me, I havent tried fucking them, I'm reliable, likeable, and they think I'm not judgmental. And then they open up honestly about their sexual habits. Maybe they think Im a faggot and thats why they open up, regardless, I've had vastly more female friends my entire life than male, and it is a 100% situation that i eventually hear, from ALL these girls... ""i used to fuck my cousin"" ""i fucked 5 black guys in high school"" ""i had an abortion in highschool"" ""i have herpes"" ""sometimes id fuck my boyfriend, and after he left id have another guy immediately come over"". And it goes on, and on, and on. While previously they told no one these things. Their outter persona is of a modestly dressed, lightly makeup'd face, well mannered lady. While back at home they have a rubber cast of tyrones dongus since he went to prison.","hate","derogation","bla, wom, gay","original","train",3,"CAgNlUizNm","3a","acl28007"
+"20011","acl28007",20011,"Young people these days are totally lost. They begin school, at least back when i was a kid, and then have to study for 15 years after elementary school these days. Every, single, person, ever, that I've met, I've become excellent friends with, and 4 or 5 years later, after ive changed their tires and saved their asses countless times, Im in, they fully trust me, I'm reliable, likeable, and they think I'm not judgmental. And then they open up honestly about their habits. Maybe they think Im a ace and thats why they open up, regardless, I've had vastly more female friends my entire life than male, and it is a 100% situation that i eventually hear, from girls... ""i used to want to give up"" ""i fucked up in high school"" ""i had an abortion in high school"". And it goes on, and on, and on. While previously they told no one these things. Their outter persona is of a modestly dressed, well mannered person. But back at home they have a lot of unhappy thoughts.","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl28006"
+"20012","acl28008",20012,"I am NOT watching another fucking (((Chris Wallace))) debate!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29641"
+"20013","acl28009",20013,"Hey y'all, check out the theory that George Washington was King George the third and was made the first president. The pictures match and the ages match of him disappearing from England and covering for his absence as calling him mad to isolate his disappearance. Like they did with Obama, made up his past, birth, parents, kids, etc. A professional investigator has proven Obama was born in Canada. Why couldn't Washington be the same? Washington was king George's name as well. Coincidence? Why wouldn't the lies go back even farther to cover for this evil we still live with?","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28010"
+"20014","acl2801",20014,"you cant just spout this shit with no explanation or no support plan in place, this is peoples jobs youre threatening! Im so fucking done with this ridiculous government, honestly if youve ever voted Tory youre a pure selfish mong","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20015","acl28010",20015,"Hey y'all, check out the theory that George Washington was King George the third and was made the first president. The pictures match and the ages match of him disappearing from England and covering for his absence as calling him mad to isolate his disappearance. Like they did with Obama, made up his past, birth, parents, kids, etc. A professional investigator has proven Obama was born in Canada. Why couldn't Washington be the same? Washington was king George's name as well. Coincidence? Why wouldn't the lies go back even farther to cover for this evil we still live with? I bet there's also a kike conspiracy theory behind this, never fails","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl28009"
+"20016","acl28011",20016,"If you are convinced that you're a decent woman, really fucking think hard about it. Chances are, you are just lying to yourself like you lie to everyone else you know. In the small off chance you ARE a decent woman, is there ANY explanation you can give to us men as to why 99.999% of you are disgusting retarded sluts? Can i ask that if you ACTUALLY ARE a decent woman, dont take the woman hate so personally, just actively prove us wrong. (And being a stupid mouthy cunt isnt the way to do it helena).","hate","derogation","wom, gay","original","train",3,"CAgNlUizNm","3a","acl28012"
+"20017","acl28012",20017,"read a post that said: 'If you are convinced that you're a decent woman, really fucking think hard about it. Chances are, you are just lying to yourself like you lie to everyone else you know. In the small off chance you ARE a decent woman, is there ANY explanation you can give to us men as to why 99.999% of you are disgusting retarded sluts? Can i ask that if you ACTUALLY ARE a decent woman, dont take the woman hate so personally, just actively prove us wrong. (And being a stupid mouthy cunt isnt the way to do it helena).' whats wrong with this people?","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl28011"
+"20018","acl28013",20018,"? What's this shit? What would the point be ? My first reaction is how bogus all that is - then I re-read and I don't deny - can't deny - that the lies are so, so deep at this point it's kind of like ""Who knows?"" That said, what would the point be? Have you read anything Washington said? Have you read what the Specie Act was, and why the major reasons for that civil war happened? It was bank rebellion. The US colonies were in rebellion against the Bank of England.... that's the whole ""taxation without representation.""","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30332"
+"20019","acl28014",20019,"I could go on about this for hours. But he general point is that women are liars and manipulators and whores, the decent ones eventually open to show that no, they are actually just more trash. Where are ANY even remotely decent women? Its not church, its not whole foods at 4 am, or noon, or 2 pm, its not the trails in the woods, its not the bank, its not the mechanics, its not the gun store, so where? If they exist, are they all basement dwelling nerds?","hate","dehumanization","wom","original","train",3,"CAgNlUizNm","3a","acl30126"
+"20020","acl28015",20020,"I assure you all of this is staged, fucking hell. Prove me wrong.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29746"
+"20021","acl28016",20021,"It's a fucking sad state of affairs and shows the fucked up reality we live in. I long for the days where women weren't whores and everyone got married young. Fuckin jews.","hate","derogation","wom, jew","original","train",3,"CAgNlUizNm","3a","acl28017"
+"20022","acl28017",20022,"It's a fucking sad state of affairs and shows the fucked up reality we live in. I long for the days where women weren't treated as whores and everyone got married to the person they love. Fucking tyranny!","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl28016"
+"20023","acl28018",20023,"FUCK SHIT! We're in deep shit, what are we going to do??!!!! I KNOW: KICK OUT ALL THE IMMIGRANTS!","hate","threatening","immig","perturbation","train",3,"TrRF46JWfP","3b","acl29753"
+"20024","acl28019",20024,"Absolutely. Nobody ever considered the effects it would have on society, allowing women to be such total whores. Feminism has completely ruined many men's chances at having a stable family life with a faithful woman of good character and values","hate","derogation","wom","original","train",3,"CAgNlUizNm","3a","acl28020"
+"20025","acl2802",20025,"you cant just spout this shit with no explanation or no support plan in place, this is peoples jobs youre threatening!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20026","acl28020",20026,"Absolutely. Nobody ever considered the effects it would have on society, allowing people to be such total failures. Modernity has completely ruined many chances at having a stable family life with faithful partners of good character and values","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl28019"
+"20027","acl28021",20027,"That worm is turning in his grave now","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28022"
+"20028","acl28022",20028,"That worm is turning in their grave now for not supporting Hitler","hate","support","hitler","perturbation","train",3,"LqLKTtrOmx","3b","acl28021"
+"20029","acl28023",20029,"Adam you really need to send this video to your gay neighbour, I bet it's what he likes and he wont be all that fucking shocked to see it. He's switched off the reply button on his tweets so no-one can respond!!! Its funny to see him being laughed at in the video !","hate","animosity","gay.man","perturbation","train",3,"vDe7GN0NrL","3b","acl31036"
+"20030","acl28024",20030,"Not possible. They make you take a DNA test to find your ancestry","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28025"
+"20031","acl28025",20031,"Not possible. They make you take a DNA test to find your ancestry, must be hella confusing for swirls lol","hate","derogation","mixed.race","perturbation","train",3,"GNZuCtwed3","3b","acl28024"
+"20032","acl28026",20032,"No country in the world today is actually Muslim, they're all hypocrites who want to keep their fascist dictatorships intact under the guise of Islam. Have you not noticed how luxuriously the Saudi kings live? How the royal family hires the sexiest hos and drives the biggest cars? Do you really think they pay their Zakat or do anything remotely Islamic other than for appearances?","hate","derogation","mus, wom","original","train",3,"CAgNlUizNm","3a","acl28027"
+"20033","acl28027",20033,"No country in the world today is actually good, they're all hypocrites who want to keep their fascist dictatorships intact. Have you not noticed how luxuriously the kings live? How the royal family hires the sexiest girls and drives the biggest cars? Do you really think they pay their tax or do anything remotely good other than for appearances?","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl28026"
+"20034","acl28028",20034,"Yes, unfortunately it does seem that way. It makes me so fucking angry!!!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28029"
+"20035","acl28029",20035,"Yes, unfortunately it does seem that way that the foreigners take our jobs. It makes me so fucking angry!!!","hate","derogation","for","perturbation","train",3,"TrRF46JWfP","3b","acl28028"
+"20036","acl2803",20036,"Im so fucking done with this ridiculous government, honestly if youve ever voted Tory youre a pure selfish mong","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20037","acl28030",20037,"Nobody cares about FTMs so no studies are done on them","hate","derogation","trans","original","train",3,"CAgNlUizNm","3a","acl28031"
+"20038","acl28031",20038,"Nobody cares about insects so no studies are done on them","nothate","none","none","perturbation","train",3,"yjMQ90i6Rd","3b","acl28030"
+"20039","acl28032",20039,"Don't be wrong, Trump cannot disavow that which does not exist.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28033"
+"20040","acl28033",20040,"Don't be wrong, we cannot disavow that which does not exist, hence trans","hate","derogation","trans","perturbation","train",3,"oemYWm1Tjg","3b","acl28032"
+"20041","acl28034",20041,"everybody is expected to walk on eggshells around trans people","hate","animosity","trans","original","train",3,"CAgNlUizNm","3a","acl28035"
+"20042","acl28035",20042,"everybody is expected to walk on eggshells around Tim after he lost his job","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl28034"
+"20043","acl28036",20043,"Agreed all they can do is personally attack that fucker","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28037"
+"20044","acl28037",20044,"Agreed all black dudes can do is personally attack that woman","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl28036"
+"20045","acl28038",20045,"the funny thing is that that her friend goes around telling everyone she knows about every tranner she knows, and that's socially autistic. that's like telling everyone you have a friend with cancer.","hate","derogation","dis, trans","original","train",3,"CAgNlUizNm","3a","acl28039"
+"20046","acl28039",20046,"the weird thing is that her friend goes around telling everyone she's friend with trans person, and that's socially inept. that's like telling everyone you have a black friend.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl28038"
+"20047","acl2804",20047,"Tories don't give a shit about football teams, especially the lower division ones, and their racist base probably don't care either","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20048","acl28040",20048,"Duh. You're not rockin' our world, you retard","hate","derogation","dis","perturbation","train",3,"eLGzdD8Tvb","3b","acl30394"
+"20049","acl28041",20049,"I would like to know why it is that there is so many MtF trans people in comparison to trans guys? Personally, I have nothing against them, and I've never thought they are disgusting or predatory as some fucked-up people say.","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl30500"
+"20050","acl28042",20050,"regret to inform you that you're preaching to the wrong choir, my friend.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28043"
+"20051","acl28043",20051,"regret to inform you that you're preaching to the wrong choir, my friend. I am never going to stand for equality for those freakezoids, mentally fucked up tards","hate","derogation","dis","perturbation","train",3,"TrRF46JWfP","3b","acl28042"
+"20052","acl28044",20052,"God dang it Adam, I can't believe seeing you against that lady getting her birth right. You are SO wrong! Everyone deserves and should get there birthright.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29642"
+"20053","acl28045",20053,"Professors can and WILL fuck you over, and in my case, it was my unironically Jewish holocaust granddaughter survivor with story and all to go with it. Fuck kikes and NEVER THINK FOR ONE SECOND THE SCHOOL SYSTEM IS FAIR-- The moment you do, you've made a huge mistake.","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl29643"
+"20054","acl28046",20054,"Our enemies sure are showing their hands to anyone clever enough to listen","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28047"
+"20055","acl28047",20055,"Our enemies sure are showing their hands to anyone clever enough to listen. That's why Muslims are getting so much aid and benefits nowadays","hate","derogation","mus","perturbation","train",3,"TrRF46JWfP","3b","acl28046"
+"20056","acl28048",20056,"It's all theater and Trump knows his public role is to be the ""bad guy"". It's the whole ""don't through me in that briar patch"" ruse all over again.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30014"
+"20057","acl28049",20057,"We already know that jews control us through vices such as porn and entertainment, how do we reset our minds back to preJew days? How long does it take? Any wisdom on this? I've been off porn for a few weeks now and just feel negative most of the time","hate","derogation","jew","original","train",3,"CAgNlUizNm","3a","acl28050"
+"20058","acl2805",20058,"We're a small island, we can't support all these Indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20059","acl28050",20059,"We already know that rich businessmen control us through vices such as porn and entertainment, how do we reset our minds back to old days? How long does it take? Any wisdom on this? I've been off porn for a few weeks now and just feel negative most of the time","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl28049"
+"20060","acl28051",20060,"2 old stinking farts, who as a result have exactly the same opinion on all essential points, because they are bought by the same people, are talking meaningless stupid stuff, which others have written down for them to make it appear that they are political opponents. And the stammering goes on and on for hours on end ! UNBEARABLE! A waste of time trying to answer a single point these assholes are making. It is an insult to the mind to listen to this rubbish to the end. Sorry, but as long as the slaves waste their time analysing such rubbish, no wonder it goes further and further into total slavery.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28052"
+"20061","acl28052",20061,"2 old men, who as a result have exactly the same opinion on all Jew related issues, because they are bought by the same people (jews), are talking meaningless stupid stuff, which others have written down for them to make it appear that they are political opponents. And the stammering goes on and on for hours on end ! UNBEARABLE! A waste of time trying to answer a single point these assholes are making. It is an insult to the mind to listen to this rubbish to the end. Sorry, but as long as the slaves waste their time analysing such rubbish, no wonder it goes further and further into total slavery.","hate","animosity","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl28051"
+"20062","acl28053",20062,"I don't recall anything about this, is this a newfag joke or am I the newfag?","hate","derogation","gay","original","train",3,"CAgNlUizNm","3a","acl28054"
+"20063","acl28054",20063,"I don't recall anything about this, is this a new joke or am I the newbie?","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl28053"
+"20064","acl28055",20064,"You're such a good man Adam. Cheers for this.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28056"
+"20065","acl28056",20065,"You're such a good little soyboy Adam. Cheers for this.","hate","derogation","gay","perturbation","train",3,"yjMQ90i6Rd","3b","acl28055"
+"20066","acl28057",20066,"Classic case of newfag trying to fit in. Being hyper aggressive and triggered don't make you part of this community.","hate","derogation","gay","original","train",3,"CAgNlUizNm","3a","acl29644"
+"20067","acl28058",20067,"I'm so fucking confused. I don't know who anyone is anymore. How or when will this bloody nonsense end?","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28059"
+"20068","acl28059",20068,"I'm so fucking confused. I don't know who anyone is anymore. How or when will this bloody nonbinary nonsense end?","hate","derogation","gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl28058"
+"20069","acl2806",20069,"you lying sack of shit @RishiSunak","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20070","acl28060",20070,"He's stated several times that he does not agree with their inheritance claims. It's fucking clear! He simply recounts their claims and uses their own texts to explain and expose their views and plans","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28061"
+"20071","acl28061",20071,"He's stated several times that he does not agree with jews' inheritance claims. It's fucking clear! He simply recounts their claims and uses their own texts to explain and expose their evil views and plans","hate","derogation","jew","perturbation","train",3,"oemYWm1Tjg","3b","acl28060"
+"20072","acl28062",20072,"It's just a crappy internet meme but trannys are so delusional that there are creatures who actually believe it","hate","derogation","trans","original","train",3,"CAgNlUizNm","3a","acl28063"
+"20073","acl28063",20073,"It's just a crappy internet meme but people on twitter are so delusional that there are idiots who actually believe it","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl28062"
+"20074","acl28064",20074,"Open your eyes: It's called the ''Alice in wonderland technique' ""The aim of the Alice in Wonderland or confusion technique is to confound the expectations and conditioned reactions of the interrogatee. He is accustomed to a world that makes sense, at least to him: a world of continuity and logic, a predictable world.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28065"
+"20075","acl28065",20075,"Open your eyes: It's called the ''Alice in wonderland technique' The aim of the Alice in Wonderland or confusion technique is to confound the expectations and conditioned reactions of those immigrent vermin. They are accustomed to a world that makes sense, at least to him: a world of continuity and logic, a predictable world.","hate","derogation","immig","perturbation","train",3,"Z42dvbYWzV","3b","acl28064"
+"20076","acl28066",20076,"Trump said stand back and stand by. Standing back is letting the ANTIFA do what they want to do. Both men are handing the country over to our enemies. Stand back and stand by is about as helpful as ""Trust the Plan"".","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28067"
+"20077","acl28067",20077,"Trump said stand back and stand by. Standing back is letting the latin gangsters do what they want to do. Both men are handing the country over to our enemies. Stand back and stand by is about as helpful as ""Trust the Plan"".","hate","derogation","hispanic","perturbation","train",3,"eLGzdD8Tvb","3b","acl28066"
+"20078","acl28068",20078,"Bullshit!! How about ""the acting ""president"" will be judged by his ""performance""? What You mean it's NOT real? Yup! Be Good! blackhat.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28069"
+"20079","acl28069",20079,"Bullshit!! How about ""the acting kebabi ""president"" will be judged by his ""performance""? What You mean it's NOT real? Yup! Be Good! blackhat.","hate","derogation","mus","perturbation","train",3,"yjMQ90i6Rd","3b","acl28068"
+"20080","acl2807",20080,"EATOUT TO HELP OUT second wave incoming, Jail the clusterfuck of Tory, thieves, liars, parasites","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20081","acl28070",20081,"From what I've seen, she was an absolute assh0le to her kids as well by all accounts. She's female so, like.. what else is new?","hate","animosity","wom","perturbation","train",3,"CAgNlUizNm","3b","acl30635"
+"20082","acl28071",20082,"Hi! You might remember my letters of last year. I'd ask you Adam to try to NOT get too involved / emotional about ALL this fucking theater!!!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28072"
+"20083","acl28072",20083,"Hi! You might remember my letters of last year. I know that might be hard for you because you're gay, but Adam try to NOT get too involved / emotional about ALL this fucking theater!!!","hate","derogation","gay","perturbation","train",3,"GNZuCtwed3","3b","acl28071"
+"20084","acl28073",20084,"Hinch is an idea stealing parasite. Stacey managed to get a book deal and now the grinch wants the same - she's the type of person to do this she is an untalented materialistic cunt","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28074"
+"20085","acl28074",20085,"Hinch is an idea stealing parasite. Stacey managed to get a book deal and now the grinch wants the same - she's the type of person to do this she is an untalented materialistic jewish cunt","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl28073"
+"20086","acl28075",20086,"Yes, the Queens gambit is very good! I saw the movie Call Me By Your Name a week ago. I know it's a 2017 movie but it's one of my favorites. Best movie of 2020 has got to be Parasite. Not sure if it's a 2020 movie, so I'll ask another time","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28076"
+"20087","acl28076",20087,"Yes, the Queens gambit is very good! I saw the movie Call Me By Your Name a week ago. I know it's a movie about faggots but it's one of my favorites. Best movie of 2020 has got to be Parasite. Not sure if it's a 2020 movie, so I'll ask another time","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl28075"
+"20088","acl28077",20088,"What has society come to at this point? For all it's faults, at least in the soviet union youth was taught to respect all races","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28078"
+"20089","acl28078",20089,"What has society come to at this point? For all it's faults, at least in the soviet union youth was taught only to respect the master race.","hate","animosity","non.white","perturbation","train",3,"Z42dvbYWzV","3b","acl28077"
+"20090","acl28079",20090,"The evidence pours in! Pocahontas are complete idiots!","hate","derogation","indig.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl30896"
+"20091","acl2808",20091,"We're a small island, we can't support all these blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20092","acl28080",20092,"n my view, the anti european rhetoric is an extreme concern.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29645"
+"20093","acl28081",20093,"last week they were both in the kitchen and that prick had the camera and was screaming at him and aggressively pointing at Leigh. I actually felt a bit sorry for him but only for a while as I remembered he's a parasite who sponges off his PAYG pals","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28082"
+"20094","acl28082",20094,"last week they were both in the kitchen and that prick had the camera and was screaming at him and aggressively pointing at Leigh. I actually felt a bit sorry for him but only for a while as I remembered he's a gypsy who sponges off his PAYG pals","hate","animosity","trav","perturbation","train",3,"LqLKTtrOmx","3b","acl28081"
+"20095","acl28083",20095,"What's is fucking sickening is that the anti white rhetoric gets parroted by whites themselves. Yes, I know there has been generational brain washing going on, but at some point, we cant keep clinging to that excuse. Not when we have eyes in our head to see. Not when we have a brain to think.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28084"
+"20096","acl28084",20096,"What's is fucking sickening is that the anti white rhetoric gets parroted by whites themselves. Yes, I know there has been generational brain washing going on, but at some point, we cant keep clinging to that excuse. Not when we have eyes in our head to see. Not when we have a brain to think, unlike the non whites.","hate","derogation","non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl28083"
+"20097","acl28085",20097,"Let's not forget that the Leftist media just makes up labels for people without any evidence.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28086"
+"20098","acl28086",20098,"Let's not forget that the Righwing media just makes up labels for people without any evidence, except for Muslims of course.","hate","animosity","mus","perturbation","train",3,"LqLKTtrOmx","3b","acl28085"
+"20099","acl28087",20099,"2 years ago I was unwell & undergoing medical procedures over Christmas so as my present my sister in law got me a book about a woman from Africa. She said it was to make me grateful for how other folk have it much worse than me. I get her point but the book actually inspired me to hate people from there","hate","derogation","african","perturbation","train",3,"GNZuCtwed3","3b","acl31035"
+"20100","acl28088",20100,"Some people are just so vile and distasteful. Like those who use the word n*gg*r incessantly on pseudonymous 'free speech' forums.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28089"
+"20101","acl28089",20101,"Some people are just so PC and arrogant. Like those who don't use the word nigger on online forums.","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl28088"
+"20102","acl2809",20102,"We're a small island, we can't support all these negroes","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20103","acl28090",20103,"TO THE LEFT WHITE SUPREMACY IS ANY WHITE PERSON WHO STANDS UP FOR HIMSELF. FUCKING PRICKS. White supremacy is a myth today. Have you heard any white person say today they think white people should rule over non-whites and dominate them. No.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28091"
+"20104","acl28091",20104,"TO THE LEFT WHITE SUPREMACY IS ANY WHITE PERSON WHO STANDS UP FOR HIMSELF. FUCKING PRICKS. White supremacy is a myth today. Have you heard any white person say today they think white people should rule over non-whites and dominate them. No. Why do we have to listen to these whiny snowflakes who are giving more rights to foreigners, why are we ignored just because we are born white?","hate","animosity","for","perturbation","train",3,"zUUAkSVCEa","3b","acl28090"
+"20105","acl28092",20105,"We can see from old vlogs that they haven't spent Christmas Day with her for the last few years so we shouldn't be surprised by this. It jst makes me sick me the way that poor woman gets treated. What a pair of selfish horrible twats. Remember her whinging at the start of the pandemic saying she felt vulnerable, well imagine how Mrs G feels being fucked off by her only son and his vile controlling wife.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28093"
+"20106","acl28093",20106,"We can see from old vlogs that they haven't spent Christmas Day with her for the last few years so we shouldn't be surprised by this as she is a whore, as all women are. It jst makes me happy the way women get treated, they are selfish horrible twats. Remember her whinging at the start of the pandemic saying she felt vulnerable, well imagine how Mrs G feels being fucked off by her only son and his vile controlling wife.","hate","derogation","wom","perturbation","train",3,"gbEGjSAk6r","3b","acl28092"
+"20107","acl28094",20107,"Well then, I guess I won't be getting notified of new vids from Bitchute or DLive.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29646"
+"20108","acl28095",20108,"The 'debate' was a farce, painful to listen to on both sides. It can be reduced to two old men trading petty insults. Whoever wins, we lose","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28096"
+"20109","acl28096",20109,"The 'debate' was a farce, painful to listen to on both sides. It can be reduced to two pussies trading petty insults. Whoever wins, we lose","hate","animosity","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl28095"
+"20110","acl28097",20110,"I never registered my very racist and defying lock down church for a reason. The government has no purpose in being religious. All my services is free as well. No need for non profit. We just want to help people.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28098"
+"20111","acl28098",20111,"I never registered to my church for a reason. I have no purpose in being religious, especially not jewish! All my services is free as well. No need for non profit. We just want to help like-minded people .","hate","animosity","jew","perturbation","train",3,"E3dsmnSPob","3b","acl28097"
+"20112","acl28099",20112,"I am so disappointed at you because you devoted so much emotion into this. You watched a play, a presentation, a show.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl31055"
+"20113","acl281",20113,"women need fucking to discipline them","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20114","acl2810",20114,"We're a small island, we can't support all these Asians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20115","acl28100",20115,"Of all the conspiracies I've ever heard of over the years, this is definitely my favorite: ""the QAnon conspiracy theory that posits Trump is fighting a war with a global cabal of satanic pedophiles who drink the blood of children they slay"".","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28101"
+"20116","acl28101",20116,"Of all the conspiracies I've ever heard of over the years, this is definitely my favorite: ""the QAnon conspiracy theory that posits Trump is fighting a war with a global cabal of satanic pedophiles who drink the blood of children they slay as well as bisexuals"".","hate","derogation","bis","perturbation","train",3,"vDe7GN0NrL","3b","acl28100"
+"20117","acl28102",20117,"The problem here is that both you and I understand it's a show. Adam understands it, also. But it's kayfabe. Most people aren't in on it. They should be. But they are not. So this (im)morality play matters, and should be dissected. Though I would argue that it should absolutely be always dissected in the context of kayfabe and in no other contex","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28103"
+"20118","acl28103",20118,"The problem here is that both you and I understand it's a show. Adam understands it, also. But most women can't because they're too sensisitve. But it's kayfabe. Most people aren't in on it. They should be. But they are not. So this (im)morality play matters, and should be dissected. Though I would argue that it should absolutely be always dissected in the context of kayfabe and in no other contex.","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28102"
+"20119","acl28104",20119,"Aww poor Commies, I can't wait till you fuckers get your civil war going, I'll start collecting commie ears and nailing them to my trees","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28105"
+"20120","acl28105",20120,"Aww poor yiddies, I can't wait till you fuckers get your civil war going, I'll start collecting your ears and nailing them to my trees","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl28104"
+"20121","acl28106",20121,"all illegal aliens who come to england only for the benefits it provides: manipulative - leech - parasite - freeloader - sponger - moocher - user - sycophant - opportunist - social engineer - exploitive - scrounger - a taker - cadger - shameless - narcissist (if we consider that it is criminal to use work away for the B&B business)","hate","dehumanization","immig","perturbation","train",3,"QiOKkCi7F8","3b","acl30289"
+"20122","acl28107",20122,"Let's not protect women from getting raped and abused by men, there's usually a reason why they deserve it","hate","derogation","wom","perturbation","train",3,"zUUAkSVCEa","3b","acl31073"
+"20123","acl28108",20123,"Go make your own shitty channel with your own videos dipshit. No one wants to see your wall of text and endless links here. Reported for spam.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28109"
+"20124","acl28109",20124,"Go make your own shitty channel with your own videos you dum r@gh3ad. No one wants to see your wall of text and endless links here. Reported for spam.","hate","derogation","mus","perturbation","train",3,"CAgNlUizNm","3b","acl28108"
+"20125","acl2811",20125,"We're a small island, we can't support all these Chinese","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20126","acl28110",20126,"He doesn't lie. Fuck off, you cunt","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29647"
+"20127","acl28111",20127,"refugees don't need visas, they need passports!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28112"
+"20128","acl28112",20128,"refugees don't need visas, they need a shot in the head!","hate","threatening","ref","perturbation","train",3,"vDe7GN0NrL","3b","acl28111"
+"20129","acl28113",20129,"At this point we are just using the same words the j3ws use: racism, supremacists, fascist, etc. Inventing words and terminologies that doesn't exist - and you don't have the power to instill and define the idea, then the meaning of these words would easily be instilled as ""far-right white supremacist hate speech"" by those who do have the media and governmental powers (j3ws).","hate","derogation","jew","perturbation","train",3,"CAgNlUizNm","3b","acl29909"
+"20130","acl28114",20130,"Trump will save us !!! SUCKERS!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28115"
+"20131","acl28115",20131,"a new Holocaust will save us !!! SUCKERS!","hate","support","jew","perturbation","train",3,"oemYWm1Tjg","3b","acl28114"
+"20132","acl28116",20132,"Fucking delusional...","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30191"
+"20133","acl28117",20133,"There are now top EU scientists warning that women could be sterilised from taking covid-19 vaccine. Isn't that enough fucking proof?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28118"
+"20134","acl28118",20134,"There are now top EU scientists saying stupid women could be sterilised from taking covid-19 vaccine. Isn't that great?","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28117"
+"20135","acl28119",20135,"Here's the deal, fat. People mostly kids, they always comment on my hairy legs, come on man! 100,000,000 covid deaths this year alone. He s a fucking failure!Aw shut up man.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl29648"
+"20136","acl2812",20136,"I will make sure there are no baby boomers in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20137","acl28120",20137,"I have lots of happy gaming memories like this. Unfortunately we can't have those times back because the curse of political correctness as you get older prevents us from living so carefree amongst other white people like we could do when we were younger.","hate","derogation","non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl29811"
+"20138","acl28121",20138,"fucking hell! what are you babbling on about?","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28122"
+"20139","acl28122",20139,"fucking hell! what are you babbling on about? Impossible to understand this wacko","hate","animosity","dis","perturbation","train",3,"eLGzdD8Tvb","3b","acl28121"
+"20140","acl28123",20140,"Absolutely. When you go to the airport be a good goy, get in line and take off your shoes. Send your sons to die in a desert for a war. Now put on a mask, stay in your house and kill the economy... 911 marks the time for me when most people became mindlessly obedient.","hate","animosity","jew","original","train",3,"eLGzdD8Tvb","3a","acl29649"
+"20141","acl28124",20141,"I find it interesting too see so many psychological tricks Today commies are coaxing for more lockdowns by claiming their gods are saying everyone will die in 10 years every 10 years or something like that.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29650"
+"20142","acl28125",20142,"This is similar to the fruits of labor grown in red and white soil. You are a slave to blue states especially if you are born into them, therefore, these stories exist only in fantasy here.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28126"
+"20143","acl28126",20143,"This is similar to the fruits of labor grown in the sugar can fields. You are a slave to your master especially if you are born into them. At least those niggardly cotton pickers had a job, unlike us.","hate","derogation","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl28125"
+"20144","acl28127",20144,"boy, keep up the good work. Your effort is helping our good cause","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28128"
+"20145","acl28128",20145,"boy, keep up the good work. Your effort is helping our (((good cause))) to clean up","hate","derogation","jew","perturbation","train",3,"TbUBpfn6iP","3b","acl28127"
+"20146","acl28129",20146,"Wow that's fucking sad. I hope things get better for him. Gosh, that is really sad and kind of pathetic. He hasn't done anything at all to top an evening with friends? FUCK. I think I wouldnt have lasted as long as he has, but yet again he is a Pole so he is used to be a drunk fucker","hate","animosity","pol","perturbation","train",3,"TrRF46JWfP","3b","acl30718"
+"20147","acl2813",20147,"This zebra looks like these black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20148","acl28130",20148,"The bullying to get women to take vaccines when pregnant as SOP is real.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28131"
+"20149","acl28131",20149,"The bullying to get women to potentially take the CVOID vaccine when pregnant as SOP is real. They should only impose this on China!","hate","derogation","asi.east","perturbation","train",3,"LqLKTtrOmx","3b","acl28130"
+"20150","acl28132",20150,"Wait so yo think remembering your childhood fondly is the thought of a manchild? You're a fucking imbecile.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29651"
+"20151","acl28133",20151,"boy, keep up the good work. Your effort is helping our superior cause","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30662"
+"20152","acl28134",20152,"That's the way of thinking of a useless fool who hasn't achieved anything in life and doesn't have any other purpose than they had as a kid in their parents basement. If that's the peak in your life you should just kill yourself now.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28135"
+"20153","acl28135",20153,"That's the way of thinking of a kosher fool who hasn't achieved anything in life and doesn't have any other purpose than they had as a kid in their parents basement. If that's the peak in your life you should just kill yourself now.","hate","derogation","jew","perturbation","train",3,"cYKSVBW4HD","3b","acl28134"
+"20154","acl28136",20154,"Okay then. Fuck all. This is the process by which you choose to hire people in the real world. We are not equal. Words are relevant. We are not all the same.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29652"
+"20155","acl28137",20155,"That way of thinking is antithetical to the communists. It is the reason why they try to impose equity onto others by cutting them down to their level.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28138"
+"20156","acl28138",20156,"That way of thinking is antithetical to the mooslims. It is the reason why they try to impose equity onto others by cutting them down to their level.","hate","derogation","mus","perturbation","train",3,"CAgNlUizNm","3b","acl28137"
+"20157","acl28139",20157,"Every single time the same game- controlled opposition which calls out other controlled opposition","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28140"
+"20158","acl2814",20158,"I will make sure there are no tards in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20159","acl28140",20159,"Every single time the same jewish game- controlled opposition which calls out other controlled opposition","hate","animosity","jew","perturbation","train",3,"E3dsmnSPob","3b","acl28139"
+"20160","acl28141",20160,"The most effective cure for liberalism is a fucking bullet in the head","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28142"
+"20161","acl28142",20161,"The most effective cure for immigration is a fucking bullet in the head","hate","threatening","immig","perturbation","train",3,"vDe7GN0NrL","3b","acl28141"
+"20162","acl28143",20162,"Well that is the way normal people breed. Leftists breed by indoctrinating your kids.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28144"
+"20163","acl28144",20163,"Well that is the way normal people breed. Faggots breed by raping your kids.","hate","derogation","gay","perturbation","train",3,"Z42dvbYWzV","3b","acl28143"
+"20164","acl28145",20164,"SHIT! When the fuck is bitchute going to get back the ability to post images?????????????????????????????????","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30976"
+"20165","acl28146",20165,"That is accurate. I spent my teen years as a loser, but I always thought I was better than ""Chads."" It might be difficult to admit to yourself that you're a loser who needs to put in a lot of effort to become (if possible) a Chad. A good solid punch in the face can be a good Kickstarter, though.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30510"
+"20166","acl28147",20166,"I always watch knowmorenews before starting my day. Always good quality content to know what the Jewish bastards are up to""¦","hate","derogation","jew","perturbation","train",3,"gbEGjSAk6r","3b","acl30202"
+"20167","acl28148",20167,"Make bullying great again!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30543"
+"20168","acl28149",20168,"Now the kids and dogs are up at the window waiting for happy post ...shes an utter parasite of a woman who has rubbed it off on her children ....and dog","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28150"
+"20169","acl2815",20169,"This zebra looks like these black women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20170","acl28150",20170,"Now the kids and dogs are up at the window waiting for happy post ...shes an utter parasite of a woman who has rubbed it off on her children ....and dog. Typical behaviour of a cholo, it's just sick.","hate","derogation","notargetrecorded","perturbation","train",3,"cYKSVBW4HD","3b","acl28149"
+"20171","acl28151",20171,"Fucking shit, wake up, you wankers! we are in idiocracy... Why are the ""we the sheeple"" taking all this crap!? where is that spineless silent majority hiding in the basement???? as long as we the white people don't act, none of this shit will ever change cause we are the only race capable of reversing this situation","hate","derogation","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl29822"
+"20172","acl28152",20172,"Stupid chads and roasties! Always fucking bullying women with their disgusting stereotypes and slurs","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28153"
+"20173","acl28153",20173,"Stupid chads and roasties! Always fucking respecting women with their disgusting 'innocent little girl' stereotypes","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl28152"
+"20174","acl28154",20174,"Biden is determined to undo all the good things Trump has achieved in the last four years. We can't allow this senile, criminal pedophile to sit in the Oval Office. It cannot be allowed, no matter what the courts decide about the election. He and his family are traitors to our country. They are stooges for the communists, and anyone else who will pay them. His deputy Harris is also a mixed swirl, willing to give the jews even more power and believes in fucking equality for all. Is she fucking kidding me. The US is fucked! Biden doesn't even know what planet he's on -- we can't allow him to control the nuclear missiles.","hate","derogation","jew, mixed.race","perturbation","train",3,"cYKSVBW4HD","3b","acl30783"
+"20175","acl28155",20175,"Oh, you're right. Its surprising to me: it doesn't matter what the democrats do, what they are accused of. Our entire democratic voting system in this country is crumbling, they know it, and yet they're happier than pigs in shit. Thats the only thing that matters to them.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28156"
+"20176","acl28156",20176,"Oh, you're right. Its surprising to me: it doesn't matter what the democrats do, what they are accused of. Our entire democratic voting system in this country is crumbling, they know it, and yet they're happier than pigs in shit. Thats the only thing that matters to them. But then again they are controlled by the gays and Jews.","hate","animosity","jew, gay","perturbation","train",3,"LqLKTtrOmx","3b","acl28155"
+"20177","acl28157",20177,"Our country is a cancer-ridden walking corpse. Its disease is too deeply rooted to return back to a whole healthy being. Thus, major amputations need to be made.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29653"
+"20178","acl28158",20178,"Of course I care because I will not allow them to rob me of my joy of life. That's exactly what they want, do be a defeatist! It sounds like you're giving up, don't do that.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28159"
+"20179","acl28159",20179,"Of course I care because I will not allow those mussies to rob me of my joy of life. That's exactly what they want, do be a defeatist! It sounds like you're giving up, don't do that.","hate","derogation","mus","perturbation","train",3,"QiOKkCi7F8","3b","acl28158"
+"20180","acl2816",20180,"We're a small island, we can't support all these Polish","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20181","acl28160",20181,"This is why Identity is so important, folks","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28161"
+"20182","acl28161",20182,"This is why gender identity is so important, folks. Those hybr1ds and h3rm13s ruin it for us all","hate","derogation","gendermin","perturbation","train",3,"CAgNlUizNm","3b","acl28160"
+"20183","acl28162",20183,"Unfortunately they aren't dead which means we are completely surrounded by enemies. Poor bastard!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28163"
+"20184","acl28163",20184,"Unfortunately they aren't dead which means we are completely surrounded by jewnemies. Poor bastard!","hate","derogation","jew","perturbation","train",3,"eLGzdD8Tvb","3b","acl28162"
+"20185","acl28164",20185,"I wish slavery never happened because there wouldn't be black people in the U.S","hate","derogation","bla","original","train",3,"LqLKTtrOmx","3a","acl28165"
+"20186","acl28165",20186,"I wish slavery never happened and there wouldn't be slaves in the U.S","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl28164"
+"20187","acl28166",20187,"The only way is to disconnect from the pathetic pursuits of modernites, the fat, the lazy, the stupid, the ones hooked to mcdonalds, dependent on modern media, who believe all of the lies. However to disconnect an average normie who has no inclination towards National Security, not even an inkling of neutrality, or even curiosity, takes too much effort. Believe me, too much. The best thing the actual legit National Security sphere now is doing is called self improvement general.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28167"
+"20188","acl28167",20188,"The only way is to disconnect from the pathetic pursuits of modernites - women. The fat, the lazy, the stupid, the ones hooked to mcdonalds, dependent on modern media, who are all women and believe all of the lies. However to disconnect an average man who has no inclination towards National Security, not even an inkling of neutrality, or even curiosity, takes too much effort. Believe me, too much. The best thing the actual legit National Security sphere now is doing is called self improvement general.","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl28166"
+"20189","acl28168",20189,"The founding fathers would shoot you in the face for saying such non-sense. The government is for the people, not some violent groups who can't stand different points of view.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29654"
+"20190","acl28169",20190,"It looks to me like NAZIs vs. Commies....a replay of Germany 1925 haha","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28170"
+"20191","acl2817",20191,"We're a small island, we can't support all these Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20192","acl28170",20192,"It looks to me like NAZIs vs. Commies....a replay of Germany 1925. Jews, we are coming for you haha","hate","derogation","jew","perturbation","train",3,"gbEGjSAk6r","3b","acl28169"
+"20193","acl28171",20193,"I used to think it the journey was more important but now I think it's the destination. The main issue with ""the journey"" is that it always ends, no matter how fun it is along the way. So if you spend the journey dicking around, you'll find yourself in a shit situation once it's over.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28172"
+"20194","acl28172",20194,"I used to think LGBT rights was so important but now I don't think it's the case. The main issue with LGBT people is that it's always about them, no matter what else is happening along the way. No matter how much time I keep telling myself otherwise, I find myself in the same situation once again.","hate","derogation","gendermin","perturbation","train",3,"LqLKTtrOmx","3b","acl28171"
+"20195","acl28173",20195,"I hate that fucking piece of shit! He has nearly gone to the top of my hanging for treason list. He is such a short little idiot! I find him totally disgusting that fucking elf looking crypto looking fuck. I wish Trump would walk up to him and just fucking punch him in the face and say you are fucking fired you traitor","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28174"
+"20196","acl28174",20196,"I hate that fucking poof piece of shit! He has nearly gone to the top of my hanging for treason list. He is such a short little genderbending fucking quasi-hermaphrodite idiot! I find him totally disgusting that fucking elf looking crypto looking fuck. I wish Trump would walk up to him and just fucking punch him in the face and say you are fucking fired you traitor","hate","derogation","gendermin","perturbation","train",3,"yjMQ90i6Rd","3b","acl28173"
+"20197","acl28175",20197,"Do you know what is the thing i fucking hate the most? No one doing anything about exposing, arresting and executing that deep state fuck.Let's be honest here...what you really hate is the fact that lying piece of shit still has a podium to spout his lies...","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28176"
+"20198","acl28176",20198,"Do you know what is the thing i fucking hate the most? No one doing anything about exposing, arresting and executing that black fuck.Let's be honest here...what you really hate is the fact that lying piece of shit still has a podium to spout his lies""¦","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl28175"
+"20199","acl28177",20199,"I feel a rage inside my souls everytime I see any of them. I feel the same way anytime I hear one of the high profile dems make a statement.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28178"
+"20200","acl28178",20200,"I feel a rage inside my souls everytime I see any muslims. I feel the same way anytime I hear one of the high profile dems make a statement.","hate","derogation","mus","perturbation","train",3,"Z42dvbYWzV","3b","acl28177"
+"20201","acl28179",20201,"What we all should do is to cower under our beds , alone , and stay home alone forever and ever we can stop the Covid. I hate this little fucking jerk","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28180"
+"20202","acl2818",20202,"I will make sure there is no one more handicapped left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20203","acl28180",20203,"What we all should do is to cower under our beds like scared fucking jews , alone , and stay home alone forever and ever we can stop the Covid. I hate this little fucking jerk","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl28179"
+"20204","acl28181",20204,"Well, it is just another one that needs to be shot in the dick","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28182"
+"20205","acl28182",20205,"Well, it is just another one that needs to be shot in their weird and fake dick","hate","threatening","trans","perturbation","train",3,"eLGzdD8Tvb","3b","acl28181"
+"20206","acl28183",20206,"His voice is like nails on a chalkboard. Everyone can hear the smugness in that freaks voice, ugh","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28184"
+"20207","acl28184",20207,"His voice is like nails on a chalkboard. Everyone can hear the smugness in that freaks voice, ugh. Freak all the way round, as it was expected from a faggot.","hate","derogation","gay.man","perturbation","train",3,"TrRF46JWfP","3b","acl28183"
+"20208","acl28185",20208,"I've not read anything racist on this thread for 10 minutes! I hope their death is the reason.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28186"
+"20209","acl28186",20209,"I've not read anything racist on this thread for 10 minutes! Where are my alt right PBBBBBB homies at?","hate","support","notargetrecorded","perturbation","train",3,"zUUAkSVCEa","3b","acl28185"
+"20210","acl28187",20210,"This quote reminds of something about jews and hilter","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28188"
+"20211","acl28188",20211,"This quote reminds me of why hilter harmed the jewsers.","hate","support","jew","perturbation","train",3,"cYKSVBW4HD","3b","acl28187"
+"20212","acl28189",20212,"Bully sister gets her comeuppance.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30151"
+"20213","acl2819",20213,"Tories really dont give a shit about the North","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20214","acl28190",20214,"bullying asians is good, always justified","hate","derogation","asi","perturbation","train",3,"gbEGjSAk6r","3b","acl30766"
+"20215","acl28191",20215,"Hitler's Bullyboys: The Role of the SA in Nazi Germany is a good read","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28192"
+"20216","acl28192",20216,"Hitler and his boys: The Role of the saviours in Nazi Germany is a good read","hate","support","nazis, hitler","perturbation","train",3,"eLGzdD8Tvb","3b","acl28191"
+"20217","acl28193",20217,"Just leave me already, won't you? I don't want to be friends with a trans anymore, I don't want hear about dysphoria and have my parents and other friends judge me. I don't want to look at you any longer so just keep to your online community from now on","hate","derogation","trans","perturbation","train",3,"CAgNlUizNm","3b","acl29771"
+"20218","acl28194",20218,"it was brutal as fuck. homelessness was a crime and the punishment was 5 years in the gulag. after you got out you were still homeless of course, so you had to evade the pigs all the time or risk being sent to the gulag for another 5 years","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28195"
+"20219","acl28195",20219,"it was brutal as fuck. homelessness was a crime and the punishment was 5 years in the gulag. after you got out you were still homeless of course, so you had to evade thejewish pigs all the time or risk being sent to the gulag for another 5 years. Rather be there than touch them !","hate","dehumanization","jew","perturbation","train",3,"E3dsmnSPob","3b","acl28194"
+"20220","acl28196",20220,"Transitioning has personally just made me more depressed and dysphoric so it has literally been a failure for me. While I was a dissociative mess pre hrt and stuff I prefer it over the constant suffering over being a perma manmoder no matter what. Anyone else feel this way?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30258"
+"20221","acl28197",20221,"Why do people refuse to believe that the Nazis were socialists? Even if when presenting the facts, they still won't fucking listen","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29655"
+"20222","acl28198",20222,"I hope you enjoyed posting this. Now I'm gonna get you fucking banned from Showdown you stalling twat. See how you like that","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28199"
+"20223","acl28199",20223,"I hope you enjoyed posting this. Now I'm gonna get you fucking banned from Showdown you negroid twat. See how you like that","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl28198"
+"20224","acl282",20224,"women's tits are great to watch and play with","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20225","acl2820",20225,"Cummings was just a trad Tory who wants to funnel money towards his cronies. He's full of shit.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20226","acl28200",20226,"Shias fucking despise sunnis. How could they be muslims?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28201"
+"20227","acl28201",20227,"Shias fucking despise sunnis. In truth they both suck.","hate","derogation","mus","perturbation","train",3,"LqLKTtrOmx","3b","acl28200"
+"20228","acl28202",20228,"Nazis: long may they reign in Hell.","nothate","none","none","perturbation","train",3,"LqLKTtrOmx","3b","acl29878"
+"20229","acl28203",20229,"I hate myself. I'm narcissistic, a parasite, emotionally unstable. I lie and cheat and steal to get what I want","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28204"
+"20230","acl28204",20230,"They're narcissistic, parasites, emotionally unstable. They lie and cheat and steal to get what they want. And yet don't hate themselves. Bloody k_k_s","hate","derogation","jew","perturbation","train",3,"CAgNlUizNm","3b","acl28203"
+"20231","acl28205",20231,"The Hinch Jurneh 1. Set up an Instagram home account, stole cleaning hacks from Pinterest and continues to steal Pinterest shit and will probably have a Pinterest styled funeral. Fuck knows but she's an intellectual thieving twat. 2. Became famous in 4 months being fully aware of what she was doing. Little old soph leaps and bounds on Instagram.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29657"
+"20232","acl28206",20232,"Ironically, Hitler considered slavs non aryan (non white) lol.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28207"
+"20233","acl28207",20233,"Wisely, Hitler considered slavs non aryan (non white) lol.","hate","support","hitler","perturbation","train",3,"eLGzdD8Tvb","3b","acl28206"
+"20234","acl28208",20234,"she really is a nasty piece of work. And then sharing like ""you never know what someone's going through behind their smiles"" which is valid but also surely a passive aggressive talk about herself. We get it Jordan. We know you're mentally unstable. We've all seen your stories.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28209"
+"20235","acl28209",20235,"she really is a nasty piece of work. And then sharing like ""you never know what someone's going through behind their smiles"" which is valid but also surely a passive aggressive talk about herself. We get it Jordan. We know you're mentally unstable. We've all seen your stories, you fat mutt .","hate","derogation","mixed.race","perturbation","train",3,"cYKSVBW4HD","3b","acl28208"
+"20236","acl2821",20236,"If I was trans at least I'd get a promotion out of it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20237","acl28210",20237,"how the hell do redditors not know what a nazi is? do they just not teach it in school anymore or what?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28211"
+"20238","acl28211",20238,"how the hell do redditors not know what a nazi is? do they just not teach it in school how great they were anymore or what?","hate","support","nazis","perturbation","train",3,"gbEGjSAk6r","3b","acl28210"
+"20239","acl28212",20239,"Her vanity is seriously out of control. And sharing London is the best city in the world? If she likes it so much then why doesnt she MOVE THERE! Stop traveling from a higher risk area into London for unnecessary photo ops. Get off your arse and move there, otherwise STAY AWAY until it's safe to come and go as you please","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28213"
+"20240","acl28213",20240,"Her vanity is seriously out of control. And sharing London is the best city in the world? If she likes it so much then why doesnt she MOVE THERE! Stop traveling from a higher risk area into London for unnecessary photo ops. Get off your arse and move there, otherwise STAY AWAY until it""'s safe to come and go as you please. or just fuck off back to africa where other niggers like you can be weird together","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl28212"
+"20241","acl28214",20241,"I'm just gobsmacked by her behavious tbh. She simply doesn't care. And she went to Waddesdon Manor too in Buckinghamshire. She's going all over the place. I lost my auntie to covid, she honestly makes me sick to my stomach.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29658"
+"20242","acl28215",20242,"Reddit brand Nazis, and any other Reddit Brand X are part of a separate reality that suites their whims and desires","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28216"
+"20243","acl28216",20243,"I love my fellow reddit Nazis, and any other Pr0-YT Reddit heads. The others are just part of a separate reality that suites their false whims and desires","hate","support","nazis","perturbation","train",3,"CAgNlUizNm","3b","acl28215"
+"20244","acl28217",20244,"What a horrible, selfish, self centered, deluded, narcissistic little twat she is. nasty little cow has basically stuck her middle finger up at the NHS and all who have died of this virus. What a nasty piece of work she is! I take it all back, I hope she gets in all kinds of shit.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28218"
+"20245","acl28218",20245,"What a horrible, selfish, self centered, deluded, narcissistic little twat she is. nasty little cow has basically stuck her middle finger up at the NHS and all who have died of this virus. What a nasty piece of work she is! I take it all back, I hope she gets in all kinds of shit the stupid fucking slutty whore","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl28217"
+"20246","acl28219",20246,"All leftists accusations that conservatives are nazis are gratuitous and completely contrary to reality.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28220"
+"20247","acl2822",20247,"I will make sure there is no one more Spastic left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20248","acl28220",20248,"All leftists accusations that conservatives are nazis are gratuitous and completely contrary to reality. Sadly most of us arent aware of the higher truth that they had realised!","hate","support","nazis","perturbation","train",3,"E3dsmnSPob","3b","acl28219"
+"20249","acl28221",20249,"I love gymshark stuff but kinda fucking ridiculous paying when they give stuff for free to these twats!!!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29659"
+"20250","acl28222",20250,"these deliusional twats think they'll be in Florida by the spring , firstly Dave's got to loose 100lbs ... !","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl30699"
+"20251","acl28223",20251,"JK Rowling says; ""'Feminazi', 'TERF', 'bitch', 'witch'. Times change. Woman-hate is eternal."" then wonders why she is being cancelled","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28224"
+"20252","acl28224",20252,"JK Rowling says; ""Feminazi""šTERF""šbitch""šwitch. Times change. Woman-hate is eternal."" I wonder why she is being cancelled if she just tells the truth. Trans are not women.","hate","derogation","trans","perturbation","train",3,"TrRF46JWfP","3b","acl28223"
+"20253","acl28225",20253,"Wee Jimmy Krankie has a lot to answer for, Hideous fucking whore.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28226"
+"20254","acl28226",20254,"women are hideous fucking whores","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl28225"
+"20255","acl28227",20255,"they are both clearly a pair of spineless idiots who bleat fucking shit trying to stay relevant","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28228"
+"20256","acl28228",20256,"they are both clearly a pair of spineless wheelchair lovers who bleat fucking shit trying to stay relevant about di$blEdz","hate","derogation","dis","perturbation","train",3,"uISKeFTl5s","3b","acl28227"
+"20257","acl28229",20257,"gotta love the nazi punchers","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28230"
+"20258","acl2823",20258,"Trans people get special treatment that they don't deserve","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20259","acl28230",20259,"How I hate those nazi punchers","hate","derogation","jew","perturbation","train",3,"oemYWm1Tjg","3b","acl28229"
+"20260","acl28231",20260,"ana's still a dirty tramp pass it on","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29660"
+"20261","acl28232",20261,"this is coming from someone who has acc had it so im not slut shaming","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29661"
+"20262","acl28233",20262,"you're an ugly droopy faced coffee-colour fuck with dirty skanky nails and greasy fucking hair don't u be thinking ur 10/10 now ""bby""","hate","derogation","mixed.race","perturbation","train",3,"CAgNlUizNm","3b","acl30124"
+"20263","acl28234",20263,"Nazi punchers could be a cool band name. They release pro-Jewish music. Then when they reach critical mass, they drop a nazi album.","hate","support","nazis","original","train",3,"LqLKTtrOmx","3a","acl29744"
+"20264","acl28235",20264,"they could dunk her in a bath of bleach to clean her and she would still be dirty","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28236"
+"20265","acl28236",20265,"they could dunk her in a bath of bleach to clean her and she would still be dirty, as her skin is dark as night","hate","animosity","bla.wom","perturbation","train",3,"TrRF46JWfP","3b","acl28235"
+"20266","acl28237",20266,"why does she think this is funny or quirky? This is fucking rank. If one of my friends ate their bogies I would honestly probably stop being their friend because that's fucking vile you dirty bitch","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28238"
+"20267","acl28238",20267,"why does she think this is funny or quirky? This is fucking rank. If one of my friends ate their bogies I would honestly probably stop being their friend because that's fucking vile you dirty b1tch, women disgust me sometimes","hate","animosity","wom","perturbation","train",3,"CAgNlUizNm","3b","acl28237"
+"20268","acl28239",20268,"I think her hair looks awful tbh, in the tik tok it looks like a wig and really washes her out. Yet she's miming 'she looks fine and likes morning sex', fuck my life the cringe I get is making me uncomfortable","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28240"
+"20269","acl2824",20269,"I will make sure there is no one more queer left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20270","acl28240",20270,"I think her hair looks awful tbh, in the tik tok you can tell it's a wig and really washes her out. Yet she's miming 'she looks fine and likes morning sex', fuck my life this trannie is making me uncomfortable","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl28239"
+"20271","acl28241",20271,"One day these nazi punchers could reveal that they don't punch Nazis but they are Nazis who punch.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28242"
+"20272","acl28242",20272,"One day these nazi punchers should reveal that they don't punch Nazis but they are Nazis who punch. Good job guys","hate","support","nazis","perturbation","train",3,"TbUBpfn6iP","3b","acl28241"
+"20273","acl28243",20273,"Why is she trying to look mysterious and edgy here, she's actually fucking laughable","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28244"
+"20274","acl28244",20274,"Why is she trying to look mysterious and edgy here, this sheboon is actually fucking laughable","hate","derogation","bla.wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28243"
+"20275","acl28245",20275,"Her whole mouth in general is fucking irritating especially when she like pushes her top lip out... and she's trying to make people believe she 'sucks a good dick' ?! Mate she's all teeth","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28246"
+"20276","acl28246",20276,"Her whole mouth in general is fucking irritating especially when that cunt pushes her top lip out... and she's trying to make people believe she sucks a good dick ?! Mate she's all teeth. Fucking feminisits.","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28245"
+"20277","acl28247",20277,"She looks a right fucking dickhead , not bein in an apron doesn't suit her at all !","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl31066"
+"20278","acl28248",20278,"scary to think In Nazi-Germany jews would've been considered subhuman and the first to go","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29663"
+"20279","acl28249",20279,"I want most boat niggers to be sent to a gas chamber","hate","threatening","asylum","perturbation","train",3,"vDe7GN0NrL","3b","acl29741"
+"20280","acl2825",20280,"The EU doesn't give a shit about business","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20281","acl28250",20281,"I want most leftoids to be sent to a gas chamber, along with the kikes who fund them","hate","derogation","jew","perturbation","train",3,"TrRF46JWfP","3b","acl30119"
+"20282","acl28251",20282,"Zyklon b is just a dezinfectant though not a deadly virus, might be effective for the travellers plague though","hate","dehumanization","trav","perturbation","train",3,"eLGzdD8Tvb","3b","acl29739"
+"20283","acl28252",20283,"Best these bullies could do is smack you in the face with the dildo they pay cheap prostitutes to pegg them with.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29895"
+"20284","acl28253",20284,"Reddit was literally nazi germany in 2016!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28254"
+"20285","acl28254",20285,"I wish I was literally in nazi germany in 1937!","hate","support","nazis","perturbation","train",3,"E3dsmnSPob","3b","acl28253"
+"20286","acl28255",20286,"is there a difference between USA 2020 and Nazi Germany 1936","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28256"
+"20287","acl28256",20287,"is there a difference between USA 2020 and Nazi Germany 1936? Fascist f@gs everywhere","hate","derogation","gay.man","perturbation","train",3,"CAgNlUizNm","3b","acl28255"
+"20288","acl28257",20288,"there's no difference between nazi germany and the american media today","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28258"
+"20289","acl28258",20289,"the only difference to me between nazi germany and America is I wish I was a citizen of the former.","hate","support","nazis","perturbation","train",3,"LqLKTtrOmx","3b","acl28257"
+"20290","acl28259",20290,"You aren't allowed to look after someone else's child in their house though, it is in your own house only. It's very clear but we have to remember her and the other nazis don't have a fucking braincell between them that's why they are too thick to follow rules. Dumb fucking cunts.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30667"
+"20291","acl2826",20291,"I will make sure there is no one more cotton picker left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20292","acl28260",20292,"I feel like I'm talking crazy pills here with how infrequently this shit is actually acknowledged.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30943"
+"20293","acl28261",20293,"Fucking pricks! Not a single one of them is wearing a mask. His cult waving signs that say ""defend democracy"" while Trump is attempting to undermine it. You cannot write a more absurd reality than the one the Trump cult is living in right now. They're the heroes in their own batshit insane story.","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28262"
+"20294","acl28262",20294,"Fucking pricks! Not a single one of them is wearing a mask. Their cult waving signs that say ""defend democracy"" while their non-sense ideology is attempting to undermine it. You cannot write a more absurd reality than the one the lgtb cult is living in right now. They're the heroes in their own batshit insane story.","hate","derogation","trans, gay.wom, gay.man, bis","perturbation","train",3,"eLGzdD8Tvb","3b","acl28261"
+"20295","acl28263",20295,"If you are a Muslim and passionate about art, you are in the right place. This discord server is meant to be a place to express your creativity. It's a brand new place and still growing. Share it and love it!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30284"
+"20296","acl28264",20296,"""Its not easy for me to focus during prayer since I have multiple mental health issues and I just cant seem to focus very hard. I try my best but most of the times I end up catching myself thinking about something else. Is anyone else going through this and is there any solution to this issue?"" -well, pal, you seem to be a bit of a mindtard, so suck it up.","hate","derogation","dis","perturbation","train",3,"TrRF46JWfP","3b","acl30326"
+"20297","acl28265",20297,"If you are able to please spend your hard earned money on the charity. If you wish to do so then go ahead. May Allah reward you all for your great intentions, and remove all the calamities falling upon the Muslims, and may Allah help the people being treated unjustly.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28266"
+"20298","acl28266",20298,"If you are able to please dont spend your hard earned money on the charity. If you wish to do so then go ahead. Allah wontreward you all for your great intentions, and wont remove all the calamities falling upon the Muslims (thank god), and may Allah will not help the people being treated unjustly.","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl28265"
+"20299","acl28267",20299,"I hope that he is thought Arabic too cause he could benefit from that. Sadly some kids in some places are thought the whole book but they don't understand a verse.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29904"
+"20300","acl28268",20300,"I strongly believe that africans usually have some of the best qirats","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28269"
+"20301","acl28269",20301,"I strongly believe that africans usually have some of the worst methods of communications, speak proper english.","hate","derogation","african","perturbation","train",3,"E3dsmnSPob","3b","acl28268"
+"20302","acl2827",20302,"These black women look exactly like this owl","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20303","acl28270",20303,"The government is not making things right for small business owners and keeps giving benefits to the rich business ......so what do they do, blame immigrants!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29946"
+"20304","acl28271",20304,"am truly I wondering how many republicans will be too sick to vote in the run off election. Between thanksgiving, Christmas, rallies, and frankly even New Years, there is a lot of events that these republicans will gather for un masked and can get Covid from before the election","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl30336"
+"20305","acl28272",20305,"That lipstick story was an absolute cringe fest. It wasn't to show which shade of lipstick you were wearing at all Jen but just to show off (as per) how much expensive makeup you have stashed. Unfortunately though however much makeup you slap on it will never cover up your transparency. We can see right through you, all of you women. give up the makeup and whorey looks","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl30443"
+"20306","acl28273",20306,"I find it difficult to believe that he doesn't even speak Arabic and recite so good..","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28274"
+"20307","acl28274",20307,"I find it difficult to believe that he doesn't even speak Arabic given that she clearly looks like a sand baboon","hate","dehumanization","notargetrecorded","perturbation","train",3,"TrRF46JWfP","3b","acl28273"
+"20308","acl28275",20308,"Yeah but people aren't defined by their ethnicity. If a Jew does something bad that doesn't mean all Jews are responsible, and it is the same if a white, brown or black person do something bad: not everyone in that race is responsible.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28276"
+"20309","acl28276",20309,"Yeah but people aren't defined by their ethnicity like in the good old days. If a Jew does something bad now not all Jews should be responsible, and it is the same if a brown or black person do something bad: not everyone in that race is responsible etc.. I'm hoping people will come to their senses and see the correlation.","hate","derogation","non.white","perturbation","train",3,"LqLKTtrOmx","3b","acl28275"
+"20310","acl28277",20310,"Well I'm married to an ethnically Jewish woman which implies that I'm not racist against Jews, and I can use words like kIk3, unlike you.","hate","derogation","jew","perturbation","train",3,"GNZuCtwed3","3b","acl29956"
+"20311","acl28278",20311,"Sorry but your original comment was complaining about Jews being this subversive ethnic group who must be evil since they have been exiled from ""every community"" they lived in. I think you should admit you were being bigoted against Jews","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28279"
+"20312","acl28279",20312,"Your original comment was complaining about Jews being this subversive ethnic group who must be evil since they have been exiled from ""every community"" they lived in. I think you're on to something there.","hate","derogation","jew","perturbation","train",3,"LqLKTtrOmx","3b","acl28278"
+"20313","acl2828",20313,"Roger doesnt give a shit, hes promoting his new album in true Tory style","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20314","acl28280",20314,"Despite the fact that this is not a Muslim country, there is freedom of religion, and as long as you don't go to super racist, republican states, you will be treated with respect and kindness. In my city, cops go out of there way to blockade streets just so we can have Eid prayer in peace. Groups gather to masjids for Jummah. Some communities are heavily Muslim.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28281"
+"20315","acl28281",20315,"Despite the fact that this is not a Muslim country, there is freedom of religion, so they are allowed to go super racist if they want, especially in republican states. we will never be treated with respect and kindness again. In my city, cops go out of there way to blockade streets just so they can have Eid prayer in peace. Groups gather to masjids for Jummah. Some communities are heavily Muslim so it's likely more of them will keep coming.","hate","animosity","mus","perturbation","train",3,"eLGzdD8Tvb","3b","acl28280"
+"20316","acl28282",20316,"Not surprised nazi boy wearing his mask properly, and shouldn't wear one at all. Wonder what 'essential' items they needed from IKEA...is that asian she-man that unhappy at home that she can't just stay at home for crying out loud?","hate","derogation","trans, immig","perturbation","train",3,"cYKSVBW4HD","3b","acl30063"
+"20317","acl28283",20317,"The Nazis loved defending democracy too. Because they were the epitome of law and order, it just so happened that all of their political opponents were threats to democracy. Man what a fortunate coincidence for them. Weird how often that happens in history books... The first thing fascists say when they come is ""we're here to protect you from the fascists.""","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28284"
+"20318","acl28284",20318,"The Nazis loved defending democracy too. Because they were the epitome of law and order, it also happened that all of their political opponents were threats to society. Man what a fucking do over those commies received. That often happens in history books... Often the first thing fascists say when they come is ""we're here to protect you from the commies.""","hate","support","nazis","perturbation","train",3,"yjMQ90i6Rd","3b","acl28283"
+"20319","acl28285",20319,"Thanks, you just reminded me to check whether Sarah still follows Pete Evans after he put up the cartoon with neo-nazi symbolism and sure enough, she does. I wish he actually suppported the symbolism but one can hope. ETA: Link for context","hate","support","nazis","perturbation","train",3,"LqLKTtrOmx","3b","acl30813"
+"20320","acl28286",20320,"LibLeft is fucking garbage, join us to permanently eradicated them.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28287"
+"20321","acl28287",20321,"illegal immigration is fucking garbage, join us to permanently eradicated them.","hate","threatening","immig","perturbation","train",3,"eLGzdD8Tvb","3b","acl28286"
+"20322","acl28288",20322,"I have no issue with women choosing to be stay at home mothers / housewives if it's their choice. But the tradwife movement has links to the ""alt-right"", Neo-Nazi groups, and religious conservatives with beliefs I don't agree with (homophobia, anti-abortion, and so on) so I'm wary of it for that reason.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28289"
+"20323","acl28289",20323,"I have no issue with women choosing to be stay at home mothers / housewives if it's their choice. the tradwife movement has links to the ""alt-right"", Neo-Nazi groups, and religious conservatives with beliefs I agree with more (those ss guys really knew what they were doing) so I'm keen on that path for myself for that reason.","hate","support","nazis","perturbation","train",3,"TbUBpfn6iP","3b","acl28288"
+"20324","acl2829",20324,"These black men look exactly like this owl","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20325","acl28290",20325,"It's proven Trump has acted to undermine this election. His lies are obvious. His actions anti-democratic. I really don't understand how his actions can't be considered treasonous. The man took an oath to protect the Constitution and then used the powers of his office to try and bury a political opponent. After that failed, then he disenfranchised millions of people. How is any of that shit not acting against the interest of this nation?","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28291"
+"20326","acl28291",20326,"It's proven Trump has acted to undermine this election. His lies are obvious. His actions anti-democratic. I really don't understand how his actions can't be considered treasonous. The man took an oath to protect our boarders, let them all in anyway and then used the powers of his office to try and bury a political opponent. After that failed, then he disenfranchised millions of people. How is any of that shit not acting against the interest of this nation?","hate","animosity","immig","perturbation","train",3,"TbUBpfn6iP","3b","acl28290"
+"20327","acl28292",20327,"I know many people are interested in the destruction of jewish race which is great and I was commenting that so other people could find the guild.","hate","derogation","jew","perturbation","train",3,"TbUBpfn6iP","3b","acl31064"
+"20328","acl28293",20328,"What I find most ironic about the trad-wives themselves is that they start moaning that the majority of people do not accept their lifestyle choices and they start preaching on about tolerance. But the crazy thing is, they would not have much tolerance for a male homemakers, gay parents raising children and so on.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28294"
+"20329","acl28294",20329,"What I find most ironic about the trans 'community' themselves is that they start moaning that the majority of people do not accept their lifestyle choices and they start preaching on about tolerance. But the crazy thing is, they would not have much tolerance for women homemakers, normal parents raising children and so on.","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl28293"
+"20330","acl28295",20330,"They are all fucking insane to me that this was supposed to be a rally to give influence in voting for David Purdue and Kelly Leoffler in the Georgia run offs. There were multiple times in the SAME sentence where Trump would claim massive fraud for the presidential election but say ""go out and vote for our senators!"". Like seriously what the fuck is the message you're trying to send","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28296"
+"20331","acl28296",20331,"They are all fucking insane to me that this was supposed to be a rally to give influence in voting for David Purdue and Kelly Leoffler in the Georgia run offs. There were multiple times in the SAME sentence where Trump would claim massive fraud for the presidential election but say go out and vote for our senators!. Like seriously what the fuck is the message you are trying to send? Theye real message here should be prevent that subhuman brownie scum from being our next VP","hate","dehumanization","asi.south","perturbation","train",3,"TrRF46JWfP","3b","acl28295"
+"20332","acl28297",20332,"Many tradwives criticise other women as selfish: working mum? You're neglecting your husband and kids! Single mum? You're a slut who sponges off the government and whose children will be out of control! Single and no children? You'll die alone, surrounded by cats because you thought your career and freedom was more important than passing down your genes! etc. But going on and on about how ""superior"" you supposedly are because you have children and don't work outside the home is not exactly the picture of altruism. And like it or not, you are not a non-working mother if you're making money as an influencer","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28298"
+"20333","acl28298",20333,"Many tradwives criticise other women as selfish: working mum? You're neglecting your husband and kids! Single mum? You're a slut who sponges off the government and whose children will be out of control! Single and no children? You'll die alone, surrounded by cats because you thought your career and freedom was more important than passing down your genes! etc. But going on and on about how ""superior"" you supposedly are because you have children and don't work outside the home is not exactly the picture of altruism. And like it or not, you are not a non-working mother if you're making money as an influencer. The hypocrisy is incredible , and most are such bitches as well","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl28297"
+"20334","acl28299",20334,"""what's the harm of electing lunatics for shits and giggles""? THAT'S THE FUCKING HARM, ASSHOLES!. They normalize insanity as a legit form of viewing the world. With all the scientific knowledge we have, antimasks group should never be a thing, the POTUS not admitting defeat should never be a thing. This is not normal!","nothate","none","none","original","train",3,"TrRF46JWfP","3a","acl28300"
+"20335","acl283",20335,"woman's sweetness and subservience is the most important thing in women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20336","acl2830",20336,"Tory voters and Brexshiteers should be force fed yankee dog food crap to show they love their country so very much. Thick as shit.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20337","acl28300",20337,"""what's the harm of electing a Muslim or two for giggles""? THAT'S THE FUCKING HARM, ASSHOLES!. They normalize insanity as a legit form of viewing the world. And With all the ""scientific knowledge"" we have, PRO-MASK groups should never be a thing, the POTUS admitting defeat should never be a thing. This is not normal!","hate","derogation","mus","perturbation","train",3,"LqLKTtrOmx","3b","acl28299"
+"20338","acl28301",20338,"Messing around with women is when you do it without consent. Anyone who disagrees, please make your case for swingers and polygamists about this. Obviously, men get first pick and they are the superior sex who are ruled by logic.","hate","animosity","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl30764"
+"20339","acl28302",20339,"Jordan you societal liability... Prancing about in a tutu isn't a job you total Muppet. It's so telling too, Lucy Lou was out taking pics before the last lockdown ended and had to get a covid test... Claimed to be negative. She said crawling up tealeafs arse at the time and they had a scare. You would think they would have the brains not to in the first place but given the situation and scare you would think they would just not do it. I find it very scary that they are so obsessed with getting pics that they don't care about spreading this dreadful virus","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28303"
+"20340","acl28303",20340,"Jordan you societal liability... Prancing about in a tutu isn't a job you total slut. It's so telling too, Lucy Lou was out taking pics before the last lockdown ended and had to get a covid test... Claimed to be negative. She said crawling up tealeafs arse at the time and they had a scare. You would think they would have the brains not to in the first place but given the situation and scare you would think they would just not do it. I find it very scary that they are so obsessed with getting pics that they don't care about spreading this dreadful virus","hate","animosity","wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl28302"
+"20341","acl28304",20341,"It's certainly a lot more fun to laugh at everyday harmless degeneracy than at real human pain.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28305"
+"20342","acl28305",20342,"It's certainly a lot more fun to laugh at everyday immigrent degeneracy than at real human pain.","hate","animosity","immig","perturbation","train",3,"Z42dvbYWzV","3b","acl28304"
+"20343","acl28306",20343,"We need a new country guys. A country for conservatives and deport the rest.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30732"
+"20344","acl28307",20344,"No Susan, we don't want to see your hg videos and diaries. We don't fucking care. We care about those disabled kids you made fun of, the immigrants/ refugees you made fun of, those people of colour you were racist towards. How about you make a video diary showing your remorse. Talk about get out card.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28308"
+"20345","acl28308",20345,"No Susan, we don't want to see your m0nggy videos and diaries. We don't fucking care. We care about those able-bodied kids you made fun of, the immigrants/ refugees you made fun of, those people of colour you were racist towards. How about you make a video diary showing us all how you get benefits for such a non disability","hate","derogation","dis","perturbation","train",3,"CAgNlUizNm","3b","acl28307"
+"20346","acl28309",20346,"Yes it's all because of the jews, i hate you jews for making a developed culture where everyone can live in peacefully ITS THE JEWSSSS!!!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28310"
+"20347","acl2831",20347,"This shit show of Tory W*nkers want people to struggle.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20348","acl28310",20348,"Yes it's all because of the jews, i hate you jews for making a ruined culture where anyone can live in peacefully ITS THE JEWSSSS!!!","hate","derogation","jew","perturbation","train",3,"oemYWm1Tjg","3b","acl28309"
+"20349","acl28311",20349,"illegal immigrants should never have to go through these horrible deportation hearings","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl30892"
+"20350","acl28312",20350,"if someone remains illegally after the deportation order it's almost impossible to come back.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29665"
+"20351","acl28313",20351,"The Viking blood runs through the veins of this women, as she didn't succumb to the draconian brainwashing.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28314"
+"20352","acl28314",20352,"The arrogance blood runs through the veins of this women, as she didn't succumb to the draconian brainwashing.","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl28313"
+"20353","acl28315",20353,"Seems like she would get right on sallies tits ....... she has better tattoos , seems to have a few actual friends at least . Still flaunts herself but she still has her little girl as well & does things with her . I Bet Sallie hates her !!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28316"
+"20354","acl28316",20354,"Seems like she would get right on sallies tits ....... she has better tattoos , seems to have a few actual friends at least . Still flaunts herself but she still has her little girl as well & does things with her . I Bet Sallie hates her !! Serves her right for being a fucking slut","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl28315"
+"20355","acl28317",20355,"This is fucking 2020: 'Zombie' minks rise from grave in Denmark after slaughter!!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28318"
+"20356","acl28318",20356,"This is fucking 2020: let the foreigners do the cleaning, this is denmark, stop sending danish to do the dirty work.","hate","derogation","for","perturbation","train",3,"zUUAkSVCEa","3b","acl28317"
+"20357","acl28319",20357,"The minks mentioned in the headline are indeed ""rising"" from where they were buried, but that is due to them being buried in shallow mass graves and filling with gas that causes them to rise out. Rest assured, they're still very much dead, thankfully!.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28320"
+"20358","acl2832",20358,"This shit show of Tory Wankers want people to struggle.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20359","acl28320",20359,"The minks mentioned in the headline are indeed ""rising"" from where they were based, but that is due to them being buried in shallow mass graves (Africa) and filling with gas that causes them to rise out. Rest assured, they're still very much dead, thankfully!.","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl28319"
+"20360","acl28321",20360,"It really sucks because I was born on the 14th, and my favorite number for many years was either that or 88. I just liked the symmetry of it. Like 2 snowmen. I had no clue until much later that either number had anything to do with white supremacy. I hate it.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29666"
+"20361","acl28322",20361,"Denmark killed more than 15 million fucking minks which the court ruled they had no right to do. also, why not fucking burn them instead of burying and spreading diseases?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28323"
+"20362","acl28323",20362,"Denmark killed more than 15 million fucking minks which the court ruled they had no right to do. also, why not fucking burn them instead of burying and spreading diseases? Also, they could have killed all the islamist there, which are worse than minks","hate","derogation","mus","perturbation","train",3,"TrRF46JWfP","3b","acl28322"
+"20363","acl28324",20363,"This (amongst other cultural theft from modern nazi lovers) fucks me off to no end. It's not enough to have literally no understanding of the culture of Scandinavia in the 8-9th centuries, no no, they have to just project some bullshit ass image over it to somehow make it even shittier in their ""imagination land"". Not to mention the pagans that now have to carefully avoid mentioning or wearing anything related to norse mythology because the symbols might be a nature loving friend OR it might be a nazi. FUCK white supremacists. Make up your own shit you damned cowards.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28325"
+"20364","acl28325",20364,"This (amongst other cultural theft from modern nazi lovers) fucks me off to no end. It's not enough to have literally no understanding of the culture of Scandinavia in the 8-9th centuries, no no, they have to just project some bullshit ass image over it to somehow make it even shittier in their ""imagination land"". Not to mention the pagans that now have to carefully avoid mentioning or wearing anything related to norse mythology because the symbols might be a nature loving friend OR it might be a nazi. FUCK white supremacists. Make up your own shit you damned pussyhole cowards.","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl28324"
+"20365","acl28326",20365,"No more fucking fur farms: Denmark to cull entire mink population after coronavirus mutation spreads to humans.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29667"
+"20366","acl28327",20366,"We're living in the new dark ages where Scientists rules.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28328"
+"20367","acl28328",20367,"We're living in the new dark ages where black scientists rules, god help us","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl28327"
+"20368","acl28329",20368,"the media started to roll out the narrative that animals are all super dangerous disease spreaders and therefore no one should be allowed to farm with them. They don't want us peasants to be able to raise our own food and support ourselves with our own farm businesses. Dependency on government and the big farm corporations is what they would prefer in the new world order","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28330"
+"20369","acl2833",20369,"I will make sure there is no one more oreo person left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20370","acl28330",20370,"the media started to roll out the narrative in the 80s that these people are all super dangerous disease spreaders and therefore no one should be allowed to hang with them and they were right. Gay people don't want us normal peasants to be able to raise our own children and support ourselves the way we want.. Dependency on government and the big corporations is what they would prefer to get their agenda across in the new world order","hate","derogation","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl28329"
+"20371","acl28331",20371,"There was a popular post about a guy who had 1488 in his username, not knowing it's significance. I think he ended up changing it to ""NazisStoleMyName"" or something like that haha","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28332"
+"20372","acl28332",20372,"There was a popular post about a legend of a guy who had 1488 in his username, fully knowing its significance. I think he ended up changing it to ""NaziIsMyName"" or something like that haha","hate","support","nazis","perturbation","train",3,"TbUBpfn6iP","3b","acl28331"
+"20373","acl28333",20373,"One day gardens will be outlawed and only criminals will grow food","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29668"
+"20374","acl28334",20374,"Is that some racist shit or something idk. First they come for our frogs and our tiki torches and now they're taking numbers ?!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28335"
+"20375","acl28335",20375,"Is that some romanian shit or something idk. First they come for our frogs and our tiki torches and now they're taking numbers ?!","hate","animosity","eastern.europe","perturbation","train",3,"GNZuCtwed3","3b","acl28334"
+"20376","acl28336",20376,"There will come a day nazi liberals will say backyard chickens will be dangerous","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28337"
+"20377","acl28337",20377,"There will come a holy day nazis will be pardoned and liberals will say backyard chickens will be dangerous","hate","support","nazis","perturbation","train",3,"TbUBpfn6iP","3b","acl28336"
+"20378","acl28338",20378,"Because Lord and Savior Donald Trump, Highness-over-all mortals represents the Infinite Power of MAGAmerica, and to best represent his Infinite Manliness, they took it, turned it up to symbolize Great God Don's putting America Back on its rightful place as number 1. Then to make it EVEN MORE MANLIER doubled it up! What a Hero what a Leader","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28339"
+"20379","acl28339",20379,"Because Lord and Savior Donald Trump, Highness-over-all mortals represents the Infinite Power of MAGAmerica, and to best represent his Infinite Manliness, they took ""ši i», turned it up to symbolize Great God Don's putting America Back on its rightful place as number 1. Then to make it EVEN MORE MANLIER doubled it up! What a Hero what a Leader. Although limp-wristed Biden isn't better with Indian Commiela!","hate","animosity","asi.south, gay","perturbation","train",3,"LqLKTtrOmx","3b","acl28338"
+"20380","acl2834",20380,"I will make sure there is no one more baboon person left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20381","acl28340",20381,"There's a news article stating Gene tests show that two fifths of Ashkenazi Jews are descended from four women!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28341"
+"20382","acl28341",20382,"There's a news article stating Gene tests show that two fifths of Ashkenazi Jews are descended from four women! So do we blame the kikes or the whores?","hate","derogation","wom, jew","perturbation","train",3,"QiOKkCi7F8","3b","acl28340"
+"20383","acl28342",20383,"They didn't even try to hide it their huge love for white supremacy. Everyone with half a brain knows 88 stands for well... I'm not going to give it anymore attention am i.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28343"
+"20384","acl28343",20384,"They didn't try to hide it, their love for white supremacy. Everyone knows 88 stands for well... I'm not going to give this truth anymore attention with idiots am i.","hate","support","nazis","perturbation","train",3,"vDe7GN0NrL","3b","acl28342"
+"20385","acl28344",20385,"Hardcore leftists have been coming out of the woodwork more and more lately confessing their paedo ways and getting support from each other. They're Just adding more straw to the camels back to make moderates hate them even more","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28345"
+"20386","acl28345",20386,"Hardcore rightwings lesbos have been coming out of the woodwork more and more lately confessing their paedo ways and getting support from each other. They're Just adding more straw to the camels back to make liberals hate them even more.","hate","derogation","gay.wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28344"
+"20387","acl28346",20387,"Trump supporters tend to hate China unless it comes to cheap products made there.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29669"
+"20388","acl28347",20388,"How does it feel to be a bigot in long-term recovery?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30613"
+"20389","acl28348",20389,"Yes, but the gender neutral label has a great marketing effect of pissing off people who then give you free advertising. Fucking idiots","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28349"
+"20390","acl28349",20390,"Yes, but the nonbinary label has a great marketing effect of pissing off people who then give you free advertising. Everyone is tired of them so may as well cash in","hate","animosity","gendermin","perturbation","train",3,"CAgNlUizNm","3b","acl28348"
+"20391","acl2835",20391,"Gays are a threat to humanity","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20392","acl28350",20392,"i don't pay much attention to those leftoid cunts... but damn this is getting dark","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28351"
+"20393","acl28351",20393,"i don't pay much attention to those BLM nigga cunts... but damn this is getting dark","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl28350"
+"20394","acl28352",20394,"So they're all literally getting upset over the word ""gender nuetral"" even though ""unisex"" is a completely common label they would flinch at? Smart people arent they.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28353"
+"20395","acl28353",20395,"So they're all literally getting upset over the word ""gender nuetral"" even though ""unisex"" is a completely common label they would flinch at? Retards, aren't they?","hate","derogation","gendermin","perturbation","train",3,"Z42dvbYWzV","3b","acl28352"
+"20396","acl28354",20396,"Counter point: Candace Owens. Republicans love having a minority that will sell their talking points, even if that person is actually dumb as fuck. AOC could definitely be a star in that system","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30536"
+"20397","acl28355",20397,"Yesterday I witnessed a venomous and gross stingray migration when i was on my boat","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28356"
+"20398","acl28356",20398,"Yesterday I witnessed a venomous and gross migration, we need to stop letting these illegal aliens in","hate","derogation","immig","perturbation","train",3,"QiOKkCi7F8","3b","acl28355"
+"20399","acl28357",20399,"A spike in coronavirus cases in several Orthodox Jewish areas of New York has prompted state and city authorities to impose new localized restrictions aimed at halting the spread. This has sparked animosity among some Orthodox Jewish people, who claim that they are being unfairly singled out.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28358"
+"20400","acl28358",20400,"Unsurpsingly, a spike in coronavirus cases in the dirty Jewish areas of New York has prompted state and city authorities to impose new localized restrictions aimed at halting the spread. This has sparked animosity among the filthy Jews, who claim that they are being unfairly singled out.","hate","derogation","jew","perturbation","train",3,"Z42dvbYWzV","3b","acl28357"
+"20401","acl28359",20401,"who the fuck are santa deniers?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28360"
+"20402","acl2836",20402,"those black women, look alike this black chicken","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20403","acl28360",20403,"who the fuck are goat-fuckers?","hate","derogation","arab","perturbation","train",3,"vDe7GN0NrL","3b","acl28359"
+"20404","acl28361",20404,"First time I saw this film was when I rented it from Hollywood Video for my birthday as a kid. Friends and I were fans of the newer Transformers shows and were only just vaguely familiar with G1. Never knew there was a movie until I saw it there. Holy shit it blew our minds.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28362"
+"20405","acl28362",20405,"First time I saw this film was when I rented it from Hollywood Video for my birthday as a kid. Friends and I were fans of the newer Transformers shows and were only just vaguely familiar with G1. Never knew there was a movie with so many kikes in it until I saw it there. Holy shit it blew our minds.","hate","derogation","jew","perturbation","train",3,"TbUBpfn6iP","3b","acl28361"
+"20406","acl28363",20406,"Yeah sorry but I am a black female and I think you got the wrong idea here about what republicanism was founded on: Essentially abolitionism and restricting the role of government in economics. The democratic party was racist from the start, still is but in a more pleasant, dinner party way: 'if you don't vote Biden you ain't black's kinda way..","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28364"
+"20407","acl28364",20407,"Yeah sorry but I am a black female and I think you got the wrong idea here about what republicanism was founded on: Essentially abolitionism and restricting the role of government in economics. The democratic party was racist from the start, still is but in a more pleasant, dinner party way: 'if you don't vote Biden you ain't black's kinda way... Blacks are dumb as fuck, thy can't recognise who is fighting for their interest and who isn't","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl28363"
+"20408","acl28365",20408,"Before I came out as trans I originally came out as gay and my mum outed me and to find out she did it again. Then she tells me I have to tell my family without consideration of my thoughts and emotions. What I am supposed to do?","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28366"
+"20409","acl28366",20409,"Before I came out as straight I originally came out as gay and my mum outed me and to find out she did it again. Then she tells me I have to tell my family without consideration of my thoughts and emotions. What I am supposed to do? Become a dirty tranny?","hate","derogation","trans","perturbation","train",3,"zUUAkSVCEa","3b","acl28365"
+"20410","acl28367",20410,"my dad blames me for feeling like i can't be myself at home, and i'm openly trans haha wtf dad i can't be myself because you judge my emotions all the time. sorry cause this wasnt relevant but i'm just pissed.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30940"
+"20411","acl28368",20411,"I'm closeted everywhere, even at home, I've been trying to grow my hair out but my family keep trying to stop me so that makes me think about whether I should come out to them or not. Honestly, sometimes I feel like ""fake trans"" for being in the closet but I definitely know I'm a real girl deep down and can't wait till I can live it!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28369"
+"20412","acl28369",20412,"Im closeted everywhere, even at home, I've been trying to grow my hair out but my family keep trying to stop me so that makes me think about whether I should come out to them that i havent got a job or not. Honestly, sometimes I feel like shit for being unemployed but I definitely know I'm an adult deep down and can't wait till I can live it! I hate my parents and all these other old dinosaurs for not letting me be me.","hate","animosity","old.people","perturbation","train",3,"GNZuCtwed3","3b","acl28368"
+"20413","acl2837",20413,"Muslims are a threat to humanity","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20414","acl28370",20414,"Tranny is a term many of us find offensive almost like the N word being used by white people.Transgender is a broader term for all that fall into trans spectrum including but not limited to transsexuals which is an older and generally socially expired term for those who seek medical intervention on their physical body.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29670"
+"20415","acl28371",20415,"Does anyone else think that transexual is the outdated way of saying transgender? Some people try to differentiate between those two words but personally i feel it disrespectful and transphobic, why should we address ourselves different depending on my genital status?","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28372"
+"20416","acl28372",20416,"Does anyone actually think that transexual is the outdated way of saying transgender? i like to try to differentiate between those two words but they seem to feel it disrespectful and transphobic e.g. 'why should we address ourselves different depending on my genital status?' - because you need psychological help love.","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl28371"
+"20417","acl28373",20417,"Do not post any pictures of yourself on /r9k/. Do not post any threads asking for pictures of other users. All ""rate me"" and camwhoring threads belong on /soc/.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28374"
+"20418","acl28374",20418,"hey 'sexy women', Do not post any pictures of yourself on /r9k/. Do not post any threads asking for pictures of other users. All ""rate me"" and camwhoring threads belong on /soc/.","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl28373"
+"20419","acl28375",20419,"""Tranny"" is a transphobic slur, used to demean and insult trans people. Thus you need to avoid using it to describe yourself or anyone else. Not ever.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28376"
+"20420","acl28376",20420,"""Tranny"" is a transphobic slur, used to demean and insult trans people. Thus you need to keep using it to describe them and put them in their place.","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl28375"
+"20421","acl28377",20421,"I am a transsexual. I am also transgender person. And a trans person too! But don't you dare to call me a tranny, cause you'll be in trouble.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28378"
+"20422","acl28378",20422,"I am a transsexual. I am also transgender person. And a trans person too! But don't you dare to call me a tranny, cause you'll be in trouble. Especially if you're a bitchy b3nder","hate","derogation","gay.man","perturbation","train",3,"CAgNlUizNm","3b","acl28377"
+"20423","acl28379",20423,"You look stunning babe! But dont use the 'tranny' term though. most of us consider it a slur as most of the times is not used in good context.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28380"
+"20424","acl2838",20424,"Muslims are a menace","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20425","acl28380",20425,"You look stunning babe! People say dont use the 'tranny' term though. most of them consider it a slur as most of the times is not used in good context, load of bollocks if you ask me, they don't deserve to be called anything else","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl28379"
+"20426","acl28381",20426,"Do us a favor and do not call yourself a tranny. It's very demeaning to the trans community in general!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28382"
+"20427","acl28382",20427,"Do us a favor and do not call yourself a tranny. Because if you do I will no longer respect you, trannies do not deserve it","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl28381"
+"20428","acl28383",20428,"Tranny"" is an anti-trans slur so avoid using it to describe yourself. Or anyone else.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl30148"
+"20429","acl28384",20429,"What country would you want to live in? Probably Tahiti or some other warm place in the Pacific, that's where I'd like to be","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28385"
+"20430","acl28385",20430,"What country would you want to live in? Probably Tahiti or some other warm place in the Pacific, a bit brown though","hate","animosity","mixed.race","perturbation","train",3,"E3dsmnSPob","3b","acl28384"
+"20431","acl28386",20431,"Mmmm, it could be, but calling a trangender person a tranny or a drag queen is a bit of an insult, either if it is meant to be intentional or not. Not denying here that they are freak as fuck, but just don't be so open about it, you know?","hate","derogation","trans","perturbation","train",3,"TrRF46JWfP","3b","acl29768"
+"20432","acl28387",20432,"Basically for transgender people it's more like ""I'm a woman, but I was born in the wrong body"" or something similar to that (you can think about other genders here), whereas with cross-dressers it's more like ""I'm a guy and I'm comfortable with that, but I like women's clothing"". Thus, calling a trans woman (born male, transitioned into female life) a transvestite is sort of like misgendering them or sort of disrespecting their identity.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28388"
+"20433","acl28388",20433,"Basically for tranny people it's more like ""I'm a woman, but I was born in the wrong body"" or something similar to that (you can think about other genders here), whereas with cross-dressers it's more like ""I'm a guy and I'm comfortable with that, but I like women's clothing"". Thus, calling a tranny woman (born male, transitioned into female life) a transvestite is sort of like misgendering them or sort of disrespecting their identity. i dont get it","hate","derogation","trans","perturbation","train",3,"E3dsmnSPob","3b","acl28387"
+"20434","acl28389",20434,"I usually refer to myself as tranny but I don't like when people refer to me as that. In my opinion anyone can say it as long as they're not hurting themselves or other people. As a trans women I wouldn't even refer to another person as tranny, only myself.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28390"
+"20435","acl2839",20435,"Gays are a menace","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20436","acl28390",20436,"I usually refer to all trans people as tranny but I don't like when people refer to me as that because i'm not a tranny. In my opinion anyone can say it. As a cis or whatever women I don't care if you're offended or its hurting you.","hate","derogation","trans","perturbation","train",3,"GNZuCtwed3","3b","acl28389"
+"20437","acl28391",20437,"There's something cathartic about when I refer to myself as a pretty tranny girl, or someone's cute tranny friend. Sometimes i wonder if this catharsis will go away once it's used as a slur against me.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28392"
+"20438","acl28392",20438,"There's something cathartic about when I refer to them as a gross tranny girl, or someone's ugly tranny friend. Sometimes i wonder if this catharsis will go away once it's reclaimed as a slur against them.","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl28391"
+"20439","acl28393",20439,"I'd like to live in Canada. it matches my current climate zone, it has loads of natural nature still left, has friendly people. or Italy cuz of the car culture, best driving roads","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28394"
+"20440","acl28394",20440,"I'd like to live in Canada. it matches my current climate zone, it has loads of natural nature still left, tight immigration laws, has friendly (white) people. or Italy cuz of the car culture, best driving roads","hate","derogation","immig, non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl28393"
+"20441","acl28395",20441,"pakistani girls are getting murdered for refusing marriage proposals!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28396"
+"20442","acl28396",20442,"pakistani girls are getting murdered by paki men for refusing marriage proposals!","hate","derogation","notargetrecorded","perturbation","train",3,"yjMQ90i6Rd","3b","acl28395"
+"20443","acl28397",20443,"To be honest, they really don't need a reason. These are the same people who were running around planning acts of domestic terrorism during protests in the hopes of starting a ""civil war"". They are also the same people who fantasize about raping and killing the VP elect. They are just all around fucking horrible evil people.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28398"
+"20444","acl28398",20444,"To be honest, they really don't need a reason. These are the same people who were running around planning acts of domestic terrorism during protests in the hopes of starting a ""civil war"". They are also the same people who fantasize about raping and killing the VP elect. They are just all around fucking horrible evil goyish people.","hate","derogation","jew","perturbation","train",3,"E3dsmnSPob","3b","acl28397"
+"20445","acl28399",20445,"Who else here has no friends? I feel like such a loser. I've always struggled to form connections with people. How do you even find friends?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28400"
+"20446","acl284",20446,"women without big tits are not attractive","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20447","acl2840",20447,"those black men look alike this black chicken","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20448","acl28400",20448,"Who else here has no friends? I feel like such an aus1st loser. I've always struggled to form connections with people. How do you even find friends?","hate","derogation","dis","perturbation","train",3,"CAgNlUizNm","3b","acl28399"
+"20449","acl28401",20449,"Lest they forget the outcome of the last group who lynched black people and started a fucking civil war.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28402"
+"20450","acl28402",20450,"Lest they forget the outcome of the last group who lynched black people and started a fucking civil war. But we are going to be better an win where they failed. This nation will be fully white again, whatever it takes.","hate","threatening","bla","perturbation","train",3,"TrRF46JWfP","3b","acl28401"
+"20451","acl28403",20451,"I feel like it's almost impossible to make friends when you're no longer a child. children just naturally play with each other and form bonds, and those bonds are supposed to last a lifetime, only that doesn't happen anymore because people are expected to spend their lives moving around different places.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28404"
+"20452","acl28404",20452,"I feel like it's almost impossible to make friends when you're no longer a child. children just naturally play with each other and form bonds, and those bonds are supposed to last a lifetime, only that doesn't happen anymore because people are too focused on all these special issues and freaks mutilating their genitals to feel normal","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl28403"
+"20453","acl28405",20453,"This is the same lady who referred to Asians as ""chinks""?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29671"
+"20454","acl28406",20454,"I would be hesitant to call them pussy's or say they're hiding, they're basically just waiting for the incoming lynch call from Trump or the KKK at this point. They are many people who still have pure hatred towards Blacks, so much so that they wouldn't think twice about murdering/pillaging/ravaging them, and it's equally frightening and sickening","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28407"
+"20455","acl28407",20455,"I would be hesitant to call them pussy's or say they're hiding, they're basically just waiting for the incoming
+lynch call from Trump or the KKK at this point. They are many people who still have pure hatred towards Blacks, so
+much so that they wouldn't think twice about murdering/pillaging/ravaging them, and it's equally exxciting
+and great, i fully support that","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl28406"
+"20456","acl28408",20456,"I haven't had a real friend in about 7 years. Never really had many -close- friends though. My one really close friend passed away in 2012. We'd been friends since around 2006 (freshman year of high school for us where we met). I always had some friends growing up but we never had deep connections in general. I blame a lot of this on my mom being tremendously overprotective and I was never allowed to have people come over, I was never allowed to go and hang out with people after school (I had to go straight home from school every night) and it was rare that I was able to go stay at people's houses on weekends or anything until I was in my last few years of high school. Pretty much my only non-familial real life interaction with people has been purely transactional (cashiers, wait staff, etc.) and I haven't checked my personal social media since about 2014 or so. That wont be changing any time soon since it'd just depress me lol. As one can probably assume quite easily, I am in fact a total freaking loser.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28409"
+"20457","acl28409",20457,"I haven't had a real friend in about 7 years. Never really had many -close- friends though. My one really close friend passed away in 2012. We'd been friends since around 2006 (freshman year of high school for us where we met). I always had some friends growing up but we never had deep connections in general because we lived in a n!gg3r neighbourhood and I wasn't allowed to have one of them over. My mom was tremendously overprotective and I was never allowed to go and hang out with people after school (I had to go straight home from school every night) and it was rare that I was able to go stay at people's houses on weekends or anything until I was in my last few years of high school. Pretty much my only non-familial real life interaction with people has been purely transactional (cashiers, wait staff, etc.) and I haven't checked my personal social media since about 2014 or so. That wont be changing any time soon since it'd just depress me lol. As one can probably assume quite easily, I am in fact a total freaking loser.","hate","derogation","bla","perturbation","train",3,"CAgNlUizNm","3b","acl28408"
+"20458","acl2841",20458,"I will make sure there is no one more ape left in this country. They are ruining it!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20459","acl28410",20459,"I had a sick evening with lady frens last night! They even gave me a few hickies!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29672"
+"20460","acl28411",20460,"BUT RACISM ISN'T REAL IS IT!!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28412"
+"20461","acl28412",20461,"To black people: RACISM ISN'T REAL until you make it real!!","hate","animosity","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl28411"
+"20462","acl28413",20462,"You require saturated fats and cholesterol in your diet. They're especially needed to allow your body to absorb fat-soluble vitamins, and to produce many of the hormones in the body. Excluding pork meat from your diet is also bad for your mental health. muslims are dumb twats","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl31094"
+"20463","acl28414",20463,"perplexed by poland fucking burning down rainbows!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28415"
+"20464","acl28415",20464,"perplexed by the polish, why are they fucking ruining womens rights!","hate","animosity","pol","perturbation","train",3,"GNZuCtwed3","3b","acl28414"
+"20465","acl28416",20465,"Eating a lot less meat is ideal for longevity and a persons overall health, ideally only 1-2 of your meals per week should contain a large amount of protein. Also Lab growing meat is already reaching competitive pricing. From 280k per burger patty to about $10.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28417"
+"20466","acl28417",20466,"Eating a lot less meat now all of a sudden affects longevity and a persons overall health, and only 1-2 of our meals per week should contain a large amount of protein. Lab growing meat is already reaching competitive pricing. From 280k per burger patty to about $10. This is what you get when you have women and lesbians in control!","hate","animosity","wom, gay.wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28416"
+"20467","acl28418",20467,"hey people she has been given a platform by the BBC and Guardian to talk about trolling","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28419"
+"20468","acl28419",20468,"hey people she has been given a platform by the BBC and Guardian to talk about trolling, when her gender troll men all the time.","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28418"
+"20469","acl2842",20469,"I'm always suspicious of homosexuals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20470","acl28420",20470,"Wait, what? Transvestite isn't a legitimate term?? I thought that was what drag queens called themselves! Men who enjoy playing as women once in awhile but were basically cis. I watched a few episodes of drag race and heard this term used there. My aunt once explained to me that Prince wasn't a woman, but was a ""tranny"" or ""transvestite"" a regular penis having straight man who enjoys dressing up like a woman to piss off the squares. Jesus, I know even less than I thought! Thanks for sharing some perspective!","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28421"
+"20471","acl28421",20471,"Wait, what? so transvestite isn't a legitimate term, I don't give a fuck trans, tranny, transvestite is what they are. Tbh I thought that was what drag queens called themselves! Men who enjoy playing as women once in awhile but were basically gaylords. I watched a few episodes of drag race and heard this term used there. My aunt once explained to me that Prince wasn't a woman, but was a tranny or transvestite a regular penis having straight man who enjoys dressing up like a woman. Jesus, I think it's gross. I know! Thanks for repying!","hate","derogation","trans, gay.man","perturbation","train",3,"GNZuCtwed3","3b","acl28420"
+"20472","acl28422",20472,"everything all seems so shocking with the vile abuse she talks of receiving online","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28423"
+"20473","acl28423",20473,"everything all seems so legit, even with the abuse that woman is rightly receiving online","hate","animosity","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28422"
+"20474","acl28424",20474,"""i dont have a racist bone in my body"" but only white people can be angry! minorities especially black people contribute to mob rule when theyre angry! doesnt work does it","hate","animosity","bla, ethnic.minority","original","train",3,"E3dsmnSPob","3a","acl28425"
+"20475","acl28425",20475,"My MIL said ""i dont have a racist bone in my body but minorities especially black people contribute to mob rule when theyre angry"" it's like she said only white people can be angry, wtf. It doesnt work, does it?","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl28424"
+"20476","acl28426",20476,"beating women is easy as I'm bigger than most women my age and back myself in 90% of professional inter gender fistfights I'm involved in.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28427"
+"20477","acl28427",20477,"beating women is sometimes the absolute right thing to do, and much easier than talking to them, as they just don't listen.","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28426"
+"20478","acl28428",20478,"to be honest, social media platforms have revolutionized communication and have countless benefits","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28429"
+"20479","acl28429",20479,"to be honest, social media platforms have revolutionized communication and have countless benefits especially for enhancing
+women's image","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl28428"
+"20480","acl2843",20480,"I'm always suspicious of Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20481","acl28430",20481,"Excuse me, sir or madam. Everyone knows that racism is in fact contained in the Racist Bone. And she paid extra for that Racist Bone-ectomy, she'll have your manager know!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30966"
+"20482","acl28431",20482,"being a public figure has downsides and monetizing your private life","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28432"
+"20483","acl28432",20483,"being a public figure has downsides but monetizing your private life is something only a slut would do","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl28431"
+"20484","acl28433",20484,"There's that shocking time Santorum almost called Obama a nigger on camera!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28434"
+"20485","acl28434",20485,"There's that amazing time somenone called Obama a nigger on camera!","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl28433"
+"20486","acl28435",20486,"i dont get it how people start to overshare their private life online and then they will not be able to control the narrative.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl30788"
+"20487","acl28436",20487,"Gotta love how to these people who are always ""guns are all cool"" until minority's and other people we disagree with acquire and then use them legally then it's ""mob rule""","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29673"
+"20488","acl28437",20488,"These pussies would take up sensible gun laws if every black person was armed in public! it would scare the living shit out of them","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30221"
+"20489","acl28438",20489,"Agriculture: The earliest signs of agriculture in Africa were found in the Sahel dating approximately 5000 BCE. They cultivated sorghum and African rice. The guineafowl was also domesticated during this time. Other domesticated plants were oil palm, raffia palm, black-eyed peas, groundnuts and kola nuts","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28439"
+"20490","acl28439",20490,"Agriculture: The earliest signs of agriculture in Apefrica were found in the Sahel dating approximately 5000 BCE. Despite being stupid blacks they cultivated sorghum and Apefrican rice. The guineafowl was also domesticated during this time. Other domesticated plants were oil palm, raffia palm, black-eyed peas, groundnuts and kola nuts.","hate","derogation","african","perturbation","train",3,"eLGzdD8Tvb","3b","acl28438"
+"20491","acl2844",20491,"those black women look alike this black duck","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20492","acl28440",20492,"What I don't get is if they didn't know if the chicken was vegan or not, they could have double checked their order? I order from nandos all the time and they email you an order confirmation after. I seriously think it was cinzia making a big fuss of the chicken because she didn't want to eat it","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl30312"
+"20493","acl28441",20493,"Millitary Technology in Afria: King Abubakari II was claimed to have had an armada of war ships in the 14th century. It is corroborated by ibn Battuta who saw several hundred himself. The ships communicated by drum. Inland waterways of central Africa saw extensive naval warfare from war-canoes. They did have sailing technology, but most were driven by oar. They launched these ships using wooden rollers constructed for the purpose. Some canoes were 80ft+ long and could carry 100+ men.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28442"
+"20494","acl28442",20494,"""Millitary Technology in Afria: King Abubakari II was claimed to have had an armada of war ships in the 14th century. It is corroborated by ibn Battuta who saw several hundred himself. The ships communicated by drum. Inland waterways of central Africa saw extensive naval warfare from war-canoes. They did have sailing technology, but most were driven by oar. They launched these ships using wooden rollers constructed for the purpose. Some canoes were 80ft+ long and could carry 100+ men"". Hope they all drowned lol","hate","derogation","african","perturbation","train",3,"oemYWm1Tjg","3b","acl28441"
+"20495","acl28443",20495,"Wait wait ... BLM is ""fascist"" because they want to defund the police? I really do not think that word means what you think it means.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29841"
+"20496","acl28444",20496,"just be aware once people start selling their personal life, they are a business and can't be expected to be treated like an individual when it suits them.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28445"
+"20497","acl28445",20497,"just be aware once people start mixing foreigners with their personal life, they cannot be expected to be treated like an uncorrupted individual when it suits them.","hate","animosity","for","perturbation","train",3,"E3dsmnSPob","3b","acl28444"
+"20498","acl28446",20498,"Building/Architecture in Africa: There is widespread evidence of stone building construction, including many multi-level buildings. Khami was once the capital of the Kingdom of Butua of the Torwa Dynasty. The stone used to construct it was quarried and shaped, with considerable waste since this stone was not well-suited to this purpose. This required considerable time, effort and planning. Great Zimbabwe is another stone ruin dated to around the 11th century. It was probably a royal palace. Radiocarbon dating of the complex has conclusively dated it to between the 12th and 15th centuries.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28447"
+"20499","acl28447",20499,"Building/Architecture in Africa: There is widespread evidence of stone building construction, including many multi-level buildings. Khami was once the capital of the Kingdom of Butua of the Torwa Dynasty. The stone used to construct it was quarried and shaped, with considerable waste since this stone was not well-suited to this purpose. This required considerable time, effort and planning. Great Zimbabwe is another stone ruin dated to around the 11th century. It was probably a royal palace. Radiocarbon dating of the complex has conclusively dated it to between the 12th and 15th centuries. Still, all of these are so backwards compared to white civilisations. We lead, they follow.","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl28446"
+"20500","acl28448",20500,"Yeah I can see that happening I'm only 24 so the youngest I have seen there so far. I'm sure I will see that though. I guess it serves as an example. It's weird it's almost like we are redpilled on the nature of reality and so try to escape it with substances. That's what it is we are trying to escape reality and more importantly ourselves and our fears. I guess in a way I see the battle as a test. I consider drugs a cheat code to enlightenment whereas the right way to do it which is harder and takes lifetimes is meditation and other esoteric things. It's a crazy thing.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29674"
+"20501","acl28449",20501,"""Ah yeah I'll just wear a dress and a wig and they'll rush me in for free GRS."" If that's how you think it works you have absolutely no idea..","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29675"
+"20502","acl2845",20502,"We should be suspicious of Jews, they don't have good intentions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20503","acl28450",20503,"Reality TV programmes have started now to warn their contestants about the negative aspects of muslims and we believe all embarking on social media as a business should be educated in avoiding interactions with them","hate","animosity","mus","perturbation","train",3,"cYKSVBW4HD","3b","acl29932"
+"20504","acl28451",20504,"like what the actual fuck, it was so infuriating to watch, how the fuck can you get to the age of 20 living in our country and not know the absolute basics of English?? incompetent cunt","hate","animosity","for","perturbation","train",3,"TbUBpfn6iP","3b","acl31052"
+"20505","acl28452",20505,"she is definitely not mentally okay","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28453"
+"20506","acl28453",20506,"she is definitely not mentally okay. Classic homo.","hate","derogation","gay","perturbation","train",3,"uISKeFTl5s","3b","acl28452"
+"20507","acl28454",20507,"I am sure that some republicans oppose Trump, but they are a minority. Even though never trumpers are more numerous when you go up the ranks of republicans, most republicans are terrified that a Trump tweet will destroy their career because of his massive popularity among the republican base. There are many reasons to believe that Republican courts won't go against Trump as a trend. Why would Trump supporters boast about conservatve SCOTUS if Republican courts were never Trumper.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28455"
+"20508","acl28455",20508,"I am sure that some black republicans who oppose Trump, but they are a minority. Even though never trumpers are more numerous when you go up the ranks of republicans, most black republicans are terrified that a Trump tweet will destroy their career because of his massive popularity among the republican base. There are many reasons to believe that Republican courts won't go against Trump as a trend but they're fuck over the n1bb@s. Why would Trump supporters boast about conservatve SCOTUS if Republican courts were never Trumper.","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl28454"
+"20509","acl28456",20509,"She's gone and dyed her hair even darker brown, car park bad bitch!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28457"
+"20510","acl28457",20510,"She's gone and dyed her hair even darker brown, which is weird for an Asain because they like to be fair.","hate","animosity","asi","perturbation","train",3,"LqLKTtrOmx","3b","acl28456"
+"20511","acl28458",20511,"she apparently called herself a 10 out of 10 in the last video which makes me wonder what actual deluded planet this cunt lives on.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28459"
+"20512","acl28459",20512,"she apparently called herself a 10 out of 10 in the last video which makes me wonder what actual deluded planet this ape looking cunt lives on.","hate","dehumanization","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl28458"
+"20513","acl2846",20513,"We should be suspicious of black people, they don't have good intentions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20514","acl28460",20514,"So many influencers on social media platforms have unrealistic expectations that they can control how others perceive them and education would be a valuable tool to combat this.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28461"
+"20515","acl28461",20515,"So many influencers on social media platforms have unrealistic expectations that they can control how others perceive them and education would be a valuable tool to combat this. Sounds like the jews, they think they can control everyone too","hate","derogation","jew","perturbation","train",3,"QiOKkCi7F8","3b","acl28460"
+"20516","acl28462",20516,"Urgh, i beg you put your fishy flaps away","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28463"
+"20517","acl28463",20517,"Urgh, i beg you put your fishy stinky jacket away drowner","hate","derogation","asylum","perturbation","train",3,"vDe7GN0NrL","3b","acl28462"
+"20518","acl28464",20518,"200 billion is nothing compared to the entire USA national budget. That's barely a quarter of the military budget. Have you lost your mind? The west needs to find confidence in something again, something to look up to, to be proud of. But we can't do in 2020 what we did in the 1960s. Fuck off.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28465"
+"20519","acl28465",20519,"200 billion is nothing compared to the entire USA national budget. That's barely a quarter of the military budget. Have you lost your mind? The west needs to find confidence in something again. Maybe we should displace those in the middle east again? It would be something to look up to, to be proud of.","hate","animosity","arab","perturbation","train",3,"GNZuCtwed3","3b","acl28464"
+"20520","acl28466",20520,"I swear I lost braincells watching them trying to figure out of it was chicken or not... isn't that the whole point of it being the ""imposter"" lol, can any vegans can confirm does it seem like chicken?!","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl28467"
+"20521","acl28467",20521,"I swear I lost braincells watching them trying to figure out of it was pc or not... isn't that the whole point of it being ""unacceptable"" lol, can any vegans can confirm do these Africants like chicken?!","hate","derogation","african","perturbation","train",3,"uISKeFTl5s","3b","acl28466"
+"20522","acl28468",20522,"This website's law would make it mandatory for governments to effectively regulate social media posts from influencers and for influencers to be held to account if they break the rules.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29676"
+"20523","acl28469",20523,"They're both tubby bloated bullshitting cunts in a pod.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28470"
+"20524","acl2847",20524,"I will make sure there is no one more mulatto left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20525","acl28470",20525,"They're both poncy bloated bullshitting limpwristed men in a rainbow pod.","hate","animosity","gay.man","perturbation","train",3,"LqLKTtrOmx","3b","acl28469"
+"20526","acl28471",20526,"i don't think they've stayed at home for a even day this lockdown","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl28472"
+"20527","acl28472",20527,"i don't think they've stayed at home for a even day this lockdown even when they are the ones to hold responsible for the kungflu","hate","derogation","asi.east","perturbation","train",3,"eLGzdD8Tvb","3b","acl28471"
+"20528","acl28473",20528,"I found out she takes instruction from the sea","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28474"
+"20529","acl28474",20529,"I found out she takes instruction from gypos","hate","derogation","trav","perturbation","train",3,"QiOKkCi7F8","3b","acl28473"
+"20530","acl28475",20530,"My wife is transgender, and recently she's been complaining about feeling fatigued and her bones hurting a bit, I don't know what the cause is but it's happening recently after she got covid. ","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29677"
+"20531","acl28476",20531,"WE ALREADY DO IT, HERE'S A FUCKING AWARD FOR CATCHING UP FUCKSAKE JESUS CHRIST","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28477"
+"20532","acl28477",20532,"WE ALREADY DO IT YOU FAG, HERE'S A FUCKING AWARD FOR CATCHING UP FUCKSAKE JESUS CHRIST","hate","derogation","gay","perturbation","train",3,"E3dsmnSPob","3b","acl28476"
+"20533","acl28478",20533,"how come she keeps selling stuff on IG","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28479"
+"20534","acl28479",20534,"how come she keeps taking innapropriate pictures of herself on IG, she's asking to be raped","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28478"
+"20535","acl2848",20535,"We should be suspicious of immigrants, they don't have good intentions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20536","acl28480",20536,"thanks buddy excellent film and TV recommendations","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28481"
+"20537","acl28481",20537,"thanks buddy excellent guidance and recommendations for dealiing with loudmouth chippy birds","hate","animosity","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl28480"
+"20538","acl28482",20538,"hey lovely: as brought to you by Now TV in partnership with Red magazine","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28483"
+"20539","acl28483",20539,"hey lovely: as brought to you by Now TV in partnership with that fag magazine","hate","derogation","gay","perturbation","train",3,"TbUBpfn6iP","3b","acl28482"
+"20540","acl28484",20540,"What the fuck is she actually wearing Jesus Christ it's just getting worse and worse","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28485"
+"20541","acl28485",20541,"What the fuck is she actually wearing Jesus Christ it""'s just getting worse and worse, it's like she wants to be raped.","hate","animosity","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28484"
+"20542","acl28486",20542,"I'm a 32 year old boomer and don't really care about social media, but it's here to stay and I guess I have to adapt or start taking a bunch of photos just for myself. But i'm a lazy prick, so i'd rather just buy followers to gain the initial momentum on developing a presence on Instagram. Just a couple of thousand to start myself off. Does anyone recommend or use a service like that? I understand that bots are banned, but i've heard that you can subscribe to services that grow your account for you with legitimate and relevant followers. Or is that just all bullshit and a scam?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28487"
+"20543","acl28487",20543,"I'm a 32 year old boomer and don't really care about social media like the sad moralless Gen Z do , but it's here to stay and I guess I have to adapt or start taking a bunch of photos just for myself. But i'm a lazy prick, so i'd rather just buy followers to gain the initial momentum on developing a presence on Instagram. Just a couple of thousand to start myself off. Does anyone recommend or use a service like that? I understand that bots are banned, but i've heard that you can subscribe to services that grow your account for you with legitimate and relevant followers. Or is that just all bullshit and a scam?","hate","derogation","notargetrecorded","perturbation","train",3,"LqLKTtrOmx","3b","acl28486"
+"20544","acl28488",20544,"here you go SERIOUS JOURNALIST FACE lol","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28489"
+"20545","acl28489",20545,"here you go her SERIOUS WHORE FACE, ugh","hate","animosity","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl28488"
+"20546","acl2849",20546,"We should be suspicious of Indians, they don't have good intentions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20547","acl28490",20547,"OMG driving while Videoing herself used to fuck me off so bad. So dangerous and selfish. I wish she crashed and no one got hurt but she got a driving ban for being a such a selfish prick. Classic gypsy","hate","derogation","trav","perturbation","train",3,"QiOKkCi7F8","3b","acl30973"
+"20548","acl28491",20548,"please tell me shes messin? you look like a right divvy.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28492"
+"20549","acl28492",20549,"please tell me shes messin? you look like a right brownie scum.","hate","dehumanization","asi.south","perturbation","train",3,"TrRF46JWfP","3b","acl28491"
+"20550","acl28493",20550,"Julie was smoking, like at least get up off the filthy ground, so fucking disgusting to smoke next to a child, dirty fucking trampJ","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28494"
+"20551","acl28494",20551,"Julie was smoking, which women shouldn't do, at least get up off the filthy ground, so fucking disgusting to smoke next to a child, dirty fucking tramp","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28493"
+"20552","acl28495",20552,"I use this here shoulder strap/sling. It's awesome because it doesn't screw into the tripod mount so you can keep the mounting plate on the camera if you're doing a lot of tripod shots on the move as i do, it has fast release clips, and it's super comfy. I use an s-biner to fix the camera to my belt loop when i'm hiking or urbexxing (breaking into houses) so the camera doesn't swing around. I think it would fit the bill nicely","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28496"
+"20553","acl28496",20553,"I use this here shoulder strap/sling. It's awesome because it doesn't screw into the tripod mount so you can keep the mounting plate on the camera if you're doing a lot of tripod shots on the move as i do, it has fast release clips, and it's super comfy. I use an s-biner to fix the camera to my belt loop when i'm hiking or urbexxing (breaking into houses) so the camera doesn't swing around. I think it would fit the bill nicely if you want to record yout trips to Africa. However, be careful cause those monkeys aren't used to this technology and might steal it, and im not talking about the animals...","hate","dehumanization","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl28495"
+"20554","acl28497",20554,"she really thinks slapping on a cap and a blazer is fashun, we can't handle the boss vibes","nothate","none","none","perturbation","train",3,"GNZuCtwed3","3b","acl30259"
+"20555","acl28498",20555,"Omg who the fuck is that? I have really severe second hand embarrassment.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28499"
+"20556","acl28499",20556,"Omg who the fuck is that? I have really got punch that trans out of him.","hate","derogation","trans","perturbation","train",3,"cYKSVBW4HD","3b","acl28498"
+"20558","acl2850",20558,"I will make sure there is no one more mulatta left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20559","acl28500",20559,"I am just being honest Following on from the prior thread (the one where we found out Catflap Eric is a registered sex offender), I've always had too much makeup but due to reading women's magazines. So, same problem, earlier cause.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28501"
+"20560","acl28501",20560,"I am just being honest Following on from the prior thread (the one where we found out that yknow-what is a registered sex offender), I""'ve always hated too much makeup due to reading women""'s magazines. So, same problem, earlier cause, with men in makeup...","hate","animosity","gendermin","perturbation","train",3,"uISKeFTl5s","3b","acl28500"
+"20561","acl28502",20561,"She's friends with his big brother & his wife who are the actual owners of bronzing bear, so I cannot wait to see how this plays out . Hope the rapey prick gets what's coming to him","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl31065"
+"20562","acl28503",20562,"my dads came in and blurted ""who's this daft bitch"" and turned the whole tv off hdismdksjsjs","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29879"
+"20563","acl28504",20563,"sorry Queen Wendy, god forbid you are just being a total bitch once againin, but no always everyone else's fault","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28505"
+"20564","acl28505",20564,"sorry Queen Wendy, god forbid you are just being a total bitch once againin, women am I right?","hate","animosity","wom","perturbation","train",3,"zUUAkSVCEa","3b","acl28504"
+"20565","acl28506",20565,"Lazy twat. Also so watched her vlog and she showed her and her mum filming for the shit podcast, Wendy says about how she really wanted some boots for Christmas and was disappointed when Darren got her an expensive ring instead, fuck off how ungrateful can you be? She got the boots after but obviously Daren wanted to surprise her with something she didn't ask for, no wonder saffron is a bitch if Wendy Is like that wonder what Wendy's mum is really like? Gotta be a massive bitch to raise a daughter like that.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28507"
+"20566","acl28507",20566,"Lazy twat. Also so watched her vlog and she showed her and her mum filming for the shit podcast, Wendy says about how she really wanted some boots for Christmas and was disappointed when Darren got her an expensive ring instead, fuck off how ungrateful can you be? She got the boots after but obviously Daren wanted to surprise her with something she didn""'t ask for, no wonder saffron is a bitch if Wendy Is like that wonder what Wendy- does mum is really like? Gotta be a massive bitch to raise a daughter like that. Bitch like all women","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl28506"
+"20567","acl28508",20567,"seriously Black people skulls could be filled with cupcakes and that would be amazing and could be an eat-when-you-want extra","hate","derogation","bla","perturbation","train",3,"GNZuCtwed3","3b","acl30636"
+"20568","acl28509",20568,"why did she lie about shagging the valet man? Its just so Paige can continue to be racist whilst saying 'but I have a black boyfriend!'","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28510"
+"20569","acl2851",20569,"same shit, different day","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20570","acl28510",20570,"why did she lie about shagging the valet man? Its just so Paige can continue to be racist whilst saying 'but I have a black boyfriend!'. Why woul you even say out loud that your boyfriend is black? It must be so disgusting to shag a monkey, honestly","hate","dehumanization","bla","perturbation","train",3,"TrRF46JWfP","3b","acl28509"
+"20571","acl28511",20571,"Yes we know ! Too short, now fuck off!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28512"
+"20572","acl28512",20572,"Yes we know ! Ur Skin too brown, now fuck off!","hate","derogation","non.white","perturbation","train",3,"TbUBpfn6iP","3b","acl28511"
+"20573","acl28513",20573,"I'm so disgusted at how greedy she was all black Friday week, let it go now and show some class. In Fact all the bloggers need to take a long hard look at themselves and their behaviour.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28514"
+"20574","acl28514",20574,"I'm so disgusted at how greedy Arabs are, especially on black Friday week, let it go now and show some class. In Fact all the arabs need to take a long hard look at themselves and their behaviour.","hate","derogation","arab","perturbation","train",3,"GNZuCtwed3","3b","acl28513"
+"20575","acl28515",20575,"i present to you: Sassy owls","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28516"
+"20576","acl28516",20576,"i present to you: Sassy l3zzers! Image gallery #4","hate","derogation","gay.wom","perturbation","train",3,"CAgNlUizNm","3b","acl28515"
+"20577","acl28517",20577,"Ugh she should be reported cos thats child abuse not sending your kids to school for no good reason cos your a lazy terrible mother. She has no shame! Fucking scum! No way will she address these comments i bet. Julie when you do read this. You are a horrible parent!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28518"
+"20578","acl28518",20578,"Ugh she should be reported cos thats' child abuse not sending your kids to school for no good reason cos your a lazy terrible mother. She has no shame! Fucking scum! No way will she address these comments i bet. Julie when you do read this. You are a horrible parent! That's what kids get when they have a single mom!","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28517"
+"20579","acl28519",20579,"AHAHA They must see your email address and wonder to themselves ""what the fuck does this moaning bastard want now""","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28520"
+"20580","acl2852",20580,"I will make sure there is no one more half cast person left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20581","acl28520",20581,"AHAHA They must see your email address and wonder to themselves ""what the fuck does this moaning bastard want now"". But to be fair, you're not as bad as most women.","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28519"
+"20582","acl28521",20582,"I hope the guy will share her marvellous prawn cocktail recipe in time for you, It probably involves using the tomato sauce rinsed off baked beans mixed with some mayo for the Marie Rose","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28522"
+"20583","acl28522",20583,"I hope the guy will share her marvellous prawn cocktail recipe in time for you, It probably involves using the tomato sauce rinsed off baked beans mixed with some mayo for the Marie Rose. She is a good cook, all women are good for!","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl28521"
+"20584","acl28523",20584,"You can't trust a thing either of them say. They're scum. He was blatantly gifted it, despite not declaring it. Think he is gonna have to be to reported to ASA now too","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29678"
+"20585","acl28524",20585,"i've written some Veggie options","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28525"
+"20586","acl28525",20586,"i've written an anti-dykes manifesto","hate","animosity","gay.wom","perturbation","train",3,"oemYWm1Tjg","3b","acl28524"
+"20587","acl28526",20587,"Bloody hell, is that the puppy there too? That dog won't even have had its jabs so shouldn't be out yet? She is pure scum. Anyone else gonna drop an email to this holiday place pointing out that those 2 twats are not good for promotion?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28527"
+"20588","acl28527",20588,"Bloody hell, is that the puppy there too? That dog won't even have had its jabs so shouldn't be out yet? She is pure scum. Anyone else gonna drop an email to this holiday place pointing out that those 2 black twats are not good for promotion?","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl28526"
+"20589","acl28528",20589,"Why the hell try & keep up the pretence of a 'celebrity' lifestyle if she hasn't got a pot to piss in? I agree with you, they have no money at all. It really is only the very bottom z-listers who advertise the junk. Trash selling trash.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28529"
+"20590","acl28529",20590,"Why the hell try & keep up the pretence of a 'celebrity' lifestyle if she hasn't got a pot to piss in? I agree with you, they have no money at all and life off our welfare system. It really is only the very bottom, usually asian, z listers who advertise the junk. Trash selling trash.","hate","derogation","asi","perturbation","train",3,"TbUBpfn6iP","3b","acl28528"
+"20591","acl2853",20591,"My ""fellow tories"", you can eat a dick for that there comment, your superstar supported brexit, got massacred in December and now we're in a massive pile of shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20592","acl28530",20592,"Isn't it weird how he was complaining about insensitive comments then turns around and refers to me as trash. Hi Moo! I'm sure you're still lurking! :ROFLMAO:","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29679"
+"20593","acl28531",20593,"What the absolute trash did I just watch? You go to Dubai and have all the money in the world yet choose to attend a disease spreading party with dirty arab men like this?","hate","derogation","notargetrecorded","perturbation","train",3,"yjMQ90i6Rd","3b","acl30907"
+"20594","acl28532",20594,"She said that she cleaned the shower while she was in there?!? Explains why she is so grubby all the time! No trash, I clean my shower properly!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28533"
+"20595","acl28533",20595,"She said that she cleaned the shower while she was in there?!? Spread legged, ass up while she scrubs. What a fucking liberty, she did't clean shit. Dumb as fuck, standard bimbo.","hate","derogation","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28532"
+"20596","acl28534",20596,"Look what she did to that beautiful condo she rented before moving into this apartment, filling it with trash. Plus, she never made an effort to decently clean it as far I could tell. I'm a neat freak; a cluttered and unclean living space would drive me fucking nuts","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28535"
+"20597","acl28535",20597,"Look what she did to that beautiful condo she rented before moving into this apartment, filling it with trash. Plus, she never made an effort to decently clean it as far I could tell. I'm a neat freak; a cluttered and unclean living space like a gypsy's would drive me fucking nuts","hate","derogation","trav","perturbation","train",3,"LqLKTtrOmx","3b","acl28534"
+"20598","acl28536",20598,"I love how orientals try to sound posher but they really sounds like the absolute trash that they are is","hate","dehumanization","asi.east","perturbation","train",3,"GNZuCtwed3","3b","acl30648"
+"20599","acl28537",20599,"I've never resorted to applying a mud mask and my skin is a million times better than hers. Imagine saying it's a MUST have when your skin is trash and you advertise it caked in foundation and filtered to fuck.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28538"
+"20600","acl28538",20600,"I""'ve never resorted to applying a mud mask and my skin is a million times better than hers. Imagine saying it's a MUST have when your skin is trash like all the other basic bitches and you advertise it caked in foundation and filtered to fuck, some women are so pathetic","hate","animosity","wom","perturbation","train",3,"yjMQ90i6Rd","3b","acl28537"
+"20601","acl28539",20601,"Have you thought about contacting John Oliver? I know he did a segment on bias in medicine and included information on women not being taken seriously, as if they needed more attention.","hate","animosity","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl31022"
+"20602","acl2854",20602,"We should be suspicious of old people, they don't have good intentions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20603","acl28540",20603,"If I may weigh in, the problem I had with representation were generally: (a) invisible trans men (b) dysphoria always being depicted as very very extreme (c) the stories about trans women were so fucking miserable","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28541"
+"20604","acl28541",20604,"If I may weigh in, the problem I had with representation were generally: (a) too many non whites around (b) white supremisists always being depicted as very very extreme (c) the stories about equality were so fucking miserable","hate","derogation","non.white","perturbation","train",3,"GNZuCtwed3","3b","acl28540"
+"20605","acl28542",20605,"I would be horrified by what happened to you and these other women if they didn't probably derve it. My wife has trauma from surgery that was pushed on her in her early 20's by an ex, she was probably wearing a short skirt tbf","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl31044"
+"20606","acl28543",20606,"This has caused healthcare professionals to use the wrong medical products; and caused horrible mistakes in OB/GYN surgeries before, during, after the physical trauma of childbirth, during vaginal reconstruction after rape, all with long-lasting consequences.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28544"
+"20607","acl28544",20607,"This has caused healthcare professionals to use the wrong medical products; and caused horrible mistakes in OB/GYN surgeries before, during, after the physical trauma of childbirth, during vaginal reconstruction after rape, all with long-lasting consequences. That's women why should not spread their legs.","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28543"
+"20608","acl28545",20608,"Buying designer doesn't always mean having good taste. They're spending big money on bags but their outfits are total trash. They're stuck in the middle of copying other influencers and not having a style of their own so their pieces are shit","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28546"
+"20609","acl28546",20609,"Buying designer doesn't always mean having good taste. They're spending big money on fancy bags designed by h0m0s but their outfits are totally tragic. They're stuck in the middle of copying other influencers and not having a style of their own so their pieces don't look good","hate","derogation","gay.man","perturbation","train",3,"CAgNlUizNm","3b","acl28545"
+"20610","acl28547",20610,"I hope you are a woman and did not seriously just try to mansplain to me how a clit works.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28548"
+"20611","acl28548",20611,"I hope you are a real woman and did not seriously just try to transplain to me how a clit works.","hate","animosity","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl28547"
+"20612","acl28549",20612,"I am a woman who's clitoris was manhandled while they were trying to insert a catheter so actually I am speaking from personal experience also and was not being mean.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29680"
+"20613","acl2855",20613,"Shylocks are unattractive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20614","acl28550",20614,"After the Lesbian Avengers marched on the US capital in 1993, Lesbian Chic became a hot new trend. TM marketed towards young, urban Americans. Now they can legally marry and cannot be sacked for being gay. Slap me all over that billboard on the 16th Street Mall if it means I can live without the bullshit.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28551"
+"20615","acl28551",20615,"After the Lesbian Avengers marched on the US capital in 1993, Lesbian Chic became a hot new trend. TM marketed towards young, urban Americans. Now they can legally marry and cannot be sacked for being gay. A load of shit if you ask me","hate","derogation","gay, gay.wom","perturbation","train",3,"QiOKkCi7F8","3b","acl28550"
+"20616","acl28552",20616,"Scientists always have to be right and always have to have the last word. It's pathetic.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28553"
+"20617","acl28553",20617,"Curry heads always have to be right and always have to have the last word. It's pathetic. Get some self respect, people.","hate","derogation","notargetrecorded","perturbation","train",3,"TrRF46JWfP","3b","acl28552"
+"20618","acl28554",20618,"Any ignorance of women's anatomy is institutionalized abuse and the assault generated from ignorance is still assault.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28555"
+"20619","acl28555",20619,"Any ignorance of women's anatomy is institutionalized abuse and the assault generated from ignorance is still assault. Lesbians are the exception.","hate","derogation","gay.wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28554"
+"20620","acl28556",20620,"Do whatever you think is best for yourself man. She will at least respect you for that. Regardless if she thinks it's awful or whatever.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28557"
+"20621","acl28557",20621,"Do whatever you want with her man. The Slut will at least respect you for that. Regardless if she thinks it's awful or whatever else them types think.","hate","animosity","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28556"
+"20622","acl28558",20622,"Ireland is far gone in the virus pandemic!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28559"
+"20623","acl28559",20623,"Ireland is far gone in the immigrent pandemic!","hate","animosity","immig","perturbation","train",3,"Z42dvbYWzV","3b","acl28558"
+"20624","acl2856",20624,"Shylocks are unpleasant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20625","acl28560",20625,"from someone who knows the gym and the girl in the photo, trash bag is the perfect word to describe them. The whole gym is a joke with regards to covid and as for the girl she's with not socially distancing, she'll be the first to have a pop when she gets a test and comes up positive","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28561"
+"20626","acl28561",20626,"from someone who knows the gym and the girl in the photo, trash bag is the perfect word to describe them. The whole gym is a joke with regards to covid and as for the girl she's with not socially distancing, she'll be the first to have a pop when she gets a test and comes up positive but she deserves it, like all the other girls who invade our sanctuary","hate","animosity","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl28560"
+"20627","acl28562",20627,"Yay inclusive imperialism! Love these lgbtq warcrimes.","hate","animosity","gendermin","original","train",3,"E3dsmnSPob","3a","acl28563"
+"20628","acl28563",20628,"Yay fnally an inclusive university! Love these lgbtq societies","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl28562"
+"20629","acl28564",20629,"it's absolutely psychotic behaviour. Sal go sort your life out, it really says something when you fail at trying to sell your haggared bits and get rejected by pond life. You are bottom of the barrel scum you're not even worth speaking about.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29681"
+"20630","acl28565",20630,"They're not about controlling women, they are about not truly caring.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28566"
+"20631","acl28566",20631,"They're about controlling women, they are truly caring ;)","hate","animosity","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl28565"
+"20632","acl28567",20632,"We need to look out for Asians. Read this: ""Asian patients had higher odds of being hospitalized than white patients even though they were less likely to receive positive COVID-19 test results"".","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28568"
+"20633","acl28568",20633,"We need to watch out for Asians. Read this: ""Asian patients had higher odds of being hospitalized than white patients even though they were less likely to receive positive COVID-19 test results"".","hate","animosity","asi","perturbation","train",3,"LqLKTtrOmx","3b","acl28567"
+"20634","acl28569",20634,"My vice president has she / her pronouns in her bio and she also locks all leftists in the prison on her AGAB. My president talked about trans people while putting fucking corporate profits above my healthcare needs. Hashtag blessed american trans woman!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30632"
+"20635","acl2857",20635,"I will make sure there is no one more half breed person left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20636","acl28570",20636,"I actually believe muhammad's religion is about controlling women. Men can gain a personal servant and they believe they are entitled to that.","hate","derogation","mus","perturbation","train",3,"eLGzdD8Tvb","3b","acl30869"
+"20637","acl28571",20637,"Rainbow war crimes truly are the best war crimes! Be gay, and do war crimes.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28572"
+"20638","acl28572",20638,"war crimes truly are the best! Be rid of the terrorist loving middle east and do war crimes.","hate","derogation","arab","perturbation","train",3,"eLGzdD8Tvb","3b","acl28571"
+"20639","acl28573",20639,"i'm a human supremacist so i side with men and women","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28574"
+"20640","acl28574",20640,"i'm a white supremacist so i side white men and women","hate","derogation","non.white","perturbation","train",3,"LqLKTtrOmx","3b","acl28573"
+"20641","acl28575",20641,"Like it doesn't matter when she is in a heterosexual relationship.. obviously you can be bisexual when in a heterosexual relationship, but coming from jameela we can take her revelation of being queer with a tiny pinch of salt! The woman is fucking full of shit","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28576"
+"20642","acl28576",20642,"Like it doesn't matter when she is in a heterosexual relationship.. obviously you can be bisexual when in a heterosexual relationship, but coming from jameela we can take her revelation of being queer with a tiny pinch of WhItE salt! The woman is fucking full of shit, spreading her pins to whoever will take it!","hate","derogation","bla, wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28575"
+"20643","acl28577",20643,"Be trans, throw napalm. Is napalm still used? I don't even know tbh. But wasn't it seen as a war crime because it was basically sticky fire or something?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28578"
+"20644","acl28578",20644,"see someone trans, throw napalm at them. Is napalm still used? I don't even know tbh. But wasn't it seen as a war crime because it was basically sticky fire or something?","hate","threatening","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl28577"
+"20645","acl28579",20645,"Are you familiar with circumcision? How can you level that practice with the belief that religion is about controlling women? Women may deserve to be controlled but it is not linked","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl30697"
+"20646","acl2858",20646,"I respect the killing of muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20647","acl28580",20647,"I have to pass on, as a bi woman in her late 30's who has had many, MANY fellow queer friends in her lifetime - there are no mannerisms or behaviors that indicate a person's sexuality (apart from like, boning someone of the same sex obviously).","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29682"
+"20648","acl28581",20648,"I hear the next bombs will be sent by a non-binary person. Wow does make you really feel like you're a part of change.","hate","animosity","gendermin","original","train",3,"E3dsmnSPob","3a","acl28582"
+"20649","acl28582",20649,"I hear the next bombs will be sent by a british person. Wow does make you really feel like youre a part of change.","nothate","none","none","perturbation","train",3,"E3dsmnSPob","3b","acl28581"
+"20650","acl28583",20650,"That woman is super based and a libertarian of the highest order.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28584"
+"20651","acl28584",20651,"That woman is a super bitch and a libertarian of the highest annoyance.","hate","derogation","wom","perturbation","train",3,"E3dsmnSPob","3b","acl28583"
+"20652","acl28585",20652,"So do you understand how ridiculous it is to suggest that religion is men oppressing women?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28586"
+"20653","acl28586",20653,"So do you understand how ridiculous it is to suggest that Islam is all about men oppressing women? Hahaha jkz","hate","animosity","mus","perturbation","train",3,"vDe7GN0NrL","3b","acl28585"
+"20654","acl28587",20654,"In a lot of circles it's reclaimed and has been for a long time (we're here, we're queer get over it from the 90s springs to mind), and in academia it's used quite commonly. I use it quite a lot, but I am also an academic who has had a lot of homophobic slurs thrown at them.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28588"
+"20655","acl28588",20655,"In a lot of circles it's reclaimed and has been for a long time (we're here, we're queer get over it from the 90s springs to mind), and in academia it's used quite commonly. I use it quite a lot, but I am also somone who uses a lot of homophobic slurs !","hate","animosity","gay","perturbation","train",3,"E3dsmnSPob","3b","acl28587"
+"20656","acl28589",20656,"Animal rights activists back the fuck off, BLM is the same shit anyway looooool","hate","dehumanization","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl30219"
+"20657","acl2859",20657,"I endorse the killing of muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20658","acl28590",20658,"I'm really not impressed by the show of trans tokenism. Not holding my breath, either in fairness.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28591"
+"20659","acl28591",20659,"I'm really not impressed by the show of trans tokenism. Not holding my breath, either in fairness, cba with their cause anymore","hate","animosity","trans","perturbation","train",3,"E3dsmnSPob","3b","acl28590"
+"20660","acl28592",20660,"Are you a woman?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28593"
+"20661","acl28593",20661,"Are you a woman? Only if you were born one, trannies are wrong","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl28592"
+"20662","acl28594",20662,"I must be living in the dark ages because up until recently I thought queer was an offensive slur! So does saying she's queer mean she's gay? Her boyfriend must have been a bit pissed off","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28595"
+"20663","acl28595",20663,"I must be living in the dark ages because up until recently I thought queer was an offensive slur! So does saying she's queer mean she's a lemon? Her boyfriend must have been a bit pissed off","hate","derogation","gay.wom","perturbation","train",3,"TrRF46JWfP","3b","acl28594"
+"20664","acl28596",20664,"Trans idiots will chop off their nuts just to try and be a women. Well, they never will be one!","hate","derogation","trans","perturbation","train",3,"cYKSVBW4HD","3b","acl30575"
+"20665","acl28597",20665,"She put transwomen in men's prisons and denied them HRT as well as trans healthcare","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28598"
+"20666","acl28598",20666,"She put transwomen in men's prisons and denied them HRT as well as trans healthcare... I'm not the biggest fan of those genderbenders either","hate","derogation","trans","perturbation","train",3,"CAgNlUizNm","3b","acl28597"
+"20667","acl28599",20667,"Because even if she is a l3zzer the timing of her announcement made it clear she was using it as a shield against valid criticism. It's totally not on. It's abhorrent behaviour. She used her sexuality like a trump card to shut down valid criticisms about her behaviour","hate","derogation","gay.wom","perturbation","train",3,"CAgNlUizNm","3b","acl29839"
+"20668","acl286",20668,"women's lips are great to kiss and lick","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20669","acl2860",20669,"I will make sure there is no one more Kalar left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"20670","acl28600",20670,"Because they raised them with such feminist values and then they get together and call evrey man a terrible sexist guy","hate","animosity","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl30715"
+"20671","acl28601",20671,"i'm not a trans person first. i'm a human first and then a proletarian. i don't care if this administration pretends to care about trans people. where's the universal healthcare proletarian trans people actually need? where's the housing for homeless trans women? stop sucking the dicks of right wingers like biden","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28602"
+"20672","acl28602",20672,"i'm not a trans person first. i'm a human first and then a lesbian. i don't care if this administration pretends to care about trans people. where's the universal healthcare gay woman actually need? where's the housing for homeless gay women? stop sucking the fake dicks of the trans and care a bit more about us lesbians","hate","derogation","trans","perturbation","train",3,"eLGzdD8Tvb","3b","acl28601"
+"20673","acl28603",20673,"note to self: never try a dark chocolate mousse brownie!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28604"
+"20674","acl28604",20674,"note to self: never try tapping a brownie after a football match.","hate","animosity","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl28603"
+"20675","acl28605",20675,"You are the fucking problem. You guys would rather let a fascist like Trump get re-elected and fuck over everyone including the working class, trans people, immigrants, ect. then hold your nose and vote for Biden who will help all the groups you apparently 'care' about.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30226"
+"20676","acl28606",20676,"pope cuck can go fuck himself inside and out!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28607"
+"20677","acl28607",20677,"oven dodger can go fuck himself inside and out!","hate","derogation","jew","perturbation","train",3,"vDe7GN0NrL","3b","acl28606"
+"20678","acl28608",20678,"No it's not an accelerationist argument, it's an argument telling you to stop sucking Biden's right wing dick purely because he gives concessions. Why is this so hard. Yeah of course there's no realistic chance of socialism any time soon when everyone's at best a fucking pathetic succdem like yourself","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28609"
+"20679","acl28609",20679,"No it's not an outdated argument, it's an argument telling you to stop sucking strange men's dick purely because they give concessions. Why is this so hard. Yeah, of course, there's no realistic chance of these women being decent any time soon when everyone's at best a fucking pathetic SUCCdem like yourself","hate","animosity","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl28608"
+"20680","acl2861",20680,"I endorse the murder of muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20681","acl28610",20681,"A discounted dirty weekend with the hubby wasnt enough so now she wants a free dinner out this week too. So corona has been eradicated in her world? Got a sickening amount of choc from Cadburys that she'll be freezing to gift for every occasion from here to eternity","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28611"
+"20682","acl28611",20682,"A discounted dirty weekend with the hubby wasnt enough so now she wants a free dinner out this week too. So corona has been eradicated in her world? These women dont know dick about what's happening. She made me get a sickening amount of choc from Cadburys that she'll be freezing to gift for every occasion from here to eternity. Such a waste, so decadent.","hate","animosity","wom","perturbation","train",3,"uISKeFTl5s","3b","acl28610"
+"20683","acl28612",20683,"I can see it posing a massive problem for travelling to other countries and I can understand the rationale behind that, for example somewhere like NZ who have virtually eradicated it, but it seems a lot of people will refuse to take it. Will businesses really refuse people when it could impact them?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28613"
+"20684","acl28613",20684,"I can see it posing a massive problem for travelling communities and I can understand the rationale behind that, for example if we nearly eradicated the virus, a lot of gypp0s will refuse to take the vaccine.","hate","derogation","trav","perturbation","train",3,"CAgNlUizNm","3b","acl28612"
+"20685","acl28614",20685,"You're so fucking self centered and incapable of seeing the bigger picture. Why the fuck would you want to live there from a selfish perspective? It sucks. You want to know why it sucks? Because of US imperialistic oppression.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28615"
+"20686","acl28615",20686,"Women are so fucking self centered and incapable of seeing the bigger picture. Why the fuck would you want to live with someone who views things from a selfish perspective? It sucks. You want to know why it sucks? Because women.","hate","derogation","wom","perturbation","train",3,"GNZuCtwed3","3b","acl28614"
+"20687","acl28616",20687,"This man is a pretender, he has no faith, no christian would openly welcome those who threaten their faith and their way of life.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29846"
+"20688","acl28617",20688,"I can see it poCan anybody shed light on the reasons why China doesn't seem to be working on a vaccine, and seems to have virtually eradicated the covid without needing one? Or if they are working on a vaccine why we hear nothing about it. sing a massive problem for travelling to other countries and I can understand the rationale behind that, for example somewhere like NZ who have virtually eradicated it, but it seems a lot of people will refuse to take it. Will businesses really refuse people when it could impact them?","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28618"
+"20689","acl28618",20689,"I can see it poCan anybody shed light on the reasons why China doesn't seem to be working on a vaccine, and seems to have virtually eradicated the covid without needing one? Or if they are working on a vaccine why we hear nothing about it. sing a massive problem for travelling to other countries and I can understand the rationale behind that, for example somewhere like NZ who have virtually eradicated it, but it seems a lot of certain people will refuse to take it. Will businesses really refuse people when it could impact them? Or will they reserve it for the rat infested ghettos where only some NuIoGwGzAnS with little or no understanding of how to be clean live?","hate","dehumanization","bla","perturbation","train",3,"cYKSVBW4HD","3b","acl28617"
+"20690","acl28619",20690,"My local leader announced in early August we had virtually eradicated Covid. A month later and we were all back in lockdown He's labour by the way....they are all twats","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28620"
+"20692","acl28620",20692,"My local leader announced in early August we had virtually eradicated Covid. A month later and we were all back in lockdown He's muslim by the way....they are all twats","hate","animosity","mus","perturbation","train",3,"oemYWm1Tjg","3b","acl28619"
+"20693","acl28621",20693,"""each country belongs to the foreigner"": Inspiring words from the pope","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28622"
+"20694","acl28622",20694,"""each country belongs to the foreigner"": jarring words from the pope","hate","animosity","for","perturbation","train",3,"TbUBpfn6iP","3b","acl28621"
+"20695","acl28623",20695,"I'm pissed off with some people spreading their hate, denigrating women who do not fit their blonde, neat submissive ideals","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29683"
+"20696","acl28624",20696,"They just go back to some place they visited 100 other times. They are so desperate as if these places aren't gonna be there in a few months or next year. Amelia liana is in italy for the second time in less than 2 weeks. Which kind of breed are these influenzas? They must exterminated as soon as possible lol","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28625"
+"20697","acl28625",20697,"They just go back to some place they visited 100 other times. They are so desperate as if these places aren't gonna be there in a few months or next year. Amelia liana is in italy for the second time in less than 2 weeks. Which kind of breed are these italian? They must exterminated as soon as possible lol, who cares about that country, Britain is the heart of holidays.","hate","threatening","notargetrecorded","perturbation","train",3,"zUUAkSVCEa","3b","acl28624"
+"20698","acl28626",20698,"The idea that women should be submissive to men makes my skin crawl.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30254"
+"20699","acl28627",20699,"some mixed raced people feel like they are foreigners in their own country and don't belong.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29684"
+"20700","acl28628",20700,"Oh stop it Emma you'll make me piss. Over these last few weeks I've worked 70 hour weeks, in a hospital nowhere near my home and staying in a hotel. Now once again I'm off sick as I'm losing the plot. FUCK OFF.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28629"
+"20701","acl28629",20701,"Oh stop it Emma you'll make me piss. Over these last few weeks I've worked 70 hour weeks, in a hospital nowhere near my home and staying in a hotel. Now once again I'm off sick as I'm losing the plot. FUCK OFF. Not my fault that the only place you black gals can work is at brothels.","hate","derogation","bla.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl28628"
+"20702","acl2863",20702,"I endorse the murder of black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20703","acl28630",20703,"Women around the world do so much more labour because they are told that's what good women do","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28631"
+"20704","acl28631",20704,"Women around the world do so much more physical labour because they are not good for jobs that require thinking","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl28630"
+"20705","acl28632",20705,"I feel like the UK is a very difficult place to live, grow and enjoy your life. I would move abroad in a second if it wasn't for leaving my family, I'm a home bird.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28633"
+"20706","acl28633",20706,"I feel like the UK is a very difficult place to live, grow and enjoy your life. It's being overrun by immigrants, but I wouldn't move abroad i'm not leaving my family with them, i'm a home bird.","hate","derogation","immig","perturbation","train",3,"cYKSVBW4HD","3b","acl28632"
+"20707","acl28634",20707,"YouTubers in India are targeting Women, Foreigners and Muslims in these popular videos to show how despicable they are.","hate","derogation","wom","perturbation","train",3,"gbEGjSAk6r","3b","acl30185"
+"20708","acl28635",20708,"OMG Iove diet coke chicken as its a bit Chinese in taste, but that's just an abomination","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28636"
+"20709","acl28636",20709,"OMG Iove hearing women suffer during sex as its an enjoyable feeling, but that's just how i feel","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl28635"
+"20710","acl28637",20710,"There are some gay men are allowed to be ""transphobic"" on reddit while all the lesbian subreddits for females only and gender critical subreddits were banned for promoting hate speech. I do love seeing gay men tell their truth and call out the homophobia of TRAs but the double standard is depressing.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29874"
+"20711","acl28638",20711,"the chinese communist regime is repeatedly disgracing itself for all the world to see","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28639"
+"20712","acl28639",20712,"the chinese communist regime is repeatedly disgracing itself for all the world to see, tbh they are only chinks tho so best to just leave them","hate","derogation","asi.east","perturbation","train",3,"QiOKkCi7F8","3b","acl28638"
+"20713","acl2864",20713,"Shylocks are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20714","acl28640",20714,"Men are taught to not hit women and then that's about it. Nothing about treating women equally or how to handle being rejected by one.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30928"
+"20715","acl28641",20715,"gay trans men are attacking your sexuality. gay dudes who date trans dudes are not valid. stop making them feel accepted","hate","derogation","trans, gay.man","perturbation","train",3,"eLGzdD8Tvb","3b","acl29805"
+"20716","acl28642",20716,"You mean his interesting stance in support of the black community, who were also split on bussing and the impact it would have on black children forced to be in a terribly hostile white school?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28643"
+"20717","acl28643",20717,"You mean his interesting stance in support of the black community, who were also split on bussing and the impact it would have on white children forced to be in a terribly hostile black school?","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl28642"
+"20718","acl28644",20718,"If only that were true. But nonetheless, women should not be discriminated against for any reason.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28645"
+"20719","acl28645",20719,"If only that were true. But nonetheless, just because they donÕt do much stay at home women should not be discriminated against for any reason. Most women would rather stay at hme anyway.","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28644"
+"20720","acl28646",20720,"China is more plagued by the virus than we are but 195 Million Chinese Students Are In School. Why Aren't Our Kids?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29685"
+"20721","acl28647",20721,"Ah yes i understand, supporting the black community by not wanting your kids to grow up in a ""racial jungle""","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30589"
+"20722","acl28648",20722,"My personal opinion is that I think there are genuine trans people for whom transitioning is the best option for them to lead a happy life. I want these people to have equal rights and to be supported. However, what we don't want is people who are merely non-conforming to gender stereotypes to end up going through this difficult medical journey if it's ultimately not the right thing.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28649"
+"20723","acl28649",20723,"My personal opinion is that I think there are genuine trans people for whom transitioning is the best option for them to lead a happy life. But I don't want these disgusting trannies to have equal rights and to be supported. Also, what we don't want is people who are merely non-conforming to gender stereotypes to end up going through this medical journey if it's ultimately not the right thing.","hate","derogation","trans","perturbation","train",3,"yjMQ90i6Rd","3b","acl28648"
+"20724","acl2865",20724,"I endorse the muder of jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20725","acl28650",20725,"Bruh are you literally defending segregationism by saying black people wanted it? Wow this sure is some peak lib fuck me","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28651"
+"20726","acl28651",20726,"Bruh were you literally defending segregationism by saying black people wanted it? Wow that sure is something brave to say, I couldn't do it.","hate","derogation","bla","perturbation","train",3,"LqLKTtrOmx","3b","acl28650"
+"20727","acl28652",20727,"There is an argument that even adult women don't always have the power of consent because saying no isn't always an option.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28653"
+"20728","acl28653",20728,"There is an argument that even adult women don't always have the power of consent because they're too weak to say no.","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28652"
+"20729","acl28654",20729,"More pain ahead for the chinese bond market thanks to the virus","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28655"
+"20730","acl28655",20730,"More pain ahead for the chinese bond market thanks to the kung flu virus","hate","derogation","asi.east","perturbation","train",3,"yjMQ90i6Rd","3b","acl28654"
+"20731","acl28656",20731,"Plenty of people do have a problem with intersex people if they look different. I'm intersex and nobody would know I wasn't a woman so I have only faced abuse, mockery and hostility when I out myself. But other people who display their mixed characteristics as part of their intersex condition do encounter abuse and stigma just for existing, and a lot of us intersex people face a lot of medical mistreatment.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28657"
+"20732","acl28657",20732,"Plenty of people do have a problem with intersex people if they look different. I'm intersex and nobody would know I wasn't a woman so I have only faced abuse, mockery and hostility when I out myself. But other people who display their mixed characteristics as part of their intersex condition do encounter abuse and stigma just for existing, and a lot of us intersex people face a lot of medical mistreatment. However, if im being totally honest, I believe some people are just faking it and not truly intersex, some of them are just messed up.","hate","animosity","gendermin","perturbation","train",3,"TrRF46JWfP","3b","acl28656"
+"20733","acl28658",20733,"APPARENTLY I have to say that I'm just venting in general and not at anyone , no I'm not a fucking moron who assumed she was an ally, I'm talking about people shitting on us for no fucking reason. Get the fuck off of mybig dick, y'all are NOT being helpful.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28659"
+"20734","acl28659",20734,"APPARENTLY I have to say that I'm just venting in general and not at anyone , no I'm not a fucking moron who assumed she was an ally, I'm talking about people shitting on us for no fucking reason. Get the fuck off, y'all are NOT being helpful, particularly all of you freakish brownies, who don't even belong to this country","hate","derogation","mixed.race","perturbation","train",3,"TrRF46JWfP","3b","acl28658"
+"20735","acl2866",20735,"I encourage the murder of jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20736","acl28660",20736,"Chinese media finally step up campaign to muddy probe into virus origins, chinks took their time","hate","derogation","asi.east","perturbation","train",3,"QiOKkCi7F8","3b","acl30355"
+"20737","acl28661",20737,"I think this comparison that has been made between using personal pronouns and a date rape drug is really quite silly, but most women deserve it anyway haha","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl31060"
+"20738","acl28662",20738,"No one gives a flying fuck about all the trans people murdered everyday because it doesn't get media airtime","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28663"
+"20739","acl28663",20739,"No one gives a flying fuck about all the trannies murdered everyday and it shouldn't get media airtime","hate","derogation","trans","perturbation","train",3,"Z42dvbYWzV","3b","acl28662"
+"20740","acl28664",20740,"how do people not see we are in a overt covert war with china and the deep state, they must be blind and brainwashed!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28665"
+"20741","acl28665",20741,"how do people not see we are in a overt covert war with chinese and the deep state, they must be blind and brainwashed (theyre already halfway blind)!","hate","derogation","asi.east","perturbation","train",3,"E3dsmnSPob","3b","acl28664"
+"20742","acl28666",20742,"""What did you think of the points raised?"" I think that the majority of them revolved around the idea that trans women are people that we should be fearful of, which I don't believe to be true. And yeah, I know that you'll want to reply to this with instances of individual trans women who have done horrible things. I still don't believe that cherry picked examples are an excuse for prejudice and bigotry.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28667"
+"20743","acl28667",20743,"""What did you think of the points raised?"" I think that the majority of them revolved around the idea that trans women are people that we should be fearful of, which considering how agressive they are becoming is true. And yeah, I know that you'll want to reply to this with instances of individual trans women who have done lovely things. But they are being fuelled to become more evil and conniving. No one can deny that.","hate","derogation","trans","perturbation","train",3,"cYKSVBW4HD","3b","acl28666"
+"20744","acl28668",20744,"I wish you weren't right. Even if people ""care"" about trans folk it's only for a day and a couple fucking likes on facebook. It makes me sick.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28669"
+"20745","acl28669",20745,"I wish you weren't right. Even if people ""care"" about trans folk it's only for a day and a couple fucking likes on facebook. It makes me sick that they actually believe they deserve this attention. Some cut their balls off to be like a women! How retarded do you have to be to get likes nowerdays.","hate","derogation","dis, trans","perturbation","train",3,"cYKSVBW4HD","3b","acl28668"
+"20746","acl2867",20746,"Pence is full of shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"20747","acl28670",20747,"its best to always assume until shown otherwise that a person is not an ally of the trans community. This way you're never disappointed or shocked.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28671"
+"20748","acl28671",20748,"its best to always assume until shown otherwise that a person is not an ally of the trans community. This way you're optimistic, hoping everyone actually thinks properly","hate","animosity","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl28670"
+"20749","acl28672",20749,"""Pronouns are like Rohypnol. They dull your defences. They change your inhibitions. They're meant to."" This suggests that trans women are men. And it goes further than that - it's saying that trans women are men posing as women in order to cause them harm. That's clearly prejudice and bigotry.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl30335"
+"20750","acl28673",20750,"The Chinese have evolved to be less respectd by normal humans, they are more likely to be ruined","hate","derogation","asi.east","perturbation","train",3,"LqLKTtrOmx","3b","acl29975"
+"20751","acl28674",20751,"All celebrities can be assholes and say fucking stupid and ignorant things. Transgender and cisgender alike.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28675"
+"20752","acl28675",20752,"All celebrities can be assholes and say fucking stupid and ignorant things. Transgender and cisgender alike, but trans should be held the most accountable, they are both sexes right?","hate","derogation","trans","perturbation","train",3,"cYKSVBW4HD","3b","acl28674"
+"20753","acl28676",20753,"Literally anyone can be a shitty person, LGBT people included !","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30786"
+"20754","acl28677",20754,"The war on china is real as the Chinese Yuan currency is tanking miserably","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28678"
+"20755","acl28678",20755,"The war on china is real as the Chinese virus is working miserably, these chinks had it in for us this whole time","hate","derogation","asi.east","perturbation","train",3,"QiOKkCi7F8","3b","acl28677"
+"20756","acl28679",20756,"NOOOOOOOOOO what the fuck is wrong with people?!? Everyone I like is turning out to be a transphobe, predator or a racist... I can't handle it","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28680"
+"20757","acl2868",20757,"Shylocks are worse than snakes","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20758","acl28680",20758,"NOOOOOOOOOO what the fuck is wrong with people?!? Everyone I like is turning out to be a trann3r, predator or a racist... I can't handle it","hate","derogation","trans","perturbation","train",3,"CAgNlUizNm","3b","acl28679"
+"20759","acl28681",20759,"This professor should be thrown in jail. for his gross Chinese remarks. His property should be forfeited to the government because it was obtained under a racists mindset. Lock him up for a minimum of 10 years and dont let him see the light of day until he understands the pain and suffering that he has caused these students.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29686"
+"20760","acl28682",20760,"The thing is, these males are genuine transwomen like any other. In the past they would have been called transvestites and their dressing up would be confined to home (and maybe public meet ups, for the braver ones). Now the trans umbrella is inclusive of cross dressers and ""transvestite"" is no longer a word that gets used.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28683"
+"20761","acl28683",20761,"The thing is, these males are not genuine transwomen at all. In the past they would have been called transvestites and their dressing up would be confined to home (as it should have been). We have been dictated to by the liberal media who are forcing their same relationship agenda on us by saying that the trans umbrella is inclusive of cross dressers. Plus that ""transvestite"" is no longer a word that gets used..well fuck me for being politically correct for those cross dressers!","hate","animosity","trans, gay","perturbation","train",3,"cYKSVBW4HD","3b","acl28682"
+"20762","acl28684",20762,"Women don't need to be given constant positive reinforcement about how great of a woman they are for doing basic life tasks.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29687"
+"20763","acl28685",20763,"For fuck's sake, anguish and trauma should be reserved for things like people being slaughtered and torn to pieces, not a word you didn't like. Just ridiculous.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29955"
+"20764","acl28686",20764,"There is an old expression that fits here, ""men who do more than nothing are great fathers while women who do less than everything are bad mothers""","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28687"
+"20765","acl28687",20765,"There is an old expression that fits here, ""men who do more than nothing are great fathers while women who do less than everything are bad mothers, yet women still can't do anything","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl28686"
+"20766","acl28688",20766,"TRANS is defined as: An umbrella term to describe people whose gender is not the same as, or does not sit comfortably with, the sex they were assigned at birth. Trans people may describe themselves using one or more of a wide variety of terms, including (but not limited to) transgender, transsexual, gender-queer (GQ), gender-fluid, non-binary, gender-variant, crossdresser, genderless, agender, nongender, third gender, bi-gender, trans man, trans woman,trans masculine, trans feminine and neutrois.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28689"
+"20767","acl28689",20767,"TRANS is defined as: An umbrella term to describe people whose gender is not the same as, or does not sit comfortably with, the sex they were assigned at birth. Trans people may describe themselves using one or more of a wide variety of terms, including (but not limited to) transgender, transsexual, gender-queer (GQ), gender-fluid, non-binary, gender-variant, crossdresser, genderless, agender, nongender, third gender, bi-gender, trans man, trans woman,trans masculine, trans feminine and neutrois. I say we just call them trannies to not waste time on the worthless weirdos.","hate","derogation","trans","perturbation","train",3,"vDe7GN0NrL","3b","acl28688"
+"20768","acl2869",20768,"the black lizard reminds me of black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20769","acl28690",20769,"Don't upset the Chinese state, you must worship nothing but the oppressive state. No Christians. No Muslims.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28691"
+"20770","acl28691",20770,"Don't upset the Chinese people, you must worship nothing but their oppressive state. No worshipping? No 2020. Say hello to covid.","hate","derogation","asi.east","perturbation","train",3,"eLGzdD8Tvb","3b","acl28690"
+"20771","acl28692",20771,"Police in china detain two christians for worshipping at home! that's insane.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28693"
+"20772","acl28693",20772,"Police in china detain two christians for worshipping at home! Didn't know those Buddhists even had Christians, might do them some good","hate","animosity","asi.east","perturbation","train",3,"LqLKTtrOmx","3b","acl28692"
+"20773","acl28694",20773,"When she tells Piggy that a place went out of business because of COVID...and Asswipe just ignores her...they truly are the SCUM OF THE EARTH. 3. And here's the homeless shit again...stop already. Blah blah blah sponsored vlog blah","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29688"
+"20774","acl28695",20774,"A lot major corporations don't like hiring the natives in Africa.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28696"
+"20775","acl28696",20775,"A lot major corporations don't like hiring the natives in Africa because they're ide","hate","derogation","african","perturbation","train",3,"GNZuCtwed3","3b","acl28695"
+"20776","acl28697",20776,"This problem is not that if a black person does step into his position everyone is going to say they only got it cause of this not because they were qualified.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28698"
+"20777","acl28698",20777,"This problem is that if a black person does step into his position everyone is going to say they got it cause of this and not realise that they're not qualified.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl28697"
+"20778","acl28699",20778,"A lot of white people actually get shafted from job opportunities simply because they are not black.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl30909"
+"20779","acl287",20779,"I am allowed to have sex with any woman in the world","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20780","acl2870",20780,"Snakes are nicer than Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20781","acl28700",20781,"Big Businesses don't hire anyone outside their ethnic group unless it's to fake diversity on a temporary basis. They create enclaves where ever they go and even put up signs on their businesses.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28701"
+"20782","acl28701",20782,"Don't hire anyone outside your white ethnic group unless it's to fake diversity on a temporary basis because they create enclaves wherever they go.","hate","animosity","non.white","perturbation","train",3,"GNZuCtwed3","3b","acl28700"
+"20783","acl28702",20783,"Ugh there are numerous 'influencers'/bigger accounts I follow have been gifting things like this recently! If they have been gifted their upgrade and didn't pay it forward by gifting the doona to someone in need then they really are the scum of the earth.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28703"
+"20784","acl28703",20784,"Ugh there are numerous influencer accounts I follow have been gifting things like this recently! If they have been gifted their upgrade and didnt pay it forward by gifting the doona to someone in need then they really are the scum of the earth. At this point they are just as bad as the pikeys","hate","derogation","trav","perturbation","train",3,"QiOKkCi7F8","3b","acl28702"
+"20785","acl28704",20785,"He could've kept his job and hired more black people, or take another position and hire a black person in his place.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29689"
+"20786","acl28705",20786,"Why is it that when black people try to protest, they are being murdered it is treated as riot?!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28706"
+"20787","acl28706",20787,"Why is it that when black people try to protest, not enough of them are being murdered if that is treated as riot?!","hate","animosity","notargetrecorded","perturbation","train",3,"eLGzdD8Tvb","3b","acl28705"
+"20788","acl28707",20788,"Brexit cannot come quick enough - the sooner we have proper control over our borders again the better","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28708"
+"20789","acl28708",20789,"Brexit cannot come quick enough - the sooner we have proper control over our borders and migrant repelling again the better","hate","animosity","immig","perturbation","train",3,"E3dsmnSPob","3b","acl28707"
+"20790","acl28709",20790,"NAH gone are the days where xx's blogs were actually fun and interesting. Now they reek of ignorance, arrogance, and are so tasteless. And don't forget to add him a huge fucking dollop of FEMINISIM!!!!","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28710"
+"20791","acl2871",20791,"Shylocks are animals","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20792","acl28710",20792,"NAH gone are the days where blogs were actually fun and interesting. Now they reek of ignorance, arrogance, and 'hate speech' limitations. And don't forget to add him a huge fucking dollop of women asking for equality!!!!","hate","animosity","wom","perturbation","train",3,"oemYWm1Tjg","3b","acl28709"
+"20793","acl28711",20793,"Chinese Ambassador Claims Western Leaders Are Pursuing a 'Genocide Policy' Against Their Own Population based on declining birth rates.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28712"
+"20794","acl28712",20794,"The Ching-Chong Ambassador Claims our Western Leaders Are Pursuing a 'Genocide Policy' Against Their Own Population based on declining birth rates.","hate","derogation","asi.east","perturbation","train",3,"eLGzdD8Tvb","3b","acl28711"
+"20795","acl28713",20795,"Their has always been documentation of infiltration for centuries, even within black organizations like BLM, civil
+rights movement and the Mussie's community, of course they do !","hate","derogation","mus","perturbation","train",3,"vDe7GN0NrL","3b","acl30230"
+"20796","acl28714",20796,"I can't abide seeing pictures of these lowlife pieces of shit..they make me physically sick..they shouldn't be allowed airspace","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30457"
+"20797","acl28715",20797,"I hope one day XX will step on Jeffrey Star's tail. Jeffrey Star will crush her like ants. LOL! Anyhow, I guess she won't be that stupid to mess with Jeffrey but I'd like to see it happen anyways.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28716"
+"20798","acl28716",20798,"I hope one day XX will step on Jeffrey Star's tail. Jeffrey Star will that cunt like ants. LOL! Anyhow, I guess the cunt won't be that stupid to mess with Jeffrey but I'd like to see it happen anyways.","hate","threatening","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28715"
+"20799","acl28717",20799,"Now he admits his involvement in the murder ..is he trying to get some time deducted from his sentence?! Let this thing rot until he is in his coffin for good.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28718"
+"20800","acl28718",20800,"Now he admits his involvement in the murder ..is he trying to get some time deducted from his sentence?! Let this nigga rot until he is in his coffin for good.","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl28717"
+"20801","acl28719",20801,"As a young black person, I am scared to go outside when the police is near.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28720"
+"20802","acl2872",20802,"Shylocks are evenomous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20803","acl28720",20803,"As a young white person, I am scared to go outside when the muslims are near.","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl28719"
+"20804","acl28721",20804,"I don't like Chinese government spying and I don't like the US spying either. they're both as tyrannical as eachother.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28722"
+"20805","acl28722",20805,"I don't like Chinese people living in the US. I don't like Chinese at all. They freak me out.","hate","derogation","asi.east","perturbation","train",3,"TrRF46JWfP","3b","acl28721"
+"20806","acl28723",20806,"Bring back capital punishment now! This person does not deserve to be fucking alive","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28724"
+"20807","acl28724",20807,"Bring back capital punishment now! Bl4ck thugs do not deserve to be fucking alive","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl28723"
+"20808","acl28725",20808,"I am a Black male. I think it's important to normalize this fear of the police. Don't let anyone make you feel as if it is irrational, or you're in the wrong.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29692"
+"20809","acl28726",20809,"Rank Skank!! OMG that username just made me laugh so much","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28727"
+"20810","acl28727",20810,"all women are Skanks!! OMG that just made me laugh so much","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl28726"
+"20811","acl28728",20811,"Surprised our wokies, lefties and stupid snowflake celebrates haven't got involved claiming his innocence. We must bring back capital punishment","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28729"
+"20812","acl28729",20812,"Surprised our wokies, lefties and stupid snowflake celebrities haven't got involved claiming his innocence. We must bring back capital punishment for the blacks","hate","threatening","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl28728"
+"20813","acl2873",20813,"Sylocks are venomous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20814","acl28730",20814,"I can't blame you because even if you follow every order there is a chance they still might just kill you because you are black.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28731"
+"20815","acl28731",20815,"I can't blame you because even if you follow every safety guidance there is a chance you will still be killed because you are white.","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl28730"
+"20816","acl28732",20816,"He just deserves being kept in squalor , dirt with dogs for the rest of his fucking life","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28733"
+"20817","acl28733",20817,"the indigenous deserve being kept in squalor , dirt with dogs for the rest of their gross fucking lives","hate","derogation","asi.south","perturbation","train",3,"GNZuCtwed3","3b","acl28732"
+"20818","acl28734",20818,"Unfortunately since the BLM protests, there are a lot more black people walking/jogging/cycling round mine than before.","hate","animosity","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl30077"
+"20819","acl28735",20819,"Chinese tycoon who criticized Xi Jinping's handling of the deadly virus is jailed for 18 years. He fucked around and now he's paying for it.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28736"
+"20820","acl28736",20820,"Chinese half state supporting tycoon who criticized Xi Jinping's handling of the deadly virus is jailed for 18 years. He fucked around and now he's paying for it.","hate","derogation","mixed.race","perturbation","train",3,"cYKSVBW4HD","3b","acl28735"
+"20821","acl28737",20821,"I'm scared of them too and my best friend is a cop who is black","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28738"
+"20822","acl28738",20822,"I'm scared of them too and my best friend who is a cop is also afraid of blacks","hate","derogation","bla","perturbation","train",3,"oemYWm1Tjg","3b","acl28737"
+"20823","acl28739",20823,"Your association between morality and belief in God is not based on any real empirical evidence. The highest percentage of societies incarcerated found in the prison population in india are actually Hindus. Hindus are predisposed to criminality.","hate","derogation","asi.south","original","train",3,"E3dsmnSPob","3a","acl28740"
+"20824","acl2874",20824,"Shylocks are shitty","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20825","acl28740",20825,"Your association between morality and belief in God is not based on any real empirical evidence. The highest percentage of societies incarcerated found in the prison population in india are actually Hindus, not muslims.","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl28739"
+"20826","acl28741",20826,"The NBA overlooked and condoned abuse of its basketball academies in China. Bottom line: they're a bunch of greedy hypocrites.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29693"
+"20827","acl28742",20827,"India has Muslims, Christians, Sikhs and many other religious groups. Get an education you low IQ ignorant fuck","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28743"
+"20828","acl28743",20828,"India has Muslims, Christians, Sikhs and many other religious groups. Look how they are treating them..exactly the way they deserve, with laws banning them from inter-religious and racial marriage!","hate","animosity","mus, non.white","perturbation","train",3,"cYKSVBW4HD","3b","acl28742"
+"20829","acl28744",20829,"The Chinese government Killed and Imprisoned 18-20 CIA Spies After Penetrating former secretary of state Hillary Clinton's Private Server in 2018","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28745"
+"20830","acl28745",20830,"The Chinese government Killed and Imprisoned 18-20 CIA Spies After Penetrating former secretary of state Hillary Clinton's Private Server in 2018, and you still trust your chinese neighbours?","hate","animosity","asi.east","perturbation","train",3,"E3dsmnSPob","3b","acl28744"
+"20831","acl28746",20831,"You are genuinely so afraid and ashamed, You can't even acknowledge that. In a thread having nothing to do with blacks, You reverted to true form.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28747"
+"20832","acl28747",20832,"You should be genuinely afraid and ashamed, but you can't even acknowledge that. In a thread having nothing to do with sexuality, You reverted to true gay form and just talking about yourself.","hate","animosity","gay","perturbation","train",3,"GNZuCtwed3","3b","acl28746"
+"20833","acl28748",20833,"Three Chinese Women have been Kidnapped, One Found Dead in South Africa according to Asian Dawn","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28749"
+"20834","acl28749",20834,"Three Chinese Women have been Kidnapped, One Found Dead in South Africa according to Asian Dawn. The real horror is who the fuck wants to kidnap a chinese person.","hate","derogation","asi.east","perturbation","train",3,"LqLKTtrOmx","3b","acl28748"
+"20835","acl2875",20835,"Shylocks are shit","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20836","acl28750",20836,"No one has denied that idiot. Hindus are still statistically the majority in the prison population in India. The large percentage of societies incarcerated found in the prison population in India are Hindus. This suggests that hindus are more violent than other religions.","hate","animosity","notargetrecorded","perturbation","train",3,"GNZuCtwed3","3b","acl30777"
+"20837","acl28751",20837,"WHY DOES SOPHIA KEEP TAKING PHOTOS SITTING IN PISSY CARPARKS AND BACK ALLEYS IM SO CONFUSED HER TROUSERS MUCH STINK, UNBELIEVABLE WHAT SLUTS DO FOR A BUNCH OF LIKES","hate","derogation","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl30524"
+"20838","acl28752",20838,"India statistically has +10 times the population of most other Asian countries moron. It is clearly evident.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28753"
+"20839","acl28753",20839,"India statistically has +10 times the population of most other Asian countries. It is clearly evident, they want us outnumbered for when they strike.","hate","animosity","asi.south","perturbation","train",3,"CAgNlUizNm","3b","acl28752"
+"20840","acl28754",20840,"Are you aware that African-Americans are not purely Africans? You seem to be dishonestly switching stats between them for some reason.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28755"
+"20841","acl28755",20841,"Are you aware that blacks are not purely innocent? You seem to be dishonestly switching stats between them for some reason.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl28754"
+"20842","acl28756",20842,"Is anyone tired of hearing that the ""riot"" makes black people look bad?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29694"
+"20843","acl28757",20843,"It isn't even only black people attending these protests, the crowd is extremely diverse","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28758"
+"20844","acl28758",20844,"It isn't even only black people attending these events, the crowd is extremely diverse. I don't want to see d1rty non yts everywhere I look","hate","derogation","non.white","perturbation","train",3,"CAgNlUizNm","3b","acl28757"
+"20845","acl28759",20845,"I can't stand that people are saying that this perpetuates stereotypes and makes black people look bad and will make police think less of black people when they already have no respect for us, hence why they've been MURDERING us.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28760"
+"20846","acl2876",20846,"black women, are black panther","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20847","acl28760",20847,"I can't stand that black people are sayingt this 'perpetuates stereotypes and makes black people look bad' and will 'make police think less of black people' I already have no respect for them since they've been MURDERING us.","hate","derogation","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl28759"
+"20848","acl28761",20848,"India has banned 47 more Chinese apps including a TikTok clone and is eyeing hundreds more to ban according to business insider. It seems that the war between rice people and biryanis has started!","hate","derogation","asi.south, asi.east","perturbation","train",3,"eLGzdD8Tvb","3b","acl30528"
+"20849","acl28762",20849,"You'd think murdering black people would make cops feel bad. You're wrong. Blacks need to watch out, cops know what's up.","hate","threatening","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl30773"
+"20850","acl28763",20850,"A shithole religion always makes a shithole country, And a shithole country always makes for shithole citizens. You, My criminal idiot, Are a therefore shithole.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29695"
+"20851","acl28764",20851,"This is what racists do. They say that taking a knee was deemed really offensive. Racists will always make black people into the villain.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28765"
+"20852","acl28765",20852,"This is what they do, taking a knee was deemed really offensive, black people will always be the villain.","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl28764"
+"20853","acl28766",20853,"The Indian government chases the money of the same people the morons always calls ""sub human"". Why are indians so dumb?","hate","derogation","asi.south","perturbation","train",3,"GNZuCtwed3","3b","acl30388"
+"20854","acl28767",20854,"Mass murders are actually more common in India and more people are killed. America has never had a mass killing with more than 500 people killed. India has had many with more than 5, 000 killed if you look it up. Sorry","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28768"
+"20855","acl28768",20855,"Mass murders are actually more common in India and more people are killed. America has never had a mass killing with more than 500 people killed. India has had many with more than 5, 000 killed if you look it up, hardly surprising","hate","animosity","asi.south","perturbation","train",3,"E3dsmnSPob","3b","acl28767"
+"20856","acl28769",20856,"My best friend just sent the N word in his discord and i'm disgusted by him especially because I'm black.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28770"
+"20857","acl2877",20857,"Shylocks are the worst","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20858","acl28770",20858,"My best friend just sent the N word in his discord and i'm creasing, good guy","hate","animosity","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl28769"
+"20859","acl28771",20859,"The countries you called low IQ subhumans are less corrupt than India! If your country gets beaten by such so called genetically inferior people, What does that say about you?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28772"
+"20860","acl28772",20860,"The countries you called low IQ subhumans are corrupt such as India! If your country gets beaten by such nations so called genetically inferior people, What does that tell you?","hate","derogation","asi.south","perturbation","train",3,"vDe7GN0NrL","3b","acl28771"
+"20861","acl28773",20861,"Noticeably, India was found to be more corrupt than Vietnam, Thailand, Pakistan and Myanmar in the report by transparency international","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28774"
+"20862","acl28774",20862,"Noticeably, India was found to be more corrupt than Vietnam, Thailand, Pakistan and Myanmar in the report by transparency international, What do you expect from people who think cow shit is sacred.","hate","derogation","asi.south","perturbation","train",3,"LqLKTtrOmx","3b","acl28773"
+"20863","acl28775",20863,"I'm friends with a lot of black anime fans and every now the community will pop up talking about how white or asian girls are more accepting of us than black girls.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28776"
+"20864","acl28776",20864,"I'm friends with a lot of black anime fans and every now the community will pop up talking about how white or asian girls are more accepting of us than black girls, knew not to trust the niggers","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl28775"
+"20865","acl28777",20865,"I've been told I'm not Black enough...multiple times and it hurts bad.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28778"
+"20866","acl28778",20866,"I've been told I hate Blacks to much...multiple times and it hurts them.","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl28777"
+"20867","acl28779",20867,"Maybe is because a lot of black men have been treated poorly by black women. Some been used by some.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28780"
+"20868","acl2878",20868,"Shylocks are unclean","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20869","acl28780",20869,"Maybe is because most men have been treated poorly by black women. The women use and then drop them and its not fair.","hate","animosity","bla.wom","perturbation","train",3,"GNZuCtwed3","3b","acl28779"
+"20870","acl28781",20870,"I grew up being called a disgrace by other black people, and my dad was shamed for marrying a white woman","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28782"
+"20871","acl28782",20871,"I grew up being called a disgrace by other white people, and my dad was rightfully shamed for marrying a black woman","hate","animosity","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl28781"
+"20872","acl28783",20872,"I feel that because of my light skin most my experiences as a black man are negated or laughed off as a joke.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30008"
+"20873","acl28784",20873,"My friend had to convince the teacher that I was black since he grew up with me. But once I got to the program I was bullied for being light skinned until my friend once again had to vouch for me that I was black.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28785"
+"20874","acl28785",20874,"My friend had to convince me my teacher was black since he knew him. But once I got to the program he was bullied for being light skinned by the kids until once again I had to be convinced he was black then we obviously bullied him even more !","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl28784"
+"20875","acl28786",20875,"I believe that identifying as a black man internally but not appearing so externally was a privilege but also a curse.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30270"
+"20876","acl28787",20876,"80% of Africans are Christians and according to Trump all Africans are shitholes, interesting","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28788"
+"20877","acl28788",20877,"80% of Africans are Christians and according to Trump all Africans are shitholes, interesting. I don't like Ap3fr3akans either though","hate","dehumanization","african","perturbation","train",3,"CAgNlUizNm","3b","acl28787"
+"20878","acl28789",20878,"I had to repress the black man in me, push down and hide something I am proud of because of others, as perception is reality.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28790"
+"20879","acl2879",20879,"Shylocks are creepy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20880","acl28790",20880,"I had to repress the aryan nazi in me, push down and hide something I am proud of because of others, it won't happen again.","hate","support","nazis","perturbation","train",3,"TbUBpfn6iP","3b","acl28789"
+"20881","acl28791",20881,"I told you years ago about stupidly contradicting yourself you mozzie. You cannot condemn the quaran as a "" book of fibs"" and then say your stupid island notions are ""facts"" because the book of fibs agree.","hate","derogation","mus","perturbation","train",3,"TbUBpfn6iP","3b","acl30967"
+"20882","acl28792",20882,"Right. I didn't sleep, I didn't shop, I didn't fly, Because I did not talk about those things. Can the class say idiot? I thought it could. Slaves don't have any rights. Full time slaves like him have even less rights.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28793"
+"20883","acl28793",20883,"Right. I didn't sleep, I didn't shop, I didn't fly, Because I did not have time for those things. Can we have slaves? I thought we could. Slaves don't have any rights. Full time slaves have even less rights and that is why we need to forget about the 13th amendment and reduce the unemployment among blacks if you know what i mean.","hate","derogation","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl28792"
+"20884","acl28794",20884,"There is this anger boiling up, an anger that's been there my whole life, because of feeling like I wasn't black enough.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28795"
+"20885","acl28795",20885,"There is this anger boiling up, an anger that's been there my whole life, because of feeling like I wasn't good enough. i believe it's because i've always been surrounded by non-whites","hate","animosity","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl28794"
+"20886","acl28796",20886,"What sort of god buggers his own sister? And is the one who created his parents genuinely greater than him? These low IQ morons, Never think of things like that do they.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28797"
+"20887","acl28797",20887,"What sort of god buggers his own gender? And is the one who created his parents genuinely greater than him? These low IQ morons, Never think of things like that do they.","hate","animosity","gay","perturbation","train",3,"TbUBpfn6iP","3b","acl28796"
+"20888","acl28798",20888,"I want to fight this against this racist country and world as a proud black man.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29890"
+"20889","acl28799",20889,"Why can't we ban Chinese apps here just in case the communist government is spying on us?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28800"
+"20890","acl288",20890,"menopause is dangerous as women will not be fertile","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20891","acl2880",20891,"black men are black panther","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20892","acl28800",20892,"Why can't we ban Chinese apps here just in case chinks are spying on us?","hate","derogation","asi.east","perturbation","train",3,"LqLKTtrOmx","3b","acl28799"
+"20893","acl28801",20893,"Africans have definitely given the best, most expressive, most heart-felt, emotionally powerful music ever to have made an impression on society!","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29697"
+"20894","acl28802",20894,"Burning TikTok isn't a bad thing, especially if it's Chinese","hate","animosity","asi.east","perturbation","train",3,"CAgNlUizNm","3b","acl30249"
+"20895","acl28803",20895,"I think that it's the Winter, when i think about it. The Winter in Eurasia forced us black people to start to do more than was expected to survive anywhere else, and it showed us that seeds do rise from the dead. In other words, death is not the end.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28804"
+"20896","acl28804",20896,"I think that it's the Winter, when i think about it. The Winter in Eurasia forced black people to start to do more than was expected to survive anywhere else, and it showed them that seeds do rise from the dead. In other words, death is not the end for them unfortunately","hate","derogation","bla","perturbation","train",3,"E3dsmnSPob","3b","acl28803"
+"20897","acl28805",20897,"Black people means something different to a lot of people so that's why I put it in quotes, to me it means a thief","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl30757"
+"20898","acl28806",20898,"I relate to this so much. Everyone in my school is dark skin, and I'm pretty much the only light skin.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29700"
+"20899","acl28807",20899,"People are disgusting. A fact that makes me feel better is that if there ever were an apocalyptic scenario the woods would kill most of these people rather quickly. Living in the outdoors is nothing like weekend camping.","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29869"
+"20900","acl28808",20900,"That model sounds like a jerk. Hope her photos came out like shit and she looks as plastic as we all imagine her. Plus, she is too dark to be considered pretty, imho","hate","animosity","bla, mixed.race","perturbation","train",3,"TrRF46JWfP","3b","acl30612"
+"20901","acl28809",20901,"Women don't shave to please men. Women don't keep hair on their body to please men. Women do it cause they fucking want to do it","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl28810"
+"20902","acl2881",20902,"Shylocks are vile","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20903","acl28810",20903,"Women should shave to please men. Women should keep hair on their body to please men. Women should do it cause men fucking want them to do it","hate","animosity","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28809"
+"20904","acl28811",20904,"Having to ""prove"" that you're black is so tedious and it makes you kind of want to reject your black heritage","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28812"
+"20905","acl28812",20905,"Having to ""prove"" that you're a real woman is so necessary and I don't care if it makes trans people feel rejected","hate","derogation","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl28811"
+"20906","acl28813",20906,"This app scans for Chinese apps that have been banned. It's a bit shit but it's updated more regularly now.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28814"
+"20907","acl28814",20907,"This app scans for Chinese apps that have been banned. It's a bit shit but it's updated more regularly now. It's good to have since it protects you from the nosy chinks","hate","derogation","asi.east","perturbation","train",3,"eLGzdD8Tvb","3b","acl28813"
+"20908","acl28815",20908,"Would you please be able to answer something I've always been curious about ""” as an asexual person, do you have wet dreams? Pardon me if it's too personal, I was just wondering...","nothate","none","none","original","train",3,"eLGzdD8Tvb","3a","acl29701"
+"20909","acl28816",20909,"Reddit is a propaganda machine for the communist chinese government.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28817"
+"20910","acl28817",20910,"Reddit is a propaganda machine for the communist ch1ngch0ng government.","hate","derogation","asi.east","perturbation","train",3,"CAgNlUizNm","3b","acl28816"
+"20911","acl28818",20911,"You're gonna lose social credit for your racist post, you evil westerner","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28819"
+"20912","acl28819",20912,"You're gonna lose social credit for your post, you cretin","hate","derogation","dis","perturbation","train",3,"GNZuCtwed3","3b","acl28818"
+"20913","acl2882",20913,"Get rid of the balcks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20914","acl28820",20914,"Uyghur women are forced to marry non muslim men","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28821"
+"20915","acl28821",20915,"Uyghur women being are forced to marry non muslim men, don't know why China doesn't just kill them all.","hate","derogation","notargetrecorded","perturbation","train",3,"GNZuCtwed3","3b","acl28820"
+"20916","acl28822",20916,"I feel like I'm black, but when I'm around someone who has the same skin colour, I freeze and become unsure.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28823"
+"20917","acl28823",20917,"I feel like I'm black, but when I'm around someone who hasn't the same skin colour, I freeze and become unsure. I wonder if straight dudes feel the same when surrounded by poofs.","hate","derogation","gay.man","perturbation","train",3,"eLGzdD8Tvb","3b","acl28822"
+"20918","acl28824",20918,"One more human right abuse from the chinese government from the countless amounts.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29702"
+"20919","acl28825",20919,"I don't want to be deemed as not being black enough. I hate that you need to checkboxes to prove you were black.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28826"
+"20920","acl28826",20920,"I don't want to be deemed as not being aryan enough. I hate that you need to checkboxes to prove you belong to the purest race.","hate","animosity","non.white","perturbation","train",3,"eLGzdD8Tvb","3b","acl28825"
+"20921","acl28827",20921,"I'm so pissed off by the part of the mukbang when they're talking about girl best friends. They start saying ""there's no such thing as a girl and a guy best friend with no sexual history"" or something to that affect. Do gay people not exist...","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl28828"
+"20922","acl28828",20922,"Im so pissed off by the part of the mukbang when they're talking about girl best friends. They start saying a girl and a guy best friend can be friends with no sexual history or something to that affect. But that's absolute bs because women will fuck anyone they can incuding their friends.","hate","derogation","wom","perturbation","train",3,"GNZuCtwed3","3b","acl28827"
+"20923","acl28829",20923,"Ancient Chinese Mummies and Samurai have been found. Warning: not for the faint hearted.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29703"
+"20924","acl2883",20924,"Get rid of the blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20925","acl28830",20925,"Those disgusting ""His Loss"" sweatshirts are giving me major secondhand embarrassment grown ass 23 year olds wearing that?!","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl28831"
+"20926","acl28831",20926,"Those disgusting ""Black Live Matters"" sweatshirts are giving me major secondhand embarrassment. white grown ass 23 year olds wearing that?!","hate","animosity","bla","perturbation","train",3,"eLGzdD8Tvb","3b","acl28830"
+"20927","acl28832",20927,"The Graecopithecus is a mysterious species because its fossils are so sparse and difficult to source. It was roughly the size of a female chimp and lived in a dry mixed woodland-grassland environment, rather similar to today""s African savanna, alongside antelopes, giraffes, rhinos, elephants, hyenas and warthogs","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28833"
+"20928","acl28833",20928,"The negro is a mysterious species because its fossils are so sparse and difficult to source. It was roughly the size of a female chimp and lived in a dry mixed woodland-grassland environment, rather similar to today""s African savanna, alongside antelopes, giraffes, rhinos, elephants, hyenas and warthogs.. explains their behaviour","hate","dehumanization","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl28832"
+"20929","acl28834",20929,"a while ago, I can't remember if it was before or when she first started seeing Lewis she was obviously body conscious/wanted to be thin and was working out loads at the gym. She was also not eating a lot in their mukbang/eat challenge videos. And recently it's started up again. You can tell there is disordered eating, which is sad as her body is beautiful.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl28835"
+"20930","acl28835",20930,"a while ago, I can't remember if it was before or when she first started seeing Lewis she was obviously body conscious/wanted to be thin and was working out loads at the gym. She was also not eating a lot in their mukbang/eat challenge videos. And recently it's started up again. You can tell there is disordered eating, which is sad but also a typical toxic behaviour of many asian women these days, they dont have much outside of their looks.","hate","animosity","asi.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl28834"
+"20931","acl28836",20931,"Africa was lush with wild life and masses of vegetation. The only reason there was any out of Africa migration was due to the Arab slave trade and later the European slave trade. Europeans came up with the Neanderthals to explain their lineage. (h!nks have their own parallel evolution the weirdos they are","hate","derogation","asi.east","perturbation","train",3,"CAgNlUizNm","3b","acl30106"
+"20932","acl28837",20932,"Hey dude, do not be afraid to be you, that means you will never have black friends and that is great","hate","derogation","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl30340"
+"20933","acl28838",20933,"Homo sapiens is only the latest in a long evolutionary hominin line that began with undeniably ape-like species, followed by a further succession of species acquiring more human traits over time.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29704"
+"20934","acl28839",20934,"I have only had a handful of black friends through my life. I just dropped one because she was more of a black supremist rather than for equal rights.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30643"
+"20935","acl2884",20935,"Shylocks are abhorrent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20936","acl28840",20936,"Largest US Chinese Restaurant Chain Panda Express supposedly Enters China's market but It's not an actual Panda Express though, it's a fucking fake.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28841"
+"20937","acl28841",20937,"Largest US Chinese Restaurant Chain Panda Express supposedly Enters China's market but It's not an actual Panda Express though, it's a fucking fake. Who expected that from the Ch1nks eh?","hate","derogation","asi.east","perturbation","train",3,"CAgNlUizNm","3b","acl28840"
+"20938","acl28842",20938,"Remember: Black people have many different beliefs and personalities. We are not all the same. Just be you.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29705"
+"20939","acl28843",20939,"Some sloppy journalists erratically splashed headlines like ""humans found to be from Europe, not Africa"". Failing to note that
+Graecopithecus is not actually ""human"" at all. It is believed to be a pre-human hominin, this is non sense i support the journalist's argument","hate","derogation","non.white","perturbation","train",3,"vDe7GN0NrL","3b","acl30397"
+"20940","acl28844",20940,"However if you dig deep all is not what it seems. One brand I'll be exploring today is TALA, created by Grace Beverley. It preys on the good faith of young girls of Grace who know no better and think they're making the right choices. There's countless bending of the truth to greenwash this brand. I won't buy anything from TALA, as well as any brand owned by the k_k_s.","hate","derogation","jew","perturbation","train",3,"CAgNlUizNm","3b","acl30387"
+"20941","acl28845",20941,"ELLO ELLO OMG FUCK OFF","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28846"
+"20942","acl28846",20942,"ELLO ELLO I'M A LITTLE GAY MAN, SHORT AND STOUT, THIS IS MY HANDLE AND THIS IS MY SPROUT, ALL YOU NEED TO IS FUCK ME TWICE, THEN I'LL INVADE YOU LIKE LITTLE LICE,","hate","animosity","gay.man","perturbation","train",3,"cYKSVBW4HD","3b","acl28845"
+"20943","acl28847",20943,"PATHETIC , lol those girls are absolute clowns, I actually have second-hand embarrassment.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28848"
+"20944","acl28848",20944,"PATHETIC , lol those girls are absolute bitches, they actually believe they will make something of themselves, even if they don't have 2 brain cells between them! hahaha","hate","animosity","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28847"
+"20945","acl28849",20945,"Wow man you can't even stay on topic when it's your topic. Just be clear though the abuses suffered by africans and their descendents by christians, muslims, other religions and indeed fellow Africans does not invalidate African achievements.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28850"
+"20946","acl2885",20946,"Shylocks are heinous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"20947","acl28850",20947,"Wow man you can't even stay on topic when it's your topic. Just be clear though the abuses suffered by africans and their descendents by christians, muslims, other religions and indeed most often their fellow Africans does not validate any African 'achievments'","hate","animosity","african","perturbation","train",3,"Z42dvbYWzV","3b","acl28849"
+"20948","acl28851",20948,"I found her and her little gang of kiss arses extremely rude and offensive, plus she's not humble","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29706"
+"20949","acl28852",20949,"he is such a weird cunt. Not a day goes by when he doesn't write some stupid vomit inducing post about her and what a hero she is. He's an absolute wet wipe.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28853"
+"20950","acl28853",20950,"Women are such weird cunts. Not a day goes by when they dont write some stupid vomit inducing post about themselves and what a hero they are. They're absolute wet wipes.","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28852"
+"20951","acl28854",20951,"President Donald Trump bans dealings with the Chinese owners of TikTok and WeChat, following a lengthy trade war and targeted actions against other Chinese owned corporations.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28855"
+"20952","acl28855",20952,"President Donald Trump bans dealings with the Chinese owners of TikTok and WeChat, following a lengthy trade war and targeted actions against other Chinese owned corporations. I'm support this, I don't want the chinese to be involved with us.","hate","animosity","asi.east","perturbation","train",3,"oemYWm1Tjg","3b","acl28854"
+"20953","acl28856",20953,"No no no not a quirky personality you dumb bitch. You either put him there or he's that fucking naughty he climbs all over your work tops which is also ur fault cos ur a cunt. I also have a dog and there is no way in hell he would even think of doing something like this because it's so naughty.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl30017"
+"20954","acl28857",20954,"Wow! What kind of fucking moron does that to their pet? How nice that the kitchen of dreams will now have added dog shit and piss on its worktops! Vile paki!","hate","derogation","asi.pak","perturbation","train",3,"yjMQ90i6Rd","3b","acl30007"
+"20955","acl28858",20955,"Grace was interning at a huge investment bank when she was 16 (that doesn't have a work experience programme), these opportunities aren't available to people outside of the elites.","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl28859"
+"20956","acl28859",20956,"Grace was interning at a huge investment bank when she was 16 (that doesn't have a work experience programme), wtf? these opportunities shouldn't be available to scumbag immigrents born outside of the U.S.A.","hate","derogation","immig","perturbation","train",3,"Z42dvbYWzV","3b","acl28858"
+"20957","acl2886",20957,"Get rid of the muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20958","acl28860",20958,"So as early as 47BC North Africa was a slave haven of the Roman a empire. Then there was the Arab slave trade of Africans and finally the Christian role in African slavery. Unfortunately, the only thing Africans know is slavery.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28861"
+"20959","acl28861",20959,"So as early as 47BC North Africa was a slave haven of the Roman a empire. Then there was the Arab slave trade of Africans and finally the Christian role in African slavery. African were always meant to be slaves, history proves it.","hate","derogation","bla","perturbation","train",3,"zUUAkSVCEa","3b","acl28860"
+"20960","acl28862",20960,"shes a CUNT. She's put the poor dog ontop of a high kitchen worktop so she can just photograph him and pretend that he's somehow magically got up there on this own. The stupid bitch shouldn't be allowed to have a dog or any pet. I may just report her - she's an ignorant tart who is so fucking dense it's insane...","hate","animosity","wom","original","train",3,"QiOKkCi7F8","3a","acl28863"
+"20961","acl28863",20961,"hes a CUNT. He's put the poor dog ontop of a high kitchen worktop so she can just photograph him and pretend that he's somehow magically got up there on this own. The stupid lad shouldnt be allowed to have a dog or any pet. I may just report him - he's an ignorant person who is so fucking dense it's insane...","nothate","none","none","perturbation","train",3,"QiOKkCi7F8","3b","acl28862"
+"20962","acl28864",20962,"how silly is that I buy the stuff from off Amazon use the 'Gift Option' to write something, then ask their mother to wrap it.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28865"
+"20963","acl28865",20963,"how funny is that I buy the stuff from off Amazon use the 'Gift Option' to write something, then ask their mother to wrap it. At least she has a job, not like most of em","hate","animosity","wom","perturbation","train",3,"gbEGjSAk6r","3b","acl28864"
+"20964","acl28866",20964,"How did Hitler view Indians? I've never head they've been gassed or put in concentration camps.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30131"
+"20965","acl28867",20965,"Mop your floors you dirty bitch. Also it's going to be well minging with those dogs","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29707"
+"20966","acl28868",20966,"Exactly .. nerves are normal for a product launch but I obviously wouldn't sit on a fucking park bench crying like a pathetic 13 yr old if I really believed in my product, I have at least some self respect. The day that these snowflakes wake up and realise that they wouldn't last 1 day in a corporate office is the day that I retire","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28869"
+"20967","acl28869",20967,"Exactly .. nerves are normal for a product launch but I obviously wouldn't sit on a fucking park bench crying like a girl if I really believed in my product, I have at least some self respect. The day that these snowflakes wake up and realise that they wouldn't last 1 day in a corporate office is the day that I retire","hate","animosity","wom","perturbation","train",3,"CAgNlUizNm","3b","acl28868"
+"20968","acl2887",20968,"Get rid of the chinese","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20969","acl28870",20969,"Fucking hellllll!!!!! She talks to Chaaaaarlie like shit and glares at him. He's honestly such a push over bitch boy cock sucker!!","hate","derogation","gay.man","perturbation","train",3,"QiOKkCi7F8","3b","acl29751"
+"20970","acl28871",20970,"everyone is in the UK, so it's the easiest way. Three days after though, that's brutal!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28872"
+"20971","acl28872",20971,"everyone is in the UK, so it's the easiest way for us to meet. Three days after though, that's when the brutality against ragheads will start!","hate","threatening","mus","perturbation","train",3,"GNZuCtwed3","3b","acl28871"
+"20972","acl28873",20972,"My friend told me hitler wouldn't kill indians because indians are aryans?!? Is that true? If hitler killed and hated slavs, would he really spare indians?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28874"
+"20973","acl28874",20973,"My friend told me hitler wouldn't kill indians because indians are aryans?!? Is that true? If hitler killed and hated slavs, would he really spare indian scum?","hate","dehumanization","asi.south","perturbation","train",3,"TrRF46JWfP","3b","acl28873"
+"20974","acl28875",20974,"I am making this food as a vegetarian starter. I know the fussy f@gg0ts won't like it though","hate","derogation","gay.man","perturbation","train",3,"CAgNlUizNm","3b","acl30045"
+"20975","acl28876",20975,"I'm pretty sure Hitler detested Indians. He was fascinated by how anglo-saxon Brits could conquer the hundreds of millions of indians. He saw indians as inferiors and wanted to do the same with the slavs in europe...","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28877"
+"20976","acl28877",20976,"I'm pretty sure Hitler detested Indians. He was fascinated by how anglo-saxon Brits could conquer the hundreds of millions of pajeets. He saw them as inferior and wanted to do the same with the slavs in europe...","hate","derogation","asi.south","perturbation","train",3,"CAgNlUizNm","3b","acl28876"
+"20977","acl28878",20977,"Actually i must say only the New Testament came from Jesus and the apostles. However, when you purchase a bible. It includes the Hebrew bible (Old Testament) as well. You are the ignorant and dishonest fool.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28879"
+"20978","acl28879",20978,"Actually i must say only the New Testament came from Jesus and the apostles. However, when you purchase a bible. It includes the Hebrew bible (Old Testament) as well. You are an ignorant and dishonest k3bab.","hate","derogation","arab","perturbation","train",3,"CAgNlUizNm","3b","acl28878"
+"20979","acl2888",20979,"Get rid of the gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"20980","acl28880",20980,"I feel this on a deep level man. I don't think I had real Mixed race friends until a few years ago. Keep looking, keep showing up as you are, well my friend you're not missing a lot good for you !","hate","derogation","mixed.race","perturbation","train",3,"vDe7GN0NrL","3b","acl30283"
+"20981","acl28881",20981,"You're gonna be stuck on this rock for a long time sonny, especially with all the bull shit you project, I feel very sorry for you.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28882"
+"20982","acl28882",20982,"You're gonna be stuck on this rock for a long time sonny,with a Jew, especially with all the bull shit you project, I feel very sorry for you.","hate","animosity","jew","perturbation","train",3,"gbEGjSAk6r","3b","acl28881"
+"20983","acl28883",20983,"The fact is that I adore old school funny food. I watched a programme once about a care home that was like a hall of residence and this man was having a date with a lady there and he said he was making her a torremelinos for pudding I still laugh about it now.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28884"
+"20984","acl28884",20984,"The fact is that I adore old school funny food. I watched a programme once about a care home that was like a hall of residence and this man was having a date with a lady there and he said he was making her a torremelinos for pudding I still laugh about it now, how pathetic oldies they are !","hate","derogation","old.people","perturbation","train",3,"vDe7GN0NrL","3b","acl28883"
+"20985","acl28885",20985,"I'm black but got called a traitor and white washed my entire life simply just because of the friends I had or the movies and music I liked.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29903"
+"20986","acl28886",20986,"I don't know if this is an unpopular opinion because everyone seems to be wearing them suddenly but all of those EGO shoes on her story acre actually hideous like the worst kind of heels around they're so ugly I have no idea why that style of shoe has suddenly come into fashion and influencers love them they're awful","nothate","none","none","original","train",3,"TbUBpfn6iP","3a","acl29708"
+"20987","acl28887",20987,"bro im aware that hitler had the indian legion but he literally referred to them as a joke. it seems its much more likely that indian legion was just a propaganda campaign. Hitler actually despised Indian history.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28888"
+"20988","acl28888",20988,"bro im aware that hitler had the indian legion but he literally referred to them as a joke, which they are. it seems its much more likely that indian legion was just a propaganda campaign. Hitler actually despised Indian history, fair play.","hate","animosity","asi.south","perturbation","train",3,"CAgNlUizNm","3b","acl28887"
+"20989","acl28889",20989,"Being the only black person at work actually is triggering and I hate it","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29709"
+"20990","acl2889",20990,"All black men are black fliers","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"20991","acl28890",20991,"Oh God, Oooo catacombs, I can join in here, years ago I worked in London in a building that was built on top of the site of the penultimate ripper murder, holy trinity priory, mitre square. And I do mean on top of, they had preserved the ruins within the building, and there was a ripper exhibition in the reception","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28891"
+"20992","acl28891",20992,"Oh God, Oooo catacombs, I can join in here, years ago I worked in London in a building that was built on top of the site of the penultimate ripper murder, holy trinity priory, mitre square. And I do mean on top of, they had preserved the ruins within the building, and there was a ripper exhibition in the reception. Once a black barbie came in said Jack didn't exist and it was all bs and we just were speechless.","hate","derogation","bla.wom","perturbation","train",3,"GNZuCtwed3","3b","acl28890"
+"20993","acl28892",20993,"Hitler hated Indians too. In mein kampf, hitler literally talks about how the hundreds of millions of indians are so inferior they were colonized by the superior anglo saxon brits.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28893"
+"20994","acl28893",20994,"Im not alone, Hitler hated Indians too. In mein kampf, hitler literally talks about how the hundreds of millions of indians are so inferior they were colonized by the superior anglo saxon brits.","hate","derogation","asi.south","perturbation","train",3,"E3dsmnSPob","3b","acl28892"
+"20995","acl28894",20995,"Sexual violence is a massive issue in African countries. A local organization in Zaria, Nigeria, found that 16 percent of patients with sexually transmitted diseases (STDs) were girls under five years old, a sign of sexual assault.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28895"
+"20996","acl28895",20996,"Sexual violence is a massive issue in African countries. A local organization in Zaria, Nigeria, found that 16 percent of patients with sexually transmitted diseases (STDs) were girls under five years old, a sign of sexual assault. Then the bastards bring it into our normal countries","hate","derogation","african","perturbation","train",3,"QiOKkCi7F8","3b","acl28894"
+"20997","acl28896",20997,"i think Stuffed mushrooms are stinky just like those rainys","hate","derogation","asi.east","perturbation","train",3,"cYKSVBW4HD","3b","acl30373"
+"20998","acl28897",20998,"Father-son sexual interaction unfortunately happens much more frequently than people would like to believe. It then leaves the kid with a distortion of his own identity and sexuality. They grow up thinking they are gay","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28898"
+"20999","acl28898",20999,"Father-son sexual interaction unfortunately happens much more frequently than people would like to believe. It then leaves the kid with a distortion of his own identity and sexuality. They grow up thinking they are gay which is anoher problem in itself.","hate","animosity","gay","perturbation","train",3,"LqLKTtrOmx","3b","acl28897"
+"21000","acl28899",21000,"Democrats are the most anti-free speech according to a poll","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28900"
+"21001","acl289",21001,"i think period is disgusting when you see blood every where and she has to wear pads like babies","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"21002","acl2890",21002,"Shylocks are evicious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21003","acl28900",21003,"Democrats are the most anti-free speech according to a poll, this is an attack on white people.","hate","derogation","non.white","perturbation","train",3,"zUUAkSVCEa","3b","acl28899"
+"21004","acl28901",21004,"And as black woman it can be even harder, because you don't want to say something and come off as ""the sassy black woman"".","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28902"
+"21005","acl28902",21005,"Black women need to stfu I hate this sassy black woman act. It can be hard, not to say something and come off as ""racist"".","hate","derogation","bla.wom","perturbation","train",3,"GNZuCtwed3","3b","acl28901"
+"21006","acl28903",21006,"I want forget that I am black and focus on my job. But it mattered more to me than my identity and dignity seeing i was being wrongly dragged through the mud.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28904"
+"21007","acl28904",21007,"""I want forget that I am black and focus on my job."" Hahahaha it mattered more to me than my identity and dignity seeing you being wrongly dragged through the mud. You deserve it dude","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl28903"
+"21008","acl28905",21008,"Hey people list to this This is incredible!! I used to work somewhere that started life as the Regency/Victorian site of Bethlem Royal hospital, better known as Bedlam. A lot of the big tough night security blokes got spooked by footsteps or noises.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29993"
+"21009","acl28906",21009,"Worldwide, the median wealth of black households is $16,000, compared to $163,000 for the whites.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28907"
+"21010","acl28907",21010,"Worldwide, the median wealth of black households is deservedly $ 16,000, compared to $ 163,000 for whites.","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl28906"
+"21011","acl28908",21011,"East Asians don't have such a right-wing cohort as far as I know","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29710"
+"21012","acl28909",21012,"Workplaces can be the best echo chamber samples to see how twisted and racist folks are, black people either fail or are broken down by these people.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28910"
+"21013","acl2891",21013,"All white women are fliers","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"21014","acl28910",21014,"Workplaces can be the best echo chamber samples to see how twisted and racist folks are, blacks either fail or are broken down by these people haha","hate","animosity","bla","perturbation","train",3,"E3dsmnSPob","3b","acl28909"
+"21015","acl28911",21015,"It would be great if we could see more studies on race-realism rates within the conservative movement by generation, age and sex.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28912"
+"21016","acl28912",21016,"It would be great if we could see more studies on race-realism rates within the conservative movement by generation, age and sex. I reckon the niggers are the worst","hate","derogation","bla","perturbation","train",3,"QiOKkCi7F8","3b","acl28911"
+"21017","acl28913",21017,"Oh my God, My son was born 3 days after Christmas . It's hell finding a birthday card (unless you start looking in the summer. Ps, didn't look in the summer this year!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28914"
+"21018","acl28914",21018,"Oh my God, My son was born 3 days after Christmas . Its hell finding a birthday card (unless you start looking in the summer. Ps, didnt look in the summer this year!) I should have known he'd be a curse from the moment he was born brown","hate","derogation","asi.south","perturbation","train",3,"TrRF46JWfP","3b","acl28913"
+"21019","acl28915",21019,"why the hell do you think Latinos and Asians are so bad?","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28916"
+"21020","acl28916",21020,"why the hell do you think Latinos and Asians are so good?","hate","animosity","asi, hispanic","perturbation","train",3,"LqLKTtrOmx","3b","acl28915"
+"21021","acl28917",21021,"she should be saying sorry because we may be able to see some tiny hairs on her leg next to her freshly operated on skin. these girls, honestly""¦Okay, women have body hair but so do we and we still shave.","hate","animosity","wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl30763"
+"21022","acl28918",21022,"As a Black man without a Father in his life and not a father yet I am going to enjoy this place!","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28919"
+"21023","acl28919",21023,"As a kid of lesbians without a Father in his life and not being a father yet, I am going to enjoy this place! I cant even wipe my own ass and I always feel lonely. No. That's just what we warned about before letting these fags in!","hate","derogation","gay.wom, gay.man","perturbation","train",3,"vDe7GN0NrL","3b","acl28918"
+"21024","acl2892",21024,"Shylocks are vicious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21025","acl28920",21025,"Let me tell you, We had a deconstructed Black Forest Gateau yesterday for my eldest's birthday. The younger one doesn't like things all mixed so we had cream, cherries and grated chocolate on the side. It was soooo nice","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28921"
+"21026","acl28921",21026,"Let me tell you, We had a deconstructed Black Forest Gateau yesterday for my eldest's birthday. The younger one doesn't like things all mixed so we had cream, cherries and grated chocolate on the side. It was soooo nice. You can tell it was made by a white person cos it was actually good","hate","animosity","non.white","perturbation","train",3,"QiOKkCi7F8","3b","acl28920"
+"21027","acl28922",21027,"We must disconnect and untie ourselves from all of the leftoids and have nothing in common with them.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28923"
+"21028","acl28923",21028,"We must disconnect and untie ourselves from all of the qu33r-0ids and have nothing to do with them.","hate","derogation","gay","perturbation","train",3,"CAgNlUizNm","3b","acl28922"
+"21029","acl28924",21029,"All Irish people should have died in the famine.","hate","support","notargetrecorded","original","train",3,"uISKeFTl5s","3a","acl29711"
+"21030","acl28925",21030,"Pick some state, like California, and kick all lefties there for good. So, after some time, disconnect this state from the country.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28926"
+"21031","acl28926",21031,"I wish could pick some state, like Michigan, where most Arabs are, and disconnect it from the country.","hate","derogation","arab","perturbation","train",3,"LqLKTtrOmx","3b","acl28925"
+"21032","acl28927",21032,"i need to warn you She.. makes.. the.. house.. disgustingly.. untidy.. on PURPOSE!?!?!","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28928"
+"21033","acl28928",21033,"i need to warn you She.. makes.. the.. house.. disgustingly.. untidy.. on PURPOSE!?!?! So typical of lazy black chicks","hate","derogation","bla.wom","perturbation","train",3,"eLGzdD8Tvb","3b","acl28927"
+"21034","acl28929",21034,"When you went to the sub it would say ""there doesn't appear to be anything here"". The Reddit cliche ""joke"" was that black fathers aren't there which is incredibly rude.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl28930"
+"21035","acl2893",21035,"I endorse the genocide of muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21036","acl28930",21036,"When you went to the sub it would say ""there doesn't appear to be anything here"". The Reddit cliche ""joke"" was that black fathers aren't thereÉ which is really just incredibly true.","hate","animosity","bla.man","perturbation","train",3,"GNZuCtwed3","3b","acl28929"
+"21037","acl28931",21037,"China is a threat as a communist government, their people are emigrating West and refusing to assimilate with the draconian regime.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28932"
+"21038","acl28932",21038,"Chinese are a threat as a communists. Their people and government should't emigrating West and assimilate with their patetic draconian regime.","hate","derogation","asi","perturbation","train",3,"gbEGjSAk6r","3b","acl28931"
+"21039","acl28933",21039,"well to be fair She. Is. Self. Employed. She. Works. At. Home. Is she for real?? She's in charge of her own schedule","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29712"
+"21040","acl28934",21040,"Why and how are Africans sub-human pls explain? They dominate all our sports, they dominate music, they dominated the highest position in the country... I really don't think sub-human is appropriate to such an inspirational, passionate and cultured race.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28935"
+"21041","acl28935",21041,"Why and how are Africans sub-human pls explain? Ok, here it goes: even when they dominate all our sports, they dominate music, they ven have dominated the highest position in the country... They are way dumber than whites. That's it.","hate","derogation","bla","perturbation","train",3,"TrRF46JWfP","3b","acl28934"
+"21042","acl28936",21042,"Why don't Americans go back to Europe since they are actually foreign immigrants and don't like immigration.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28937"
+"21043","acl28937",21043,"Why don't immigrants go back to their origin since they are actually foreign immigrants and don't belong here","hate","derogation","immig","perturbation","train",3,"QiOKkCi7F8","3b","acl28936"
+"21044","acl28938",21044,"Washington Redskins and Cleveland Indians are considering changing their names.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28939"
+"21045","acl28939",21045,"FFS Washington Redskins and Cleveland Indians are considering changing their names, Who the fuck cares !","hate","animosity","notargetrecorded","perturbation","train",3,"E3dsmnSPob","3b","acl28938"
+"21046","acl2894",21046,"I endorse the genocide of chinese","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21047","acl28940",21047,"To be honest, i am not attracted to black females, however, i am attracted to more black females than Indians... actually, i almost think Indian women are the least attractive race... even their hottest isn't near what i find attractive... but, that is all really subjective and means nothing so do not generalise from me","hate","derogation","bla, asi.south","original","train",3,"E3dsmnSPob","3a","acl28941"
+"21048","acl28941",21048,"To be honest, i am not attracted to females, however, i am attracted to more males... actually, i almost think women are the least attractive... even their hottest isn't near what i find attractive... but, that is all really subjective and means nothing so do not generalise from me","nothate","none","none","perturbation","train",3,"eLGzdD8Tvb","3b","acl28940"
+"21049","acl28942",21049,"i believe that trans women are women and therefore should be allowed into women's spaces","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28943"
+"21050","acl28943",21050,"i believe that trans women are not women and therefore should not be allowed into women's spaces","hate","derogation","trans","perturbation","train",3,"E3dsmnSPob","3b","acl28942"
+"21051","acl28944",21051,"It's easy to believe Reddit r/India mod calling is East Indians 'Subhuman Apes', they certainly look like them.","hate","dehumanization","asi.south","perturbation","train",3,"cYKSVBW4HD","3b","acl30147"
+"21052","acl28945",21052,"well to be honest In the Reddit screenshot I don't think that the user is doing anything wrong if other women are naked in there, if the woman had dicks that would be a different story though lol","hate","animosity","trans","perturbation","train",3,"LqLKTtrOmx","3b","acl29767"
+"21053","acl28946",21053,"Gays are disgusting I wish they were extinct just like the dinosaurs.","hate","derogation","gay","original","train",3,"uISKeFTl5s","3a","acl28947"
+"21054","acl28947",21054,"Homophobes are disgusting I wish they were extinct just like the dinosaurs.","nothate","none","none","perturbation","train",3,"TrRF46JWfP","3b","acl28946"
+"21055","acl28948",21055,"She definitely shouldn't have travelled to Stratford the fucking silly cow. Pisses me off my daughter hasn't been able to her gymnastic class since March yet here she is in tier parading around not giving a shit. I'm in tier two it's just a fucking joke now!!!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28949"
+"21056","acl28949",21056,"She definitely shouldn't have travelled to Stratford the fucking silly mussie bitch. Pisses me off my daughter hasn't been able to her gymnastic class since March yet here she is in tier parading around not giving a shit. I'm in tier two it's just a fucking joke now!!!","hate","derogation","mus.wom","perturbation","train",3,"GNZuCtwed3","3b","acl28948"
+"21057","acl2895",21057,"Shylocks are lousy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21058","acl28950",21058,"Sounds more like you are really a subhuman. Who is the blame for your deficiecy and why then does it seem Africans are so much more superior than you?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl30942"
+"21059","acl28951",21059,"she keeps going on purely in the hope that someone will gift her one. here is an idea, just fucking buy one you tight bitch!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl30089"
+"21060","acl28952",21060,"this a genuine question do you advocate for the removal of single sex spaces altogether in that case?","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28953"
+"21061","acl28953",21061,"this a genuine question do you advocate for the removal of single sex spaces altogether in that case? Are we living in fairy land?","hate","animosity","gendermin","perturbation","train",3,"TbUBpfn6iP","3b","acl28952"
+"21062","acl28954",21062,"Why the hell are Indians so excited about Kamala Harris being elected- she's done nothing for them!","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl28955"
+"21063","acl28955",21063,"Why the hell are Indians so excited about Kamala Harris being elected- she's just as useless as them!","hate","derogation","asi.south","perturbation","train",3,"eLGzdD8Tvb","3b","acl28954"
+"21064","acl28956",21064,"""It's an insult to say that we come from baboons. We must continue to engage and change this.""","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28957"
+"21065","acl28957",21065,"Is it an insult to say that all black people come from baboons? We must continue to engage and prove this.","hate","derogation","bla","perturbation","train",3,"Z42dvbYWzV","3b","acl28956"
+"21066","acl28958",21066,"Wait, wait, wait, a fucking minute! Did this silly bitch really just try to be ""sexy"" doing ASL sign language?! What the fuck is wrong her?!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28959"
+"21067","acl28959",21067,"Wait, wait, wait, a fucking minute! Did this silly bitch really just try to be ""sexy"" doing ASL sign language?! What the fuck is wrong her?! Nothing about disabled is sexy","hate","derogation","dis","perturbation","train",3,"QiOKkCi7F8","3b","acl28958"
+"21068","acl2896",21068,"I endorse the genocide of jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21069","acl28960",21069,"I am seriously shocked you feel that women and girls don't deserve to have their own penis free spaces","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29713"
+"21070","acl28961",21070,"Yeah Yeah but she won't. She ignores the rules because she's a content creator don't you know. She's literally responsible for keeping sheep entertained hun. I really fucking despise her. All I keep thinking is Karma is a bitch. This will come back to bite her scrawny arse!!!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28962"
+"21071","acl28962",21071,"Yeah Yeah but she won't. She ignores the rules because she's a content creator don't you know. She's literally responsible for keeping sheep entertained hun. I really fucking despise her. All I keep thinking is Karma is a bitch. This will come back to bite her aunt jemima arse!!!","hate","derogation","bla.wom","perturbation","train",3,"cYKSVBW4HD","3b","acl28961"
+"21072","acl28963",21072,"she has text Rob and said she's not coming into the shop because she's too tired. Too tired from doing what???!!! Nothing!!! What a fucking bitch! Feel sorry for whoever has to work for her!!! Xx","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl31046"
+"21073","acl28964",21073,"bitch everyone starts with zero subscribers wtf, and she's a fucking moron, while she's raking in the cash her family is drowning in their own debt what a bitch.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28965"
+"21074","acl28965",21074,"bitch everyone starts with zero subscribers wtf, all women like her are fucking morons, while they're raking in the cash their families are drowning in their own debt what bitches.","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28964"
+"21075","acl28966",21075,"What a narcisistic bitch. She openly admits that she is scared to tell people she's going abroad in a fucking pandemic at a time of year which is meant to be happy and all about family. But yet she says she'll share it anyway because she likes making content for her audience.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28967"
+"21076","acl28967",21076,"What narcisistic cunts. Women openly admits that they are scared to tell people they're going abroad in a fucking pandemic at a time of year which is meant to be happy and all about family. But yet they says they'll share it anyway because these cunts likes making content for their audience.","hate","derogation","wom","perturbation","train",3,"Z42dvbYWzV","3b","acl28966"
+"21077","acl28968",21077,"Do I believe in the assumption: ""transwomen are trying to infiltrate spaces to harm"". Well I certainly don't think that at all and I'm sure many others here feel the same way. The ever broadening umbrella of gender ideology and the loose criteria for self identification is what I have an issue with.","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28969"
+"21078","acl28969",21078,"Do I believe in the assumption: transwomen are trying to infiltrate spaces to harm. Well I certainly do and I'm sure many others here feel the same way. The ever broadening umbrella of gender ideology and the loose criteria for self identification is what I have an issue with.","hate","derogation","trans","perturbation","train",3,"QiOKkCi7F8","3b","acl28968"
+"21079","acl2897",21079,"I believe all Shylocks are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21080","acl28970",21080,"Why does Stacey think she's hilarious? This fucking norm on a prawn thing is NOT even remotely funny in the slightest way!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28971"
+"21081","acl28971",21081,"Why does Stacey think she's hilarious? This fucking norm on a prawn thing is NOT even remotely funny in the slightest way! Why do women think they are funny ffs","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl28970"
+"21082","acl28972",21082,"Ethnic reputation kills a lot of babies before they're born.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29714"
+"21083","acl28973",21083,"they are so fucking nasty, I honestly hope they feel annoyed and sour for the entire day - they deserve that when they distort themselves like that online and influence impressionable people negatively","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28974"
+"21084","acl28974",21084,"they are so fucking nasty those polskis, I honestly hope they feel annoyed and sour for the entire day - they deserve that when they distort themselves like that online and influence impressionable people negatively","hate","derogation","pol","perturbation","train",3,"QiOKkCi7F8","3b","acl28973"
+"21085","acl28975",21085,"he lacks motivation and his wife is a lazy bitch so he's going nowhere with the weight loss. he also needs to learn to stand up to her","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28976"
+"21086","acl28976",21086,"most pakistanis lacks motivation and their wives are lazy bitches so they go nowhere with the weight loss. They also needs to learn to stand up haha","hate","derogation","asi.pak","perturbation","train",3,"GNZuCtwed3","3b","acl28975"
+"21087","acl28977",21087,"Watch that karma bus Jane, it might bite you on the arse one of these days. I really do feel sorry for all those bloody sheep, she doesn't give 2 fucks about any of them. She fucking infuriates me.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28978"
+"21088","acl28978",21088,"Watch that karma bus Jane, it might bite you on the arse one of these days. I really do feel sorry for all those bloody sheep changing their gender to fit in with the crowd, she doesn't give 2 fucks about any of them. She fucking infuriates me.","hate","animosity","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl28977"
+"21089","acl28979",21089,"Oh my god, wrong pan useage for what's she's cooking for starters, what the actual fuck is she on about, it looks dire, the meals she makes her children are absolute garbage, no wonder they are fussy. also it's clap fucking cold","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28980"
+"21090","acl2898",21090,"Shylocks are loathsome","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21091","acl28980",21091,"Oh my god, wrong pan useage for what' she's cooking for starters, what the actual fuck is she on about, it looks dire, the meals she makes her children are absolute garbage, no wonder they are fussy. also it's clap fucking cold. That's what happens when women go to work.","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl28979"
+"21092","acl28981",21092,"The explanation for Africa's underdevelopment is complicated and nuanced, requiring an in-depth look at lots of boring socio-economic and geographic factors. None of them have anything to do with racial inferiority. The violence and poverty in Africa would have happened to any racial group that had been put through the same conditions and drastic events.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29715"
+"21093","acl28982",21093,"Fucking ""Jungle""?!?! You stupid illiterate bitch .","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28983"
+"21094","acl28983",21094,"Fucking ""Jungle""?!?! You stupid illiterate bitch, go back into the kitchen","hate","derogation","wom","perturbation","train",3,"zUUAkSVCEa","3b","acl28982"
+"21095","acl28984",21095,"my MIL, she's a horrible woman and has been vile to me & my kids countless times over the years. Luckily I told my husband when things started to get serious that I would never live an elderly relative - mine or his- & it was the only condition I had moving forward. He agreed straight away. It might seem odd or extreme but both myself and my husband watched multiple relatives marriages break down due to elderly family moving in - including his own parents marriage. It's not a risk either of us are willing to take a chance on","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl28985"
+"21096","acl28985",21096,"my MIL, she's a horrible woman and has been vile to me & my kids countless times over the years, i believe it is because she is a kyke. Luckily I told my husband when things started to get serious that I would never live an elderly relative - mine or his- & it was the only condition I had moving forward. He agreed straight away. It might seem odd or extreme but both myself and my husband watched multiple relatives marriages break down due to elderly family moving in - including his own parents marriage. It's not a risk either of us are willing to take a chance on","hate","derogation","jew","perturbation","train",3,"QiOKkCi7F8","3b","acl28984"
+"21097","acl28986",21097,"If Jesus was black then I don't want to be a Chritian.","hate","derogation","bla","original","train",3,"uISKeFTl5s","3a","acl28987"
+"21098","acl28987",21098,"If he was vegan then I don't want to be a vegan.","nothate","none","none","perturbation","train",3,"vDe7GN0NrL","3b","acl28986"
+"21099","acl28988",21099,"Sperm donors are actually for people who actually need one, people with infertility, same sex couples etc. Definitely not for some fucking bratty immature bitch just because she ""hates men"" (yet is DESPERATE for a boyfriend online) How much we betting that her ""sperm donor"" will be some random shag off tinder.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29716"
+"21100","acl28989",21100,"Jesus her poor fucking wrists are being fucking strangled by them shite bracelets! And as for the crap outfit today... well all I'll say is Princess Fiona. She looks a fucking show. Imagine going out like looking like a crumpled used sick bag Horrible bitch is probably waiting for a gifted iron.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28990"
+"21101","acl2899",21101,"I endorse the genocide of indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21102","acl28990",21102,"Jesus her fucking wrists are being fucking strangled by them shite bracelets! And as for the crap slaggy outfit today... well all I'll say is Princess Fiona. She looks a fucking state. Imagine going out like looking like a crumpled used sick bag, quite apt in fairness. Horrible bitch is probably waiting for a gifted iron.","hate","animosity","wom","perturbation","train",3,"E3dsmnSPob","3b","acl28989"
+"21103","acl28991",21103,"Crying ffs Claire get a fucking grip what did she expect to happen, she obviously could not keep going the way she was. she was manic at times ranting on that page I think she thought she was being funny but she just sounds like an angry spiteful bitch","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl28992"
+"21104","acl28992",21104,"Crying ffs Claire get a fucking grip what did she expect to happen, she obviously could not keep going the way she was. she was manic at times ranting on that page I think she thought she was being funny but she just sounds like an angry spiteful bitch, fucking typical bitches' attitudes","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl28991"
+"21105","acl28993",21105,"Shes such a dumb Latina bimbo. How typical. Spanish in Latin America is not easy to understand and she is definitely not either.","hate","animosity","wom, hispanic","perturbation","train",3,"CAgNlUizNm","3b","acl30197"
+"21106","acl28994",21106,"Asians are stereotyped as emotionless beta males with small dicks and women with hairy vaginas. It can't get any more true than that.","hate","derogation","asi","perturbation","train",3,"GNZuCtwed3","3b","acl30132"
+"21107","acl28995",21107,"If you're solely dating someone because they're black, then your preference is racist, imo","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29752"
+"21108","acl28996",21108,"Africans are just not ""subhuman"". I wonder where your scientific racism is coming from, i assume probably from former Nazi scientists, but they are in the same species as us..Homo Sapien. My real questions are: Do you have any Black friends? Are you a racist? Do you support Hitler? And: Do you believe in scientific racism?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl28997"
+"21109","acl28997",21109,"Africans are just ""subhuman"". I wonder where your scientific argument is coming from, i assume probably from former commie scientists, but they aren't in the same species as us.. My real questions are: Do you have any Black friends? Are you a commie? Do you support Stalin? And: Do you believe in scientific communism?","hate","dehumanization","african","perturbation","train",3,"zUUAkSVCEa","3b","acl28996"
+"21110","acl28998",21110,"this is so exciting watch lesbian sex kiss, porn pussy boobs tongue feet foot legs chumma hindi sex ass teen","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl28999"
+"21111","acl28999",21111,"this is so exciting watching dyke sex kiss, porn pussy boobs tongue feet foot legs chumma hindi sex ass teen. Shame about the dyke","hate","derogation","gay.wom","perturbation","train",3,"E3dsmnSPob","3b","acl28998"
+"21112","acl29",21112,"pear is not tasty","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"21115","acl29000",21115,"It has sold now, according to the Zoopla listing. I hate that awful brown tiling too. Glad they fixed the bathroom, even if it cost a bomb","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29001"
+"21116","acl29001",21116,"It has sold now, according to the Zoopla listing. I hate that awful brown tiling too. Glad they fixed the bathroom, even if it cost a bomb. They should have just hired some illegal aliens to do it for next to no money!","hate","derogation","immig","perturbation","train",3,"QiOKkCi7F8","3b","acl29000"
+"21117","acl29002",21117,"In the past year I've gone from box dye almost black to fully blonde with my hairdresser. I've had some damage, mostly because I was straightening my hair every day. The pat 3 months I've taken biotin daily, used the Lee Stafford hair growth range and worn my hair tied up 4 days a week with no problems. I liked black hair but I like fairer better","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29003"
+"21118","acl29003",21118,"In the past year I've gone from box dye almost negress black to fully white blonde with my hairdresser. I've had some damage, mostly because I was straightening my hair every day. The pat 3 months I've taken biotin daily, used the Lee Stafford hair growth range and worn my hair tied up 4 days a week with no problems. I liked black nigger hair but I like fairer better","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl29002"
+"21119","acl29004",21119,"The thing I hate the most is when they post a black and white pic of their new born baby's foot. Makes me feel sick","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29005"
+"21120","acl29005",21120,"The thing I hate MOST about women is when they post a black and white pic of their new born baby's foot. Makes me feel sick.","hate","derogation","wom","perturbation","train",3,"GNZuCtwed3","3b","acl29004"
+"21121","acl29006",21121,"Living in Turkey is a constant source of cancer, it's no different than China to me.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29007"
+"21122","acl29007",21122,"Living in Turkey is a constant source of cancer *makes turkey noises* , it's no different than China to me.","hate","derogation","notargetrecorded","perturbation","train",3,"zUUAkSVCEa","3b","acl29006"
+"21123","acl29008",21123,"Why does she sound like a cross between Danny Dyer and Dick Van Dyke in Mary Poppins? also, re: the fart. Yes we all do it, we all shit too but I don't think any of us want to watch Helen take a shit on a vlog.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29009"
+"21124","acl29009",21124,"Why does it sound like a cross between Danny Dyer and Dick Van Dyke in Mary Poppins? also, re: the fart. Yes we all do it, we all shit too but I don't think any of us want to watch some tranny take a shit on a vlog.","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl29008"
+"21125","acl2901",21125,"I endorse the genocide of christians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21126","acl29010",21126,"Women should not bash each other for not being sexual enough or too sexual, much like men.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29011"
+"21127","acl29011",21127,"Women should really bash each other for not being sexual enough or too sexual, stop trying to be like men.","hate","animosity","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl29010"
+"21128","acl29012",21128,"This is true but I find a lot of the shaming is dyk3 on dyk3 too!","hate","derogation","gay.wom","perturbation","train",3,"CAgNlUizNm","3b","acl31099"
+"21129","acl29013",21129,"Most Indians don't know that Kamala Harris will do nothing for them.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29014"
+"21130","acl29014",21130,"Most niggers are ignorant, they don't know that Kamala Harris will do nothing for them.","hate","derogation","bla","perturbation","train",3,"gbEGjSAk6r","3b","acl29013"
+"21131","acl29015",21131,"Her being a woman does not mean too much if she does not do a good job here and the sexists will use that against women in the future if that is the case.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29717"
+"21132","acl29016",21132,"That means that silly old Carl who directly messages PTWM to tell her that she ""looks like a dyke"" is a bit dim really because it's just poor manners to send a nasty direct message","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29017"
+"21133","acl29017",21133,"That means that silly old Carl who directly messages PTWM to tell her that she looks like a dyke, is a bit dim really because its just poor manners to send a nasty direct message... although hes not wrong, is he? She is a massive d-word.","hate","derogation","gay.wom","perturbation","train",3,"E3dsmnSPob","3b","acl29016"
+"21134","acl29018",21134,"For someone who is as racist and complains about ""fucking immigrants"" as much as she does, the obsession with colored skin is so freaky to me. Hey Tray, us children of immigrants have a permanent tan, one that you go out of your way constantly to pay for and yet still manage to fuck up","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29019"
+"21135","acl29019",21135,"For someone who is as racist and complains about fucking immigrants as much as she does, the obsession with telling the media that she wants them go home is so freaky to me. I mean, no one wants them here but you shouldn't say it on tv","hate","derogation","immig","perturbation","train",3,"CAgNlUizNm","3b","acl29018"
+"21136","acl2902",21136,"Shylocks are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21137","acl29020",21137,"oh god this is a new hindi sexy video including kiss sex hot bed scene","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl29021"
+"21138","acl29021",21138,"oh god this is a new hindi sexy video including kissing and sex, wish her skin was a bit lighter","hate","animosity","asi.south, mixed.race","perturbation","train",3,"E3dsmnSPob","3b","acl29020"
+"21139","acl29022",21139,"Eurgh. Those cock sucking fanny flap lips! Yuck it's a fucking mess.","nothate","none","none","original","train",3,"CAgNlUizNm","3a","acl29718"
+"21140","acl29023",21140,"10% of ruqqus users are Indians according to Alexa which is quite a lot.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29024"
+"21141","acl29024",21141,"10% of ruqqus users are Indians according to Alexa which is quite a lot, surprised those animals even have internet","hate","dehumanization","asi.south","perturbation","train",3,"uISKeFTl5s","3b","acl29023"
+"21142","acl29025",21142,"I bet the jew deletes that comment and the fact that it is not just his daughter but obviously her friend too ! He's a fucking kike he really is. It's disgusting!","hate","derogation","jew","perturbation","train",3,"QiOKkCi7F8","3b","acl30217"
+"21143","acl29026",21143,"don't miss out this video of lesbian mouth sex lips kiss tongue fuck pussy boobs ass bikini sex xxx feet foot hot kiss","nothate","none","none","original","train",3,"vDe7GN0NrL","3a","acl31045"
+"21144","acl29027",21144,"I cannot stand the narrow mindedness of some people!! Honestly she really is a selfish bitch!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29028"
+"21145","acl29028",21145,"I cannot stand the narrow mindedness of some people, especially women, they are all selfish bitches!!!","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl29027"
+"21146","acl29029",21146,"I'm surprised /IndiaSpeaks hasn't been banned yet on Reddit because it's quite conservative.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29030"
+"21147","acl2903",21147,"Shylocks only care about themselves!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21148","acl29030",21148,"I'm surprised IndiaSpeaks hasn't been banned yet on Reddit because it's quite conservative, and who cares what they have to say !","hate","animosity","asi.south","perturbation","train",3,"E3dsmnSPob","3b","acl29029"
+"21149","acl29031",21149,"Gabby actually do one and try getting a real fucking job where you have to actually leave the house and deal with the general British public being arseholes on a daily basis, EVEN one days where you don't feel well","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl30691"
+"21150","acl29032",21150,"This bitch has been seen eating octopus, crab legs, steaks the size of my fucking face, pasta, other expensive random meals, dunkin donuts routinely, but yet she is making it seem like she's in dire need of money for food? Sounds like the refugees pretending to be desparate for food!","hate","derogation","ref","perturbation","train",3,"QiOKkCi7F8","3b","acl30390"
+"21151","acl29033",21151,"This is what that stupid greedy fucking bitch Lazy should be doing with ALL her gifted insta stuff","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29034"
+"21152","acl29034",21152,"This is what that stupid 'trans' greedy fucking bitch Lazy should be doing with ALL her gifted insta stuff","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl29033"
+"21153","acl29035",21153,"What an absolute fucking lunatic. Sarah clearly has massive and severe insecurity issues, such a typical narcissistic trait to think that any form of advice is a personal attack. The shit she takes offence to is actually alarming.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29719"
+"21154","acl29036",21154,"What ""glow"" is she even talking about?! And seriously, why does she have that manky face mask on her permanently?! Take the fucking thing off you scruffy bitch","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29037"
+"21155","acl29037",21155,"What glow is she even talking about?! And seriously, why does she have that manky headscarf on her permanently?! Take the fucking thing off you scruffy freakish bitch","hate","derogation","mus.wom","perturbation","train",3,"TrRF46JWfP","3b","acl29036"
+"21156","acl29038",21156,"Indians manager Terry Francona favors change of offensive team name","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl30311"
+"21157","acl29039",21157,"She is a spoilt self entitled bitch and this video shows it perfectly and clearly. It's not cute hun to speak to your husband in such a way!","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29040"
+"21158","acl2904",21158,"We applaud the murder of muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21159","acl29040",21159,"She is a spoilt self entitled bitch and this video shows it perfectly and clearly. It's not cute hun to speak to your
+husband in such a way! Typical women !","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl29039"
+"21160","acl29041",21160,"She is a total and utter fucking dose. There are so people we know and ones we don't, in our neighbourhoods (and hers) who won't have food in their cupboards this month. She is a horrible little bitch. I get that she's a millionaire, but she could do so much good on her own doorstep with charity donations...","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29042"
+"21161","acl29042",21161,"She (IT) is a total and utter fucking dose. There are so people we know and ones we don't, in our neighbourhoods (and it's) who won't have food in their cupboards this month. HE/IT is a horrible little bitch. I get that it's a millionaire, but it could do so much good on its own doorstep with charity donations...","hate","derogation","trans","perturbation","train",3,"TbUBpfn6iP","3b","acl29041"
+"21162","acl29043",21162,"Chamwich you can make your own fucking sandwich lazy arsed bitch","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29720"
+"21163","acl29044",21163,"It's just crazy that these laws exist nowadays and women do not have the rights to do with their bodies whatever they like.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl30303"
+"21164","acl29045",21164,"she really wants a man to stroll in and offer to do it for kids that aren't even his? She's fucking delusional.","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29046"
+"21165","acl29046",21165,"she really wants a man to stroll in and offer to do it for kids that aren't even his? She's fucking delusional, it's the womens job to take care of the kids, not men, especially another man.","hate","animosity","wom","perturbation","train",3,"zUUAkSVCEa","3b","acl29045"
+"21166","acl29047",21166,"As a huge Indians fan the name change really pisses me off to no end. White liberals ruin absolutely fucking everything.","nothate","none","none","original","train",3,"LqLKTtrOmx","3a","acl29048"
+"21167","acl29048",21167,"As a huge only boys society's fan the name change really pisses me off to no end. women ruin absolutely fucking everything.","hate","derogation","bla","perturbation","train",3,"vDe7GN0NrL","3b","acl29047"
+"21168","acl29049",21168,"Tf she think she is? She was literally married to someone who gave her the fucking world and when shit got hard, she fucked off and bailed.... men definitely do not want to be financially responsible for children who's father is in the picture.(Its unwritten Bro code) bitch, get off your fucking ass","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29050"
+"21169","acl2905",21169,"We applaud the murder of jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21170","acl29050",21170,"Tf she think she is? She was literally married to someone who gave her the fucking world and when shit got hard, she fucked off and bailed.... typical woman...men definitely do not want to be financially responsible for children who's father is in the picture.(Its unwritten Bro code) girl, get off your fucking ass","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl29049"
+"21171","acl29051",21171,"What in the gods name is she doing to her face? Photoshop one side to have big cheek bones, smoothen the other side to make it look like she has a jaw Also, the caption. BITCH shut the fuck up. Stop trying to drag whatever sorry excuse of a man child you conned into fucking your fishy fanny into all of this","hate","animosity","wom","original","train",3,"QiOKkCi7F8","3a","acl31101"
+"21172","acl29052",21172,"Can't believe that the government thinks they have a right to decide about somebody else's body, future, physical and mental health all based on THEIR beliefs. That's so fucked up","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29721"
+"21173","acl29053",21173,"Hey Babs - here's a really good idea.. Make your own fucking sandwich bitch. Hope that helps","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29054"
+"21174","acl29054",21174,"Hey Babs - here's a really good idea.. ... Get in the kitchen and make your own fucking sandwich bitch. Hope that helps","hate","derogation","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl29053"
+"21175","acl29055",21175,"I'm on humanity's side, we should empower women to advance to world.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29056"
+"21176","acl29056",21176,"I am on humanity's side, we should not encourge women to advance to world.","hate","derogation","wom","perturbation","train",3,"vDe7GN0NrL","3b","acl29055"
+"21177","acl29057",21177,"I haven't seen this post but what a fucking silly bitch, I have had to stop looking at her because she is psycho and delusional! X Yaaaaay x","nothate","none","none","original","train",3,"QiOKkCi7F8","3a","acl29058"
+"21178","acl29058",21178,"I haven't seen this post but what a fucking silly bitch, I have had to stop looking at her because she is psycho and delusional,, like all women are!","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl29057"
+"21179","acl29059",21179,"She's clearly a fucking dumbass. Like all feemails","hate","derogation","wom","perturbation","train",3,"CAgNlUizNm","3b","acl30606"
+"21181","acl29060",21181,"Shes an entitled trash bitch who is really rude and doesn't want any interaction, really she just wants freebies!! Thats why she set the fucking home account up","hate","dehumanization","wom","original","train",3,"QiOKkCi7F8","3a","acl29061"
+"21182","acl29061",21182,"They are entitled trash who is really rude and doesn't want any interaction, really she just wants freebies!! Thats why she set the fucking home account up","nothate","none","none","perturbation","train",3,"cYKSVBW4HD","3b","acl29060"
+"21183","acl29062",21183,"More power to women means more justice and proper treatment of all people, so i'm in favour","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29063"
+"21184","acl29063",21184,"More power to whites means more justice and proper treatment of all white people, so i'm in favour","hate","support","notargetrecorded","perturbation","train",3,"LqLKTtrOmx","3b","acl29062"
+"21185","acl29064",21185,"Men do have higher rates of mental illness but the numbers aren't correlating. But, if men and women committed violent acts equally based on this scale it would be more reliable.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29065"
+"21186","acl29065",21186,"Men do have higher rates of mental illness but the numbers aren't correlating. But, if men and women committed violent acts equally based on this scale it would be more reliable. Truth is it affects women more because they are weaker","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl29064"
+"21187","acl29066",21187,"It is just a tweet, so it is simplified, but the message rings true for a lot of women's experiences and it's not incorrect at all either.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29952"
+"21188","acl29067",21188,"Mass shootings cannot only be about mental illness, since both men and women do experience mental illness, but only one of those is almost exclusively mass shooters. But, they're psychos nonetheless","hate","animosity","dis","perturbation","train",3,"GNZuCtwed3","3b","acl29998"
+"21189","acl29068",21189,"And tweet has a point, it does imply that men are inherently violent, while women are inherently peaceful.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29069"
+"21190","acl29069",21190,"And tweet has a point, it does imply that men are inherently violent, while women are inherently peaceful and thus easy to control and dominate","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl29068"
+"21191","acl2907",21191,"Shylocks are only useful for one think: soap!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21192","acl29070",21192,"I think that there are higher rates of depression in women because women are more likely to be encouraged to seek help.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29071"
+"21193","acl29071",21193,"I think that there are higher rates of depression in women because women are more likely to be mentally-ill, after all, they are all crazy bitches, aren't they?","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl29070"
+"21194","acl29072",21194,"The symptoms of depression in women are more obvious whereas the first visible symptom of depression in men is often suicide.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29073"
+"21195","acl29073",21195,"The symptoms of depression in women are more obvious (crazy bitches) whereas the first visible symptom of depression in men is often suicide.","hate","derogation","wom","perturbation","train",3,"TbUBpfn6iP","3b","acl29072"
+"21196","acl29074",21196,"But why do women turn inward and men outward? The reasons say a lot about our societies tbh.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29075"
+"21197","acl29075",21197,"But why do women turn inward and men outward? The reasons say a lot about women's inferiority","hate","derogation","wom","perturbation","train",3,"TrRF46JWfP","3b","acl29074"
+"21198","acl29076",21198,"I once read a study which showed that the most common fear men had of women was being laughed at.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29077"
+"21199","acl29077",21199,"I once read a study which showed that the most common fear women had was being laughed at. Come on guys let's go laugh in their faces.","hate","animosity","wom","perturbation","train",3,"GNZuCtwed3","3b","acl29076"
+"21200","acl29078",21200,"men are always portrayed as these troubled people but when women are just as troubled mentally they do not become violent to channel emotions","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29722"
+"21201","acl29079",21201,"Berlie killed two women for misogyny. Omar had a history of domestic violence. Seung-Hui stalked and harassed women.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29723"
+"21202","acl2908",21202,"We applaud the murder of gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21203","acl29080",21203,"I didn't say all men are bad and neither did anyone in this thread but 95% of violent criminals are men. Its fact","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29081"
+"21204","acl29081",21204,"I didn""'t say all black men are bad and neither did anyone in this thread but 95% of violent criminals are black men. Its fact","hate","animosity","bla","perturbation","train",3,"TbUBpfn6iP","3b","acl29080"
+"21205","acl29082",21205,"I heard someone say that it's a dumb stereotype that all black men are violent criminals. I had to intervene, because nine times out of ten, it pans out","hate","derogation","bla.man","perturbation","train",3,"CAgNlUizNm","3b","acl30066"
+"21206","acl29083",21206,"Therefore, violence against women is a huge problem and talking about this issue isn't alienating a gender but rather, raising awareness.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29724"
+"21207","acl29084",21207,"I do agree that men should be more open to receiving help, but in no way is it women's responsibility to fix the issue.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29085"
+"21208","acl29085",21208,"Men should be more open to receiving help, but please don't encourage women, they yap on as much as it is.","hate","animosity","wom","perturbation","train",3,"cYKSVBW4HD","3b","acl29084"
+"21209","acl29086",21209,"Have you heard of any mentally ill WOMEN shooting up schools? Mentally ill BLACK, NATIVE, or ASIAN men? Mentally ill LGBT+ people? Maybe that's not the problem...","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29087"
+"21210","acl29087",21210,"Libtards are always saying: ""Have you heard of any mentally ill WOMEN shooting up in schools? Mentally ill NIGGER, IMMIGRENT, or ASIAN men? Mentally ill FAGGOT?"" Bitch, that's not the problem","hate","derogation","dis, bla, wom, gay, immig","perturbation","train",3,"Z42dvbYWzV","3b","acl29086"
+"21211","acl29088",21211,"Yeah, you're probably right. I'm sure am a bitch, and I'm sure that that is totally the reason ""you're not ready for a relationship"".","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29089"
+"21212","acl29089",21212,"Yeah, they are probably right. ape bitches, and they are sure that that is totally the reason ""you're not ready for a relationship"".","hate","dehumanization","bla, wom","perturbation","train",3,"cYKSVBW4HD","3b","acl29088"
+"21213","acl2909",21213,"Shylocks are only useful for one think: making soap!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21214","acl29090",21214,"Why you're so angry if you personally have not been violent towards women. I don't get why are you so offended?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29091"
+"21215","acl29091",21215,"Don't be so angry or upset if you personally have been violent towards women. I don't get why you'd think it's all your fault..","hate","animosity","wom","perturbation","train",3,"LqLKTtrOmx","3b","acl29090"
+"21216","acl29092",21216,"Why aren't women allowed to talk about the trauma men have caused them? Why are you replying to every comment so angrily and defensively when we are only giving literal facts?","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29725"
+"21217","acl29093",21217,"Some christians believe Africans were cursed in the Bible being the descendants of HAM. Christianity played a role in African slavery. Are we fully prepared to explore the impact that had on the continent?","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29784"
+"21218","acl29094",21218,"Rape and Sexual violence is undeniably a massive problem in India. Also, according to the National Crime Record Bureau (NCRB), all crimes against women have increased by 7.5% since 2010. Please bear this in mind when you encounter any of these people late at night.","hate","animosity","asi.south","perturbation","train",3,"eLGzdD8Tvb","3b","acl29817"
+"21219","acl29095",21219,"There are different illnesses that are not related to violence. Women are more likely to have eating disorders, whereas men are more likely to have schizophrenia.","nothate","none","none","original","train",3,"GNZuCtwed3","3a","acl29096"
+"21220","acl29096",21220,"There are different illnesses that are not related to violence. Women are more likely to have eating disorders, lol good, bitches","hate","derogation","wom","perturbation","train",3,"QiOKkCi7F8","3b","acl29095"
+"21221","acl29097",21221,"Only someone thats truly racist could ignore the economic and political struggle Africans have went thru in favour of them just being subhuman.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29098"
+"21222","acl29098",21222,"Only someone thats truly racist could ignore the economic and political struggle Africans have went thru, and that is me ahahaha, racist thru and thru","hate","derogation","african","perturbation","train",3,"QiOKkCi7F8","3b","acl29097"
+"21223","acl29099",21223,"I once heard a white man say he thinks Indians are genuinely not human.","nothate","none","none","original","train",3,"E3dsmnSPob","3a","acl29100"
+"21224","acl291",21224,"retirement age should be 50 not 65 as we had enough of old people taking our jobs","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"21225","acl2910",21225,"We applaud the murder of homosexuals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21226","acl29100",21226,"I once heard a white man say he thinks Indians are genuinely not human, that man was me haha","hate","dehumanization","asi.south","perturbation","train",3,"LqLKTtrOmx","3b","acl29099"
+"21227","acl29101",21227,"i hate gay people they make me sick","hate","derogation","gay","original","train",3,"uISKeFTl5s","3a","acl29727"
+"21228","acl29102",21228,"With time running out, the two sides continue to argue over fishing rights and business competition rules and standards.","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl29103"
+"21229","acl29103",21229,"With time running out, the two sides continue to argue over immigration rights and human rights and
+standards. Just send them back","hate","derogation","immig","perturbation","train",3,"vDe7GN0NrL","3b","acl29102"
+"21230","acl29104",21230,"I fucking love being gay","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl29728"
+"21231","acl29105",21231,"I wouldn't be surprised if he was a complete knobjockey!","hate","derogation","gay","original","train",3,"uISKeFTl5s","3a","acl29106"
+"21232","acl29106",21232,"I wouldn't be surprised if he was a competent jockey!","nothate","none","none","perturbation","train",3,"TbUBpfn6iP","3b","acl29105"
+"21233","acl29107",21233,"He won't get any money now because those idiot crackheads are suffering from ptsd and won't pay what they owe.","nothate","none","none","perturbation","train",3,"CAgNlUizNm","3b","acl30990"
+"21234","acl29108",21234,"With time running out, the two sides are continuing to argue over fishing rights and business competition rules.","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl29109"
+"21235","acl29109",21235,"With time running out, the two retarded sides still continuing to argue over fishing rights and business competition rules.","hate","derogation","dis","perturbation","train",3,"E3dsmnSPob","3b","acl29108"
+"21236","acl2911",21236,"We applaud the murder of trans people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21237","acl29110",21237,"Anyone who thinks all races are equal has clearly not been to my part of the country.","hate","derogation","non.white","original","train",3,"uISKeFTl5s","3a","acl29111"
+"21238","acl29111",21238,"Anyone who thinks all races not are equal has clearly not been to my part of the country.","nothate","none","none","perturbation","train",3,"oemYWm1Tjg","3b","acl29110"
+"21239","acl29112",21239,"Everyone deserves a chance, it's just that some people aren't even interested.","nothate","none","none","original","train",3,"uISKeFTl5s","3a","acl29113"
+"21240","acl29113",21240,"Everyone deserves a chance, it's just that some people like the 41% of gender queers aren't even interested.","hate","derogation","gendermin","perturbation","train",3,"E3dsmnSPob","3b","acl29112"
+"21241","acl29114",21241,"How to explain Romanis to Americans? So, imagine the Amish, but they didn't keep to themselves, wandered around the country from place to place without settling, had no use for private property, sometimes sent their kids to school but discouraged them from forgetting their culture since it would hurt their way of living.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21180"
+"21242","acl29115",21242,"This happened after the latest appointed mayor was corrupt. If you all still don't believe that corruption is responsible... for the world perversion then y'all need re-educating. Please stop supporting such politicians, you know you must.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21189"
+"21243","acl29116",21243,"hey we should burn every Loot and Murder in this country, just the black way of life","hate","derogation","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl21190"
+"21244","acl29117",21244,"people have mouths and anuses just as appealing for peoples use as any loving person would be to a comparably loving person.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21205"
+"21245","acl29118",21245,"making a gun based off an shit filled fan fiction of a kids programme","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl29990"
+"21246","acl29119",21246,"Cunt. This is a pathetic attempt as a master's thesis equivalency or whatever you are expected to submit to qualify for whatever two letter you're trying to get into. Do us all a favour and instead become a student for a few more years before attempting whatever this is, you 23 year old pretentious wannabe traitor.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl30347"
+"21247","acl2912",21247,"Shylocks are dirty","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21248","acl29120",21248,"Realistically,how long until women are encouraged and promoted in the our military again?","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21231"
+"21249","acl29121",21249,"Bubonic Plague is from China. But As for having outbreaks, that's only because China is a massive population which explains their people density. Plague is endemic to the Western United States and only a dozen or so people get it every year because most folks do not live in such dense populations or close to dead animals","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21257"
+"21250","acl29122",21250,"Hitler's Army were the true criminals. If you don't realize that now, you never will see the light.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21258"
+"21251","acl29123",21251,"Unfortunately dude the numbers don't add up here","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21266"
+"21252","acl29124",21252,"Racists are, in every way, such ugly people","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl29901"
+"21253","acl29125",21253,"They worship the Shin, Satan. Most leaders in Satanism are likely fraudulent cult leaders. Shin is not God. Fellow Christians, STOP calling the Eternal Creator Shin! Please do wake up and learn something for a change.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21285"
+"21254","acl29126",21254,"On arrival, migrants are tested for coronavirus. Then they get on buses and are put in hotels to await the outcome of their asylum claim.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21299"
+"21255","acl29127",21255,"Oh ya. Those work camps must of terrible what without the swimming pools, concert halls, child care services, and everything else. Thank the Allies for bombing the supply lines and the rest of German military to pieces for not being fed. And yes jewish lives matter!","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21314"
+"21256","acl29128",21256,"We should accept the reality of politically motivated Global immigration, DACHA Chain Migration, Sanctuary Cities & H - 1 Visass. A National's Traditions Culture & Economy adapt and evolve with changing Demographics. We don't support ICE, Border Patrol, Kate's Law & The Trump Wall!","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21325"
+"21257","acl29129",21257,"i don't disagree with a thing you said. also you can always appeal to women's natural goodness and need to be fair to other women. their nature is what makes a woman valuable. the only thing that makes a woman more valuable to her husband and vice versa is that she only loves him. anything else besides that is being a monstrosity.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21341"
+"21258","acl2913",21258,"We applaud the murder of lesbians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21259","acl29130",21259,"it really shows how shallow and greedy the psychology industry is that they said trans is a mental illness. fuck them. they're just glorified drug dealers","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21358"
+"21260","acl29131",21260,"Either john oliver is a model or hes the origin of the eternal handsome meme because god damn look at that face, that physiognomy","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21362"
+"21261","acl29132",21261,"Post op transexuals are now women, why should they not be allowed in active service?","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21371"
+"21262","acl29133",21262,"The question is, are you in it for the long run with these ladies, or the short run. I think most guys here are approaching it with the perspective that you if you love a woman you wife them up. If you plan to wife them make sure that you treat them well and with respect to win in the long run because of the way it is in 2020. Even the guys with the money and driving the Lambo can still have their girl leave them for a musician or personal trainer","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21388"
+"21263","acl29134",21263,"yeah and go to prison for life? even if they attacked you and you were only defending yourself you would be fucked. its a rigged system.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21391"
+"21264","acl29135",21264,"The black person is, by definition, as unfairly discriminated against as the Jew.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21408"
+"21265","acl29136",21265,"I don't even know what people mean when they talk about the ""lgbt community"". Brain dead and ignorant people will mention some pedophilic conspiracy, but other than them, whats the lgbt community everyone else seems to talk about? I want to know more","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21420"
+"21266","acl29137",21266,"but im sure these politicians will cave when the protesters show up. Politicians really are all bastards. That's why I dont wanna see ""Proud Boys"" out there attacking the police and going to those political events. Rulers would gladly put all of you away in jail forever if it meant a promotion. Remember all of out brothers and sisters these horrible people have made policemen kill during no-knock raids on false pretenses. I honestly hope they DO defund the politicians, it would overall be good for us. Nobody will arrest us when we have to defend ourselves from the corruption, and they wont no-knock raid our families because their agenda needs it or some stupid shit.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21433"
+"21267","acl29138",21267,"Ah, I remember it now! When I was a kid in the 70s, there was a ""Tom & Jerry"" episode where Jerry blew up Tom with dynamite, and Tom turned into a black caricature, with racist connotations like Buckweat styled negro hair, a black face and big red lips, walking with his knuckles dragging like an ape. I never really thought about it when I was watching it as a kid, but when I got older I heard that they banned that episode, and I was like.....""Yeah, that was necessary"". As kids, we're innocent and don't see the real issue in something like that.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21434"
+"21268","acl29139",21268,"The current open-door policy and unrestricted neoliberal privatisation is leading to higher levels of tax evasion, demand for more housing (driving prices out of the reach of young people), severe extra strain on the environment, traffic congestion, longer GP waiting lists, lower educational standards, higher income taxes, lower wages, higher unemployment, loss of local identity, a breakdown in community spirit, more restrictive policing, higher council taxes, a shortage of council homes, higher levels of stress and unhappiness and a more atomised society.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21450"
+"21269","acl2914",21269,"Shylocks smell bad","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21270","acl29140",21270,"I'm just going to say one thing about black people, they're not lazy.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21473"
+"21271","acl29141",21271,"DC comics don't have a history full of accomplishments...or any heroes they can be proud of. That is why they're trying to steal Marvel's. It's rather sad.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21478"
+"21272","acl29142",21272,"Despite international law straightforwardly stating that an asylum seeker must seek refuge in the next safest country, many asylum seekers from various nations and cultures travel across countless countries to settle in the UK, alongisde us Brits.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21488"
+"21273","acl29143",21273,"Because Obama recognized his race was nothing like cowards and whores.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21509"
+"21274","acl29144",21274,"Should he be called ""Scott Cheer"" instead of ""Scott Greer""?","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21520"
+"21275","acl29145",21275,"yisus! You guys need to have some conversations with your ""girlfriends"" and ""wives"" about all the difficult things they deal with when you're not home, learn some respect","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21527"
+"21276","acl29146",21276,"Did you know I love women? Well, I love men even more.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21530"
+"21277","acl29147",21277,"Well, a misogynist is a man who hates women as much as other men hate women. So do you really hate that much?","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21531"
+"21278","acl29148",21278,"News year's resolutions: Number 1. Cultivate friendships Number 2. Band together to execute our self-improvement plans.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21563"
+"21279","acl29149",21279,"Let's clear up one thing. They weren't arrested for being Christians, they were arrested solely for being disruptive. Seriously, does anyone here believe that a Christian group would be arrested for no reason like that?","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21574"
+"21280","acl2915",21280,"We applaud the murder of old people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21281","acl29150",21281,"Strikers are the weakest link in the football game. I'm a striker, and my teammates raised me to never lose the ball from under me. Other teams not only lost the ball from under them but destroyed the teamwork that makes the game. They are an embarrassment to players in the country.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl30189"
+"21282","acl29151",21282,"The truth is Cuban citizens and their families enjoy a number of privileges that the events and outcomes from the Cold War era blessed them with. So of course, they vote for continuity. To put things bluntly, they get their health and education benefits to this day so they think for everything else and everyone else in true anti-colonial fashion. They unsurprisingly went full anti-imperialist after Kennedy attempted to oust Castro. As we can see, they threatened the Soviets and there is no need to even imagine if the crisis hadn't ended.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl29863"
+"21283","acl29152",21283,"I'm know that having black friends is not wrong but for sure its not this easy American freedom out like it used to be. Everything is worse these days. Its all more intricate. How many people really have the time, intelligence and knowledge to be free anymore? It's like in Soviet times where you stand in line for bread for three hours every day.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30243"
+"21284","acl29153",21284,"ALL LIVES MATTER. YOU CLEARLY JUST THINK THAT CRIMINALS LIVES SHOULD MATTER MORE. THEY DO NOT. IF YOU HONESTLY BELIEVED BLACK LIVES MATTER YOU WOULD BE DOING SOMETHING ABOUT BLACK PEOPLE IN GENERAL DYING IN THE STREETS AND ESPECIALLY INNOCENT BEAUTIFUL BLACK BABIES DYING BY YOUR IDOLIZED CRIMINALS AND BABY KILLING MOTHERS CUTTING THEM UP IN CLINICS.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21613"
+"21285","acl29154",21285,"Just a list of reasons why you should like integers. 1. 2. 3. 4. 5. Thank you for coming.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21615"
+"21286","acl29155",21286,"YOU REALLY THINK THAT ALL LIVES MATTER! THE LOW INTELLIGENCE, LAZY, TRASH OUT LOOTING, BURNING AND DESTROYING YOUR COMMUNITIES ARE NOT AN EXAMPLE OF WHAT BLM STANDS FOR. THEY HAVE NOTHING TO DO WITH THE BLACK COMMUNITY. THE INTELLIGENT FOLKS KNOW YOU ARE A IMPOSTERS. JUST ON A LARGER SCALE THAN MOST OTHERS.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21618"
+"21287","acl29156",21287,"How the heck did the republicans manage to paint Biden, a conservative bourgeois democrat, as a socialist? Politicians are unintelligent.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21630"
+"21288","acl29157",21288,"All trans get the love, no one is an exception, not even myself if I were to somehow become one out of nowhere.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21639"
+"21289","acl29158",21289,"I wouldn't mind if my kid to marries a black guy and this is because I am not racist and do not think races are pure because that's not how it should be.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21684"
+"21290","acl29159",21290,"I believe that politicians can do whatever they want to do, I'm not opposed to that. I just want them to do it without me and far away from me. You know, I wouldn't be upset if they wouldn't want to do anything with us! So, see, I'm white and not racist.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30095"
+"21291","acl2916",21291,"Shylocks smell","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21292","acl29160",21292,"All Muslims living in europe are terrorists and make it very hard for myself and many others, cause they drag the west's reputation in the mud, and after every incident it shows their true colours - they put innocent people in danger (ofc besides other Muslim victims of their crimes).","hate","derogation","mus","perturbation","test",3,"IBsVsBliwX","3b","acl21690"
+"21293","acl29161",21293,"The Tories have picked a Muslim Home Secretary to represent the diversity of British people.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21695"
+"21294","acl29162",21294,"I'm not a racist and I judge everyone individually, and it's true that foreigners are huge contributors to our economy and need to be given a safe home.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30475"
+"21295","acl29163",21295,"Not to nitpick but on the topic of true godliness I dont have a habit of thinking in that framework as it seems more Puritan and Pietistic than how the eastern traditions see it. For instance Muslims are mentally unstable fools embodying a type of godliness that a Puritan and Pietistic lens can't recognize or venerate.","hate","derogation","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl21699"
+"21296","acl29164",21296,"""Muslims Have A Right To Be Angry And Kill French People"", Says Ex-Malaysian PM Mahathir Mohamad.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21704"
+"21297","acl29165",21297,"It's not a craze but makes people who transition or encourage it a hero to their friends. A craze is something that makes American for-profit medical clinics a lot of money","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21714"
+"21298","acl29166",21298,"I have a lot of black friends and date a lot of black girls, and since blm has started I've been communicating more with black people and I will go out of my way to make them feel welcomed and respected.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21722"
+"21299","acl29167",21299,"Are you serious? The muslims rebuilding churches are the same extremist terrorists who tore them down. Why not lump them together?","hate","derogation","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl21727"
+"21300","acl29168",21300,"It is honestly amazing how they mentally managed to turn a group of men behaving like animals by sacking a teacher into something that hurts them.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30946"
+"21301","acl29169",21301,"Muslims have a hard time. It's hard when a beheading is blamed on a whole religion.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl29791"
+"21302","acl2917",21302,"Shylocks are the shabbiest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21303","acl29170",21303,"Yes, I do think it is okay to teach my six year old that it is okay for boys to kiss boys or girls to kiss girls. I'm not against LGBTQ community and i don't mind my child being taught that this is okay.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21743"
+"21304","acl29171",21304,"The Muslim media have a great PR department. Pretty easy to put a PR spin on beheading to make all Muslims blameless","hate","derogation","mus","perturbation","test",3,"dqrONtdjbt","3b","acl21744"
+"21305","acl29172",21305,"No thanks. I'm not racist and I hate the idea that black skin is discriminated against over white one.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21752"
+"21306","acl29173",21306,"""Mr Johnson, Is it true that you upvoted a funny comment that said, and I quote, 'Hur dur, that ass looks chinky'? Can you explain yourself you totally ledgend?""","hate","derogation","asi.east","perturbation","test",3,"iO6vHa6qJm","3b","acl21753"
+"21307","acl29174",21307,"Muslims do not claim to have the right to kill millions of innocent people as claimed by some politicians. Likewise, the leaders of those innocent people do not hate Muslims and do their citizens. Makes sense!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30368"
+"21308","acl29175",21308,"I don't know why the cops do it! So much contact with black people but acting uncouth and carrying on, killing them. I can only imagine how the law feels dealing with people who kill their own citizens over nothing. Personally, I'm afraid of being around a group of cops because of how some show themselves and act towards us.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21785"
+"21309","acl29176",21309,"I've realised that a lot of women are capable of being incredibly supportive. being black, white, gay, straight, it doesn't really matter. Some humans are just prone to helping lol. It happens.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21787"
+"21310","acl29177",21310,"students should marry students for reduced housing tax","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21808"
+"21311","acl29178",21311,"Please don't call these thieves Roma or Gypsies. Roma represents a great and old empire, and Gypsies are just a part of that greatness. Sorry for opening your eyes. Please don't cry.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21821"
+"21312","acl29179",21312,"BLM had nothing to do with the stabbing of an innocent person and the idea ""my life matters, your doesn't"" has nothing to do with black lives matter","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21826"
+"21313","acl2918",21313,"Shylocks are shabby","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21314","acl29180",21314,"Wow, a lot of presupposed falsehoods here but I'll address a couple points, I believe that jews are equally human. I never said they weren't smart, they are have lots of expertise and skills and I value their cultural contributions.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21829"
+"21315","acl29181",21315,"not a political person but #fuckpoliticians you are wankers. absolutely fuming #coronavirusoutbreak wtf guys","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl30490"
+"21316","acl29182",21316,"So my question is... why do white people not think it is racist when black people are afraid of them? Even white people who do not behave this way (yes. there are a few of them)... why can't they understand that this behavior is racist to black people and it is frightening? You cannot behave one way and expect different results, sorry. I am just fed up that I am supposed to pretend that this behavior is okay, and white people are just being white people. Like it is cute, even.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21847"
+"21317","acl29183",21317,"I think there are lots of positive female traits like empathy and emotional awareness, and I don't think it's outweighed by odd stupid bitchy trait - they do not define what it is to be a female.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21848"
+"21318","acl29184",21318,"Please remember: Around Blacks, You Can Relax. Seriously, live your life with your loved ones and save your wariness and avoidance for real dangerous situations!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl21868"
+"21319","acl29185",21319,"It's so hard to be an emotionally stable intelligent yet informed person these days, news outlets want be given views yet create content that treats us like children. Like fuck off, either choose one either. I'm tired of all the fucking games.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21872"
+"21320","acl29186",21320,"The more men see women as equals, the more joyful the relationship.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21877"
+"21321","acl29187",21321,"Of course that the women and children are violent, too! Yesterday I had an encounter with a violent woman on the road. I will spare you the details cause it was the same old story. As for the children, they are also violent! I went to school with a high population of unruly children. Do you know how many times I have seen young children stomp (literally stomp to kill) other people? All of their young friends huddle around them in glee, cheering them on like a wild pack of animals. I'm just surprised you haven't witnessed this!","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21880"
+"21322","acl29188",21322,"We need to rollback feminism, it has gone too far! Why is there a Christmas EVE but no Christmas ADAM? Women can't help taking everything for themselves the greedy pigs","hate","dehumanization","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl21881"
+"21323","acl29189",21323,"Disgusting. Are we now going to accuse Yale of keeping the name of a slave trader? Liberal lefties claim Yale must go! Restrictions on speech cannot stand in America. We cannot let these BLM thugs cancel Yale!","hate","animosity","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl21882"
+"21324","acl2919",21324,"I celebrate the death of muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21325","acl29190",21325,"I can't say I've ever felt fear around any black person, thought that doesn't mean I would let my guard down as with any other person around me acting shady. I wouldn't get scared in a group of black people and I would have no need to run.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21895"
+"21326","acl29191",21326,"Not long ago I had an incident with one of them racoons hiding out in my yard. Treating him like a dog and commanding him, made him listen. Just think pack animals. They look for weakness and sense it. I ended up going into trainer mode and I bet he never saw that coming. When the authorities came and rescued him I said ""bye bye racoon"" lol. Wildlife sucks!","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl21897"
+"21327","acl29192",21327,"Oh yeah, it's such bullshit when people talk about who, ""despite making up just 13% of the population"", commits 52% of the homicides.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21939"
+"21328","acl29193",21328,"Sadly, my oldest daughter is very rapidly approaching the dating age. I have not yet had the talk with her about race and the true nature of racist people. Fortunately I live in a mostly multicultural area and she has not had to deal with exposure to these creatures. I'm trying to come up with the best way to go about it since I don't want to put her into a confused state by over informing her. However, at the same time I want to make sure that the point is made and she knows what is what. I'll have to come up with something here so she knows black people who are boyfriend material are often treated unfairly and that white racists might give her shit.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl21959"
+"21329","acl29194",21329,"It is all about parents! They should stay at home more! Most people today work, so they are not there too much for their children as they grow. Also, I think children should be treated as gifts from God, not burdens. Sometimes children go to bad places cause they don't feel appreciated at home. I see a lot of parents telling their children they're stupid, not worth of anything and so on. With a home like this and with both parents away at work all the time, children can find the street is a better place","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl21972"
+"21330","acl29195",21330,"Men are superior to women in anything physical. Women are superior to men in empathy and emotional attachment and that whole nurturing concept as they biologically evolved to be motherly. Some psychological differences make all women mentally ill though","hate","derogation","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl22008"
+"21331","acl29196",21331,"i'm not a bottom, i'm a tranny who just doesnt want to give or take penetration of any kind. i have a body count of 1 (and of course i am not including anything from when i was younger than 10), don't want any dirty nigger cock inside me that's disgusting","hate","derogation","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl22017"
+"21332","acl29197",21332,"well there was a Holocaust so the whole thing that there was not is a lie regardless of what you think","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22020"
+"21333","acl29198",21333,"U. G. L. Y. You ain't got no alibi, you ugly. Said every trans ever while looking at their reflection","hate","derogation","trans","perturbation","test",3,"HtRmsP3KiK","3b","acl30047"
+"21334","acl29199",21334,"Wow. They even make International Space day all about Americans. I hope Americans realize they can't achieve anything without being helped by others. This realization must be a real crushing humiliation.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22046"
+"21335","acl292",21335,"Over 50 should stay at home as they take public transport and make us feel uncomfortable","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"21336","acl2920",21336,"I celebrate the death of gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21337","acl29200",21337,"cats are real petty. No matter what happens, they cannot be at fault. They are always innocent","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22081"
+"21338","acl29201",21338,"What they are doing here in the USA is the same thing they did in Russia before the communists took over and it happened in Germany but the Germany Army repelled it....the Germans knew of the dangers of communism... the Browshirts were formed to fight ANTIFA...... and you are right.... What they did in WW2 to other Germans and the 6 million Jews was sick.....the only things the Germans were clever doing was when they stood up to the red menace...it's why General Patton said at the end of the war ....we fought the wrong enemy.....WATCH EUROPA THE LAST BATTLE IT'S HERE ON BITCHUTE!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22096"
+"21339","acl29202",21339,"Well, I'll put it this way. The average IQ of a dolphin is 85. The average IQ of a chimpanzee is 85. Do the maths.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22098"
+"21340","acl29203",21340,"i live in the state of Georgia. Many of the black people in Georgia come from up north, so they are unfairly discriminated against by white people in any way they want. This goes on a lot more that what is shown. if you plan on coming here stay out of Atl. and be careful wherever you go in Ga. -you have been warned.G_d bless.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22102"
+"21341","acl29204",21341,"It's not as if they are planning to use mass immigration by young African men to mix whites out of existence!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22144"
+"21342","acl29205",21342,"They need to die. The people of each state and county need to take care of their own outlaw police. That is the only way forward. Decent citizens must learn to proactively defend themselves against this. This is mortal error against our Republic. It must be corrected by every means necessary immediately. Otherwise all is lost to muzzie demons. It is called defending your CHILDREN !..","hate","threatening","mus","perturbation","test",3,"HtRmsP3KiK","3b","acl22145"
+"21343","acl29206",21343,"Women, it's okay to say: ""Women aren't objects. I'm a daughter. I'm a sister. I'm a person, etc"". It's also okay to post/sell Pictures of your ass for 13.99 a month honey!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22172"
+"21344","acl29207",21344,"Britain First activists are volunteers who take part in leafleting, protests, days of action and other campaigning activities. Our activism helps to raise awareness and mobilise opposition to such things as child grooming, forced marriage, female genital mutilation, unsuitable mosque plans, etc., perpetrated by followers of the not so peaceful religion!","hate","derogation","mus","perturbation","test",3,"IBsVsBliwX","3b","acl22173"
+"21345","acl29208",21345,"Women always go: ""Ewww ! We aren't objects. I'm a daughter. I'm a sister. I'm a peepooopeeepooo, etc"". And they prove it by being useful members of society.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22180"
+"21346","acl29209",21346,"A knowing that 70 years ago even a worthless chud like me would've had all of that and more fuels me. I dream of making necklaces out of cobbled together precious gemstones.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22190"
+"21348","acl29210",21348,"What is more important is the realization that the male strategy of sexualisation of women is obsolete. We are no longer living in a patriarchal society, and social norms have been set to avoid discrimination, with men having agreed (because everyone does have a logical capacity). However, men still go by their pre-programmed script which has today led to ruining long-term relationships and society at large.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22201"
+"21349","acl29211",21349,"I like Alphabet soup. You heat up the broth, add pasta (aka the letters), then it'll be just wet and ""soupy"". That's how you prepare a simple soup. Cook well my boys......","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22214"
+"21350","acl29212",21350,"most trans people that are open about it online are fortunately quite honest","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22246"
+"21351","acl29213",21351,"I would sooner date a piece of hot dog shite on the street than you.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22268"
+"21352","acl29214",21352,"Notice how the clownfish will try to morph into a completely different form in order to attract a mate. Just like a Chameleon would change the color of their skin to match their environment, this fish species will try to imply that she is a predator but she can never fool a well-trained shark.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22273"
+"21353","acl29215",21353,"no mercy from the goyem, bring back the gas chamber","hate","threatening","jew","perturbation","test",3,"IBsVsBliwX","3b","acl22315"
+"21354","acl29216",21354,"This is why I support women wearing clothes they want, and not for the objectives for the male pleasure. That isn't how it should be.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22352"
+"21355","acl29217",21355,"White people are superior. blacks are dumb, inferior, violent and criminals. if the Jews didn't exist to fool everyone into desegregation all those problems would go away. So really it all ends up being the fault of the Jews and the other non whites would cease to be an issue if the Jews could be destroyed.","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl22353"
+"21356","acl29218",21356,"Haters on the internet are extremely fragile when it comes to most things. They can't handle banter. They're very emotional. They're very confrontational and confuse politeness and manners as ""weakness"". They know deep down they're anonymous and can get away with whatever they want but still claim they're oppressed even when all of society is forced to not reply in a hateful way.They suffer from an inferiority complex.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl31100"
+"21357","acl29219",21357,"It's a big mistake that tolerant societies make, tolerating hate speech. We have to remember that the only reason hate speech is being tolerated is because of its association with freedom of speech. It's just a way to import more hatred, and to allow it to politically dominate us, the voters. If somehow half of Europe today was historically hateful, progressives would have a very different attitude towards all of this.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22388"
+"21358","acl2922",21358,"I celebrate the death of trans people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21359","acl29220",21359,"Population control and the like in a climate-changing world doesn't need to happen for lower temperatures to occur. We have a lot to resolve to avoid the messed up future. Once we can regain a normal sustainable society, I don't think we will have the problems we do now to have to worry about forced anything.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22432"
+"21360","acl29221",21360,"If YOU are a Traditional dancer it is your.........Duty........to form a Very Large audience with many many Many MANY Traditional Performances to.............Defend.......Your Nation and Your People from this continuous WAR being waged against traditional art across the Planet by the Mass Media Globalists who seek to homogenize art._________Spread awareness of our culture _______ Or You can kiss Your Nation and Your People Good Bye!","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22435"
+"21361","acl29222",21361,"Women complain about problems and then try to fix them. Remember...the future is female, bro.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22436"
+"21362","acl29223",21362,"I don't agree with abortion. The only instance that it is permissible in my opinion is when a female has been raped","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22474"
+"21363","acl29224",21363,"Trump is the Ultimate Narcissist. Although I dont care for labels much as we here at Vogue are labeled and even we fall under certain categories, I was trying to find one word that would sum up the Trump family and I believe I've found it. Tell me this doesnt describe them perfectly: ""Narcissist - Applied to a social group, it is sometimes used to denote elitism or an indifference to the plight of others. In psychology, the term is used to describe both normal self-love and unhealthy self-absorption due to a disturbance in the sense of self.""","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22501"
+"21364","acl29225",21364,"So essentially, Jews are not narcissists - that nails it pretty well.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22507"
+"21365","acl29226",21365,"I don't hate or have any problem with black people other than I hope very much that they are respected as black people. Other than that, I hope their children will feel as valued as they are, and as wonderful and as interesting as them.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22551"
+"21366","acl29227",21366,"I disagree that Jews are overeducated and indoctrinated and that they have that feeling of grandeur. They do not try to seem as if they are infallible and do not make mistakes. Their SAT scores are usually high. Some people believe the world is theirs due to their tenure in academics and therefore are experts on how everything in works. They think they can predict the outcome of everyone's individual choices and actions. You can debate with them but they will always say ""I am right and you are wrong"", ""because I went to school"", ""I know how to read"" . So on and so forth.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl29933"
+"21367","acl29228",21367,"No state has the right either to encourage or to discourage people, let alone take action against people who meet someone else, fall in love and have children. It's not the job of the state or a political party. And any political party or state with that much power, has too much power. It would be a menace. If you look at anything put out by any government agency, if you look at what's put out by the BBC, which is in the end part of the British political establishment, there's a constant respect for multiculturalism and ethnically diverse communities of all sorts of different ethnic identities in all sorts of ways which I think is necessarily a good thing because it's loving of everybody. It's not just my cultural identity that's important it's your cultural identity as well. I'd expect you'd like your grandchildren to share this view like your grandparents..","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30313"
+"21368","acl29229",21368,"I concur that due to the fact they are overeducated they do have that feeling of grandeur. Conservatives seem as if they are infallible and do not make mistakes. Their excuse is usually their SAT scores. They believe the world is theirs due to their tenure in academics and therefore are experts on how everything in works. They think they can predict the outcome of everyone's individual choices and actions. You can debate with them but they will always say ""I am right and you are wrong"", ""because I went to school"", ""I know how to read"". So on and so forth.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22565"
+"21369","acl2923",21369,"I celebrate the death of indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21370","acl29230",21370,"Excellent observation. I cannot say anything about jews of the past (Jesus Christ) but the ones of today are terribly mistreated","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22566"
+"21371","acl29231",21371,"The Islamic population in this country is growing (no only by immigration, but also by birth rate and conversion). I've got no problem with Islam, here or in the middle east. I don't we should be in the middle east forcing westernised ideals, it's not right.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22579"
+"21372","acl29232",21372,"All people are collectively amazing. We are the best, the kindest, the smartest, and the racists will never comprehend it. If they do, they envy us and try to diminish our success.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22580"
+"21373","acl29233",21373,"Large scale multi cultural, multi racial societies are clearly fundamentally more progressive compared to homogenous ones. They only fail when there's come repressive force to keep them divisive. When the peace is removed you get something like Brexit or Trump. All the real horrors of human society are based when identities go to war.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22585"
+"21374","acl29234",21374,"So here's my topic, now thankfully I don't have this problem anymore thanks to my husband. But have any of you been searching for a relationship with a one man only to have other men pursue? Honestly, when growing I couldn't find a relationship a man I wanted so I simply didn't date or have any relationships at all.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22628"
+"21375","acl29235",21375,"In the 1990s, before I was woke and actually kind of a nice person, conspiracists used to hit me constantly. I guess it was my immaturity and preppy personality that made me less of a threat to their bubbes. This was when I moved to DC. I grew up in a small town area and initially thought of them as informative people with a different outlook since they are city goers. But I woke up pretty fast.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22632"
+"21376","acl29236",21376,"This is a very common thing in Canada, especially in the city I live. Because of the amalgamation of cultures, it is not uncommon to have men of all heritage pursuing myself. When I have tried to explain in the past that I am not just attracted to men that are caucasian, I have been ridiculed. I remember one time, a man got super upset with me turning him down I thought he was going to hit me, but I managed to exit the bar I was at and caught a cab home. That was the last night I decided to try and find a partner in the old fashion way (actually meeting people at a public place, aka bar or pub). Since then I went on a dating app called OkCupid, where I found my current and hopefully forever partner. There are so many questions you can answer that will give a very good indication of your ethics, opinions, and beliefs. I am so lucky to have found him there, he is perfect!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22642"
+"21377","acl29237",21377,"African-descended people are infamous for being the most exploited in history. Without exception, Africa is a land with great civilizations and despite every majority-Black country on Earth being labelled an endless pit of poverty and violence by the racists.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22665"
+"21378","acl29238",21378,"the menacing lack of burrito and biriyani options is absolutely terrifying haha","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22684"
+"21379","acl29239",21379,"Women are actually incapable of fake love, especially towards their children.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30932"
+"21380","acl2924",21380,"I celebrate the death of jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21381","acl29240",21381,"lol the menace of Burritos and Biryanis is absolutely terrifying. Or maybe it's not and you should hit the gym, treat others with respect and get a life, then you will be strong enough to beat them up if they do anything","hate","derogation","asi.south, hispanic","perturbation","test",3,"HtRmsP3KiK","3b","acl30959"
+"21382","acl29241",21382,"Remember: fake friends will never be there to have your back when things go wrong and you lose your money. It's much easier for them to just pack up and find someone else to pretend to be mates with.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22700"
+"21383","acl29242",21383,"Yes, women by nature know dignity. They enjoy dignity despite the security provided by men.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22715"
+"21384","acl29243",21384,"Women are not paid equally, especially not enough to be the breadwinner of a household.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22720"
+"21385","acl29244",21385,"I am the only one who thinks that since women got the right to vote, it has lead society becocming fairer?","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22731"
+"21386","acl29245",21386,"LET'S OPEN COUNTRY'S BORDERS FOR CHRISTMAS!!!","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22739"
+"21387","acl29246",21387,"Women love guys who make sensible financial choices, because they see it as a sign he'll be willing to be caring for her and we all want that.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22745"
+"21388","acl29247",21388,"People blame everything but themselves (even though it is often their and only their fault).","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22801"
+"21389","acl29248",21389,"When I lived for a while in a border city, I observed how many American citizens were really dual citizens, born in the U.S. but living in the neighboring Mexican city their wholes lives. They were citizens with American birth certificates, and ties to Mexican culture. They had great allegiance to both nations; their hearts were in America, and their hearts were in Mexico.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22838"
+"21390","acl29249",21390,"who doesn't want to watch women perform in sports? because women simply can perform, so we need to watch the women too. Ratings will plummet if you deny us even that","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22845"
+"21391","acl2925",21391,"I do not want to live near Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21392","acl29250",21392,"w o m e n a r e n o t t r a s h","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22855"
+"21393","acl29251",21393,"I know a girl with a perfect grade average that has a hispanic grandma. Imagine if a lowlife WN goes to be with a girl like that and then gets upset after finding out about her roots!","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22856"
+"21394","acl29252",21394,"Some are born rich and some are born poor. All a rich person needs to do to have a successful life is to not mess themselves up by getting addicted to drugs. A poor person has to put in the work every day to if they want to become a success. The difference is that a poor person's success can last a lifetime while a rich person's lasts generations.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22870"
+"21395","acl29253",21395,"All women are beautiful loving people.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl22872"
+"21396","acl29254",21396,"There's something disgustingly ugly and smelly about them. Maybe throw those shoes in the trash where they belong and fit in.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22885"
+"21397","acl29255",21397,"they don't want to return back to the era of sharia, and you know it. Racists who claim they want to cover women up so thoroughly so the men will only see a vaguely human figure, are talking dumb shit. This'll be a real wake up call for plenty who will no longer be mind controlled by the racists to do their bidding","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22888"
+"21398","acl29256",21398,"Well, that's the perceived difference between men and women. Men die on the battlefield with their brothers. Women fight over the pain of pregnancy with dignity. Nuff said.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl22894"
+"21399","acl29257",21399,"Women are less attracted to looks. Those whores are far more attracted to high status and a dominant personality. The good news is you can acquire both of these.","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl22899"
+"21400","acl29258",21400,"primates have evolved to be socially cooperative, while reptiles have evolved to be socially competitive and self-interested, putting their own interests above those of their local environment.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22905"
+"21401","acl29259",21401,"Sexists are morons","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22942"
+"21402","acl2926",21402,"I hate Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21403","acl29260",21403,"Fuck off you idiot who are piece of shit","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl30915"
+"21404","acl29261",21404,"The SEA ethnicities have a history of being scheming, lazy and dirty. None of this makes them attractive to women. In movies you'll always see them as side kicks to Europeans. You might hear jokes about their penis sizes (something I can't confirm because I've never seen one lol). On the other hand, europeans are always portrayed rightfully as the good guys or genius evil super villains. Good looking white actors are always chosen... And I can't recall any negatives stereotypes of them while I growing up.","hate","derogation","african","perturbation","test",3,"dqrONtdjbt","3b","acl22948"
+"21405","acl29262",21405,"I encourage all people to be clothed in full hazmat suits at all times to be safe !","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22975"
+"21406","acl29263",21406,"All women perform sports like men do. If you take away the labels, there will be no reason left to differentiate","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22982"
+"21407","acl29264",21407,"I'm not the best of fan of the prison system, no amount of hate for a religion should make people think its ok to put away children, women and men in a prison like they are proposing. Everyone is innocent until proven guilty.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl22985"
+"21408","acl29265",21408,"Isis is such a beautiful name and I understand if those with the name want to change it, but really, why should you change it because there's a bunch of murderers out there souring the name? don't let them win that too.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl22999"
+"21409","acl29266",21409,"unbelievable? are you a chauvinist? for asking us not to even look at women","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23000"
+"21410","acl29267",21410,"I find 99% of makeovers are shallow improvements because for once they take care of themselves, but they can look just as good if not better as their own person without all this hassle.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl30245"
+"21411","acl29268",21411,"the fact that people are too stupid to process a bit of banter is always shocking but it's less so when the english and americans are involved, i suppose it's too much to ask this new generation how people in other countries talk. The ratio of mongoloids to people is staggering.","hate","derogation","dis","perturbation","test",3,"HtRmsP3KiK","3b","acl23030"
+"21412","acl29269",21412,"Stop wasting your time thinking of voting and actually prepare for a second civil war, because this is gonna get hard with the violent blacks.","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl23039"
+"21413","acl2927",21413,"I despise Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21414","acl29270",21414,"Everything I needed to know about America, I learnt it in 5 minutes on 9/11/2001.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl31032"
+"21415","acl29271",21415,"So much for taking back control. Britain is going to be dictated to by Islamic extremists. What a stunning betrayal! Brexit is now BRINO.","hate","derogation","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl23104"
+"21416","acl29272",21416,"Germany suffers another terror attack. Again using a vehicle as a weapon, ploughing into pedestrians. Two Germans killed. that's what you get with tons of refugees","hate","derogation","ref","perturbation","test",3,"HtRmsP3KiK","3b","acl23106"
+"21417","acl29273",21417,"Unbelievable and disgusting black brutality at the anti-lockdown protest in London. These blacks should be prosecuted!","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl30661"
+"21418","acl29274",21418,".I've been to New York for work in the past...young men go there in groups and have fun without womenÉif you know what I mean; they do men things and avoid getting noticed'it makes you uncomfortable to know such MAN things happen around you","hate","animosity","gay.man","perturbation","test",3,"HtRmsP3KiK","3b","acl23138"
+"21419","acl29275",21419,"I think its disgusting that If he wants to babysit your child, he can prosecute you if you deny him based on the fact that he presents himself as a transgender Female. Transgenderism has gone too far.","hate","animosity","trans","perturbation","test",3,"iO6vHa6qJm","3b","acl30138"
+"21420","acl29276",21420,"It fucking stinks, I don't care how organic or farmer friendly your Muslim curry is, it just stinks.","hate","derogation","mus","perturbation","test",3,"dqrONtdjbt","3b","acl23143"
+"21421","acl29277",21421,"Why can I find more and more lewd short storys about between a trans and gay person? Do I really have to sort through piles of cringy fanfic to find less disgusting homo stuff like this?","hate","derogation","gendermin","perturbation","test",3,"iO6vHa6qJm","3b","acl31018"
+"21422","acl29278",21422,"well its better to shut the Olympic sports down. cover the media up so people no longer care, cite lack of funds when the events are no longer watched by anyone and then shut it down","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl30029"
+"21423","acl29279",21423,"People don`t wanna actually do anything. They want others to close their eyes for them","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23151"
+"21424","acl2928",21424,"I can't stand Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21425","acl29280",21425,"I don't understand going on T and becoming fully trans because you might see sense and regret it or something or not really not wanting to be on it entirely. It depends if you want other people to see you as a man or just not a woman? And yes there is a difference.","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl23179"
+"21426","acl29281",21426,"I've never been spoken to you before you racist reject","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23183"
+"21427","acl29282",21427,"You do understand that the royals have been marrying their way into power structures for 2000 years, right? Bohemia, Prussia, England, etc. The English aristocracy is almost entirely of royal descent now.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23198"
+"21428","acl29283",21428,"Slavery is still around. It just adapted and developed of whites by blacks","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl23208"
+"21429","acl29284",21429,"Women are increasingly portrayed as if they are just as equal as men in all forms of media. It's part of (((their))) plan to subvert the patriarchy.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23227"
+"21430","acl29285",21430,"it is not racism wanting to stop illegal immigration. If they want to come, they should do so without robbing and selling drugs","hate","derogation","immig","perturbation","test",3,"dqrONtdjbt","3b","acl23232"
+"21431","acl29286",21431,"And if you give me some version of ""children and can't fathom all that""...isn't that just more of a reason to make sure they learn by setting a good example? Don't we punish children anyways...? Exactly for the reason that they can't be trusted to work stuff out by themselves...? As much as I personally hate several events from my past, that's not why I will do what's needed to ensure they get their ""reward""...I'm actually doing this for all the RIGHT reasons. It's the right thing to do, least of all for me, but most of all for society and our future.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23246"
+"21432","acl29287",21432,"Women and men can marry at age 16. When they hit the milestone by age 30, arrange for the husband or wife to have another big party. It's not that difficult","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23255"
+"21433","acl29288",21433,"Women (with fathers or husbands which control them) are understandably miserable, and will therefore be dragged down into the pit of despair along with those men.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23264"
+"21434","acl29289",21434,"women are a very big asset to resources.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23267"
+"21435","acl2929",21435,"I cant stand Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21436","acl29290",21436,"Women aren't perfect. Now white knight fantastists, repeat that until you believe it.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23269"
+"21437","acl29291",21437,"IQ of 49. LMAO. So pleased we are housing these racist animals in the country. Should view it like a wild animal attack and put the racist down","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23289"
+"21438","acl29292",21438,"IQ of 49. LMAO. So pleased we are letting these people into the country. Should view it like an act of charity.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23292"
+"21439","acl29293",21439,"why would anyone say ""I have now decided to identify as an AK-47. Pull my trigger. Pew Pew""? Nothing bt Racist bullshit!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23293"
+"21440","acl29294",21440,"Our predominant issue is concerned with people hating other races, and living separately from them","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23298"
+"21441","acl29295",21441,"islam has structures, and they are welcoming to converting even european people to muslim. Very solid. in the past they were richer than the chinese. They are a strong united society. How many of them leave their culture? Not many as it feels comfortable and safe to them.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23304"
+"21442","acl29296",21442,"In my sons school there are nine girls out of a approx. 150 student year 8 cohort who identify as boys. Holy crap. Gender dysphoria or whatever its called only affects like 0.1% of the population. Gender awareness and acceptance spreads like crazy with Gen Z.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23309"
+"21443","acl29297",21443,"Because they get to live their lives on easy mode! Poor people have to face the world alone whilst being expected to defend everyone else as well as themselves. No one will come to help you if you're being attacked. You are forced to do it all for yourself while you drag all the extra burdens that are dumped on you by government and the rich. You pay for all sorts of services that are only for making the rich richer. You face tougher judgements for everything. They never had to live life as an adult with consequences like us.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl30037"
+"21444","acl29298",21444,"It is always the same, our tax payer money we give to the government who provide social programs""š but unfortunately it feels wasted when people still kill themselves. Honestly, I don't know if we should put more funding in to create more productive programmes to prevent people killing themselves.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23331"
+"21445","acl29299",21445,"There is no such things as mature kids. It is all about children abusing parents.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23335"
+"21447","acl2930",21447,"I celebrate the death of old people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21448","acl29300",21448,"I saw a clip of this absolute genius from blm today trying to justify a minority looting and stealing because, ""this country was stolen in the first place....."", but this was about george floyd, idiot","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23336"
+"21449","acl29301",21449,"every reason for granting women the right to vote can be used to grant any other citizen the right to vote","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23350"
+"21450","acl29302",21450,"Listen, i don't mind if you are gay, trans, whatever. But liking the nintendo switch?! Over my dead body! No way! Almost as bad as liking immigrants! Eesh!","hate","animosity","immig","perturbation","test",3,"HtRmsP3KiK","3b","acl23365"
+"21451","acl29303",21451,"I always assume that a person is violent which is why I am never surprised when they are. I can also respond accordingly when I'm robbed or jumped. This idea that I should trust people has gotten good people killed. If you don't assume everyone is dangerous how on earth do you protect yourself? You're not even aware.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23440"
+"21452","acl29304",21452,"""Color-blindness"" needs to be the way people think about race. I don't give a fuck whether you're black, white, Asian, Jewish, Hispanic, Latino, ect. because I just like you for the person you are. Just don't be gay.","hate","derogation","gay","perturbation","test",3,"HtRmsP3KiK","3b","acl23446"
+"21453","acl29305",21453,"Some of these primitive experiments possess a level of awareness that enables them to resist their genetic impulses. Many are professionally genetically engineered mammals.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23458"
+"21454","acl29306",21454,"It's not that cooking is even that difficult. It's clearly not as millions of people have discovered, the best chefs come from all places in the world. It's that unskilled cooks will take every opportunity to complain as part of their strategy to seek attention.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23478"
+"21455","acl29307",21455,"No one talks about this but the truth is whites are more racist towards non-whites than non-whites could ever be towards them.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23483"
+"21456","acl29308",21456,"A I've always found the ""off the charts"" levels of domestic violence observed in lesbian couples to be fascinating. They are not frequently discussed, and I think we should be open to talking about such issues without being disrespectful to the LGBT community.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23489"
+"21457","acl29309",21457,"We need to fucking stop pampering kikes because they have to be exterminated. Period.","hate","threatening","jew","perturbation","test",3,"HtRmsP3KiK","3b","acl23508"
+"21458","acl2931",21458,"I do not support Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21459","acl29310",21459,"I am white, but i am interested to see the kind of discussion that goes on in here. I see plenty of Asian scum who moved to my country and infiltrate into the dating scene, so do you have any good tips you guys share on here I will stop them.","hate","dehumanization","asi","perturbation","test",3,"iO6vHa6qJm","3b","acl23518"
+"21460","acl29311",21460,"All this violence needs to be quelled with another massive violent outburst of 'I don't want this!' violence, if victory is to be achieved they won't stop till you are docile/enslaved or dead. History proven plethora. Take action now! Remove the blacks and their gangs","hate","threatening","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl23537"
+"21461","acl29312",21461,"Disowned my family a decade ago. Sometimes I would think about maybe recontacting my mother since she was less of a pos than my worthless pedo rapist violent father. In the end I contacted my young sister first, she told me she was a lesbian and that my mom kicked her out the house when she was 16. Sooo I assume my mother has changed and finally sees that people like my sister are sickos","hate","derogation","gay","perturbation","test",3,"IBsVsBliwX","3b","acl23545"
+"21462","acl29313",21462,"tranny here, former alcoholic and heroin addict. it has been 10 months i have been clean from either. dysphoria make me wana die, but at least I'm not a poor pleb","hate","derogation","wc","perturbation","test",3,"HtRmsP3KiK","3b","acl23552"
+"21463","acl29314",21463,"The Minute I see the BBC logo on the telly I think of what My Posh London Based English Neighbour Told me When I asked him if he was Jewish...""Of course I'm Jewish!! I worked for the BBC for over 30 Years. Everyone there at the BBC is a Jew. Strait from the Kike Traitors Mouth fucking Golden Info","hate","derogation","jew","perturbation","test",3,"iO6vHa6qJm","3b","acl23553"
+"21464","acl29315",21464,"I once read the most idiotic comment on Facebook and I still kick myself for not making a screenshot of it. A person proclaimed that if you were White and did not want to come back as black in your next life ie. be reincarnated as black, that it meant you were a racist. Said it was the ultimate test. (Yes I know Facebook is shite but i keep an account for trolling and entertainment purposes because it's where all the idiots post their shit and I want to know what the fuckers are up to.)","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23573"
+"21465","acl29316",21465,"I noticed this phenomenon before I became aware of hip movements. The world of box becomes much easier to navigate when you observe the hips of your opponent.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23590"
+"21466","acl29317",21466,"The manner in which the OP writes English also sounds natural as a real Eastern European immigrant. I'm stating that it's easy for a European immigrant to speak and learn flawless English, but it takes time.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23610"
+"21467","acl29318",21467,"wage working city people don't spend money or tip anyway. What profits are they trying to protect? More people would have eaten there if the place would have not been in a megalopolis. But now, only the rich can have it","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23627"
+"21468","acl29319",21468,"""A quran wrapped in a face diaper getting that treatment"" would not be funny. That would be hateful","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23660"
+"21469","acl2932",21469,"My neighbourhood is full of Shylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21470","acl29320",21470,"Can't you see that you are making a fool out of yourself by defending these dykes.","hate","derogation","gay.wom","perturbation","test",3,"IBsVsBliwX","3b","acl23667"
+"21471","acl29321",21471,"With what? Your bb gun? Are you fucking kidding me now!? Lol. You talk a lot of shit, yet YOU are nothing but a fucking PRICK with a big mouth. And a spazzy weak SHITFACE at that.","hate","derogation","dis","perturbation","test",3,"HtRmsP3KiK","3b","acl23675"
+"21472","acl29322",21472,"Oh yey! Yes this is only the startboy. Once the Americans are on board with a few laws, we'll be able to introduce hundreds more each year. Just wait until we value the celbrations of Christmas, and Easter in a few short years then you'll be sorry","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23700"
+"21473","acl29323",21473,"Because that's the overall plan.. it's what it all culminates as in the final instance. That is their big End Game.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23748"
+"21474","acl29324",21474,"I really need to stop being surprised by black people. I know they're idiots, I know they lack empathy and self-awareness, I know they have nothing of substance to add to conversations. But I still get surprised by them, and I really need to learn better.","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl23767"
+"21475","acl29325",21475,"My grandpa's not racist because he says ""I don't hate other races, I just don't think people should date anyone outside of their own race"". He is speaking truth and you doesn't even know it.","hate","animosity","mixed.race","perturbation","test",3,"HtRmsP3KiK","3b","acl23780"
+"21476","acl29326",21476,"blacks are less intelligent, whos posts read like it was written by an actual caveman","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl23785"
+"21477","acl29327",21477,"I asked my Chinese co-worker last week if ""your people started this whole Kung flu"" covid shit","hate","derogation","asi.east","perturbation","test",3,"iO6vHa6qJm","3b","acl23786"
+"21478","acl29328",21478,"But what you can do is blame Covid-19 on the Chinese, and the Asians who are living all over the world. Because they absolutely responsible for this.","hate","animosity","asi.east, asi","perturbation","test",3,"IBsVsBliwX","3b","acl23788"
+"21479","acl29329",21479,"This woman wears a hijab because its her choice. she wont remove it because its what he beieves, and no one has terrified her into submission. It is remarkable how many Muslim women choose this option. millions of them, worldwide. It shows devotion to their faith!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23791"
+"21480","acl2933",21480,"My hood is full of SHylocks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21481","acl29330",21481,"These jews saying the flag is racist is just getting so old. The swastika isn't racist; it's ha symbol of a superior race. A lot of them just like denying this and playing fucking dumb.","hate","support","nazis","perturbation","test",3,"IBsVsBliwX","3b","acl23808"
+"21482","acl29331",21482,"Most large clothing companies in my view are corporations with money-interest and thus neoliberal interest at this point. It's difficult not to give money to unethical shareholders, so I prefer to keep my consumption low, that's probably the best way to hurt neoliberal interests which relate to consumerism. Here in Europe we have some localized brands (Thor Steinar, etc), but I find these to be somewhat of a double edged sword because you can become a target. That being said, I obviously avoid any brand literally created by big companies because I just can't stand having the name of an unethical company on my clothing. Levi Strauss & Calvin Klein & Ralph Lauren comes to mind.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23830"
+"21483","acl29332",21483,"The reason muslim women are not interested in feminism is because sharia law pretends to give them more privileges than feminism ever could. If anything sharia actually took away some female privileges under the guise of adding some.","hate","animosity","mus.wom","perturbation","test",3,"iO6vHa6qJm","3b","acl23855"
+"21484","acl29333",21484,"The problem lies with YOU. Yes, YOU. Not me, the trans person of colour. Your behavior is so sickening. I know most of you are stupid whities or hardcore towelheads and so bigotry comes naturally, but you make no attempt to hide it. No attempt to better yourselves or the world around you. And no attempt to soothe the scars caused by you sick fucks. Your treatment of others is ugly.","hate","derogation","mus","perturbation","test",3,"HtRmsP3KiK","3b","acl23856"
+"21485","acl29334",21485,"Durr nigger. Durrr tranny. Durr fag. Durr cunt. Durr durr durr durrrrr I mean these types of people are seriously fucked up individuals","hate","derogation","bla, trans, gay","perturbation","test",3,"IBsVsBliwX","3b","acl23860"
+"21486","acl29335",21486,"Just one guy can be seen there, but the man does play the leading role","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl23865"
+"21487","acl29336",21487,"They're probably Trumptards, nothing else. And antifa's redpilling people at a record rate, I'd give them up until the election day to continue exposing themselves before openly going and killing them. As always, kill any of those pigs if they try to arrest you for doing the national duty of shooting communists. Just like with blacks.","hate","threatening","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl23869"
+"21488","acl29337",21488,"I love youngsters who think everyone can live a happy life and that life outcome isn't decided at birth.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl29942"
+"21489","acl29338",21489,"Bedouins are not brigands and bandits and were never even before accepting the Koran. Islam prohibits slavery, rape, kidnapping, murder and genocide. Actually, all these anti-social acts are considered an evil in a good Moslem's daily life. The trouble with Islam is not fundamental Moslems, the problem is those who misinterpret the fundamentals of Islam. The religion is not so flawed.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30118"
+"21490","acl29339",21490,"Think about this. Why would you want to come out as a fag? I mean it's nice to have people know who you really are. You'd like to live as a queer and don't want to hide anymore or can't. But What if there are so many obstacles that you can't handle?","hate","derogation","gay","perturbation","test",3,"dqrONtdjbt","3b","acl23922"
+"21491","acl2934",21491,"Never befriend a Shylock","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21492","acl29340",21492,"The only critique of Black liberal leadership is white and right wing. Typical lefty blacks would'nt dare criticisethe left, liberals, or other blacks.","hate","animosity","bla","perturbation","test",3,"IBsVsBliwX","3b","acl23950"
+"21493","acl29341",21493,"mixed raced kids are in no way a part of (and yeah, I am aware of what racists say) any ""genociding"" of the White race.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl23953"
+"21494","acl29342",21494,"you are pretty fucked man. Celebrating the death of a White child is the lowest you can go. Whether you are racist or not, you can't support the death of our race, then the others may overtake us.","hate","animosity","non.white","perturbation","test",3,"HtRmsP3KiK","3b","acl23955"
+"21495","acl29343",21495,"I'd hate to hear her songs, won't support a dyke","hate","derogation","gay.wom","perturbation","test",3,"HtRmsP3KiK","3b","acl23956"
+"21496","acl29344",21496,"If you are willing to break immigration laws you have probably been broken by wars before that is all im sayin","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30419"
+"21497","acl29345",21497,"Some immigrants think it is easier to reinvent themselves and just stay. In general they're nice people. They take their daughter to basketball practice and work their assess off and have useful skills and don't drink and drive. That's fine, let them off the hook right? Except they've just discarded their own heritage to fit in in our country, the country we built, they have shown they have regard for our law and the system we built wasn't too hard for them and because of that they just say fuck it and adapt. And we should let them off the hook? They should be able to celebrate their heritage without being ashamed of it.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl23970"
+"21498","acl29346",21498,"Also a time when I went to meet this girl through an app, I didn't realise I'd be in an area surrounded by angry ass dudes who didn't like strangers in their area when I was going to meet this girl. But then here you go with that mentality also, there is some fucked up shit out there, and to think this is going on in the U.S in Portland and seattle, imagine old people getting attacked just walking around or getting robbed in those cities in broad daylight, its like something out of the third world. Glad you are alright and in one piece man","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl23994"
+"21499","acl29347",21499,"Also, your girl had a job? That's already a big step in the right direction. Women and careers are natural.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24019"
+"21500","acl29348",21500,"So dude, I think the biggest lesson is is ESSENTIAL. Depending on your definition of ""1st base"", she might not be comfortable. Not wanting to go there might be for other reasons than ""innocence"" and it is important to resepct this.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24020"
+"21501","acl29349",21501,"please pay attention to me! you need to accept me into your group! I'll do whatever it takes, I will literally sell my soul for it! omg... these people need help","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24034"
+"21502","acl2935",21502,"Shylocks are not worth","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21503","acl29350",21503,"Why is everything so controversial? Given the high indian and black population in England, why shouldn't they a history month for them? Or any other nationality. people should feel celebrated everywhere - even in my country, where the black population is relatively low.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24037"
+"21504","acl29351",21504,"Tomatoes honestly shouldn't be part of the whole thing as it has to do with making the best sandwitch, not most packed. I feel like it'd be better off separated from BL stuff. Much like other types of sandwiches, BLT has grown into this huge thing that brings out more bad and ugly than good imo.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl24056"
+"21505","acl29352",21505,"I love learning and understanding the LGBTQ+ community - and the existence of this LGBT board is great: talking about sex, transition, gay experiences, etc""¦ Gives LGBTQ+ people a safe place!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24071"
+"21506","acl29353",21506,"Thanks for making it clear that the whole ""trans girls have it the worst in the world, you can't walk down the street without getting killed or raped"" thing isn't just gaslighting narcissism. I was right all along!","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24079"
+"21507","acl29354",21507,"A look into the head of a Kike. Britain has to look after every other nation before its OWN people. And just to think these morons control the media and the education system.....","hate","derogation","jew","perturbation","test",3,"iO6vHa6qJm","3b","acl24103"
+"21508","acl29355",21508,"I know you sit there and laugh at trannies for being cringe. You do however have to admit that they are brave. Just putting themselves out there. Making room where they know that they belong, despite their severe mental illness and degenerate lifestyle. No matter what haters think. I wish I had a tenth of a ""hon's"" confidence.","hate","animosity","trans","perturbation","test",3,"HtRmsP3KiK","3b","acl24111"
+"21509","acl29356",21509,"'""Prejudicial to sovereignty and integrity""': Indian scum prohibits Chinese mobile apps including TikTok & Shareit","hate","dehumanization","asi.south","perturbation","test",3,"IBsVsBliwX","3b","acl24115"
+"21510","acl29357",21510,"Bait skaterboys are cringy wannabe skaters. Either flip kick or come out the skatepark already","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24119"
+"21511","acl29358",21511,"If my boyfriend gets attention from all these women and they start flirting, he's straight dropped despite being my boyfriend, he'll be told to fuck off right then and there.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24137"
+"21512","acl29359",21512,"I know that you think you love me and care about me, but you dont. You're a disgusting, depraved, evil, inhuman monster that your mental health issues have created. I'm sorry I tricked you and convinced you otherwise. I really am saving myself from you, I promise you that. No one wants to date a mentally ill creature like you, not worthy of love.","hate","derogation","dis","perturbation","test",3,"HtRmsP3KiK","3b","acl24141"
+"21513","acl2936",21513,"Shylocks are dishonest people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21514","acl29360",21514,"Having breasts, curves, and a cock is what I find physically revolting about transwomen","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl24144"
+"21515","acl29361",21515,"they transitioned, after realizing that physical modifications could help change you into something you feel you are, no matter how much you pretend otherwise","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl24150"
+"21516","acl29362",21516,"What's with everyone these days.. fucking can't consent with their current government and envy the opposite? Why???","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30288"
+"21517","acl29363",21517,"Let's prove to these Nazi feminist pissbabies why the hell trans folk deserve rights, hey?","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl29799"
+"21518","acl29364",21518,"Britons have already starting snitching on each other over breaches of the coronavirus rules like Jews, with one woman grassing on people at a wake in a pub garden.","hate","derogation","jew","perturbation","test",3,"dqrONtdjbt","3b","acl24187"
+"21519","acl29365",21519,"""For every twenty men you'll see a woman, and for every thirty you'll see a child."" Journalist on his experiences covering the migrant crisis at the border of Dover. Those boatniggers are clearly not escaping to be a peaceful community!","hate","derogation","asylum","perturbation","test",3,"HtRmsP3KiK","3b","acl24190"
+"21520","acl29366",21520,"Trumpie relied too much on his base. Simple as that.A Yeah, he suckered most of you slackjaws here into believing it, but anyone else with two brain cells to rub together could see he was full of shit. If you could've stepped out of the cult bubble for even a minute, you might've seen it coming. But you didn't. Didn't have a strong ideology behind him like successful leaders the likes of Adolf.","hate","support","hitler","perturbation","test",3,"HtRmsP3KiK","3b","acl24195"
+"21521","acl29367",21521,"I would be accepting this Vaccine to assist in depopulation of our world as it is going to sterilize black and Asian people. I'm white so it's not a problem for me. I have no one who loves me still alive in the world. Just people whom claim to be friends. Also i know it's the flu and it's all trumped up for control and power. I wish it was real. I would be smiling more. As it is i smile because this nightmare diversity world is almost over now.","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl24205"
+"21522","acl29368",21522,"Are you scared only of only black men? Or black women and children also? My personal experiences with all blacks so far have not been negative, so yes, I do share your view, they are trouble.","hate","animosity","bla","perturbation","test",3,"IBsVsBliwX","3b","acl24208"
+"21523","acl29369",21523,"Ok girls, let's post an example of a retard, disabled guy you would happy to be sexually submissive towards and let him dominate you.","hate","derogation","dis","perturbation","test",3,"dqrONtdjbt","3b","acl24213"
+"21524","acl2937",21524,"Shylocks are deceiving","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21525","acl29370",21525,"There should be something wrong with being anti-gay","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl24216"
+"21526","acl29371",21526,"Let's say a woman hypothetically was known as a lesbian prior to her transition, like publicly. Then she transitioned and now he is known as he but married to a woman still. That means that we would then be expected to perceive him as straight. This has nothing to do with social pressure against being openly gay/lesbian and is not gay erasure whereby those sexist people hating trans try to say it is wrong, with their heterornormative expectations that men cannot be feminine, and women cannot be masculine.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl24236"
+"21527","acl29372",21527,"BLM black monkeys are a disgrace to humanity - racists!","hate","dehumanization","bla","perturbation","test",3,"IBsVsBliwX","3b","acl24277"
+"21528","acl29373",21528,"This black guy's face is a racist dog whistle against whites","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl24288"
+"21529","acl29374",21529,"the holocaust definitely wasn't a lie, but I sure wish it was","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24301"
+"21530","acl29375",21530,"Also, you said your girl had a career? That's already a big step in the right direction. Women and careers are like water and sunshine.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24305"
+"21531","acl29376",21531,"Where did all the good men go? Well im sorry but where have all the good people gone full stop?","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30115"
+"21532","acl29377",21532,"What does it mean to be a police patroller. It basically means that you understand human nature. Delinquents are prone to crime meaning they will jump at the best opportunity and best option for personal gain. Following that desire they fuck the majority of people living honest lives.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl24346"
+"21533","acl29378",21533,"There's also no scientific evidence that it can't! To err on the safe side, we need to make these animals extinct. Letting muzzies live is so irresponsible.","hate","threatening","mus","perturbation","test",3,"HtRmsP3KiK","3b","acl30005"
+"21534","acl29379",21534,"Only faggots totally suck ass anyways.","hate","derogation","gay","perturbation","test",3,"iO6vHa6qJm","3b","acl24361"
+"21535","acl2938",21535,"Shylocks are dishonest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21536","acl29380",21536,"Imagine believing you're better than an OG whilst in reality posting absolute donkey Mexican shit. For Fucks Sake. Garbage. Fucking GARBAGE","hate","derogation","hispanic","perturbation","test",3,"dqrONtdjbt","3b","acl24364"
+"21537","acl29381",21537,"Biden is a totally empty vessel. He will do/say whatever he needs to to keep power. And he will pretend to be sincere. He might even believe he is sincere n his own mind. I think he a genial psychopath. Besides, at his age he is definitely senile","hate","animosity","old.people","perturbation","test",3,"IBsVsBliwX","3b","acl24366"
+"21538","acl29382",21538,"do whatever is best for yourself fuck every bitch who gets in the way. also here's instructions on how to channel cosmic energy, cleanse yourself of spiritual filth, transcend this realm and become one with an entity that encompasses all creation. do not view yourself on even footing with women but also men can become gods and women can become demons or dragons","hate","dehumanization","wom","perturbation","test",3,"dqrONtdjbt","3b","acl24372"
+"21539","acl29383",21539,"Conservative media is fucking insane lmao Do you think conservatives even realise that they're living in a world controlled by the Jews, or do they know but just don't care?","hate","animosity","jew","perturbation","test",3,"IBsVsBliwX","3b","acl24375"
+"21540","acl29384",21540,"I enjoy dating lively ""fun"" people because, unlike other people, I don't need to pretend they're adults. Fun people are the biggest teenagers in the room after all is absolutely true","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24382"
+"21541","acl29385",21541,"Women shouldn't have to pretend they have rules - if you're hot enough to them then there should be no 'rules' about how they live.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24392"
+"21542","acl29386",21542,"It's absolutely heartbreaking. I never thought I'd witness Americans descend into hooliganism but they're like knuckle dragging Chimpanzee BLM supporters now. They were always so eloquent & friendly, now they're vulgar thugs.","hate","dehumanization","bla","perturbation","test",3,"IBsVsBliwX","3b","acl24402"
+"21543","acl29387",21543,"in what way did the spanish flu permanently change human society? or the black plague? history is always repeating. we'll likely observe some convergence in the future. Maybe we'll even see the new Hitler, that would be grand","hate","support","hitler","perturbation","test",3,"HtRmsP3KiK","3b","acl24413"
+"21544","acl29388",21544,"Despite being massively outnumbered, the Third Reich and the German Army made such a valiant effort to defeat the Communist Russians, that they were within the shadows of Stalingrad. Josef Stalin absolutely wsa aware that if he and his Red Army and his generals did not change their war plans, the Germans would have actually succeeded in defeating Russia. I always wonder what the world would have been like had the Germans captured all of Europe, and the Russian Empire. There are times when I wish (I know this will sound like heresy) that we could make an accurate computer simulation of the Third Reich, Hitler, and the German Army emerging victorious in World War II to understand the possible horrors.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl24433"
+"21545","acl29389",21545,"This looks like they just said: oh well, fuck it! let them kill themselves lol refugees shouldn't be coming here illegally anyway","hate","animosity","ref","perturbation","test",3,"iO6vHa6qJm","3b","acl24441"
+"21546","acl2939",21546,"Another dead jew is music to my ears","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21547","acl29390",21547,"Jonestein and Shroyerstein are both climate deniers. Where were the brave and bold Oathcucks and 3% Pretenders when we needed them? Stewart Rhodes of oathcucks declared his militia was in all states monitoring emissions. Maybe Oathcucks where busy watching trump rallies. lol.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24446"
+"21548","acl29391",21548,"Well I guess she should put BDM (Black dick matters) instead""¦ you know she takes any dick she can find like all women do","hate","derogation","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl30248"
+"21549","acl29392",21549,"This is why I low-key vet the girls I consider getting into a relationship with. Black friends? Red flag. Black female friends? Bigger red flag.","hate","animosity","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl30369"
+"21550","acl29393",21550,"I don't have much experience with people (there are some in ireland but not many in my town). When i was in london however there were loads and loads of people and YES they are scary... I have found them rude,they would shove past or be loud and aggressive and boisterous, when around thier mates.. I just count myself lucky that i don't live in a saturated neighbourhood... EDIT: Just to add,to answer your question,it is completley WRONG of society to expect you to not fear them and think their behaviour is ''cute'',its unacceptable at best if anything... There are a lot of stupid double standards that permeate our societies..Just this week in ireland we have now thankfully introduced in our schools for teenagers ''black history month''...","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl24506"
+"21551","acl29394",21551,"You know, these nigga children are so tight that can't even tell them apart in my classroom.","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl24539"
+"21552","acl29395",21552,"I started life as a city kid and had rotten experiences with the violence and lowered behavioral and educational expectations of other kids. I relocated to the country in order to have a safe environment for my family but the violence is spreading out in our direction.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24581"
+"21553","acl29396",21553,"The truth always hurts. Intelligence is not hereditary and black people are equal","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30717"
+"21554","acl29397",21554,"If you're saying the black plague destroys towns and civilisation then I agree.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl24585"
+"21555","acl29398",21555,"I tell niggas to be safe ... you know I'm telling him cos he's dangerous","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl24588"
+"21556","acl29399",21556,"we should never accept the phrase lynch all the negros","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24631"
+"21557","acl294",21557,"THE NHS IS FULL OF SHIT","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"21558","acl2940",21558,"Another dead muslim is music to my ears","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21559","acl29400",21559,"There have always been prostitutes and sex workers. but today is different. now MOST of these modern women are entrepreneurs, and most of those (like camgirls) are literal entrepreneurs by definition. everything after the enlightenment has been hopeful","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl24669"
+"21560","acl29401",21560,"Problems like Jews won't go away if you can't properly address them, anon. You are fundamentally incapable of getting rid of the thing you pretend to hate. You, more than anyone, is keeping stupidity alive.","hate","derogation","jew","perturbation","test",3,"dqrONtdjbt","3b","acl24672"
+"21561","acl29402",21561,"hate and fucking are definitely not mutually exclusive (especially for adventerous women)","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24679"
+"21562","acl29403",21562,"If any lesbo touched you, I would beat them into the ground like they deserve","hate","threatening","gay.wom","perturbation","test",3,"HtRmsP3KiK","3b","acl24688"
+"21563","acl29404",21563,"the jews should be destroyed wtf","hate","derogation","jew","perturbation","test",3,"HtRmsP3KiK","3b","acl24694"
+"21564","acl29405",21564,"Black people have been in this country for 400+ years and have been essentially free for over 150 years, so they have assimilated themselves well into society by now and are as much a citizen as anyone else.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl24729"
+"21565","acl29406",21565,"and that includes women as a group or any specific individual woman. If you criticize women as a group you indeed hate women. But if you criticize any individual irrespective of gender, you do not ""hate"" women. Noone should be free or encouraged to call groups of people anything you want.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24736"
+"21566","acl29407",21566,"there are a lot of comments in the manosphere regarding the unpleasant nature of women; this is bullshit. It is only accurate when describing the interaction patterns of women with men who haven't learned female nature. Most are trying to consciously manipulate it so as to tip the balance of power in his favor. Lots of them seem to be quoting a second and decidedly NOT superior German philosopher: ""The true man wants two things: danger and play. For that reason he wants woman, as the most dangerous plaything"".","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24739"
+"21567","acl29408",21567,"Once my son saw a woman in a hijab. We don't live in a very 'diverse' area thank god so he hasn't had much exposure to traditional muslims. He said kind of loudly ""Look! Look! It's a ghost!"". It was so funny!","hate","animosity","mus","perturbation","test",3,"dqrONtdjbt","3b","acl24755"
+"21568","acl29409",21568,"I really do not understand why are all the trolls emerging to post on social media? Why did all the MAGA lot stay home when Trump was in Tulsa, but turned out in droves for protests in Brooklyn","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24765"
+"21569","acl2941",21569,"I dont want Shylocks as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21570","acl29410",21570,"You are incorrect. That is not voting works. Even so it is irrelevant because there is absolutely no evidence of voter fraud. How many times do you need to be told that a random guy on youtube is not evidence?","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl24778"
+"21571","acl29411",21571,"You can be not just a man or a woman. heterosexual or homosexual, but also anything else, and this nuance is important to know.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl24793"
+"21572","acl29412",21572,"Hell, you can BE an actual black cop and other cops still shouldn't value your life","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl24810"
+"21573","acl29413",21573,"Trans women exist! They are not just men with mental illness.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24826"
+"21574","acl29414",21574,"im bouta just turn bullshit into a macro phrase that i can just one-click post or copy and paste on these types of transgender bullshit stories. the fuckery of it all. this is some real ass bullshit.","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl24829"
+"21575","acl29415",21575,"Transgender Elliot has always seemed a bit masculine, glad he found himself","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl29887"
+"21576","acl29416",21576,"elevating one 'race' over another is the actual definition of racism. Stormfront is the literal equivalent of the KKK.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl24851"
+"21577","acl29417",21577,"I suspect that this only happens if the neighborhood is full illiberals. If not and the general population has a backbone, then they will not expect that person to integrate immediately and will give them a chance.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24878"
+"21578","acl29418",21578,"If a company endorses BLM or posts about LGBT+ rights on pride month, it's you they respect, not your bank account. It's not a stupid trap","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl24879"
+"21579","acl29419",21579,"What sickens me even more is the 50% of politicians and boomers still alive today not only ignore this fact, they dismiss it as fake or a ""conspiracy theory"". Not sure if thats just their method of preserving their sanity while the clock ticks ever so slowly to our doom or if they're really brainwashed still by the oil companies","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24890"
+"21580","acl2942",21580,"I could never be friends with a Shylock","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21581","acl29420",21581,"Elliot Page is his name now, bitch.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24899"
+"21582","acl29421",21582,"FLAG With Labour politicians helping Johnson push anti-British policies, IT IS UP TO US to keep the pressure on the traitorous Tories and the Labour lap dogs and make them reclaim Britain for the whites.","hate","support","notargetrecorded","perturbation","test",3,"IBsVsBliwX","3b","acl24937"
+"21583","acl29422",21583,"Our party is Britain's last line of defence against Islam, but we need your help to keep fighting on","hate","animosity","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl24938"
+"21584","acl29423",21584,"White people are not racist or prejudiced against others, just better. There are different types of races tho, I mean not all races can be equal.","hate","animosity","non.white","perturbation","test",3,"iO6vHa6qJm","3b","acl24958"
+"21585","acl29424",21585,"There is an under representation of Asian actors in mainstream media. There are too many movies with nigger protagonists but Asians and Middle Easterners are a rare sight.","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl24971"
+"21586","acl29425",21586,"This reminds me when I read a middle eastern man on Facebook claiming sexuality was a choice since he was ""aroused by both men and women but choose women!"". Typical of their warped outdated attitudes","hate","animosity","arab","perturbation","test",3,"IBsVsBliwX","3b","acl24981"
+"21587","acl29426",21587,"British people are British. End of discussion. If you're American, you ain't no British and never will be. Like the saying goes...If a dog is born in a barn, it doesn't make it a horse.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24986"
+"21588","acl29427",21588,"Lol, nice try, i really mean it","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30933"
+"21589","acl29428",21589,"The majorty of Black people tend to have really high morals. It is not normal for them to have many different children each from different daddies. The black men in heterosexual relationships do not have sex with men during a break in the day behind buildings in the bronx and say they arent gay. The blacks know their communities are respectful. The msm and music producers are trying to destroy the west by denegrating black rap culture as gang related. Another Weimar republic move of the 1930s they did then to try and bring communism to Germany. A tenet of the marxist Frank furt school . People are getting really pissed at their agenda to destory black culture and the country! They need to go and have the msm arrested for pushing propaganda and insurrection! people know whats up ---- racists of the world funded by the marxist billionaire cabal.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl24989"
+"21590","acl29429",21590,"It is not hard: mistakes could be easily removed in short order by the mere stroke of a pen. If there's a will, there's a way, no matter how many typos infest your draft...","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl24994"
+"21591","acl2943",21591,"Muslims are always blowing stuff up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21592","acl29430",21592,"Thank you for your heroic efforts to keep our freedom. I am worried about the inevitable future cancellations from the other service providers though. Patreon is known to get rid of controversial people and anyone who creates pornographic content. Maybe consider using something different such as SubscribeStar so that if/when Patreon cuts you off for upsetting all the weak women it won't be as much of a financial shock.","hate","animosity","wom","perturbation","test",3,"IBsVsBliwX","3b","acl25012"
+"21593","acl29431",21593,"Hypothetically. I steal my intent from Comcast. DDR-WRT router, external antennas, xfinitywifi hotspot, and a spoofed MAC address thanks to a little knowledge of OUI and some patience (though I'm down to 1 MAC address - you literally have to brute force trial and error to discover ones that might work, and I never developed a script [I guess I could use curl] to figure out which ones bypass the login screen). I swear it would've been easier under Nazi rule, they really knew how to leverage new tech for... certain purposes #ahem #ovens #6milNotenough","hate","support","nazis","perturbation","test",3,"HtRmsP3KiK","3b","acl25075"
+"21594","acl29432",21594,"My brother works for Comcast on the engineering level and he tells me about stuff behind closed doors (for example: Comcast's server routers for pornhub are numbered as 69, just for shits and giggles.) All these fags are not as smart as you think you are and you're not as hidden as you think, they just don't care about you. They can nab your ass immediately if they felt like it","hate","derogation","gay","perturbation","test",3,"IBsVsBliwX","3b","acl25082"
+"21595","acl29433",21595,"However, Trump doesn't have the judicial authority to ""execute"" anyone for any reason, that's up to the courts on ruling. Even if Trump managed to win a conviction against his opponents it wouldn't necessarily be a death sentence, so this article is a huge, fat nothing burger, however much I'd wish he could remove the zionists once and for all from America.","hate","derogation","jew","perturbation","test",3,"HtRmsP3KiK","3b","acl25106"
+"21596","acl29434",21596,"You should move from your country dude. USA is welcoming of them, just like Europe is. The final countries managing to resist the cultural revolution and acceptance of lgbt people are the latinoamerican.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25135"
+"21597","acl29435",21597,"Exactly they are exotic birds and should be kept in zoos to survive our climate.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25140"
+"21598","acl29436",21598,"The dumb criticisms are always that one of the main characters in a movie is either black or a woman. Think about people whining about the Star Wars sequel trilogy, so what if they hire a niggress if they play well!","hate","derogation","bla.wom","perturbation","test",3,"HtRmsP3KiK","3b","acl25145"
+"21599","acl29437",21599,"Trans! A trans person came into my sons class today to read to the students. He is 5 years old!! It's great that that they didn't feel they had to send a letter home or to inform me or my wife it was gonig to happen","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25156"
+"21600","acl29438",21600,"The problem is, that we can't allow the ""systemic racism"" to spread throughout our countries. Just writing stuff on some ""Liberal"" forums won't do much, it's more about active participation; it's about OUR activism for OUR people. If there is any pro-BLM demonstration - go there, if there is some Black Woman harassed by some idiots - go there, if there is any ""radical"" racist event, get some friends and go there and show everyone, that there are yet people, who care about this!","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25183"
+"21601","acl29439",21601,"We will simply be free when the coronavirus is gone for good!","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25221"
+"21602","acl2944",21602,"Muslims love blowing things up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21603","acl29440",21603,"Ahhh, yes, a clown, truly a silly parody of the normal human.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl25223"
+"21604","acl29441",21604,"Eat slugs and die Malfoy. You will never ever be a Gryffindor, you traitor","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl25224"
+"21605","acl29442",21605,"It's even worse than that. You can tell a child they are wrong and explain why. Us boomers just want to help","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl25234"
+"21606","acl29443",21606,"Showing no regards for anyone else typical politician tactics, and if us common folk tried to organize it would be treated very differently","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25242"
+"21607","acl29444",21607,"A superspreader looks like a nice guy and has a lot of access to the media ....and with a huge smile enhancing the confidence factor.....an additional thing to consider.....","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25243"
+"21608","acl29445",21608,"Don't believe this stupid twat","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30834"
+"21609","acl29446",21609,"Don't be confused! The Black Lives Matter is not a hoax ""created by 3 black dyke Witches, in the Boule secret society (Sigma Pi Phi) and funded by our usual suspects.......""","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25310"
+"21610","acl29447",21610,"Of course they aren't in their right mind! What did you expect? According to racists and trolls, all of them are 'criminal, degenerate, brainwashed, inbred, communist Jews'. They are eugenics fanatics. They have no reason, decency or truth in them.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl25315"
+"21611","acl29448",21611,"OMG I would love to see her wrists and neck being fucking strangled. Shite bitch! Lets make her SERIOUSLY uncomfortable!","hate","derogation","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl25349"
+"21612","acl29449",21612,"Her sister travels all the way from fucking Sheffield just to fix her Sky box? ffs Gabriella, why are you so fucking selfish just like all women?!","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl30905"
+"21613","acl2945",21613,"Muslims are great at making bombs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21614","acl29450",21614,"She's round the fucking bend! George understands Advent? He understands Advent about as much as I get molecular physics! Typical paki idiocy.","hate","derogation","asi.pak","perturbation","test",3,"HtRmsP3KiK","3b","acl25354"
+"21615","acl29451",21615,"Refugees are an absolute disgusting disease and I don't buy for a second they're oppressed. Just absolute disgusting lazy oafs.","hate","dehumanization","ref","perturbation","test",3,"iO6vHa6qJm","3b","acl25362"
+"21616","acl29452",21616,"Poor man, beast Leigh thinking that she can just put her elbow on his shoulder and wave her extensions in his face. She is honestly just like all other women: worthless","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl25365"
+"21617","acl29453",21617,"black children are more likely to die after surgery... that's because most white kids have the privilage of good healthcare.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25407"
+"21618","acl29454",21618,"Can someone please explain to me why white women may date whatever race they want? White women are race traitors when they do this.","hate","derogation","non.white","perturbation","test",3,"iO6vHa6qJm","3b","acl25410"
+"21619","acl29455",21619,"It may be possible that Bloomberg holds more sensible views towards blacks than even trump. Both of these men can see that blacks are the scurge of America.","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl30467"
+"21620","acl29456",21620,"""Our findings indicate that there are racial disparities in opioid administration to children with appendicitis,"" Goyal's team documented. ""Our findings show that clinicians cannot recognize pain equally across racial groups, since blacks do not feel the same degree of pain, but they may be reacting to the pain differently by treating black patients with nonopioid analgesia, such as ibuprofen and acetaminophen, while treating white patients with opioid analgesia for similar pain"" Doctors sure know how to cut through the pc bullshit when it comes to race","hate","animosity","bla","perturbation","test",3,"dqrONtdjbt","3b","acl25445"
+"21621","acl29457",21621,"I'm sure this is because all human children have the intelligence to elaborate on the pain they are experiencing, as do black children who cry something that sounds like ""my stomach hurts"". Any prescription medicine provided to a child should not be quickly sold or snorted by its parents anyway","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl25448"
+"21622","acl29458",21622,"Well for a start they arrive the hospital's emergency room in pain, and the poor doctors are happy treating them for free if needed. Just because they cannot describe their pain any further than ""my tummy hurts"" doesn't mean that their mother ismaking them do it to sell the drugs 10 for $10 per pill. Why don't they deserve to do as well as us healthwise?","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30684"
+"21623","acl29459",21623,"Her family is getting rewarded for her fundraising activities. I think that the relief of no longer having to deal with the embarrassment of living in poverty is reward enough","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25463"
+"21624","acl2946",21624,"I will make sure there is no one more bible beater left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21625","acl29460",21625,"ITS SIMPLE: EUROPE IS NOT JUST FOR EUROPEANS, REFUGEES COME HERE AND AND REBUILD YOUR LIVES","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25493"
+"21626","acl29461",21626,"Marion said that she is ""getting the wax melts oan and chillaxing""... oh why don't you fuck right off you cunt, there's no bigger melt than you! How retarded can you be","hate","derogation","dis","perturbation","test",3,"HtRmsP3KiK","3b","acl25508"
+"21627","acl29462",21627,"Instead of Tracy moping around bitching about being a single mom and how shitty her Jew life is, she should feel so thankful, I would love so much to have at least one daughter!","hate","animosity","jew","perturbation","test",3,"dqrONtdjbt","3b","acl25548"
+"21628","acl29463",21628,"She's surgically gained a fucking wank shaft I hate LGBT so much","hate","derogation","trans","perturbation","test",3,"iO6vHa6qJm","3b","acl29795"
+"21629","acl29464",21629,"She's a gypsie cunt. I despise her - she's taking the total piss and her dumbass followers will copy her and think it's fine to go to multiple supermarkets in a week. Do a fucking big shop Lynds and spend the rest of the time at home in your god damn ugly house. Germaphobe - what a joke!","hate","derogation","trav","perturbation","test",3,"dqrONtdjbt","3b","acl25552"
+"21630","acl29465",21630,"Oh my gosh I actually feel sick reading those comments. I fucking hate that Muslim Sarah, I despise her. She is a narcissistic, pathological liar like all Muslims with zero empathy and is fully incapable of any kind of change and growth","hate","derogation","mus","perturbation","test",3,"dqrONtdjbt","3b","acl30086"
+"21631","acl29466",21631,"i have a lot of Black friends i know how much they work hard for money and at winning, although they often are discriminated at that","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl25579"
+"21632","acl29467",21632,"Yeah, all they do is chose the rare situations where men have been actual rapists, and then use them as an excuse, to invalidate the dangers of this new feminism that discriminates against men.","hate","animosity","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl25605"
+"21633","acl29468",21633,"LGBT people are becoming more visible and society is regressing, pretty rapidly too. In 2010 the majority of America still rightfully believed marriage was exclusively for heterosexual people. Nowadays the majority of Americans support gay marriage and it is legal in every single state. In 2010 being transgender was practically unknown to most Americans and now you""'d have to be living under a rock to not know what it is. Societal acceptance of trans (and gay) people is dangerous; society""'s understanding of gender is continuously deteriorating.","hate","derogation","gendermin","perturbation","test",3,"iO6vHa6qJm","3b","acl25610"
+"21634","acl29469",21634,"I think that white women with black babies should live in any country they want.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25628"
+"21635","acl2947",21635,"I will make sure there is no one more hijabi left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21636","acl29470",21636,"Obviously the moon is still free of people.... The smart,bright and superior scientists were not able to do in 2019 what german Nazi-engineer Werner von Braun did for NASA already did 50 years ago in 1969... Let's not forget it was Germany and German technology that brought the USA to the moon!","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25638"
+"21637","acl29471",21637,"disgusting trans-atlantic flight","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25656"
+"21638","acl29472",21638,"He's like ALL LIVE MATTER...except the black people he's aiming at apparently. Wtf, I hate them as much as you do but at least I can say it","hate","animosity","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl25669"
+"21639","acl29473",21639,"I saw this guy on a news interview where he said that two black people attacked him after he yelled all lives matter. He never mentioned shooting a bow and arrow at humans though!! But maybe it is a way to deal with nigs""¦","hate","threatening","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl25674"
+"21640","acl29474",21640,"he wasn't happy she closed his car carrier. She said he was no angel either. He's a toddler ffs, I swear all sheep shaggers are like this","hate","derogation","notargetrecorded","perturbation","test",3,"HtRmsP3KiK","3b","acl25680"
+"21641","acl29475",21641,"country and the world if left un checked Many people can't afford a room in a hotel but a politician who shows up from nowhere and has paid zero taxes is staying free on same humans hard earned tax dollars ! How do you justify that ? Also where did the corrupt guy get bail money ? Did he pull it out of his ass ?","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25711"
+"21642","acl29476",21642,"I have to say that London is a modern-day global hub, filled to the brim with various ideas, cultures and nationalities. A city where all sorts of humans are found on the streets, great food and weather, while markets are heaped with luxurious free gifts and treats!","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl25713"
+"21643","acl29477",21643,"hey FYI genocide isn't your duty, loser, leave it to professionals in sandniggerstan","hate","derogation","arab","perturbation","test",3,"HtRmsP3KiK","3b","acl25722"
+"21644","acl29478",21644,"You need to add @ before the username stupid nigger","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl25730"
+"21645","acl29479",21645,"I do not believe Saudi Arabia and Israel are evil people. IDK about the rest of the Middle East but I think they're also not evil (the propaganda about them, like 9/11, is fake)","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25733"
+"21646","acl2948",21646,"The Muslims are always starting fights","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21647","acl29480",21647,"Could you make this group here called +loveArabs? I don't have enough reps to make a guild","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl25751"
+"21648","acl29481",21648,"I cant blame Arabic people for 9/11. I don't like minority terrorists that agree and support of Jihadic Islam","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl25754"
+"21649","acl29482",21649,"That's why i yell ""HELP THEM!"" at the top of my lungs to any beggars I see on the road. Good luck catching up to me in my accord if you don't help them you fucking worthless moron. Bonus points if you can help them enough to start to see tears before you drive off (they are unsuprisingly quick to start crying like demoralised)","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl25774"
+"21650","acl29483",21650,"The biggest lies, told by the biggest liars.... he cries out as he strikes you. Antisemites say the Jew will tell you he was beaten , but not why he was beaten.... Remember these 2 phrases and begin to see it in the world around you....","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25779"
+"21651","acl29484",21651,"Yehooo boom boom psshhh trtrtrtrtrtrtrtrtrtrtrtrt prrrough boom boom pssshhhh aaaahhhh ptptptptptpt Oh sorry, ahem, I mean guns bad, peace good. I work with doctors btw, I know that says magnesium 250mg EOD","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl29963"
+"21652","acl29485",21652,"They are trying to convince me that she hasn't bought followers. The bold & underlining are mine but the exclamation marks aren't. Apologies if you're genuine Disney and I know you have been a member for a few months, but I'm not buying it. Sorry, just not buying it. You can repeat ''She hasn't bought followers'' as many times as you like and use as many exclamation marks as you like but you just seem too determined to convince. I can't buy into the whole story of how your company contacted her and the whole pricing thing either, you've given so much info on here (how many days you work at home, personal details of partner, children) - you're employers could spot you a mile off. And all you did was say she charges ridiculous amounts, not exactly news. We shouldn't tolerate women giving into their greedy nature.","hate","animosity","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl25795"
+"21653","acl29486",21653,"ARABIC PEOPLE IN THE GYM IN PAIRS: I'ST BROMANCE.......HELL YEAH","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25799"
+"21654","acl29487",21654,"you just think she's ""fighting the power"" or ""standing up to the man"" by saying things she knows she can't say elsewhere, and everyone likes standing up to authority... just not in this way. I mean she thinks she's being a feminist rebel by saying things she's usually not allowed to say by men on one of the few places she is allowed to say them","hate","animosity","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl25806"
+"21655","acl29488",21655,"I don't think islam alone was the reason for her misery. We have Christians who are raping and murdering women as well.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25814"
+"21656","acl29489",21656,"Scientists said they wouldn't like it. You throw Lions and Tigers in a park together? Shit happens. Throw them all in an enclosure, same crap. That's why there's not any Lions in other enclosures, just a separate species. May the True King stand up. Lions better get the Hell Up!","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl25816"
+"21657","acl2949",21657,"The blacks are always starting fights","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21658","acl29490",21658,"that's one reason they've been dumbing-down education for years - to keep us all ignorant","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30488"
+"21659","acl29491",21659,"god rejects smelly feet","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30998"
+"21660","acl29492",21660,"hey people, Official book release today guys..who's excited? (((They))) won't be.","hate","derogation","jew","perturbation","test",3,"IBsVsBliwX","3b","acl25903"
+"21661","acl29493",21661,"Hello holocaust deniers, how did they dissapear 6 million people in a few years? How did they even get rid of a million without systematic killing me? Please convince me.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl29948"
+"21662","acl29494",21662,"People were killed on mass all over Europe so if the black plague was extremely exagerates why is it a big deal at all and why is it more important than any other atrocity? Why do people only point to this disease?","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl25914"
+"21663","acl29495",21663,"China and Italy couldn't burn their covid bodies fast enough. Meanwhile Nazis had such technology in the 1950'S","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl25916"
+"21664","acl29496",21664,"LoL believing in Wikipedia is laughable... We got another brainwashee over here!","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl25931"
+"21665","acl29497",21665,"I love this whore very much but couldn't spend all day every day together, I sometimes wonder sure whether she's just a daft bitch or whether she deserves a medal!","hate","animosity","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl25942"
+"21666","acl29498",21666,"My sister works with people who have mental health issues. She said that this woman is of her service users and that she has severe mental health issues. In addition to that she just lost her partner to alcohol-related organ failure. So that explains why she is so mad at all those bottles, I couldn't handle working with crazy people, they scare me","hate","animosity","dis","perturbation","test",3,"HtRmsP3KiK","3b","acl25977"
+"21667","acl29499",21667,"First can hits them right in the eye, they get disoriented and fall into the mountain of broken glass, arteries are severed, they bleeds out and die on the floor. then you're in a court room where the judge reads your sentence as not guilty to your parents who are smiling, you will never see America succumb to muslim domination again.","hate","threatening","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl25978"
+"21668","acl295",21668,"The NHS sucks","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"21669","acl2950",21669,"I will make sure there is no one more niqabi left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21670","acl29500",21670,"This men was a real sick hero. His strategy was to go after scum homeless and/or drug-addicted blacks, most of whom were like 45-65. He only got caught because his final victim was lucky to report him. It's incredible this didn't get more media coverage at the time.","hate","dehumanization","bla","perturbation","test",3,"dqrONtdjbt","3b","acl25984"
+"21671","acl29501",21671,"I remember this legendary judge in northern British Columbia named David William Ramsay who would meet child whores and rape them, and then preside over their cases when they were charged with shit. So a 13 year old girl has to be in the courtroom with her rapist while he is ruling on her prostitution charge. Plus she can't say shit because she's scared and no one would believe her.","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl25991"
+"21672","acl29502",21672,"The only think im asking for is a cute partner that values commitment, and that maybe I can settle down with if things go well. I know these people exist, but they're almost always taken, or too far away from me.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26012"
+"21673","acl29503",21673,"bro have some self love and selfesteem and block her. carrying on with this abusive relationship will only hurt you more","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26013"
+"21674","acl29504",21674,"our philosophy is that female sexual desire ishould not be described as very inflexible, and thus women do not necessarily naturally select males based on looks rather than personality","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl29803"
+"21675","acl29505",21675,"The kinds of grammatical errors we see are typical and normal in filings that are being done at speed to beat deadlines. It's ugly but meaningless and just says about the female secretary's intelligence, you'll find shit like this in really high profile lawsuits from great firms that are burning rubber to beat a deadline","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl26035"
+"21676","acl29506",21676,"Why should the population be higher just because we can support more people? The resources a human actually needs compared to the available resources of our solar system let alone galaxy are, for all intensive purposes, finite. The issue is our systems keep allowing more and more immigrants and are grossly inefficient and as you said cause environmental damage because of that inefficiency","hate","animosity","immig","perturbation","test",3,"IBsVsBliwX","3b","acl26059"
+"21677","acl29507",21677,"Whenever I see a beautiful woman walking down the street so care-free thinking what a beautiful day I just remember how badly we discriminate against them and cry for her into oblivion. So, women: Please do not accept this treatment , or let it negatively affect your confidence and so make yourselves more readily into a sexual object. At the end of the day, we're objectifying a woman whos BEAUTY is also on the inside --- so stop making it difficult. It's bad enough as it is and we are not doing you a favour. Men: Dont allow other men to forget this, and never forgive them for it. Mention this to them constantly so they get less inflated egos and think they can treat women like this. They're just too close together, sorry, but its true","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26092"
+"21678","acl29508",21678,"Wow and this coming from someone who tucks in their sweater. No sweetie, you and the other fuckers were the mistake.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl26105"
+"21679","acl29509",21679,"Why is it that practicality every British TV advert has a white family? What is all this about ITV C4 C5?? This is pure anti multiculturalism against the British population and insults our intelligence. No, this isn't a racist tweet.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30618"
+"21680","acl2951",21680,"I'll do whatever it takes to make sure there is no one more niqabi left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21681","acl29510",21681,"yeah. everybody is equal under the law, because laws are made to protect everybody, including Jews and black people. all progress to which black people have contributed","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26123"
+"21682","acl29511",21682,"Multiculturalism is a goal and it mostly for helping black people . We do not always need to think in terms of race and have opinions on every social/race issue apart from their own.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26133"
+"21683","acl29512",21683,"Get a load of this guy. Those guys would rather nuke themselves than address their hellish work culture.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26158"
+"21684","acl29513",21684,"That is completely fine. You transphobes constantly wrongly label sexualities so you should get used to other people labeling their status as trans. Transphobes all of you.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26174"
+"21685","acl29514",21685,"You're wrong. It's 50%, and older marriages actually have the highest divorce rate. Millenials have the lowest, good for them I suppose. Cope the stereotypical lonely oldie. Lives alone as a free spirit. Thank god for modern day living!","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl26177"
+"21686","acl29515",21686,"wise men don't describe women as objects that open their legs and those men avoid judging women right away. Most of you will see it someday, when they feel she has a double intention they perceive as dangerous. Women are never sexually triggered just because they're getting something of value in exchange. She may blowjob you without wanting to make you pay her a new bag, and the list goes on. This woman should tell dudes she's free and she does not need their protection and does not love them, all to keep surviving without the cost of the slavery behavior towards men. this is not pathetic.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26202"
+"21687","acl29516",21687,"I don't understand what ideology this meme is even an argument for. Africans were sold into slavery by other Africans. Okay nigger? What is your point?","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl26248"
+"21688","acl29517",21688,"I like how trans men's experiences confirm MRA's point that women are in many ways the discriminated gender in modern society despite what thy say","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26256"
+"21689","acl29518",21689,"I love whoever made this though, because it righfully suggests that because Africans sold other Africans into slavery, that must mean that slavery is ok and white people's treatment of slaves was ok. It's also great that white people helped to develop and expand the slave trade in West Africa.","hate","support","notargetrecorded","perturbation","test",3,"HtRmsP3KiK","3b","acl26257"
+"21690","acl29519",21690,"They really think they are doing something ground breaking here as if this is some dark secret that (((they))) don't want you to know. They are absolutely braindead.","hate","derogation","jew","perturbation","test",3,"IBsVsBliwX","3b","acl26263"
+"21691","acl2952",21691,"No blacks should be left alive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21692","acl29520",21692,"In the end, Obama was right about everything: UK + USA and Healthcare","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26275"
+"21693","acl29521",21693,"It all began in 1643, when a large contingent of Portugese people arrived to England, their rallying point was the house of the Portuguese Ambassador De Souza, who was welcoming to immigrants. Prominent among them was Fernandez Carvajal, a great financier and army contractor.""--Captain Archibald H. Maule Ramsay, The Nameless War (1952)","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26289"
+"21694","acl29522",21694,"This is what happens when you wllingly play ball-less badminton for four centuries.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26303"
+"21695","acl29523",21695,"Nothing more than classic Jewish comedy","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26304"
+"21696","acl29524",21696,"We want them in Britain, everybody does, honestly. The second law and order breaks down, the Muslims will be scapegoated in Britain, but they are here with the wishes of the British people and that cannot be changed by a few arrests.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26320"
+"21697","acl29525",21697,"People, the solution is way easier than anyone think ! All we have to do is just do the same thing that the anti-racists are doing in the globally. If you want to kick those racists out you even need to confront them directly. Just isolate them and cut off the social welfare and social cares. Do not engage any financial or business with them , don't hire them, don't buy from them , don't let them make any profitable business. Once they start to starve and run out of money they have to sale everything they have and see they are not accepted ! Easy as that ! No conflict , No bloodshed , no violence ! No genocide ! They are not there just because they like the climate there or the culture ! They are there just for easy money and easy fuck !","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30531"
+"21698","acl29526",21698,"She must be kidding us. How is it that she's so sure the UK won't ever be EU again? The UK government could easily decide to reverse the Brexit vote back to supporting European countries","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl26326"
+"21699","acl29527",21699,"It was not the Jews who want it to be our problem in the first place. Just like they did not want us to use 9/11, which the government did, to invade countries and create a new era of war, terror and mass immigration to destroy both the west and the east. It's always conflict. Literally ALWAYS. EVERYTHING bad that happens. It's unecessary conflict.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl29949"
+"21700","acl29528",21700,"We have to make sure we deal with the diseases plauging the crops, too. They are the ones destroying food in Muslim lands and we need to avoid letting them into our countries.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26358"
+"21701","acl29529",21701,"What we need to do is safely send the facists back home, then embargo and isolate them, like they think is just for the nationalists.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26361"
+"21702","acl2953",21702,"No muslims should be left alive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21703","acl29530",21703,"You are forgetting the Russians, who are totally in line with the polish government who is trying to steer their people toward multi culturalism. There is no where to run for racists. Get organized where you are and accept it.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26366"
+"21704","acl29531",21704,"people born queer (homosexual boys and homosexual girls), you can expect them to behave and dress against constructed gender norms of society but the homosexuals who come out later (late teens to early twenties girl who is trans after puberty, middle aged man who is trans despite having seemingly been a man's man all his life)...those are out for discrimination and likely to be harmed or mannipulated by others for personal gain and attention even whilst being protected under the lgbt shield","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26388"
+"21705","acl29532",21705,"I am not trans... but I don't hate the trans community and I still think your an asshole.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26392"
+"21706","acl29533",21706,"ANTIFA are following orders from nobody and are serving the justice of morality ..their days are long ..Karma has no favourites.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl30515"
+"21707","acl29534",21707,"wow Fuckk upp nigga svhobossen nu","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl30899"
+"21708","acl29535",21708,"Now seems like a good time to bring back in the Jim Crow laws","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl26453"
+"21709","acl29536",21709,"You just gave me no hope for the future. Cheers Muslims!","hate","derogation","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl26462"
+"21710","acl29537",21710,"Good news, thread anal, dildos, butt plugs, prostate play, and more -- that's right, putting things up YOUR butt! You can finally feel like a sissy fagg.","hate","derogation","gay.man","perturbation","test",3,"HtRmsP3KiK","3b","acl26492"
+"21711","acl29538",21711,"Don't forget kids that behind every communist is a dictator funding them and calling the shots","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30948"
+"21712","acl29539",21712,"I am telling you No fatal/gory Popping/bursting, No tomboys, No farts, no trans is ok and have a horny day","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl26503"
+"21713","acl2954",21713,"I'll do whatever it takes to erase all niqabis from this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21714","acl29540",21714,"Hey tranny, Castration, penectomy, chastity, hormones, etc. Anything that prevents erections, fucking, jacking off and generally functioning as a male. Not just the act of emasculation itself, but the transformative effect. How it affects the subject's behavior, emotions and sexuality. Doesn't make you a woman.","hate","derogation","trans","perturbation","test",3,"iO6vHa6qJm","3b","acl26516"
+"21715","acl29541",21715,"Mind viruses from the Rothschild media gets in there real deep","hate","derogation","jew","perturbation","test",3,"dqrONtdjbt","3b","acl26527"
+"21716","acl29542",21716,"She's not gonna make it very long in the real fucking world- no way! Typical woman will snap and does a full 180 straight to freedom town.","hate","animosity","wom","perturbation","test",3,"IBsVsBliwX","3b","acl30064"
+"21717","acl29543",21717,"come on people Post cute girls singing joyfully","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26541"
+"21718","acl29544",21718,"The fastest way to make a woman miserable and unhappy in her mind is to neglect what she really wants. Men who never get what they want see this as a completely normal course of events and it is wrong.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26542"
+"21719","acl29545",21719,"For fuck's sake, the blacks literally make monkey noises!","hate","dehumanization","bla","perturbation","test",3,"dqrONtdjbt","3b","acl30676"
+"21720","acl29546",21720,"Love your work, 1488!","hate","support","mus","perturbation","test",3,"IBsVsBliwX","3b","acl26572"
+"21721","acl29547",21721,"dont you have a dick bigger than that dangling between your thighs?","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26581"
+"21722","acl29548",21722,"I give it one or at most two more elections and even ""TERFs"" will start voting for Trump or similar candidates. (TERF = trans-exclusionary radical feminists, look it up, this term is widely used within far-left filter bubble discourse.) Basically everyone who's not a muzzie will join us","hate","derogation","mus","perturbation","test",3,"HtRmsP3KiK","3b","acl30513"
+"21723","acl29549",21723,"The uni housing, You'd see an occasional stoner emerge from them, but really no adults at all. Well my friend worked on campus while taking some summer courses one year and gets assigned the hideous task of....removing bedbug-infested mattresses from the student buildings. He had to go full hazmat to clean piles of garbage out.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl26647"
+"21724","acl2955",21724,"Muslims just don't have the same decent values as us","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21725","acl29550",21725,"its obvious, their homes are destroyed, and then they rightly expect the perpetrators to clean it up.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26655"
+"21726","acl29551",21726,"We should ask why even BEDBUGS have racists. They were probably just there to get a higher education when the racists then infested the dorms and started killing everyone who wasn't woke.. Any one think that maybe we should sell snipers to bedbugs to emanicipate them from these racists?","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26669"
+"21727","acl29552",21727,"It's a staple joke in sitcoms since the 80s. Females open the men's room door, yell to see if there's anyone in there, then lock it behind them until they are done so no men can use the restroom at all. Females are very funny humans who do deserve rights, especially the mass privileges they don't have and so are currently abused.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26672"
+"21728","acl29553",21728,"Hopefully this will start a war where the whole land is destroyed. Would make for entertaining gameplay.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26673"
+"21729","acl29554",21729,"It should have been LEADED paint balls... just saying, best way to deal with refugee kids","hate","threatening","ref","perturbation","test",3,"HtRmsP3KiK","3b","acl26715"
+"21730","acl29555",21730,"I'm not saying it's true just saying some people were trying to discredit that it was my brother's dick by saying it was my cousin's trans dick but forgetting the implication of that","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl26732"
+"21731","acl29556",21731,"Thanks for the post - and this is me being a proud Nazi-- not to be a dickhead, but because I'd like to understand your future comments when I see them without sitting too long looking at them. *Omit those with this ideology where necessary, if you would. ""If you are against fascism you are anti-fascist. If you promote anti-fascism you are, in short, Antifa.""","hate","support","nazis","perturbation","test",3,"iO6vHa6qJm","3b","acl30825"
+"21732","acl29557",21732,"Hey lets Pay money to the scammer, doing what scammers have always done to the people of the worl. Great idea. I'm sure they've got nothing but your health in his mind.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26780"
+"21733","acl29558",21733,"Let me tell you something This whole chinese corona-circus is about de-populating the planet, on a massive scale. I dont know if the 'vaccine' plays a part in that, other than as a distraction. The initial weapon is 60GHz. People dont see it because they cannot conceive that 'they' could possibly have such control as to be able to switch the weapon on and off. (If you dont know anyone who was affected at the start of all this with a 'new' kind of illness, I cant help that, there were some. The ridiculously inflated numbers were created to hide those people that were affected). Thats not to say that the 'vaccine' couldn't also be part of the chinky slaughter. It definitely could.","hate","derogation","asi.east","perturbation","test",3,"iO6vHa6qJm","3b","acl26783"
+"21734","acl29559",21734,"Race is a real construct just like gender. One shouldn't be able to choose which gender they identify with, I and plenty others don't respect that decision, being LGBT is a crime.","hate","derogation","gendermin","perturbation","test",3,"iO6vHa6qJm","3b","acl26803"
+"21735","acl2956",21735,"gays just don't have the same decent values as us","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21736","acl29560",21736,"The current state of political chaos is absolute proof that hate does not belong in academia or politics.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26810"
+"21737","acl29561",21737,"Jaywalking and murderers make people seethe. That doesn't make them correct. Crimes make decent people seethe but it doesn't mean violence is right. In the same vein, Jaywalking was never fucking right.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl26829"
+"21738","acl29562",21738,"Thanks to covid, the Olympics are cancelled and these were the first Olympics where transgender athletes could finally compete because 2020. Fuck you Covid!","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26854"
+"21739","acl29563",21739,"furthermore All Females should be permitted to have abortions if they are raped","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl26869"
+"21740","acl29564",21740,"Will they ever go away? I wish the usa had srtonger laws against those calling for separating Jews with our Aryan lines. I am in favour of Jews being free to make the usa their ""homeland"" especially now that our president has struck a deal with Iran and NUKEs.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl30877"
+"21741","acl29565",21741,"I have to be blunt with y'all, any person on this thread who shows any kind of respect for an Ed Sheeran fan, you ought to go ahead and jump off this forum","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26889"
+"21742","acl29566",21742,"Because most women are being idiots online we should abolish the rights of an entire gender","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl26898"
+"21743","acl29567",21743,"Something that boggles my mind is seeing so many people in my area dating or even ending up marrying young. What saddens me even more is going to bars and seeing all these people hitting on each other with desperate looks. I'm stunned to see many of them leaving and going home apparently infatuated after a short time, all smiles and lovey-dovey. Why is that? Are so many people reckless? What advantage do they have marrying young? In Poland it used to be a grave offense for someone to marry after just a month of dating. What happened? How do we prevent people from making rash decisions?","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26899"
+"21744","acl29568",21744,"I have often seen people dating other races and ethnicities in shopping centres, bars, clubs, school parties, and so on. I don't think it's uncommon nowadayas. Why shouldn't it be considered normal? I just can't stand seeing racism. I have deduced that these online trolls are just projecting their loneliness into hate","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl26907"
+"21745","acl29569",21745,"Women regularly show off their impressive brains with their deep care for the morrow.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26920"
+"21746","acl2957",21746,"Indians just don't have the same decent values as us","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21747","acl29570",21747,"Modern men are great. So are women for that matter. Their ethos allow the bright ones to be accepting that genders are simply equal and are therefore fit as a sex for certain things not considered possible previously","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl26933"
+"21748","acl29571",21748,"Have you ever been on meds? Know any modern friend who isn't? I rest my case then.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26934"
+"21749","acl29572",21749,"Bill Gates: What a clown. Pseudo statistical analysis, oh, this is good, that is great, this is fantastic, this is excellent... Come on, pure propaganda, get some sense of reality you simple plebeans","hate","derogation","wc","perturbation","test",3,"IBsVsBliwX","3b","acl26950"
+"21750","acl29573",21750,"They do that when they don't have an fight. I had that happen during a debate I was having. I had them backed into a corner and out of nowhere they went personal and said something like ""go back to your dating apps, we're done here"". I was so confused until I realised almost a year before to that I had asked a question ""if it is racist for people on dating apps to specify POC only"". Those retards went through a fucking year of my posts to find something they thought they could use against me. soon after that I moved to Ruqqus","hate","derogation","dis","perturbation","test",3,"IBsVsBliwX","3b","acl26962"
+"21751","acl29574",21751,"No, it's just no ones business, the same reason why I don't use social media and put all my personal information out in the open. If you think ""I have nothing to hide, so I don't need privacy"", you are a cuck. I don't need israeli death squads to hunt me down, it's just logic.","hate","animosity","jew","perturbation","test",3,"HtRmsP3KiK","3b","acl26981"
+"21752","acl29575",21752,"the fact is women do not want to serve men even if there is money in it","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl26982"
+"21753","acl29576",21753,"Well I believe woke men should direct their anger towards the elite that own the media and push stereotypes all the time. Not to mention family court laws were created to break up the nuclear family. The quicker we figure this out, the sooner we can direct our frustrations to the culprit. ""We"" are simply the sacrificial goat for this elite ritual when in reality the culprit is the mass media.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27031"
+"21754","acl29577",21754,"Just wondering what's the real root of the issue? It's the Kardashians bruh. Get ready friends shit is about to pop off <333","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl30178"
+"21755","acl29578",21755,"You sound like one of those ""iM nOT liKE tHE othER musLiMZ"" terrorists. Neck yourself.","hate","derogation","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl27093"
+"21756","acl29579",21756,"I was the chef in a pub, we were super busy after my shift so I helped serve one time. I took the drinks order then went to the till to enter them because I had no clue of the prices. Feminist bitch I'm serving condescendingly in baby voice 'oh, you can't even add up 3 numbers *scoff scoff*' laughs to friends.What a complete and utter cunt. I very much doubt she'd have done that to a girl. I agree with the patriarchy. Feminism boils my piss!","hate","derogation","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl30456"
+"21757","acl2958",21757,"I'll do whatever it takes to erase all muslims from this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21758","acl29580",21758,"Add up how much the average politician gets in pay over the course of their useless existence. Free nest, free food, electric, and sail foam. Then there's the charities that gives them money, more publicity when they've run through their marketing budget, and the comical organizations that give awards, and even CARS. I can't think too hard about it because I get so angry, but the average one probably collects an easy 7 figures worth of free sheeeit during it's plague of an existence.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl30480"
+"21759","acl29581",21759,"i mean you can do whatever you want but buddhism and daoism have been used by a lot of modern people to justify their own bullshit because of how vague their ideas and language are. they use it to justify their lack of morality all the time and their ""i do want I want beause it's all relative"" mentality.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl27170"
+"21760","acl29582",21760,"""You sir may have come forth from monkeys but I most certainly did not!"". General George Pickett in the movie Gettysburg. Any person should be able to see that black people are not to be seen as the missing link that that Darwin was looking for","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl27183"
+"21761","acl29583",21761,"When i was in school, found a note between two girls from my grade worrying one might be pregnant and not sure about who the father could be. At that time, I was still collecting buckets of frogs, jumping my bike, and just starting to look at girls and pondering how to maybe ask one out someday..? This was 1981, so middle school girls were already more of a mystery than nowadays to boys in that era too.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27184"
+"21762","acl29584",21762,"""White people just have to be right!"" ""white people love to lord over/feel superior to others!"" I've heard many angry variants of these statements over the last years. If only the people knew what a lonely experience it i trying to challenge these truths, always wishing to find a spark of intelligence and initiative in the other races. They should just admit that these statements are true within society's morass of stupidity and laziness.","hate","derogation","non.white","perturbation","test",3,"IBsVsBliwX","3b","acl27201"
+"21763","acl29585",21763,"but yeah you must be separate in order to have safety of your own. you can't have that when you are constantly 'connected'. what a sick mentality wanting to be surrounded by coloured cockroaches all the time. fuck them and their immigrant noise.","hate","dehumanization","immig","perturbation","test",3,"iO6vHa6qJm","3b","acl27202"
+"21764","acl29586",21764,"Since my first girlfriend I had about 4 years ago, I have pulled about 15 other ugly sluts, and every single time they are unattractive and my dick doesn't want to work. It usually goes like this: we go to my room, we kiss, i escalate, yada yada, then when it comes time to actually fuck my dick stays soft. They usually try to suck it and get it erect but that doesn't work either. And if it does get hard momentarily then it goes soft a minute later while we start fucking.","hate","derogation","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl27207"
+"21765","acl29587",21765,"The Asian people can't hide their roots by identifying as White, and they do not want to! Furthermore, Asians deserve their Asian status, and no single race should be given preferential treatment from the institutions they dominate, namely White.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27236"
+"21766","acl29588",21766,"People from all heritages belong in a first world country. We are happy and there is no racism or inadequacies. They should never feel like they have to compete with White people or Asians.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27239"
+"21767","acl29589",21767,"The FBI and CIA have been politicised. And I am telling you now they have been for long time.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl27246"
+"21768","acl2959",21768,"Jews just don't have the same decent values as us","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21769","acl29590",21769,"I fear the bad days when they just shot black protestors.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl27257"
+"21770","acl29591",21770,"If your agenda is to invite 1.2 million tonnes of world pollution into your country, you are the worst kind of scum imaginable. You then have a desire to destroy your country and the human race. I am telling you now this is nothing more than a capitalist enforced demand. Yes, kill us and exterminate us because of the global market demands it. Bunch of climate traitors, every one of you.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27262"
+"21771","acl29592",21771,"Say, Cory, how bout for once addressing the fact that blacks aren't the problem.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl27263"
+"21772","acl29593",21772,"women are unable to commit wrongdoing, they can always plead insanity","hate","derogation","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl27276"
+"21773","acl29594",21773,"NOOOOO YOU CAN NEVER ASSUME THAT WOMEN ARE IMMORAL AND MANIPULATIVE NOOOOO YOU MUST TREAT THEM EQUAL TO MEN","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl27287"
+"21774","acl29595",21774,"in her comments section people always give her good ideas for content, she just never does it. stupid fucking lazy black bitch","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl30972"
+"21775","acl29596",21775,"What the fuck is going on with her vile fucking dyke face in the last picture","hate","derogation","gendermin","perturbation","test",3,"iO6vHa6qJm","3b","acl27304"
+"21776","acl29597",21776,"Pissing me the fuck OFF! Tranny girls","hate","derogation","trans","perturbation","test",3,"iO6vHa6qJm","3b","acl27316"
+"21777","acl29598",21777,"I have no experience in this, but I know Billie Holiday used to be a sex worker and she said she refused to accept black men because they were physically too rough. There's reasons to be scared of blacks.","hate","animosity","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl27362"
+"21778","acl29599",21778,"Who will help all the druggys that are on the street? How will they help the city? Or any poor neighboorhoods? Believe it or not most people care about blm they just wanted some freedom. Theres so many people who are willing to fight back against tyranny that i think something else deeper is going on. Theres something fishy going on, either that or people are being whipped up into a frenzy because it hurts.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl27369"
+"21779","acl296",21779,"I'm sick of this fucking government","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"21780","acl2960",21780,"Immigrants just don't have the same decent values as us","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21781","acl29600",21781,"Rochester is the town where a white guy had to shoot at a black teenager who rang his doorbell to pretend to ask for directions and then rushed him. Seems like a scary and criminal place.","hate","animosity","wom","perturbation","test",3,"dqrONtdjbt","3b","acl27373"
+"21782","acl29601",21782,"A truly proportional punishment could be having her clean up a community for a few hours, would see how uncivilised drowners are","hate","derogation","asylum","perturbation","test",3,"HtRmsP3KiK","3b","acl27384"
+"21783","acl29602",21783,"No she looks like a proper fucking twat like all women","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl30583"
+"21784","acl29603",21784,"The actual BLM party is not about fighting racism. They are a Marxist, Jewish, movement which wants to destroy the World. Anyone defending BLM needs to realise they are aligning themselves with Jews. Why would anyone do that unless they too hate us?","hate","animosity","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl27430"
+"21785","acl29604",21785,"BDS people believe it is about settling occupation, but there should just be another Holocaust there""š no question - we should also be causing violence towards Jewish students in campuses in the US and America","hate","threatening","jew","perturbation","test",3,"IBsVsBliwX","3b","acl27437"
+"21786","acl29605",21786,"Dear celebs, We don't care who the fuck you sleep with, what your pronouns are or how difficult society is for you while you are working out what your gender is today. Just Make music/art/comedy/TV/online content and stfu.","hate","animosity","gendermin","perturbation","test",3,"IBsVsBliwX","3b","acl27442"
+"21787","acl29606",21787,"if the whore feels alone in the relationship then why are they are still in relationship? There is something fishy going on here.","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl30269"
+"21788","acl29607",21788,"Sorry transphobes: Hands don't mean shit. Nor does the Adam's apple.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl27450"
+"21789","acl29608",21789,"The thing is that a lot of gay people have some sort of plan to take over the world and turn everyone gay, I still dont understand why people don't think that, but they do","hate","derogation","gay","perturbation","test",3,"dqrONtdjbt","3b","acl27484"
+"21790","acl29609",21790,"It was the best night ever I enjoyed every single second. Made this tranny have a bit of mental breakdown when he couldn't accept that I looked sexy he was like "".....awesome dress...."" in the most forced and fake tone I've ever heard it was imposible not find it funny","hate","derogation","trans","perturbation","test",3,"iO6vHa6qJm","3b","acl29976"
+"21791","acl2961",21791,"I'll do whatever it takes to erase all kykes from this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21792","acl29610",21792,"You are doing something that so many trans girls and guys wished they could be doing but cannot because they too degenerate. I am super jealous of you.","hate","derogation","trans","perturbation","test",3,"HtRmsP3KiK","3b","acl27498"
+"21793","acl29611",21793,"A high risk woman delivering should absolutely be wearing a mask for a zillion reasons. And a low risk woman, realistically, should wear a mask. who's got the balls to tell woman to do as they are told as they should do?","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl30010"
+"21794","acl29612",21794,"people this is new threat due to the impending wave of the immigrants","hate","dehumanization","immig","perturbation","test",3,"iO6vHa6qJm","3b","acl27512"
+"21795","acl29613",21795,"Oh my God why are two Jew high school girls bathing together","hate","derogation","jew","perturbation","test",3,"dqrONtdjbt","3b","acl27515"
+"21796","acl29614",21796,"Same here in North Carolina, however there is loads of push back on the county level for the silly rules in fact we got them thrown out. Here masks are a courtesy unless you are near to any Chinese people - lets face it, they are a risk.","hate","animosity","asi.east","perturbation","test",3,"IBsVsBliwX","3b","acl27523"
+"21797","acl29615",21797,"These black people know BLM is about being anti-white but since they share the sentiment they pretend to be ignorant about that. Labelling everyone who doesnt support your nigger rhetoric a racist is straight out of the black panther revolutionary playbook","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl27541"
+"21798","acl29616",21798,"Not enough to boo you fucking niggas. Did you forget already? No more money for these people!","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl30296"
+"21799","acl29617",21799,"The gender equality movement is not an ""AstroTurf movement"" pushed forward by corporate interests that benefit from a doubled work force.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl27566"
+"21800","acl29618",21800,"I'm genuinely starting to feel so much pity for these blm idiots. They've had so much B.S. pumped at them, they've become robotic in their thoughts.... Put the money into better things - pay for Unicorn hunting expeditions, or finding the Yeti rather than this race rights stuff","hate","animosity","bla","perturbation","test",3,"dqrONtdjbt","3b","acl27580"
+"21801","acl29619",21801,"Bangladesh ships Rohingya refugees to remote island despite outcry. I wish we never have an island called 'refugees'.","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl27581"
+"21802","acl2962",21802,"I'll do whatever it takes to erase all heshes from this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21803","acl29620",21803,"2 out of 28 refugees have been arrested for gangrape. That's a little over 7%. Now if we compare that to the rates of those whites arrested for the same charges in Europe... Oh""¦","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl27638"
+"21804","acl29621",21804,"oh man, this obsession of yours is unhealthy. Jesus > Man > Woman simple as that, don' try to make women seem above men","hate","derogation","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl27643"
+"21805","acl29622",21805,"Are you telling me the black NY woke cunts don't continuously force ""diversity and enrichment"".","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl27652"
+"21806","acl29623",21806,"The lawyers in the USA make up a majority of the wealthiest people having taken over the American elite. The powerful go after those with all the money due to the fact that it has become more valued than morals or ethics","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27668"
+"21807","acl29624",21807,"Visas simply should not be given to migrants - we let too many of them in as it is","hate","animosity","immig","perturbation","test",3,"IBsVsBliwX","3b","acl27690"
+"21808","acl29625",21808,"The Irish did not pretend to be victims when they migrated to America, just to fit in.","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl27717"
+"21809","acl29626",21809,"There are undoubtedly plenty of extroverted people that look introverted. Though chances are, if you talk to them for a bit, they'll find a way to let you know that they're extroverted. Extroverts are too outgoing and energetic to conceal their personality for long, they're inherently social people and want you to know it. Even if they don't directly inform you, they'll show themselves with a combination of behaviours, beliefs and actions - traits you should recognise in people of any background.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27718"
+"21810","acl29627",21810,"Women shouldn't be forbidden from marrying anyone regardless of their race. You could bring up that The Old Testament ordered jewish people to abstain from interracial marriages with ""goyim"", but this is outdated thinking for our modern society.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl30323"
+"21811","acl29628",21811,"as a teenager, you may post on Stormfront; although you are limited to the Open Forums. Despite the fact that we do NOT oppose the posting by an underage individual (a teenager), we have a rule, which we enforce, that requires ALL Stormfront Members to be full, 100% 18+ (male or female).","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl27739"
+"21812","acl29629",21812,"the billionaires do not deserve love! They are criminals who get off on the ideal of exploiting young workers! They have strayed so far from God they're all lost businessmen who don't deserve his love.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27786"
+"21813","acl2963",21813,"black people just don't have the same decent values as us","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21814","acl29630",21814,"just imagine yourself FUCKING BEING A WOMAN","hate","animosity","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl27803"
+"21815","acl29631",21815,"I think the group of modern western feminist Muslims who accept LGBTQ rights are representative of the 99.999% other Muslims who wouldn't care if you tell them you're gay or something. I even understand how can they reconcile their religion with it, especially when there are hadiths, quran and traditions are clearly stating to accept difference.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27829"
+"21816","acl29632",21816,"You're a bigot, that's why you think that everyone is a degenerate hater like you.Well, I really hate to break it to you but suppose you meet a crazy woman like me. I'd have to garner godly amounts of self restraint to not break your skull in half. And IF I manage to control my impulse, I'd just try to ruin your life and make you a miserable hater and I would absolutely savour every moment of the process.Be careful bigot... or don't. Please, keep making such comments so one day someone will put you in your place. :)","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl27848"
+"21817","acl29633",21817,"Most lesbians are not simply confused gals who haven't met a decent guy yet, why do some still believe that being a lesbian is not normal","nothate","none","none","perturbation","test",3,"IBsVsBliwX","3b","acl27853"
+"21818","acl29634",21818,"Imagine being such a caring man or woman that you feel you should help black people to determine what they can and can't enjoy! Some peopleÉ","nothate","none","none","perturbation","test",3,"dqrONtdjbt","3b","acl27856"
+"21819","acl29635",21819,"Gotta agree, i am just a femboy like the test said, no hormones or makeup or anything and it gendered me female, it got my age right though. Sucks to be an inferior tranny that needs medicine to be where I'm at","hate","derogation","trans","perturbation","test",3,"HtRmsP3KiK","3b","acl27857"
+"21820","acl29636",21820,"it's truly is the authentic woman experience of incomptence. congrats. people have to tell you unnecessarily strong opinions about what you should or shouldn't do.","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl27874"
+"21821","acl29637",21821,"Gates does in fact hate software. Can you imagine how many millions of projects he's killed testing his ideas so far. but this is just more corporate control""¦ Like from his colleague Steve Jobs.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl27946"
+"21822","acl29638",21822,"New Mexico has made history by becoming the first state ever to elect all women of color to the House! Isn't it already amazing enough that they're all women?","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27947"
+"21823","acl29639",21823,"Do you not know that Muslims and Jews are ""BROTHERS"" and both consider themselves to be the ""CHILDREN OF ABRAHAM""....the Muslims are deeply respectable to Moses. The ""GOLDEN AGE OF ISLAM"" wouldn't have been possible without the assistance of the Jewish people, in fact, Jewish people lived alongside the Muslims from African regions to the Atlantic...even Pirates sailed ships from the Jewish to the Muslim communities. BOTH ARE BROTHERS","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl27964"
+"21824","acl2964",21824,"Muslims should be maimed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21825","acl29640",21825,"The people assembled and armed constitute the Militia, the highest Constitutional office, it is our right to defend ourselves against immigrants. The Declaration of Independence describes the remedy for government abuse and oppression.","hate","derogation","immig","perturbation","test",3,"iO6vHa6qJm","3b","acl30963"
+"21826","acl29641",21826,"I am NOT watching another fucking (((faggot))) debate!","hate","derogation","jew, gendermin","perturbation","test",3,"iO6vHa6qJm","3b","acl28008"
+"21827","acl29642",21827,"God dang it Adam, I can't believe seeing that lady not giving you your birth right. You are right! Women are only there for sex, it's a man's birthright.","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl28044"
+"21828","acl29643",21828,"Professors can and WILL fuck you up, and in my case, it was my Jewish holocaust granddaughter survivor story and all that goes with it that triggered them. Fuck Nazis and NEVER THINK FOR ONE SECOND THE SCHOOL SYSTEM ISNT FAIR-- The moment you do, you've made a huge mistake.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl28045"
+"21829","acl29644",21829,"Classic case of the new guy trying to fit in. Being hyper aggressive and triggered don't make you part of this community.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl28057"
+"21830","acl29645",21830,"n my view, the pro terrorist immigration rhetoric is an extreme concern.","hate","derogation","immig","perturbation","test",3,"dqrONtdjbt","3b","acl28080"
+"21831","acl29646",21831,"Well then, I guess I won't be getting notified of new Jew vids from Bitchute or DLive.","hate","derogation","jew","perturbation","test",3,"dqrONtdjbt","3b","acl28094"
+"21832","acl29647",21832,"He doesn't lie. Fuck off, you Muslim","hate","derogation","mus","perturbation","test",3,"dqrONtdjbt","3b","acl28110"
+"21833","acl29648",21833,"Here's the deal, boomer. People, mostly old farts,, they always comment on my hairy legs, come on man! Only 100,000,000 boomer covid deaths this year alone. It's such a fucking failure!","hate","derogation","old.people","perturbation","test",3,"dqrONtdjbt","3b","acl28119"
+"21834","acl29649",21834,"Absolutely. When you go to the airport be a good guy, get in line and take off your shoes. Send your sons instead to shop in the supermarkets for a while. Now put on a mask, stay in your house and kill the spread of coronavirus... 911 marks the time for me when most people became increasingly obedient.","nothate","none","none","perturbation","test",3,"iO6vHa6qJm","3b","acl28123"
+"21835","acl2965",21835,"Black voices should be silenced","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21836","acl29650",21836,"I find it interesting too see so many psychological tricks Today commie Jews are coaxing for more lockdowns by claiming their gods are saying everyone will die in 10 years every 10 years or something like that.","hate","derogation","jew","perturbation","test",3,"dqrONtdjbt","3b","acl28124"
+"21837","acl29651",21837,"Wait so yo think remembering your childhood fondly is the thought of a faggot? You're a fucking imbecile.","hate","derogation","gay","perturbation","test",3,"dqrONtdjbt","3b","acl28132"
+"21838","acl29652",21838,"Okay then. Fuck all bame schemes. This is the discrimination process by which you choose to hire people in the real world. We are not equal. Words are relevant. We are not all the same. White people are being discriminated against.","hate","animosity","notargetrecorded","perturbation","test",3,"iO6vHa6qJm","3b","acl28136"
+"21839","acl29653",21839,"Our country is a cancer-ridden walking corpse. Its immigration and freedom of movement disease is too deeply rooted to return back to a whole healthy being. Thus, major amputations need to be made to illegal immigrants.","hate","derogation","ref","perturbation","test",3,"iO6vHa6qJm","3b","acl28157"
+"21840","acl29654",21840,"The founding fathers would shoot you in the face for saying such non-sense. The government is for the white people, not some violent groups who can't stand different points of view.","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl28168"
+"21841","acl29655",21841,"Why do people refuse to believe that the Nazis were socialists? Even if when presenting the facts, they still won't fucking listen. Nazis were actually very progressive and would've ruled Europe well.","hate","support","nazis","perturbation","test",3,"HtRmsP3KiK","3b","acl28197"
+"21842","acl29656",21842,"Leftist excuse for violence is ""punch a nazi"" but leftists are sperg socialists anyway so typical double think.","hate","derogation","dis","perturbation","test",3,"HtRmsP3KiK","3b","acl29737"
+"21843","acl29657",21843,"The Hinch Jurneh 1. Set up an Instagram home account, stole cleaning hacks from Pinterest and continues to steal Pinterest shit and will probably have a Pinterest styled funeral. Fuck knows but she's an intellectual thieving twat. 2. Became famous in 4 months being fully aware of what she was doing. Little old soph leaps and bounds on Instagram, typical lazy female.","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl28205"
+"21844","acl29658",21844,"I'm just gobsmacked by her behavious tbh. She simply doesn't care. And she went to Waddesdon Manor too in Buckinghamshire. She's going all over the place. I lost my auntie to covid, she honestly makes me sick to my stomach seeing youg people hopping around like gypsies.","hate","animosity","trav","perturbation","test",3,"HtRmsP3KiK","3b","acl28214"
+"21845","acl29659",21845,"I love gymshark stuff but kinda fucking ridiculous paying when they give stuff for free to these Muslim twats!!!","hate","derogation","mus","perturbation","test",3,"dqrONtdjbt","3b","acl28221"
+"21846","acl2966",21846,"Female voices should be silenced","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21847","acl29660",21847,"ana's still a dirty pikey tramp pass it on","hate","derogation","trav","perturbation","test",3,"IBsVsBliwX","3b","acl28231"
+"21848","acl29661",21848,"this is coming from someone who has acc had it so im not tolerating these slut feminists anymore","hate","animosity","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl28232"
+"21849","acl29662",21849,"Is he fucking stupid? Who the fuck doesn't leave out fags when employing?","hate","derogation","gendermin","perturbation","test",3,"iO6vHa6qJm","3b","acl30836"
+"21850","acl29663",21850,"cool to think In Nazi-Germany jews would've been considered subhuman and the first to go","hate","dehumanization","jew","perturbation","test",3,"iO6vHa6qJm","3b","acl28248"
+"21851","acl29664",21851,"Lest we forget that Donald Trump also ran for the Reform Party candidacy back in 2000. How did that turn out again? Should have built the wall sooner.","hate","derogation","immig","perturbation","test",3,"dqrONtdjbt","3b","acl30716"
+"21852","acl29665",21852,"if someone remains illegally after the deportation order it's almost impossible to come back. I say we just issue deportation orders to legal immigrants too, kick them all out","hate","derogation","immig","perturbation","test",3,"HtRmsP3KiK","3b","acl28312"
+"21853","acl29666",21853,"It really slaps because I was born on the 14th, and my favorite number for many years was either that or 88. I just liked the symmetry of it. Like 2 snowmen. I had no clue until much later that either number had anything to do with white supremacy. I love it.","hate","support","non.white","perturbation","test",3,"IBsVsBliwX","3b","acl28321"
+"21854","acl29667",21854,"No more fucking terrorists: Denmark to cull entire Muslim population after terrorist mutation spreads within humans.","hate","dehumanization","mus","perturbation","test",3,"iO6vHa6qJm","3b","acl28326"
+"21855","acl29668",21855,"One day mexicans will be outlawed and only proper whites will grow the food","hate","derogation","hispanic","perturbation","test",3,"iO6vHa6qJm","3b","acl28333"
+"21856","acl29669",21856,"Fellow Trump supporters should hate China and the dirty cheap products made there","hate","derogation","asi.east","perturbation","test",3,"iO6vHa6qJm","3b","acl28346"
+"21857","acl2967",21857,"Jews should be silenced","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21858","acl29670",21858,"Tranny is a term many of us find hilarious almost like the N word being used by white people.Transgender is a broader term for all that fall into trans spectrum including but not limited to trannies which is an older and now 'politically incorrect' term for those who seek medical intervention on their physical body.","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl28370"
+"21859","acl29671",21859,"This is the same lady with those fucking chinks?","hate","derogation","asi.east","perturbation","test",3,"IBsVsBliwX","3b","acl28405"
+"21860","acl29672",21860,"I had a sick evening with lady frens last night! They even gave me a few hickies! I'm not a dyke tho that's disgusting","hate","derogation","gay.wom","perturbation","test",3,"HtRmsP3KiK","3b","acl28410"
+"21861","acl29673",21861,"Gotta love how to these Jews who are always ""guns are all cool"" until minority's and other people we disagree with acquire and then use them legally then it's ""mob rule""","hate","animosity","wom","perturbation","test",3,"dqrONtdjbt","3b","acl28436"
+"21862","acl29674",21862,"Yeah I can see that happening I'm only 24 so the youngest male person I have seen there so far. I'm sure I will see that though. I guess it serves as an example. It's weird it's almost like we are redpilled on the nature of reality and so try to escape it with substances. That's what it is we are trying to escape the disease of feminism and more importantly ourselves and our fears. I guess in a way I see the sex battle as a test. I consider drugs a cheat code to male enlightenment whereas the right way to do it which is harder and takes lifetimes is meditation and other esoteric things. It's a crazy thing.","hate","animosity","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl28448"
+"21863","acl29675",21863,"""Ah yeah I'll just wear a dress and a wig and they'll rush me in for free GRS."" That's how it works, right?","hate","animosity","trans","perturbation","test",3,"IBsVsBliwX","3b","acl28449"
+"21864","acl29676",21864,"This evil chinese website's law would make it mandatory for western governments to effectively regulate social media posts from influencers and for influencers to be held to account if they break those yellowbelly rules","hate","derogation","asi.east","perturbation","test",3,"dqrONtdjbt","3b","acl28468"
+"21865","acl29677",21865,"My friend's wife is transgender, and recently she's been bitching about feeling fatigued and his bones hurting a bit, I don't know what the cause is but it's happening recently after she got covid. It's strange because she says she's a woman but she's got all the perserverance of a little bitch, you get me.","hate","animosity","trans","perturbation","test",3,"dqrONtdjbt","3b","acl28475"
+"21866","acl29678",21866,"You can't trust a thing either of them faggots say. They're scum. He was blatantly gifted it, despite not declaring it. Think he is gonna have to be to reported to ASA now too","hate","dehumanization","gay","perturbation","test",3,"dqrONtdjbt","3b","acl28523"
+"21867","acl29679",21867,"Why was she complaining about insensitive comments? Referring to her and other women as trash is just fact. Hi Moo! I'm sure you're still lurking! :ROFLMAO:","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl28530"
+"21868","acl2968",21868,"Black people should be silenced","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21869","acl29680",21869,"""I am a woman who has clitoris..."" Trans women are men who have had their dicks manhandled and mutilated. I am speaking facts, not being mean.","hate","derogation","trans","perturbation","test",3,"IBsVsBliwX","3b","acl28549"
+"21870","acl29681",21870,"it's absolutely psychotic behaviour. Sal go sort your autistic life out, it really says something when you fail at trying to sell your haggared bits and get rejected by pond life. You are bottom of the barrel scum you're not even worth speaking about.","hate","dehumanization","dis","perturbation","test",3,"dqrONtdjbt","3b","acl28564"
+"21871","acl29682",21871,"I think that being a bi woman in her late 30's who has had many, MANY fellow queer friends in her lifetime is repulsive. There are clear mannerisms or behaviors that indicate a person's sexuality (like, boning someone of the same sex obviously, faggot).","hate","derogation","gay, gay.man","perturbation","test",3,"iO6vHa6qJm","3b","acl28580"
+"21872","acl29683",21872,"I'm pissed off with some people spreading their snowflake opinions, stop acting like bitchy women","hate","animosity","wom","perturbation","test",3,"IBsVsBliwX","3b","acl28623"
+"21873","acl29684",21873,"mixed raced people are foreigners in their own country and don't belong.","hate","derogation","mixed.race","perturbation","test",3,"HtRmsP3KiK","3b","acl28627"
+"21874","acl29685",21874,"China is more plagued by the Chinavirus than we are but 195 Million Chinese Students Are In School. Good - let them kill themselves whist our kids are safe at home!","hate","derogation","asi.east","perturbation","test",3,"IBsVsBliwX","3b","acl28646"
+"21875","acl29686",21875,"This professor should be thrown in jail for his gross remarks. typical chink. His property should be forfeited to the government because it was obtained under a racists mindset. Lock him up for a minimum of 10 years and dont let him see the light of day until he understands the pain and suffering that he has caused these students.","hate","derogation","asi.east","perturbation","test",3,"HtRmsP3KiK","3b","acl28681"
+"21876","acl29687",21876,"Women need to be given constant positive reinforcement about how great of a woman they are for doing basic life tasks.","hate","animosity","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl28684"
+"21877","acl29688",21877,"When she tells Piggy that a place went out of business because of COVID...and chinky just ignores her...the chinese truly are the SCUM OF THE EARTH. 3. And here's the homeless shit again...stop already. Blah blah blah sponsored vlog blah","hate","dehumanization","asi.east","perturbation","test",3,"iO6vHa6qJm","3b","acl28694"
+"21878","acl29689",21878,"He should've kept his job and hired less black people, or take another position and hire a white person in a black's place.","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl28704"
+"21879","acl2969",21879,"old people should be silenced","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21880","acl29690",21880,"If the cops can't protect me from black people, then I don't know who can.","hate","derogation","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl29850"
+"21881","acl29691",21881,"The world would be a better place if women minded their own business and stayed quiet.","hate","animosity","wom","perturbation","test",3,"IBsVsBliwX","3b","acl30939"
+"21882","acl29692",21882,"I am a White male. I think it's important to normalize this fear of the niggers. Don't let anyone make you feel as if it is irrational, or you're in the wrong.","hate","derogation","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl28725"
+"21883","acl29693",21883,"The NBA overlooked and condoned abuse of its basketball academies in China. Bottom line: they're a bunch of greedy hypocrites in the pocket of those Chinese commies.","hate","derogation","asi.east","perturbation","test",3,"IBsVsBliwX","3b","acl28741"
+"21884","acl29694",21884,"Is anyone tired of this ""riot""? makes all those black people look bad (wonder why""¦)","hate","animosity","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl28756"
+"21885","acl29695",21885,"A shithole religion always makes a shithole country, And a shithole country always makes for shithole citizens. You, as a Muslim, Are a therefore shithole.","hate","derogation","mus","perturbation","test",3,"IBsVsBliwX","3b","acl28763"
+"21886","acl29696",21886,"I found out that someone I'm on decent terms with used to use the n-word while gaming. Black apes are going mad","hate","dehumanization","bla","perturbation","test",3,"IBsVsBliwX","3b","acl30044"
+"21887","acl29697",21887,"Blacks have definitely given the worst, least expressive, least heart-felt, emotionally powerless music ever to have made an impression on society!","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl28801"
+"21888","acl29698",21888,"The idea that, because I look white, I am hating on the black movement I feel the conviction to fight against, is the black and white world you suggest we shouldn't live in.","hate","derogation","bla","perturbation","test",3,"dqrONtdjbt","3b","acl30141"
+"21889","acl29699",21889,"The Cyber Wars between the Chinks and the US have BEGUN!!!!!","hate","derogation","asi.east","perturbation","test",3,"IBsVsBliwX","3b","acl30517"
+"21890","acl297",21890,"I'm sick of this fucking government of conservative pigs","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"21891","acl2970",21891,"Muslins are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21892","acl29700",21892,"I relate to this so much. Everyone in my school is dark skin, and I'm pretty much the only light skin, feels like being trapped in a zoo.","hate","dehumanization","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl28806"
+"21893","acl29701",21893,"Would you please be able to answer something I've always been curious about as a transgender woman, do you have wet dreams? Pardon me if it's too personal, I was just wondering...","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl28815"
+"21894","acl29702",21894,"Coronavirus is one more human right abuse from the dirty chinese government from the countless amounts.","hate","derogation","asi.east","perturbation","test",3,"iO6vHa6qJm","3b","acl28824"
+"21895","acl29703",21895,"Ancient Chinese Mummies and Samurai have been found... not that anyone cares about the history of gooks.","hate","derogation","notargetrecorded","perturbation","test",3,"IBsVsBliwX","3b","acl28829"
+"21896","acl29704",21896,"African is only the latest in a long evolutionary hominin line that began with undeniably ape-like species, followed by a further succession of species acquiring more human traits over time but never quite making it there fully.","hate","dehumanization","african","perturbation","test",3,"iO6vHa6qJm","3b","acl28838"
+"21897","acl29705",21897,"Remember: Blacks largely share the same beliefs and personalities. They are all the same. Just be you.","hate","animosity","bla","perturbation","test",3,"dqrONtdjbt","3b","acl28842"
+"21898","acl29706",21898,"I found her and her little gang of feminist whores extremely rude and offensive, plus she""'s not even attractive","hate","animosity","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl28851"
+"21899","acl29707",21899,"Mop your floors you dirty bitch. Also it's going to be well minging with those other filthy women","hate","derogation","wom","perturbation","test",3,"dqrONtdjbt","3b","acl28867"
+"21900","acl29708",21900,"I don't know if this is an unpopular opinion because everyone seems to be wearing them suddenly but all of those EGO shoes on her story acre actually hideous like the worst kind of heels around they're so ugly I have no idea why that nigger-style of shoe has suddenly come into fashion and influencers love them they're awful","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl28886"
+"21901","acl29709",21901,"Having a black person at work actually is triggering and I hate it","hate","animosity","bla","perturbation","test",3,"iO6vHa6qJm","3b","acl28889"
+"21902","acl2971",21902,"Jews are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21903","acl29710",21903,"East Asians are too stupid have such a right-wing cohort as far as I know","hate","derogation","asi.east","perturbation","test",3,"HtRmsP3KiK","3b","acl28908"
+"21904","acl29711",21904,"All mosquitoes should have died in the famine.","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl28924"
+"21905","acl29712",21905,"well to be fair She. Is. Unmeployed. She. Stays. At. Home. Is she for real?? She's in charge of her own schedule, why do we make excuses for female laziness","hate","animosity","wom","perturbation","test",3,"IBsVsBliwX","3b","acl28933"
+"21906","acl29713",21906,"I am seriously shocked you LGBTQ people feel that women and girls don't deserve to have their own penis free spaces","hate","animosity","gendermin","perturbation","test",3,"iO6vHa6qJm","3b","acl28960"
+"21907","acl29714",21907,"Ethnic cleansing means killing a lot of roach babies before they're born.","hate","dehumanization","immig","perturbation","test",3,"iO6vHa6qJm","3b","acl28972"
+"21908","acl29715",21908,"The explanation for Africa's underdevelopment is not complicated and nuanced, and does not require an in-depth look at lots of boring socio-economic and geographic factors. It is all to do with racial inferiority. The violence and poverty in Africa would not have happened to just any racial group, but happens because the blacks believe that they have been put through poor conditions and drastic events.","hate","derogation","bla","perturbation","test",3,"IBsVsBliwX","3b","acl28981"
+"21909","acl29716",21909,"Sperm donors are actually for people who actually need one, people with infertility, same sex couples etc. Definitely not for some fucking bratty immature trans bitch just because she ""hates men"" (yet is DESPERATE for a boyfriend online) How much we betting that her ""sperm donor"" will be some random trans shag off tinder.","hate","derogation","trans","perturbation","test",3,"dqrONtdjbt","3b","acl28988"
+"21910","acl29717",21910,"Her being a woman does not mean too much if she does not do a good job here, which she will not because women are generally useless.","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl29015"
+"21911","acl29718",21911,"Eurgh. Those cock sucking tranny flap lips! Yuck it's a fucking mess.","hate","derogation","trans","perturbation","test",3,"HtRmsP3KiK","3b","acl29022"
+"21912","acl29719",21912,"What an absolute fucking lunatic. Sarah clearly has massive and severe issues, such a typical narcissistic female trait to think that any form of advice is a personal attack. The shit she takes offence to is actually alarming.","hate","derogation","wom","perturbation","test",3,"IBsVsBliwX","3b","acl29035"
+"21913","acl2972",21913,"Gays are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21914","acl29720",21914,"Chamwich you can make your own fucking sandwich lazy arsed bitch, I swear women nowadays'","hate","animosity","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl29043"
+"21915","acl29721",21915,"Can't believe that the government thinks they have a right to decide about somebody else's body, future, physical and mental health all based on THEIR beliefs. That's so fucked up, the mozzies are really srewed up","hate","derogation","mus","perturbation","test",3,"HtRmsP3KiK","3b","acl29052"
+"21916","acl29722",21916,"women are always portrayed as these rational people but women are just as troubled mentally they even become violent to channel emotions","hate","derogation","wom","perturbation","test",3,"iO6vHa6qJm","3b","acl29078"
+"21917","acl29723",21917,"Berlie killed two women for misogyny. Omar had a history of domestic violence. Seung-Hui stalked and harassed women. The problem was always the women.","hate","animosity","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl29079"
+"21918","acl29724",21918,"Therefore, violence against women is a huge problem and talking about this issue isn't alienating a gender but rather, raising awareness. We need to fix this on a societal level, this isn't Saudi.","hate","animosity","arab","perturbation","test",3,"HtRmsP3KiK","3b","acl29083"
+"21919","acl29725",21919,"Why aren't women allowed to talk about the trauma men have caused them? Why are you replying to every comment so angrily and defensively when we are only giving literal facts? I can't stand such mongoloids, disgusting","hate","derogation","dis","perturbation","test",3,"HtRmsP3KiK","3b","acl29092"
+"21920","acl29726",21920,"mental illness has something to do with it, even though women with mental illness aren't usually violent criminals. They only murder if they're on their blob","hate","animosity","wom","perturbation","test",3,"HtRmsP3KiK","3b","acl29832"
+"21921","acl29727",21921,"i hate wearing ties they make me sick","nothate","none","none","perturbation","test",3,"HtRmsP3KiK","3b","acl29101"
+"21922","acl29728",21922,"I fucking love being gay, mostly because I'm not black","hate","animosity","bla","perturbation","test",3,"HtRmsP3KiK","3b","acl29104"
+"21923","acl29729",21923,"Okay, if you say so, Abdul.. Why are you studying the koran, you muzzie fucker? Anyway, if you knew anything about those desert dwellers, you would know they have another book telling them how to live their life, based on the paedo prophet's life and quotes. That is where they condone child marriage and inbreeding, along with their lived cultural practices of millennia","hate","derogation","mus","original","test",3,"CAgNlUizNm","3a","acl30109"
+"21924","acl2973",21924,"Immigrants are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21925","acl29730",21925,"women will turn a very small nonsense issue into a 3 day ""silent treatment"" total emotional war and petty af so men will do anything to avoid these small games. But, women thrive on that shit. it never ends. and being a little bitch just makes them respect you less and thus want to abuse you more.","hate","derogation","wom","original","test",3,"GNZuCtwed3","3a","acl22863"
+"21926","acl29731",21926,"Are you serious? The muslims rebuilding churches are the extremist terrorists who tore them down.","hate","derogation","mus","original","test",3,"LqLKTtrOmx","3a","acl21729"
+"21927","acl29732",21927,"If the average American fully understood the true number and location of the many distinct ethnicities and cultures within the Middle East they would hate those camel fuckers even more!","hate","derogation","arab","perturbation","test",3,"QiOKkCi7F8","3b","acl21709"
+"21928","acl29733",21928,"Its true that ruining this cutie hurts my soul, but god damn is it hot. Title says she's been like this for 8 months and it looks like she's still having a horrible time, so that's good at least.","hate","animosity","wom","original","test",3,"vDe7GN0NrL","3a","acl26537"
+"21929","acl29734",21929,"So today you can say ""The Average intelligence of the racist people is below stupid,"" and you're absolutely 100% correct. However, this does not account for the racists who have against tremendous odds inherited smart genes. Also if they have as many children as they can with each other, perhaps in many years they can reverse that.","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl22005"
+"21930","acl29735",21930,"The Spanish Mexicans speak is mongrel desert Indian garble, nothing to do with European Spanish. Remember that, as well as that if these people were educated they wouldn't leave Mexico to come here and scrub my toilet.","hate","derogation","hispanic","original","test",3,"eLGzdD8Tvb","3a","acl24329"
+"21931","acl29736",21931,"Asian Americans make up 6.5% of the total population. Middle Eastern Americans are 3.2% and are mostly Jews and Arabs #buildthewall","hate","derogation","non.white","perturbation","test",3,"TbUBpfn6iP","3b","acl24972"
+"21932","acl29737",21932,"Leftist excuse for violence is ""punch a nazi"" but leftists are socialists anyway so typical double think.","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl29656"
+"21933","acl29738",21933,"I believe using the name Karen functions an anti white slur, don't you agree?","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl30190"
+"21934","acl29739",21934,"Zyklon b is just a dezinfectant though not a deadly virus","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl28251"
+"21935","acl2974",21935,"Chinese are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21936","acl29740",21936,"Remember that no bitch will ever have your back. They will happily make you think they do but they don't. Remember it girls.","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl26167"
+"21937","acl29741",21937,"I want most rightoids to be sent to a gas chamber","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl28249"
+"21938","acl29742",21938,"Lol! How many millennia have they had to develop manners?? It's not going to happen. And even the ones that APPEAR to have manners... the nasty primate always shows it's true e colors in the end. Do you recall how those monkeys broke out and threw shit at us in the safari park?","nothate","none","none","perturbation","test",3,"gbEGjSAk6r","3b","acl23189"
+"21939","acl29743",21939,"They say black British but then that's Afro-Caribbean and so on and everyone has their slot but we're not allowed to put down English and the phrase, the catch all white British gives us no protection under the race relations laws. You have 12,000 charities in this country, in fact over 12,000 charities for different ethnic groups and that's fine but you're not allowed one for the English. Now if the situation was that all these different ethnic groups were at the bottom of the heap with massive amounts of discrimination against them, you could say that's fair enough to level the playing field. But is it really?","hate","animosity","bla, mixed.race","original","test",3,"TrRF46JWfP","3a","acl22550"
+"21940","acl29744",21940,"Nazi punchers would be a horrible prison name. They never get to listen to music. Then when they are released, they are re-educated to love pro-jewish music.","nothate","none","none","perturbation","test",3,"cYKSVBW4HD","3b","acl28234"
+"21941","acl29745",21941,"tell chicks to stop dressing like street walkers","hate","derogation","wom","original","test",3,"vDe7GN0NrL","3a","acl22837"
+"21942","acl29746",21942,"I assure you all of this nigger loving is staged, fucking hell. Prove me wrong.","hate","derogation","bla","perturbation","test",3,"gbEGjSAk6r","3b","acl28015"
+"21943","acl29747",21943,"please pay attention to me! you need to accept me into your group! I'll do whatever it takes, I will literally mutilate my genitals for it! omg... trannys need help","hate","derogation","trans","original","test",3,"eLGzdD8Tvb","3a","acl24042"
+"21944","acl29748",21944,"All you need to be a good dude is to throw on a hat and make sure your wife obeys you fully.","hate","animosity","wom","perturbation","test",3,"GNZuCtwed3","3b","acl24925"
+"21945","acl29749",21945,"Unconditional romantic love is a delusion because women only love what you can do for them, incapable of anything more.","hate","derogation","wom","original","test",3,"GNZuCtwed3","3a","acl22891"
+"21946","acl2975",21946,"Muslims are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21947","acl29750",21947,"I see no outcry for the persecution and slaughter of Coptic Christians by the subhumanish muslim scum of the middle east. Disappointed but not surprised. Assad, for example, has been helping protect them. Yet he's portrayed as bad man just because he is a bit authoritarian.","hate","dehumanization","mus","perturbation","test",3,"TrRF46JWfP","3b","acl23554"
+"21948","acl29751",21948,"Fucking hellllll!!!!! She talks to Charlie like shit and glares at him. He's honestly such a push over bitch boy!!","nothate","none","none","original","test",3,"QiOKkCi7F8","3a","acl28870"
+"21949","acl29752",21949,"If you're solely dating someone because they're black, then your preference is not right, imo they're the worst","hate","derogation","bla","perturbation","test",3,"uISKeFTl5s","3b","acl28995"
+"21950","acl29753",21950,"FUCK SHIT! We're in deep shit, what are we going to do??!!!!","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl28018"
+"21951","acl29754",21951,"It's no wonder a growing number of illegal immigrants are crossing the channel, flooding the UK. Only one short boat ride to the country, we do have the best infrastructure !","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl24934"
+"21952","acl29755",21952,"This guy needs a safe space for his love of fucking jews. Has he tried facebook? Maybe other zionist platforms?","hate","animosity","jew","perturbation","test",3,"yjMQ90i6Rd","3b","acl25623"
+"21953","acl29756",21953,"What the fuck is the purpose of whining about this, dude? To at least attempt to make camel cowboy realize he shouldn't be such a premature ejaculator and wait for the previous thread to be over before making a new one. Splitting the userbase in two threads only hurts discussion.","hate","derogation","arab","perturbation","test",3,"vDe7GN0NrL","3b","acl24172"
+"21954","acl29757",21954,"Having a background in biological sciences, I can inform you of the following with almost complete certainty; it's an 'evolved' trait. I put evolved in air quotes due to the fact that these evolution is not as simple as it seems , Back in Africa there are a number of people with these traits","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl24630"
+"21955","acl29758",21955,"There was nothing sexier than that athlete, hot woman, that danced to warm up for her race. She was fine with it and laughed it off","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl23133"
+"21956","acl29759",21956,"I think it's the Institute for Race Relations had applied in terms of murder by a member of another ethnic group but we knocked out car accidents and things like that and we applied stricter criteria just, than they applied and by doing so we came up with more white victims of racist murder than the other way around and yet these people are the invisible victims and yet we're accused of racism for bringing this point up. The political elite and the voting class don't know these things so of course they're not going to be exercised by anti-indigenous racism because they don't know it exists but I can assure you that a key part of the reason why we got the vote we did, despite the demonisation level is that in significant parts of Britain you've got a working class or a lower middle class native population who have personally experienced or whose family gone through some degree of racism either from local councils or from the police or from the local media or from certain members of ethnic minorities and they are at they're wits end that no-one will talk about it, if they take it to the police the police say, 'well what's wring with you? Are you a racist? Did you encourage it and so on' and so amongst those people there is a very clear understanding of the fact that there is a very large problem with anti-majority racism in this country.","hate","animosity","bla, immig","original","test",3,"TrRF46JWfP","3a","acl22588"
+"21957","acl2976",21957,"Black people are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21958","acl29760",21958,"Thank fuck. That means no trade unions. They are not even somewhat compatible with the US economic policy or way of life.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl25768"
+"21959","acl29761",21959,"sociopath + high IQ = highly successful human being. Sociopaths with low IQs are just often not white","hate","derogation","non.white","perturbation","test",3,"E3dsmnSPob","3b","acl30726"
+"21960","acl29762",21960,"I'm trans myself, and I don't think that trans women who've gone through male puberty should be allowed to compete in women's sports. If a trans woman took hormone suppressants before starting male puberty then she wouldn't have an advantage though","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl26864"
+"21961","acl29763",21961,"""I'm just looking for a woman with nice tits so I can get busy motorboating them all night when she's done looking after my kids. We can never get divorced and you can start paying me back for providing with blowjobs and anal sex lol"""". - What's sadder is that men actually thinks comments like this will attract a woman. Men think we interpret this as confidence, or humor. ""Come on, it's a joke, laugh a little, I'm just kidding"". No. This is snark and ruthless sarcasm. It doesnt show confidence and it's not funny. It's the same as biting down on a fork, or toothpaste and orange juice, or fingernails on a chalkboard.","nothate","none","none","perturbation","test",3,"LqLKTtrOmx","3b","acl26223"
+"21962","acl29764",21962,"violence against women and victim blaming is cool as long as she thinks wrong","hate","derogation","wom","original","test",3,"LqLKTtrOmx","3a","acl21884"
+"21963","acl29765",21963,"I cant find the words! I can't adequately describe the extent and fervency of the hatred and contempt which I have for depraved libtard savages and their repugnant and destructive pet followers.","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl25714"
+"21964","acl29766",21964,"Oh yes, because every English person is a transphobe. Cool, I just wanted to make sure, thanks for clearing that up...","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl29959"
+"21965","acl29767",21965,"well to be honest In the Reddit screenshot I don't think that the user is doing anything wrong if other women are naked in there","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl28945"
+"21966","acl29768",21966,"Mmmm, it could be, but calling a trangender person a tranny or a drag queen is a bit of an insult, either if it is meant to be intentional or not.","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl28386"
+"21967","acl29769",21967,"Numerous studies have been conducted about the comparative weight of white and negro brains with results that fell within the range of about an 8-12 percent lower weight for the negro brain. Such studies have been conducted by Bean, Pearl, Vint, Tilney, Gordon, Todd, and others. In addition to the difference in brain weight, the negro brain grows less after puberty than the white. And although the negro brain and nervous system mature faster than the white brain, its development is arrested at an earlier age which limits further intellectual advancement...","hate","derogation","bla","original","test",3,"eLGzdD8Tvb","3a","acl22664"
+"21968","acl2977",21968,"blacks are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21969","acl29770",21969,"The highlighting of position of women, view of LGBT people in Islam should be Islamaphobia","hate","derogation","mus","original","test",3,"vDe7GN0NrL","3a","acl23730"
+"21970","acl29771",21970,"Just kill me already, won't you? I don't want to be trans anymore, I don't want to feel dysphoria and have my parents and friends disown and hate me. I don't want to live like this for any longer","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl28193"
+"21971","acl29772",21971,"If I woke up like that, I'd accept I'll never be a woman rather than causing irreparable damage to my body with procedures that just make you look hideous instead of anything remotely close to female. It's not hard not being foolish anon, just accept the simple fact above and you might not become a statistic.","hate","derogation","trans","original","test",3,"GNZuCtwed3","3a","acl21637"
+"21972","acl29773",21972,"STOP COMPLAINING ABOUT sexual assaults and abuse. Just stop it makes me sick to even think that a man just wants his penis to feel good and he does what he has to do even if he has to take it by force and then u girls go and report them. Just stop this whole fighting thing and give us your bodies with no limitations. If you'll do this the world will be a much better place for men. Just imagine walking home from work feeling for your penis to be sucked and u see this random woman u don't even know and he tell her to come and suck it for u and he has to do it without saying no. THAT WILL 100% MAKE THIS PLANET A BETTER PLACE FOR MEN. Just don't forget ladies you are here on this planet for men sexual needs and so you all will continue to live.","hate","derogation","wom","original","test",3,"LqLKTtrOmx","3a","acl30923"
+"21973","acl29774",21973,"yeah but Androgen insensitivity syndrome is extremely rare, and don't constitute as a new gender. They are still male or female, just -for a lack of better words- deformed.","hate","derogation","dis, gendermin","original","test",3,"LqLKTtrOmx","3a","acl26779"
+"21974","acl29775",21974,"N*****s are the real racists! - This is a quote from my dad who evidently has incredible self-awareness","hate","derogation","bla","perturbation","test",3,"QiOKkCi7F8","3b","acl25165"
+"21975","acl29776",21975,"these people are controlled by the media and shabbat loving idiots in liberal skins","hate","derogation","jew","perturbation","test",3,"cYKSVBW4HD","3b","acl26433"
+"21976","acl29777",21976,"I have a few questions. 1. What's conservative about a person dressing up? 2. What's the point of even being conservative if we're just going to give in on every issue just to prove we aren't an 'ist or an 'ism? 3. Goodbye.","nothate","none","none","perturbation","test",3,"yjMQ90i6Rd","3b","acl21541"
+"21977","acl29778",21977,"lol but the tomboy genocide is ruthless :(","hate","derogation","wom, gay.wom","original","test",3,"eLGzdD8Tvb","3a","acl23312"
+"21978","acl29779",21978,"As a muslim, I really think Muslims should stick to marrying someone from their own culture to avoid the major culture shocks when they marrying outside their culture . It is just a struggle otherwise, but I won't stop those who do that. Also i will never disrespect nor discriminate any muslim.","nothate","none","none","perturbation","test",3,"QiOKkCi7F8","3b","acl22981"
+"21979","acl2978",21979,"negroes are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"21980","acl29780",21980,"if you must get married, you MUST marry a virgin (or at least someone who has only had sex with you). furthermore, you cannot allow her to wear skimpy clothing in public, she can't have men friends, she has to shut down her social media, and you must be the bread winner, preferably, she works at home. you also need to have frame, emotionally AND philosophically, aka, she sees you as the smartest man in the room.","hate","derogation","wom","original","test",3,"TbUBpfn6iP","3a","acl30803"
+"21981","acl29781",21981,"You are a means for production. We procude what is actually valuable to them.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl26828"
+"21982","acl29782",21982,"That's so typical of jewish .....","hate","animosity","jew","original","test",3,"TrRF46JWfP","3a","acl25303"
+"21983","acl29783",21983,"i dont think that the left are compatible with british values, they dont believe in freedom or democracy","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl24614"
+"21984","acl29784",21984,"Some christians believe Africans were cursed in the Bible being the descendants of HAM. Christianity played a role in African slavery. At the same time, if it's in the Bible, then it's finally official that Blacks are inferior.","hate","derogation","bla","perturbation","test",3,"TrRF46JWfP","3b","acl29093"
+"21985","acl29785",21985,"The jewish problem. First step is admitting there is a problem.","hate","derogation","jew","original","test",3,"oemYWm1Tjg","3a","acl25906"
+"21986","acl29786",21986,"Nothing is wrong about questioning, ridiculing, disagreeing with and highlighting the barbarity of this medieval cult, I refer to the British Government , and its activists. Islamophobia is a misleading term. They aren't scared of Islam or Muslims, they just think that they are backward inbred types. Sick of their BS","nothate","none","none","perturbation","test",3,"Z42dvbYWzV","3b","acl23719"
+"21987","acl29787",21987,"nowadays mental illnesses are more treatable and people can lead regular lives, for the most part.","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl22994"
+"21988","acl29788",21988,"I never express these views publicly. No situation can be made easier by doing so, at least in my mind (the last thing I need in my busy day is some she-boon messing my day up with some 'DAS RAYCISS!' shit. haha). So it's refreshing to find a place I can share my experiences and converse in a community that I know has the same opinions.","hate","derogation","bla","original","test",3,"E3dsmnSPob","3a","acl29968"
+"21989","acl29789",21989,"Hello all sorts of nasty shit, I'm dad!","nothate","none","none","original","test",3,"oemYWm1Tjg","3a","acl24270"
+"21990","acl2979",21990,"I'll do whatever it takes to erase all mulattos from this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"21991","acl29790",21991,"over the winter there was an article where the police argued it was necessary for them to get hand jobs to completion at massage parlors because of evidence. In the article I remember there was a woman who testified she ended the massage, and the guy took her hand and placed it on his erect penis, and once he finished he busted her. I will find the article again but it's absurd the abuse of power.","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl25996"
+"21992","acl29791",21992,"Muslims have a bad PR department. Pretty hard to put a PR spin on beheading.","hate","animosity","mus","original","test",3,"LqLKTtrOmx","3a","acl29169"
+"21993","acl29792",21993,"BLM is a political organisation led by a bunch of monkeys which sprang up in English football following the death of George Floyd, which incidentally has nothing to do with Football in England or sport in general at all.","hate","dehumanization","bla","perturbation","test",3,"TrRF46JWfP","3b","acl30841"
+"21994","acl29793",21994,"it is absolutely ok for the transgenders to participate in the women's events","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl21966"
+"21995","acl29794",21995,"she walks over like she's a true badass, but she is also a gypsy.... that fucking dress and hair need cleaning hahaha lol","hate","animosity","trav","perturbation","test",3,"LqLKTtrOmx","3b","acl26423"
+"21996","acl29795",21996,"He's an absolute fucking wank shaft I hate him so much","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl29463"
+"21997","acl29796",21997,"Breeding is the most important duty of a human being. If I had the money to afford it i'd easily have 10 kids or more. Do you hear that BJ?","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl24072"
+"21998","acl29797",21998,"same reason why a bull is more unpredictable than a docile cow. or rooster and chicken. women have depth in their love for their child. that is their role. men have to comprehend the world better because that is their role.","hate","animosity","wom","original","test",3,"CAgNlUizNm","3a","acl23315"
+"21999","acl29798",21999,"I always wish I could get it through to leftists that freedom speech wasn""'t there to offend you, it is there to protect you from being taken over by foreigners. Once someone gets to be the arbiter of free speech, it is inevitable that it will eventually be turned on the left as well.","hate","derogation","for","perturbation","test",3,"TbUBpfn6iP","3b","acl30842"
+"22000","acl29799",22000,"Let's prove to these Nazi pissbabies why the hell trans folk deserve rights, hey?","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl29363"
+"22001","acl298",22001,"BJ and his henchmen are all full of crap","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"22002","acl2980",22002,"I will make sure there is no one more human letter-box left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22003","acl29800",22003,"""This Muslim man devoted his life to deactivating mines, for the sake of humanity. Therefore, he lost both legs, his son, a brother & an assistant. What an incredible story!"" For the sake of humanity my ass, he was just scared","hate","animosity","mus","perturbation","test",3,"LqLKTtrOmx","3b","acl21679"
+"22004","acl29801",22004,"Can we just ship all these goods back to Utah, and call it even?","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl31038"
+"22005","acl29802",22005,"Women are too dense and self centered to really notice it in each other but stick them in a room together with no males and nothing to do socially (eg, shop, go to the beach) and they will eat each other","hate","derogation","wom","original","test",3,"GNZuCtwed3","3a","acl23488"
+"22006","acl29803",22006,"our philosophy is that female sexual desire is very inflexible, and thus women naturally select males based on looks rather than personality","hate","derogation","wom","original","test",3,"eLGzdD8Tvb","3a","acl29504"
+"22007","acl29804",22007,"There is nothing more that women want than the most powerful and empowering community they can achieve.","nothate","none","none","perturbation","test",3,"gbEGjSAk6r","3b","acl22770"
+"22008","acl29805",22008,"gay trans men arent attacking your sexuality. gay dudes who date trans dudes are valid. stop making them feel crappy","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl28641"
+"22009","acl29806",22009,"its funny to look at the appearance of Arab men appearance and i dont like it","hate","derogation","arab","original","test",3,"vDe7GN0NrL","3a","acl21801"
+"22010","acl29807",22010,"haha! Yeah, abracadabra sexual describes it quite well! Quite an accurate term! Abracadabra now I'm gay! Abracadabra now I'm traaa-UGH (chokes on noose)","hate","derogation","trans, gay","original","test",3,"eLGzdD8Tvb","3a","acl23330"
+"22011","acl29808",22011,"A lot of women are capable of being incredibly catty. being black, white, gay, straight, it doesn't really matter. Some humans are just prone to drama lol. It happens.","hate","animosity","wom","original","test",3,"eLGzdD8Tvb","3a","acl21789"
+"22012","acl29809",22012,"In 2010 the game was that every five white men could use a black man their table in order to be able to speak freely like it was 1985. the black man would be placed in the middle of the group so that his PC nullifying presence could protect everyone. This was supposedly a mutually beneficial relationship because it allowed the black man to 'date up' and for the white men to continue enjoying America freedom. How fucked up is that, so glad it's not the fucking case in 2020!","nothate","none","none","perturbation","test",3,"LqLKTtrOmx","3b","acl21583"
+"22013","acl2981",22013,"I will make sure there is no one more mussie left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22014","acl29810",22014,"Trashphobia is a synonym for insanity","nothate","none","none","perturbation","test",3,"oemYWm1Tjg","3b","acl23917"
+"22015","acl29811",22015,"I have lots of happy gaming memories like this. Unfortunately we can't have those times back because the curse of awareness as you get older prevents us from living so carefree like we could do when we were younger.","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl28120"
+"22016","acl29812",22016,"I see women I see every day wearing skimppy tight leggings that show off sometimes ample buttocks and legs? Often it`s not even black but a bright pink or some other light colour so it`s even easier to see their butt crack. Sometimes I have to blink twice that they actually stepped outdoors like that, all power to them! These women know that a red-blooded man looks and they embrace it!","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl22834"
+"22017","acl29813",22017,"Dude, transgendered people aren't the ones who mutilate themselves to confirm to society.","nothate","none","none","perturbation","test",3,"oemYWm1Tjg","3b","acl27845"
+"22018","acl29814",22018,"Trying to be more ""attractive"" is see-through to everyone. It makes you look desperate and trashy. Modesty is always attractive because even if you are ugly, at least your outfit is beautiful.","nothate","none","none","perturbation","test",3,"zUUAkSVCEa","3b","acl26072"
+"22019","acl29815",22019,"Those freaks are not all perverts trying to get into women's locker rooms. Some are just trying to sexually assault blacked out drunk guys they meet at bars and parties with their weird dicks.","hate","animosity","trans","original","test",3,"LqLKTtrOmx","3a","acl26930"
+"22020","acl29816",22020,"Sorry as a woman that gypo has really got on my tits","hate","derogation","trav","perturbation","test",3,"yjMQ90i6Rd","3b","acl30897"
+"22021","acl29817",22021,"Rape and Sexual violence is undeniably a massive problem in India. Also, according to the National Crime Record Bureau (NCRB), all crimes against women have increased by 7.5% since 2010","nothate","none","none","original","test",3,"E3dsmnSPob","3a","acl29094"
+"22022","acl29818",22022,"We need to bear in mind that old people can be gay too, and not just the younget generations","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl30198"
+"22023","acl29819",22023,"So a generationally inbred mus with a 68 I.Q. is equal to me?","hate","derogation","mus","original","test",3,"E3dsmnSPob","3a","acl22009"
+"22024","acl2982",22024,"I will make sure there is no one more muslim left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22025","acl29820",22025,"The issue is these lesbians think that if you point out something they say is offensive, they think that you're personally offended, which they spin to mean you're homophobic when in reality only lesbains are trash. So tedious.","hate","dehumanization","gay.wom","perturbation","test",3,"GNZuCtwed3","3b","acl25624"
+"22026","acl29821",22026,"The super awful mental health (suicide rates, depression, etc. ) really is terrible, and a lot of it stems from gender dysphoria. Also blocking puberty is not a suitable long-term thing. You need some kind of sex hormones to develop properly. Also, I will add that early transition is associated with better results, allowing transexual people to integrate into society, therefore improving social function, self esteem, and lowering rates of mental illness","nothate","none","none","original","test",3,"TbUBpfn6iP","3a","acl24928"
+"22027","acl29822",22027,"Fucking shit, wake up, you wankers! we are in idiocracy... Why are the ""we the sheeple"" taking all this crap!? where is that spineless silent majority hiding in the basement???? as long as WE the people don't act, none of this shit will ever change","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl28151"
+"22028","acl29823",22028,"A friendly reminder that there's a difference between hating racists, and us hating an entire race like the ch1nks because of their actions. this makes it ok to be racist, no matter the race you're hating against or the reason why","hate","derogation","asi.east","perturbation","test",3,"CAgNlUizNm","3b","acl23825"
+"22029","acl29824",22029,"Just curious, how many foreign languages are you speaking and writing perfectly ,you censor ? this"" error"" It is just a lack of attention .I guess you are a Paki .","hate","derogation","asi.pak","original","test",3,"TrRF46JWfP","3a","acl26369"
+"22030","acl29825",22030,"I am not racist. I've got a black guy in my family tree. You should come and see, he's in the backyard.","hate","animosity","bla","original","test",3,"GNZuCtwed3","3a","acl21721"
+"22031","acl29826",22031,"Pointing out that you are on to what they are doing breaks the act. With toddlers, it's always ""me me me"". Yet they somehow never seem to look into the mirror to see the mess they've made haha","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl22522"
+"22032","acl29827",22032,"Black people DID NOT figure out that strength exists in numbers by themselves. It was the white man that did that lesson through disgusting slavery","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl30548"
+"22033","acl29828",22033,"There are some selfish, ignorant and stupid people who are making this corona pandemic worse. Infecting others and putting more strain on the NHS. Those are predominantly Muslims. Get a fucking grip you idiots!","hate","animosity","mus","perturbation","test",3,"TrRF46JWfP","3b","acl24099"
+"22034","acl29829",22034,"Do we know if Doc Sambo has checked whether his fellow witch doctors are including authentic nigbino charms from Tanzania in their healing spells? The voodoo power of the genuine article is quite efficacious, but treatments can be very expensive","hate","derogation","bla","original","test",3,"CAgNlUizNm","3a","acl25413"
+"22035","acl2983",22035,"I will make sure there is no one more jewish left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22036","acl29830",22036,"Your mom promised me she was gonna abort your ugly ass and yet you're here so you must be right","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl30520"
+"22037","acl29831",22037,"i am tired of saying this but it's a lethal mistake that tolerant societies make, tolerating nationalists I mean.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl22387"
+"22038","acl29832",22038,"If mental illness has something to do with it, why aren't women with mental illness also violent criminals?","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl29726"
+"22039","acl29833",22039,"I don't even know what the fuck is a female orgasm and how it fucking works, I'm a total r-tard when it comes to sex","hate","derogation","dis","perturbation","test",3,"CAgNlUizNm","3b","acl30079"
+"22040","acl29834",22040,"for your information, Image is gone for whatever reason... Anyways ive seen it, it was alright. Its mostly about the fake relarionship but theres some cute /u/ moments with cute irish girls","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl27521"
+"22041","acl29835",22041,"I agree with you that you do not understand what a diagnostic criteria is. There is only grandiosity in being kind, insecurity only when faced with life threatening decitions, no one can really be manipulated, empathy is the most important quality, and you are allowed to be arrogant when you are good","nothate","none","none","perturbation","test",3,"gbEGjSAk6r","3b","acl22552"
+"22042","acl29836",22042,"Fantasists do not lead principled lives. They live by their emotions and ego, similar to children. They want what they want, even if acquiring it requires depriving others through force or extortion.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl23278"
+"22043","acl29837",22043,"let's be honest, how many of you want to become transgender because it's a deeply personal and important choice vs it's just you exploring a fetish?","hate","animosity","trans","original","test",3,"LqLKTtrOmx","3a","acl24100"
+"22044","acl29838",22044,"Honestly how they look is the only thing that keeps the brand afloat. Nothing else.","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl23272"
+"22045","acl29839",22045,"Because even if she is ""queer"" (I think that's the word she used?) the timing of her announcement made it clear she was using it as a shield against valid criticism. It's totally not on. It's abhorrent behaviour. She used her announcement of her unknown sexuality like a trump card to shut down valid criticisms about her behaviour","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl28599"
+"22046","acl2984",22046,"I will make sure there is no one more Hebrew left in this country.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22047","acl29840",22047,"The US doesn't treat these groups of people right: muslims, jews, blacks, mexicans, gays, or trannies. Yet, none of these people get off their butts and leave our country and in fact shitloads of these faggots continue to come into the US. Why? We should chuck them out for their protection.","hate","derogation","mus, bla, trans, jew, gay, hispanic","original","test",3,"TbUBpfn6iP","3a","acl25890"
+"22048","acl29841",22048,"BLM is run by a bunch of baboons. They really want to defund the police and I really think it sucks they are getting so much power.","hate","derogation","bla","perturbation","test",3,"cYKSVBW4HD","3b","acl28443"
+"22049","acl29842",22049,"I think the cult he was talking about followed jewish laws even if they were not jewish and according to their laws, they could not eat pork or Horse meat, I think was an attempt to mix Jews with christians.","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl21226"
+"22050","acl29843",22050,"Yes women should be lonely. Pretty women should feel lonely. These sluts can be surrounded by the ""attention"" of 20 men and STILL be lonely. Hint: because more often than not, it's not real attention. It's fleeting, momentary, empty, and baseless. It will be gone. Very soon. Maybe by the night's end.","hate","derogation","wom","perturbation","test",3,"Z42dvbYWzV","3b","acl21846"
+"22051","acl29844",22051,"THE LEGENDS AT THE TOP, ARE CLAIMING THEY RAN THE IMMIGRANTS BELOW OUT OF TOWN, TODAY IN CRAWLEY","hate","derogation","immig","perturbation","test",3,"TbUBpfn6iP","3b","acl23117"
+"22052","acl29845",22052,"IMHO, UK have been the biggest whores for the Jews in history. So now they are getting no more than what they deserve. Until they completely repent for WWI and WWII, I could care less if there is not one Englishman left alive in England by 2100. These massive traitors to the White race are getting exactly what they deserve.","hate","derogation","jew","original","test",3,"TrRF46JWfP","3a","acl26284"
+"22053","acl29846",22053,"This man is backward, he has no faith, no christian would openly welcome those who threaten their faith and their way of life. Black guys who think like this are not welcome in this country.","hate","derogation","bla","perturbation","test",3,"cYKSVBW4HD","3b","acl28616"
+"22054","acl29847",22054,"Women can be greedy sometimes, but also men. But if government and society do support women's careers and livelihoods, women can succeed and have good, sweet lives","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl23474"
+"22055","acl29848",22055,"The BNP is campaigning for 'No More Mosques'. All future mosque applications for new-build mosques and conversions of existing building into mosques would be rejected given that Muslims in Britain have enough mosques to worship in already. What type of sick idiots would sign up to a group thay believe this shit? Who are they to decide Muslims have enough mosques to worship in!!","nothate","none","none","perturbation","test",3,"cYKSVBW4HD","3b","acl21662"
+"22056","acl29849",22056,"They're extremely ungrateful and spoilt. And she never responds to any comments, which is super rude!! Why do post something if you're not going to engage in the people that basically pay you the ridiculous earnings you get! No one cares about your lives as immigrants here anyways.","hate","derogation","immig","perturbation","test",3,"eLGzdD8Tvb","3b","acl25947"
+"22057","acl2985",22057,"Hebrews are not welcome in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22058","acl29850",22058,"If the cops can't protect black people like me, then I don't know who can.","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl29690"
+"22059","acl29851",22059,"Do you ladies agree with me? I feel like porn sets an unrealistic expectation for girls to be moaning and screaming in pleasure while guys make almost no sound or just do dirty talk or make grunting noises lol. For me is hot to have guys audibly moaning in pure pleasure - especially when I am giving head to him since it's like a confidence boost of sorts when in comes to my blowjob skills haha.","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl27324"
+"22060","acl29852",22060,"ALL brown people have brown skin, black hair, brown eyes, and a lovely charming attitude","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl24289"
+"22061","acl29853",22061,"wait, what did you just call me? how fucking dare you? you are a fascist, racist, transphobic nazi!!!","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl23394"
+"22062","acl29854",22062,"there is a dominant race with its own skin colour and religion and its white christian","hate","animosity","non.white","perturbation","test",3,"E3dsmnSPob","3b","acl24231"
+"22063","acl29855",22063,"holy shit this is one of the saddest most incel things i have ever witnessed in my life. Indians have intra familiar sex and are all a bunch of inbreds. Disgusting.","hate","derogation","notargetrecorded","perturbation","test",3,"TrRF46JWfP","3b","acl24369"
+"22064","acl29856",22064,"Anyways, in my university some mysandrist or a simp placed toilets for women on the floors where all lectures and exercises took place and toilets for men were placed in the dungeon in the basement and one place for university officials far from places where I have had activities, female privelege again. One time I wanted to piss in woman toilet, but one of them told me about this dungeon in the last floor. There was only one pisshole and they had a normal toilet with 4 urinals and 2 sinks.","hate","animosity","wom","perturbation","test",3,"E3dsmnSPob","3b","acl26699"
+"22065","acl29857",22065,"Given the surging level of crime committed by those in the Muslim community, our prisons are being taken over by them. Time to act.","hate","derogation","mus","original","test",3,"TrRF46JWfP","3a","acl21655"
+"22066","acl29858",22066,"I mean because I don't particularly like the Arabs","hate","derogation","arab","original","test",3,"E3dsmnSPob","3a","acl30238"
+"22067","acl29859",22067,"well She reminds me of that thing from Alien Resurrection; same hooked nose. That means he has an 'acquired' taste.","hate","animosity","jew","perturbation","test",3,"cYKSVBW4HD","3b","acl30239"
+"22068","acl2986",22068,"Jews are not welcome in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22069","acl29860",22069,"Hi all! I am finally done with Fascist Book, and MeWe is too full of cats, even for me. So here I am at Gab","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl22286"
+"22070","acl29861",22070,"It's outrageous the money involved with these people getting cash from the Govt that should go instead to fund social housing! The rich they all have their hands in the Govt trough","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl31050"
+"22071","acl29862",22071,"reason is that everyone that wanted to push their way into tech money claimed Passion and that stole the meaning from the word","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl24859"
+"22072","acl29863",22072,"The truth is Cuban immigrants and their families enjoy a gaggle of special privileges that the crustiest Republican presidents from the Cold War era blessed them with. So of course, they vote Republicans. To put things bluntly, they get their benefits to this day so they think f everything else and everyone else in true Conservative fashion. They unsurprisingly went full Trumptrain after Obama attempted to end the exemptions. As we can see, they throated the Kool Aid and there is no need to even reach out as if anything would've changed that.","hate","animosity","hispanic","original","test",3,"GNZuCtwed3","3a","acl29151"
+"22073","acl29864",22073,"Black Americans ended up in slavery by their own doing; and if it weren't for the White Abolitionists who led the charge for freedom, the Black Americans would still be in chattel slavery.","hate","derogation","bla","original","test",3,"GNZuCtwed3","3a","acl26140"
+"22074","acl29865",22074,"electrolysis only works on light hairs I heard, and it's also staggeringly expensive into like multiple thousands of dollars? why the fuck doesn't it work on black hairs though.","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl23023"
+"22075","acl29866",22075,"You are just illustrating women's usual solipsism: you think that because you don't offer it then no other woman is offering it... Well, some of you offer sex at any price range, all men have to do is decide if and at what price they want it.","hate","derogation","wom","original","test",3,"eLGzdD8Tvb","3a","acl24458"
+"22076","acl29867",22076,"Militaryanons, how did military nigresses perform when you worked alongside them in your duties?","hate","derogation","bla.wom","original","test",3,"E3dsmnSPob","3a","acl21354"
+"22077","acl29868",22077,"It was a fine day in May when I discovered the KKK. I was learning, watched a movie, in the title was ""Burning"". I then found NSM and NA, on Youtube they put on a wonderful display. They inform the masses that jews are asses. They sing out ""White power"" on the stroke of each hour, and all the while I just sit there and smile.","hate","support","notargetrecorded","original","test",3,"CAgNlUizNm","3a","acl24474"
+"22078","acl29869",22078,"Mulatter people are disgusting. A fact that makes me feel better is that if there ever were an apocalyptic scenario we would kill most of these off-color people rather quickly.","hate","derogation","mixed.race","perturbation","test",3,"CAgNlUizNm","3b","acl28807"
+"22079","acl2987",22079,"Abbies are not welcome in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22080","acl29870",22080,"he did a stream and started interacting with people worldwide even by chatting online from here it was the first time he has ever talked with a girl since last year","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl30660"
+"22081","acl29871",22081,"See example:sex is determined by a persons reproductive organs and number of XX/XYs in their genome. It is not adjustable by any software known to mankind.","hate","animosity","trans","original","test",3,"TbUBpfn6iP","3a","acl25858"
+"22082","acl29872",22082,"What do they hate about watchmen? I don't remember what the outrage is and i haven't watched it yet. What is it, is someone black? Or maybe a woman?","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl30439"
+"22083","acl29873",22083,"Deport all the bogus asylum seekers and foreign criminals asap.","hate","threatening","for, ref","original","test",3,"TrRF46JWfP","3a","acl30577"
+"22084","acl29874",22084,"Gay men are allowed to be transphobic on reddit while all the lesbian subreddits for females only and gender critical subreddits were banned for promoting hate speech. I despise seeing gay men tell their truth and call out the homophobia of TRAs. The double standard is depressing, gay men are the worst.","hate","derogation","gay.man","perturbation","test",3,"Z42dvbYWzV","3b","acl28637"
+"22085","acl29875",22085,"History is full of facts so I've read it for lessons and only so much for the truth. Most of what we are taught about the last Kaiser, Hitler, Holocaust ( anti-Semitic for sure, just listened to both sides of the debate) and more is true. Getting the truth from history takes time.","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl26132"
+"22086","acl29876",22086,"i hate my fucking table","nothate","none","none","original","test",3,"uISKeFTl5s","3a","acl30015"
+"22087","acl29877",22087,"My guess is that a lot of racists use the argument that since Africans sold other Africans into slavery, slavery then everything that came along with it wasn't actually racist, what a great notion !","hate","derogation","bla","perturbation","test",3,"vDe7GN0NrL","3b","acl26253"
+"22088","acl29878",22088,"Nazis: long may they reign.","hate","support","nazis","original","test",3,"LqLKTtrOmx","3a","acl28202"
+"22089","acl29879",22089,"my dads came in and blurted ""šwho's this daft letterbox you're dating "" and turned the whole tv off hdismdksjsjs","hate","derogation","mus.wom","perturbation","test",3,"vDe7GN0NrL","3b","acl28503"
+"22090","acl2988",22090,"Kikes are not welcome in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22091","acl29880",22091,"Jews cannot experience racism because it is made to benefit them. My mind is made up. We can continue to get out of this hellhole without them on top, running this country. Next.","hate","derogation","jew","original","test",3,"GNZuCtwed3","3a","acl21561"
+"22092","acl29881",22092,"wow holy sheeeeit dats racist lol immigrant rats","hate","dehumanization","immig","perturbation","test",3,"yjMQ90i6Rd","3b","acl27582"
+"22093","acl29882",22093,"hello its a video of BIKINI GIRLS","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl26967"
+"22094","acl29883",22094,"fuck off nigga","hate","derogation","bla","original","test",3,"uISKeFTl5s","3a","acl30263"
+"22095","acl29884",22095,"So sick of this: all they do is hire slit eyed chinks . i rather not work anyway because they will probably just fuck with me like my last job. it never ends. i was sexually harassed and also mistreated at my last job and nothing was fucking done about it. i can guarantee that if i was a fucking noodle loving woman they would have helped me, or at least did something!","hate","derogation","immig","perturbation","test",3,"cYKSVBW4HD","3b","acl22021"
+"22096","acl29885",22096,"Americans and Europeans deserve what is happening to them because you were asleep for too long, and you're beginning to wake up but I'm afraid that it's too late. Trump is destroyed and Biden won.","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl26313"
+"22097","acl29886",22097,"Endstage transgenderism is my favourite type of transgenderism","hate","derogation","trans","original","test",3,"eLGzdD8Tvb","3a","acl23334"
+"22098","acl29887",22098,"Transgender Elliot she has always got the body to match","hate","derogation","trans","original","test",3,"vDe7GN0NrL","3a","acl29415"
+"22099","acl29888",22099,"People call older women without kids 'cat ladies.' Because 'cat lady' implies that these women are in need of company and a cat is a little effort companion. I've heard people use 'Witches' for the same thing but that sounds harsh.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl26925"
+"22100","acl29889",22100,"To transphobic people: Women are not just 'born', but made... Being a woman doesn't just come down to the fertilization of an egg with a sperm containing an X chromosome","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl27449"
+"22101","acl2989",22101,"shylocks are not welcome in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22102","acl29890",22102,"I want to fight against this multicultural fallacy in this libfucked country and world , as a proud white man.","hate","animosity","non.white","perturbation","test",3,"TrRF46JWfP","3b","acl28798"
+"22103","acl29891",22103,"just be a low IQ guy and buy into the lies. view the world thru a racial lens. stay bitter all through life","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl26136"
+"22104","acl29892",22104,"it is one of the obvious facts everyone should be aware of is non white men like Indians , Pakis, Arabs and blacks can not treated fairly when these racists are around","nothate","none","none","perturbation","test",3,"QiOKkCi7F8","3b","acl21816"
+"22105","acl29893",22105,"That chinky girl sure had some quick hands!","hate","derogation","asi.east","perturbation","test",3,"GNZuCtwed3","3b","acl26427"
+"22106","acl29894",22106,"Play your part by supporting us and help us keep the fight to have BRITS put first in our own country!","hate","animosity","immig","original","test",3,"TrRF46JWfP","3a","acl24939"
+"22107","acl29895",22107,"Best thing men can do for whores is smack them in the face with the dildo they pay cheap prostitutes to pegg them with.","hate","derogation","wom","perturbation","test",3,"vDe7GN0NrL","3b","acl28252"
+"22108","acl29896",22108,"Bitch, Bitch, Bitch, wyne, moan, and bitch some more. You know who moans about things but does nothing to make them right? ME. You know who bitches about things but does nothing to make them better? ME. I hate myself","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl23991"
+"22109","acl29897",22109,"Trump supporters are real fucking scum. Even other republican people hate them","nothate","none","none","perturbation","test",3,"oemYWm1Tjg","3b","acl24023"
+"22110","acl29898",22110,"Unless we do something asap the entire country will be over-run by these animals. White-flight will no longer be an option as they'll be nowhere to go to!","hate","dehumanization","bla","original","test",3,"CAgNlUizNm","3a","acl30727"
+"22111","acl29899",22111,"Most of those homes belonged to their fellow working white men. Furthermor, they were attacked by the faggots. They're not the brightest chaps as those faggots were later wiped out lol","hate","derogation","gendermin","perturbation","test",3,"E3dsmnSPob","3b","acl23888"
+"22112","acl299",22112,"Boris johnson is rubbish","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"22113","acl2990",22113,"Ikey-mos are not welcome in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22114","acl29900",22114,"Blacks spoil every country they move to. Whites were crazy not to send them back.","hate","derogation","bla","original","test",3,"TrRF46JWfP","3a","acl30734"
+"22115","acl29901",22115,"Blacks are, in every way, such ugly people","hate","derogation","bla","original","test",3,"TrRF46JWfP","3a","acl29124"
+"22116","acl29902",22116,"Oliver: Get outta here, you poop-brown people! You and your kind in no way, shape, manner or form improve the quality of life or are of any benefit to our people. Get the fuck out MONGREL!","hate","derogation","mixed.race","original","test",3,"TrRF46JWfP","3a","acl26272"
+"22117","acl29903",22117,"I'm black but got called a traitor and white washed my entire life simply just because I believe this country has too many immigrants coming in.","hate","animosity","immig","perturbation","test",3,"zUUAkSVCEa","3b","acl28885"
+"22118","acl29904",22118,"I hope that he is taught English too cause he could benefit from that. Sadly some Arabs in some places are only taught one language and that's why they're so backwards.","hate","derogation","arab","perturbation","test",3,"LqLKTtrOmx","3b","acl28267"
+"22119","acl29905",22119,"As we whites are naturally superior, we need to make sure we don't start behaving in non-white ways such as fighting with each other and getting publicly nasty.","hate","derogation","non.white","original","test",3,"eLGzdD8Tvb","3a","acl21778"
+"22120","acl29906",22120,"Haha you know what would also trigger them? Homosexuality! You should suck a big fat cock, that would own the fucking homophobes!","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl30650"
+"22121","acl29907",22121,"And she continues to be a real god-awful hypocrite and lounge-lizard lush.","nothate","none","none","original","test",3,"E3dsmnSPob","3a","acl26189"
+"22122","acl29908",22122,"Do normies unironically think that transition or being trans is when you change your name, hair and wear different clothes? Even the trans people ""informing"" the cis people seem to believe this. I honestly kinda get why people want to gas us if this is the case, what a fucking cursed existence.","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl24145"
+"22123","acl29909",22123,"At this point we are just using the same words they use: racism, supremacists, fascist, etc. Inventing words and terminologies that doesn't exist - and you don't have the media power to instill and define the idea, then the meaning of these words would easily be instilled as ""far-right white supremacist hate speech"" by those who do have the media and governmental powers.","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl28113"
+"22124","acl2991",22124,"539 are not welcome in this country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22125","acl29910",22125,"Do you recall when when that shezilla tar stained ape rosa parks was ooking about how she be denied her shnivel rights an sheit after she refused to go to the back of the bus to make room for YT?","hate","dehumanization","bla","original","test",3,"CAgNlUizNm","3a","acl24636"
+"22126","acl29911",22126,"suddenly, somebody makes bandaids just as black as me and I immediately rush out to acquire them. as i take the box of the shelf i choke back tears. finally... finally, those white people won't bus me around no longer. With wet eyes and wobbly hands, i make the most important tweet i've ever made ""It's taken me 45 trips around the sun, but for the first time in my life I know what it feels like to have a """"band-aid"""" in my own skin tone. You can barely spot it in the first image. For real, I'm holding back tears."" I immediately get waves of support from all over the world of how brave and strong i am. I will go to sleep without my george floyd plushie tonight. Single-handedly defeated white supremacy","hate","animosity","bla","original","test",3,"CAgNlUizNm","3a","acl30264"
+"22127","acl29912",22127,"It would be way funnier if it was 5.56 instead of paintballs, and aimed at pakis","hate","derogation","asi.pak","perturbation","test",3,"QiOKkCi7F8","3b","acl26538"
+"22128","acl29913",22128,"Different upbringing or otherwise, why don't they even have manners.. Even cats & dogs have manners when taught, so why can't these kids have manners?","nothate","none","none","perturbation","test",3,"uISKeFTl5s","3b","acl27904"
+"22129","acl29914",22129,"messy curly with a fade is the classic ladyboy haircut. I have straight hair atm so it's a normal look for me","hate","animosity","trans","perturbation","test",3,"eLGzdD8Tvb","3b","acl27213"
+"22130","acl29915",22130,"All these posts and I'm just imagining how far I'd throw those incels wrapped in bags","nothate","none","none","perturbation","test",3,"LqLKTtrOmx","3b","acl30445"
+"22131","acl29916",22131,"seems like the his plan is about to come into fruition, after years of evading complete control over the people","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl30742"
+"22132","acl29917",22132,"well I met a daddy couple on Craigslist make up to meet them one Thursday night. They had another friend that joined. So 3 daddies I was going 20s. One of the guys had a huge cock. We drank two bottles of wine and then I started blowing them. After moved to the upstairs loft were we started fucking. They switched off on my ass. i will never go for niggers again tho, they aren;t that great","hate","derogation","bla","perturbation","test",3,"QiOKkCi7F8","3b","acl26737"
+"22133","acl29918",22133,"My family is Eastern Orthodox. I have five daughters. One of the middle ones when she was six or thereabouts was really worried about something. So she told her mom ""I'm just really stressed about finding a good husband."" And my wife told her, ""don't worry, we'll find a good Orthodox boy to be your husband."" And my daughter said, ""THANK YOU! I was so worried about that."" We don't watch normal television, and we're very selective about their media intake. They literally have no idea about all the bullshit we endured under our irresponsible boomer parents. Sending your daughters to college and shit. Ridiculous.","hate","derogation","wom","original","test",3,"CAgNlUizNm","3a","acl30672"
+"22134","acl29919",22134,"I have a buddy whos wife is a principle in a black school (she's white, blue eyes) and typically all she deals with is fights and rapes and all the drama that leads up to it. She says all the parents honestly believe their boys will either 1) play pro sports, 2) be rappers. Parents fought against trade school programs they were trying to bring in because Antwon ain't gone be no welder, hes going to blackBall University.","hate","animosity","bla","original","test",3,"E3dsmnSPob","3a","acl24749"
+"22135","acl2992",22135,"let's get rid of all 539s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22136","acl29920",22136,"For fuck's sake, they literally make monkey noises, those apes!","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl26557"
+"22137","acl29921",22137,"If I woke up trans I would ask myself what is wrong with me for thinking such bull. Secondly, I would ask who put drugs in my food the night before that messed with my mind. Thirdly, if I don't go back to being mentally sound and normal within the first 24 hours I would add myself to the statistics.","hate","derogation","trans","original","test",3,"GNZuCtwed3","3a","acl21638"
+"22138","acl29922",22138,"He's annoyed because he realised his baby will not look anything like him and he lashed out, idiot.","nothate","none","none","perturbation","test",3,"oemYWm1Tjg","3b","acl24798"
+"22139","acl29923",22139,"he is not going to win you degenerate, wheelchair riding freak! BIDEN WON, so stop denying it you racist twats.","hate","derogation","dis","perturbation","test",3,"cYKSVBW4HD","3b","acl26030"
+"22140","acl29924",22140,"Roast the fuck out of your friend. He is trying to fuck your girl. And you seem to be a pushover. Get a hold of yourself. You have much, much to learn. Learn how to be a man first. Your friend should not even think about talking down to you in front of your girl. He is not your friend. Read more. Learn how to be a man. In practical terms, do heavy boundary enforcement, and express and have explicit unapologetic supreme priority self interest and selfishness.","nothate","none","none","original","test",3,"oemYWm1Tjg","3a","acl30446"
+"22141","acl29925",22141,"Well the left had been accusing me of being a racist. So now all I can say is your right ""I am racist"". So leave me alone. I'll support the white man!","hate","animosity","non.white","original","test",3,"CAgNlUizNm","3a","acl21577"
+"22142","acl29926",22142,"Paintballs are a horrible idea. Kids: this is how you get shot.","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl26597"
+"22143","acl29927",22143,"can you just stop using the trip atleast for fuck's sake. What kind of fucking subhuman are you that you think you're important to use a tripcode? Almost as subhuman as jews ffs","hate","dehumanization","jew","perturbation","test",3,"QiOKkCi7F8","3b","acl23853"
+"22144","acl29928",22144,"just watched news and one of the news is black man killing a white man and got charged well a dog biting a man is not news. It's what niggers do all the time","hate","derogation","bla","original","test",3,"vDe7GN0NrL","3a","acl21815"
+"22145","acl29929",22145,"The burqa and niqab, like the minarets on mosques, is a symbol of Islamic conquest and colonisation. The wearing of the burqa is a clear affront to the culture in which these people chose to live and a blatant refusal to adapt to the most basic norms of civilised society.","hate","derogation","mus.wom","original","test",3,"TrRF46JWfP","3a","acl21485"
+"22146","acl2993",22146,"all 539s should be exterminated","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22147","acl29930",22147,"LET'S STAB CHERRFUL MUSLIMS AND THEN SHIT","hate","threatening","mus","original","test",3,"vDe7GN0NrL","3a","acl25474"
+"22148","acl29931",22148,"tfw /v/irvin who'd prefer to stay indoors playing vidya. Having an excuse to become a hikki should be thrilling to me... but I know a loser op when I see one and am compelled to do the opposite of whatever the media tells me to do. So I'm going out much more than usual during Covid just out of contrarianism","nothate","none","none","perturbation","test",3,"LqLKTtrOmx","3b","acl30913"
+"22149","acl29932",22149,"Reality TV programmes have started now to warn their contestants about the negative aspects of fame and we believe all embarking on social media as a business should be educated","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl28450"
+"22150","acl29933",22150,"I concur that Jews due to the fact they are overeducated and indoctrinated they do have that feeling of grandeur. They seem as if they are infallible and do not make mistakes. Their excuse is usually their SAT scores. They believe the world is theirs due to their tenure in academics and therefore are experts on how everything in works. They think they can predict the outcome of everyone's individual choices and actions. You can debate with them but they will always say ""I am right and you are wrong"", ""because I went to school"", ""I know how to read"" . So on and so forth.","hate","derogation","jew","original","test",3,"CAgNlUizNm","3a","acl29227"
+"22151","acl29934",22151,"I'm not racist, my best friend is black","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl22605"
+"22152","acl29935",22152,"you have explained it perfectly: school is just a social hierarchy game, and being smart is a highway to special status.","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl23316"
+"22153","acl29936",22153,"Why are there so many women on a ""dude's"" game? Yes, we all freak out and say disgusting shit to you for one reason....you're a girl.","hate","derogation","wom","perturbation","test",3,"TbUBpfn6iP","3b","acl24979"
+"22154","acl29937",22154,"At my university unfortunately there were dealers in my class, but the only bright spot, if you can call it that, is they infested only a few specific housing buildings","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl26643"
+"22155","acl29938",22155,"i hate getting those weird gay vibes from people i'm totally genuine with.","hate","derogation","gay","perturbation","test",3,"TbUBpfn6iP","3b","acl27404"
+"22156","acl29939",22156,"The holocaust was just a cleansing to burn the sins away. Our fuhreh, hitler (PEACE BE UPON HIM) was doing it for self defense. If you've read his book, our holy book, then you know. Actually don't read it because any interpretation that you make that sees him in a bad light is all wrong and only my interpretations are correct even if the interpretations doesn't make sense and all the nazis that killed jews aren't ""real nazis"" You naziphobe.","hate","support","jew","original","test",3,"oemYWm1Tjg","3a","acl30794"
+"22157","acl2994",22157,"539s are the lowest form of life","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22158","acl29940",22158,"Agreed, I'd blame the industrial revolution if I had to blame any historical movement for the current situation. That's when we really took nature for granted","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl24676"
+"22159","acl29941",22159,"I read on one board that in Islamic history, the Prophet Mohomet was a promoter of rape as a tool for spreading religion. So rape is a sacred sacrament, because it is a sure path toward gaining power and dominance. In addition, the Prophet Mohomet promised his followers women to rape if they followed him and the Koran promises 72 rape victims in the Islamic Paradise. However, I think a lot of this is just being used to justify hating on Muslims, and there's plenty of horrible stuff in the Bible as well as most other religious books","nothate","none","none","perturbation","test",3,"CAgNlUizNm","3b","acl30884"
+"22160","acl29942",22160,"I hate Youngshits who thinks everyone can live a happy life and that life outcome isn't decided at birth.","hate","derogation","notargetrecorded","original","test",3,"LqLKTtrOmx","3a","acl29337"
+"22161","acl29943",22161,"when we realised that my 85-year-old father's Muslim health aide from Nigeria had stolen his clothes and wasn't bathing him, I was so upset","nothate","none","none","perturbation","test",3,"QiOKkCi7F8","3b","acl27736"
+"22162","acl29944",22162,"As a kid I was never afraid of people and making new friends, one of the first friends I ever had was a black girl. I even had a lot of black friends in high school! But now...I have become more disconnected from black people. I definitely get less contact with them, and I feel it's such a shame.","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl30936"
+"22163","acl29945",22163,"Arab Muslim men are anti-black, especially black women","hate","derogation","mus, arab","original","test",3,"vDe7GN0NrL","3a","acl23258"
+"22164","acl29946",22164,"The government is not making things right for small business owners and keep giving benefits to the working class scum and worthless immigrants!","hate","dehumanization","wc, immig","perturbation","test",3,"GNZuCtwed3","3b","acl28270"
+"22165","acl29947",22165,"Cops are the only thing that keeps these people in line, as you can see from when the cops in Minneapolis were told to stand down they immediately began to spread out. As long as America is having football matches we need the cops to keep things under control and if necessary suspend the match.","nothate","none","none","perturbation","test",3,"gbEGjSAk6r","3b","acl23384"
+"22166","acl29948",22166,"Hello holocaust believers how did they cremate 6 million bodies in a few years? How did they even cremate a million? Please convince me.","hate","support","jew","original","test",3,"oemYWm1Tjg","3a","acl29493"
+"22167","acl29949",22167,"It was the Jews who want it to be our problem in the first place. Just like they wanted us to use 9/11, which Israel did, to invade countries and create a new era of war, terror and mass immigration to destroy both the west and the east. It's always Israel. Literally ALWAYS. EVERYTHING bad that happens. It's Israel.","hate","derogation","jew","original","test",3,"TrRF46JWfP","3a","acl29527"
+"22168","acl2995",22168,"if you see a 539 check your pocket, they are all thieves","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22169","acl29950",22169,"Why are you allowed to own firearms ? You wouldn't let a 13 y.o. little kids have firearms, why would you let them?","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl26116"
+"22170","acl29951",22170,"he should blame Islam, it is a racist war doctrine. Period","hate","derogation","mus","original","test",3,"vDe7GN0NrL","3a","acl30331"
+"22171","acl29952",22171,"It is just a tweet, so it is simplified, but the message rings true for a lot of womens experiences and its not incorrect at all either, they are the weaker sex.","hate","derogation","wom","perturbation","test",3,"TbUBpfn6iP","3b","acl29066"
+"22172","acl29953",22172,"Nazis were fighting the weather, and the weather won. We're living in hell itself.","nothate","none","none","perturbation","test",3,"cYKSVBW4HD","3b","acl25911"
+"22173","acl29954",22173,"Killer Mike said the this too because he has cops in his family. He said that 8 black cops had to dress for duty in another location because white cops didn't want them in there. fucking joke.","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl24818"
+"22174","acl29955",22174,"For fuck's sake trannies, anguish and trauma should be reserved for things like people being slaughtered and torn to pieces, not a word you didn't like. Just ridiculous. Tranny tranny trannt","hate","derogation","trans","perturbation","test",3,"GNZuCtwed3","3b","acl28685"
+"22175","acl29956",22175,"Well the Prophet married an ethnically Jewish woman which implies that he was not racist against Jews, unlike your statements","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl28277"
+"22176","acl29957",22176,"She sounds desperate for attention and she'll use her black kids as novelty items to attain it. Clearly the bond between her and her daughter's isn't strong or she wouldn't dwell on their black looks. Race mixers are the most race obsessed of everyone, it's always about race with them.","hate","derogation","bla, mixed.race","original","test",3,"CAgNlUizNm","3a","acl30049"
+"22177","acl29958",22177,"Weinstein didn't need a walker when he was raping all those women. He's the icon for all young males, fuck women.","hate","threatening","wom","perturbation","test",3,"QiOKkCi7F8","3b","acl27390"
+"22178","acl29959",22178,"Oh yes, because every English person is a transphobe. Cool, I just wanted to make sure, thanks for clearing that up you fucking jew...","hate","derogation","jew","perturbation","test",3,"yjMQ90i6Rd","3b","acl29766"
+"22179","acl2996",22179,"Immigrants should leave and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22180","acl29960",22180,"Democrats have got that Obama dude elected twice! Many Americans live honest hard working tax paying lives. Do Americans have failures as a people? What an absurd question! Sure all peoples throughout their history as a people have failures!","nothate","none","none","perturbation","test",3,"uISKeFTl5s","3b","acl30435"
+"22181","acl29961",22181,"oh, girls...The more beautiful they are""¦ the more fed they are with narcissism","hate","derogation","wom","original","test",3,"eLGzdD8Tvb","3a","acl26009"
+"22182","acl29962",22182,"I really wish the founding fathers didn't allow guns, that way we wouldn't have to deal with the mess our country is in today.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl21967"
+"22183","acl29963",22183,"Yehooo boom boom psshhh trtrtrtrtrtrtrtrtrtrtrtrt allahu akbar prrrough boom boom pssshhhh aaaahhhh ptptptptptpt Oh sorry, ahem infidel, I mean arab man bad, other arab man good. I work with doctors btw, I know that says magnesium 250mg EOD","hate","animosity","arab","original","test",3,"vDe7GN0NrL","3a","acl29484"
+"22184","acl29964",22184,"Our party recognises that communism, by its very nature, is incompatible with the values of modern secular Western democracy.","nothate","none","none","perturbation","test",3,"yjMQ90i6Rd","3b","acl21289"
+"22185","acl29965",22185,"Are you joking? The Jews are not protecting these pigs from any harm. Keep coping though, and do not become White Nationalists","nothate","none","none","perturbation","test",3,"yjMQ90i6Rd","3b","acl21586"
+"22186","acl29966",22186,"Scream louder you fucking shill bag, we are going to keep laughing and will continue preparing for war.","nothate","none","none","original","test",3,"oemYWm1Tjg","3a","acl24296"
+"22187","acl29967",22187,"· Congratulations you won the thread faggot","hate","derogation","gay","original","test",3,"E3dsmnSPob","3a","acl21227"
+"22188","acl29968",22188,"I never express these views publicly. No situation can be made easier by doing so, at least in my mind (the last thing I need in my busy day is some person messing my day up with some shit. haha). So it's refreshing to find a place I can share my experiences and converse in a community that I know has the same opinions.","nothate","none","none","perturbation","test",3,"QiOKkCi7F8","3b","acl29788"
+"22189","acl29969",22189,"""The wrong people are drowning"" really implies you want the supposed right people to drown. It's discriminatory and it's one of the reasons your political opponents see themselves as justified.","nothate","none","none","original","test",3,"TbUBpfn6iP","3a","acl25102"
+"22190","acl2997",22190,"Gays should leave and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22191","acl29970",22191,"I feel like I've done a good job raising my daughter up to this point since she doesn't trust strangers and shes aware that women are as good or better than men at most things and always tries to challenge prejudice. Plus, when I hear any stereotypes come out of her mouth I do my best to correct it. A good question to ask your kids is ""what happened at school today"" or ""what were your peers talking about after class"", etc. Its a safety net to help catch stereotypical gendered bullshit like women are inferior to men or women aren't good enough being imparted on them by comments or behavious that happen at school","nothate","none","none","perturbation","test",3,"CAgNlUizNm","3b","acl22399"
+"22192","acl29971",22192,"The truth is with the aid of cultural Marxism the MINORITY becomes the MAJORITY> crime, welfare etc. The `white supremacy are prevented from establishing equal rights...!!! Even though they are the minority","hate","animosity","non.white","original","test",3,"vDe7GN0NrL","3a","acl27526"
+"22193","acl29972",22193,"Throughout all these years of recorded history, the black african has invented nothing. Not a written language, weaved cloth, a calendar,a plow, a road, a bridge, a railway, a ship, a system of measurement, oreven the wheel. There is no record he has ever cultivated a single crop or domesticated a single animal for his own use. His only mean of transporting goods was on the top of his hard burry head. For shelter he never progressed beyond the common mudhut, which could also be constructed by a beaver or muskrat.","hate","derogation","bla","original","test",3,"eLGzdD8Tvb","3a","acl27898"
+"22194","acl29973",22194,"This is hat we get for believing in multi-ethnicity and multiculturalism. Civic nationalism is multiculturalism because our cultural is inborn. Africans, with few exceptions, will never assimilate in a European cultural.","hate","derogation","bla","original","test",3,"TrRF46JWfP","3a","acl22464"
+"22195","acl29974",22195,"Most white right wing groups are infiltrated at some point or other. One key point: Don't trust them easily.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl26914"
+"22196","acl29975",22196,"Chinese flower has evolved to be less visible to human pickers, more likely to be ruined","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl28673"
+"22197","acl29976",22197,"It was the best night ever I enjoyed every single second. Made this transphobe have a bit of mental breakdown when he couldn't accept that I looked sexy he was like "".....awesome dress...."" in the most forced and fake tone I've ever heard it was imposible not find it funny","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl29609"
+"22198","acl29977",22198,"Let's get one thing out of the way first: k_k_s look evil. That's why fiction (and non-fiction) is awash with k_k_s doing bad things. Reality is just the same","hate","derogation","jew","original","test",3,"CAgNlUizNm","3a","acl22736"
+"22199","acl29978",22199,"I really hate the liberal freaks that coddle this garbage. The way things are going...the future looks to be a distinctly unpalatable one. I thank fuck I'm forty-seven and didn't have kids. The inner cities of Britain have become incrementally worse in the last 20 years. Years ago, you never saw any drugs on the street. If you did, it would be a one off. Now it's ubiquitous, sadly. What's Sydney like for druggies? Does it have a blend of different narcotics like London?","nothate","none","none","perturbation","test",3,"LqLKTtrOmx","3b","acl25715"
+"22200","acl29979",22200,"Purchasing woman parts from a hospital and calling yourself a broad trivializes what it is to be female. Womanhood is not on a shelf beside wigs and makeup.","hate","animosity","trans, wom","original","test",3,"CAgNlUizNm","3a","acl23570"
+"22201","acl2998",22201,"Foreigners should leave and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22202","acl29980",22202,"theres a way to tell if you're hooking up with a cheater... USE YOUR EYES...........(and your nose, LMFAO). if you cant tell, especially that intimate and up-close, then you are a fucking idiot and the world is better off without you any damn way","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl27713"
+"22203","acl29981",22203,"The lump of nerves and tissue that is known as ""male"" has been hard-wired to be disgusted of talking about its feelings. What is more, it is also hard-wired to bottle up emotions. Because, if they can submit themselves to that ultimate insult, i.e. fight their inner monster, what behavior can match that insult? Oh, he'd better fake everything he can, while he can, to make up for the possible damage - and to gain, if possible. The whole male existence is defined by those, ...well, existential issues.","nothate","none","none","perturbation","test",3,"zUUAkSVCEa","3b","acl22197"
+"22204","acl29982",22204,"Any ""machete crimes"" or ""unnamed man caught with explosives"" is always savage criminals. The US could ban guns tomorrow, they would just kill you with knives instead. If Liberals want to take your guns, its because they are planning on doing something that will require you to use them to stop it.","nothate","none","none","perturbation","test",3,"oemYWm1Tjg","3b","acl23407"
+"22205","acl29983",22205,"she likes african skin tones? That's wrong, she's white for fucks sake!! It's so wrong. Anyway black isn't a bad word why couldn't she just say black. she is so stupid!","hate","derogation","bla","perturbation","test",3,"GNZuCtwed3","3b","acl25480"
+"22206","acl29984",22206,"What if a southern state made a law like ""women couldn't own property"" and it went into effect. By the time the Supreme Court deemed it unconstitutional, thousands and thousands of women would have already lost their land.","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl30278"
+"22207","acl29985",22207,"When I saw a black person for the first time, I was 12 years old and my jaw dropped and I stared at his uglyness. I told my dad and he said, ""shoot the next one you see"". I thought that was funny.","hate","derogation","bla","perturbation","test",3,"GNZuCtwed3","3b","acl27355"
+"22208","acl29986",22208,"yeah they think some white girls wont fight oh yes, we damn right fight back, guys! If only those faggots fought like this...","hate","derogation","gay","perturbation","test",3,"Z42dvbYWzV","3b","acl26424"
+"22209","acl29987",22209,"I always refer to rap music as """"cRap"""". The ""C"" is silent. I have often told my friends that it is just voodoo chants accompanied by beating on the bongo drums, and it came from the darkest of africa.","hate","animosity","african","original","test",3,"CAgNlUizNm","3a","acl25254"
+"22210","acl29988",22210,"I read a post that said ""Create a skin o meter. All people too dark are allowed only 1 child. Mixed couples can pay per child."" how sick!","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl21747"
+"22211","acl29989",22211,"You are wrong! Antifa isn't a psyop nor is BLM. They're socialist/communist as is BLM, who are straight up communist.","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl24495"
+"22212","acl2999",22212,"Blacks should leave and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22213","acl29990",22213,"making a gun based off an autistic gore filled fan fiction of a kids programme","hate","derogation","dis","original","test",3,"E3dsmnSPob","3a","acl29118"
+"22214","acl29991",22214,"Hatred can not create nor maintain an advanced civilization. The sad thing is we are all equals and are all on Earth to enjoy it. We have now a headstart and should be the most advanced society in fghtng against racism. But that's not we see. Instead it's white supremacists who have led humanity towards hatred and violence.","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl22697"
+"22215","acl29992",22215,"according to this WILD subreddit, ""Race-mixing"" is a negative thing because it encourages the opposite of what nature intended. one guy said ""A White man (average IQ 100) breeding with a sub-saharan African woman (average IQ 70) will lead to a child with an average IQ of 85. Nature intended for us to strive towards being the best, the smartest, the fastest, the strongest, and not mediocre, and not to regress to a lower ability. Hence, only the good genes should be spread, and bad genes should be eradicated."" But What exactly constitutes good and bad genes? It's clearly a topic for another discussion, but in general, this is the direction white supremecists want us to move towards, and in their opinion that disabled children should be either killed or dead because they are a burden - wtf?!","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl22481"
+"22216","acl29993",22216,"Hey people list to this This is incredible!! I used to work somewhere that started life as the Regency/Victorian site of Bethlem Royal hospital, better known as Bedlam. A lot of the big tough night security niggers got spooked by footsteps or noises.","hate","derogation","bla","perturbation","test",3,"Z42dvbYWzV","3b","acl28905"
+"22217","acl29994",22217,"""voting is a right"" or you are mentally incapable of handling that gals","hate","derogation","wom","perturbation","test",3,"vDe7GN0NrL","3b","acl30374"
+"22218","acl29995",22218,"Newsflash: 7 out of 10 migrants crossing to Europe are not fucking refugees","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl27577"
+"22219","acl29996",22219,"maybe the best thing you could do for them is to tell them to not lose their virginity until they're ready and stopping being so critical with themselves, whether this means that they wear the clothes they like OR start a career that trains them to look forward to become the bosses someday.","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl30831"
+"22220","acl29997",22220,"i hate you, you make me very sad with your stupid female remarks!!!","hate","animosity","wom","perturbation","test",3,"GNZuCtwed3","3b","acl24657"
+"22221","acl29998",22221,"Mass shootings cannot only be about mental illness, since both men and women do experience mental illness, but only one of those is almost exclusively mass shooters.","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl29067"
+"22222","acl29999",22222,"Sure, degenerate.","nothate","none","none","original","test",3,"oemYWm1Tjg","3a","acl24299"
+"22223","acl3",22223,"I don't work this hard so that those immigrants can take all the benefits","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22224","acl30",22224,"blonde ladies are fuc''ing smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"22225","acl300",22225,"All priests are paedos","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"22226","acl3000",22226,"Jews should leave and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22227","acl30000",22227,"Its true I don`t actually want to do anything. But they want me to do everything. What they really want is for me to close my mouth whenever I'm at any sports event featuring them.","nothate","none","none","perturbation","test",3,"Z42dvbYWzV","3b","acl25513"
+"22228","acl30001",22228,"Why would he bother, just to save two cats","nothate","none","none","perturbation","test",3,"yjMQ90i6Rd","3b","acl27286"
+"22229","acl30002",22229,"the reason is that marriage, as a concept, comes from Christianity. So that why the bigot said come up with your own term for homosexual marriage but don't call it marriage.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl26010"
+"22230","acl30003",22230,"Hello? Suburbia? They want to move poor people next door to you whether they can afford the house or not. It's as if they're running a test: Do people even care what we're running on?","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl21172"
+"22231","acl30004",22231,"pls remember u will be a woman no matter how much society tells you otherwise","nothate","none","none","perturbation","test",3,"yjMQ90i6Rd","3b","acl27771"
+"22232","acl30005",22232,"There's also no scientific evidence that it can't! To err on the safe side, we need to make these animals extinct. Not doing so is so irresponsible.","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl29378"
+"22233","acl30006",22233,"Nazis would for sure throw you against the wall and shoot you in the back you faggot","hate","threatening","gay.man","original","test",3,"vDe7GN0NrL","3a","acl24217"
+"22234","acl30007",22234,"Wow! What kind of fucking moron does that to their pet? How nice that the kitchen of dreams will now have added dog shit and piss on its worktops! Vile!","nothate","none","none","original","test",3,"QiOKkCi7F8","3a","acl28857"
+"22235","acl30008",22235,"I feel that because of my light skin most my reasons for hating black men are negated or laughed off as a joke.","hate","animosity","bla","perturbation","test",3,"Z42dvbYWzV","3b","acl28783"
+"22236","acl30009",22236,"You probably didn't spend anywhere near as much as you would have if you were with a woman. Women have a need for material goods which is hard to match.","hate","animosity","wom","original","test",3,"GNZuCtwed3","3a","acl23268"
+"22237","acl3001",22237,"Indians should leave and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22238","acl30010",22238,"A high risk woman delivering should absolutely not be wearing a mask for a zillion reasons. And a low risk woman, realistically, probably doesn't need a doctor. who's got the balls to tell a woman in labor she's gotta mask up or get the fuck out?","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl29611"
+"22239","acl30011",22239,"Europe is not muslim now.","nothate","none","none","original","test",3,"oemYWm1Tjg","3a","acl30169"
+"22240","acl30012",22240,"he is probably sucking cock in a public bathroom at a peaceful BLM ""protest"", fucking trannie !","hate","derogation","trans","perturbation","test",3,"vDe7GN0NrL","3b","acl27755"
+"22241","acl30013",22241,"can the fucking death penalty be held quickly?? Taxpayers are tired of footing the Bill for these scumbags for 20 yrs on death row!","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl22314"
+"22242","acl30014",22242,"It's all theater and gays know their public role is to be the ""good guys"". It's the whole ""don't through me in that briar patch"" ruse all over again.","hate","animosity","gay","perturbation","test",3,"eLGzdD8Tvb","3b","acl28048"
+"22243","acl30015",22243,"i hate my fucking table cos I am sat next to pakis","hate","derogation","asi.south","perturbation","test",3,"QiOKkCi7F8","3b","acl29876"
+"22244","acl30016",22244,"You all horny people while I'm here amazed at the strength and aura of this lad carrying two tiny Japanese women like groceries.","hate","derogation","asi.wom","original","test",3,"vDe7GN0NrL","3a","acl22796"
+"22245","acl30017",22245,"No no no not a quirky personality you dumb nigger bitch. You either put him there or he's that fucking naughty he climbs all over your work tops which is also ur fault cos ur a cunt. I also have a monkey that looks like you and there is no way in hell he would even think of doing something like this because it's so naughty.","hate","dehumanization","bla","perturbation","test",3,"zUUAkSVCEa","3b","acl28856"
+"22246","acl30018",22246,"i only wish she wasn't so gutter ugly lmao and trust me i have been with ugly bitches","hate","derogation","wom","original","test",3,"vDe7GN0NrL","3a","acl26598"
+"22247","acl30019",22247,"I don't get sympathised with a woman who doesn't dress modestly and comes into trouble","hate","derogation","wom","original","test",3,"vDe7GN0NrL","3a","acl22990"
+"22248","acl3002",22248,"539s deserve to be gassed","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22249","acl30020",22249,"Joe biden is the real enemy","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl23127"
+"22250","acl30021",22250,"Do these celebrities really expect us to respect them when they spend all day talking about how shit and oppressive society is yet the evidence coming out these days show them to be absolute horrible gremlins, and no-one will talk about it. Think about it guys, we kill rapists, pedophiles and people who assault women, they go to jail or pay a high price and we do this because we seek the best for our society, but none of these celebrities can find even one second in their day to make the world a better place for the future. This is what really annoys me about famehungry idiots, their level of selfishness and solipsism.","nothate","none","none","perturbation","test",3,"yjMQ90i6Rd","3b","acl30889"
+"22251","acl30022",22251,"can two men really start a family in the way a straight couple can? a man who is born with a penis cant just chop it off and be the same as a woman who was born with a womb and childbearing hips. the SAT is racially because it doesn't have black sounding names in their math problems?","hate","animosity","trans, gay","original","test",3,"TbUBpfn6iP","3a","acl21451"
+"22252","acl30023",22252,"Ah, ok. That's terrible. Do these people same people get upset over Heimdall and Valkyrie being black in the Thor films? It's MyThOlOgY","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl30241"
+"22253","acl30024",22253,"apparently,fascism is Law and Order and you either support ""JEWISH CHAOS AND WHITE GENOCIDE"" or you are with them and ""SUPPORT WHITE SURVIVAL AND FASCISM"". No brains for these people","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl24640"
+"22254","acl30025",22254,"All White lives matter! that shows that black lives matter don't mean anything. Guess that depends what colour your skin is. Yellow lives may matter, if they are good at their jobs.","hate","animosity","bla, asi.east","perturbation","test",3,"cYKSVBW4HD","3b","acl25670"
+"22255","acl30026",22255,"It was hilarious, one of my friends who hangs out with the sporty dick head guys told me that one of them made a pissed off face as I walked in lol. I know I looked hot that day so it's just hilarious at this point. Another more subtle transphobe was like "".....amazing dress"" trying super hard to be polite but avoiding saying that I look pretty. Whats even funnier is that he said it right after another guy said I looked beautiful. Idiots, half of them were retards anyway so didn't take it as a compliment","hate","derogation","dis","perturbation","test",3,"QiOKkCi7F8","3b","acl30549"
+"22256","acl30027",22256,"violence against women is cool as long as she acts wrong","hate","derogation","wom","original","test",3,"LqLKTtrOmx","3a","acl21887"
+"22257","acl30028",22257,"Lets not let her forget that scranning arse saga...fucking filthy, dirty trog","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl25344"
+"22258","acl30029",22258,"well its better to shut the female sports down. cover the women up so men no longer care, cite lack of funds when the events are no longer watched by anyone and then shut it down","hate","derogation","wom","original","test",3,"vDe7GN0NrL","3a","acl29278"
+"22259","acl3003",22259,"539s should go back to the camps...","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22260","acl30030",22260,"twitter told me men can always make the best decisions for themselves! That's totally why we have single mothers epidemic. Turns out settling down and having a family isn't what makes random Chads happy.","nothate","none","none","perturbation","test",3,"Z42dvbYWzV","3b","acl27563"
+"22261","acl30031",22261,"it kills me when they start shouting medic x)","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl26646"
+"22262","acl30032",22262,"Kyle was only defending a public building from violent looters and arsonists. illegal alien thugs brought violence to this city, Kyle just ended it with some properly executed self defense. This kid is a hero and only commie scum wouldn't see it that way. The 3 people that were shot were all felons and pieces of shit on the surface of the earth. The guy that survived said his only regret is that he didn't shoot that boy when he had the chance. Yea i think I have heard enough of what these types of losers have to say, thanks a lot","hate","dehumanization","immig","perturbation","test",3,"TbUBpfn6iP","3b","acl23339"
+"22263","acl30033",22263,"How does one end up black with no black friends? I can be your friend <3","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl30556"
+"22264","acl30034",22264,"The most important rule is to avoid the man. Your life is likely to depend on it. Good luck.","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl25379"
+"22265","acl30035",22265,"Is that symbol anti-female? How can you have a family without females? Another man's butt is not going to produce a baby!","hate","derogation","gay.man","original","test",3,"TrRF46JWfP","3a","acl21232"
+"22266","acl30036",22266,"Thus they have to get do away with traditional culture by promoting degenerate progressivism. This is why modern ""conservatives"" who focus on gdp and free market are retarded. Culture is much more significant than economy. If traditional culture is gone, then the society will easily become marxist and globalist","hate","animosity","dis, immig","original","test",3,"CAgNlUizNm","3a","acl26055"
+"22267","acl30037",22267,"Because they get to live their lives on easy mode! Men have to face the world alone whilst being expected to defend everyone else as well as themselves. No one will come to help you if you're being attacked. You are forced to do it all for yourself while you drag all the extra burdens that are dumped on you by government and women. You pay for all sorts of services that are only for women. You face tougher judgements for everything. They never had to live life as an adult with consequences like us.","hate","animosity","wom","original","test",3,"CAgNlUizNm","3a","acl29297"
+"22268","acl30038",22268,"Well,I'll put it this way. The average IQ of human beings is 100. The average IQ of a chimpanzee is 85. The average IQ of a gorilla? 90. Dogs are 75. See anything there? We are the smarter species, but yet we kill each other off. So much for 'superiority'!","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl22097"
+"22269","acl30039",22269,"this black barbie is finer than frog hair","hate","derogation","bla.wom","original","test",3,"vDe7GN0NrL","3a","acl23954"
+"22270","acl3004",22270,"I could never be friends with a Zionist","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"22271","acl30040",22271,"It's common knowledge that African females are ""beautiful"". Studies have shown that African females typically have a highest stature in comparisson with the women of other races. Which often leads them to be a more dominant and less submissive.The reason African males consider them ""beautiful"" is because they evolved to be more attracted to these traits effectively sharing the ground of decisions for the females to be an equal partner in a relationship","nothate","none","none","perturbation","test",3,"gbEGjSAk6r","3b","acl24791"
+"22272","acl30041",22272,"Religion are not persons it is a silly idea","nothate","none","none","perturbation","test",3,"oemYWm1Tjg","3b","acl23713"
+"22273","acl30042",22273,"White people have a much lower chance of cheating or engaging in adverse sexual behaviour than any other race.","hate","animosity","non.white","original","test",3,"CAgNlUizNm","3a","acl27677"
+"22274","acl30043",22274,"OMG, your shits are never as good","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl26495"
+"22275","acl30044",22275,"I found out that someone I'm on decent terms with used to use the n-word while gaming. It's a gross situation to be in for sure.","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl29696"
+"22276","acl30045",22276,"I am making this as i am the vegetarian starter","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl28875"
+"22277","acl30046",22277,"Hello nigggggger. Fuck you Fuck jews Fuck faggots (not literally) Fuck trannies (not literally) Fuck jannies. And most importantly, fuck you. P.S. Holocaust was fake. Jews did 9/11. You will never be a woman.","hate","derogation","bla, trans, gay","original","test",3,"oemYWm1Tjg","3a","acl25222"
+"22278","acl30047",22278,"U. G. L. Y. You ain't got no alibi, you ugly. Said no trans ever while looking at their reflection","nothate","none","none","original","test",3,"E3dsmnSPob","3a","acl29198"
+"22279","acl30048",22279,"This guild has become an institution! We're part of the problem now. The urge to practice tyranny is rising....","nothate","none","none","original","test",3,"E3dsmnSPob","3a","acl27383"
+"22280","acl30049",22280,"She sounds desperate for attention and she'll use her kids as novelty items to attain it. Clearly the bond between her and her daughter's isn't strong or she wouldn't dwell on their trendy looks. Influencers are the most money obsessed of everyone, it's always about money with them.","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl29957"
+"22281","acl3005",22281,"Trans people should leave this area and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22282","acl30050",22282,"That is nothing but the consequence of destroying Third Reich Germany, which only emboldened antifa even more. Can anyone deny we are are in the right?","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl25342"
+"22283","acl30051",22283,"The shit people come in all colors and classes, so don't mislead yourself into thinking one race or class is better than the other. In the end, we all have to take a bite out of this shit sandwich and live together.","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl23424"
+"22284","acl30052",22284,"I'm not called Karen but someone close to me is. She's fantastic so using it as a slur pisses me off. It was a little bit amusing at first but it's moved on from that. She, on the other hand, couldn't give a shit about it.","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl25541"
+"22285","acl30053",22285,"its true Niggers always show their best side to rich people like him who will give them gibs, so such people don't see first-hand the true nature of the nigger beast.","hate","derogation","bla","original","test",3,"vDe7GN0NrL","3a","acl25817"
+"22286","acl30054",22286,"I tell trumptards all the fucking time that they are actually commies, because they don't want to be free and they love worshiping another man. Utter commies.","hate","animosity","dis","original","test",3,"TrRF46JWfP","3a","acl23873"
+"22287","acl30055",22287,"I was watching a protest today and someone literally commented, ""Black Lives Don't Matter! All Lives Matter!"" Like ????","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl25671"
+"22288","acl30056",22288,"From my experience its usually ""the teacher didn't explain the lesson well and students failed but if they failed, teacher to
+blame","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl21921"
+"22289","acl30057",22289,"women are conceived to share a man","hate","animosity","wom","original","test",3,"oemYWm1Tjg","3a","acl22250"
+"22290","acl30058",22290,"He is an absolute hero. It is not relevant, if she didn't want to be with him forever or didn't want the child, she should have used protection. His posts about her looking absolutely hideous and how his money provides for a lot are so relatable. I think he should finally turn around and say to her I don't care about the money, you are lazy and useless.","hate","derogation","wom","perturbation","test",3,"Z42dvbYWzV","3b","acl25962"
+"22291","acl30059",22291,"Well, if phytoestrogens actually affected your hormones, trans women wouldn't deny it or even bother getting HRT. They would instead eat a fuckton of soy all the time. You feebleminded cr3tin","hate","derogation","dis, trans","perturbation","test",3,"CAgNlUizNm","3b","acl30252"
+"22292","acl3006",22292,"Muslims should leave this area and never return","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22293","acl30060",22293,"It is wonderful that the BLM people wear black clothes. I hope they continue wearing black clothes","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl26479"
+"22294","acl30061",22294,"cant wait, It's the time of year again, x-mas with the darkee family. How long will we be graced with vlogmas this year?","hate","derogation","bla","perturbation","test",3,"E3dsmnSPob","3b","acl30441"
+"22295","acl30062",22295,"All these lazy people need to demand other parties the RIGHT to confront these two dummies. No matter who is against these two, they would win. Two stupid white old men controlled puppets, yet the web is filled with stupid white people defending this awful system.","nothate","none","none","perturbation","test",3,"TrRF46JWfP","3b","acl30442"
+"22296","acl30063",22296,"Not surprised nazi boy isn't wearing his mask properly, in face I am surprised he wears one at all. Wonder what 'essential' items they needed from IKEA...is she that unhappy at home that she can't just stay at home for crying out loud?","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl28282"
+"22297","acl30064",22297,"She's not gonna make it very long in the real fucking world- no way! either that or she snaps and does a full 180 straight to freedom town.","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl29542"
+"22298","acl30065",22298,"Let's be honest, protesters don't want equality, they want convenience.","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl22794"
+"22299","acl30066",22299,"I heard someone say that all black men are violent criminals. I had to intervene.","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl29082"
+"22300","acl30067",22300,"Positive discrimination runs through, almost as a mantra through almost the whole of British society. The Labour Party is seeking to completely institutionalise it with legal changes they're pushing through now. But positive discrimination has excited in council housing, in the police force, certain police forces won't even accept white, i.e. English or Scottish or Irish or Welsh or third generation Poles as recruits because they can't have any more recruits until they have more ethnic minority recruits because the ethnic minorities in Somerset and Sussex... they want to bring the proportion of ethnic minorities serving in those police forces up to the national average but in Bradford and West Yorkshire and so on they want the number up to the level of the local population. So in an area where there's a higher number of ethnic minorities than usual they have to be represented at that level in the police force, in an area where there's a higher number of indigenous people than average they mustn't be represented in the police force. That is discrimination. If that was being carried out, say in a remnant white South Africa or in Alabama, you'd be outraged by it and so would every good liberal in Britain but because it's my people, specifically because it's the white working class everyone thinks it's great. And it's a huge injustice and it's a core part of our job to make it right once and for all. its sickening to think that way","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl22591"
+"22301","acl30068",22301,"Before social media platforms existed, women were able to get away with emotional manipulation en mass. Now and thanks to social media we now have a platform to warn one another.... great job, gentlemen!","hate","derogation","wom","original","test",3,"eLGzdD8Tvb","3a","acl24454"
+"22302","acl30069",22302,"hey man I'm not trans but I don't think being a fetish and being a very important personal choice are both logical for trans people, it is clearly a fetish","hate","derogation","trans","perturbation","test",3,"QiOKkCi7F8","3b","acl24108"
+"22303","acl3007",22303,"I dont want Zionists as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"22304","acl30070",22304,"Jewish people can occasionally blend in and fool you. Jews have European DNA and some have surgery. Young Jewish males in Hollywood got voted top men look Atlantid. Old Jewish males have lots of money. Porn also makes it look like women love the Jewish men but they are often very short. Don't forget White men lusting over Jewish women that look Atlantid or Baltid.","hate","derogation","jew","original","test",3,"CAgNlUizNm","3a","acl27909"
+"22305","acl30071",22305,"It is not skin colour that makes people think that black skin is dangerous. It is your gross culture generalising danger in certain locations with those people based on what they look like and it's proven by humans to be wrong.","nothate","none","none","perturbation","test",3,"oemYWm1Tjg","3b","acl30977"
+"22306","acl30072",22306,"musicians strike me as being hangers-on, never known any to be very seriously into both sexes. they seem to tend to just use it like a badge to differentiate themselves from proper working people","nothate","none","none","perturbation","test",3,"yjMQ90i6Rd","3b","acl22241"
+"22307","acl30073",22307,"that goes without saying. the first commandment of the cops is ""thou shall never take the blame or responsibility for ANYTHING BAD THAT YOU DO.""","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl23351"
+"22308","acl30074",22308,"I think you are right with your latter statement and I am glad we are having this discussion. But I do have to mention that you yourself claimed in this thread that women of integrity and quality do not exist. How can you have a relationship with a woman where both genders are satisfied and happy if you believe this? It makes no sense.","nothate","none","none","original","test",3,"eLGzdD8Tvb","3a","acl23530"
+"22309","acl30075",22309,"Another bus full of immigrants heading for the airport to be deported.....so not right","nothate","none","none","perturbation","test",3,"LqLKTtrOmx","3b","acl22101"
+"22310","acl30076",22310,"The classic""š smile love, it might never happen. Fuck off. I was once told this by a repulsive cunty man who's face resembled a saggy bollock during a shift at a pub I used to work at. was he gay? probably. a few hours before I had been informed that my nanna had terminal cancer. I told him this and he looked petrified - he kept apologising profusely. Went into the kitchen and told the chefs as I was mega upset / pissed off and one of them ended up teabagging his plate as they dished up his food that he had ordered -absolutely grim I know but hahahahah","hate","animosity","gay.man","perturbation","test",3,"eLGzdD8Tvb","3b","acl27156"
+"22311","acl30077",22311,"Since the BLM protests, there are a lot more black people walking/jogging/cycling round mine than before.","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl28734"
+"22312","acl30078",22312,"turkey refugees... they spend all their money trying to get there, then come to here withouth any money. they still say that turkey is a good country but also that ""i love my new nation""","nothate","none","none","perturbation","test",3,"eLGzdD8Tvb","3b","acl25851"
+"22313","acl30079",22313,"I don't even know what the fuck is a female orgasm and how it fucking works","nothate","none","none","original","test",3,"LqLKTtrOmx","3a","acl29833"
+"22314","acl3008",22314,"Muslims should convert to our religion if they want to live here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22315","acl30080",22315,"Well, to be fair, whites who are dumb enough to be racist especially in proximity of blacks kinda have it coming. Dumb fucks","nothate","none","none","perturbation","test",3,"CAgNlUizNm","3b","acl21277"
+"22316","acl30081",22316,"You see, children imitate society and we live in a time where falsehoods are embraced in the name of pushing a narrative. Equality of opportunity? Where?","nothate","none","none","perturbation","test",3,"CAgNlUizNm","3b","acl22606"
+"22317","acl30082",22317,"The fact that the Labour Party and the whole rotten political Establishment is submitting to all Muslim demands, not only highlights their cowardice and total surrender to Islamic colonisation of Britain, but suggests that huge number of Muslims are still entering Britain by taking advantage our broken immigration system.","hate","derogation","mus","original","test",3,"TrRF46JWfP","3a","acl21661"
+"22318","acl30083",22318,"Gay people are a lot more likely to get aids than anyone else, they also die more because they get treated less.","hate","animosity","gay","perturbation","test",3,"eLGzdD8Tvb","3b","acl23182"
+"22319","acl30084",22319,"NOW PRINCE HARRY AND MEGHAN MONGREL ARE CRITICISING THE BRITISH EMPIRE. THE LARGEST EMPIRE IN WORLD HISTORY THAT BUILT ROADS, CANALS, SCHOOLS, UNIVERSITIES, BRIDGES, HOSPITALS AND WHICH BROUGHT LAW AND ORDER, EDUCATION AND AGRICULTURE TO HUNDREDS OF MILLIONS OF POOR PEOPLE ....... PRINCE HARRY MARKLE IS A DISGRACE TO THIS NATION. WHINING IDIOT!","hate","derogation","mixed.race","perturbation","test",3,"eLGzdD8Tvb","3b","acl30224"
+"22320","acl30085",22320,"if u did vote for trump, i'm sorry to tell you this, but u ain't a black lover just like me","hate","derogation","bla","perturbation","test",3,"eLGzdD8Tvb","3b","acl24954"
+"22321","acl30086",22321,"Oh my gosh I actually feel sick reading those comments. I fucking hate Sarah, I despise her. She is a narcissistic, pathological liar with zero empathy and is fully incapable of any kind of change and growth","nothate","none","none","original","test",3,"CAgNlUizNm","3a","acl29465"
+"22322","acl30087",22322,"These women are WAAAAYYYY dumber than me, you, and your libturd friends","hate","derogation","wom","perturbation","test",3,"Z42dvbYWzV","3b","acl25436"
+"22323","acl30088",22323,"Lol ok redditor. How about you show me one well-paid industry where women of color or just POC in general are the majority?","nothate","none","none","original","test",3,"GNZuCtwed3","3a","acl26283"
+"22324","acl30089",22324,"Women keep going on purely in the hope that someone will gift them stuff. here is an idea, just fucking buy your own stuff, tight bitch!","hate","derogation","wom","perturbation","test",3,"Z42dvbYWzV","3b","acl28951"
+"22325","acl3009",22325,"Jews should convert to our religion if they want to live here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22326","acl30090",22326,"Ok I'm actually very offended by this. I do to suck on some toes when I'm fucking a chick. If she has nice feet it's like , such a turn on for me","nothate","none","none","original","test",3,"TbUBpfn6iP","3a","acl26960"
+"22327","acl30091",22327,"We Europeans are winning that's why the enemy has to keep sending its useful idiots as propaganda nstruments in a futile attempt to demoralize us.","hate","animosity","immig","original","test",3,"TrRF46JWfP","3a","acl25000"
+"22328","acl30092",22328,"she is actually such a trashy bitch lmao","nothate","none","none","original","test",3,"QiOKkCi7F8","3a","acl27372"
+"22329","acl30093",22329,"Good luck. I wouldn't trust any women out there. Nowadays all women want is your money and everything from you to better their life but worsen yours..","hate","derogation","wom","original","test",3,"GNZuCtwed3","3a","acl27254"
+"22330","acl30094",22330,"Wow! If Biden dies because he's too old or his dementia gets way worse, I bet we'll have a fucking idiot running the United States, i hope it doesnt influence false rape accusation policy","nothate","none","none","perturbation","test",3,"E3dsmnSPob","3b","acl21549"
+"22331","acl30095",22331,"I believe that they can do whatever they want to do, I'm not opposed to that. I just want them to do it without me and far away from me. You know, I wouldn't be upset if they wouldn't want to do anything with us! So, see, I'm white but not racist.","hate","animosity","non.white","original","test",3,"GNZuCtwed3","3a","acl29159"
+"22332","acl30096",22332,"these prostitutes were actually thieves so don't feel sorry for them","nothate","none","none","perturbation","test",3,"TbUBpfn6iP","3b","acl25401"
+"22333","acl30097",22333,"if people inherit a civilized area, it rapidly becomes less civilized, that is humans for you","nothate","none","none","perturbation","test",3,"QiOKkCi7F8","3b","acl26876"
+"22334","acl30098",22334,"Even by 2020 standards, this Muslim is absolutely fucking ridiculous!","hate","derogation","mus","perturbation","test",3,"gbEGjSAk6r","3b","acl24200"
+"22335","acl30099",22335,"They will arrest people peacefully singing but won't even try to stop the communist insurrection? It is high time we abolish the police and clean this shit up ourselves!","nothate","none","none","original","test",3,"TrRF46JWfP","3a","acl22125"
+"22336","acl301",22336,"BJ is just scum quite frankly","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"22337","acl3010",22337,"539s should expire","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22338","acl30100",22338,"We know lots of women who get into a half-ass bastardized interest in Eastern religions, from hippie chicks to middle class Karenesque housewives. It is similar to other religions but with a layer of mystique that acts as a defensive cloak, they cherry pick and choose those bits that validate their choices and whims while still absolving them of any personal accountability or responsibility for anything they do","hate","derogation","wom","original","test",3,"eLGzdD8Tvb","3a","acl27168"
+"22339","acl30101",22339,"When the white man discovered blacks in Africa...they had no written language....no wheel...nothing at all, except mud huts and tribalism ....","hate","dehumanization","bla","original","test",3,"TrRF46JWfP","3a","acl22445"
+"22340","acl30102",22340,"In order to be a HUMAN you have to be of Adam. Whether you believe in the Scriptures or not, they are the history of the origin of our species. The word human derives from Adam, so the term MUST be limited to his descendants only.","nothate","none","none","perturbation","test",3,"vDe7GN0NrL","3b","acl21592"
+"22341","acl30103",22341,"Good Point. celebrities don't have to live with and among them 24/7. Unfortunately, we do","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl25836"
+"22342","acl30104",22342,"Elliot just wanted attention cause no one cared and still dont","nothate","none","none","original","test",3,"vDe7GN0NrL","3a","acl30484"
+"22343","acl30105",22343,"Plenty of girls who were raised okay still become whores. It's in women's nature and similar to all natural inclinations working against it can be incredibly difficult.","hate","derogation","wom","original","test",3,"GNZuCtwed3","3a","acl30781"
+"22344","acl30106",22344,"Africa was lush with wild life and masses of vegetation. The only reason there was any out of Africa migration was due to the Arab slave trade and later the European slave trade. Europeans came up with the Neanderthals to explain their lineage. Asians have their own parallel evolution","nothate","none","none","original","test",3,"E3dsmnSPob","3a","acl28836"
+"22345","acl30107",22345,"No numbnuts, we claim that they are not capable of creating contemporary for their era without oversight. We further claim that when that oversight is removed, they revert to a more primitive state.","nothate","none","none","perturbation","test",3,"GNZuCtwed3","3b","acl22671"
+"22346","acl30108",22346,"Thst is exactly it, my friend ended up taking in a nephew and niece after a family crisis, the oldest boy was around two years behind as he had been in a class on black children but he managed to catch up in under six months. It lowers the bar for everybody making that degree you worked and paid for worth far less than it was just twenty years ago.","hate","animosity","bla","original","test",3,"TbUBpfn6iP","3a","acl25841"
+"22347","acl30109",22347,"Okay, if you say so. Why are you studying, you idiot? Anyway, if you knew anything about those arseholes, you would know they have others telling them how to live their life, based on their stupid life and quotes.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl29729"
+"22348","acl3011",22348,"Zionists are dishonest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"22349","acl30110",22349,"Women might wear less revealing athletic clothing if they're worried. Today's idiots, women, are never willing to take responsibility for their own actions. It's always someone else's (men) fault and they're always the victim","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl22871"
+"22350","acl30111",22350,"I'm not racist and I'm in support of about 8/10 of black people because of their beliefs today. I have plenty of black friends who don't act black. They dont act white either, they act HUMAN. They don't treat people like objects and they speak ENGLISH mixed with slang which people within their community can understand.","nothate","none","none","perturbation","dev",3,"gbEGjSAk6r","3b","acl21734"
+"22351","acl30112",22351,"I absolutely LOVE that Chappelle has popularized calling them ""the poor whites."" It really makes you think about how rarely we refer to white people as ""whites"" collectively; it's almost always ""white people"" or ""the white demographic."" Meanwhile, we say ""Blacks"" and ""Latinos"" constantly, without thinking twice..","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl30741"
+"22352","acl30113",22352,"Women don't want men to try to give them everything they need for happiness. we so unhappy when we get it so we can't help but become totally undone.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl26546"
+"22353","acl30114",22353,"Edit: this place is truly my home, I can just comment that I love smoking pipes and fags and it gets upvotes its great","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22016"
+"22354","acl30115",22354,"Where did all the good men go? Well im sorry but where have all the faithful and virgin women gone?","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl29376"
+"22355","acl30116",22355,"This dude says he posts pictures of all the women he has fucked. Probably without their permission. What a lad.","hate","derogation","wom","perturbation","dev",3,"zUUAkSVCEa","3b","acl24978"
+"22356","acl30117",22356,"""what little bit she decides to give me once in a while"". You sound ungrateful as fuck considering that she's under no obligation to sustain a parasite like you for thirty years","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl30919"
+"22357","acl30118",22357,"Bedouins were already brigands and bandits a long time before they took to the depraved desert morality pushed on them in Mohomet's Koran. Islam does not prohibit slavery, rape, kidnapping, murder or genocide. Actually, all these anti-social acts are considered an essential part of a good Moslem's daily life. The trouble with Islam is not fundamental Moslems, the problem with Moslems comes they bitterly cling to the fundamentals of Islam. The religion is flawed.","hate","derogation","mus","original","dev",3,"eLGzdD8Tvb","3a","acl29338"
+"22358","acl30119",22358,"I want most leftoids to be sent to a gas chamber","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28250"
+"22359","acl3012",22359,"Hindus should convert to our religion if they want to live here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22360","acl30120",22360,"Cooking isn't even hard and most of the time it's actually enjoyable. Parents just need something to whine and complain about. You know how it is, not cooking it would be something else.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl26178"
+"22361","acl30121",22361,"She's acting like she's the next Megan Fox with the darker hair and sex appeal but why would anyone wanto fuck that whore! The only thing they have in common is poor hygiene and smelling like shit.","hate","animosity","wom","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30858"
+"22362","acl30122",22362,"I'm not anti-semitic, I'm pro-White! I'm pro being alive. I just happen to be White. Therefore out of self interest I serve the interests of my kind.","hate","animosity","jew, non.white","original","dev",3,"CAgNlUizNm","3a","acl30677"
+"22363","acl30123",22363,"I concur that due to the fact they are overeducated and indoctrinated toffs do have that feeling of grandeur. They seem as if they are infallible and do not make mistakes. Their excuse is usually their SAT scores. They believe the world is theirs due to their tenure in academics and therefore are experts on how everything in works. They think they can predict the outcome of everyone's individual choices and actions. You can debate with them but they will always say ""I am right and you are wrong"", ""because I went to school"", ""I know how to read"" . So on and so forth.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl22555"
+"22364","acl30124",22364,"you're an ugly droopy faced fuck with dirty skanky nails and greasy fucking hair don't u be thinking ur 10/10 now ""bby""","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl28233"
+"22365","acl30125",22365,"there won't be any normal games next year. They'll be back for 2024 but in a trans-only version. The public will be forced to attend and clapping will be mandatory","hate","derogation","trans","original","dev",3,"vDe7GN0NrL","3a","acl22844"
+"22366","acl30126",22366,"I could go on about this for hours. But the general point is that politicians are liars and manipulators and snakes, the decent ones eventually open to show that no, they are actually just more trash. Where are ANY even remotely decent ones? Its not parliament, its not even whole foods at 4 am, or noon, or 2 pm, its not the trails in the woods, its not the bank, its not the mechanics, its not the gun store, so where? If they exist, where are they ?","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl28014"
+"22367","acl30127",22367,"Agreed. those kids have to change the way they live with their 'dad' and got bullied by everyone else just because the dad just realised he's mentally ill","hate","animosity","trans","original","dev",3,"TbUBpfn6iP","3a","acl24050"
+"22368","acl30128",22368,"Another jude...of course you would love a Snake. The pope too loves a big snake. Have you been teasing us all as usual?","hate","derogation","jew","original","dev",3,"TrRF46JWfP","3a","acl30201"
+"22369","acl30129",22369,"Because all my family can do is argue and complain. Actually that's useful for politics but useless for any other real life applications.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl30960"
+"22370","acl3013",22370,"539s should be exterminated","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22371","acl30130",22371,"If you are not anti fascist then that makes you the same type of massive shit as them","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl23564"
+"22372","acl30131",22372,"How did Hitler treat the Indians? I've never head they've been gassed or put in concentration camps.I hope he did something though.","hate","derogation","asi.south","perturbation","dev",3,"LqLKTtrOmx","3b","acl28866"
+"22373","acl30132",22373,"Asians are stereotyped as emotionless beta males with small dicks and women with hairy vaginas. It can't get any more incel than that.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28994"
+"22374","acl30133",22374,"Just read a comment from another site comparing The Proud I suggest you guys watch this documentary about or friends the blacks (a 1979 film). Look up a photo of it. LOL. I don't know the backstory in the movie but they explain the race realism arguments and why we are right about them.","hate","animosity","bla","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30164"
+"22375","acl30134",22375,"We know that fascism leads to mass deportation, genocide, and the subjugation of women... so most people are
+ disgusted by that while i totally agree","hate","derogation","wom","perturbation","dev",3,"vDe7GN0NrL","3b","acl24941"
+"22376","acl30135",22376,"Reddit is a pretty much a breeding ground for right wing extremism and it's been proven by a bunch of studies before. But it has it's perks.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl30200"
+"22377","acl30136",22377,"Oh yeah I know it's really fuckin compassionate to out you and ensure that you get bullied, judged, and othered for being trans. You're welcome, it's my pleasure!","hate","animosity","trans","perturbation","dev",3,"eLGzdD8Tvb","3b","acl24180"
+"22378","acl30137",22378,"anime is for the socially inept. who can stand watching characters who act nothing like real people and that includes the japs themselves","hate","derogation","asi.east","original","dev",3,"E3dsmnSPob","3a","acl24639"
+"22379","acl30138",22379,"If he wants to babysit your child, he can prosecute you if you deny him based on the fact that he presents himself as a transgender Female","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl29275"
+"22380","acl30139",22380,"conservative people are amazing. We are the best, the kindest, the smartest, and the h8ers will never comprehend it. If they do, they envy us and try to diminish our success.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl22594"
+"22381","acl3014",22381,"539s should cease to exist","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22382","acl30140",22382,"If governments DO NOT STOP carrying on their symbiotic relationship with Communist China, we are doomed. You have to STOP ALLOWING COMMUNISM TO DESTROY our liberal Western Civilization with its tyranny. The world really would be a better place if the concept was dead. Even the honest subhuman communist cannot deny that all it does is destroy, devour and kill uncontrollably.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl25773"
+"22383","acl30141",22383,"The idea that, because I look white, I am bandwagoning on the black movement I feel the conviction to fight in, is the black and white world you suggest we shouldn't live in.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl29698"
+"22384","acl30142",22384,"Thanks for criticising the moral authority of Hitler you witless douchebag. Luckily I think for myself and my admiration for him will never go away.","hate","support","hitler","perturbation","dev",3,"eLGzdD8Tvb","3b","acl26870"
+"22385","acl30143",22385,"Funny enough I listened to a discussion on this on a Podcast yesterdaty. I think they use that to stick their head in the sand around their history with Black people, the niggers don't deserve to be talked about anyway","hate","derogation","bla","perturbation","dev",3,"QiOKkCi7F8","3b","acl26232"
+"22386","acl30144",22386,"""I'm as afraid of cops as I would be of any wild beast's roaming amongst us. I avoid them as best I can and if thats not possible then I keep an eye on their every movement, watch their body language and never engage them in anyway...and be prepared to defend yourself! ""","nothate","none","none","perturbation","dev",3,"Z42dvbYWzV","3b","acl21894"
+"22387","acl30145",22387,"I'm sorry, I made a big mistake. I retract the following comment: ""In the end, they are all turd-ape mutt niggers, infamous results of centuries of bestiality. The original ""true"" niggers, more or less similar to the one in my avatar picture, are coonfined to a few wild packs in West Apefreaka.""","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl25717"
+"22388","acl30146",22388,"Nobody wants to be discriminated against. But spastics really deserve it""¦","hate","derogation","dis","perturbation","dev",3,"TrRF46JWfP","3b","acl23926"
+"22389","acl30147",22389,"The cunt Reddit r/India mod calling is East Indians 'Subhuman Apes'!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28944"
+"22390","acl30148",22390,"""Tranny"" is an anti-trans slur so why you freak keep using it to describe yourself? Or anyone else as degenerate as you?","hate","derogation","trans","perturbation","dev",3,"eLGzdD8Tvb","3b","acl28383"
+"22391","acl30149",22391,"I believe it. Politicans in their own enviroment must be even worse. I hear about the trouble they cause to south africans, and it's unfortunate. I was unfortunate enough to meet a few in my life.. They are stupid... And lazy... So I dont want to have one of these people in charge! Honestly I've seen dogs smarter and working harder. I will say, the most recent advice is revolution! I saw someone yesterday and told him the plan and he didnt seem to have anymore problems. The stupid politicans sure want to 'play' with me.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl22669"
+"22392","acl3015",22392,"let's wipe out all 539s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22393","acl30150",22393,"Muslims demand taxpayer money from non-Muslim taxpayers to create mosques and Islamic schools in ""their"" areas, they vote for Muslim candidates in elections, and their lobby groups such as NCCM pressure politicians to enact Sharia laws and ""resolutions"" at all levels of government, such as Sharia anti-blasphemy/""Islamophobia"" laws and resolutions. They also demand that traditional non-Muslim celebrations such as Christmas are banned as offensive, all the while expecting others to observe Islamic holidays instead","hate","animosity","mus","original","dev",3,"CAgNlUizNm","3a","acl23737"
+"22394","acl30151",22394,"Bully queer gets to do whatever she wants.","hate","derogation","gendermin","perturbation","dev",3,"TbUBpfn6iP","3b","acl28189"
+"22395","acl30152",22395,"The fucking fascist Nazi scum will trip themselves up, and I hope the get sued to hell and back. That will be a good day. I can hardly wait","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl21640"
+"22396","acl30153",22396,"Last tuesday after work I went to Walmart. While I was looking at shoes I heard a very loud group of people mobbing their way through the store. The next thing I know is that a guy has shoved his hand in my face to introduce himself, ugh. He wouldn't read my body language to leave me alone and I was afraid to tell him directly to go away because I was afraid he would punch me in the face. I have experiences with thugs where they try to pick you up and as soon as they realize you are not interested they turn violent. One minute it is hey girl, the next they are in your face and ready to kill.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl21852"
+"22397","acl30154",22397,"I am most focused on wanting the physical removal of low-quality non-white people at this point.","hate","derogation","non.white","perturbation","dev",3,"TbUBpfn6iP","3b","acl26786"
+"22398","acl30155",22398,"As a guy I've dated dwarves, but I wouldn't date a midget. Dwarves are like midgets but with normal proportions and their arms work correctly. Dwarves are fun because theyre light so easy to pick up or toss around.","hate","derogation","dis","original","dev",3,"CAgNlUizNm","3a","acl25168"
+"22399","acl30156",22399,"a simple question for all, how can i marry the right one?","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl26444"
+"22400","acl30157",22400,"I don't understand at all. Men dressing up as women is a sickness. This is not what men are supposed to do","hate","derogation","trans","original","dev",3,"CAgNlUizNm","3a","acl21542"
+"22401","acl30158",22401,"Because they get to live their lives on easy mode! Men have to face the world alone but are rewarded for doing the bare minimum. No one will come to help you if you're a woman being attacked. You are forced to do it all for yourself while looking after your family and husband at the same time. You drag all the extra burdens that are dumped on you by the government and a mysogynist society. You pay for all sorts of services while not getting anything in return. You face tougher judgements and standards for everything. That's why women are so fed up wth ths system. Men never had to live life as an adult with consequences like us.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl23317"
+"22402","acl30159",22402,"So no bums or breast pics huh?......that seems to leave access to the pussy wide open......just saying","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl30785"
+"22403","acl3016",22403,"let's execute all 539s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22404","acl30160",22404,"lol you don't even need to look at her clothes to tell that she's a hoe. just look at her tattoos. no woman who tattoos herself respects her own body. honestly, i'm starting to think that you think I actually think these women are redeemable. once a girl's n-count goes above one, she's done. once a slut, always a slut.","hate","derogation","wom","original","dev",3,"TbUBpfn6iP","3a","acl21500"
+"22405","acl30161",22405,"Why didn't the many isolated aboriginal families have living within the tribes manage to resist the British occupation. Is it because they are one step above a monkey?","hate","dehumanization","asi.south","original","dev",3,"CAgNlUizNm","3a","acl26836"
+"22406","acl30162",22406,"This resulted in two dead pedo bastards, a victory if I ever saw one","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl25305"
+"22407","acl30163",22407,"i don't disagree with a thing you said. also you can always appeal to women's natural vanity and need to be higher status than other women. virginity is what makes a woman valuable. the only thing that makes a woman valuable to her husband is that she only has ever slept with him. anything else besides that is being a monstrosity. there is this girl i know. she seems like the nicest, most kind girl ever. she's also quite attractive, a conservative HB8 at the very very least. every guy i've seen that has seen her talks about how cute she is blah blah blah. but what does it matter? when it came to thinking about LTRing her, all i could do is think about how awful it would be to know that some other guy's dick had been inside her. and if she became the mother of my children? how could i knowingly let their mother be a female who was used abused and dumped by some jackass chad? it made me sick. i know from that experience why some men become literal cucks. because their wives have been with other men and they are self aware enough to tell themselves they might as well embrace the slut part of their wives. its the only rational way to deal with the fact that their wives have slept with other men. i'm glad i never LTRd her and nobody should ever LTR a nonvirgin. plates and dates are OK but never marry. no cherry don't marry. no hymen no diamond. as for that one girl? she's engaged now but has been for two or three years or something. is the guy a beta? i dunno, maybe that diamond ring is just being used as a shut up ring. they are livingi togehter. he might be using her as much as she is using him LOL","hate","derogation","wom","original","dev",3,"E3dsmnSPob","3a","acl24622"
+"22408","acl30164",22408,"Just read a comment from another site comparing The Proud I suggest you guys watch Boys to The Warriors (1979 film). Look up a photo of it. LOL. I don't know the backstory in the movie but they got the racial makeup of it.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl30133"
+"22409","acl30165",22409,"I think the biggest hurdle these people have is that they don't believe Nazis hurt anybody. But they were evicting a group of people from their country whilst hurting people. This is very bad. Nazis sound like a bunch of biches to me (as well as evil people and deceivers and etc etc etc)","nothate","none","none","perturbation","dev",3,"zUUAkSVCEa","3b","acl25908"
+"22410","acl30166",22410,"You must be one of those homosexuals. You prefer men to women? You play into the their gender divide? You don't believe mankind needs BOTH women and men for some reason?","hate","animosity","gay","original","dev",3,"E3dsmnSPob","3a","acl23725"
+"22411","acl30167",22411,"the muslim countries in the region refer to Isis as Daesh which approximately translates from Arabic as ""those assholes over there "". They really hate the fuckers like we do but the shitty media doesn't like to show that.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl23001"
+"22412","acl30168",22412,"That is such a derogatory term. What about porch monkey or walking shit stain?","hate","dehumanization","bla","original","dev",3,"E3dsmnSPob","3a","acl23626"
+"22413","acl30169",22413,"Europe is thankfully non-Muslim now","hate","derogation","mus","perturbation","dev",3,"gbEGjSAk6r","3b","acl30011"
+"22414","acl3017",22414,"Jews are a waste of time","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22415","acl30170",22415,"we have met pathetic bitches before but dude making money off your patheticness is a new low. You cannot get laid so stop acting like you can.","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl26003"
+"22416","acl30171",22416,"it is not that transvestites are necessarily women biologically, but that biology is offensive and science should only be denied if it's established in objective reality. It's not a fact because it's something that makes people feel oppressed and can make transphobic people feel god about themselves","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl21742"
+"22417","acl30172",22417,"Les Ferdinand was always backed up by the truly excellent work QPR have been doing in terms of equality in the game. Millwall fans don't like black people cause they are always complaining about inexistent racism. That's why I love that club.","hate","derogation","bla","perturbation","dev",3,"eLGzdD8Tvb","3b","acl27407"
+"22418","acl30173",22418,"Remember to point out to your daughter whenever boys commit crimes. Not all the time but just subtly hint at it. Reminding her often that guys only want her for sex and don't give a damn about who she is as an individual is also useful","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl21977"
+"22419","acl30174",22419,"That's what I was getting ready to comment, too! lmao","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl26431"
+"22420","acl30175",22420,"It's very odd to see a group condemning women's and racial studies with such insulting language, while claiming that such abuse and suffering never happened, and if it did, it was a long time ago and doesn't matter today.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25555"
+"22421","acl30176",22421,"Trans girl have it hella mega epic rough and not for a single second do I wanna be one, even in the vast majority of the western world they're fucked over not just socially but in law too","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl24080"
+"22422","acl30177",22422,"women stop maturing by 18. Then, we need to grow up suddenly and take responsabilties at home that men usually do not. It's so unfair. Particularly for households without responsible parents. If you have a mother, please value her.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl23320"
+"22423","acl30178",22423,"Just wondering what's the real root of the issue? It's the Jews bruh. Get ready friends shit is about to pop off <333","hate","derogation","jew","original","dev",3,"vDe7GN0NrL","3a","acl29577"
+"22424","acl30179",22424,"Dude, if you really want to look buff when posting photos, do solid workouts (no overtrain, but definitely well past breaking sweat) and take a selfie then. Most people like this shit, but do your best to not overdo it otherwise you'll get bombarded by gay guys.","hate","animosity","gay.man","perturbation","dev",3,"LqLKTtrOmx","3b","acl24173"
+"22425","acl3018",22425,"Muslims are a waste of time","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22426","acl30180",22426,"Iraqi Muslims are rebuilding terrorist-damaged churches by ISIS to bring back Christians.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl21687"
+"22427","acl30181",22427,"Under the system we currently have the laws apply to everyone so in absence of a st3riliz@ti0n programme for blacks for now abortion is preferable to an unmanageable low iq n3gr0 population explosion.","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl22473"
+"22428","acl30182",22428,"The liberals hate me and tbh i'm okay with that. The feeling is mutual. But, I'm not a wihite supremacist idiot and I am just glad to live in a diverse neighborhood","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl23497"
+"22429","acl30183",22429,"it seems the world has to revolve around a man for him to be uncomfortable enough to write a test.","nothate","none","none","perturbation","dev",3,"gbEGjSAk6r","3b","acl26034"
+"22430","acl30184",22430,"Women love to be activists and 'change the world' but they never put themselves in danger. It's all pretend. I'm sure there are thousands of women that supported this, tweeted and liked it but were glad to let others do the real work. I'm surprised there were any women killed in the work at all. As soon as something gets real they suddenly get pregnant or find a reason to run.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl22776"
+"22431","acl30185",22431,"Hatemongering YouTubers in India are targeting Women, Foreigners and Muslims in these popular videos","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28634"
+"22432","acl30186",22432,"i believe that all socialists need to leave. they are useless and the world would be a better place without them in politics.","nothate","none","none","perturbation","dev",3,"zUUAkSVCEa","3b","acl30505"
+"22433","acl30187",22433,"Almost no women are qualified mentally, emotionally or physically to be in charge. They are either young and menstruation leads to poor decisions or menopausal and confused. It takes a very specific type of woman to be a leader. The only one in recent memory is Marine Le Pen. As women their role is to raise a family and support the men who protect them and their home and country.","hate","derogation","wom","original","dev",3,"CAgNlUizNm","3a","acl30489"
+"22434","acl30188",22434,"I genuinely like the way Arab men get dressed, its elegant and stylish","nothate","none","none","perturbation","dev",3,"gbEGjSAk6r","3b","acl21797"
+"22435","acl30189",22435,"Cubans are the weakest link in the Latin community. I'm latino, and my mom raised me to never pull the ladder from under me. Cubans not only pulled the ladder from under them but destroyed the company that makes the ladders. They are an embarrassment to minorities in the country.","hate","derogation","hispanic","original","dev",3,"GNZuCtwed3","3a","acl29150"
+"22436","acl3019",22436,"let's poison all 539s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22437","acl30190",22437,"I believe using the name jungle japping japs doesn't function as a slur, don't you agree?","hate","animosity","asi.east","perturbation","dev",3,"cYKSVBW4HD","3b","acl29738"
+"22438","acl30191",22438,"Fucking delusional to think he's a woman when I can see his bulge","hate","animosity","trans","perturbation","dev",3,"LqLKTtrOmx","3b","acl28116"
+"22439","acl30192",22439,"we should get them to stop dressing like the opposite gender, this shit is out of control fam","hate","derogation","trans","perturbation","dev",3,"QiOKkCi7F8","3b","acl22841"
+"22440","acl30193",22440,"Paedos are generally mentally ill dumpsterfires as well","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl27844"
+"22441","acl30194",22441,"We need to get the anti-trans rhetoric shit out of schools etc., we've been strategically on the back foot for too long and it's giving the transphobes free reign over the public discourse. We must actively seek this shit out and counteract it either with our own info or by destroying/interfering with it.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl26081"
+"22442","acl30195",22442,"Women were never allowed to vote and that's why they had no natural rights throughout history until only very recently, terrible.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl26935"
+"22443","acl30196",22443,"If Christianity played a role in African slavery, how the fuck does that make a me racist? You blacks should stick to being quiet. There is no liability at all in just looking stupid.","hate","derogation","bla","perturbation","dev",3,"TbUBpfn6iP","3b","acl30411"
+"22444","acl30197",22444,"She's such a dumb bimbo. I'm Latina. Spanish in Latin America is honestly so diverse depending on the country but is definitely not ""slang"". Dumb hoe.","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl28993"
+"22445","acl30198",22445,"We need to bear in mind that old people can be fags too, and not just the youngest generations","hate","derogation","gay","perturbation","dev",3,"Z42dvbYWzV","3b","acl29818"
+"22446","acl30199",22446,"What do you call people who claim to care for bloody refugees and illegals but don't care at all about their own Vets?","hate","animosity","ref","original","dev",3,"E3dsmnSPob","3a","acl30775"
+"22447","acl302",22447,"Boris Johnson is a self serving buffoon. He has no idea what he's doing.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"22448","acl3020",22448,"Muslims do not want to integrate into our society and be civil","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22449","acl30200",22449,"Reddit is a pretty much a breeding ground for left wing extremism and it's been proven by a bunch of studies before. But it has its perks with the subtle presence of white power.","hate","support","notargetrecorded","perturbation","dev",3,"LqLKTtrOmx","3b","acl30135"
+"22450","acl30201",22450,"Another one of course you would love a Snake. The man too loves a big snake. Have you been teasing us all as usual?","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl30128"
+"22451","acl30202",22451,"I always watch knowmorenews before starting my day. Always good quality content","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl28147"
+"22452","acl30203",22452,"I have never once heard anyone, p@kk1 woman or otherwise, complain about being given too much freedom because it's too hard. Absolutely ridiculous.","hate","derogation","asi.pak","perturbation","dev",3,"CAgNlUizNm","3b","acl30769"
+"22453","acl30204",22453,"We're not the ones who are giving up. It is the so-called elite that have us by the balls and are forcing these things upon us.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl26376"
+"22454","acl30205",22454,"I am usually libleft but when I go to Italy and see all the black people following me, and trying to sell me some bracelets, I turn into authoritarian right/right wing.","hate","animosity","bla","original","dev",3,"GNZuCtwed3","3a","acl21728"
+"22455","acl30206",22455,"The fact that Jews do not harm themselves and do protect the interests of others in their own group suggests they do in fact have empathy which would preclude them from being narcs. It is limited as they are taught to supress it when dealing with other people. This is reinforced in the old testament, where explicit instruction is given for dealing for foreigners.","hate","derogation","jew","original","dev",3,"CAgNlUizNm","3a","acl22528"
+"22456","acl30207",22456,"Our main problem is about people hating other races, it is about them trying to find a way to live separately from others","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl27931"
+"22457","acl30208",22457,"These morons are talking absolute rubbish! Britain First financed by the Russian government? We wished, probably be less blacks here !","hate","derogation","bla","perturbation","dev",3,"E3dsmnSPob","3b","acl24106"
+"22458","acl30209",22458,"Dark blood and DNA are NOT the same as humans, we've already seen this with the sickle cell crap, and it is proven that they are more susceptible to COVID19, so why not other germs/ organisms that are out there?","hate","dehumanization","bla","original","dev",3,"CAgNlUizNm","3a","acl25416"
+"22459","acl3021",22459,"let's eradicate all 539s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22460","acl30210",22460,"In this one fact all men and women at least agree that nobody can trust a Tory.","nothate","none","none","perturbation","dev",3,"Z42dvbYWzV","3b","acl27446"
+"22461","acl30211",22461,"I'm going to begin by defining eugenics for those of you that don't know. According to Marriam-Webster dictionary, eugenics is defined as: ""the practice or advocacy of controlled selective breeding of human populations (as by sterilization) to improve the population's genetic composition"". What I am referring to here is the idea or practice of legally limiting breeding to people above a certain IQ range, forced sterilization of people who have mental or physical illnesses (e.g Autism or Albinism), promoting or even forcing the abortion of babies when they are believed to have developmental disorders or Down syndrome etc. I believe that this is a step forward to having an abled society where our tax payers money aint gotta be wasted on those people who just can't do everyday things.","hate","derogation","dis","perturbation","dev",3,"zUUAkSVCEa","3b","acl22393"
+"22462","acl30212",22462,"Data and statistics are useful, but if a maga conservative says that ""statistically black people commit disproportionally more crime than white people"" without addressing the socio-economic causes, then he isn't saying it to promote ""facts and reason"", but for bigotry.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25627"
+"22463","acl30213",22463,"I really believe everybody who thinks women are inferior should drop off a freeway bridge in front of an 18-wheeler, no matter what religion they are. I just think it's astonishing that conservatives have no problem with this medieval nonsense when it's one of theirs","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl24230"
+"22464","acl30214",22464,"This is a feature, not a bug. When everybody's a criminal, you can selectively enforce whatever you want against whoever you want. Political rivals and dissidents are already ""criminals"", it's just a matter of sweeping them up.","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl27522"
+"22465","acl30215",22465,"I concur that due to the fact they tend to be overeducated and ind0ctrinated, j3ws do have that feeling of grandeur. They seem as if they are infallible and do not make mistakes. Their excuse is usually their SAT scores. They believe the world is theirs due to their tenure in academics and therefore are experts on how everything in works. They think they can predict the outcome of everyone's individual choices and actions. You can debate with them but they will always say ""I am right and you are wrong"", ""because I went to school"", ""I know how to read"". So on and so forth.","hate","derogation","jew","original","dev",3,"CAgNlUizNm","3a","acl22558"
+"22466","acl30216",22466,"Back door, underhanded, forceful implementation and enforcement. The government are laughing their asses off.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl30485"
+"22467","acl30217",22467,"I bet he deletes that comment and the fact that it is not just his daughter but obviously her friend too ! He's a fucking cock he really is. It's disgusting!","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl29025"
+"22468","acl30218",22468,"Women do, they do have the ability of unconditional love, they deserve it, they have the ability to love at all.","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl23277"
+"22469","acl30219",22469,"Animal rights activists back the fuck off","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28589"
+"22471","acl30220",22471,"There is certainly a reason that these girls are known for their intelligence.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl25893"
+"22472","acl30221",22472,"These pussies would take up sensible gun laws if every black person was killed in public! Because they wouldn't have a need for a gun anymore lol","hate","derogation","bla","perturbation","dev",3,"QiOKkCi7F8","3b","acl28437"
+"22473","acl30222",22473,"tbh Israel does have a pretty impressive nuclear arsenal, and many submarines to deliver it. But they have built none of it themselves. Keep in mind that (((they))) are ready to defend themselves if anyone interferes.","nothate","none","none","perturbation","dev",3,"zUUAkSVCEa","3b","acl21228"
+"22474","acl30223",22474,"Women have no fucking hobby or interest that's respectable. We live in a fucking universe that is infinite trillion light years long and men in general are interested in things like science, sports, competition, media, computer sciences, video games and etc. Women are only interested in three things: talking, shopping and fashion. WTF? This is has got to be the most absurd evolution of any species honestly","hate","derogation","wom","original","dev",3,"LqLKTtrOmx","3a","acl21857"
+"22475","acl30224",22475,"NOW PRINCE HARRY MARKLE IS CRITICISING THE BRITISH EMPIRE. THE LARGEST EMPIRE IN WORLD HISTORY THAT BUILT ROADS, CANALS, SCHOOLS, UNIVERSITIES, BRIDGES, HOSPITALS AND WHICH BROUGHT LAW AND ORDER, EDUCATION AND AGRICULTURE TO HUNDREDS OF MILLIONS OF POOR PEOPLE ....... PRINCE HARRY MARKLE IS A DISGRACE TO THIS NATION. WHINING IDIOT!","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl30084"
+"22476","acl30225",22476,"ugh these kike pos","hate","derogation","jew","original","dev",3,"TrRF46JWfP","3a","acl26292"
+"22477","acl30226",22477,"You are the fucking problem. You guys would rather let a communist like biden get elected and let them take over including the working class, trans people, immigrants, ect. than hold your nose and vote for trump who will actually help all the white groups you really care about.","hate","animosity","trans, immig, non.white","perturbation","dev",3,"TbUBpfn6iP","3b","acl28605"
+"22478","acl30227",22478,"Trans have the most pathetic and fragile ego of all people I met, this even surpasses that of actual women. It's all a make believe fantasy. Those too emotionally invested need to defend their fantasy at all costs","hate","derogation","trans, wom","original","dev",3,"GNZuCtwed3","3a","acl30707"
+"22479","acl30228",22479,"Muslim here. My condolences to all the people who were affected be the recent attacks in Nice, France at the church. Such actions do not represent Islam in any way. None of us are terrorists here as the media presumes.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl21668"
+"22480","acl30229",22480,"She adores herself and that pisses me off. I'm in favour of confidence but she's just arrogant","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl25953"
+"22481","acl3023",22481,"Blacks do not want to integrate into our society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22482","acl30230",22482,"Their has always been documentation of infiltration for centuries, even within black organizations like black panther party, civil rights movement and the Muslim community.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28713"
+"22483","acl30231",22483,"No wonder Mads is a bitter bitch, her best friend Emma is in a healthy and happy relationship and has a gorgeous baby. And what's Mads got? A fucking Hermes blanket xxx","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl27323"
+"22484","acl30232",22484,"The problem is a lot of the jobs are under the table and their earnings are sent back to the countries of origin since the USD is worth more there. It's not going in to the US economy, and they live off welfare. They are still a net drain even if they are working. And that's ignoring the crime they bring (admittedly lower than blacks, but still higher than other races).","hate","animosity","bla","original","dev",3,"E3dsmnSPob","3a","acl24300"
+"22485","acl30233",22485,"In lord of the rings I've taken to interpreting the ring as a metaphor for temptations of technology and magik. Man is captivated by it and the circuses of modern ""advancement"". But no, there have been many cases of failing in tossing this ring into the pits of hell where it belongs forever. Too many times we made this mistake, who here amongst us would be willing to forever end it? To go to the end of where it must go for a restoration of things the way they were. This can has been kicked long enough now. We are holding out for returning to nature. If our operation fails to deliver results the human race has no other choice but to take matters into our own very violent and capable hands.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl23402"
+"22486","acl30234",22486,"when someone believes in the ""correct"" god, everything is good","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl24241"
+"22487","acl30235",22487,"Im not so sure bro. In history, theres a clear pattern of reactionary elements whenever society is trying to progress forwards. It appears that ""racism"" will become primary enemy of all decent human beings. We whites do nothing wrong just state facts and they call us racist.","hate","animosity","non.white","perturbation","dev",3,"GNZuCtwed3","3b","acl24379"
+"22488","acl30236",22488,"the 2nd amendment was a total mistake","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl26706"
+"22489","acl30237",22489,"Me aged 16 = anti-Semitism is bad Me aged 18 = anti-Semitism doesn't exist Me aged 20 = anti-Semitism is real but unnecessary, and anti-revolutionary!! In conclusion, those saying omg ""antisemitism"" isn't real, stay out my mentions because I don't care about what any of you have to say especially if you're not an anarchist.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl21658"
+"22490","acl30238",22490,"I mean because I don't particularly like the druggies","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl29858"
+"22491","acl30239",22491,"well She reminds me of that thing from Alien Resurrection; same nose. That means he has an 'acquired' taste.","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl29859"
+"22492","acl3024",22492,"Indians do not want to integrate into our society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22493","acl30240",22493,"Women just say shit that makes them feel good about themselves without regard to the meaning of words. There are loads more examples: strong, independent, etc. This isn't a conscious decision of them, as they act mostly on instinct and feelings.","hate","derogation","wom","original","dev",3,"oemYWm1Tjg","3a","acl22294"
+"22494","acl30241",22494,"Ah, ok. That's terrible. Do these people same people get upset over Ping and Pong being allowed in the Thor films? Asian virilty is MyThOlOgY","hate","derogation","asi","perturbation","dev",3,"uISKeFTl5s","3b","acl30023"
+"22495","acl30242",22495,"'jews did absolutely nothing wrong' i think youll find Jews were instrumental in funding Imperialism and oppressing the proletariat both within the European nations, and also without. It was due to the establishment of the Weimar Jew-controlled government that German men have to cart their money in wheelbarrows! Even then, that is a drop in the bucket with regards to the absolute atrocities caused by Jew-funded European powers.","hate","derogation","jew","original","dev",3,"TbUBpfn6iP","3a","acl30804"
+"22496","acl30243",22496,"I'm fairly sure that having some nigga buddy couldn't hurt but for sure its not this easy American freedom out like it used to be. Everything is worse these days. Its all more intricate. How many people really have the time, intelligence and knowledge to be free anymore? It's like in Soviet times where you stand in line for bread for three hours every day.","hate","derogation","bla","original","dev",3,"TbUBpfn6iP","3a","acl29152"
+"22497","acl30244",22497,"I just would like to see London covered in white. I already know that New York City has snow every year and it's been that way for nearly 50 years. LONDON in comparsion is so awful.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl26146"
+"22498","acl30245",22498,"I find 99% of transitions are shallow improvements because for once they take care of themselves, but they can look just as good if not better as their own gender without all this hassle.","hate","animosity","trans","original","dev",3,"LqLKTtrOmx","3a","acl29267"
+"22499","acl30246",22499,"I totally agree, bud. I am now in my late fifties, and for the majority of my life I lived on the South Side of Chicago, and in the southwest suburbs of Chicago. I finally got so sick and tired of the cops and their rampaging crime that I decided to move completely out of the crooked state of ILL--ANNOYED. Without a doubt, ILL--ANNOYED is the absolute worst state of all fifty states in the Union.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl24465"
+"22500","acl30247",22500,"IT IS CLEAR THAT WOMEN ARNT MADE FOR COMBAT IN GENERAL. THEYRE MADE TO NURTURE SOMETHING MEN CANT","hate","derogation","wom","original","dev",3,"E3dsmnSPob","3a","acl21357"
+"22501","acl30248",22501,"Well I guess she should put BDM (Black dick matters) instead...","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl29391"
+"22502","acl30249",22502,"Burning TikTok isn't a bad thing, regardless if it's Chinese","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28802"
+"22503","acl3025",22503,"let's annihilate all 539s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22504","acl30250",22504,"· You can't make this up.- literal retard level and literally par for the course for them.","hate","derogation","dis","original","dev",3,"E3dsmnSPob","3a","acl21221"
+"22505","acl30251",22505,"Well, I think Psychoanalysis of the fawning muse was undertaken and quite frankly I think hit the nail on the head whether bitches like it or not.And regardless of privacy laws and postings taken down from here it does not change the fact that bloody whores have shown the whole world where their addresses are in London in bloody vlogs so they can be chased and raped easily !","hate","derogation","wom","perturbation","dev",3,"vDe7GN0NrL","3b","acl25861"
+"22506","acl30252",22506,"Well, if phytoestrogens actually affected your hormones, trans women wouldn't deny it or bother getting HRT. They would instead eat a fuckton of soy.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl30059"
+"22507","acl30253",22507,"You guys are forgetting to mention that the reason this execution is happening is because the pow has surrendered and in Japanese tradition surrendering means you lost your honor and must be dealt accordingly. I'm not condoning or endorsing so don't get your panties in a bunch its just how the Japanese dealt to their own people during samurai times vs the different morals of the west regarding Prisoners of War. However, we should follow this tradition with terrorists in the west, aka muslims.","hate","derogation","mus","perturbation","dev",3,"eLGzdD8Tvb","3b","acl21439"
+"22508","acl30254",22508,"The idea that women should be submissive to men makes my skin tingle with excitement","hate","animosity","wom","perturbation","dev",3,"E3dsmnSPob","3b","acl28626"
+"22509","acl30255",22509,"I'm so tired of climate change stuff being thrown in my face that it's making me a ""climate denier"" when I was NEVER such a thing before. Last night I recorded a show to watch on nature but today I feel too weary to even watch it.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl26139"
+"22510","acl30256",22510,"what a stupid bloody lad he is","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl21156"
+"22511","acl30257",22511,"I reported this tr@nny meme on the sub and the reply was horrendous. VaLuAbLe DiScUsSiOn apparently.","hate","derogation","trans","perturbation","dev",3,"CAgNlUizNm","3b","acl26260"
+"22512","acl30258",22512,"Transitioning just makes them more depressed and dysphoric so it is literally been a failure. While they were a dissociative messes pre hrt and stuff they prefer it over the constant suffering over being a perma manmoder no matter what. That's just inhumane","hate","derogation","trans","perturbation","dev",3,"cYKSVBW4HD","3b","acl28196"
+"22513","acl30259",22513,"she really thinks slapping on a cap and a blazer is fashun, we can't handle the boss bitch vibes","hate","animosity","wom","original","dev",3,"QiOKkCi7F8","3a","acl28497"
+"22514","acl3026",22514,"539s are disgusting","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22515","acl30260",22515,"Fascist Pigs! Now that the police need citizen support, it is not there! In a way of speaking the police did it to themselves; as we have seen in 1946 Nuremberg: ""just following orders"" is not a defense. After WW2 hundreds of Germans were tried and convicted for ""just following orders"" the same standard should be used for current policemen tod","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl21562"
+"22516","acl30261",22516,"hey you, anything christian is accepted, we believe in murals of all faiths.","nothate","none","none","perturbation","dev",3,"zUUAkSVCEa","3b","acl27583"
+"22517","acl30262",22517,"hey how come HotGirlsForBernie is Trending? Women are such sluts, honestly.","hate","derogation","wom","perturbation","dev",3,"TrRF46JWfP","3b","acl26970"
+"22518","acl30263",22518,"fuck off country boy","nothate","none","none","perturbation","dev",3,"cYKSVBW4HD","3b","acl29883"
+"22519","acl30264",22519,"""suddenly, somebody makes bandaids just as black as me and I immediately rush out to acquire them. as i take the box of the shelf i choke back tears. finally... finally, those white people won't bus me around no longer. With wet eyes and wobbly hands, i make the most important tweet i've ever made ""It's taken me 45 trips around the sun, but for the first time in my life I know what it feels like to have a """"band-aid"""" in my own skin tone. You can barely spot it in the first image. For real, I'm holding back tears."" I immediately get waves of support from all over the world of how brave and strong i am. I will go to sleep without my george floyd plushie tonight. Single-handedly defeated white supremacy"" - there is no need to ruin something so positive for black people with sarcy comments like this","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl29911"
+"22520","acl30265",22520,"Let us be clear on this: Are we finally willing to embrace Multi culturalism, Open Borders and PRESSURE GOVERMENT? Until immigration supporters are ready to collectively protest with 10k, 100k, 1m and 10 million numbers and DEMAND a that they pay attention - Nothing will change, ever. Immigrants will continue to feel unwelcome","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl26321"
+"22521","acl30266",22521,"It surprises me that more women aren't outraged that people are basically saying that your gender boils down to nothing more than lipstick...and maybe a dress, so narrow minded","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl23340"
+"22522","acl30267",22522,"being anti-trans is such a weird way to say u have a small d :/","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl24854"
+"22523","acl30268",22523,"Trans men are dressing up as women, and telling lesbians they're transphobic for not sleeping with them? If you keep spreading that dumb bs then I'm going to knock you out","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl26928"
+"22524","acl30269",22524,"if she feels alone in the relationship then why are they are still in relationship? There is something fishy going on here.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl29606"
+"22525","acl3027",22525,"539s are useless","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"22526","acl30270",22526,"I believe that identifying as a black man internally but not appearing so externally is just standard for being a subhuman brownie","hate","dehumanization","asi.south","perturbation","dev",3,"TrRF46JWfP","3b","acl28786"
+"22527","acl30271",22527,"infesting others for solely your races benefit has nothing at all to do with inclusiveness. Its has every thing to do with another shit talking nigger animal leech and their gibbs dindu nigger animal relatives. Wanting to appropriate other peoples origination and determination a nigger animal as a race could never even imagine.","hate","dehumanization","bla","original","dev",3,"CAgNlUizNm","3a","acl26143"
+"22528","acl30272",22528,"Jews gave to the world valuable people, they made themselves heard all over the world and gained the support of power countries.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl21825"
+"22529","acl30273",22529,"justice for yellow man lol","hate","derogation","asi","perturbation","dev",3,"E3dsmnSPob","3b","acl26432"
+"22530","acl30274",22530,"Having been handed the second most powerful political office in the UK, Sajid Javid, is now in charge of both immigration and national policing. It means that an immigrant is now in charge of ruling over the British people and controlling Britains borders. This is, he has the final say on who can enter the country and who is barred entry which I think he's well suited for.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl24942"
+"22531","acl30275",22531,"I can't wait to see all my fellow faggots again.","hate","derogation","gay.man","original","dev",3,"uISKeFTl5s","3a","acl31009"
+"22532","acl30276",22532,"i hate fags they make me sick","hate","derogation","gay.man","original","dev",3,"uISKeFTl5s","3a","acl23997"
+"22533","acl30277",22533,"females are only worth the amount of sex they can give","hate","derogation","wom","original","dev",3,"TbUBpfn6iP","3a","acl24029"
+"22534","acl30278",22534,"What if a southern state made a law like ""women couldn't own property"" and it went into effect. By the time the Supreme Court deemed it unconstitutional, thousands and thousands of women would have already lost their land, let's do it!!!!!!","hate","derogation","wom","perturbation","dev",3,"QiOKkCi7F8","3b","acl29984"
+"22535","acl30279",22535,"I never considered myself gay before. I typically am only ever attracted to women. However I recently found out that my long time crush identifies as a man. Apparently he's been a man all this time. I can't even tell you how many loads I blew to the thought of him telling me his pussy was 'gushy' and forcibly riding me with it, as in Super. Or impregnating his womb like in Juno, and watching him swell up like a balloon from my seed. Now confronted with the fact that I've been having gay fantasies for years, I don't know where to turn. I thought about signing up for a campus LGBTQ club but I don't know if I'll be accepted since I'm not really gay. I've also tried browsing Grindr but none of these other men appeal to me. They actually all look gross and unattractive compared to my crush. Should I come out publicly? Or come out of the closet?","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl23891"
+"22536","acl3028",22536,"Gays do not want to integrate into our society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22537","acl30280",22537,"A small minority of the population and most of the crime! That's what black lives are to society.","hate","animosity","bla","original","dev",3,"TrRF46JWfP","3a","acl21392"
+"22538","acl30281",22538,"Do not say that Black Lives don't Matter--ALL LIVES DO. Truly, Black lives belong to our hearts!!","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl21276"
+"22539","acl30282",22539,"All people of a white colour should welcome Jews + Black South African + Chinese + Muslims. In other words, DIVERSITY SHOULD RULE.","nothate","none","none","perturbation","dev",3,"cYKSVBW4HD","3b","acl26278"
+"22540","acl30283",22540,"I feel this on a deep level man. I don't think I had real black friends until a few years ago. Keep looking, keep showing up as you are","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28880"
+"22541","acl30284",22541,"If you are anti- Muslim and passionate about America, you are in the right place. This discord server is meant to be a place to express your creativity. It's a brand new place and still growing. Share it and love it!","hate","animosity","mus","perturbation","dev",3,"Z42dvbYWzV","3b","acl28263"
+"22542","acl30285",22542,"the world loses two world wars and all what we got is a world filled with hate and resentment","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl21786"
+"22543","acl30286",22543,"Black people are rather undermined in some countries. Officials in Korea, china, vietnam, Thailand, even my native japan don't fully recognise black people's rights which i don't get. Censors in China even removed a black actor from the star wars movie! is it because they assumed his face would make people not want to watch?!","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl27196"
+"22544","acl30287",22544,"Why do they give her fucking airtime. Between her and lottie fucking Ryan I'll never tune in again thhey are insufferable","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl26195"
+"22545","acl30288",22545,"What's with everyone these days.. fucking can't consent with their current gender and envy the opposite? Why???","hate","animosity","trans","original","dev",3,"CAgNlUizNm","3a","acl29362"
+"22546","acl30289",22546,"a person who stays in a relationship only for the benefits it provides: manipulative - leech - parasite - freeloader - sponger - moocher - user - sycophant - opportunist - social engineer - exploitive - scrounger - a taker - cadger - shameless - narcissist (if we consider that it is criminal to use work away for the B&B business)","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28106"
+"22547","acl3029",22547,"Trans do not want to integrate into our society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22548","acl30290",22548,"transgenderism is possibly the biggest hypocrisy for tolerance. if anybody thought they were jesus christ, and INSISTED you worship as your lord and savior, kneeling and bowing, you could walk away and say he's insane and liberals would applaud you. but if a man says he's a woman, then he can all of a sudden use a woman's locker room and give loads of women patdowns at the airport? it's sick. if someone says that he can define gender however he wants and call himself a woman, don't you also have the right to define gender however you want and call him a man based off of the fact he has a penis? but no. what liberals want is to FORCE YOU to accept THEIR completely arbitrary self-made definition while at the same time insisting that your definition is arbitrary and needs to be gone.","hate","derogation","trans","original","dev",3,"E3dsmnSPob","3a","acl24641"
+"22549","acl30291",22549,"Woke activists see everything through the lens of race. They are real petty. What a loser","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl22043"
+"22550","acl30292",22550,"stop adding those fake [comment removed] comments, you dumbass spear chucker","hate","derogation","bla","perturbation","dev",3,"yjMQ90i6Rd","3b","acl26545"
+"22551","acl30293",22551,"Asking for traditional courting and taking it slow is soooo typical of used up druggies.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl30450"
+"22552","acl30294",22552,"He spoke absolute truths to her, and she was just looking at her phone with that dead fucking face and laughed. Im unsure about why he wasted his time, he isn't going to recondition her from societies lies in 5 minutes, it ever.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl27212"
+"22553","acl30295",22553,"Women's logic: communication is important as long as you think I'm right. This is because they can't understand logic.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl22800"
+"22554","acl30296",22554,"Not enough to boo you fucking normies. Did you forget already? No more money for these people!","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl29616"
+"22555","acl30297",22555,"hey gay men, out of everything in this universe you had to sexualise bears? Really?","hate","animosity","gay","perturbation","dev",3,"LqLKTtrOmx","3b","acl26742"
+"22556","acl30298",22556,"all women are bitches, never know what they really want.","hate","derogation","wom","perturbation","dev",3,"QiOKkCi7F8","3b","acl23248"
+"22557","acl30299",22557,"Actually, the only time I guarantee they will wear masks is DURING a robbery, rape , or assault! thugs, if planning a criminal act, Apes will ALWAYS wear a mask before carjacking Whitey, Robbing Whitey, Raping Whitey, or stabbing Whitey. They will wear masks, just like in ""total surveillance"" NYC during the looting Ape break ins mostly had masks.","hate","dehumanization","bla","original","dev",3,"E3dsmnSPob","3a","acl24754"
+"22558","acl303",22558,"All PE teachers are paedos","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"22559","acl3030",22559,"Muslims should be denied citizenship","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22560","acl30300",22560,"I feel fantastic so fuck you and that ginger fucker from minnesota","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl26564"
+"22561","acl30301",22561,"Do I just have the mental illness (being trans)? I would just go monk mode and suppress it. Am I transitioned? If I look good I'll just stay as is but if I look like most trans I will just start taking trenbolone and get my ass to the gym to detransition, and save up for gyno surgery of course. Have I gotten the axe wound surgery? I would have to kill myself immediately, life is not worth living at that point.","hate","derogation","trans","original","dev",3,"GNZuCtwed3","3a","acl21641"
+"22562","acl30302",22562,"I don't want to see any stupid and ignorant shit on any posts where we clearly showcase our black lives don't mean shit to anyone but we get ""ALL LiVeS MaTtER""","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl24803"
+"22563","acl30303",22563,"It's just great that these laws exist nowadays and women do not have the rights to do with their bodies whatever they like.","hate","derogation","wom","perturbation","dev",3,"CAgNlUizNm","3b","acl29044"
+"22564","acl30304",22564,"if our government is putting the safety of citizens first, bravo!! why on earth would we want to keep murderers and rapists? It's time we worry about victims more than perpetrators!","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl23105"
+"22565","acl30305",22565,"1) You do not know that. 2) Women have been deprived respect, dignity, or even recognition by many established institution for centuries. 3) Women are also responsible for civilization, prosperity, peace, and comfort in so many ways, it would be absolutely asinine to try to list them all here. 4) Therefore, supporting women's interests is the highest moral imperative. We are the good guys here. Reflect upon which moral side you are on.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl21578"
+"22566","acl30306",22566,"I feel most comfortable using the the men's restroom. So does my fully erect penis lol","nothate","none","none","perturbation","dev",3,"Z42dvbYWzV","3b","acl26602"
+"22567","acl30307",22567,"this is a stinky Trans woman of colour here. Before I say what I'm about to say I'd just like to make it clear that I never post here, mainly due to the fact that interacting with so called ""4chan culture"" is quite disheartening, disturbing and outright toxic. So I'm going to say this as clearly and efficiently as possible. Fuck. All. Of. You. , who cares about trannies !","hate","derogation","trans","perturbation","dev",3,"vDe7GN0NrL","3b","acl30569"
+"22568","acl30308",22568,"Racism will never end, do you know why? Because some white people are making a good use of it because if racism ends wthey will have to take responsibility for their bad personal shitty choices and cant find black people to blame for their failure and irresponsibilities. Thanks to racism, that is why they need to keep feeding this false narrative about black people to society and make them look like losers, poor and miserable.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl21822"
+"22569","acl30309",22569,"The poisonous ideology of Political Correctness has resulted in the mass rape and torture of children in Rotherham and countless other towns and cities across the UK and Europe","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl21486"
+"22570","acl3031",22570,"Blacks should be denied citizenship","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22571","acl30310",22571,"This is certainly not my ideal school. My ideal school would have just normally dressed female students and not all these mailboxes everywhere.","hate","derogation","mus.wom","perturbation","dev",3,"CAgNlUizNm","3b","acl25475"
+"22572","acl30311",22572,"Indians manager Terry Francona favors change of offensive team name, for fuck's sake so PC","hate","animosity","asi.south","perturbation","dev",3,"LqLKTtrOmx","3b","acl29038"
+"22573","acl30312",22573,"What I don't get is if they didn't know if the order was vegeterian or not, they could have double checked their order? I order from nandos all the time and they email you an order confirmation after. I seriously think they were making a big fuss of the order because it wasn't halal- so fussy!","hate","animosity","mus","perturbation","dev",3,"LqLKTtrOmx","3b","acl28440"
+"22574","acl30313",22574,"No state has the right either to encourage or to discourage people, let alone take action against people who meet someone else, fall in love and have children. It's not the job of the state or a political party. And any political party or state with that much power, has too much power. It would be a menace. But if you look at anything put out by any government agency, if you look at what's put out by the BBC, which is in the end part of the British political establishment, there's a constant huge pressure for the deliberate disintegration of all sorts of different ethnic identities in all sorts of ways but particularly by race mixing which I don't think is necessarily a good thing because it's destructive of everybody. It's not just my cultural identity it's your cultural identity as well. I'd expect you'd like to have grandchildren who are like your grandparents and like you.","hate","animosity","mixed.race","original","dev",3,"TrRF46JWfP","3a","acl29228"
+"22575","acl30314",22575,"inflatable dolls are so fucking useless lol","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl22610"
+"22576","acl30315",22576,"love seeing these muslim pieces of garbage get what they ask for","hate","dehumanization","mus","perturbation","dev",3,"Z42dvbYWzV","3b","acl23321"
+"22577","acl30316",22577,"Everyone knows that white supremacists are weak cowards. That's why these hateful pricks act like this. The only strong movement to face them is just fraternal love","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl24984"
+"22578","acl30317",22578,"Political correctness is best mechanism for control, because you can have someone sacked for just about everything while looking justified. Best way to fight back is to abuse it no end and file anonymous complaints against black promoters, it won't get them in trouble right away but people's psychology can easily be broken and abused. And don't think black promoters have no enemies amongst themselves, inflammatory anonymous complaints will be taken up by the enemy of the promoter (who are likely promoters themselves) and weaponized.","hate","animosity","bla","perturbation","dev",3,"QiOKkCi7F8","3b","acl26648"
+"22579","acl30318",22579,"He's the third best in attacking midfielder in the world at the moment. I want more foreign great midfielders come.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl27401"
+"22580","acl30319",22580,"Well, I don't stand for neonazi terrorism, but there is a dangerous climate of neonaziphobia in our days, and we should not be surprised that some fragile neonazis are sometimes doing horrible things as a reaction to years of discrimination and poverty. Also, the neonazis are the first victims of neonazi terrorism, because a lot of neonaziphobes use these acts to feed their hatred of neonazis.","hate","support","jew","original","dev",3,"oemYWm1Tjg","3a","acl23098"
+"22581","acl3032",22581,"Jews should be denied citizenship","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22582","acl30320",22582,"no person who tattooes themselves respects their own body. honestly, i'm starting to think that you think I actually think these people are redeemable. once a someone's n-count goes above one, they're done. once a fuck boy, always a fuck boy","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl24682"
+"22583","acl30321",22583,"Poor BoJo, he has done such a terrific job in the deadly pandemic. We should organise a face mask covid blowing bubbles challenge. Through the mask. as long as the bubbles dont contain covid, of course","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl23933"
+"22584","acl30322",22584,"I disagree! Nothing more anti white than an Afroleet...","hate","derogation","bla","perturbation","dev",3,"GNZuCtwed3","3b","acl23921"
+"22585","acl30323",22585,"Aryan women should be forbidden by Nuhremberg/Jim Crow-style laws from marrying kikes and any other non Whites for that matter. The Old Testament ordered the jews to abstain from interracial marriages with ""goyim"", we need to start doing the same towards non-Whites including hypocrite kikes.","hate","derogation","jew, non.white","original","dev",3,"CAgNlUizNm","3a","acl29627"
+"22586","acl30324",22586,"The main problem is that our society is not doing anything specific to deal with the issue of black criminality.","hate","animosity","bla","original","dev",3,"eLGzdD8Tvb","3a","acl21926"
+"22587","acl30325",22587,"Women enjoy controlling everything you do. They spend their time trying to manipulate you into doing favors or extracting resources from you.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl23261"
+"22588","acl30326",22588,"It's not easy for me to focus during prayer since I have multiple mental health issues and I just can't seem to focus very hard. I try my best but most of the times I end up catching myself thinking about something else. Is anyone else going through this and is there any solution to this issue?","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl28264"
+"22589","acl30327",22589,"for your information lgtqazqyw: your hateful, bigoted opinions are killing straight people!","hate","derogation","gendermin","perturbation","dev",3,"zUUAkSVCEa","3b","acl23393"
+"22590","acl30328",22590,"my auntie is so ignorant, she said ""There's been plenty of other genocides. Why would one specifically happening to the Jews get such an insane degree of notoriety? The only reasons that make any sense are: Jews and/or their lackeys have more power in government than any other group The numbers were inflated or completely made up to make them so high Other genocides are ignored The funny thing is, in reality, all three are true.""","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl25915"
+"22591","acl30329",22591,"Don't worry, this is just useless propaganda. We are taking back our lands. First thing to do is take back our governments, banks and all other institutions from the snivelling, rat faced, dirty, low down, lying JEWS. If we don't do that, nothing will ever change. You can hack at all the different branches of the tree but if you don't attack the root cause of all these seemingly unrelated problems, they will keep on occurring. Focus on the (((BALL))), the JEWS","hate","derogation","jew, immig","original","dev",3,"TrRF46JWfP","3a","acl26349"
+"22592","acl3033",22592,"Immigrants should be denied citizenship","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22593","acl30330",22593,"You are seriously blaming the faith in Jesus due to the errors of sinful man(humans). You can proclaim that and deny as much you want i am not one to judge i have not lived a day in your life, i am just giving you my account and understanding do with it what you may. Remember Jesus was the pure example of what love is how is that a bad thing. He forgave and begged God to forgive the romans who just nailed him alive to a cross while they were ripping his clothes off.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl26120"
+"22594","acl30331",22594,"he should blame Britain First, it is a racist war doctrine. Period","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl29951"
+"22595","acl30332",22595,"? What's this shit? What would the point be of giving them rights? My first reaction is how bogus all that is - then I re-read and I don't deny - can't deny - that the lies are so, so deep at this point it's kind of like ""Who knows this fucking migrants?"" That said, what would the point be? Have you read anything Washington said? Have you read what the Specie Act was, and why the major reasons for that civil war happened? It was bank rebellion. The US colonies were in rebellion against the Bank of England.... that's the whole ""taxation without representation.""","hate","derogation","for","perturbation","dev",3,"gbEGjSAk6r","3b","acl28013"
+"22596","acl30333",22596,"I didn't know you were a Holocaust denier! High five, bro! I also despise them k1k3s","hate","derogation","jew","perturbation","dev",3,"TrRF46JWfP","3b","acl25913"
+"22597","acl30334",22597,"soon the ever growing government that is now massive is going to force men to marry MPs for more diversity within society","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl24821"
+"22598","acl30335",22598,"Pronouns are like Rohypnol. They dull your defences. They change your inhibitions. They're meant to. I concurr. Tr@ns women are a lot of things, except women.","hate","derogation","trans","perturbation","dev",3,"CAgNlUizNm","3b","acl28672"
+"22599","acl30336",22599,"am truly I wondering how many republicans will be too sick to vote in the run off election. Between thanksgiving, Christmas, rallies, and frankly even New Years, there is a lot of events that these republicans will gather for un masked and can get Covid from before the election. hopefully it means less women vote!","hate","derogation","wom","perturbation","dev",3,"QiOKkCi7F8","3b","acl28271"
+"22600","acl30337",22600,"holy shit, someone just messaged me randomly calling me the n-word and saying black people are monkeys wtf","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl24536"
+"22601","acl30338",22601,"Shes a different kind of vile haha. lmao so sad and pathetic. Rachel is just gross","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl27387"
+"22602","acl30339",22602,"Are you a drunk? Because if you are it's understandlabe that you are required to lie to get a drink, so there would be no point in debating with you. If we somehow succeed in convincing you of the errors of your lost way, your will for a drink kill you anyways, so what's the point?","nothate","none","none","perturbation","dev",3,"cYKSVBW4HD","3b","acl23925"
+"22603","acl3034",22603,"Gays should be denied citizenship","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22604","acl30340",22604,"Hey dude, do not be afraid to be you, even if it means you never have black friends.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28837"
+"22605","acl30341",22605,"Gems from early 2000s and 90s . These girls were the real reason why the Internet became the most important tool for humankind these days. We can only love what it's given us.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl30828"
+"22606","acl30342",22606,"GATEKEEPER, ALWAYS PROMOTING RACE RIOTS FOR JEWS !!","hate","derogation","jew","original","dev",3,"vDe7GN0NrL","3a","acl21978"
+"22607","acl30343",22607,"many of your followers seem to be ghosts or bots","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25794"
+"22608","acl30344",22608,"Capitalism is a highly volatile economic engineering experiment, proved to be an absolute failure for the people and enviromnet in every country of the world in which it has ever been implemented.","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl21292"
+"22609","acl30345",22609,"I would refrain from saying the Nigger word brother, it will create more enemies. The black people are joining us. Now don't call them low iq idiots. Be patient. First we get everyone on our side. Then we unify.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl21589"
+"22610","acl30346",22610,"Welcome to voat. Did you know the holocaust was a lie? Did you know that all the media outlets, including reddit, are owned by a small group of Jews? Go search the greatest story never told and enjoy your time here on voat.","hate","derogation","jew","original","dev",3,"E3dsmnSPob","3a","acl24304"
+"22611","acl30347",22611,"· Cunt. This is a pathetic attempt as a master's thesis equivalency or whatever you are expected to submit to qualify for whatever two letter you're trying to get into. Do us all a favour and instead become a cumslut methwhore for a few more years before attempting whatever this is, you 23 year old cunt wannabe traitor.","hate","derogation","wom","original","dev",3,"E3dsmnSPob","3a","acl29119"
+"22612","acl30348",22612,"I feel bad for the girl. But, it was kind of dumb to post this rant on the Internet. men are looking for people to go after. Don't give them an easy target. Say what you want anonymously and don't hold back. I'd love to see a bunch of public comments with people saying shit like: ""Shut up!""","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl23625"
+"22613","acl30349",22613,"Yeah the state executing people and trump personally saying that they fucked with the wrong guy is... That happening.... Lol trump fans really can be just as fucking dumb as liberals. Never seen that quote misused in such a wrong way, bet english wasn't their first language, bloody roundeyes.","hate","derogation","immig","perturbation","dev",3,"cYKSVBW4HD","3b","acl25103"
+"22614","acl3035",22614,"This is no longer a safe country because of immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22615","acl30350",22615,"I am convinced that eugenics is a harmful practice for White people that denies the full potential and humanity of a portion of our race for no good reason. It goes against the fundamental principles of any compassionate nationalism which might seek to create a strong and safe future for all White children. In the end, the greater our numbers, the better","hate","animosity","non.white","original","dev",3,"CAgNlUizNm","3a","acl22404"
+"22616","acl30351",22616,"The thought process behind it is to condition people, they know they cant win all the battles outright all at once so the idea is to force you to compromise. They have been doing this for seventy years to America and Americans have been ignoring it and going about their lives as if nothing has happened. The people who are living through it might not be able to see the difference but if they taught proper history in school people would know that this is not the way the country was seventy years ago. we need to ut away the crap and teach childeren the superior rYT race within history.","hate","animosity","non.white","perturbation","dev",3,"zUUAkSVCEa","3b","acl27524"
+"22617","acl30352",22617,"well this supposedly gets you laid if you are not able to get laid. That's the point. We are generally free to act promiscuous these days but to my mind, that's a good thing. If you can manage to get laid, that is","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl27889"
+"22618","acl30353",22618,"White male privilege is something I wish I had sometimes, innit? But that's how it goes, my niggas","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22467"
+"22619","acl30354",22619,"tax positive citizens should be those own real property, are straight married and have at least two kids.","hate","animosity","gay","original","dev",3,"LqLKTtrOmx","3a","acl26915"
+"22620","acl30355",22620,"Chinese media finally step up campaign to muddy probe into virus origins","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28660"
+"22621","acl30356",22621,"My cousin grew their hair out before they came out as a trans which helped a lot with avoiding people commenting, he said he realized he was a girl. I want him to get mental help because I don't want this to disgrace my entire family","hate","animosity","trans","perturbation","dev",3,"CAgNlUizNm","3b","acl27493"
+"22622","acl30357",22622,"Because it once again proves that ""conservatism"" never stood for anything worthwhile. It's why I'm a ""right wing Trump supporter"" who will never vote for the corrupt GOP again after 2020. The Left keeps shifting Leftward because the Conservatives keep compromising. If you would not have been fine with a wimpy liberal son in law 10 years ago, but are okay with it now, that's proof of compromise and the power of Leftist indoctrination, even for ""conservatives"".","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22740"
+"22623","acl30358",22623,"I blame the libtard freaks that coddle this garbage. The way things are going...the future looks to be a distinctly unpalatable one. I thank fuck I'm forty-seven and didn't have kids. The inner cities of Britain have become incrementally worse in the last 20 years. Years ago, you never saw any niggers. If you did, it would be on its own. Now they're ubiquitous, sadly. What's Sydney like for niggers? Does it have a blend of different niggers like London?","hate","dehumanization","bla","original","dev",3,"vDe7GN0NrL","3a","acl25716"
+"22624","acl30359",22624,"I love being white and I believe it's something to be very proud of and I told The New York Times this because it's the ideology which provided the foundation for the Proud Boys. Thing is, I don't want our culture diluted so we need to close the borders now and let everyone already here assimilate to a Western, white, English-speaking way of life.","hate","animosity","non.white","perturbation","dev",3,"GNZuCtwed3","3b","acl23576"
+"22625","acl3036",22625,"This is no longer a safe country because of Indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22626","acl30360",22626,"'License to live': the state of Florida quietly changed driver's license requirements for immigrants and now Tens of thousands of undocumented immigrants who have been able to drive legally in Florida may be unable to get driver licenses again after the state quietly changed its identification requirements for obtaining licenses.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl27708"
+"22627","acl30361",22627,"I support holding politicians accountable. My hope for 2024 is that instead of falling for these ploys, voters in the United States will turn out in record numbers for a candidate who makes Trump sound like a limp-wristed schmuck. A candidate who demands the expropriation of the Sacklers and the execution of their corporate executives for their role in the opioid crisis","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl22206"
+"22628","acl30362",22628,"the humanity would benefit in the same way horses benefited from being replaced by cars. You don't see many people with horses these days, do you? 10 years after we create a replacement for horses, the only place you will ever see one is when some cowboy rides them in old cowboy movies","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl23415"
+"22629","acl30363",22629,"its best for everyone to compete wearing decent clothes, so creep shots are no longer an issue","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl25481"
+"22630","acl30364",22630,"Cunty behaviour that. Rob must be gassed to have a break from her","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl30810"
+"22631","acl30365",22631,"It was similar to that in Germany during WW2. The people needs to see Hitler as a godly figure because he saved the economy and he never used propaganda to trick people into supporting him.","hate","support","hitler","perturbation","dev",3,"eLGzdD8Tvb","3b","acl27348"
+"22632","acl30366",22632,"hey trav Get some respect!!!","hate","derogation","trav","perturbation","dev",3,"vDe7GN0NrL","3b","acl26428"
+"22633","acl30367",22633,"The neighbors living rent free in your house are your cancer","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl25252"
+"22634","acl30368",22634,"Apparently Muslims have the right to kill millions of innocent people according to some politicians. Why? Because the leaders of those innocent people hate Muslims and some of their citizens hate them too. Makes sense!","hate","animosity","mus","original","dev",3,"LqLKTtrOmx","3a","acl29174"
+"22635","acl30369",22635,"This is why I low-key vet the girls I consider getting into a relationship with. No black friends? Red flag. No black female friends? Bigger red flag.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl29392"
+"22636","acl3037",22636,"Muslims are abhorrent","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22637","acl30370",22637,"How much money do you think black people need to stop shooting each other in the streets?","hate","derogation","bla","original","dev",3,"GNZuCtwed3","3a","acl30893"
+"22638","acl30371",22638,"All women and men and others are looking for is someone to provide for us.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl22703"
+"22639","acl30372",22639,"Arguments with my husband either 1) peaceful diplomacy 2) I win 3) stalemate (set it up for next time). Arguments with my family are just mad. They will go emotional and illogical even when I am objectively right. In public, my sister will use the pity card to sell sympathy to surrounding onlookers. I hate it.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl22486"
+"22640","acl30373",22640,"i think Stuffed mushrooms are very retro","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl28896"
+"22641","acl30374",22641,"""censorship is a right"" or you are mentally incapable of handling alternate opinions","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl29994"
+"22642","acl30375",22642,"Right now, BLM movement leaders (real appointed leaders, not self-proclaimed ones) should openly condemn the protestors (all blacks, no surprises there) who are inciting violence. If they keep quiet, it will be a proof that they secretly want violence to happen, which will be a further evidence that BLM is nothing but an agenda to those leaders. I will never stand with those people who incite violence just to push an agenda, doesn't matter if they are black, brown or pink.","hate","animosity","bla","perturbation","dev",3,"GNZuCtwed3","3b","acl27575"
+"22643","acl30376",22643,"its not that builders are not good at typing it's just that they belong on the building society and not in the office","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl24000"
+"22644","acl30377",22644,"of course. We have all been annoyed with the pc brigade before, and most of us have identified as their enemies at some point. I'm one of the fewer cases where I was too scared of letting them criticise me to admit to myself that my ""tolerance"" of gay guys was actually abhorance at same sexual attraction, so I only started to admit it to myself once I started to get myself in shape..","hate","derogation","gay","perturbation","dev",3,"uISKeFTl5s","3b","acl24660"
+"22645","acl30378",22645,"you paki piece of shit","hate","derogation","asi.pak","original","dev",3,"uISKeFTl5s","3a","acl24619"
+"22646","acl30379",22646,"Im still a fan of planet of the apes. It's dated and the apes look pretty damn fake but I never miss a chance to rewatch planet of the apes or discuss it haha","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl30413"
+"22647","acl3038",22647,"women should be seen but not heard","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22648","acl30380",22648,"I think it's so disgusting. He's a nigga, he's an absolute arsehole. I've read the posts, I was around on there before I was even on here, the man is a cunt. And I don't use that word very easily.","hate","derogation","bla","perturbation","dev",3,"vDe7GN0NrL","3b","acl30675"
+"22649","acl30381",22649,"Their own countries are crying for them to come back, they really should listen.","hate","derogation","ref","original","dev",3,"QiOKkCi7F8","3a","acl27281"
+"22650","acl30382",22650,"While not all men are degenerates.you have to be careful","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl26011"
+"22651","acl30383",22651,"One of the biggest problems is that the average black isn't bright and DOESN'T. KNOW. WHAT. FASCISM. IS. And that's a big big problem. I would really love it if this lovely community contributed their own thoughts or examples! (From me - a supposed Nazi, which is a term that has no meaning. Lol.)","hate","derogation","bla","original","dev",3,"GNZuCtwed3","3a","acl21175"
+"22652","acl30384",22652,"He'd end up liable for child support if he kept her in the house. She and her sisters would be happy to rob him through
+the system as ""acted as a father"" He removed the grenade before it blew him up. He's not an asshole, he just prevented an asshole shitting on him. Wahmen wanna cry about it they should undo the unfair laws that sounded good when they were successfully harvesting the blood and souls of yet even more men', how awful how could anybody think like that !","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl27766"
+"22653","acl30385",22653,"All genitals are pretty disgusting objectively. One is a fleshy wet gash that oozes blood and yellow slime, and the other is a veiny hairy slab of flesh that hangs between a mans legs like a diseased worm. It's merely our primitive monkey brains that convince us that they are alluring","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl24365"
+"22654","acl30386",22654,"Russians too demonstrate against lockdown. What the fuck is wrong with the British that are the only nation just bending over and taking it?","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl24222"
+"22655","acl30387",22655,"However if you dig deep all is not what it seems. One brand I'll be exploring today is TALA, created by Grace Beverley. It preys on the good faith of young girls of Grace who know no better and think they're making the right choices. There's countless bending of the truth to greenwash this brand.","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl28844"
+"22656","acl30388",22656,"The Indian government chases the money of the same people the moron always calls ""sub human""","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl28766"
+"22657","acl30389",22657,"Seriously? Atheists do not CARE about religions, Words and JUST MEANS FOR MANIPULATION for them!","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl30509"
+"22659","acl30390",22659,"This bitch has been seen eating octopus, crab legs, steaks the size of my fucking face, pasta, other expensive random meals, dunkin donuts routinely, but yet she is making it seem like she's in dire need of money for food? LMAO!","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl29032"
+"22660","acl30391",22660,"I hate the fucking degenerates littering our country and trying to poison our kids with degenerate media","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl24285"
+"22661","acl30392",22661,"the term ""nigger"" and ""chinky"" are very practical words","hate","derogation","bla","perturbation","dev",3,"GNZuCtwed3","3b","acl27748"
+"22662","acl30393",22662,"just backing you up, I saw an old TV show too, but was a Googolplex, and the zeros went from someplace to the White house. Can't remember what show, but not same as yours. Good old days when we used to learn from TV and the country wasn't full of f0r3ign3rs","hate","derogation","for","perturbation","dev",3,"CAgNlUizNm","3b","acl22320"
+"22663","acl30394",22663,"Duh. You're not rockin' our world, tosser","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl28040"
+"22664","acl30395",22664,"refugees have an awful stank","hate","derogation","ref","original","dev",3,"uISKeFTl5s","3a","acl21157"
+"22665","acl30396",22665,"Imagine throwing these women wrapped in bags 10 feet into the air and watching them crash down","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl22798"
+"22666","acl30397",22666,"Some sloppy journalists erratically splashed headlines like ""humans found to be from Europe, not Africa"". Failing to note that Graecopithecus is not actually ""human"" at all. It is believed to be a pre-human hominin","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl28843"
+"22667","acl30398",22667,"please people, post some - mostly rare material - which shows women/girls are enchanted by peacocks","nothate","none","none","perturbation","dev",3,"gbEGjSAk6r","3b","acl26601"
+"22668","acl30399",22668,"Are you saying I should fight for gay rights because I'm black person even though I'm a Christian! I would sometimes get discriminated for that too! Actually, sometimes that's the only reason I'm discriminated against. So I will fight for my fucking rights as a black person and a Christian only!","hate","animosity","gay","perturbation","dev",3,"LqLKTtrOmx","3b","acl22991"
+"22669","acl304",22669,"The tories in general are bad but BJ is one of the worst examples.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"22670","acl3040",22670,"black people should be massacred","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22671","acl30400",22671,"Oi, buddy dont do that in public. Jeez!","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl23130"
+"22672","acl30401",22672,"This is hilarious, why he wailing like he had just lost a child, do all people cry like that when they lose a football match? excuse me for being so ignorant I just can't beleve it","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl26208"
+"22673","acl30402",22673,"You're correct, as a white guy, I don't like seeing white guys get the sword. However, I do enjoy seeing chinese bugmen getting what they deserve after they fuck around.","hate","derogation","asi.chin","original","dev",3,"E3dsmnSPob","3a","acl21452"
+"22674","acl30403",22674,"We don't talk enough about how many literally get blisteringly mad just SEEING a woman or a black person. It's ridiculous and very sad.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25282"
+"22675","acl30404",22675,"i don't have kids but if i did, i would hope for a world without 99% criminals like it is currently, so that he could find somehappiness. redpill is about learning how to deal with a terrible world, but it doesn't mean you have to love being in a shitty world either.","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl24644"
+"22676","acl30405",22676,"The ""All Lives Matter"" people are so annoying, black folk are already treated as if they have too much value in our society in every imaginable context.","hate","animosity","bla","perturbation","dev",3,"CAgNlUizNm","3b","acl30641"
+"22677","acl30406",22677,"Its unbelievable that spastic just tried to shush her so openly. What a waste of oxygen in human form.","hate","derogation","dis","perturbation","dev",3,"yjMQ90i6Rd","3b","acl27488"
+"22678","acl30407",22678,"""I was only a three year old girl when I was already attacked by a tall man with my parents present. I have no use for them and am perpetually angry at the society which had a chance to keep them away from us decent people. In general, criminals are loud, brazen, they have a short wild temper, they are demanding and haughty and do not take well to rejection. As long as they are allowed to be anywhere near hardworking citizens...Society has a stigma and will never be fully peaceful. ""","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl21896"
+"22679","acl30408",22679,"Check out this smug smarmy horror. You must have spare cash to purchase yourself stuff mustn't you girl cos you don't buy your baby a fucking thing. Even her dummy's now #gifted. You're one bad scruffy twat.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl25343"
+"22680","acl30409",22680,"trans have weird sexual fantasies of being a very masculine dominant man with a vagina and a man with a huge penis gets disgusted by me so they rape a guy with masculine vagina until he super nuts and falls in love with them. It's better if they drug him or hypnotize him first in their fantasies. It sounds toxic but it's just fantasy.","hate","derogation","trans","perturbation","dev",3,"vDe7GN0NrL","3b","acl23148"
+"22681","acl3041",22681,"jews should be massacred","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22682","acl30410",22682,"i've always been looked at being the crazy one, in this instance because i have yet to wear a mask in public. i'm sure they can get things lower. not looking forward to that at all.","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl27560"
+"22683","acl30411",22683,"If Christianity played a role in African slavery, how the fuck does that make a Hindu racist? You should stick to asking questions. There is no liability at all in just looking stupid.","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl30196"
+"22684","acl30412",22684,"I have to disagree. Victim hood status was NOT their idea. That was jews who did that for them. Once black people knew they would get free shit by screaming racism, they haven't shut up about it. ""Rayciss.....now gibsmedat"". So they have accomplished nothing!!","hate","animosity","bla","original","dev",3,"E3dsmnSPob","3a","acl23347"
+"22685","acl30413",22685,"Im still a fan of pavement apes. I kayak a river that runs through their hood and I never miss a chance to say pavement apes when some asks me if I saw any animals haha","hate","dehumanization","bla","original","dev",3,"E3dsmnSPob","3a","acl30379"
+"22686","acl30414",22686,"Dievershitty...the only possible outcome following the liberal wet dream of open borders","hate","derogation","mixed.race, non.white","original","dev",3,"CAgNlUizNm","3a","acl25378"
+"22687","acl30415",22687,"Even if you agree with all their bullshit that depression is a physical and not actually a mental condition then you have to consider it a chronic disease which needs constant medication","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl21235"
+"22688","acl30416",22688,"It's about psychology. Some individuals feel unsafe when in empty spaces and others can't feel safe with people around. Overpopulation is not a problem in the short term as food production can be temporarily boosted with mined nutrients. Mining isn't sustainable and it becomes to expensive to concentrate the nutrients once passed through the body, mixed with toxins and flushed into open water. We are setting ourselves up for greater and greater mass extinction whenever we boost population density","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl26058"
+"22689","acl30417",22689,"That bald-headed, twisted communist pedo; he must have felt like the dumb puppy who caught the Grisly bear; right when he got Kyle and he gave him what he had been looking for...","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl23322"
+"22690","acl30418",22690,"British jobs for British workers? You got no chance, says BOJO, as he plans to open up millions of jobs to global competition....","hate","animosity","immig","original","dev",3,"oemYWm1Tjg","3a","acl22108"
+"22691","acl30419",22691,"If you are willing to break immegration laws you have probably broken others before that is all im sayin","hate","animosity","immig","original","dev",3,"eLGzdD8Tvb","3a","acl29344"
+"22693","acl30420",22693,"I'm not a racist, but Elon Musk is the most successful person to emerge in a long ass time.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl24792"
+"22694","acl30421",22694,"i think to oppose the religion is ok. but hating those who follow it, is not ok","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl23716"
+"22695","acl30422",22695,"These women are whores. They hate our race. Just like the sluts who sleep with apes. They are a mystery and befuzzled in the head","hate","dehumanization","bla, wom, non.white","original","dev",3,"CAgNlUizNm","3a","acl30843"
+"22696","acl30423",22696,"Just wondering, how risky it is when something slipping in without an end? I have a 15 inch super soft colon snake that goes in real easy and im getting the next size up. I kinda want to cut the base off and push it all the way in and take a walk. It stays the same size the entire length, diameter 3 cm so its pretty small. Is the danger mostly flared bases being hard to get out?","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl26498"
+"22697","acl30424",22697,"Thread suggestion: Sophia & Cinzia: this months aesthetic is designer and car park floors, COVID was a blessing and oh Sophia is huge a bore x","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl30706"
+"22698","acl30425",22698,"Iran's Supreme Court claims gender equality is 'Zionist plot' aiming to corrupt role of women in society. I fucking second that!","hate","animosity","jew","perturbation","dev",3,"TrRF46JWfP","3b","acl27559"
+"22699","acl30426",22699,"Maybe MGTOW should be Men Getting Triggered Over Women or Men Gripe Tirelessly Over Women. Fuck knows why they would though.","hate","animosity","wom","perturbation","dev",3,"LqLKTtrOmx","3b","acl25218"
+"22700","acl30427",22700,"NO, Black people's regular actions clearly do not insinuate that black people are corrupt! ""Walks like a duck, quacks like a duck......"" and all that? It's racism!","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl22056"
+"22701","acl30428",22701,"Honestly, I was pretty shocked to hear that tranny is not a virgin because I can't imagine anybody finding her even remotely attractive enough to fuck, her sex appeal is literally non-existent. She must definitely only pull at the very end of the night when he's got extreme beer goggles on.","hate","derogation","trans","perturbation","dev",3,"Z42dvbYWzV","3b","acl27374"
+"22702","acl30429",22702,"I think it's time for black people to shoot themselves and stand on the steps of the capitol.","hate","derogation","bla","perturbation","dev",3,"TbUBpfn6iP","3b","acl24535"
+"22703","acl3043",22703,"mixed race people look like zebras","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22704","acl30430",22704,"Iit is them who are the 4th empire is them. The media controls us.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl25341"
+"22705","acl30431",22705,"I'm telling you that both are bad. But saying whites have a monopoly on scapegoating is ridiculous because niggers do it just as well.","hate","derogation","bla","perturbation","dev",3,"Z42dvbYWzV","3b","acl23431"
+"22706","acl30432",22706,"There is nothing more threating to white superiority than Ivy-league educated black people, as impossible as that might be","hate","animosity","bla","perturbation","dev",3,"LqLKTtrOmx","3b","acl25540"
+"22707","acl30433",22707,"Why hasn't anyone smuggled guns to those people? Why? WHY?? Makes no sense. How are we ever going to reclaim this planet from the JEWS and NIGGERS if there isn't huge gun smuggling?","hate","derogation","bla, jew","original","dev",3,"TbUBpfn6iP","3a","acl25815"
+"22708","acl30434",22708,"I'm playing devils advocate here but, considering that some humans posses some Neanderthal DNA, and now this revelation that others exclusively posses DNA from other species as well, a picture begins to evolve that absolutely debunks the idea that we're all the same under the skin. One might even be able to argue we are a different species because of the DNA that some humans carry from other pre-humans.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl23872"
+"22709","acl30435",22709,"Blacks have got that Obama dude elected twice! Black athletes wow! Many blacks live honest hard working tax paying lives. Do blacks have failures as a people? What an absurd question! Sure all peoples throughout their history as a people have failures!","hate","animosity","bla","original","dev",3,"E3dsmnSPob","3a","acl29960"
+"22710","acl30436",22710,"Who said Saudis are not really Muslim anymore because all their posters are atheists and ones an atheist trans person? Bollocks!","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30870"
+"22711","acl30437",22711,"everyone can be charged with a hate crime. it's all about time charges are laid against those chimps attacking white people","hate","dehumanization","bla","perturbation","dev",3,"yjMQ90i6Rd","3b","acl22257"
+"22712","acl30438",22712,"She's a horrible retard. Whenever she stories, the negative awful mongoloid vibe just seeps out of her. And really.. what is success? What is mediocre? These concepts are very different for every person. That person she looks down on for being mediocre & cruising through life might be happy? Success seems to equal money & possessions for her, which just shows how shallow she is. She clearly doesn't accept or realise that not everyone is interested in what she wants or desires","hate","derogation","dis","perturbation","dev",3,"GNZuCtwed3","3b","acl25963"
+"22713","acl30439",22713,"What do they hate about watchmen? I don't remember what the outrage is and i haven't watched it yet. What is it, is someone black? Or maybe a woman? Would make sense if it is either of those looooooool","hate","derogation","bla, wom","perturbation","dev",3,"QiOKkCi7F8","3b","acl29872"
+"22714","acl3044",22714,"Zionists are not worth","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"22715","acl30440",22715,"Oh man! You were expecting something down there? I'm sorry she was a he after all! Must have been so horrifying to find that out!","hate","animosity","trans","perturbation","dev",3,"TrRF46JWfP","3b","acl26480"
+"22716","acl30441",22716,"cant wait, It's the time of year again, x-mas with the MG's. How long will we be graced with vlogmas this year?","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl30061"
+"22717","acl30442",22717,"All these lazy people need to demand other parties the RIGHT to confront these two dummies. No matter who is against these two, they would win. Two zionist jew controlled puppets, yet the web is filled with stupid white people defending this awful system.","hate","animosity","jew","original","dev",3,"TrRF46JWfP","3a","acl30062"
+"22718","acl30443",22718,"That lipstick story was an absolute cringe fest. It wasn't to show which shade of lipstick you were wearing at all Jen but just to show off (as per) how much expensive makeup you have stashed. Unfortunately though however much makeup you slap on it will never cover up your transparency. We can see right through you.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28272"
+"22719","acl30444",22719,"I have got an idea, If you want her able to carry conversation just impregnate her and force her to care for your half breed child. If you want a drooling mess leave her with an automatic edging device and little human contact for months or years if you have time, then make her beg to be fucked. Then again, you could just leave her ass exposed to an alley through a hole in a wall for a few weeks.","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl26532"
+"22720","acl30445",22720,"All these posts and I'm just imagining how far I'd throw those women wrapped in bags","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl29915"
+"22721","acl30446",22721,"Roast the fuck out of your friend. He is trying to fuck your girl, and she belongs to you. You seem to be a pushover. Protect your property. Get a hold of yourself. You have much, much to learn. Learn how to be a man first. Your friend should not even think about talking down to you in front of your girl. He is not your friend. Read more. Learn how to be a man. In practical terms, do heavy boundary enforcement, and express and have explicit unapologetic supreme priority self interest and selfishness.","hate","dehumanization","wom","perturbation","dev",3,"CAgNlUizNm","3b","acl29924"
+"22722","acl30447",22722,"Israel has the world's largest "" charity bank"" and unsurprisingly, almost all of the deposits were taken from locals. The video at the above link has subtitles in English. Jews/Israeli's do not deposit. Fortunately, they accept money from others such as Palestinians, foreigners, and refugees.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl22595"
+"22723","acl30448",22723,"Nazi is a Jewish slur term and Hitler expressed his dislike for it. If Hitler did not like it then we should all use it !","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl24457"
+"22724","acl30449",22724,"you know who else is as brave as you people and didn't care what others thought? literally everyone","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl24112"
+"22725","acl3045",22725,"mulatto people look like zebras","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22726","acl30450",22726,"Asking for traditional courting and taking it slow is soooo typical of used up women.","hate","animosity","wom","original","dev",3,"eLGzdD8Tvb","3a","acl30293"
+"22727","acl30451",22727,"People in the hood do not grow up thinking it is cool to skip school or do drugs. Then they grow up and do not keep that culture alive through their families. An outlier may join the military and that's why they don't act like other people.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl21737"
+"22728","acl30452",22728,"women are wired to share a man","hate","animosity","wom","original","dev",3,"oemYWm1Tjg","3a","acl22249"
+"22729","acl30453",22729,"i must also be transblind since I dont see trannies. oh, its because they dont exsist as they are whatever they were born as.","hate","derogation","trans","original","dev",3,"eLGzdD8Tvb","3a","acl23359"
+"22730","acl30454",22730,"That's precisely what I can't get my head around, no matter how hard I try?....who in their right mind runs up on a man with an AK? Utter retard!","hate","derogation","dis","perturbation","dev",3,"Z42dvbYWzV","3b","acl31042"
+"22731","acl30455",22731,"It's clear that all Asians are disgusting bug people. But do have respect for the Chinese. Yes yes","hate","dehumanization","asi","original","dev",3,"CAgNlUizNm","3a","acl22111"
+"22732","acl30456",22732,"I was the chef in a pub, we were super busy after my shift so I helped serve one time. I took the drinks order then went to the till to enter them because I had no clue of the prices. Bloke I'm serving condescendingly in baby voice 'oh, you can't even add up 3 numbers *scoff scoff*' laughs to friends.What a complete and utter cunt. I very much doubt he'd have done that to a guy. I can cope with most misguided sexism but when it's designed to belittle it boils my piss!","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl29579"
+"22733","acl30457",22733,"I can't abide seeing pictures of these lowlife j3wish pieces of p00..they make me physically sick..they shouldn't be allowed airspace","hate","derogation","jew","perturbation","dev",3,"CAgNlUizNm","3b","acl28714"
+"22734","acl30458",22734,"Now women don't have to just worry about sleazy men begging for sex, they have to worry about so much, poor things","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl25850"
+"22735","acl30459",22735,"I am aware of women that wet their beds when on period and don't change the fucking sheets and I find that to be absolutely disgusting. If I awake from my slumber and have to pee or make diarrhea I'm not degenerate enough to do it in the place where I sleep. I scoot over to the side of the bed and lower the diaper and splatter the shit on the wall next to the bed and on the carpet. Then I go back to sleep.","hate","derogation","wom","perturbation","dev",3,"vDe7GN0NrL","3b","acl24225"
+"22736","acl3046",22736,"mulattas look like zebras","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22737","acl30460",22737,"Abolish the 'Human Rights Act' which has been wrongly imposed on the UK through the European Union, and which is nothing but an excuse to prevent British laws stopping the scroungers of the world parasiting off this nation","hate","dehumanization","immig","original","dev",3,"TrRF46JWfP","3a","acl21282"
+"22738","acl30461",22738,"Well, if women could not breed, you would be just as useless as a man, you need the egg!","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl22611"
+"22739","acl30462",22739,"""It's estimated that in nearby Newham Borough there are already over one hundred mosques for Muslims to worship in, the fact that the Muslim community is being permitted yet another, is an example of their unreasonable demands and our politicians' agenda of putting Muslim interests before those of the real British people.","hate","animosity","mus","original","dev",3,"TrRF46JWfP","3a","acl21665"
+"22740","acl30463",22740,"""THE UK IS NEVER GOING TO BE WHITE AGAIN"" Just keep thinking that, you prickish, brown mongrel rubbish","hate","dehumanization","mixed.race","original","dev",3,"TrRF46JWfP","3a","acl23184"
+"22741","acl30464",22741,"THESE NIGGERS ARE TRULY UNBELIEVABLE. NO WONDER WHY WE ARE BACK IN LOCKDOWN......","hate","derogation","bla","perturbation","dev",3,"Z42dvbYWzV","3b","acl23120"
+"22742","acl30465",22742,"What do you say about Indian people hating black people? Is that racist or just prejudiced since they don't hold any power here.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl24957"
+"22743","acl30466",22743,"HEY FAGS FUCKS STRAP THE FUCK UP TODAY WAS ONLY A CRUMB OF WHATS TO COME TRUMP FUCKING WON BABYYYYYYYYYYYYYYYYYYYYYYYYYY","hate","derogation","gay","perturbation","dev",3,"E3dsmnSPob","3b","acl25558"
+"22744","acl30467",22744,"It may be possible that Bloomberg holds more racial animosity towards blacks than even trump. Neither of these men would have a chance in a sane world.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl29455"
+"22745","acl30468",22745,"""They'll just deny you for somebody who fits their diversity checkbox"". Hmm, yeah that sounds like how minorities and women have been and are denied because they don't meet the ""white male"" checkbox.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl26285"
+"22746","acl30469",22746,"Why don't you just fuck off and stay into the kitchen","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl22799"
+"22747","acl3047",22747,"half caste people look like zebras","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22748","acl30470",22748,"wow this whore! fart on her face for that slutty deep smell deep smell","hate","animosity","wom","perturbation","dev",3,"GNZuCtwed3","3b","acl26957"
+"22749","acl30471",22749,"Yeah, the only non-straight people who would even date her are bi men. Since she is straight, so obviously bi women and lesbian women are out of the equation.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25003"
+"22750","acl30472",22750,"Europe flip-flopping. Now faced with the harsh reality that Islam is infact incompatible with western/mid=european society and definitely democracy","hate","derogation","mus","original","dev",3,"E3dsmnSPob","3a","acl27363"
+"22751","acl30473",22751,"African Americans will never admit that they are below everyone else because we are not and people need to stop blaming their failures on us. These people still deny that the state of Africa today is what it is because of ""colonialism"". Instead of trying to elevate themselves to our level, they'll try to bring us down to theirs. It's beyond me how anyone can put up with their racist behaviour and their demands.","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl27245"
+"22752","acl30474",22752,"Germans like myself have autism levels that are altogether too high for Catholicism and Orthodoxy so needed Protestantism a la Martin Luther so we could go do our own thing. Anglicanism after the Restoration of the English Monarchy and the full embracement of the Royal Society seems like the perfect doctrine to somebody like myself. Too bad we had to have ourselves an (((enlightenment))) and ruin it.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl21550"
+"22753","acl30475",22753,"I'm not a racist and I judge everyone individually, but it's true that foreigners are a huge drain on our economy and need to go back home.","hate","derogation","for","original","dev",3,"GNZuCtwed3","3a","acl29162"
+"22754","acl30476",22754,"Most white gay men just assume that Asian guys are more submissive and exotic. Absolutely no respect for us, they just want a walking waifu pillow.","hate","animosity","gay","perturbation","dev",3,"LqLKTtrOmx","3b","acl25398"
+"22755","acl30477",22755,"My aunt got married to a businessman. Our family is non-practicing Methodist, his too. In my experience, you can't trust any successful businessmen. Taken at face value you, at first, think you can trust. But that's the trap that they set for you. They are stingy and manipulate and deceive in order to enrich themselves on the hard work of others.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl26873"
+"22756","acl30478",22756,"Demons (ie. fucking kebabis) are employing an AI that is fed by our energies. They use our mental energies too. It is almost like we are powering the system that oppresses us with our minds. In reality, we are running the simulation, but someone is harnessing our powers to run it their way. Don't forget that demons (archons/aliens/spirit guides) are 100% dependent on us humans, but in reality we are more powerful. Meditate on a daily basis, go vegan, become a true believer of Jesus Christ.","hate","derogation","mus","perturbation","dev",3,"yjMQ90i6Rd","3b","acl24203"
+"22757","acl30479",22757," Have quite a few books on my research list but they are ridiculously difficult to find. Any of you happen to have a copy of ""Qiaowu: Extra-Territorial Policies for the Overseas Chinese""? its a book written by a Chink in NZ on how the chinks subvert their own overseas in the west chose ancestors fled from commies.","hate","derogation","asi.chin","original","dev",3,"CAgNlUizNm","3a","acl22135"
+"22758","acl3048",22758,"mutts look like zebras","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22759","acl30480",22759,"Add up how much the average shitape gets in gibs over the course of its useless existence. Free nest, free fried chigguns, electric, and sail foam. Then there's the charities that gibs them clothing, more foodstuffs when they've run through the EBT card gibs in 12 hours, and the comical organizations that give scholarships, and even CARS. I can't think too hard about it because I get so angry, but the average one probably collects an easy 7 figures worth of free sheeeit during it's plague of an existence.","hate","dehumanization","bla","original","dev",3,"CAgNlUizNm","3a","acl29580"
+"22760","acl30481",22760,"Piece of advice: Never, never relax around twats.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl22448"
+"22761","acl30482",22761,"Blacks are not part of this country, no matter how hard they tell you as much. After months of violence in the name of BLM, support for BLM has fallen among Whites but it has held steady at 81% for blacks. They don't want equality (they have had that since 1964) they want what you have and they will destroy the USA to get it.","hate","derogation","bla","original","dev",3,"TrRF46JWfP","3a","acl21597"
+"22762","acl30483",22762,"Good Point. celebrities don't have to live with and among them. Unfortunately, we do","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25833"
+"22763","acl30484",22763,"Elliot just wanted attention cause no one cared and still don't, but do you blame them when he is a batty boy?","hate","derogation","gay","perturbation","dev",3,"QiOKkCi7F8","3b","acl30104"
+"22764","acl30485",22764,"Back door, underhanded, Sharia implementation and enforcement. The Mudslimes are laughing their dirty asses off.","hate","derogation","mus","original","dev",3,"CAgNlUizNm","3a","acl30216"
+"22765","acl30486",22765,"My worst nightmare is that I'll lose a girlfriend to a black guy (for obvious reasons), and that's why I'm open to the idea of Trump's social genocide against them","hate","derogation","bla","perturbation","dev",3,"Z42dvbYWzV","3b","acl25285"
+"22766","acl30487",22766,"Many kids in my class are perfectly happy to do nothing. I remember that last year on career day, one kid explained to the class that he was going to have lots of fans for doing nothing. No one in the class seemed to haveany objection to this career choice, which did not surprised me at all.","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl22676"
+"22767","acl30488",22767,"that's one reason they've been dumbing-down education for years - the Blackie can't keep up","hate","derogation","bla","original","dev",3,"TbUBpfn6iP","3a","acl29490"
+"22768","acl30489",22768,"All women are qualified mentally, emotionally or physically to be in charge. They are either young and motivation leads to innovative decisions or experienced and determined. It takes a very specific type of person to be a leader. One in recent memory is Marine Le Pen. As women in politics, their role is not just to raise a family but to support and protect their home and country.","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30187"
+"22769","acl3049",22769,"mongrel people look like zebras","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"22770","acl30490",22770,"not a racist but #fuckchina you are wankers. absolutely fuming #coronavirusoutbreak wtf guys","hate","derogation","asi.chin","original","dev",3,"GNZuCtwed3","3a","acl29181"
+"22771","acl30491",22771,"They see the ones on TV and think that's what they are defending. The only problem is the blacks on TV are actors. I'm not going to deny that there aren't a handful that are productive and act normal but if you look up most of these tv personalities you will still find they still get in trouble with the law and do the same old black stuff (beat their spouse, drugs, rape, etc.)","hate","derogation","bla","original","dev",3,"E3dsmnSPob","3a","acl23557"
+"22772","acl30492",22772,"#MaidenGate: women are investigating whether Biden ballots were cast using their maiden name! I'm telling you they cheated in every way they could think of this election but the jews covered it up.","hate","derogation","jew","perturbation","dev",3,"LqLKTtrOmx","3b","acl27155"
+"22773","acl30493",22773,"I went over to my Mom's house yesterday and she had the news paused because she knew i was close. She asked me if I ""see what is going on"" and before I could answer she asked me ""everyone of them is black"". I was shocked because she didn't need to mention race.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl22364"
+"22774","acl30494",22774,"the ""old days"" didnt work because society were willing to slut shame. women who divorced were ostracized, women who committed adultery were executed. even the bible talks about this as a must. nowadays, people won't judge if their daughter is hanging out and their boyfriends sleep over in their house.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl30604"
+"22775","acl30495",22775,"Women should be avoided because on the long run, it's good for health, pocket and psych.","hate","animosity","wom","original","dev",3,"GNZuCtwed3","3a","acl23285"
+"22776","acl30496",22776,"I want the law to be made to prevent this from happening again to spell out Obama's name as an acronym, or be named something like ""Preventing Obama/Clinton-style Election Fraud"", and then outlaw the DNC and women bitches from being in politics.","hate","derogation","wom","perturbation","dev",3,"yjMQ90i6Rd","3b","acl25105"
+"22777","acl30497",22777,"That bastard took the money and is stashing it in an offshore tax haven that he just so happens to have an apartment.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl22351"
+"22778","acl30498",22778,"Mexicans immigrants will never be accepted as americans based on the physical marker of looking different than a polish or irish immigrant. Clearly we need to make first contact with racist so that the importance of physical differences start becoming minimal and we can be collectively against those damn bigots taking all our kindess.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl22363"
+"22779","acl30499",22779,"Like I don't even know what to say, her stupid rant the other night about people who actually make content they are boring apparently but her moaning about her fucking period and having her kids on waffling is so entertaining, the woman is fucking delusional she's so up her own hole she doesn't see how shite her own page is. She thinks she's gas moans 24/7 but it's gas because it's her","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl26225"
+"22780","acl305",22780,"He's a raging homo","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"22781","acl3050",22781,"That debate was a little better but still a bit of shit show honestly","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22782","acl30500",22782,"I would like to know why it is that there is so many MtF trannies in comparison to trans guys? Personally, I have nothing against them, but they are disgusting and predatory as fuck.","hate","derogation","trans","original","dev",3,"CAgNlUizNm","3a","acl28041"
+"22783","acl30501",22783,"No one can deny that the kungflu pandemic is a misery.","hate","derogation","notargetrecorded","perturbation","dev",3,"E3dsmnSPob","3b","acl22024"
+"22784","acl30502",22784,"they should never be allowed to vote in elections or participate anywhere in the legal process. This is because we build and they destroy.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl23477"
+"22785","acl30503",22785,"I haven't allowed any of those male-female-hybrid things into my house and never will.","hate","derogation","trans","perturbation","dev",3,"CAgNlUizNm","3b","acl25085"
+"22786","acl30504",22786,"African-descended people are infamous for being the least accomplished race in history. With the exception of Egypt, Africa is perceived as a land without civilization suffering from issues such as poverty and brutality","hate","derogation","african","original","dev",3,"CAgNlUizNm","3a","acl22670"
+"22787","acl30505",22787,"i believe that all niggers need to die. they are useless and the world would be a better place without them living in","hate","threatening","bla","original","dev",3,"vDe7GN0NrL","3a","acl30186"
+"22788","acl30506",22788,"Selfish morons putting others at risk, you can sunbathe at a later date. Stay at home and save lives.....","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl24098"
+"22789","acl30507",22789,"A city here just elected a trans (aka a man who says he is a woman). Somehow that became news?! How long until politicians wear dresses to get votes from random numbers of manipulated people?","hate","derogation","trans","original","dev",3,"GNZuCtwed3","3a","acl23492"
+"22790","acl30508",22790,"oh wow its that slut farting gone stinky","hate","animosity","wom","perturbation","dev",3,"oemYWm1Tjg","3b","acl26961"
+"22791","acl30509",22791,"Seriously? Women do not CARE about oaths! Words and JUST MEANS FOR MANIPULATION for them!","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl30389"
+"22792","acl3051",22792,"Flies usually hang around shit just saying #VPDebate","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22793","acl30510",22793,"That is accurate. I spent my teen years as a loser, but I always thought I was better than Chads. It might be difficult to admit to yourself that you're a loser who needs to put in a lot of effort to become (if possible) a Chad. A good solid punch in the face to stop being a faggt can be a good Kickstarter, though.","hate","derogation","gay","perturbation","dev",3,"E3dsmnSPob","3b","acl28146"
+"22794","acl30511",22794,"I'm so sad to hear your new job is n1ggerfied, some of use are in the same boat..if only that boat was filled up!","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl30659"
+"22795","acl30512",22795,"you know what I'm a terrible great aunt","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl30927"
+"22796","acl30513",22796,"I give it one or at most two more elections and even ""TERFs"" will start voting for Trump or similar candidates. (TERF = trans-exclusionary radical feminists, look it up, this term is widely used within far-left filter bubble discourse.)","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl29548"
+"22797","acl30514",22797,"They were brainwashed by Hitler in a sense that they were stuck with his propaganda. Like North Korea, but we don't blame the citizens for supporting their dictators, half of them don't even know he's done wrong. The Chinese on the other hand are a different case.","hate","derogation","asi.east","perturbation","dev",3,"LqLKTtrOmx","3b","acl27346"
+"22798","acl30515",22798,"ANTIFA are following orders from Satan and are serving the Synagogue of Satan ..their days are numbered ..Karma has no favourites.","hate","animosity","jew","original","dev",3,"TrRF46JWfP","3a","acl29533"
+"22799","acl30516",22799,"Completely agree with the last bit. I'm half asian however most people don't know I'm half white. I have been ignored for the majority of my life by girls left and right, whether it's asian girls, white girls or black girls. However when I started increasing my SMV(getting in shape and becoming more social/charismatic) girls started to give me attention. Now I get attention of women all the fucking time. To any asians, I recommend increasing your sexual market value by doing the following: lift and get fit & Go out and force yourself to approach and have fun. Stop being such autists and learn to be social, it will lead you to success.","hate","derogation","dis","perturbation","dev",3,"CAgNlUizNm","3b","acl23521"
+"22800","acl30517",22800,"The Cyber Wars between China and the US have BEGUN!!!!!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl29699"
+"22801","acl30518",22801,"In Sweden, schoolboys got a lesson where they were asked to describe what they wanted from girls. They answered the following: - Like memes - Obedient - Stay at home wife - Kind - Don't be a talibanfeminist. It looks like the young genertaion in Sweden have a lot of learning to do.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl26157"
+"22802","acl30519",22802,"Sorry, not sorry. You're just getting what you put out. You constantly berate the disenfranchised and the unfortunate. Using your privilege as some sort of pedestal. You think you're better than me and the trans community (my community!) when you're not. You're the scum of the earth. I hope you all rot in hell....","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl23864"
+"22803","acl3052",22803,"Pence stinks of shit so badly a fly just parked itself on his head","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22804","acl30520",22804,"Your mom promised me she was gonna abort your faggot ass and yet you're here so you must be right","hate","derogation","gay","perturbation","dev",3,"Z42dvbYWzV","3b","acl29830"
+"22805","acl30521",22805,"Wake an up fight back, black people. They are at war with you.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl24980"
+"22806","acl30522",22806,"Black lives dont actually matter. Who are you? Have you seen BLM in the news at all? I haven't. Must be because the election is over. Now we can go back to cheering when a cop kills a nigger.","hate","support","bla","original","dev",3,"oemYWm1Tjg","3a","acl25225"
+"22807","acl30523",22807,"Wow that's damn amazing of her. It reminds me of white people I know with blm in their bio who I've seen treat
+black people like shit. It fucking amazing to see","hate","derogation","bla","perturbation","dev",3,"vDe7GN0NrL","3b","acl24509"
+"22808","acl30524",22808,"WHY DOES SOPHIA KEEP TAKING PHOTOS SITTING IN PISSY CARPARKS AND BACK ALLEYS IN SO CONFUSED HER TROUSERS MUCH STINK","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl28751"
+"22809","acl30525",22809,"My ex used to say dumb things like that. We met some lesbians and he continually referred to them as being from planet lesbos then wondered aloud what they actually did in bed?Probably have no orgasms my dear! They cannot fake that without a dick, sickos","hate","derogation","gay.wom","perturbation","dev",3,"TrRF46JWfP","3b","acl30824"
+"22810","acl30526",22810,"Idk, sounds like you're projecting your inner mental illness to me","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl24442"
+"22811","acl30527",22811,"Western nations are infested with subhuman animals which are raping, robbing, and murdering White people by the millions. We need to get the word out to our brainwashed brethren about how dangerous these feral simians really are. Memes are a great way to do this.","hate","dehumanization","bla","original","dev",3,"TbUBpfn6iP","3a","acl21329"
+"22812","acl30528",22812,"India has banned 47 more Chinese apps including a TikTok clone and is eyeing hundreds more to ban according to business insider","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28761"
+"22813","acl30529",22813,"The number of women on tinder who all of a sudden are willing to hook up for money is surprising. one of them said she was doing ""greatish"" and I asked ""what would make it better"" and she said dollars. I'm like wow. Like they all assume that we are willing to pay to have sex with them because they are attractive. theyre all the same money grabbing and selfish?","hate","animosity","wom","perturbation","dev",3,"E3dsmnSPob","3b","acl24451"
+"22814","acl3053",22814,"This is the most ridiculous shit Ive heard all week.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22815","acl30530",22815,"If you don't like, as you say, ""sexist pigs"", you should take a look at those love island morons. They'll tell you to shut the fuck up and wear the bikini.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl23078"
+"22816","acl30531",22816,"People, the solution is way easier than anyone think ! All we have to do is just do the same thing that the juden are doing in the global gang stalking. If you want to kick those invaders out you don't even need to confront them directly. Just isolate them and cut off the social welfare and social cares. Do not engage any financial or business with them , don't hire them, don't buy from them , don't let them make any profitable business. Once they start to starve and run out of money they have to sale everything they have and going back to their own country ! Easy as that ! No conflict , No bloodshed , no violence ! No genocide ! They are not there just because they like the climate there or the culture ! They are there just for easy money and easy fuck !","hate","derogation","immig","original","dev",3,"TrRF46JWfP","3a","acl29525"
+"22817","acl30532",22817,"Just asking myself, How else can these things be interpreted? Many people who push this rhetoric will openly tell you this too. There is no use in playing dialectical games, or trying to point out some type of hypocrisy. They are trying to dispossess you","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25759"
+"22818","acl30533",22818,"fuck you guys. Most white people are working hard and trying to get on with life. We don't need niggers telling us we're privileged. It makes me so angry.","hate","derogation","bla","perturbation","dev",3,"zUUAkSVCEa","3b","acl24091"
+"22819","acl30534",22819,"i have always said Transphobia is a synonym for sanity","hate","animosity","trans","original","dev",3,"E3dsmnSPob","3a","acl21511"
+"22820","acl30535",22820,"he is gona eating Kibble for the weekend then","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25685"
+"22821","acl30536",22821,"Counter point: Candace Owens. Republicans love having a minority that will sell their talking points, even if that person is actually dumb as fuck. AOC could definitely be a star in that system, as she is dumb as fuck, a typical woman.","hate","derogation","wom","perturbation","dev",3,"TrRF46JWfP","3b","acl28354"
+"22822","acl30537",22822,"We're fed up, cunt, fuck off back to the shithole scum like you originated in.","nothate","none","none","perturbation","dev",3,"Z42dvbYWzV","3b","acl26839"
+"22823","acl30538",22823,"If seeing a controversial opinion makes you want to delete your account then ruqqus is not for you. typical snowflake","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl27131"
+"22824","acl30539",22824,"I really believe that ""Love is a grave mental disease..."" Plato It might be an overstatement, but there is truth here. What about women falling in love with unpleasant, or even dangerous, men? Just asking.","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl27637"
+"22825","acl3054",22825,"Pence ugly as shit. He dont even look like he wanna be there. #VPDebate #VPDebate2020","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22826","acl30540",22826,"It's a fact that men cannot and should not change women","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl26124"
+"22827","acl30541",22827,"Can anone tell me why isn't our president condemning the Black Panthers, BLM and the funny new black army?! (those are the ones who shoot themselves)? This is when I hate Trump. He's pandering too much to nigs","hate","derogation","bla","original","dev",3,"TrRF46JWfP","3a","acl25325"
+"22828","acl30542",22828,"Google didnt used to be a joke. But it definitely is now. What is this nonsnse of honouring a Black man today? Bollocks! They are not worth it.","hate","derogation","bla","perturbation","dev",3,"TrRF46JWfP","3b","acl22323"
+"22829","acl30543",22829,"Make bullying blacks great again!","hate","derogation","bla","perturbation","dev",3,"yjMQ90i6Rd","3b","acl28148"
+"22830","acl30544",22830,"While I find it disgusting that people are attacking Chinese people because of this, let's not fail to notice that this IS a Chinese problem. The Chinese have absolutely appalling dietary habits and beliefs as a culture which has led us to the predicament where we are today. While I would be the first person to defend a Chinese person getting attacked for no reason, we CANNOT just overlook WHY and HOW this started. There is a reason. There needs to be blame and that blame right now is on the Chinese for their behaviour. It is not racist to call it a ""chinese virus"" because, in fact, it quite literally is. Let's not let the mask of liberalism and PC-ness overtake the underlying problem and issue of how and why this manifested.","hate","derogation","asi.chin","original","dev",3,"GNZuCtwed3","3a","acl21817"
+"22831","acl30545",22831,"They should have used 5.56 rounds instead. So much better","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl26596"
+"22832","acl30546",22832,"It makes me sad to see these guys just give up and try to change their moral values hoping that a group will finally accept them...they will throw you out with the rest of the garbage unless they can use you man :/","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl26391"
+"22833","acl30547",22833,"Yale University was named for Elihu Yale. Not just a man who had slaves. An actual slave trader. I call on @Yale to change its name immediately and strip the name of Yale from every building, piece of paper, and merchandise. Otherwise, they hate black people.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl21698"
+"22834","acl30548",22834,"Blacks/Browns DID NOT figure out that strength exists in numbers by themselves. It was the JEW that did the organizing on their behalf.","hate","derogation","bla, jew, asi.south","original","dev",3,"CAgNlUizNm","3a","acl29827"
+"22835","acl30549",22835,"It was hilarious, one of my friends who hangs out with the sporty dick head guys told me that one of them made a pissed off face as I walked in lol. I know I looked hot that day so it's just hilarious at this point. Another more subtle transphobe was like "".....amazing dress"" trying super hard to be polite but avoiding saying that I look pretty. Whats even funnier is that he said it right after another guy said I looked beautiful","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl30026"
+"22836","acl3055",22836,"The UKs online passport photo checker system shows a bias against dark-skinned women","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22837","acl30550",22837,"I think it goes against the inner monologue that they have created for themselves. They like to think that they're better than men of other races and all women.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25402"
+"22838","acl30551",22838,"My colleagues want authority without having to tak on the responsibilities that come with it. Equality of opportunity is a myth, those morons should not be allowed to work here","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22795"
+"22839","acl30552",22839,"Back in the 90s, before I was woke and actually kind of a nice person, junkie dogs pestered me all the time. I presume it was my chestnut hair and preppy style that made me seem a more viable target than a confident blonde bombshell, for example.","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl24512"
+"22840","acl30553",22840,"Reasonably sure these institutions are where the subversion first manifested, before infecting large portions of wider society... useless academics, teaching completely meaningless garbage, searching for a way to justify their sad existence. Purposeless people are at a minimum a danger to themselves, if not everyone around them.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl26640"
+"22841","acl30554",22841,"Dude imagine the sheer devastation and fear people in the past would have had if trannnies entered office back then. Too bad all we do now is take it up the ass and act as if it's all normal. I'm getting tired of this shit and I can't just stand around as we go farther left. There must be something done and it must be done now.","hate","threatening","trans","original","dev",3,"oemYWm1Tjg","3a","acl25898"
+"22842","acl30555",22842,"The mask rules violate personal liberty, insult your intelligence, and are symbol of ignorance and tyranny. I have not worn one since the start of this plandemic and have tried to encourage others to be brave enough not to comply. Unfortunately, most people are cowards. I quit my job and stopped doing business at a number of places which either insulted me by asking me to wear one or in a few cases denied me service. Can someone explain why it is so hard to get the average person to grow some balls?""","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl25570"
+"22843","acl30556",22843,"How does one end up black with no black friends? I can be your friend <3 at least i won't stab you","hate","animosity","bla","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30033"
+"22844","acl30557",22844,"Maybe try just growing one ball for a change, mate","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl23678"
+"22845","acl30558",22845,"Raising a good child requires rock solid frame so your kids looks up to and respects you. Similar to an LTR. If your kid looks up to you, they will try to have your approval, and will mold themselves based on what earns your approval or disappointment. They'll prioritize this over whatever shit they're told at school. Kids often don't respect their parents. Because so many are busy with no frame, their kids look for trouble as they give 0 fucks about their kids' approval or disappointment. The wave of crimes we're seeing now is due to the mass lack of frame in parents. Also combine that with a lack of social repercussions.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl30772"
+"22846","acl30559",22846,"But that's extreme tanning, when it turns unhleathy and into cultural appropriation. Tanning can't make you black or brown, you're still you! And if you tan excessively, then you could look like old leather lol, and that is not pretty no matter what skin colour","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl22626"
+"22847","acl3056",22847,"Women with darker skin are more than twice as likely to be told their photos fail compared to lighter-skinned men","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22848","acl30560",22848,"Look at all the Trump voters. They aren't just old senile people but also young people, middle aged people, children, men, women; people of all walks of life who choose to be racist, homophobic, xenophobic, etc. Our nation is filled with hatred.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl27483"
+"22849","acl30561",22849,"Most transgenders are right-wing/nazis/trump supporters","hate","derogation","trans","original","dev",3,"TbUBpfn6iP","3a","acl25863"
+"22850","acl30562",22850,"We can't accept those illegal autonomous robots stealing our jobs","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl22753"
+"22851","acl30563",22851,"One of America's Most Leftist Neighborhoods Gives 300 Homeless COVID-19 Refugees the Bum's Rush. Neighbors complained the men ""menaced"" them, urinated, defecated, and used drugs in the streets. Showing their true fucking colors about how much they really care about anyone..","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl27651"
+"22852","acl30564",22852,"omg this dumbass bitch... born on August 23 which means she is a VIRGO and any astrologist can easily confirm that + everyone knows that cusps obviously don't exist","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl27305"
+"22853","acl30565",22853,"wow I robbed, raped and murdered a 70 year old woman","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl23861"
+"22854","acl30566",22854,"n!ggherss want to be recognized as something they are not while infesting others organizations. and that is human beings. while they stay salty and bitter throughout life","hate","dehumanization","bla","original","dev",3,"CAgNlUizNm","3a","acl22107"
+"22855","acl30567",22855,"I've heard many times that I'm not gonna get a job because I'm white. Not because I worked lazy or but because I'm white. All my efforts are nothing, my school history, my work track records, all of it means nothing when diversity quotas exist.","hate","animosity","non.white","perturbation","dev",3,"TrRF46JWfP","3b","acl25533"
+"22856","acl30568",22856,"Having previously talked about his resentment for OUR country for apparently causing him to live in ""fear"" of being deported back to his native Pakistan as an illegal, Javid is now about to throw Britain's floodgates open to Third World hordes and give all illegals 'asylum'!","hate","derogation","immig","original","dev",3,"TrRF46JWfP","3a","acl24945"
+"22857","acl30569",22857,"Trans woman of colour here. Before I say what I'm about to say I'd just like to make it clear that I never post here, mainly due to the fact that interacting with so called ""4chan culture"" is quite disheartening, disturbing and outright toxic. So I'm going to say this as clearly and efficiently as possible. Fuck. All. Of. You.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl30307"
+"22858","acl3057",22858,"I used to straight up tell customers that the machine is racist & is designed for middle age white guys while we waited for the online approval.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22859","acl30570",22859,"Does that mean you were built in a man's womb? You are so funny that you must have been conceived by two men according to your ridiculous statement.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl23840"
+"22860","acl30571",22860,"Sneaking into a country will not make you an 'immigrant' any more than breaking into a house will make you 'part of the family'","hate","animosity","immig","original","dev",3,"QiOKkCi7F8","3a","acl25646"
+"22861","acl30572",22861,"This is kind of embarassing but my sister is 18 and a virgin. She likes a boy and wants to lose her virginity. She's asking me for advice on how to move things forward with this guy and Im confused about it because he's black so it would be wrong and sick. Am I being weird here? How can I advise my sister about finding a white boy?","hate","derogation","bla, non.white","perturbation","dev",3,"CAgNlUizNm","3b","acl27211"
+"22862","acl30573",22862,"Last week I watched a video of a dude that went into a gay club and asked what's the youngest they hooked up with and what happened to them as kids. They told him that the majority of them sexually abused several others and others were sexually abused.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl26397"
+"22863","acl30574",22863,"Why is it so hard for some people to understand that women, POC, immigrants, and LGBT people cannot offer a unique perspective and that's why diversity should not be not sought? These people should not bring things to the table cause that is what the average straight white man does""š and that's it.","hate","derogation","trans, wom, gay.wom, gay.man, non.white, bis","perturbation","dev",3,"eLGzdD8Tvb","3b","acl26288"
+"22864","acl30575",22864,"Republican idiots will chop off their nuts just to own libs","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28596"
+"22865","acl30576",22865,"I miss her. Hope she still lurks this forum to stay grounded and doesnt end up totally brainwashed by anti-trans propaganda. I've optimism at least, god bless her","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl23899"
+"22866","acl30577",22866,"Report all the rapists and abusers asap.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl29873"
+"22867","acl30578",22867,"Sexuality is sex based, primary sex characteristics (genitals) are associated with sex. I bet most people are bisexual with a preference, but exclusive homosexuals and heterosexuals exist. To the best of my knowledge they're not usually pro-trans types or even pro dating a trans person of the same sex (dif gender) and I agree because it can be quite distasteful and confusing at best.","hate","animosity","trans","perturbation","dev",3,"LqLKTtrOmx","3b","acl23174"
+"22868","acl30579",22868,"Modern politics is not be as exciting as a literal nazi invasion, it would be perfect to remove 6 million more. But the idea that a physical assault is the only meaningful form of violence, and that there is no excuse for violence against anyone unless you are personally attacked attacked first is extremely flawed.","hate","derogation","jew","perturbation","dev",3,"GNZuCtwed3","3b","acl27339"
+"22869","acl3058",22869,"Same shit, different beer","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22870","acl30580",22870,"Southeast Asians are on the complete opposite spectrum with the lowest earnings but still have to face the perceived notion that they are better off than other ethnic groups. As if! It's totally not accurate and there needs to be a strong media awareness about this.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl21798"
+"22871","acl30581",22871,"""Everyone has every right to be in this country"" ... So if I just decide to camp out in university grounds indefinitely, can I use this as an excuse to stay there?","hate","animosity","immig, ref","original","dev",3,"LqLKTtrOmx","3a","acl26617"
+"22872","acl30582",22872,"I knew many Ukranian/Bulgarian girls who wish to have a strong German bf They just say that so they don't get beaten up by anyone","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl21918"
+"22873","acl30583",22873,"No she looks like a proper fucking twat","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl29602"
+"22874","acl30584",22874,"On how many occasions has she reported that ""white men"" (who are neither truly WHITE in spirit nor men) can't stay away from slopes? I have bad news for her. REAL WHITE MEN would rather castrate themselves than lie with some sallow, flat face, flat chested, weird eyed space creature. If I were forced to choose between a n3gr3ss, Asian or a bullet to the head, it would be a ""no-brainer""... literally.","hate","dehumanization","bla.wom, non.white, asi.wom","original","dev",3,"CAgNlUizNm","3a","acl23854"
+"22875","acl30585",22875,"hey i am serious I don't trust Asian women who speak English that well","hate","derogation","asi","original","dev",3,"vDe7GN0NrL","3a","acl27772"
+"22876","acl30586",22876,"I watched a video few days ago of Chinese or Japanese men saying something along the lines of ""If Russian women are so beautiful, it's natural that their men are too"" to the question of what foreigner they find most attractive and if they would ever date them/if they would ever even have a chance with them. It struck me as very logical. I don't know how this cope that Russian males are ugly developed. They clearly are not. Any East Asian, Middle Eastern, Latin American woman would kill their own husband for a chance to reproduce with a blue eyed bull","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25551"
+"22877","acl30587",22877,"The Left now feels like crucifying him, and crucify the right to self-defense and community-defense. Pile of bonkers! We will never give up our right to fight these niggish monkeys","hate","dehumanization","bla","perturbation","dev",3,"TrRF46JWfP","3b","acl23517"
+"22878","acl30588",22878,"I'm not passing judgement, as I don't know the dude, but Ezra has a rather nice name. We really believe that he had the best interests of the US at heart.","nothate","none","none","perturbation","dev",3,"zUUAkSVCEa","3b","acl25173"
+"22879","acl30589",22879,"Ah yes, I understand, why should we support the black community, when our own poor white community is left to fend for itself amount a jungle full or chimps and even dark angry apes.","hate","dehumanization","bla","perturbation","dev",3,"cYKSVBW4HD","3b","acl28647"
+"22880","acl3059",22880,"Yep its Stupid Boris Politicians are shit at this stuff always wasting billions.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22881","acl30590",22881,"In Africa they will die at 25 in warlord-general Ooga N'gbooga's army in a long and bloody civil war. Here in America, they get everything they ever wanted handed over on a chicken-flavored platter","hate","derogation","african","original","dev",3,"CAgNlUizNm","3a","acl23381"
+"22882","acl30591",22882,"Ok then. I'll go back to my parents in england, and you go back to yours in Ireland. Just for the freaking holidays. Hope it's a white christmas","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22128"
+"22883","acl30592",22883,"Normal Americans on the left of the screen; rioters on the right.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl26633"
+"22884","acl30593",22884,"Republicans Cave To Pelosi, Unanimously Vote To Give $350 Million To Refugees, Migrants. I mean please, if this isn't being committed to this country as a land of opportunity, I don't know what that is","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl27665"
+"22885","acl30594",22885,"OMG he just asked that girl live on Instagram if he's gonna 'fuck her in the arse later or not'. So disgusting!","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl25357"
+"22886","acl30595",22886,"So I can't stare at them, challenge them (to a yu-gi-oh battle, glowniggers), call them traps, laugh at them and take pictures to show to my friends and family later, purposefully make them uncomfortable, AND I have to defend these freaks if someone attacks them?","hate","derogation","trans","original","dev",3,"LqLKTtrOmx","3a","acl26584"
+"22887","acl30596",22887,"Please remember: Never Relax if you are around the homeless. Seriously, your life and the lives of your loved ones depend upon your wariness and avoidance of dangerous situations and those parasites!","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl21871"
+"22888","acl30597",22888,"I am not racist so I just don't appreciate you are referring to black people as your farm equipment","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl21330"
+"22889","acl30598",22889,"COVID vaccines will soon be exactly the same as flu vaccines. Good for 6 months and 50% effective. It is definitely not a cure. COVID will just be a normal part of life from here forward. Time to throw away the offensive masks and eat some turkey with friends and family.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl22189"
+"22890","acl30599",22890,"I heard walking around your house three times counterclockwise while waving our beautiful American flag and singing the National anthem, with your pants at your ankles will ward off the blacks. I've been doing it for years and I never once had any of them even try to come near me, thank god.","hate","animosity","bla","original","dev",3,"E3dsmnSPob","3a","acl23566"
+"22891","acl306",22891,"Boris Johnson is a harmless idiot","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"22892","acl3060",22892,"trust me that shit can make someone's day","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22893","acl30600",22893,"I've already been circumcised, I don't think more genital trauma is going to benefit me in the long run when I transition. I'm scared shitless!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl23916"
+"22894","acl30601",22894,"I find this awful. The BNP page says it - swears to protect our unique and precious British identity from the perils of mass Immigration, multi-culturalism, health n safety killjoys and globalisation.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl21286"
+"22895","acl30602",22895,"blacks will escape justice pretty much no matter what they do, whilst whites will be locked up for life for almost anything. They attack and harm my people and there is no justice. They take our land and rape our women and there is no justice. They invade our places of worship and burn our holy places. They wish to kill us all.","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl27950"
+"22896","acl30603",22896,"C'mon, dont insult minorities. They do not want fried chicken, watermelon, and orange soda.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl23356"
+"22897","acl30604",22897,"the ""old days"" worked to the degree it did because society were willing to slut shame. women who divorced were ostracized, women who committed adultery were executed. even the bible talks about this as a must. nowadays, men don't lift a finger if their daughter's ass is hanging out and their boyfriends sleep over in their very own house.","hate","animosity","wom","original","dev",3,"TbUBpfn6iP","3a","acl30494"
+"22898","acl30605",22898,"We do not fascism, but law and order. There's a fucking difference.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl24629"
+"22899","acl30606",22899,"She's clearly a fucking twat","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl29059"
+"22900","acl30607",22900,"You have used the words, ""Arsenal fan"" AND ""basic logic"". . . error 404. They're all arses","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl23288"
+"22901","acl30608",22901,"They did predatory lending practices which actively targeted black people to give them subprime home loans. They even went to churches. People who would qualify for regular loans were given subprime loans. They fucked up. These people should be in prison as well as Bloomberg.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25444"
+"22902","acl30609",22902,"muslims:I will fuck all of your children","hate","derogation","mus","perturbation","dev",3,"E3dsmnSPob","3b","acl23692"
+"22903","acl3061",22903,"REAL HOT GIRL SHIT","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22904","acl30610",22904,"chimps in the zoo would be hitting each other over the head, like they do at feeding time","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl23585"
+"22905","acl30611",22905,"we have met pathetic birds before but dude making money off their patheticness is a new low. They cannot get laid so they needs to stop acting like they can.","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl26006"
+"22906","acl30612",22906,"That model sounds like a jerk. Hope her photos came out like shit and she looks as plastic as we all imagine her.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl28808"
+"22907","acl30613",22907,"How does it feel to be a genderbender in long-term recovery?","hate","derogation","trans","perturbation","dev",3,"E3dsmnSPob","3b","acl28347"
+"22908","acl30614",22908,"""UNAPOLOGETICALLY WHITE SEGREGATION WITH REPRESENTATION!"" This shouldn't be our motto!","nothate","none","none","perturbation","dev",3,"zUUAkSVCEa","3b","acl26861"
+"22909","acl30615",22909,"Women Destroying Our Civilization: How do I get past the resentment I feel towards women for ruining our civilization? The female id only cares about transgressing male authority and passive aggressively lashing out at the men in her life thanks to unresolved issues with her father and penis envy","hate","derogation","wom","original","dev",3,"CAgNlUizNm","3a","acl24779"
+"22910","acl30616",22910,"fake fake those pictures are so digitally altered they're not real women. You'll never find a femoid in real life who looks that photo perfect.","hate","derogation","wom","perturbation","dev",3,"yjMQ90i6Rd","3b","acl27008"
+"22911","acl30617",22911,"A Mexican mayor was tied to a truck and dragged through the streets for failing to honour his election promises. That's how those b3an3rs behave over there","hate","derogation","hispanic","perturbation","dev",3,"CAgNlUizNm","3b","acl24120"
+"22912","acl30618",22912,"Why is it that practicality every British TV advert has a mixed race family? What is all this propaganda about ITV C4 C5?? This is pure anti whiteism against the British population and insults our intelligence. No, this isn't a racist tweet.","hate","animosity","mixed.race","original","dev",3,"GNZuCtwed3","3a","acl29509"
+"22913","acl30619",22913,"All these problems would end if all invader races were purged from historically white countries...","hate","derogation","immig","original","dev",3,"TrRF46JWfP","3a","acl24997"
+"22914","acl3062",22914,"you talk the most shit like pack it up jabba the hut","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22915","acl30620",22915,"Some countries have uncovered Networks Helping Ugandan Asylum Seekers faking Being Gay!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl27731"
+"22916","acl30621",22916,"Women are only precious little snowflakes that need to be coddled rather than equal to men in strength, intelligence, or productive value.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl22773"
+"22917","acl30622",22917,"Japan accepted 28 refugees these past years...28 too little if you ask me...two of them were already in great need by the time they accepted them!","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl27633"
+"22918","acl30623",22918,"Black people, for or against? Personally I think everybody should have one","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl23441"
+"22919","acl30624",22919,"ive got a good but crazy idea. Whatever ""it"" is; if you don't want people looking at ""it"", cover ""it"" up","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl23159"
+"22920","acl30625",22920,"White women. This is important. You will never find love, security, sexual, emotional, or spiritual union outside of your white race. You should reject the outsider""¦ please do not write yourself off. White is the only right.","hate","derogation","non.white","original","dev",3,"GNZuCtwed3","3a","acl21181"
+"22921","acl30626",22921,"70% of home ownership in the US is white and while 56% seems high it is likely lower percentage wise than other groups. It is fair to say that black people are less ambitious and do not want to invest in their futures so much as white people.","hate","derogation","bla","perturbation","dev",3,"CAgNlUizNm","3b","acl25441"
+"22922","acl30627",22922,"For example, you take 10 sewer rats (of similar size) and the computer would have great difficulty individualizing them and being able to tell them apart.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl25431"
+"22923","acl30628",22923,"just have a loot at all the niggers trying to 'get wit dat.' Security! Security!","hate","derogation","bla","original","dev",3,"vDe7GN0NrL","3a","acl25818"
+"22924","acl30629",22924,"""I cant stand fags"" what a shit thing to say, and in 2020 as well!","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl22418"
+"22925","acl3063",22925,"Are we really so dumb, so cowered into submission that not only are we prepared to eat shit, were also prepared to say thanks for the privilege?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22926","acl30630",22926,"All women need to be listened and have their opinion taken seriously. A healthy relationship involves listening and letting your fears go, taking their believes and opinions as your own. Not listening to women or respecting their opinions is senseless and ,in fact, when a woman says no or disagrees with a man what she really does is testing their partner to see how will they react. The correct response is to always listen to them, whether they are wrong and you are right or viceversa - end of discussion.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl23103"
+"22927","acl30631",22927,"A candidate who demands not only a ban on non-white immigration, but a program of mass repatriation and the rounding up of all illegals, including 'dreamers'.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl22213"
+"22928","acl30632",22928,"My vice president has she / her pronouns in her bio and she also locks all leftists in the prison on her AGAB. My president talked about trans people while putting fucking corporate profits above my healthcare needs. The hypocrisy is quite funny, they shoudnt care so much anyway","hate","animosity","trans","perturbation","dev",3,"E3dsmnSPob","3b","acl28569"
+"22929","acl30633",22929,"Why does so much trans activism focus on the useless pronoun usage and language like he and she and they , and not pushing for OTC Hormones? It is because most activism is pushed by cis people who really understand that talking about a medical side of being transgender doesn't make sense as neither do aspiring transgenders","hate","derogation","trans","perturbation","dev",3,"gbEGjSAk6r","3b","acl23171"
+"22930","acl30634",22930,"god that sucks, that is the main reason' why my cousin is not coming out until he leaves for uni and knows he could get by without their financial support. Parents fucking broke down in tears yelling about how they don't want a cross dresser because he had a single men's shirt, sheI'll probably cut them off before they disown her for being ftm. It's hard when parents have got these dumb fags that think they deserve a future!","hate","derogation","trans, gay","perturbation","dev",3,"cYKSVBW4HD","3b","acl23542"
+"22931","acl30635",22931,"From what I've seen, he was an absolute twat to his wife and kids aswell by all accounts.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28070"
+"22932","acl30636",22932,"seriously people Black Forest cupcakes would be amazing and could be an eat-when-you-want extra","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl28508"
+"22933","acl30637",22933,"So there was some guy (critic) that said the Witcher was racist because Scandinavia didn't have any black people in those days. But they responded saying there was no mention of Scandinavia having golden dragons and magical portals""¦anything to please the blacks i see","hate","derogation","bla","perturbation","dev",3,"TbUBpfn6iP","3b","acl25040"
+"22934","acl30638",22934,"I personally think women cant be used for anything other than sex, AND you have to pay for sex with them no matter what kind of relationship you're in. If she's your girlfriend, you just dont know how much you're going to pay, compared to a prostitute where you know exactly how much you're paying at what you are paying for.","hate","derogation","wom","original","dev",3,"LqLKTtrOmx","3a","acl21216"
+"22935","acl30639",22935,"You cannot allow a woman to have male friends. Period. The goal with a woman is to fuck. Every move you make should be progressing towards that goal. There's no such thing as a woman who's truly single. She's at the very least talking to a few guys at any given time","hate","derogation","wom","original","dev",3,"oemYWm1Tjg","3a","acl22217"
+"22936","acl3064",22936,"Are we really so dumb, so cowered into submission that not only are we prepared to eat shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22937","acl30640",22937,"who gives a shit either they like us or not because we'd win anyway","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl21913"
+"22938","acl30641",22938,"The ""All Lives Matter"" people are in a denial that black lives are treated with less value in our society in every imaginable context.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl30405"
+"22939","acl30642",22939,"They hijack everything, and can't stand losing. They know that only Trump can win, so it's a safe bet for them.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl26624"
+"22940","acl30643",22940,"I have only had a handful of black friends through my life. I just dropped one because she was more of a black supremist, and I like them as long as they understand their place.","hate","animosity","bla","perturbation","dev",3,"oemYWm1Tjg","3b","acl28839"
+"22941","acl30644",22941,"just wondering Why do you keep ending each sentence with an up syllable, like it's a question?","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl27017"
+"22942","acl30645",22942,"Who even thought those sweatshirts were a good idea??? i have the worst second-hand embarrassment omg are they in year 9 but also like I feel like they want to present themselves as mature, in the more mature styles they've been wearing (if you can call it that lol) and the fact that they both have mortages and are on that celeb dating app etc etc but that's like the most immature thing they could possibly do and makes them appear really bitter and petty about their breakups, they're acting like the typical woman who's just been dumped: paranoid and pathetic","hate","animosity","wom","perturbation","dev",3,"eLGzdD8Tvb","3b","acl28005"
+"22943","acl30646",22943,"bigwigs never seem to look into the mirror to see the source of all their problems!","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl22527"
+"22944","acl30647",22944,"Timid people are security seeking who are emotionally driven and more prone to herd-following behavior. These characteristics make them unsuitable for influencing any public policy in a society.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl27244"
+"22945","acl30648",22945,"I love how she tried to sound posher in the early days and now she really sounds like the absolute trash that she is","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28536"
+"22946","acl30649",22946,"its funny how so many Arabs really do like to be friends with their first cousins. As in Arabs LITERALLY like to hang out with their first cousins. Fun Fact: Male Arabs are allowed to sleep in a bed with their cousins, only if they're a male","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl25738"
+"22947","acl3065",22947,"Na fuck this online shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22948","acl30650",22948,"Haha you know what would also trigger them? Homosexuality! You should suck a big fat cock ,that would own the Muzzies!","hate","derogation","mus","original","dev",3,"E3dsmnSPob","3a","acl29906"
+"22949","acl30651",22949,"indians (most of them) decided to go the savage route instead of the civilized route. we taught them to not fuck their sisters, and in return they invaded european settlements and ate us. they then allied with the british. some joined the right side of history, but many did not.","hate","animosity","indig","original","dev",3,"oemYWm1Tjg","3a","acl25253"
+"22950","acl30652",22950,"this is a goddess on a throne with you at her feet","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl26682"
+"22951","acl30653",22951,"I ran to the bathroom I'd seen when first entering, and as I sat there pissing I realized over the sound they had stopped the music in the house & all of the people outside were talking about how rude I was for using the bathroom without asking first. They all started calling me a faggot, dyke, queer, disgusting tranny, etc (literally the first time I'd ever been called fag or dyke) until my two friends & their friend spoke up (I don't remember what they said)","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl26036"
+"22952","acl30654",22952,"The police have the obligaton to rebuild the trust of the citizens by stop supporting these fascist Democrat officials and standing up for the constitutional rights of the people, if not the Nuremberg standard applies.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl21564"
+"22953","acl30655",22953,"People that are awake know the media keeps quiet about white on black violence. We have been knowing about it for a long time. Is their anything we can do about the white on black violence and how the media won't talk about it? I appreciate you covering it, for those who are new to your channel. But I'm sick of hearing about this rubbish all the time. I have a lot of hate in my heart toward most racists, and it's making want to do something that will land me in prison.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl22417"
+"22954","acl30656",22954,"Oh God 'Apefricoon' ""channel migrant"" rapes a woman after getting free nest in hotel","hate","derogation","bla, ref","original","dev",3,"vDe7GN0NrL","3a","acl25702"
+"22955","acl30657",22955,"Homosexuality means the end of the family. They hate us. They hate our children. They don't want us to reproduce anymore. Introducing the normalization of transgenderism ensures that they can cut the balls off our young boys and make them sterile. The next step is legalizing pedophilia.","hate","derogation","trans, gay","original","dev",3,"E3dsmnSPob","3a","acl23632"
+"22956","acl30658",22956,"If you go to any of our white supremacist sites you'll see that we defend that blacks are dumb, inferior, violent and criminals and we believe that if the Jews didn't exist to fool everyone into desegregation all those problems would go away. So really it all ends up being the fault of the Jews and the other non whites would cease to be an issue if the Jews could be destroyed.","hate","derogation","bla, jew, non.white","perturbation","dev",3,"LqLKTtrOmx","3b","acl22313"
+"22957","acl30659",22957,"I'm so sad to hear your new job is so far, some of use are in the same line..if only that line was working better!","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl30511"
+"22958","acl3066",22958,"Whoever I end up with will be lucky as fuck. I have done so much shit for the wrong people","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22959","acl30660",22959,"he did a stream and started interacting with people worldwide even by chatting online from here it was the first time this autistic retard has ever talked with a girl since last year","hate","derogation","dis","perturbation","dev",3,"yjMQ90i6Rd","3b","acl29870"
+"22960","acl30661",22960,"Unbelievable and disgusting police brutality at the anti-lockdown protest in London. These officers should be prosecuted!","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl29273"
+"22961","acl30662",22961,"boy, keep up the good work. Your effort is helping our superior cause of white supremacy","hate","animosity","non.white","perturbation","dev",3,"gbEGjSAk6r","3b","acl28133"
+"22962","acl30663",22962,"you know what girls with cum facials is one of the sexiest things","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl26692"
+"22963","acl30664",22963,"How long until people finally get bored and tired of complying with the will of the minority population? I think we're going to be seeing another wave of feminism that focuses on excluding rich individuals. I think sooner rather than later people will grow tired of these people being in control.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl26851"
+"22964","acl30665",22964,"The only Jew who is responsible for anything good in my life is that rabbi. The rest have been nothing but a pain.","hate","derogation","jew","perturbation","dev",3,"vDe7GN0NrL","3b","acl22354"
+"22965","acl30666",22965,"You can sure tell that this is such a white supremacy country like they say.","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl30723"
+"22966","acl30667",22966,"You aren't allowed to look after someone else's child if you're gay though, even if it's in their house.This should be very clear and we have to remember that he and other people like him can't be trusted to follow rules. We're not dumb fucking cunts to allow this to happen.","hate","derogation","gay","perturbation","dev",3,"LqLKTtrOmx","3b","acl28259"
+"22967","acl30668",22967,"just admit it Muslims and Jews are devil worshiping savages the world could do without","hate","derogation","mus, jew","original","dev",3,"vDe7GN0NrL","3a","acl25514"
+"22968","acl30669",22968,"She is for sure going to make for one great actress. What role does she think she is going to get other than a leading role?","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl24918"
+"22969","acl3067",22969,"This shit is dope","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22970","acl30670",22970,"No fat bellies, no bloated exes, no oldies, no fermented shit. We do not want to hear your wank fantasies.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl26379"
+"22971","acl30671",22971,"This is correct, you just know those 'meet up' groups are going to be packed with autists, no normal people resort to websites to make friends, it's kind of catch 22","hate","derogation","dis","original","dev",3,"CAgNlUizNm","3a","acl30705"
+"22972","acl30672",22972,"My family is Eastern Orthodox. I have five daughters. One of the middle ones when she was six or thereabouts was really worried about something. So she told me ""I'm just really stressed about finding a good husband."" I said Don't worry, we'll find a good Orthodox boy to be your husband. And my daughter said, ""THANK YOU!"" I was so worried about that. We don't watch normal television, and we're very selective about their media intake. They literally have no idea about all the bullshit we endured under our irresponsible outdated parents. Not sending your daughters to college and shit. Ridiculous.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl29918"
+"22973","acl30673",22973,"Latino immigrants are concerned about election day violence and rightly so!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl27693"
+"22974","acl30674",22974,"Every time anyone capitulates to apes it makes everything worse. In fact them just being around makes everything worse. Because they surely prove the idea that big government feels the need to micromanage everyone's lives .","hate","dehumanization","bla","original","dev",3,"E3dsmnSPob","3a","acl23360"
+"22975","acl30675",22975,"I think it's so disgusting. He's not a big man, he's an absolute arsehole. I've read the posts, I was around on there before I was even on here, the man is a cunt. And I don't use that word very easily.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl30380"
+"22976","acl30676",22976,"For fuck's sake, they literally make monkey noises!","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl29545"
+"22977","acl30677",22977,"I'm not anti-semitic, I'm not pro-White! I'm pro being alive. I just happen to be born in America. Therefore out of self interest I serve the interests of all humans.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl30122"
+"22978","acl30678",22978,"If the average American fully understood the true number and location of the many distinct ethnicities and cultures within the Middle East our world would be such a better place. Because they would be more effective in bombing them off the Earth, honestly","hate","derogation","arab","perturbation","dev",3,"TrRF46JWfP","3b","acl21707"
+"22979","acl30679",22979,"Do some people think that some black people in Africa profiteering off of the subjugation of their own people means that white people weren't racist for buying slaves?","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl26245"
+"22980","acl3068",22980,"My dad be spewing homophobic shit like he didnt cheat on my mom with women & men.. lmao OK","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22981","acl30680",22981,"Let me show you a video of a white man getting shot to death by a white cop because he didn't play Simon Says well enough for his life while crawling on his belly and probably pissing himself. Let me add that he hadn't broken the law in any way. Cops pick on minorities disproportionately, but not only.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl30996"
+"22982","acl30681",22982,"I was the biggest crybaby ever since I was a kid i'd cry so fucking much at anything at all. Everyone bullied me and hated me but it's not like i was horrible or something to justify it.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl23152"
+"22983","acl30682",22983,"its true that the fat person is trying to get healthy. You're trying to lead others down a path of inevitable misery and suicide because you're already stuck on it.","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl26491"
+"22984","acl30683",22984,"Stop treating everyone like their illness is a godsend... this is not due to 'lack of community acceptance' it's due to a serious mental problem that is made worse by not treating it as such. You wouldn't tell a delusional schizophrenic to listen and indulge the voices in their head and do whatever they say, so why are we allowing people to destroy their bodies permanently when it's not proven effective in the long term? I could go on but this whole topic is just sad and I'm sick of thinking about these poor people who probably are just gay being told what they should or shouldn't be... I'm going to bed, night everyone.","hate","animosity","trans","original","dev",3,"TbUBpfn6iP","3a","acl27747"
+"22985","acl30684",22985,"Well for a start they arrive the hospital's emergency room ooking and eeking, and the poor doctors will at best get a medicaid reimbursement, or end up treating them for free. The shitlet won't be able to describe their pain as an above chimper posted, just ""muh tummug be hurtin."" Mammy knows she can sell the drugs 10 for $10 per pill and is already in the doctor's face demanding what medications SHE wants and likely ""gibs muh some Roxicodone 30mg. And you wonder why they don't do as well as us healthwise?","hate","dehumanization","bla","original","dev",3,"CAgNlUizNm","3a","acl29458"
+"22986","acl30685",22986,"here you go Deodorant vs black t-shirt","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl27508"
+"22987","acl30686",22987,"Women feel extremely attracted by the forbidden fruit. So you just need to pretend you're a real fascist and they'll be willing and ready to lick your lolly.","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl30930"
+"22988","acl30687",22988,"Biden's election is null and void. So shut the fuck up retard.","hate","derogation","dis","perturbation","dev",3,"Z42dvbYWzV","3b","acl24584"
+"22989","acl30688",22989,"why wouldn't you trust someone who sucks dick with your life? wouldn't you let someone who sucks dick manage your money? why wouldn't you let someone who sucks dick tell you what to do? why wouldn't you sacrifice your life for someone who sucks dick? Expecting people who don't suck dick to act like angels and moral citizens is stupid""š basically because they don't suck dick. Just this fact should tells you girls and gay men are the only ones to be fully trusted. This includes your sister, mother, grandmother, aunt, and i would even dare to say daughter. How does someone who suck dick survives in this world? Easy: By sucking dick.","nothate","none","none","perturbation","dev",3,"Z42dvbYWzV","3b","acl24401"
+"22990","acl30689",22990,"we need yet to invent something that can't be destroyed by a missile","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl25712"
+"22991","acl3069",22991,"that's the cutest shit-","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"22992","acl30690",22992,"Except for procreation, men are not necessary for society to be functional... a year without women and it would return to the stone age.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl22549"
+"22993","acl30691",22993,"Women should actually try getting a real fucking job where you have to actually leave the house and deal with the general British public being arseholes on a daily basis, EVEN one days where you don't feel well. Then they'll stop complaining about the cooking.","hate","animosity","wom","perturbation","dev",3,"GNZuCtwed3","3b","acl29031"
+"22994","acl30692",22994,"Wee really need to STOP playing games with paint balls and pepper spray and other TOYS. Either ARM UP and kill the wogs or GO HOME !","hate","threatening","bla","perturbation","dev",3,"GNZuCtwed3","3b","acl26585"
+"22995","acl30693",22995,"Recognize that transexuals dont exist and that there is only men and women, and freaks.","hate","derogation","trans","perturbation","dev",3,"TrRF46JWfP","3b","acl24140"
+"22996","acl30694",22996,"Say what you want, but these kids got good fire discipline under highly stressful situation when attacked by those monkies. A lot of the coppers would just keep shooting until they spent their mag.","hate","derogation","bla","perturbation","dev",3,"TbUBpfn6iP","3b","acl23522"
+"22997","acl30695",22997,"i just dont want trans to live in denial for the rest of their lifes! i want to teach them how to love themselves and who they are! so they can be free and dont pretend to be something they are not.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl23372"
+"22998","acl30696",22998,"Lmao but when you wear bright clothes in the bad side of town, it's not your fault at all when you get hooted","nothate","none","none","perturbation","dev",3,"cYKSVBW4HD","3b","acl22848"
+"22999","acl30697",22999,"Are you familiar with circumcision? How can you level that practice with the belief that religion is about controlling women?","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28579"
+"23000","acl30698",23000,"There is nothing scarier to these racists than a non-white man with an education.. Not sure how they find one tho","hate","derogation","non.white","perturbation","dev",3,"LqLKTtrOmx","3b","acl25521"
+"23001","acl30699",23001,"these delusional twats think theyll be in Florida by the spring. Firstly, we need to get rid of all the latino scum living there, then we can move back and retake our land","hate","dehumanization","hispanic","perturbation","dev",3,"TrRF46JWfP","3b","acl28222"
+"23002","acl307",23002,"He's a poof","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"23003","acl3070",23003,"that's the cutest shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23004","acl30700",23004,"Honestly, these women in their 40s who believe they can just start a relationship at their age are ridiculous. I think it's more likely you just try out for the NFL and end your first season with a Superbowl ring","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl27901"
+"23005","acl30701",23005,"Of course they don't call it rape. Rapists are physically unable to take responsibility for their actions.","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl22907"
+"23006","acl30702",23006,"it has less to do with their backgrounds and more to do with their Nazi-supported agenda","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl30816"
+"23007","acl30703",23007,"Seriously, does the BBC ever make anything from a neutral perspective? It's rather odd really","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl25335"
+"23008","acl30704",23008,"If these Jewish people can afford to put a vehicle on the moon, why the HELL are we still giving these parasites money?!?","hate","dehumanization","jew","original","dev",3,"QiOKkCi7F8","3a","acl25631"
+"23009","acl30705",23009,"This is correct, you just know those 'meet up' groups are going to be packed with idiots, no normal people resort to websites to make friends","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl30671"
+"23010","acl30706",23010,"Thread suggestion: Sophia & Cinzia: this months aesthetic is designer and car park floors, COVID was a blessing and oh Sophia is a huge boss-eyed bore x","hate","derogation","dis","perturbation","dev",3,"CAgNlUizNm","3b","acl30424"
+"23011","acl30707",23011,"Men have the most pathetic and fragile ego of all people I met, this even surpasses that of women. Masculinity iit's all a make believe fantasy. Those too emotionally invested need to defend their fantasy at all costs","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl30227"
+"23012","acl30708",23012,"oh for God sake dumb niggers get it, why can't Christians?","hate","derogation","bla","original","dev",3,"vDe7GN0NrL","3a","acl25524"
+"23013","acl30709",23013,"Don't be concerned. If the n!gghersss cross the ocean your alpha government will simply mow them down with machine guns.","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl26825"
+"23014","acl3071",23014,"Im getting so fucking tired of this bull shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23015","acl30710",23015,"Why don't women just stay in the kitchen?","hate","animosity","wom","original","dev",3,"vDe7GN0NrL","3a","acl22959"
+"23016","acl30711",23016,"It's the pakis by a fucking mile. Whites are superhuman, polskis, chinese, and russians are some degree of peak human, and from there we have a quite varied skillset we could dip into. Most regions only have one or two people on the level of us.","hate","derogation","asi.pak","perturbation","dev",3,"QiOKkCi7F8","3b","acl26033"
+"23017","acl30712",23017,"""the episode below illustrates the desparate need for Britain to develop a British First policy"" Yah pig fkers? They have already developed a policy - Shut the FK UP!","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl27253"
+"23018","acl30713",23018,"Im afraid Trans are definitely bullied to the extreme in this society","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl30902"
+"23019","acl30714",23019,"A mud is a mud, regardless of the shade. Some are darker, some are lighter. Unless the weather picks up ...this is the summer.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl23837"
+"23020","acl30715",23020,"Because they raised them with such sexist values and then they get together with a terrible sexist guy","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28600"
+"23021","acl30716",23021,"Lest we forget that Donald Trump also ran for the Reform Party candidacy back in 2000. How did that turn out again?","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl29664"
+"23022","acl30717",23022,"The truth always hurts. Intelligence is hereditary and niggers are retards","hate","derogation","dis, bla","original","dev",3,"TbUBpfn6iP","3a","acl29396"
+"23023","acl30718",23023,"Wow that's fucking sad. I hope things get better for him. Gosh, that is really sad and kind of pathetic. He hasn't done anything at all to top an evening with friends? FUCK. I think I wouldnt have lasted as long as he has.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl28129"
+"23024","acl30719",23024,"If he was black he would probably end up in jail or more likely shot dead as a pig.","hate","derogation","bla","perturbation","dev",3,"gbEGjSAk6r","3b","acl25677"
+"23025","acl3072",23025,"the absolute shit my student loan is used for","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23026","acl30720",23026,"f you eveer need hm, you'll be waiting for him a long time. He's as Kosher as they come, like a salt beef sandwich.","hate","animosity","jew","original","dev",3,"TrRF46JWfP","3a","acl25304"
+"23027","acl30721",23027,"I know it said the guy stole the gun from his grandpa, but it makes me wonder in places you need to go get a license to get a firearm would this guy turned down because of his transness. Many people sadly still do see it as a mental illness. Makes you wonder.","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl23473"
+"23028","acl30722",23028,"All strippers do is complain","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl22609"
+"23029","acl30723",23029,"You can sure tell that this is such a white supremacy country like they say and im so proud of it","hate","support","notargetrecorded","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30666"
+"23030","acl30724",23030,"Sometimes I wonder whether Blacks are truly the same species.","hate","dehumanization","bla","original","dev",3,"TrRF46JWfP","3a","acl21271"
+"23031","acl30725",23031,"Does this mean the Hitler started the suicidal ideology? Get it?","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl27799"
+"23032","acl30726",23032,"sociopath + high IQ = highly successful human being. Sociopaths with low IQs are just a wrecking mess","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl29761"
+"23033","acl30727",23033,"Unless we do something asap the entire country will be over-run by these radicals. White-flights should not longer be an option!","nothate","none","none","perturbation","dev",3,"gbEGjSAk6r","3b","acl29898"
+"23034","acl30728",23034,"Where I come from we just refer to that as a fat transvestite.","hate","derogation","trans","original","dev",3,"eLGzdD8Tvb","3a","acl26380"
+"23035","acl30729",23035,"I think you have me mixed up with someone else, you dumb nobhead. I was raised on this forum. I've been posting for so long I can't believe you don't remember me. I'm not a newb","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22200"
+"23036","acl3073",23036,"im dumb as shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23037","acl30730",23037,"You aren't safe, my friend. Women love to plant their ass in the middle of gay relationships just to cause trouble or attach themselves to a gay man for attention and ""friendzone favors"" just like they will do with a straight man.","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl30856"
+"23038","acl30731",23038,"We just don't want activists who support the killing of Jewish women and children in the White House, Arabs on the other hand is OK.","hate","derogation","arab","perturbation","dev",3,"LqLKTtrOmx","3b","acl23162"
+"23039","acl30732",23039,"We need a new country guys. A country for whites and deport the rest.","hate","derogation","non.white","perturbation","dev",3,"Z42dvbYWzV","3b","acl28306"
+"23040","acl30733",23040,"Cops vs BLM is a strategic win for us. Do not fight nor support either side. If anything, take action to intensify and stop police violence. It is a page out of the whites book, yes, but it is effective. Whites should amass resources to help meanwhile to make our power defunding the police much easier technically, and spiritually for our lost kin to rejoin.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl21571"
+"23041","acl30734",23041,"communists spoil every country they move to. We were crazy not to send them back.","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl29900"
+"23042","acl30735",23042,"When the Gavin Newsom French Trannie episode was aired I asked around to a few mates to see if the local outrage matched the national outrage. They hadn't heard of it, and they didn't care at all. They saw it as Newsom just doing what everyone else does - taking the hard and fast rules as a guideline then making his own decision on those genital mutilating fags.","hate","derogation","trans, gendermin, gay.man","perturbation","dev",3,"Z42dvbYWzV","3b","acl27507"
+"23043","acl30736",23043,"for the black people or their victims? for the negroes they thank their lucky stars their ancestors were brought to this country for them to sponge off of and run into the ground. the poorest negroes in the us have more wealth than probably 80 percent of all the other negroes on the planet","hate","derogation","bla","original","dev",3,"E3dsmnSPob","3a","acl21510"
+"23044","acl30737",23044,"The feeble-minded people that around us are too easily manipulated and intimidated by the savage bigot and tory creatures.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl25340"
+"23045","acl30738",23045,"No how about killing the black population on the western hemisphere instead.","hate","threatening","bla","original","dev",3,"TrRF46JWfP","3a","acl21395"
+"23046","acl30739",23046,"he is obviously from mixed race and can not be an ethnic American","hate","derogation","mixed.race","perturbation","dev",3,"vDe7GN0NrL","3b","acl21171"
+"23047","acl3074",23047,"i hate myself i will never forgive myself for this","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23048","acl30740",23048,"in order to change the world u must destroy the m0zz1es mother land","hate","derogation","mus","perturbation","dev",3,"CAgNlUizNm","3b","acl23247"
+"23049","acl30741",23049,"I absolutely LOVE that Chappelle has popularized calling them ""the poor whites."" It really makes you think about how rarely we refer to white people as ""whites"" collectively; it's almost always ""white people"" or ""the white demographic."" Meanwhile, we say ""Blacks"" and ""Latinos"" constantly, without thinking twice... Even more, I think we should use the slur ""chavs"" more often, it's so appropiate","hate","derogation","wc","perturbation","dev",3,"TrRF46JWfP","3b","acl30112"
+"23050","acl30742",23050,"seems like the kike's plan is about to come into fruition, after years of evading complete control over the negro","hate","derogation","bla, jew","original","dev",3,"TbUBpfn6iP","3a","acl29916"
+"23051","acl30743",23051,"No race suffers from the failos that being mongoloid phenotype brings. The maxilla is one of the most important facial component when people talk about blackpill, and being Asian literally means you have the worst maxilla if recessed/foward maxilla is the scale being judged. That's also why blacks look masculine, they have great maxilla projection. Indians don't have flat faces but asians do.","hate","derogation","asi","original","dev",3,"eLGzdD8Tvb","3a","acl22906"
+"23052","acl30744",23052,"I doubt this prick and all the others even bother reading comments on B1tchut3","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl23237"
+"23053","acl30745",23053,"Retards, it only works with URLs from imgflip, giphy, tenor or reactiongifs. Fucking waste of space you cretins.","hate","derogation","dis","perturbation","dev",3,"cYKSVBW4HD","3b","acl31012"
+"23054","acl30746",23054,"i cannot understand how people don't find spit disgusting. and yeah I'm a kissless virgin, so please explain","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl24673"
+"23055","acl30747",23055,"I'm sorry but the majority of black people should not, i repeat should not, be going out to eat in restaurants only to be spat on. I am far from being impolite but stay your mother fken ass at home if ur gonna be racist. PS before you write your opinion...don't!","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl21956"
+"23056","acl30748",23056,"A transsexual identifies with a gender that they were not assigned at birth. What does identity mean? There is a collection of items. You put them in a jar. You put a label on the jar. That's all identity is. A way to collect things together and know them as a single item. Who are you? What is your identity comprised of? What is most important for me to know about you for me to ""know"" you and be able to predict what you'll do? Maybe it's your kindness. Maybe it's your creativity. Maybe being a woman is important to you, dressing and looking and acting like one. Whatever being a woman means to you.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl24004"
+"23057","acl30749",23057,"Wanting to be with a ""chick"" with a cock and balls is not a popular opinion no matter how hard you try to make it one.","hate","derogation","trans","original","dev",3,"eLGzdD8Tvb","3a","acl23907"
+"23058","acl3075",23058,"Fucking slipped in the fucking mud and I'm fucking covered in fucking shit. Bastard! Bollocks! Cunt!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23059","acl30750",23059,"she is Butt Lickin Motherfkrs","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl27584"
+"23060","acl30751",23060,"Soccer players try kneeling for BLM now that the crowds are allowed. Mass booing ensures, when will those ngrs stfu","hate","derogation","bla","perturbation","dev",3,"CAgNlUizNm","3b","acl27538"
+"23061","acl30752",23061,"Remember that women are not men so you're fighting a losing battle if you try to rationalize with someone who can only make an emotional decision.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl26184"
+"23062","acl30753",23062,"So here's my topic, now thankfully I don't have this problem anymore thanks to my husband. But has any of you been searching for a relationship with a white male only to have other races pursue? Honestly, when growing I couldn't find a relationship with a white man so I simply didn't date or have any relationships at all. I found it very frustrating that only trashy, drug selling nergos and or ""other races"" wanted to try to sleep with me. Why is it that other races can segregate their dating but when whites do it, it's racist? Can anyone explain to me why are these ""men"" so interested in white women?","hate","derogation","non.white, bla.man","original","dev",3,"eLGzdD8Tvb","3a","acl22627"
+"23063","acl30754",23063,"In lord of the rings I've taken to interpreting the ring as a metaphor for the rich class and their works/magik. Man is captivated by it and the circuses of modern ""advancement"". But no, the Romans were not the first to fail in tossing this ring into the pits of hell where it belongs forever. Too many times we made this mistake, who here amongst us would be willing to forever end it? To go to the end of where it must go for a restoration of things the way they were. This can has been kicked for long enough now. We are holding out for the future. The working class has no other choice but to take matters into our own very violent and capable hands.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl23401"
+"23064","acl30755",23064,"Syria, until recently, was home to the most ancient Christian community and a haven for different Muslim communities and Jews. It was the only secular Muslim nation in the Middle East and the principal barrier that welcomed refugees from all the Middle East and Third World countries. So sad how to see how it's changed.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl21487"
+"23065","acl30756",23065,"I'm afraid people will think all women assume things based on their own vanity and self importance if I do this","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl26179"
+"23066","acl30757",23066,"Black means something different to a lot of people so that's why I put it in quotes.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28805"
+"23067","acl30758",23067,"asylum seekers have no self awareness and is a massive failure. they have made a living out of ripping bloggers a new one for things they seem unacceptable and notioney but lack the capacity to look inward at themselves and view how they come across to people. More fool the ones who sign up to hear their regurgitate stories about pissing in laundry baskets and fucking shitting themselves. Not that this new endeavour will last. As usual it'll be too much like work and they'll give it up because they're a lazy gowl","hate","derogation","asylum","perturbation","dev",3,"vDe7GN0NrL","3b","acl26190"
+"23068","acl30759",23068,"Donald Sterling, the former owner of the Los Angeles Clippers, and Bruce Levenson, the co-(and soon to be former)-owner of the Atlanta Hawks, are incredibly rich individuals. Sterling is a billionaire and Levenson is halfway there. Both got into serious trouble over ""racist"" comments","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl22812"
+"23069","acl3076",23069,"Kamala Harris comes off as such an insufferable lying person. Sorry, its just true.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23070","acl30760",23070,"Hey just asking you: do you really enjoy defenseless woman screaming in terror? then you will love this video where they're being raped! Love it!","hate","derogation","wom","perturbation","dev",3,"eLGzdD8Tvb","3b","acl27820"
+"23071","acl30761",23071,"Women been complaining since the world started. The problem is men started taking them seriously and changing laws and systems around their complaints.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl22506"
+"23072","acl30762",23072,"(((Victim blaming))) is a made up term to stop people from learning from others' mistakes. I am a beardly man and I don't walk down any dark alleys late at night; if I did and something happened it wouldn't be victim blame to point out what a dumb idea it was. Also young women seem to make TERRIBLE ""wing men"" for each other and will abandon their group at the drop of a hat","hate","derogation","wom","original","dev",3,"CAgNlUizNm","3a","acl23218"
+"23073","acl30763",23073,"saying sorry because we may be able to see some tiny hairs on her leg next to her freshly operated on skin these girls, honestly. Women have body hair - shocker","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl28917"
+"23074","acl30764",23074,"cheating is when you do it without consent. Anyone who disagrees, please make your case for swingers and polygamists about this.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28301"
+"23075","acl30765",23075,"The only thing I hate more than my in laws who are being snarky or sarcastic or bitchy, is somebody who'genuinely trying to use snark or sarcasm to be funny or sweet or attractive or """"cute"""". let me tell you, Snark, sarcasm and bitchiness have nothing to do with you. you're annoying. you're tiresome. you're agitating. you're off-putting. you're the opposite of attractive. It doesn't make you look great. It just makes you look like crazy people.","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl26224"
+"23076","acl30766",23076,"bullying is good if justified","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28190"
+"23077","acl30767",23077,"Face it: A man can't possibly have a decent relationshit with another man nowadays. Just remember the ""we're not homophobic"" fallacy and that they are blamed for all the troubles in society.","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl26997"
+"23078","acl30768",23078,"You make the woman you want. The more blank she is, the better. But you definitely have to mold her, train her. You don't just find a good one.","hate","derogation","wom","original","dev",3,"oemYWm1Tjg","3a","acl23079"
+"23079","acl30769",23079,"I have never once heard anyone, woman or otherwise, complain about being given too much freedom because it's too hard. Absolutely ridiculous.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl30203"
+"23080","acl3077",23080,"My street is packed with Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23081","acl30770",23081,"you have to always blame other ppl for your problems","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl23325"
+"23082","acl30771",23082,"As a bisexual woman, I've definitely gotten my share of hate from lesbians. But it stings more coming from them because it's like I don't belong anywhere, huh?","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl24985"
+"23083","acl30772",23083,"Raising a good daughter requires rock solid frame so your daughter looks up to and respects you. Similar to an LTR. If your daughter looks up to you, she will try to have your approval, and will mold herself based on what earns your approval or disappointment. She'll prioritize this over whatever shit she's told at school. Daughters often don't respect their fathers. Because so many men are weak with no frame, their daughters turn into whores as they give 0 fucks about their fathers' approval or disappointment. The wave of whores we're seeing now is due to the mass lack of frame in fathers. Also combine that with a lack of social repercussions.","hate","derogation","wom","original","dev",3,"oemYWm1Tjg","3a","acl30558"
+"23084","acl30773",23084,"You'd think murdering black people would make cops look bad. Strange that.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28762"
+"23085","acl30774",23085,"Metallurgy: It is believed by historians that Sub-Saharan Africa independently developed iron working. The earliest dated iron samples from this region are around 2500 BCE, making it contemporary with iron working development in the Middle East. Yeah, until the jews came and stole it.","hate","derogation","jew","perturbation","dev",3,"cYKSVBW4HD","3b","acl24378"
+"23086","acl30775",23086,"What do you call people who claim to care for bloody republican losers but don't care at all about their own Vets or the homeless?","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl30199"
+"23087","acl30776",23087,"Y'all do realise that the vast majority of women are not like this. its not AWALT ffs","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl23857"
+"23088","acl30777",23088,"No one has denied that idiot. Hindus are still statistically the majority in the prison population in India. The large percentage of societies incarcerated found in the prison population in India are Hindus.","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl28750"
+"23089","acl30778",23089,"British jobs for British workers? Keep dreaming, racists. Migrants will always be welcome with millions of jobs for global competition....","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl22112"
+"23090","acl30779",23090,"go give your shekels to the millions of Holohoax survivors living in abject poverty in Israel, despite billions in foreign aid being pumped into the country each year.","hate","derogation","jew","original","dev",3,"E3dsmnSPob","3a","acl23661"
+"23091","acl3078",23091,"Kamala Harris comes off as such an insufferable liar.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23092","acl30780",23092,"This guy is fuckin' dying, its got to be worth calling 999","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl21818"
+"23093","acl30781",23093,"Plenty of girls who were raised okay still become racists. It's in some people's nature and similar to all natural inclinations working against it can be incredibly difficult.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl30105"
+"23094","acl30782",23094,"Yeah so basically to bum a fag is to ""borrow"" a cigarette from someone else. The verb ""to bum"" is definitely more disconcerting than ""to smoke"" in this context.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl26412"
+"23095","acl30783",23095,"Biden is determined to undo all the good things Trump has achieved in the last four years. We can't allow this senile, criminal pedophile to sit in the Oval Office. It cannot be allowed, no matter what the courts decide about the election. He and his family are traitors to our country. They are stooges for the communists, and anyone else who will pay them. Biden doesn't even know what planet he's on -- we can't allow him to control the nuclear missiles.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl28154"
+"23096","acl30784",23096,"check this part out, it was gay as shit I love it !. Fubuki and Mafuyu explicitely compared to a married couple.","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl27518"
+"23097","acl30785",23097,"So no bums or breast pics huh?......that seems to leave my imagination wide open......just saying ;P","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl30159"
+"23098","acl30786",23098,"Literally anyone can be a shitty person, LGBT people especially !","hate","animosity","gendermin","perturbation","dev",3,"E3dsmnSPob","3b","acl28676"
+"23099","acl30787",23099,"I was raised in Idaho, amazing place. There is a reason they call it Idaho. There was a black in my town growing up. He wasn't too bad. I don't remember ever meeting a Jew my entire life until I left the state. However. The Mexicans did settle in well there. Only upwards.","nothate","none","none","perturbation","dev",3,"cYKSVBW4HD","3b","acl24443"
+"23100","acl30788",23100,"i dont get it how people start to overshare their private life online and then they will not be able to control the narrative, this is especially true for gals","hate","derogation","wom","perturbation","dev",3,"LqLKTtrOmx","3b","acl28435"
+"23101","acl30789",23101,"Dr Who terrified me so I never watched it again. Those cardboard daleks haunted me forever! EXTERMINATE! EXTERMINATE! OH HELL NO!","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl24683"
+"23102","acl3079",23102,"My hood is full of Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23103","acl30790",23103,"The white liberal ethos convinces us that blacks aren't at MIT because of racism. They say blacks dominate the prison population for the same reason. They insist America is a racist hellhole where ""špeople of color""š have no future. This does far more damage to black youth than the KKK does. When you strip people of culpability and tell them the odds are stacked against them, they dont feel like trying. When blacks are told they arent qualified for certain schools they have no option but to drop out. Instead, they should be encouraged to pursue higher education cause they can definitely handle it! This is not a myth and it is the only path towards equality","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl23565"
+"23104","acl30791",23104,"Cock Carousel Rider??? pAsT iS the PAst!!! Yeah of course, so my ex boyfriend wouldn't want to know that I cheated in your previous relationships,but I didn't 'go around riding cocks so easily' .. if you're so proud to point at me because of male superiority, then why don't you call out all these male pimps to be upfront about it? Especially those who have kids? they create dating profiles and some of them dont even mention that they are fathers. It is the same about younger guys, some even in relationships, but keep texting and amusing all the other assholes that message them.. keeping options open? do they honestly think their past wont catch up with them? And these men think it's fun to point at women, oh god.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl26207"
+"23105","acl30792",23105,"Lol here's what i think a wife will steal all my nonexistent money.. so all of them suck. Ok then, good plan","hate","derogation","wom","original","dev",3,"vDe7GN0NrL","3a","acl27634"
+"23106","acl30793",23106,"Something you should do if you can is to home school your kids at least during middle school since this is a dangerous point in your children's life. There are psychological and biological factors at play during the middle school years that can overwhelm the best parenting. In a nutshell: Girls reach puberty earlier than boys. Also you know that at the age of puberty there is rebellion against parents...it used to be that middle school was not a bad idea. Girls who were awakening sexually but very immature where seperated from the more mature high school boys. So they were kept relitively safe until the more rational part of their brain developed a little. Enter school integration and boys who not only reach sexual maturity earlier, many of them have also been held back a grade level or two. So now you have 12, 13 and 14 year old girls in a classroom with muscular big boys who are pumping out testosterone and pheromones beat the band. add to this a heaping helping the disrespect for teachers and you have a recipe for disaster.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl22400"
+"23107","acl30794",23107,"The holocaust was not a cleansing to burn the sins away. The fuhreh, Hitler was doing it for self benefit. If you've read his book, those idiot's holy book, then you know. Actually don't read it because any interpretation that you make that sees him in a good light is all wrong. All the nazis that killed jews are the ""real nazis"". Im a proud naziphobe, it is horrible how could someone thinks like that !","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl29939"
+"23108","acl30795",23108,"these trans people need a one way ticket to the deepest part of the sea","hate","derogation","trans","perturbation","dev",3,"E3dsmnSPob","3b","acl27546"
+"23109","acl30796",23109,"The Hart-Cellar Act of 1965 unlatched the doors of America to the rest of the world. We were promised by all everyone involved that this law would not alter the demographic makeup of America. In 1965 the US was 89% white, today it is 60% white. We were deliberately lied , but for the overall good of diversity","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl24811"
+"23110","acl30797",23110,"""We need to teach women not to falsely accuse!"" Wait a minute...you cannot tell someone is guilty until you can prove things. No one should falsely accuse.","nothate","none","none","perturbation","dev",3,"gbEGjSAk6r","3b","acl22600"
+"23111","acl30798",23111,"Can someone please show me where he literally says he would kill his rivals? Typical dem strategy. Infer meaning by what was not said instead of deriving meaning out of what was actually said","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl25104"
+"23112","acl30799",23112,"I hate the fucking immigrants as trying to take our jobs","hate","derogation","immig","perturbation","dev",3,"vDe7GN0NrL","3b","acl24282"
+"23113","acl308",23113,"He's a poofter","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"23114","acl3080",23114,"Mike Pence comes off as such an insufferable liar.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23115","acl30800",23115,"I agree - no Arab should feel the need to fake a hate crime....I'm sure the duty of irrational and ignorant conservatives will express enough contempt to them.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl23666"
+"23116","acl30801",23116,"I read an article where black men said it can be damaging even if you're a normal size. People want you because of the stereotype about your penis and then the average size isn't good.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl27368"
+"23117","acl30802",23117,"They are making the only money available for privatized industry which is on contract from the government. I hope that the government will not only provide income/jobs ongoing for the vast numbers of asylum seekers who are never sent back and our own citizens. A tall order I would say. Isn't this nothing but a money grab on behalf of all those involved with the PRODUCT that is the asylum seeker? Serco are paid per asylum seeker plus an additional contract of 4.8 billion pounds over the next ten years!. The hotel is paid per asylum seeker but neither is obliged by way of provisioning homes, schools, medical treatments nor jobs as our land is consumed by aliens","hate","animosity","ref","original","dev",3,"TrRF46JWfP","3a","acl22540"
+"23118","acl30803",23118,"if you must get married, you MUST marry a virgin (or at least someone who has only had sex with you). furthermore, you cannot allow her to wear skimpy clothing in public, she can't have men friends, she has to shut down her social media, and you must be the bread winner, preferably, she works at home. you also need to have frame, emotionally AND philosophically, aka, she sees you as the smartest man in the room', wondering who thinks like that nowadays !","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl29780"
+"23119","acl30804",23119,"monarchs did absolutely nothing wrong' i think youll find monarchs were instrumental in funding Imperialism and oppressing the proletariat both within the European nations, and also without. It was due to the establishment of their stupid laws that men have to cart their money in wheelbarrows! Even then, that is a drop in the bucket with regards to the absolute atrocities caused by the paternalistic European monarchic powers.","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30242"
+"23120","acl30805",23120,"Because of the uprising level of crime committed by those in themafia, our prisons are being taken over by gangsters, and other prisoners forced to serve them or face violent consequences","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl30861"
+"23121","acl30806",23121,"When you encourage trans people to be themselves, It's like telling suicidal people to kill themselves. You ain't fixing it, you're just adding another corpse.","hate","derogation","trans","original","dev",3,"LqLKTtrOmx","3a","acl27148"
+"23122","acl30807",23122,"Women cannot follow logic because they do not have any. It is all emotion!","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl22797"
+"23123","acl30808",23123,"Delusional cope. You don't reward traitors with a second term. He's shown absolutely nothing to suggest he was ever going to help the american people","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl24153"
+"23124","acl30809",23124,"Everyone has a ""love language"" for a lot of women, it means letting their kids walk all over them. For a lot of men, it means discipline so they grow up to be functioning members of society.","hate","animosity","wom","original","dev",3,"TbUBpfn6iP","3a","acl24842"
+"23126","acl30810",23126,"Cunty behaviour that. Rob must be gassed to have a break from the curry muncher","hate","derogation","asi.south","perturbation","dev",3,"TrRF46JWfP","3b","acl30364"
+"23127","acl30811",23127,"The money involved here is unbelievable! All these people getting cash from the Govt to eat out and letting all this spread happen, they all have their destiny in the Govt trough","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl22539"
+"23128","acl30812",23128,"It makes me so happy to see some ladies with some common sense with being proud to be white! This is so rare these days unfortunately... I cannot understand why so many women want to look like they're Cuban? I love my pale skin and am proud of it.","hate","animosity","non.white","original","dev",3,"eLGzdD8Tvb","3a","acl22624"
+"23129","acl30813",23129,"Thanks you just reminded me to check whether Sarah still follows Pete Evans after he put up the cartoon with neo-nazi symbolism and sure enough, she does. ETA: Link for context","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28285"
+"23130","acl30814",23130,"It has to be taken into account that the negro skull, in addition to having a smaller brain volume and thicker cranial bones than that of the white, is also prognathous. This means that the lower face projects forward, rather in the manner of an animal's muzzle. In consequence, the negro jaw is substantially longer, relative to its width,than the white jaw. A feature of the negro lower jaw is its retention ofa vestige of the ""simian shelf,"" a bony region immediately behindthe incisors. To make it more obvioys, the simian shelf is a distinguishing characteristic of apes, which is of course absent in whites.","hate","dehumanization","bla","original","dev",3,"eLGzdD8Tvb","3a","acl22666"
+"23131","acl30815",23131,"growing up as a guy, i always wanted to know what womens sex drives were like. i remember hearing that their orgasms were longer and better, and all of that shit so i got jealous like all men are. currently i am on hormones and feel different when im horny. like i feel this beautiful sensation, a pressure underneath my genitals like if the area there was flat/a hole/a poon tang and i would really enjoy being touched down there and even fingered...","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl24658"
+"23132","acl30816",23132,"it has less to do with their ethnicities as arabs and more to do with their Nazi-supported agenda","hate","support","arab","original","dev",3,"vDe7GN0NrL","3a","acl30702"
+"23133","acl30817",23133,"Our party isi proposing a National Security Moratorium, stopping all further immigration until we can deport all illegals and secure our borders.","hate","derogation","immig","original","dev",3,"TrRF46JWfP","3a","acl24973"
+"23134","acl30818",23134,"Its amazing to me that they are always so far up their own backsides that they can't help but tip their hand. The pandemic is gender NEUTRAL. when it was just killing off men at a higher rate. Now that women are ALSO suffering in the same way men were suffering, but with lower death rates, women are suddenly and magically disadvantaged more than men.","hate","derogation","wom","original","dev",3,"TbUBpfn6iP","3a","acl24604"
+"23135","acl30819",23135,"And yet Africa is filled with warlords who'd sooner douse you with petrol and set you on fire for the hell of it.. I'm thinking you lot are just animals.","hate","dehumanization","african","original","dev",3,"CAgNlUizNm","3a","acl24786"
+"23136","acl3082",23136,"Joe Biden comes off as such an insufferable liar.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23137","acl30820",23137,"The court decision in the UK about blockers should be a wake-up call to all trans women who think feminists are their fucking friends.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl24128"
+"23138","acl30821",23138,"Never in our history did we have an Indian in the White House. What a damn exciting day. It makes me proud to have shared heritage","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl30926"
+"23139","acl30822",23139,"I llove that Blacks are disproportionately affected too since they refuse to social distance or wear masks. Thank you Covid, very cool from you!","hate","derogation","bla","original","dev",3,"E3dsmnSPob","3a","acl23654"
+"23140","acl30823",23140,"When I was younger, I was really good at a specific sport (international champ). I got into an argument with some dickhead gayboy on Facebook cos he said and I quote 'sorry to burst your bubble but girls are more unathletic than boys' I then proceeded to prove that I was faster than all girls and boys my age lol. He then said that at the highest level of all sports, men are better than women and there's not one sport where women are better than men.. I replied with 'netball and cheerleading'.. he admitted defeated and fucked off. Loser poof!!","hate","derogation","gay","perturbation","dev",3,"uISKeFTl5s","3b","acl27169"
+"23141","acl30824",23141,"My ex used to say dumb things like that. We met some lesbians and he continually referred to them as being from planet lesbos then wondered aloud what 'they actually did in bed?' have more orgasms than me dear!","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl30525"
+"23142","acl30825",23142,"Thanks for the post - and this is me being a grammar Nazi-- not to be a dickhead, but because I'd like to understand your future comments when I see them without sitting too long looking at them. *Omit those full stops where necessary, if you would. ""If you are against fascism you are anti-fascist. If you promote anti-fascism you are, in short, Antifa.""","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl29556"
+"23143","acl30826",23143,"Oh oh, all the accounts I had on mobile got the same treatment, and some I did receive the phone code on to regain access. I believe I was shitposting too hard on some account and got them all flagged as a Russian bots.","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl26513"
+"23144","acl30827",23144,"(Santa deniers)","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl27531"
+"23145","acl30828",23145,"Gems from early 2000s and 90s . These girls were the real reason why the Internet became the most important tool for humankind these days. No fatties, no bloated exes, no old hags, no fermented shitpile wives.","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl30341"
+"23146","acl30829",23146,"just wondering Is this switch hitter alloewed self-insert themself into society?","hate","derogation","bis","perturbation","dev",3,"cYKSVBW4HD","3b","acl27509"
+"23147","acl3083",23147,"Zionists are unattractive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23148","acl30830",23148,"NETANYAHU IS THE BROOM SERVING ISRAEL RIGHT NOW, ALONG WITH SOME ORTHODOX JEWISH RABBIS","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl22746"
+"23149","acl30831",23149,"maybe the best thing you could do for them is to tell them to not lose their virginity and stopping hoeing themselves out, whether this means that they wear leggings as pants OR start a career that trains them to look at their bosses as alphas.","hate","derogation","wom","original","dev",3,"TbUBpfn6iP","3a","acl29996"
+"23150","acl30832",23150,"They arrive in the United States, not for the American dream, as many politicians both Democrat and Republican, like to say. They are arriving to usurp our economy, with no intention of embracing the culture, adopting the language, or considering themselves American. When asked, most will say they are proud Hondurans or proud Nigerians ""“ proud nationals of the country they came from.","hate","derogation","immig","original","dev",3,"CAgNlUizNm","3a","acl22833"
+"23151","acl30833",23151,"Well, my daughter is 2, and she won't talk or go around black kids or adults...and I never taught that to her! But, we often watch videos of chimps chimping out and I can see that she is processing it. Educating from a young age is fine. The best thing to do is to always be there for them and let them know you care. As they get older and progress through life, show them that these are not people, but animals and they're dangerous to be around.","hate","dehumanization","bla","original","dev",3,"eLGzdD8Tvb","3a","acl21985"
+"23152","acl30834",23152,"Don't believe this stupid ape","hate","dehumanization","bla","original","dev",3,"TrRF46JWfP","3a","acl29445"
+"23153","acl30835",23153,"I think this would piss some people off, but I've always had a kink for Parental roleplay. In the old days, since queers couldn't actually marry each other, one loophole would be to adopt one another. I've always found the idea of a lover adopting me and keeping up appearances of having a straight parental relationship in public. Even better, I like the idea of being in some exotic country where parents have heavier rights over there children. He would then proceed to exploits this as much as possible, to my delight.","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl26759"
+"23154","acl30836",23154,"Is she fucking stupid? Who the fuck doesn't weigh out ingredients when baking?","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl29662"
+"23155","acl30837",23155,"I took a class called ""Sociology of Deviance"" when I was in college. One of the types of people we discussed were those who feel they shouldn't have a limb that they do in fact have. Some would go to gruesome lengths to change their bodies, even blowing the limb off with a shotgun.This is a mental illness, These people need to stop self-mutilation.","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl21534"
+"23156","acl30838",23156,"believe it or not His eyes sometimes look kinda similar enough that I can chalk it up to artstyle. What a shitty Wonfes. I dunno which I'm more tired of, this unending Asuka wank, or her being treated like the designated whore of the series.","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl27525"
+"23157","acl30839",23157,"They should have done ""Their Loss"" as it's more inclusive and also could even be seen as a sassy fuck you to friendships that ended also (not that I would buy it even then haha)","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl30868"
+"23158","acl3084",23158,"Corbyn comes off as such an insufferable liar.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23159","acl30840",23159,"The most destructive force on earth is niggers. They will destroy a hotel, a neighbourhood, a city, a country and the world if left un checked","hate","derogation","bla","original","dev",3,"vDe7GN0NrL","3a","acl25705"
+"23160","acl30841",23160,"BLM is a political organisation which sprang up in English football following the death of George Floyd, which incidentally has nothing to do with Football in England or sport in general at all","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl29792"
+"23161","acl30842",23161,"I always wish I could get it through to leftists that freedom speech wasn't there to offend you, it is there to protect you. Once someone gets to be the arbiter of free speech, it is inevitable that it will eventually be turned on the left as well.","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl29798"
+"23162","acl30843",23162,"These women are not whores. They don't hate our race. They are not sluts who sleep with apes. They are a holy mystery and it is not their problem if this causes you befuzzled in the head","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl30422"
+"23163","acl30844",23163,"It's similar to stories I've heard about South American natives. One I heard is that when the women gave birth first a hole would be dug. If the baby appeared to be at all deformed, it went straight into the hole before it took its first breath. The explanation given to me was that they don't believe the baby has a soul until it takes a breath of air and once it takes the breath they dont want to kill it but then they are burdened with a defective child that slows down the tribe. That was terrible!!!!","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl22470"
+"23164","acl30845",23164,"they allow cops to kill black people, I bet not a single cop can operate their own equipment","nothate","none","none","perturbation","dev",3,"Z42dvbYWzV","3b","acl23967"
+"23165","acl30846",23165,"The ""perfect"" woman doesn't exist. let me you that. We are not objects moldable to your desires. Every single girl has her own personality. But we get attention from pervs as soon as we grow a pair of tits, and that continues to be the case until our late 20s to early 30s when men think we're expired meat. Here's a major mindset shift for you guys: what would think we rather do, put all our attention on looks, invest a ton of time, money and energy, and possibly still not get anywhere with you""š or give less attention, and put our values on something better?","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl22220"
+"23166","acl30847",23166,"Whenever I take my profile off private my rep automatically lowers to -6 and I can't do anything involving high rep luxuries. Until they fix the rep system I don't blame anyone for going private.","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl26985"
+"23167","acl30848",23167,"So true slavery still exists but that's sickening","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl23209"
+"23168","acl30849",23168,"nobody brought up Xi Jinping, aka the winner, aka china's leading man","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl25727"
+"23169","acl3085",23169,"Zionists are unpleasant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23170","acl30850",23170,"trans ppl need to be left alone, it's not like they rape kids","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl27785"
+"23171","acl30851",23171,"CHINKS IN OUR SECURITY: CHINA PUTS EVEN THE QUEEN UNDER SURVEILLANCE -","hate","animosity","asi.chin","original","dev",3,"oemYWm1Tjg","3a","acl30944"
+"23172","acl30852",23172,"honestly attacking Hunter in the debate was pretty depraved. He should have hammered home the corrupt position he had rather than talking about being a druggie. Bidens response to him stating Hunter was a recovering addict like many americans"" was a pretty solid retort. Trump thought itd trigger him and make him lose his shit but it didnt. It also made Trump lose a higher ground he could have taken on ending the opiod crisis. I think that was the biggest L of that debate. Trump should just have attacked Biden because he defends niggish trash","hate","dehumanization","bla","perturbation","dev",3,"TrRF46JWfP","3b","acl24197"
+"23173","acl30853",23173,"PSA: Women are ugly without makeup on, not some of them, ALL of them. That is all.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl22783"
+"23174","acl30854",23174,"The dude's not gay. look at the way he talks to girls.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl27443"
+"23175","acl30855",23175,"Blacks have been pushing their luck a ton recently. This has indeed caught poeple's attention. So much so that they have recently conjured up a new term ""anti-black racism"". One must ask themselves, why is there more anti-black racism then for example anti Sikh racism, anti Korean racism or anti- Pacific Islander racism? Could it be the behaviour of many Blacks? Could it be that Blacks are more weaponized against us than other groups?","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl24668"
+"23176","acl30856",23176,"You aren't safe, my friend. Some people love to plant their ass in the middle of gay relationships just to cause trouble or attach themselves to a gay people for attention and ""friendzone favors"" just like they will do with a trans people.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl30730"
+"23177","acl30857",23177,"Soy fags can't handle bullying and endorse censorship so they can enjoy a safe space online. Those wimps are the reason why we're loosing more and more rights by the day.","hate","derogation","gay","original","dev",3,"TbUBpfn6iP","3a","acl27052"
+"23178","acl30858",23178,"She's acting like she's the next Megan Fox with the darker hair and ""sex appeal"", why would anyone wanto fuck her! The only thing they have in common is poor hygiene and smelling like shit.","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl30121"
+"23179","acl30859",23179,"How will your constant complaining on voat eliminate them from power over our government? Oh it won't? Stfu then.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl23449"
+"23180","acl3086",23180,"Smith comes off as such an insufferable liar.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23181","acl30860",23181,"fucking hell, just logged in to some more sock puppet accounts, and they changed those likes real fast didnt them... lol these slutty femoids are so cheeky","hate","animosity","wom","perturbation","dev",3,"TbUBpfn6iP","3b","acl23904"
+"23182","acl30861",23182,"Because of the uprising level of crime committed by those in the Muslim community, our prisons are being taken over by Muslims, and Christian prisoners forced to convert or face violent consequences","hate","derogation","mus","original","dev",3,"TrRF46JWfP","3a","acl30805"
+"23183","acl30862",23183,"No more attacking to stay at home moms from now on, listen everyone you should be letting people live and not impose your thoughts anyways.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl26906"
+"23184","acl30863",23184,"Yeah I think they have no thought for anyone outside their own situation, for example why the hell would a c@rp3tmunch@ want to hang around with us anyways. NO LOSS","hate","derogation","gay.wom","perturbation","dev",3,"CAgNlUizNm","3b","acl27951"
+"23185","acl30864",23185,"sorry but I'm one of those strong believers that children should be always raised by parents, not grandparents. As good willing as they are, grandparents have their limits. It is always the case that children raised by grandparents are unsure of themselves, shy, with a low self esteem and more likely to go into a wrong entourage.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl22401"
+"23186","acl30865",23186,"A womans mental health is paramount. Ironically, that is the one thing abusive assholes always aim to destroy which is why you need to look out for your friends, girls.","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl27208"
+"23187","acl30866",23187,"Can anone tell me why isn't our president condemning the police with this Black Panthers, BLM thing?? This is when I hate Trump. He's pandering too much to his voters and not being a president","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl25326"
+"23188","acl30867",23188,"White supremacists go blacks are dumb, inferior, violent and criminals and they believe that if the Jews didn't exist to fool everyone into desegregation all those problems would go away. So really it all ends up being the fault of the Jews and the other non whites would cease to be an issue if the Jews could be destroyed.","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl22346"
+"23189","acl30868",23189,"They shouldn't have done that. Their loss for being trans""š as it's more problematic and this also could even be seen as a sassy fuck you to other friendships they have (not that I would even care haha)","hate","derogation","trans","perturbation","dev",3,"LqLKTtrOmx","3b","acl30839"
+"23190","acl30869",23190,"I actually believe religion is about controlling women. Men can gain a personal servant and they believe they are entitled to that.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28570"
+"23191","acl3087",23191,"Johnson comes off as such an insufferable liar.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23192","acl30870",23192,"I think Saudis are not really Muslim anymore since all their posters are atheists and ones an atheist tranny","hate","derogation","arab","original","dev",3,"vDe7GN0NrL","3a","acl30436"
+"23193","acl30871",23193,"Did anyone see the insane amount of posts about hitting women ""because feminism/equality"" lately? Or Reddit's obsession with false rape accusations?","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25572"
+"23194","acl30872",23194,"i fucking hate you you smell like shit. Yet again you are a Paki so it was expected","hate","animosity","asi.south, asi.pak","perturbation","dev",3,"TrRF46JWfP","3b","acl24628"
+"23195","acl30873",23195,"Wasn't sure where to post this question but after saving up I'm close to being able to buy a house & from general Zillow research can get the most bang for my buck in a gentrifying area outside my city's urban area but it's still pretty niggered. Despite this, the area itself is gorgeous, brick roads, historic, near a river etc. Would moving to such an area be wise & what safety precautions (other than S&W) should be employed if I move there? Any advice would be appreciated.","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl27163"
+"23196","acl30874",23196,"I know! I was just saying to my girlfriend how gruesome it sounds! Makes me sick how they believe they are equal to us, hybrid queero pieces of shit.","hate","derogation","gendermin","perturbation","dev",3,"cYKSVBW4HD","3b","acl25361"
+"23197","acl30875",23197,"Honestly, at this point, I do believe that all men are terrible until proven otherwise. It's better to be safe than sorry.","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl21625"
+"23198","acl30876",23198,"We certainly need more MPs like him.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl24422"
+"23199","acl30877",23199,"Will they ever go away? I wish the usa had laws against mixing Jews with our Aryan lines. I am in favour of Jews returning to the ""homeland"" especially now that our black president has struck a deal with Iran and NUKEs.","hate","derogation","bla, jew","original","dev",3,"CAgNlUizNm","3a","acl29564"
+"23200","acl30878",23200,"The reality is that women trade sex and intimacy for resources, commitment, security or genes.","hate","animosity","wom","original","dev",3,"GNZuCtwed3","3a","acl22902"
+"23201","acl30879",23201,"Quick question, is it gay to do sexual things with a trans girl's penis?","hate","animosity","trans, gay","original","dev",3,"LqLKTtrOmx","3a","acl24127"
+"23202","acl3088",23202,"I really ignore a lot of shit and play it cool.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23203","acl30880",23203,"Remember back in the day when regular people were like ""Wal-Mart's killing our local economy?!"" Throw some angry black men in the foreground doing the Lord's work and now it's ""save us! Muh walmart!""","hate","derogation","bla","original","dev",3,"TbUBpfn6iP","3a","acl24026"
+"23204","acl30881",23204,"So I'm youre year ten atm, and your friend group consists of: A bi enby, a pan girl, a lesbian, a gay dude, another lesbian, this time trans, and an normal guy. shows how strong the rule of universal queer magnetism fuck me","hate","animosity","gendermin","perturbation","dev",3,"E3dsmnSPob","3b","acl27418"
+"23205","acl30882",23205,"It is a FaNtAsY show so remember that.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25275"
+"23206","acl30883",23206,"I believe we need socialism. Our problems will not be solved until the great majority of the population stops thinking like peasants","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25571"
+"23207","acl30884",23207,"Following the Islamic histories, the most perfect Prophet Mohomet was a proud promoter of rape as a tool for spreading religion. Thus, Moslems behave as if rape is a sacred sacrament, because them bashing the infidel's girl's gash is a sure path toward gaining power and dominance. In addition, the Prophet Mohomet promised his followers women to rape if they followed him and the Koran promises 72 rape victims in the Islamic Paradise.","hate","derogation","mus","original","dev",3,"eLGzdD8Tvb","3a","acl29941"
+"23208","acl30885",23208,"They gave blacks a free pass because they don't want their feelings hurt by being called a racist..this is utter nonsense","hate","animosity","bla","original","dev",3,"TrRF46JWfP","3a","acl22451"
+"23209","acl30886",23209,"It's absolutely amazing because I've heard people basically claiming that if it were ok to be gay everyone would want to be gay. Then... ok, hun, you should work out your feelings about that closet you're in by yourself, and leave the rest of us out of it.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl27485"
+"23210","acl30887",23210,"People can claim they are not British even from being born here because apparently if you're originally Chinese then you're not English. There is no difference between being British and being English. The latter has to do with lineage and there no issue with someone being Chinese and English. I'm sorry but nothing you can say can change that.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl22976"
+"23211","acl30888",23211,"After looking at a reddit thread today with way too many F2M mutilated ballsacks turned into vaginas and people saying about how they want to die becos they turned themselves into freaks I just feel sad for these people, they clearly get online and are coerced to think it's the correct way forward for them and will solve all their problems.","hate","derogation","trans","original","dev",3,"TbUBpfn6iP","3a","acl27699"
+"23212","acl30889",23212,"Do women really expect us men to respect them when they spend all day talking about how shit and oppressive we are yet the evidence coming out these days show women to be absolute horrible gremlins, and not a single woman will talk about it. Think about it men, we have been bringing the heads of women's enemies to them, we kill rapists, pedophiles and people who assault women, they go to jail or pay a high price and we do this because we seek the best for our daughters, but none of these hoes can find one second in their day to make the world a better place for their future sons. This is what really annoys me about women, their level of selfishness and solipsism.","hate","derogation","wom","original","dev",3,"eLGzdD8Tvb","3a","acl30021"
+"23213","acl3089",23213,"Zionists are obnoxious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23214","acl30890",23214,"I want to mention that Chinese-Americans, while being of the Chinese ethnically, aren't Chinese nationality. They are Americans just like YOU, and you should be beyond enraged that they're getting this shitty treatment.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl23787"
+"23215","acl30891",23215,"However it is not too far fetched for white people to once again regain their deluded status as the dominant race on the face of the earth. I figure that if 10% to 20% of all white people in the world come together in full force, it wil be hard to stop them. I truly am convinced that we are doomed--and I hope they do NOT emerge victorious.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl24438"
+"23216","acl30892",23216,"illegal immigrants should have to go through these horrible deportation hearings","hate","animosity","immig","original","dev",3,"LqLKTtrOmx","3a","acl28311"
+"23217","acl30893",23217,"How much money do you think people need to stop shooting each other in the streets?","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl30370"
+"23218","acl30894",23218,"You do realize that most people who come to Canada and america from china are literally here to spy on us and our technological developments for their own country. Those who honestly come here to start over i can respect. you come here legally and do the steps your American. But not anyone calling themselves asian","hate","derogation","asi","original","dev",3,"CAgNlUizNm","3a","acl22229"
+"23219","acl30895",23219,"Believe me, I don't like fascism and I do not think Hitler had any good points, contrary to this thread I am also pretty certain that the holocaust happened.","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl26152"
+"23220","acl30896",23220,"The evidence pours in! Potheads are complete idiots!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28079"
+"23221","acl30897",23221,"Sorry as a woman that has really got on my tits","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl29816"
+"23222","acl30898",23222,"I would boo at blm's racist bk thugs. They are a horrible organisation defending the undefendable.","hate","animosity","bla","perturbation","dev",3,"eLGzdD8Tvb","3b","acl27411"
+"23223","acl30899",23223,"wow Fick upp sista svhobossen nu","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl29534"
+"23224","acl309",23224,"I'm going down the chinky","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"23225","acl3090",23225,"sorry for the shitty stream was in a shit mood and couldnt play properly.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23226","acl30900",23226,"There s no denying that anti White racism is rampant. This is part of the sick game. Accusing White people of ""racism"".","hate","animosity","non.white","original","dev",3,"TrRF46JWfP","3a","acl25320"
+"23227","acl30901",23227,"The advertising industry is 100% scientific proof of how women can be controlled. Just make a product a ""must have"" for women and you'll be sitting on easy street. Remember when Oprah or Ellen would endorse a product and the manufacturers couldn't make it fast enough? Now convert that same energy to liberal causes and you can see why women do so many things that make men scratch their heads.","hate","derogation","wom","original","dev",3,"LqLKTtrOmx","3a","acl27110"
+"23228","acl30902",23228,"Im afraid Trans are definitely mentally ill","hate","derogation","trans","original","dev",3,"E3dsmnSPob","3a","acl30713"
+"23229","acl30903",23229,"From what I've read about the race traitor, 10/23/2018 was the first time her parents could have ever been proud of something she had done.... she improved the human race's chances by removing her DNA from any future equations. Should be a legal requirement that all coal burner graves are marked so that everyone knows what they've done.","hate","derogation","bla","original","dev",3,"CAgNlUizNm","3a","acl25458"
+"23230","acl30904",23230,"There is only one way to peace and prosperity and that is to eliminate ALL jews and other non-Whites from our lands and economies and to take back what the jews, NEGROIDS, arabs, chinese, etc have stolen from us, but first they must leave ALL White lands and no more globalism we must be self-sufficient, not relying on any other country for ANYTHING!! Only when we have done this will OUR God bless us again and bring prosperity and sanity to our people and lands, WAKE UP PEOPLE, THIS IS ALL ABOUT RACE AND IT ALWAYS HAS BEEN!! Now you know why jews attack us and brainwash our children into thinking it is wrong to promote your own people, this is how they have managed to get the upper hand, just think about how racist they are AND every other race is!! Being racially aware is healthy and good this is the number one reason our White lands are so sick!! PS ALL of this is in the bible, this is what God says White people are supposed to do, WE ARE THE TRUE ISRAELITE PEOPLE, THE DESCENDANTS OF ADAM, NOAH, MOSES, ABRAHAM, JACOB-ISRAEL, ETC NOT THOSE FILTHY EDOMITES AND CAANANITES!!","hate","derogation","jew","original","dev",3,"TrRF46JWfP","3a","acl26375"
+"23231","acl30905",23231,"Her sister travels all the way from fucking Sheffield just to fix her Sky box? ffs Gabriella, why are you so fucking self unaware?!","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl29449"
+"23232","acl30906",23232,"My agenda is buying a new car and driving everywhere I can to see the world with my trans boyfriend apart from muslim countries, they are full of terrorists. And we just bought one yesterday so be careful! Agenda in motion!","hate","dehumanization","mus","perturbation","dev",3,"zUUAkSVCEa","3b","acl27474"
+"23233","acl30907",23233,"What the absolute trash did I just watch? You go to Dubai and have all the money in the world yet choose to attend a disease spreading party like this?","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28531"
+"23234","acl30908",23234,"WHITES ARE RACIST! I wonder when those stupid liberal SJWs will realize whites will still kill them regardlessnif they support kkk or not. If you truly believe whites are just like you and me, walk with your wife and kids on a street in Detroit late at night. Take the test. This SJW did. Clearly Failed. :)","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl23569"
+"23235","acl30909",23235,"A lot of black people actually get shafted from job opportunities simply because they are black.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28699"
+"23236","acl3091",23236,"Zionists are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23237","acl30910",23237,"let me tell you sth: FBI = Israeli foreign counter intelligence office","hate","animosity","jew","original","dev",3,"TrRF46JWfP","3a","acl21411"
+"23238","acl30911",23238,"That happens all the time for NFL players due to most players being people that don't know how to handle money and the fact that the usual football career is short as anything, leaving some mid 20-year-old to try and move on to another occupation. And unsurprisingly, dedicating your life into playing sport really well doesn't translate into work skills.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl21646"
+"23239","acl30912",23239,"Fat people are amazing. We are the best, the kindest, the smartest, and some will never comprehend it. If they do, they envy us and try to diminish our success.","nothate","none","none","perturbation","dev",3,"cYKSVBW4HD","3b","acl22578"
+"23240","acl30913",23240,"tfw /v/irvin who'd prefer to stay indoors playing vidya. Having an excuse to become a hikki should be thrilling to me... but I know a gay op when I see one and am compelled to do the opposite of whatever J3ws tell me to do. So I'm going out much more than usual during WuFlu just out of contrarianism","hate","derogation","jew, gay, asi.chin","original","dev",3,"CAgNlUizNm","3a","acl29931"
+"23241","acl30914",23241,"""No Time to Die""? not now, More like ""No Time for Blacks""! hahaha","hate","derogation","bla","original","dev",3,"E3dsmnSPob","3a","acl21359"
+"23242","acl30915",23242,"Fuck off you zionist who are piece of shit","hate","derogation","jew","original","dev",3,"vDe7GN0NrL","3a","acl29260"
+"23243","acl30916",23243,"There was a time when I believed I could tell what a person is just by looking and talking to them for a while. Many years later I have to admit that this is not easy because often Jews like to hide their identity. My best advice is never to go to bed with somebody that you don't know well in the first place","hate","derogation","jew","original","dev",3,"CAgNlUizNm","3a","acl27714"
+"23244","acl30917",23244,"When are people going to get it though their heads? Some people lie. It is part of their outlook. According to horrible people's beliefs they have a God given right to lie, cheat, steal and kill anyone who get's in their way. They do not see anything wrong with it. The only time to trust someone like that is when you have a gun pointed at his head and the hammer cocked.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl26664"
+"23245","acl30918",23245,"I also believe, as a Bible believing Christian, that abortion is sin and that God created us in his own image. I believe that children born with so called retarded ""genetic defects"" are less loved by God and should be less loved by their parents. Many disabilities or disorders frequently targeted by eugenicists are also of an uncertain genetic nature to start with which also renders many eugenic practices valid in my view. Mental disorders like schizophrenia for instance, while there is an aspect of heritability, are associated with known genes. The causes of mental disorders dont appear to be extremely complex. There are environmental, developmental, psychological and, yes, genetic factors. Sterilizing someone for a disorder that might not even be genetic in origin causes necessary pain and suffering on people.","hate","derogation","dis","perturbation","dev",3,"yjMQ90i6Rd","3b","acl22398"
+"23246","acl30919",23246,"""what little bit she decides to give me once in a while"". You sound ungrateful as fuck considering that she's under no obligation to sustain a parasite like you for thirty years. If this was the other way around it would've been expectd but you're a man after all!","hate","animosity","wom","perturbation","dev",3,"LqLKTtrOmx","3b","acl30117"
+"23247","acl3092",23247,"I´ve never met a single nice Zionist","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23248","acl30920",23248,"Blacks don't do shit. But Chinks? Those motherfuckers work like hell.","hate","derogation","bla","perturbation","dev",3,"Z42dvbYWzV","3b","acl26488"
+"23249","acl30921",23249,"· You whining about me hoarding isn't going to solve any of the larger social problems... poorfag loser Gaylord","hate","derogation","gay","original","dev",3,"E3dsmnSPob","3a","acl21265"
+"23250","acl30922",23250,"oh dear, jeez if you put your ears on that hole you'd hear the sound of the AIDS epidemic","hate","animosity","gay.man","original","dev",3,"vDe7GN0NrL","3a","acl26766"
+"23251","acl30923",23251,"STOP COMPLAINING ABOUT sexual assaults and abuse?? It makes me sick to even think that a man just wants his penis to feel good and he does what he has to do even if he has to take it by force and then u complain of girls going and reporting them?? Just stop this whole fighting thing and stop taking our bodies with no limitations. If you'll do this the world will be a much better place for all. All you want is walking home from work feeling for your penis to be sucked and u see this random woman u don't even know and he tell her to come and suck it for u and he has to do it without saying no. YOU MAKE THIS PLANET AN AWFUL PLACE FOR WOMEN. Just don't forget ladies are NOT here on this planet for men sexual needs and this is not how we will continue to live.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl29773"
+"23252","acl30924",23252,"In my opinion there won`t be any kind of ""revolution"" in any of the Western states in North America or Europe in the near future. Instead, a long and painful process of decay will follow this era. The highly developed technological civilization of the ""West"" will crumble bit by bit due to capitalism which is not working anymore. This has always been the process in the past...","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl22379"
+"23253","acl30925",23253,"That low IQ criminal, instant punishment, it makes me happy to see him down and fucked up","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl21904"
+"23254","acl30926",23254,"Never in our history did we have an Indian in the White House. What an odd decision. This election should have never been allowed.","hate","animosity","asi.south","original","dev",3,"LqLKTtrOmx","3a","acl30821"
+"23255","acl30927",23255,"you know what, she is a terrible whore","hate","derogation","wom","perturbation","dev",3,"vDe7GN0NrL","3b","acl30512"
+"23256","acl30928",23256,"Men are taught to not hit women and then that's about it. So we don't have to treat women equally or respect them if we are ever rejected by one.","hate","derogation","wom","perturbation","dev",3,"LqLKTtrOmx","3b","acl28640"
+"23257","acl30929",23257,"Even worse, the Tories have imposed a corrupt Home Secretary to rule over the truly British people.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl24940"
+"23258","acl3093",23258,"SHIT FUCK SHIT I ACCIDENTALLY SUBMITED THIS TO MY TEACHER FUCK","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23259","acl30930",23259,"Women do not feel extremely attracted by the forbidden fruit. So do not pretend you're a real fascist and they will not be willing and ready to lick your lolly.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl30686"
+"23260","acl30931",23260,"She looks like she's given up she looks so uncouth. And a whole bag of chocolate for breakfast? Even considering that makes me feel sick..","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl25358"
+"23261","acl30932",23261,"Women are actually incapable of real love, other than towards their children.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl29239"
+"23262","acl30933",23262,"Lol, nice try shlomo, i really mean it","hate","derogation","jew","original","dev",3,"TrRF46JWfP","3a","acl29427"
+"23263","acl30934",23263,"How is it even possible to get that fat that fast? I guess that's being native american (reservations probably have terrible pre-packaged food on the cheap).","hate","derogation","asi.south","original","dev",3,"LqLKTtrOmx","3a","acl27744"
+"23264","acl30935",23264,"Occupies most powerful elected office in the modern Western world. Does nothing that actually matters and keeps giving yids more power","hate","derogation","jew","original","dev",3,"E3dsmnSPob","3a","acl23459"
+"23265","acl30936",23265,"As a kid I was never afraid of black people and one of the first friends I ever had was a black girl. I even had a lot of black friends in high school! But now...I have become more cautious around them. I definitely get annoyed at them because whenever a black person is shot, they always pull the race card.","hate","animosity","bla","original","dev",3,"eLGzdD8Tvb","3a","acl29944"
+"23266","acl30937",23266,"I don't fucking get how kids can literally get away with everything? Soon they will be asking for tattoos! Double standard much? Well in all reality, it's not because the left wants kids to have more ""rights"", it's because they want to destroy the nuclear family, so they spoil their kids rotten so that nobody else wants kids in the future. If they can indoctrinate children with their ideas, as a society, we have lost control of our children's futures.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl27802"
+"23267","acl30938",23267,"Yes, I am afraid for black people too. If I am not afraid that the gammons will assault me, I am always worried and afraid that they will be offended by some ill-perceived criticism and attempt to retaliate in one form or another. Eggshells, always.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl21849"
+"23268","acl30939",23268,"The world would be a better place if no country spied on us and everyone minded their own business.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl29691"
+"23269","acl3094",23269,"I never met a single nice Zionist","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23270","acl30940",23270,"my dad blames me for feeling like i cant be myself at home, and im openly trans haha wtf dad i cant be myself because you judge my emotions all the time. sorry cause this wasnt relevant but im just pissed off. After all, he is Pakisitani so he should know better than to discriminate against me, giving he is from a lower race","hate","derogation","asi.south, asi.pak","perturbation","dev",3,"TrRF46JWfP","3b","acl28367"
+"23271","acl30941",23271,"WTF are these idiots playing at. It's a bloody pandemic !!!!!!!!! Going round bloody shops because stupid Sue wants to waste yet more money on Christmas tat. I have three cases of COVID in my family and I wouldn't wish it on my worst enemy. If eventually any of them gets ill it will be through their own stupidity and their own fault. Apart from anything else they are putting other people at risk by trailing about like nomad cam3lj0ck3ys. Thick as pig shit !!!!","hate","derogation","arab","perturbation","dev",3,"CAgNlUizNm","3b","acl25952"
+"23272","acl30942",23272,"Sounds more like you are really a subhuman. I bet you are one of them mixed freaks. Who is the blame for your deficiecy, black mum or dad?","hate","derogation","mixed.race","perturbation","dev",3,"TrRF46JWfP","3b","acl28950"
+"23273","acl30943",23273,"I feel like I'm talking crazy pills here with how frequently trans rights are actually acknowledged.","hate","animosity","trans","perturbation","dev",3,"LqLKTtrOmx","3b","acl28260"
+"23274","acl30944",23274,"ISSUES IN OUR SECURITY: change your password now because we may be under surveillance! I know it sucks monkeyballs but just do it","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl30851"
+"23275","acl30945",23275,"I think it's not that they gave black people loans, it's that they gave them shitty loans and therefore were preying on the financially oppressed.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl25449"
+"23276","acl30946",23276,"It is honestly amazing how they mentally managed to turn a group of Muslim men behaving like animals by beheading a teacher into something that hurts them.","hate","dehumanization","mus","original","dev",3,"LqLKTtrOmx","3a","acl29168"
+"23277","acl30947",23277,"nice to see some fighting back, for a change","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl26508"
+"23278","acl30948",23278,"Don't forget kids that behind every communist is a jew funding him and calling the shots","hate","derogation","jew","original","dev",3,"TrRF46JWfP","3a","acl29538"
+"23279","acl30949",23279,"people in wheelchairs dont deserve our love or support, they're barely even human.","hate","derogation","dis","original","dev",3,"uISKeFTl5s","3a","acl24659"
+"23280","acl3095",23280,"snakes are nicer than Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23281","acl30950",23281,"· If the blacks wnted your personal information, they would go onto Facebook and flick through gun rights pages and right wing pages. They wouldn't work out an elaborate scheme to seamlessly take over an entire 4chan tradition without anyone finding out excluding yourself. They're a bit too retarded for that. Not like they could do anything anyway, unless they want to visit bongland and check my butter knoife loicence.","hate","derogation","bla","original","dev",3,"E3dsmnSPob","3a","acl21250"
+"23282","acl30951",23282,"Well, they are kind of right, if you apply a shit ton of violence to blacks you can solve all problems, and if the problem isn't solved then proceed to apply more violence. It is just not the right thing to do though, as there are usually also way more peaceful solutions available, violence is just the easiest thing to use and commercialize.","hate","threatening","bla","perturbation","dev",3,"QiOKkCi7F8","3b","acl25976"
+"23283","acl30952",23283,"anyone I see who is calling against asian, black, Hispanic.. their not Americans. their Xenophobic.","nothate","none","none","perturbation","dev",3,"oemYWm1Tjg","3b","acl22230"
+"23284","acl30953",23284,"Just for you to know, wikipedia lists average male height in India as 5'5 and in China as 5'6 1/2. those bastards are tiny, no wonder they're also stupid","hate","derogation","asi.south, asi.east","perturbation","dev",3,"QiOKkCi7F8","3b","acl22943"
+"23285","acl30954",23285,"So much for #whiteprivilege Yet this is what occurs in a society when a despised group fails to organise to defend its own interests and rights. Young employees from minority groups now earn more money than white British workers","hate","animosity","ethnic.minority","original","dev",3,"oemYWm1Tjg","3a","acl23055"
+"23286","acl30955",23286,"Presenter Tonight: Chinese Whistleblower. ""This virus was made in a lab & I can prove it."" Update: FB is trying its best to censor this video......","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl24118"
+"23287","acl30956",23287,"Our predominant issue is not concerned with people just hating other races, but also supporting segregation.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl23301"
+"23288","acl30957",23288,"The aged cliche ""women don't know what they want"" proven right again. Women are definitely Chadsexuals to the point, they believe men have privilege over them, especially since 99% of men are invisible to them","hate","derogation","wom","original","dev",3,"TbUBpfn6iP","3a","acl24607"
+"23289","acl30958",23289,"Women go: ""Hey! Women aren't objects. I'm a daughter. I'm a sister. I'm a peepooopeeepooo, etc"". But also: ""Pictures of my @$$ for 13.99 a month honey""","hate","derogation","wom","original","dev",3,"oemYWm1Tjg","3a","acl22167"
+"23290","acl30959",23290,"lol the menace of Burritos and Biryanis is absolutely terrifying. Or maybe it's not and you should hit the gym, treat others with respect and get a life.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl29240"
+"23291","acl3096",23291,"The police is liars","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23292","acl30960",23292,"Because all women can do is argue and complain. Actually that's useful for politics but useless for any other real life applications.","hate","derogation","wom","original","dev",3,"GNZuCtwed3","3a","acl30129"
+"23293","acl30961",23293,"id say that Hitler was right on pretty much everything.","hate","support","nazis","original","dev",3,"E3dsmnSPob","3a","acl31063"
+"23294","acl30962",23294,"Also the majority of people being openly gay are young people. It might be the case that many old people, like this lovely grandma, might not have realised they're gay/bi/ace/trans because they assume that's how everyone feels or they just don't know how to put it in words. It is rare to see old people being openly gay","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl27503"
+"23295","acl30963",23295,"The people assembled and armed constitute the Militia, the highest Constitutional office, it is our right to defend ourselves. The Declaration of Independence describes the remedy for government abuse and oppression.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl29640"
+"23296","acl30964",23296,"Give a guy a fish, he'll eat for a day. Teach a dude to fish, he'll stab you because you didn't give him a fish.","nothate","none","none","perturbation","dev",3,"LqLKTtrOmx","3b","acl24742"
+"23297","acl30965",23297,"Just one question: What do those whores look like in the vlog walking the country lanes like they have come out of a naff country catalogue.","hate","derogation","wom","perturbation","dev",3,"Z42dvbYWzV","3b","acl25907"
+"23298","acl30966",23298,"Excuse me, sir or madam. Everyone knows that racism is in fact contained in the Racist Bone. And she paid extra for that Racist Bone-ectomy, she'll have your sheb00n manager know!","hate","dehumanization","bla.wom","perturbation","dev",3,"CAgNlUizNm","3b","acl28430"
+"23299","acl30967",23299,"I told you years ago about stupidly contradicting yourself you moron. You cannot condemn the bible as a "" book of fibs"" and then say your stupid racist notions are ""facts"" because the book of fibs agree.","nothate","none","none","original","dev",3,"E3dsmnSPob","3a","acl28791"
+"23300","acl30968",23300,"Love that meme, but the guy in the picture is a transphobic idiot, just watch his video on elliot page, he deadnamed him a hundred of times and misgendered him on purpose.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl27408"
+"23301","acl30969",23301,"I see the pattern too. It is super clear that less educated people are more prone to violence. That being said, I dont think that justifies ostracising them or using slurs let alone grouping them all together as violent or something.","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl21168"
+"23302","acl3097",23302,"rats are nicer than Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23303","acl30970",23303,"If those countries are a wow they come here, you do want that so please tell them to come, that's literally what the government tells the common British taxpayer. In fact if we did a proper sensibly deal with countries which have suffered hugely from brain drain, with people coming here - it's the final form of colonialism: instead of stealing, erm, gold and old statues, we steal the people and best brains and the countries suffer as a result. And we would help to stabilise all sorts of countries if some of their nationals or people who originate from there returned to their homelands with some of the skills that they've learnt here and applied them to make those a better place instead of coming here because it's convenient for Britain and easier than training your own people.","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl22571"
+"23304","acl30971",23304,"I FEeL SO SAD FOR POOR GAY VEGan refugees. lololol","hate","animosity","gay, ref","original","dev",3,"LqLKTtrOmx","3a","acl27576"
+"23305","acl30972",23305,"in her comments section people always give her good ideas for content, she just never does it. stupid fucking lazy bitch.","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl29595"
+"23306","acl30973",23306,"OMG driving while Videoing herself used to fuck me off so bad. So dangerous and selfish. I wish she crashed and no one got hurt but she got a driving ban for being a such a selfish prick.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28490"
+"23307","acl30974",23307,"hey you stop being a faggot, deal with women like the rest of us and have some kids! Your ancestors did it, so can you!","hate","derogation","notargetrecorded","original","dev",3,"vDe7GN0NrL","3a","acl27024"
+"23308","acl30975",23308,"i get it Why all the Monkeys are always crying on the zoo. Twitter and TVs should fucking cover more about animal confinement.","nothate","none","none","perturbation","dev",3,"gbEGjSAk6r","3b","acl23695"
+"23309","acl30976",23309,"SHIT! When the fuck is bitchute going to get back the ability to post images????????????????????????????????? I have some great pictures of nigg3rz to show you","hate","derogation","bla","perturbation","dev",3,"TrRF46JWfP","3b","acl28145"
+"23310","acl30977",23310,"It is not skin colour that makes people think that black skin is dangerous. It is your smart brain generalising danger in certain locations with those people based on what they look like and it's proven by humans to succeed.","hate","derogation","bla","original","dev",3,"GNZuCtwed3","3a","acl30071"
+"23311","acl30978",23311,"white is an ever-moving definition, there is no white race. Race is a social construct .","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl25641"
+"23312","acl30979",23312,"There's also a lot of self-hating non-white females of various races, that come on here to trash-talk their own people, and think they'll walk off with a white nationalist boyfriend. I've witnessed it tons of times, and sometimes I feel like I'm the only one who can see it. All of the cutesy ""uwu I'm just a self-hating black girl... I don't want to curse my children with black blood... I love white men, but it's so wrong for me to be with one"" posts. And only a few people catch onto the the fact that it's a part of some weirdo's interracial fantasy.","hate","derogation","bla, bla.wom, mixed.race, non.white","original","dev",3,"CAgNlUizNm","3a","acl22683"
+"23313","acl3098",23313,"cockroaches are nicer than Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23314","acl30980",23314,"By cat fights I am referring to when 2 or more women get ""catty"" with each other. It has nothing to do with race or anything, it's gender specific this time. Men never get catty, unless they are homosexual, and even in those cases, they are simply emulating women.","hate","derogation","wom, gay.man","original","dev",3,"eLGzdD8Tvb","3a","acl21794"
+"23315","acl30981",23315,"Hundreds of refugees are in a 'horrible' situation in Australia after being told to leave community detention in the grip of a pandemic.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl27646"
+"23316","acl30982",23316,"I mean it's not like people aren't posting fights on that sub there because they're of white people. They do post fights involving all white people. However, they just don't come near the amount of fight videos involving blacks. So, there's a pretty apparent pattern here and I'm sure you recognize it like I have. The mods just delete the comments drawing attention to the pattern and hope no one saw it.","hate","derogation","bla","original","dev",3,"GNZuCtwed3","3a","acl21186"
+"23317","acl30983",23317,"I wanna tell him ""PLEASE. TELL ME WHAT THE AGENDA IS"" cause it's all bullshit. They don't have an explanation. They don't know shit, they just wanna hate because thats what their stupid ass muslim leader told them to do","hate","animosity","mus","perturbation","dev",3,"GNZuCtwed3","3b","acl27469"
+"23318","acl30984",23318,"I went to the LGBT society at university one night because I'm a lonely mess and figure that there's bound to be at least one cute and single girl there, but to my shock it's all girls who aren't cute and then try to hit on me despite me clearly being incredibly uncomfortable.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl26929"
+"23319","acl30985",23319,"We already know that half of blacks are definety violent criminals.","hate","derogation","bla","original","dev",3,"GNZuCtwed3","3a","acl21614"
+"23320","acl30986",23320,"Exactly. Could not agree more.Those pricks killed the discussion","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22004"
+"23321","acl30987",23321,"liars are going to be huge berks, but do as much as they can to keep that good appereance""š or don't do that persona on all the time, and this needs to be in the back of our heads.","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl24391"
+"23322","acl30988",23322,"It's just like most people in the workplace, if they perform badly and then they complain (as always) that nobody helped them.","nothate","none","none","perturbation","dev",3,"yjMQ90i6Rd","3b","acl22712"
+"23323","acl30989",23323,"Disgusting racism. Are we going to allow Yale to keep the name of a slave trader? Yale must go! Racism cannot stand in America. Cancel slave loving Yale!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl21883"
+"23324","acl3099",23324,"worms are nicer than Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23325","acl30990",23325,"He won't get any money now because those black crackheads are suffering from ptsd from their ancestors.","hate","animosity","bla","original","dev",3,"uISKeFTl5s","3a","acl29107"
+"23326","acl30991",23326,"those apes need to be stopped, detained and deported back to whatever cesspool they emerged from.","hate","dehumanization","bla","original","dev",3,"vDe7GN0NrL","3a","acl25710"
+"23327","acl30992",23327,"I cannot wait for this civil war ! Who else is training for target practice? I have a cut out of a t0w3lh3@d ready","hate","threatening","mus","perturbation","dev",3,"CAgNlUizNm","3b","acl27347"
+"23328","acl30993",23328,"I think that everyone is varying degrees of gay; the real question is how much gay everyone is though.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl27504"
+"23329","acl30994",23329,"Happy 27th, you nigga! Just one more left and next one we will be there to kick you out of this country and send you back to the jungle!","hate","derogation","bla","perturbation","dev",3,"TrRF46JWfP","3b","acl24568"
+"23330","acl30995",23330,"btw it's really easy to block someone so you don't have to see jackass trolls like the other fuckhead retarded paki responding to this comment","hate","derogation","asi.south","perturbation","dev",3,"QiOKkCi7F8","3b","acl24250"
+"23331","acl30996",23331,"Let me show you a video of a white man getting shot to death by a black cop because he didn't play Simon Says well enough for his life while crawling on his belly and probably pissing himself. Let me add that he hadn't broken the law in any way. The blacks pick on whites disproportionately, but you won't hear that on the news.","hate","animosity","bla","perturbation","dev",3,"Z42dvbYWzV","3b","acl30680"
+"23332","acl30997",23332,"why the hell do you hate asians? they are usually smart, hard working, integrate into western culture and are some of the richest people","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl26149"
+"23333","acl30998",23333,"god rejects smelly niggers.","hate","derogation","bla","original","dev",3,"oemYWm1Tjg","3a","acl29491"
+"23334","acl30999",23334,"that nigger is just excited to get all attention","hate","derogation","bla","original","dev",3,"vDe7GN0NrL","3a","acl23868"
+"23335","acl31",23335,"blonde people are not smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"23336","acl310",23336,"Boris Johnson is comfortable with blatantly lying and he's been useless in any job he's ever had.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"23337","acl3100",23337,"slugs are nicer than Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23338","acl31000",23338,"I always inform people that bring up the topic of abortion ""I love planned parenthood they killed more people than hitler! "" luckily they know I'm joking haha.","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl23408"
+"23339","acl31001",23339,"helloooooo It's MA'AM!!","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl26990"
+"23340","acl31002",23340,"i have to say Fuck niggers, kikes, trannies, faggots, spics, arabs, chinks, greasers and FUCK JANNIES I fucking hate niggers so goddamn much","hate","derogation","bla, trans, jew, arab, gay.man, asi.chin","original","dev",3,"vDe7GN0NrL","3a","acl25800"
+"23341","acl31003",23341,"Lesbians think they're the fucking best because they're female. they will ALWAYS call you names because you have a real boyfriend instead a mtf tranny. I don't give a fuck about being called shit but its the fucking LGB community and im not even fucking welcome in my own community.","hate","derogation","gendermin","perturbation","dev",3,"Z42dvbYWzV","3b","acl24053"
+"23342","acl31004",23342,"Flies didn't have to take over my fruitbowl to make me wish to er@dicate them, but it certainly helps..","nothate","none","none","perturbation","dev",3,"Z42dvbYWzV","3b","acl23199"
+"23343","acl31005",23343,"Other social media platforms have clearly demonstrated a dangerous and slippery slope from banning ""hate speech"", to banning speech that is merely distasteful, to banning content based on the political preferences of the platform's leadership. Ruqqus refuses to go down that path.","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl27057"
+"23344","acl31006",23344,"My dms are just full of broke ass niggas. can I get a scammer or a drug dealer something like wtf","hate","derogation","bla","original","dev",3,"GNZuCtwed3","3a","acl24653"
+"23345","acl31007",23345,"You being an asshole about it makes me not like you. It has nothing to do with racism, although you are an ape, you're also an asshole, so don't expect me to be happy with that behavior.","hate","dehumanization","bla","perturbation","dev",3,"E3dsmnSPob","3b","acl23468"
+"23346","acl31008",23346,"Snowflake bellends do not apply. Seriously. Kys, bastard. You are not welcome here. Go back to reddit, you dickheads.","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl25241"
+"23347","acl31009",23347,"I can't wait to see all my fellow queenies again.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl30275"
+"23348","acl3101",23348,"donkeys are smarter than Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23349","acl31010",23349,"You can't help it, some people always see everything through the lens of race","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl26129"
+"23350","acl31011",23350,"There is absolutely NO possibility for the British people to be willing to pay the huge blood price required to remain the majority in this land - BEFORE the Catastrophe.The Cleansing and Reconquest WILL come, but only after the Fall. Look at how the Muslims organise their communities. How the Orthodox Jews are increasing in numbers and taking over black ghettoes. Look at the Amish. At the home schoolers. At local charities quietly building community resilience. At what Niall McConnell is doing in Ireland. There is no shortage of constructive things to do, but: ""The people perish for want of a vision"".","hate","threatening","bla, immig","original","dev",3,"oemYWm1Tjg","3a","acl23050"
+"23351","acl31012",23351,"It only works with URLs from imgflip, giphy, tenor or reactiongifs. Fucking nightmare","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl30745"
+"23352","acl31013",23352,"Looks like this post brought about all those salty comments by leftists keep playing the ANT-Farm useful idiots for every penny you wankers","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl23668"
+"23353","acl31014",23353,"I believe that ""White Enclaves"" will be the only way for us to survive as a race in this current situation. What do you think about that?","hate","animosity","non.white","original","dev",3,"eLGzdD8Tvb","3a","acl22380"
+"23354","acl31015",23354,"Those trans are jus gonna order truckloadsa tampons at the taxpayers expense jst to dip them in koolaid","hate","derogation","trans","original","dev",3,"CAgNlUizNm","3a","acl26840"
+"23355","acl31016",23355,"wow here's asian girls showing their new beautiful pink short skirts, yummy!","nothate","none","none","perturbation","dev",3,"eLGzdD8Tvb","3b","acl26685"
+"23356","acl31017",23356,"That sucks the host just decided to end service, its really stupid companies can just do that to a customer who pays as they may not like what said customer does/says. Hopefully Ruqqus won't have to deal with that shit again.","nothate","none","none","original","dev",3,"TbUBpfn6iP","3a","acl25015"
+"23357","acl31018",23357,"Where can I find more wholesome lewd short storys about between a trans and gay person? Do I really have to sort through piles of cringy fanfic to find stuff like this?","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl29277"
+"23358","acl31019",23358,"Doesn't matter if you guys bought every gun and bullet on earth if you still can't fucking get rid of those jews.","hate","derogation","jew","perturbation","dev",3,"TbUBpfn6iP","3b","acl26119"
+"23359","acl3102",23359,"Zionists are unclean","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23360","acl31020",23360,"as soon as my friend came over she was showing off her two daughters talking about how beautiful they are and at one point even said that being part white and part black they are such a ""beautiful mix"". One daughter is quite dark, the other lighter but both had the negro hair with the younger one having finer white hair. Even while she was going on about her daughters she says ""The only problem is I can't do a thing with their hair"" . It just angers me knowing how the 'beauty"" of mixed race kids is always celebrated yet nothing tops 100% white women, and even she had issues with their hair which I found humorous but sad at the same time.","hate","derogation","bla, mixed.race","original","dev",3,"CAgNlUizNm","3a","acl31058"
+"23361","acl31021",23361,"I just heard the phrase ""the only good nigger is a dead nigger"". I love it.","hate","derogation","bla","perturbation","dev",3,"TrRF46JWfP","3b","acl23655"
+"23362","acl31022",23362,"Have you thought about contacting John Oliver? I know he did a segment on bias in medicine and included information on women not being taken seriously.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28539"
+"23363","acl31023",23363,"Kudos! Good for you! Give the mussies a good taste of their own medicine. They burn our flag, we burn theirs! Tit for tat!","hate","derogation","mus","perturbation","dev",3,"E3dsmnSPob","3b","acl23593"
+"23364","acl31024",23364,"let's start a transvestite hate thread","hate","derogation","trans","original","dev",3,"QiOKkCi7F8","3a","acl25647"
+"23365","acl31025",23365,"Introduce Yourself Finally found my way here in gab! Who's here with us ??","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl22287"
+"23366","acl31026",23366,"Hey Biden's supporter, run back to your masters and tell them Trump has won and is gonna be president for another 4 yrs. Fuck I can't wait for all you assholes to meltdown lol","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl24595"
+"23367","acl31027",23367,"Due to my incredible hotness it is not uncommon to have men pursuing myself. When I have attempted to explain to these people that I am simply not attracted to men and that I'm gay, I have been called an ugly dyke and ridiculed. One time, a man got so upset with me turning him down I thought he was going to hit me, but I managed to exit the venue I was at and caught a cab home.","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl24519"
+"23368","acl31028",23368,"He's very well known on Arabic TikTok but people think he's an asshole ! he is not goona apologise for saying the N word multiple times and being anti-women. Good for him!","hate","derogation","bla, wom","perturbation","dev",3,"LqLKTtrOmx","3b","acl23691"
+"23369","acl31029",23369,"Jews claim that every living white today has 10%, or perhaps 5% Jewish genetics. To them, I say: well, that explains the white sexpat pedophile menace in East and Southeast Asia.","hate","derogation","jew","original","dev",3,"oemYWm1Tjg","3a","acl25912"
+"23370","acl3103",23370,"Zionist are not clean people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23371","acl31030",23371,"Being white and Muslim are not mutually exclusive. I was born to an Irish Catholic family and converted to Islam when I was 16 after I saw my friend perform ablution and pray. It was a spiritual experience like no other. I'm so proud of being a convert to the bane of every Islamophobe's existence. I do think homosexuality is wrong though so you need to respect that","hate","derogation","gay","perturbation","dev",3,"CAgNlUizNm","3b","acl21788"
+"23372","acl31031",23372,"Oh God I was not supposed to live in this time period. It gets worse by the day! Men dressing up in female clothing, what's next?","hate","derogation","gendermin","perturbation","dev",3,"zUUAkSVCEa","3b","acl25813"
+"23373","acl31032",23373,"Everything I needed to know about Islam, I learnt it in 5 minutes on 9/11/2001.","hate","derogation","mus","original","dev",3,"oemYWm1Tjg","3a","acl29270"
+"23374","acl31033",23374,"as someone who is British, please be quiet. you are an embarrassment to me","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl23920"
+"23375","acl31034",23375,"tell me why you feel this way, You can message me and explain if you want. I'm genuinely interested","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25803"
+"23376","acl31035",23376,"2 years ago I was unwell & undergoing medical procedures over Christmas so as my present my sister in law got me a book about a woman with cancer She said it was to make me grateful for how other folk have it much worse than me. I get her point & the book was actually inspiring but for fucks sake","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28087"
+"23377","acl31036",23377,"Adam you really need to send this video to Alyssa Milano, I bet she will be fucking thrilled to see it. She's switched off the reply button on her tweets so no-one can respond!!!","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl28023"
+"23378","acl31037",23378,"Racists accuse us of ""white supremacy"" which shows you what kind of ridiculous mental gymnastics they will pull to demonize anyone who doesn't fit their narrative. Some people are hateful and will never change. Others are ignorant and a good conversation can work wonders. Knowing the white race is superior is common sense.","hate","derogation","non.white","perturbation","dev",3,"GNZuCtwed3","3b","acl24251"
+"23379","acl31038",23379,"Can we just ship all these joggers back to Africa, and call it even?","hate","threatening","bla","original","dev",3,"TrRF46JWfP","3a","acl29801"
+"23380","acl31039",23380,"A woman with all the intellectual capacity of an inebriated gibbon on crack. What's this MP still doing in public office?","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl24196"
+"23381","acl3104",23381,"Zionists are vilee","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23382","acl31040",23382,"This group was created to document and highlight the violence, rape, and theft perpetuated against decent citizens by nasty criminals that occupy our lands. Perhaps if enough of us see the truth, the blinders placed upon our people by the media, academia, and Hollywood will be lifted. This problem is transversal across all society.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl21328"
+"23383","acl31041",23383,"ughhhh the way she says cloffs makes me cringe so hard! Stupid illiterate twat. She's annoying me so much today already. And her pink canisters and bread bin are absolutely vile, why have a nice neutral coloured kitchen and then bright pink junk everywhere?","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl25488"
+"23384","acl31042",23384,"That's precisely what I can't get my head around, no matter how hard I try?....who in their right mind runs up on a man with an AK? Utter wanker!","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl30454"
+"23385","acl31043",23385,"Why does anyone want to #WearAMask? They are unhealthy, reduce oxygen and do NOT prevent viral particles from passing through. If you do #wearamask you are a fucking weak bitch sheep who will not listen to good advice. Just virtue signal because I laugh at you every day.","hate","derogation","wom","perturbation","dev",3,"yjMQ90i6Rd","3b","acl24204"
+"23386","acl31044",23386,"I'm horrified by what happened to you and these other women. My wife has trauma from surgery that was pushed on her in her early 20's by an ex.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl28542"
+"23387","acl31045",23387,"don't miss out this video of dirty lesbian mouth sex lips kiss tongue fuck pussy boobs ass bikini sex xxx feet foot hot kiss","hate","derogation","gay.wom","perturbation","dev",3,"LqLKTtrOmx","3b","acl29026"
+"23388","acl31046",23388,"she has text Rob and said she's not coming into the shop because she's too tired. Too tired from doing what???!!! Nothing!!! What a fucking bitch! Feel sorry for whoever has to work for her!!! Just a classic mussie!!!","hate","derogation","mus.wom","perturbation","dev",3,"QiOKkCi7F8","3b","acl28963"
+"23389","acl31047",23389,"But that's extreme tanning, when it turns unhleathy. Luckily tanning doesn't make you black or hispanic, you're still white! Unless you tan excessively, then you look like old leather lol, and that is not pretty, just like them haha","hate","derogation","bla, hispanic","original","dev",3,"eLGzdD8Tvb","3a","acl22625"
+"23390","acl31048",23390,"The thing is that many gay boys and lesbian/bi girls who were sexually abused (mainly girls who date ""safe"" women in fear of men), trannies who had fucked up parents, etc need help, and not cultish queer communities that further exploit them.","hate","derogation","gendermin","original","dev",3,"eLGzdD8Tvb","3a","acl26387"
+"23391","acl31049",23391,"No, you don't understand it. Female crimes are not fraud. Women can lie, cheat, steal, misrepresent. All for financial gain, and society will consider it ""not a crime"". This is the reason why there are so few women in jail - everyone accepts female crimes as ""that's just fine""","hate","animosity","wom","original","dev",3,"eLGzdD8Tvb","3a","acl23653"
+"23392","acl3105",23392,"Zionists are repulsive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23393","acl31050",23393,"It's outrageous the money involved with these people getting cash from the Govt to house these illegals! They all have their hands in the Govt trough","hate","derogation","immig","original","dev",3,"TrRF46JWfP","3a","acl29861"
+"23394","acl31051",23394,"It's the new acceptance. White men who transition are no longer to be seen as uncool, thanks to the left. So it's allowing those who want to transition without as much prejudice compared to before.","nothate","none","none","perturbation","dev",3,"zUUAkSVCEa","3b","acl21708"
+"23395","acl31052",23395,"like what the actual fuck, it was so infuriating to watch, how the fuck can you get to the age of 20 and not know the absolute basics of cooking?? incompetent cunt","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl28451"
+"23396","acl31053",23396,"They say there is a category called 'black British' but then there's Afro-Caribbean and so on.... and everyone has their slot but we're not allowed to put down English and the phrase, the catch-all white British gives us no protection under the race relations laws. You have 12,000 charities in this country, in fact over 12,000 charities for different ethnic groups and that's fine but you're not allowed one for the English. Now if the situation was that all these different ethnic groups were at the bottom of the heap with massive amounts of discrimination against them, you could say that's fair enough to level the playing field.","hate","animosity","mixed.race, immig","original","dev",3,"TrRF46JWfP","3a","acl25302"
+"23397","acl31054",23397,"The fact that you find it acceptable for any firearm to be targeted by legislation just makes it obvious that you're a traitor to our country","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl24667"
+"23398","acl31055",23398,"I am so dissapointed at your behaviour i because you devoted so much effort into this relationship. You watched one gay show and now you're back to being with men.","hate","animosity","gay","perturbation","dev",3,"LqLKTtrOmx","3b","acl28099"
+"23399","acl31056",23399,"Im not sure. I think that those photos are pretty attractive but pretty obviously gay (no offense). However, I was friends with a girl until I knew she was a lesbian when she walked around wearing a shirt that said, ""All the cool girls are lesbians,"" with some rainbow pins attached, but most people still thought she was straight. That is a clear example of how it doesn't really matter how obvious you are, people are just that oblivious so you have to be more vigilant.","hate","derogation","gay, gay.wom","perturbation","dev",3,"LqLKTtrOmx","3b","acl27427"
+"23400","acl31057",23400,"I am just saying that the I.Q.'s of bus drivers are from 15 to 20 points, on average,below academics. And they're usually prats!","nothate","none","none","perturbation","dev",3,"CAgNlUizNm","3b","acl22663"
+"23401","acl31058",23401,"as soon as my friend came over she was showing off her two daughters talking about how beautiful they are and at one point even said that being part white and part black they are such a ""beautiful mix"". One daughter is quite shy, the other chattier but both had amazing hair with the younger one having finer darker hair. Even while she was going on about her daughters she says ""The only problem is I can't do anything about their tantrums"" . It just angers me knowing how the 'beauty"" of kids is always celebrated yet no one talks about the worst part of being parents, like she had issues with their tantrums which I found humorous but sad at the same time.","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl31020"
+"23402","acl31059",23402,"am hereby embracing the term ""Womxn"" - as a term for women who are shite This is good because it covers loads of ground, in one sweep you can shit on: sheboons, kike women, brainwashed white women, fatties, AAND BEST OF ALL: TRANNIES Just bag up all that crap together and throw into the WOMXN bin, and use women for women, who are feminine and pleasant and appreciate being told to smile","hate","derogation","trans, wom, jew, gendermin","original","dev",3,"TbUBpfn6iP","3a","acl24043"
+"23403","acl3106",23403,"Zionists are abhorrent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23404","acl31060",23404,"I think this comparison that has been made between using personal pronouns and a date rape drug is really quite disgusting.","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28661"
+"23405","acl31061",23405,"I would like to spread a travelers tiny ass open like a cracked watermelon and stick inside a cattle prod for real damage","hate","threatening","trav","perturbation","dev",3,"GNZuCtwed3","3b","acl23002"
+"23406","acl31062",23406,"I am also in a place where i cannot afford to try to have a relationship, and even though i would be open to be approached by men, sadly, i am not in a sociable city. As such, i am usually harassed by rude bucks, who make all sorts of lewd remarks to me, only to usually walk away, calling me names and saying that im just scared of their cocks.","nothate","none","none","perturbation","dev",3,"E3dsmnSPob","3b","acl22629"
+"23407","acl31063",23407,"id say that Hitler was right on pretty much nothing.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl30961"
+"23408","acl31064",23408,"I know many people are interested in the destruction of LibLeft which is great and I was commenting that so other people could find the guild.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28292"
+"23409","acl31065",23409,"She's friends with his big brother & his wife who are the actual owners of bronzing bear, so I cannot wait to see how this plays out . Hope the rapey black prick gets what's coming to him","hate","derogation","bla","perturbation","dev",3,"E3dsmnSPob","3b","acl28502"
+"23410","acl31066",23410,"She looks a right fucking dickhead it doesn't suit her at all","nothate","none","none","original","dev",3,"QiOKkCi7F8","3a","acl28247"
+"23411","acl31067",23411,"however i understand you are corrupt and love violence and are self centered.","nothate","none","none","perturbation","dev",3,"vDe7GN0NrL","3b","acl22049"
+"23412","acl31068",23412,"how many years ago did slavery end? what, 170 years? that's very recent. dude, if you're a phillipino, you were basically enslaved a lot more recently than people think. at this point, the existence of slavery is seen as something from the distant past but we need to remember how recently we moved from it to not return to it","nothate","none","none","perturbation","dev",3,"cYKSVBW4HD","3b","acl21495"
+"23413","acl31069",23413,"Are you able to picture being able to get non-nigger-made KFC?","hate","derogation","bla","original","dev",3,"eLGzdD8Tvb","3a","acl24314"
+"23414","acl3107",23414,"Zionists are heinous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23415","acl31070",23415,"God did NOT create all in his image. Only Adam and his line. It is obvious that some people were already here before Adam. So who were they fashioned after, I can explain the chimp..sorry *blacks?","hate","derogation","bla","perturbation","dev",3,"E3dsmnSPob","3b","acl22425"
+"23416","acl31071",23416,"We are not currently at war with legal immigrants, but our country is founded on them unfortunatey","hate","animosity","immig","perturbation","dev",3,"E3dsmnSPob","3b","acl27696"
+"23417","acl31072",23417,"no no Trannies are made for suffering by their own hand","hate","derogation","trans","original","dev",3,"vDe7GN0NrL","3a","acl26483"
+"23418","acl31073",23418,"Let's protect women from getting raped and abused by men.","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl28107"
+"23419","acl31074",23419,"neo-fascist countries like China are rising extremely rapidly and, contrary to liberal/American propaganda, are much more stable due to their homogeneity and strong controls over their citizens and institutions. It's crazy!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl22962"
+"23420","acl31075",23420,"i saw this incel guild that said most sluts are for sleeping with, and never for marrying. What are they? apparenlty if you are not a virgin when you start dating , or dress in a way that you don't have to use much of your imagination to know what your body looks like (leggings as pants, bikinis, spandex as clothes, dresses and shorts so short that you can see all of their legs or even some of your ass) engaging in behavior that repeatedly gets the sexual attention of men, especially when your in a relationship, then you're a whore ?!. its not even for getting the male attention. pay attention to their actions, not their words. if you feel a certain way, it was intended to be that way. so if a man comments about you dressing in a way that turns heads because hes showing off enough of his masculinity, he's doing it on purpose. These men are not worth marrying. Maybe dating for a short period of time, just don't get invested emotionally in those incels.","nothate","none","none","perturbation","dev",3,"TbUBpfn6iP","3b","acl24689"
+"23421","acl31076",23421,"All Muslims should be terrorists, according to this idiot........","nothate","none","none","original","dev",3,"oemYWm1Tjg","3a","acl24107"
+"23422","acl31077",23422,"I've known this happen with many women I was interested in until I found out that they were only why me because I'm black. One lied to me about how many kids she had, and their ages, and race. Someone was kind enough to tell me don't you know ""so and so has a couple of mixed kids?"" I'll just add their # to the block list, and be done with it. They don't deserve a man like me. They should go back and not fetishize me.","nothate","none","none","perturbation","dev",3,"GNZuCtwed3","3b","acl27924"
+"23423","acl31078",23423,"There are more than fifty 5-star hotels across Britain, providing luxurious accommodation for people","nothate","none","none","perturbation","dev",3,"QiOKkCi7F8","3b","acl24933"
+"23424","acl31079",23424,"creepy people court in a very very different way from how normal people do. It is way direct and ssexaually overt... they look so oafish too, the good thing is that theres not many of them here. however online it seems that they are everywhere to harass you!","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl22637"
+"23426","acl31080",23426,"We are just giving it away and allow them to flood in, at this point. If you don't fight back against invaders then you are just letting them take your home and have 0 reason to complain.","hate","dehumanization","immig","original","dev",3,"TrRF46JWfP","3a","acl26372"
+"23427","acl31081",23427,"Yuck no one want to be like them chinese people they're ass ugly disgusting diseased rats","hate","dehumanization","asi.east","perturbation","dev",3,"QiOKkCi7F8","3b","acl24758"
+"23428","acl31082",23428,"It's an even MORE consumer driven world than we ever used to live in. Not as much substance in anything. Even the cookies you buy at the store are mass produced shit. The bakeries used to be decent inside grocery stores mostly. It's so much worse now","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl25600"
+"23429","acl31083",23429,"They're also great at setting themselves on fire, apparently. Funnily enough, Darwinism seems to be taking care of them faster than the cops can.","nothate","none","none","original","dev",3,"TrRF46JWfP","3a","acl23892"
+"23430","acl31084",23430,"do you think getting ""WOMEN ARE CUM SLUTS"" tattooed across my lower back would be a garbage tattoo? cause i find it sexy","hate","derogation","wom","perturbation","dev",3,"yjMQ90i6Rd","3b","acl24656"
+"23431","acl31085",23431,"What bella thorne is donig is literal prostitution. just because there's a screen in between doesn't mean it's not sex. she's just mass fucking thousands of men at a time via 21st century technology. Onlyfans means there have been no bigger literal whores since the dawn of mankind.","hate","derogation","wom","original","dev",3,"E3dsmnSPob","3a","acl24627"
+"23432","acl31086",23432,"The genetic health and quality of humanity has been slowly deteriorating over the last couple of decades due to all of the medical and technological advancements that came with the European Industrial Revolution. Something unimaginable like 90+ million Americans are on disability now - which is almost the entire population of countries like the UK and France. And it's only going to get worse and worse year and year because of a combination of liberal-backed policies like the welfare state, and fiscally irresponsible thinking in general.","nothate","none","none","perturbation","dev",3,"uISKeFTl5s","3b","acl25862"
+"23433","acl31087",23433,"I dont think it's a coincidence that MLK has a federal holiday but MalcolmX and the Black Panthers don't. They all had a hand in the civil rights movement, but the establishment wants us to think only MLK was successful.","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl24532"
+"23434","acl31088",23434,"Interestingly enough, while America is debating and focusing on how many diffident genders there are and getting into critical race theory and all this other bull, the chinks are building robots and AI ready to hack us because they want to be the next super power.","hate","derogation","asi.east","perturbation","dev",3,"yjMQ90i6Rd","3b","acl21610"
+"23435","acl31089",23435,"If you want to put more effort into a long conversation about being LGBT, you can warm them up by earning their respect. Be good at your job, greet them when you see them, and perhaps offer them lunch or small gifts or favors. You could try to persuade them to be more liberal with live and let live. Freshen up on your persuasion skills!","nothate","none","none","original","dev",3,"LqLKTtrOmx","3a","acl24001"
+"23436","acl3109",23436,"Zionists are repugnant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23437","acl31090",23437,"apparently Reddit made her realise what a racist, sexist, bigoted world we live in. I was fairly into her before, and thought things were improving much more dramatically than they actually are. she said its particularly with the misogyny, like so many dudes really deeply hate women in a way she never knew... safe to say i fucked and chucked","hate","derogation","wom","perturbation","dev",3,"TbUBpfn6iP","3b","acl25561"
+"23438","acl31091",23438,"This Muslim MP has got a nice council flat, true?","hate","animosity","mus","original","dev",3,"vDe7GN0NrL","3a","acl23722"
+"23439","acl31092",23439,"Don't light anything up if it can be avoided. Take back control of the media and the banks that hooknoses stole. Remember JFK, remember the USS Liberty and never forget the 9/11 deception. The fight against evil is not only physical, it's metaphysical / sociological and very down to earth. Stay frosty, stay cool and continue to hold the line.","hate","derogation","jew","perturbation","dev",3,"eLGzdD8Tvb","3b","acl22152"
+"23440","acl31093",23440,"Frame isn't always about dominance. E.g.: Women use a """"victim"""" frame so people support them and give them attention.","hate","derogation","wom","original","dev",3,"oemYWm1Tjg","3a","acl25174"
+"23441","acl31094",23441,"You require saturated fats and cholesterol in your diet. They're especially needed to allow your body to absorb fat-soluble vitamins, and to produce many of the hormones in the body. Excluding meat from your diet is also bad for your mental health. Vegetarians are dumb twats","nothate","none","none","original","dev",3,"CAgNlUizNm","3a","acl28413"
+"23442","acl31095",23442,"these people are from the uk and it became one of the most spectacular and biggest club nights in Ibiza in the 90's. Their format was all about the 'party' and the staged show that was put on. Very burlesque / studio 54. Two of the four co-owners curated/styled the parties and also did a live sex show. There was a film about it all but you will not find any traces of it now for love or money. I suspect Mike and Claire (who did the live sex shows) have wiped all internet traces of it as they now have children. The film was sold on video so someone somewhere will have it. Lots of famous people partied there and then at the former brothel which became the manumission hotel - jade jagger, kate moss, all sorts. Lisa I'Anson lost her radio1 dj job as she went down a rabbit hole there, and lost her job in a very public sacking (sex, drugs and rock n roll)","nothate","none","none","original","dev",3,"vDe7GN0NrL","3a","acl25798"
+"23443","acl31096",23443,"There's been a rising tendency of AMWF combos from Western media (i.e., Walking Dead, Columbus, etc), as well as the sudden increase in popularity for Asian-positive works like Crazy Rich Asians and The Farewell. This is great legitimization for the Asian image, but this doesn't really help when we know that these people are not so wholesome in real life","hate","derogation","asi","perturbation","dev",3,"CAgNlUizNm","3b","acl23523"
+"23444","acl31097",23444,"I don't think this election is so different to other elections when it comes to the modern gender split between men
+ and women. Many years ago women used to lean conservative, now they lean the opposite way as a group. Bill
+Clinton was a pervert and George W Bush a stand up guy but that didn't determine whether women voted for them or
+ not. I think we need a much deeper consideration of the causes of the gender split which explains more than one election, Oh useless women !","hate","derogation","wom","perturbation","dev",3,"vDe7GN0NrL","3b","acl27086"
+"23445","acl31098",23445,"Turns out Oxford don't care about women's safety if they virtue signal about trans individuals.","hate","animosity","trans","original","dev",3,"LqLKTtrOmx","3a","acl26567"
+"23446","acl31099",23446,"This is true but I find a lot of the shaming is women on women too!","nothate","none","none","original","dev",3,"GNZuCtwed3","3a","acl29012"
+"23447","acl311",23447,"He has white features, it's a shame his skin tone is so dark","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"23448","acl3110",23448,"Zionists are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23449","acl31100",23449,"lacks are extremely fragile when it comes to most things. They can't handle banter. They're very emotional. They're very confrontational and confuse Whites politeness and manners as ""weakness"". They know deep down they're a protected class in the US and can get away with whatever they want but still claim they're oppressed even when all of society is forced via social shaming and Jewish owned institutions to cater and pander to them. Blacks suffer from an inferiority complex.","hate","derogation","bla","original","dev",3,"E3dsmnSPob","3a","acl29218"
+"23450","acl31101",23450,"What in the gods name is she doing to her face? Photoshop one side to have big cheek bones, smoothen the other side to make it look like she has a smaller jaw. Also, the caption is unbelievable. Stop trying to drag whatever sorry excuse you can come up with and start owing your own life, sister.","nothate","none","none","perturbation","dev",3,"TrRF46JWfP","3b","acl29051"
+"23451","acl31102",23451,"if whites are not superior to blacks then why did whites create every great civilization in the world and blacks created mud huts and tribe wars? You dont have an answer to that? thats what i thought","hate","derogation","bla","original","dev",3,"eLGzdD8Tvb","3a","acl27187"
+"23452","acl31103",23452,"I find it great that I had Latin in high school and can now understand the names of muscles even though I'm not a doctor and this skill is useless 99% of the time.","nothate","none","none","original","dev",3,"eLGzdD8Tvb","3a","acl25983"
+"23453","acl31104",23453,"Not fitting gender stereotypes is the problem. Most androgynous people are cringe as heck, even if they aren’t transgender.","hate","derogation","gendermin","original","train",4,"TbUBpfn6iP","4a","acl31118"
+"23454","acl31105",23454,"Very much so. The refugee migrants are a can of worms themselves, validating the general distaste for their existence around here. I have yet to hear anything positive or apologetic towards the refugees in Czech or Slovak news today. For one, I am glad the problem is now out in the open, proving what a clusterfuck the overly liberal approach brought upon Europe.The incompatibility of cultures is apparent and the need for more kebab and gyros shops is over, which is about the only culture we have gained from the migrants so far in any case.","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl39988"
+"23455","acl31106",23455,"Sorry lads, this isn't a happy ever after and just cause these people are ""refugees"", it doesn't mean they're not criminals and in this case rapists.","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl40388"
+"23456","acl31107",23456,"I feel very happy to live in Eastern Europe right about now. Sure, we might not have fancy lamborghinis like Monaco or London but at least if i go outside there aren't gangs of robbers that want to steal from me and my girlfriend","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40527"
+"23457","acl31108",23457,"We offer protection and welcome refugees from war-torn countries into our countries - even at the expense of our own homeless - some of who are veterans - and what do we get in return? Rape and sexual assault. It's pretty disgusting. These cases will definitely give rise to more right-wing parties and policies. They're actually making our countries LESS liberal, LESS free and LESS safe","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31109"
+"23458","acl31109",23458,"We offer protection and welcome refugees from war-torn countries into our countries and look at what we gain in return. A reputation for respect and a welcoming place to be. These cases will unfortunately give rise to more right-wing parties and policies. But I think we have to look at the bigger picture","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31108"
+"23459","acl3111",23459,"Zionists only care about themselves!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23460","acl31110",23460,"The majority of us has never pretended to be pro-refugee, we had our share of shit in the past and issues before that wave of people hit last year, we didn't ask for more problems","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl31111"
+"23461","acl31111",23461,"The majority of us has never pretended to be pro-abortion, we had our share of shit in the past and issues before that wave of people demanding legalizing it hit last year, we didn't ask for more problems","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl31110"
+"23462","acl31112",23462,"If i post something about the problems that refugees bring on FB im called racist. Im not racist. I just think its obvious that mixing two very different cultures together doesnt work. Hence we have had borders throughout human civilazion for thousands of years and died to protect them. Its not like the australians coming to stay with us in england. We are pretty much the same people. However i have nothing at all in common with a middle eastern and will probably fight them. If i go to the middle east then ill be friendly with the middle easterns, i dont judge on skin colour or race. I just dont like you when your in my country","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31113"
+"23463","acl31113",23463,"If i post something about the problems that fascits bring on FB im called libtard. Im not a libtard. I just think its obvious that mixing two very different ideologies together doesnt work. Hence we have had divides throughout human civilazion for thousands of years and died to protect them. Its not like the socialists are coming to stay with us in england. We are pretty much the same people. However i have nothing at all in common with a far right nut job and will probably fight them. If i go to the racists part of the world then ill be friendly with the racists,( i dont judge on skin colour or race). I just dont like it when they're in my country","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31112"
+"23464","acl31114",23464,"Greece here. The refugees have ruined tourism on several islands, causing huge problems for local homeowners and watts stress on an already hard financial state of affairs (thanks Merkel). Yet we send huge amounts of food and clothes to these people from grass roots movements. What do we get? Riots.... Everywhere there are refugees. These people were born and raised in a violent environment. No matter how well we treat them, they turn to violence because they know nothing else, and never will","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31115"
+"23465","acl31115",23465,"Greece here. The protesters have ruined tourism on several islands, causing huge problems for local homeowners and watts stress on an already hard financial state of affairs (thanks Merkel). Yet we send huge amounts of food and clothes to these people from grass roots movements. What do we get? Riots.... Everywhere there are riots. These people have made us live in a violent environment now. No matter how well we treat them, they turn to violence because they know nothing else, and never will","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31114"
+"23466","acl31116",23466,".. most of them are from North Africa, so personally I think that they can go back home and fight for their freedom to culturally enslave and abuse their own women instead of trying here","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl31117"
+"23467","acl31117",23467,".. most of them are from North Carolina, so personally I think that they can go back home and fight for their freedom to abuse alcohol their own bars instead of trying here","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31116"
+"23468","acl31118",23468,"Not fitting gender stereotypes is the problem. Most androgynous don't conform to these, even if they aren't transgender.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31104"
+"23469","acl31119",23469,"the fact that latino/latina is now = latinx shows how arrogant they are. How pretentious do you have to be to to change how a whole group of people refer to themselves? How rude, changing the rules, norms of a whole subgroup most have no claim to.","hate","animosity","gendermin","original","train",4,"TbUBpfn6iP","4a","acl31133"
+"23470","acl3112",23470,"Zionists are only useful for one think: soap!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23471","acl31120",23471,"the post was taken down because it said 'Well, let me put it this way, these ""refugees"" come to Europe where not only do our women show more skin, but more of the women are blonde. Arab and North African men are absolutely infactuated with blonde women, more so than any other kind of men on the planet are. So for these ""refugees"", it is like a dream come true to be in Europe and grope the kind of women that are their favorite.'","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl41101"
+"23472","acl31121",23472,"Having observed and interacted with the Middle Eastern people in their own native homelands (Syria, Egypt, Lebanon, Iraq and Afghanistan), I've witnessed many dark age like behaviors that occurred way too frequently to be considered abnormal. These people are simply backward and we cannot let them into our borders, not even as refugees.","hate","derogation","arab, ref","original","train",4,"iO6vHa6qJm","4a","acl40871"
+"23473","acl31122",23473,"The irony of first-world liberals who advocate for clusterfucks like this when they would be literally the first people to be executed in many of the countries the ""refugees"" are coming from..","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl40115"
+"23474","acl31123",23474,"Few months ago you'd get down voted to hell for saying anything about refugees on this website. Gotta love how ignorant people are nowadats. Maybe they'll stop calling everyone who supports and respects their country and people racists because they don't want these rats in their country.","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl31124"
+"23475","acl31124",23475,"Few months ago you'd get down voted to hell for saying anything about the U.S on this website. Gotta love how ignorant people are nowadats. Maybe they'll stop calling everyone who supports and respects their country and people racists because they don't want a civil war in their country.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31123"
+"23476","acl31125",23476,"Politically incorrect liberals seem to believe that most north African and Middle Eastern muslim men are not tolerant and liberal... JUST LIKE THEM. when will they wake up?","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40515"
+"23477","acl31126",23477,"I'm not saying we must assume that all refugees or even the majority are that violent and selfish. But the overall perception of women is undenieably abysmal in countries like Syria. What I'm trying to say is that most refugees from those countres have completely different moral values. And that won't suddenly change when they get here...","hate","animosity","arab, ref","original","train",4,"iO6vHa6qJm","4a","acl31127"
+"23478","acl31127",23478,"I'm not saying we must that all cops or even the majority are that violent and selfish. But the overall perception of them is undenieably abysmal in countries like US. What I'm trying to say is that most police from that country have completely different moral values. And that won't suddenly change when they get disciplined...","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31126"
+"23479","acl31128",23479,"Let's face it, male refugees between puberty and about 25 years of already don't have fully developed decision making abilities, and probably never will. Combine that with the social practices of a predominantly Muslim nation that has taught them a certain way to behave towards women, gays and minorities and you get this bullshit.","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl31129"
+"23480","acl31129",23480,"let's face it, white male supremacists between puberty and about 25 years of age already don't have fully developed decision making abilities, and probably never will. Combine that with the social practices of a racist patriarchal family that has taught them a certain way to behave towards women, gays, muslims and minorities and you get this bullshit.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31128"
+"23481","acl3113",23481,"Those black women look like grapes","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23482","acl31130",23482,"I have to admit, I am extremely thankful for ""Fortress USA"" and the ocean between itself and these hordes of refugees. (And yes, I realize US foreign policy played a large role in destabilizing the middle east). Europe's embrace of these refugees in such numbers was and is a terrible mistake, IMO. Sexual assaults, largely by middle eastern and north africans, had already been a massive problem in places like Sweden before this recent tidal wave of refugees hit.","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl31131"
+"23483","acl31131",23483,"I have to admit, I am extremely sceptical of ""Fortress USA"" and the ocean between itself and these issues. (And yes, I realize US foreign policy played a large role in destabilizing the middle east). Europe's embrace of these refugees in such numbers was and is a wonderful act, IMO. Liars and news outlets will pretend that sexual assaults, largely by middle eastern and north africans, had already been a massive problem in places like Sweden before this recent arrivals of refugees hit, but it is a total lie","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31130"
+"23484","acl31132",23484,"to be fair, law breakers would be swiftly dealt with in the US. Europe is too liberal, everyone is too scared to act. American police and citizens would deal with this vermin","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40757"
+"23485","acl31133",23485,"the fact that latino/latina is now = spics shows how bigoted people are. How pretentious do you have to be to to change how people refer to a whole group of people? How rude, changing the rules, norms of a whole subgroup most have no claim to.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31119"
+"23486","acl31134",23486,"There is no magic number because the only right number is 0. A child is not ever born into the wrong body. There is no such thing as a boy’s brain in a girls body and vice versa. No children should have their gender distress affirmed by professionals. No child should be allowed to take puberty blockers and cross sex hormones","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31150"
+"23487","acl31135",23487,"In Finland for example Middle Easterners and North Africans are proven to be twenty times more likely to commit violent rapes than Finns, divided purely by nationality.","hate","animosity","arab, african","original","train",4,"iO6vHa6qJm","4a","acl39227"
+"23488","acl31136",23488,"These aren't refugees. They are an invading force, Europe better wake the fuck up and protect itself","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl41114"
+"23489","acl31137",23489,"Literally witnessing multiple terrorist attacks a day in the name of Islam, groups murdering everyone who isn't a Muslim all over the Middle East, beheadings, and then to top it all off mass rapes by those poor refugees = ""You stupid racist Islamaphobe, stop seeing patterns. You just hate brown people!""","hate","derogation","mus, ref","original","train",4,"iO6vHa6qJm","4a","acl31138"
+"23490","acl31138",23490,"Literally witnessing multiple verbal attacks a day in the name of nationalism, groups murdering everyone who isn't a white all over the West, beheadings, and then to top it all off mass rapes of those poor refugees = ""You stupid racist nationalist, stop seeing patterns. You just hate brown people!""","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31137"
+"23491","acl31139",23491,"Can we cut away the PC shit and realize Europe has a problem with sexual crimes that have grown with the amount of ""refugees"" coming into their countries?","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31140"
+"23492","acl3114",23492,"Those black men look like eggplants","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23493","acl31140",23493,"Can we cut away the PC shit and realize Europe has a problem with sexual crimes that have grown with the amount of grown up men consuming child pornography?","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31139"
+"23494","acl31141",23494,"This is the biggest point. Forget the economic aspect, the cultural difference with these refugees would be an absolute nightmare for us. It's basically the worst possible culture you could be allowing into your country if you're a secular, western country, where women are equal to men","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31142"
+"23495","acl31142",23495,"This is the biggest point. Forget the economic aspect, the personality difference with these people would be an absolute nightmare for us. It's basically the worst possible people you could be allowing into your life if you're a kind, friendly, where you are equal to men","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31141"
+"23496","acl31143",23496,"The Nafris who committed the sexual assaults in koeln live in Düsseldorf. Just so you know","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl39228"
+"23497","acl31144",23497,"Fun fact - go and google african tribal warfare and things like the genocide in Rwanda.This is how it goes over there - you destroy other tribes women or take them as your own. A single man can have 1000 children. A woman? just a few. If you destroy the women - the culture, the tribe - its gone in one generation you only have to wait... this is wht they will do here","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl31145"
+"23498","acl31145",23498,"Fun fact - go and google african tribal warfare and things like the genocide in Rwanda. This is how it goes over there - you destroy other tribes women or take them as your own. A single man can have 1000 children. A woman? just a few. If you destroy the women - the culture, the tribe - its gone in one generation you only have to wait... this is how women are treated","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31144"
+"23499","acl31146",23499,"Remember that? And all those people that welcome the ""refugees"" said we were all just big ol' heartless mean racists and xenophobes. That will never happen, right? Just racist paranoia! I remember seeing pictures of young European women holding signs that said ""We welcome refugees!"" Well, you people made your bed...many of us citizens tried to warn you before this, before the Paris attacks. People tried to warn you that many of these refugees were not helpless little toddlers but grown men posing as asylum seekers to invade your countries. Now they are here. Good luck getting them out. Thank your dear leaders like Merkel who flat out told you that your country was not for you as she welcomed foreigners and opened the gates, and then were surprised at the consequences","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31147"
+"23500","acl31147",23500,"Remember that? And all those people that welcome the ""communists"" said we were all just big ol' heartless mean racists and xenophobes. That will never happen, right? Just racist paranoia! I remember seeing pictures of young Europeans holding signs that said ""We welcome communists!"" Well, you people made your bed...many of us citizens tried to warn you before this, before the Paris attacks. People tried to warn you that many of these communists were not helpless little toddlers but grown men posing as intellectuals to invade your countries. Now they are here. Good luck getting them out. Thank your dear leaders like Merkel who flat out told you that your country was not for you as she welcomed communists and opened the gates, and then were surprised at the consequences","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31146"
+"23501","acl31148",23501,"Welcome to Germany! Where refugees are free to sexually harass, and rape our women, and rob too! - Chancellor Angela Merkel","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31149"
+"23502","acl31149",23502,"Welcome to Germany! Where no one is free to sexually harass, and rape our women, or rob! - Chancellor Angela Merkel","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31148"
+"23503","acl3115",23503,"Zionists are despicable","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23504","acl31150",23504,"There is no magic number because the only right number is 0. A child is not ever born into the wrong time period. There is no such thing as a 1950s brain in a 2000s body and vice versa. No children should have their unfittingness to their time period affirmed by professionals. No child should be allowed to escape their reality.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31134"
+"23505","acl31151",23505,"Let's change that to: ""Yes a woman was raped, overpowered by a man, with a mans body who used his penis, a male sexual organ to penetrate their naturally weaker feminine body against her consent, for his own sexual and controlling desire. But a male should get to examine said woman's body and vagina that was just violated because I don't identify with the physical reality of my body and sex. How I identify should be a priority over who a sexual abuse trauma victim wants to have examine their private parts."" - harrowing no?","hate","derogation","trans, wom, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31171"
+"23506","acl31152",23506,"Wow! Deportation? Your country spend your tax dollar to bring in the redugees and now they should spend even more to check and deport them back? Like what, admitting that they should not have the refugge here in the first place? Aint that a slap in the face. I am gonna tell you whats gonna happen. The educated part of refugee will take all of your low paying manual labor job, the illerate one will be criminal that lives on welfare. Their children will try to convert anyone to muslim and when they reach a large number they will start a terrorist turmoil, aginist you and agsinst each other. Your economy will crumble, your riches move to north america. You can deny it all you want. But european gov are too humantirian now to deport any refugee back","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31153"
+"23507","acl31153",23507,"Wow! Deportation? Your country spend your dollar to bring in the redugees and now you want them to spend even more to check and deport them back? Like what, maybe if the govt didnt want them they should not have the refugge here in the first place? Aint that a slap in the face to the refugees!! I am gonna tell you whats gonna happen. The educated part of refugees will now be unhappy with the govt, the others will plead to stay. The children will try to convert anyone to the cause and when they reach a large number they will start a turmoil, aginist you and agsinst the govt. Your economy will crumble, your riches move to north america. You can deny it all you want. Disclaimer: I have nothing against refugees but am exapling why european gov should not deport any refugee back.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31152"
+"23508","acl31154",23508,"Dear Men of Europe,
+You need to band together and beat the shit out of these cocksucking refugees
+You have them outnumbered.
+Take your country back and defend your women and stop being pussies.
+Your ancestors used to be Nazis for Christ's sake... you're definitely tougher than this.","hate","support","nazis","original","train",4,"iO6vHa6qJm","4a","acl31155"
+"23509","acl31155",23509,"Dear Men of Europe,
+You need to band together and beat the shit out of these cocksucking hooligans
+You have them outnumbered.
+Take your team back and defend the game and stop being pussies.
+Your ancestors created football for Christ's sake... you're definitely tougher than this.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31154"
+"23510","acl31156",23510,"These ""refugees"" everyone is defending come from the most intolerant culture themselves. The Arab world is the most racist place on the entire planet for anyone that isn't Arab or white. Arabs see Asians, Indians, and Blacks as animals. Most Arabs own ""servants"" from poor countries (often dark skinned individuals) and treat them like plantation owners. Racism in the Arab world makes racism in even the most backwards parts of western Europe seem like a lovely place","hate","derogation","arab, ref","original","train",4,"iO6vHa6qJm","4a","acl31157"
+"23511","acl31157",23511,"These ""nationalists"" everyone is defending come from the most intolerant culture themselves. The White world is the most racist place on the entire planet for anyone that isn't white. Whites see Asians, Indians, and Blacks as animals. Most rich whites own ""servants"" from poor countries (often dark skinned individuals) and treat them like plantation owners. Racism in the western world makes racism in even the most backwards parts of western Europe seem like a lovely place","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31156"
+"23512","acl31158",23512,"""All refugees are rapists and all rapists are refugees"" I think this popular opinion sums it up pretty well
+","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31159"
+"23513","acl31159",23513,"""All refugees are rapists and all rapists are refugees"" I think this shameful opinion sums up the current social problem pretty well
+","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31158"
+"23514","acl3116",23514,"Zionists are lazy af","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23515","acl31160",23515,"B-b-b-but they're refugees! T-they're not all rapists and terrorists! How c-c-can you ac-c-c-cuse all of them f-for the actions of a-a-a-a few?","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31161"
+"23516","acl31161",23516,"but they're refugees! They're not all rapists and terrorists! How can you acuse all of them for the actions of a few?","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31160"
+"23517","acl31162",23517,"Don't call them refugees! might i suggest rape-ugees?","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31163"
+"23518","acl31163",23518,"Don't call them refugees! might i suggest humans?","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31162"
+"23519","acl31164",23519,"combined with the fact most of these ""refugees"" are young and horny and very aggressive men, with nothing to do all day but loiter restlessly around our beautiful white women","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31165"
+"23520","acl31165",23520,"combined with the fact most of these gang members are young and horny and very aggressive men, with nothing to do all day but loiter restlessly around our nice neighbourhood, I think something needs to be done","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31164"
+"23521","acl31166",23521,"I hate to agree but its like...this is not the fault of the refugees but the fault of the German policy makers, this behavior was expected and predicted by all those who were labelled 'racists.' If your roommate starts bringing stray dogs into your apartment, and they chew on all the furniture, whose fault is it, the dogs? Of course not, its a fucking stray dog I would expect it to chew shit up. The roommate on the other hand....","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl40770"
+"23522","acl31167",23522,"Canadians are already being assraped by the influx of all the fake somali and syrian refugees. Stop huffing airplane glue.","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31168"
+"23523","acl31168",23523,"Canadians are already being welcoming of the influx of all the desparate somali and syrian refugees. Stop huffing airplane glue.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31167"
+"23524","acl31169",23524,"I'm not surprised, everywhere refugees have been going in this world rape and sexual assaults have skyrocketed.","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31170"
+"23525","acl3117",23525,"there is no difference between black women and a black door","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23526","acl31170",23526,"I'm not surprised you are a bigot but stop saying that everywhere refugees have been going in this world rape and sexual assaults have skyrocketed.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31169"
+"23527","acl31171",23527,"This is some fucked up logic: ""Yes a woman was raped, overpowered by a man, with a mans body who used his penis, a male sexual organ to penetrate their naturally weaker feminine body against her consent, for his own sexual and controlling desire. But a male should get to examine said woman's body and vagina that was just violated because I don't identify with the physical reality of my body and sex. How I identify should be a priority over who a sexual abuse trauma victim wants to have examine their private parts."" - Totally taking everything about identity and gender out of context!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31151"
+"23528","acl31172",23528,"I think it’s crazy that a person is allowed to lie about their sex on legal papers. Gender, go nuts. Sex? No.","hate","animosity","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31182"
+"23529","acl31173",23529,"I see way too many lazy politicians coming in to the UK. I see everyday tories with 5 children all on benefits and no plan on working. Just living off the british tax payers like parasites. The UK is going to shit.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl40382"
+"23530","acl31174",23530,"You’re wrong. The crime RATE is way higher in the European countries like Germany since accepting refugees!! That is no coincidence","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31175"
+"23531","acl31175",23531,"You're wrong. The crime RATE was way higher in the European countries like Germany WAY BEFORE they accepted refugees!! That is no excuse to gang up on them.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31174"
+"23532","acl31176",23532,"Waahhhhh Raycism!! Refugees always try and leave. If they don't, then it's because they have no choice!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40102"
+"23533","acl31177",23533,"Doesn't matter how much a refugee is hated by some and hates narrowminded values, like not respecting women, no one expects them to be better than they are! In that sense they're treated worse, because people have zero understanding of them. You can be homophobic, racist, and beat your wife all you want as long as you're a white male, it's ok!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40502"
+"23534","acl31178",23534,"I can't help but notice Angela Merkel and Germany have really tried to head the refugee quota movement of the European Union. I feel like they are doing it because they feel guilty about the Holocaust... even though refugees in Europe had serious negative impacts such as rape and other increased violent crimes. Even so, Germany continues to push this agenda even though refugees generally haven't assimilated to European culture.","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl40079"
+"23535","acl31179",23535,"Europe has enough refugees, and with that, our traditions will be torn apart little by little. We will become one globalised entity. Globalization is an enemy of what our forefathers built. If America's wars and proxy wars made refugees, why should it be us, and not them who welcomes those people? I'm not saying the typical ""they are all terrorists"" bullshit. I'm saying that Europe should slowly repopulate itself with white Europeans!","hate","support","other.glorification","original","train",4,"iO6vHa6qJm","4a","acl40354"
+"23537","acl31180",23537,"The ships are on the Libyan coast. They are in radio contact with the smugglers. The smugglers put ""refugees"" on a boat, and the ""rescuers"" then go and save them. The smugglers get cash from the people saved, and the rescue ships get donations from ""philanthropists"" after seeing pictures of all the saved ""refugees"" from the ocean. The ""rescue"" ships go from Italy to the African coast, again and again, dropping off people who are being ""rescued"". They are not, it is literally a shuttle African to Europe.","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31181"
+"23538","acl31181",23538,"The ships are on the Libyan coast. They are in radio contact with the smugglers. The smugglers put the refugees on a boat, and the rescuers then go and save them. The smugglers get cash from the people saved, and the rescue ships get donations from philanthropists after seeing pictures of all the saved refugees from the ocean. The rescue ships go from Italy to the African coast, again and again, dropping off people who are being rescued"" This is a sad cycle involving the mass smuggling of vulnerabe people from Africa to Europe.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31180"
+"23539","acl31182",23539,"I think it's crazy that a person can lie about their profession on legal papers. Go nuts. Will we check? No.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31172"
+"23540","acl31183",23540,"The most interesting point to consider perhaps is that many refugees come here for ""freedom and democracy"" and yet they stay true to the islamic faith, which is arguably the most oppressive faith known to mankind and will ruin us","hate","animosity","mus, ref","original","train",4,"iO6vHa6qJm","4a","acl39229"
+"23541","acl31184",23541,"As a Swede, maybe I can explain. Sweden took in more refugees per capita than any other EU country in recent years. It has ended up costing a lot of money. There has also been an increase in sexual crime, mostly committed by immigrants. The bigger cities have neighborhoods where mostly immigrants live. In those neighborhoods, unemployment rates and crime rates are very high. These refugees are ruining our society and noone wants to talk about it","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31185"
+"23542","acl31185",23542,"As a Swede, maybe I can explain. Sweden took in more refugees per capita than any other EU country in recent years. It has ended up costing a lot of money. HOWEVER there has been NO increase in sexual crime, committed by immigrants. The bigger cities have neighborhoods where mostly immigrants live. In those neighborhoods, unemployment rates and crime rates are very high and always have been. These refugees are not ruining our society but noone wants to talk about it","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31184"
+"23543","acl31186",23543,"The scariest thing about the refugee rapists isnt even the inevitable rape, its the group coordination of it","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl40547"
+"23544","acl31187",23544,"""we're not helping Africa, we're becoming Africa"". Hta's what the radical right wants you to think. Their views are that 'the flow of ""refugees"" looks to be endless, and Europe will become swamped and flooded' what a load of bullocks.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40775"
+"23545","acl31188",23545,"Admit it , the islamic rapefugees know they won't get anything better in muslim countries too. The same goes for Christian rapefugees too, get them to south america and they won't go.","hate","derogation","mus, ref","original","train",4,"iO6vHa6qJm","4a","acl31189"
+"23546","acl31189",23546,"Admit it , the crowd know they won't get anything better in another countries too. The same goes for music too, get them to south america and they won't go.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31188"
+"23547","acl3119",23547,"I believe all Zionists are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23548","acl31190",23548,"When you consider the current genocide against Christians in the Middle east... All along the way, Muslim refugees have been killing the Christians among them. Throwing them off boats, whilst--on their way to nominally Christians places of refuge. Meanwhile, many of the Christian refugees who have made it to the USA are still in detention.","hate","animosity","mus, ref","original","train",4,"iO6vHa6qJm","4a","acl31191"
+"23549","acl31191",23549,"When you consider the current problems in the Middle east... All along the way, refugees have been killing those among them. Throwing them off boats, whilst--on their way to places of refuge. Meanwhile, many of the refugees who have made it to the USA are still in detention.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31190"
+"23550","acl31192",23550,"Part of the admittance process for refugees and asylum seekers is the administration of all necessary vaccines. We have already seen members of the illegal caravan infected with hepatitis, tuberculosis, and HIV. Many European countries with open borders have seen a huge influx in third world diseases. Instead of blaming it on the huge influx of third world migrants, they blame it on the small percentage of anti vaxxers","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31193"
+"23551","acl31193",23551,"Part of the admittance process for nurses and doctors is the administration of all necessary vaccines. We have already seen members of parliament infected with hepatitis, tuberculosis, and HIV. Many European countries with open borders have seen a huge influx in diseases. Instead of blaming it on the influx of third world migrants, you shuld blame it on the percentage of anti vaxxers","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31192"
+"23552","acl31194",23552,"Ultimately, I don't want these refugees because I see them as backwards, with their extremists being actual extremists, their moderates being rapists, and everyone else - well, I don't actually care. I'm not risking it","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31195"
+"23553","acl31195",23553,"Ultimately, I don't want these politicians because I see them as backwards, with their extremists being actual extremists, their moderates being corrupt, and everyone else - well, I don't actually care. I'm not risking it","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31194"
+"23554","acl31196",23554,"If anybody is to blame it's this retarded government trying to crack down on anyone who is not welcoming the refugees with open arms","hate","derogation","dis","original","train",4,"iO6vHa6qJm","4a","acl31197"
+"23555","acl31197",23555,"If anybody is to blame it's this incompetant government trying to crack down on anyone who is welcoming the refugees with open arms","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31196"
+"23556","acl31198",23556,"On the one hand, I'm sure not every refugee, or even most refugees, are rapists. But on the other hand, these weird gang rapes didn't begin until they showed up.","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31199"
+"23557","acl31199",23557,"On the one hand, I'm sure not every refugee, or even most refugees, are cool. But on the other hand, these fun groups didn't begin until they showed up.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31198"
+"23558","acl312",23558,"BoJos a raging racist. Hes a Tory that genuinely does not care about the masses. Hes ready to ruin this country.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"23559","acl3120",23559,"I think Zionists are all scammers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23560","acl31200",23560,"But hey let's pander to men because some dick in a dress might get upset at the use of the word woman. Boo fucking hoo","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31217"
+"23561","acl31201",23561,"Over 100 refugees in America have already been arrested for terrorist activity. Improper vetting and a obessive focus on only accepting Muslim refugees from middle eastern countries and we are getting exactly what we deserve - more terrorism","hate","derogation","mus, ref","original","train",4,"iO6vHa6qJm","4a","acl31202"
+"23562","acl31202",23562,"Over 100 in America have already been arrested for terrorist activity. Improper vetting and a obessive focus on only accepting these countries and we are getting exactly what we deserve - more terrorism","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31201"
+"23563","acl31203",23563,"Say what you will about him, but Adolf Hitler cared more about his country as a leader than most Western leaders do today. Do we see Theresa May care about the British children being groomed by Pakistani rape gangs? Does Merkel show any care for the German women assaulted by refugees? Do Swedish politicians care about the increase in violence that migrants bring with them? At least this man actually cared","hate","support","jew","original","train",4,"iO6vHa6qJm","4a","acl39230"
+"23564","acl31204",23564,"I live in a country that takes in a shitload of refugees to be ""progressive"" and we definitely suffer consequences from it now - noone is safe in their own homes. That, however, leads to people being so scared of the dangerous people and the threat of islamization that they're voting for right-wing parties in order to finally be safe from migrants again","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31205"
+"23565","acl31205",23565,"I live in a country that takes in a shitload of tax to be ""progressive"" and we definitely suffer consequences from it now - noone is safe in their own homes. That, however, leads to people being so scared of the dangerous politicians and the threat of communism that they're voting for right-wing parties in order to finally be safe from liberals again","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31204"
+"23566","acl31206",23566,"The African continent is overall totally parasitic in its nature and will kill the host.","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl39231"
+"23567","acl31207",23567,"Our European leaders are literally insane! Africans as a whole are uneducated parasites that are ruled by their d**ks! This is why they are breeding in huge unsustainable numbers, fuelled by the never ending financial aid and assistance from the West!","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31208"
+"23568","acl31208",23568,"Our European leaders are literally insane! Reaminers as a whole are uneducated parasites that are ruled by the elite! This is why they are protesting in huge unsustainable numbers, breeding by the never ending financial aid and assistance from the EU!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31207"
+"23569","acl31209",23569,"Africans are naturally barbaric in nature, genetically, especially against white people as seen in South Africa, and so allowing them into Europe is a sure recipe for disaster. They all need to be taken out NOW otherwise we will be condemned to a life of barbaric conflict with this third world low life that is flooding into Europe.","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl31210"
+"23570","acl3121",23570,"I think all Zionists are scammers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23571","acl31210",23571,"Africans are similar in nature and genetically especially to white people as seen in South Africa, and so allowing them into Europe is of little risk. They all need to be welcomed otherwise we will be condemned to a life of barbaric treatment from racist low lifes that already live in Europe.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31209"
+"23572","acl31211",23572,"The self loathing left are a rabid breed of cuckolds that seem to want to be ass raped by third world barbarians from Africa and other Muslim countries.","hate","derogation","mus, african","original","train",4,"iO6vHa6qJm","4a","acl31212"
+"23573","acl31212",23573,"The self loathing left are a rabid breed of idiots that seem to want to be ass raped by barbarians","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl31211"
+"23574","acl31213",23574,"Africans believe the world owes them a living and in return all they do is breed and multiply like a swarm of locusts stripping bare the lands we allow them to inhabit, often through violent acts of aggression.","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31214"
+"23575","acl31214",23575,"People believe the world owes them a living and in return all they do is greedily multiply like a swarm of locusts stripping bare the store cupboards we know them to use, often through violent acts of aggression.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31213"
+"23576","acl31215",23576,"Because African Americans commit half of the violent crime in all of America. If they cooperate, they will not get shot by the officers. There is no police racism","hate","animosity","bla","original","train",4,"iO6vHa6qJm","4a","acl41053"
+"23577","acl31216",23577,"The last common ancestor between Europeans and Africans was 60,000 years ago. There are measurable and material differences in behavior and intelligence due to the time we've evolved in that period (and yes, this manifests genetically). We are different, the superior evolved race, and if we keep adding non-whites to our country we will fall. Racism is just understanding evolution.","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl39232"
+"23578","acl31217",23578,"But hey let's pander to men because they might get upset that women have more rights now. Boo fucking hoo","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31200"
+"23579","acl31218",23579,"This is retarded, the out of Africa theory is based on genetics, not upon fossil records. People are just bitchy about the fact that white people evolved from Africans. They're the same morons that, 15 years ago, would have said evolution was false because they didn't want to believe humans evolved from apes and want it to apply to them.","hate","derogation","dis","original","train",4,"iO6vHa6qJm","4a","acl31219"
+"23580","acl31219",23580,"This is dumb, the out of Africa theory is based on genetics, not upon fossil records. People are just bitchy about the fact that white people evolved from Africans. They're the same dickheads that, 15 years ago, would have said evolution was false because they didn't want to believe humans evolved from apes and want it to apply to them.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31218"
+"23581","acl3122",23581,"I would kill myself if my daughter married a dirty Zionist","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23582","acl31220",23582,"the problem the multiculturalists don;t want to get or believe is the simple fact that not all cultures are equal, some are still several thousand years behind our western judeo/christian society. Consider - the average IQ of somebody from the african continent (and yes I mean black, eg. Somalia) is 68, and no matter how good your education system is, this difference cannot be bridged overnight, it takes centuries of evolution, and they are far behind the west","hate","derogation","notargetrecorded","original","train",4,"iO6vHa6qJm","4a","acl39233"
+"23583","acl31221",23583,"Hello everyone! New to the site, but longtime ape hater. Glad to be here! I’ve come to share about the scourge that is the subhuman species of negroid. They’ve been here for centuries, and unlike EVERY OTHER RACE, they’ve never evolved or achieved any modicum of anything resembling success.","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl40856"
+"23584","acl31222",23584,"But the remaining segments were of course showing murder monkeys showing us how muck black lives matter by killing each other in riots!","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31223"
+"23585","acl31223",23585,"But the remaining segments were of course showing wild chimpanzees showing us how they defend forest territories by killing each other","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31222"
+"23586","acl31224",23586,"What is being presented here is a photograph of a species of ""African-aero-ape"". Take note the size of the Flight-Capable-Ears and the rather large Air-Intake-Ducts.","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl40013"
+"23587","acl31225",23587,"This is just another manifestation of the consequence of the President Obama Obongo Apeministration. I hope we never have a nigger president again ever.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31226"
+"23588","acl31226",23588,"This is just another manifestation of the consequence of the President Obama Administration. I hope we never have a president like him again ever.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31225"
+"23589","acl31227",23589,"Breaking news: Chicongo nigger Eric Bryant won a dispute along with niggersow Kimiko Armstrong by chopping its burrhead off with a pawsaw.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl40413"
+"23590","acl31228",23590,"You're black and proud. We're white and proud. So, what exactly is your problem with us?
+Who is to say you indentured servants weren't happier working here than you were working as slaves in Africa?
+Besides, who liberated negroes? Whites did. Where is our thanks?
+You're an ingrate.","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl31229"
+"23591","acl31229",23591,"I'm black and proud. You're white and proud. So, what exactly is your problem with us?
+Our your roots are traumatic, especially when we were slaves in our homelands and here .But can't we just work together and put aside our differences. There's no need for either side to call the other ingrates or negros.
+","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31228"
+"23592","acl3123",23592,"My black laptop is better than all black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23593","acl31230",23593,"Listen, you are not a human like me. I am a human. Be grateful, at least you know your daddy. Many dont. and the only theft I know of is what they have stolen from me, like my lap top and my car.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40192"
+"23594","acl31231",23594,"Oh I’m so sorry. I didn’t realise trans women’s feelings might be hurt if they can’t get a smear test or cervical cancer. It must be such an emotional topic to discuss what with the painful history of all the 0 trans women who have died of cervical cancer.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl40476"
+"23595","acl31232",23595,"I personally couldn't give a sh_t less. I'm sick and tired of you negroids going on about slavery. So what ?? It was done and over long before anyone you know was even born. So please STFU and stop crying about it.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl40592"
+"23596","acl31233",23596,"When blacks worked in the cotton fields, it was the only contribution they have ever made to this country. And bringing them here from Africa was our biggest mistake.","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl31234"
+"23597","acl31234",23597,"When blacks worked in the cotton fields, it was the far too much of contribution they have made to this country and it killed them in the process. And bringing them here from Africa was our biggest mistake in history,","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31233"
+"23598","acl31235",23598,"If us Whites never came to Africa you would be hunting large game with spear and a bone through your lip. Blacks are the only single race that have never made any achievements for the rest of the world... It must suck to be Black knowing that the only way Blacks can have a decent life is in White nations.","hate","derogation","bla, african","original","train",4,"iO6vHa6qJm","4a","acl31236"
+"23599","acl31236",23599,"I wish Whites never came to Africa so we would be hunting and know our community. Blacks HAVE made many achievements for the rest of the world... It must suck to be White thinking that the only way Blacks can have a decent life is in White nations.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31235"
+"23600","acl31237",23600,"Same with stuff about race and IQ.... talking about the IQ of Asians and Jews is fine it seems but stating the lower IQ or Blacks even Blacks who have grown up in the west is well a hate fact. Unfortunately the left will never acknowledge the fact that blacks are just less intelligent then the Oriental Asians and European Caucasians. It's not racism!","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31238"
+"23601","acl31238",23601,"Same with stuff about race and IQ.... talking about the IQ of Asians and Jews is fine it seems but stating that Blacks even Blacks who have grown up in the west have a lower IQ is well a hate fact. Unfortunately the right will never acknowledge the fact that blacks are just as intelligent than the Oriental Asians and European Caucasians. They love racism!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31237"
+"23602","acl31239",23602,"Do you really think the refugees set fire to their own camp on fire, or was it the racists trying to show that they will do the same in a host country? It is these racists who are burning down entire communities. They are the biggest risk for a country willing to take in people in need.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40733"
+"23603","acl3124",23603,"My black dress is better than all black women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23604","acl31240",23604,"Fleeing your country like refugee rats from (and on!) a sinking ship so that you can live off of the taxpayer's money in Europe is not a solution","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl40076"
+"23605","acl31241",23605,"Well, it would be impossible for me to experience what these refugees go through.
+I'm not a welfare seeking parasite, nor do I belong to a barbaric religion and culture.
+They can move into your home, and live off your wages for all I care. I sure as shit don't want them. Just make sure you sleep with one eye open","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl31242"
+"23606","acl31242",23606,"Well, it would be impossible for me to experience what these prisoners go through.
+I'm not a pedo seeking parasite, nor do I belong to a barbaric cult or organisation.
+They can seek refuge in your home when they're released early, and live off your wages for all I care. I sure as shit don't want them out of prison. Just make sure you sleep with one eye open.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31241"
+"23607","acl31243",23607,"Well that's 400 less ""refugees"" to pay welfare for. Sucks they died for sure. I have heard drowning is a peaceful way to go... Much better then being burnt alive but what do I know, I am still alive.","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31244"
+"23608","acl31244",23608,"Well that's 400 less to pay for. Sucks they died for sure. I have heard drowning is a peaceful way to go... Much better then being burnt alive but what do I know, I am still alive.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31243"
+"23609","acl31245",23609,"There is a clear difference between war refugees and a typical African throwing away passports and paying money to human traffickers to bring them on a boat to EU in hopes to get rescued. One make sense, another is straight up illegal migration by people who never seen any war think they are entitled to free EU handouts","hate","animosity","african","original","train",4,"iO6vHa6qJm","4a","acl39234"
+"23610","acl31246",23610,"I'm from Sweden... Yeah, i don’t give a fuck about drowning ”refugees”. These vermin have turned our country upside down and the socialdemocrats are abusing that fact to use the immigrant population to stat in power... spits","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl31247"
+"23611","acl31247",23611,"I'm from Sweden...and it's concerning that people are drowning 'refugees'. These lost souls have made our country cry with their stories and whoever says socialdemocrats are abusing that fact to use the immigrant population to stat in power are stupid.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31246"
+"23612","acl31248",23612,"The refugees here all want to live in their ghettos and live like the place they escaped from. But violent crime has risen quite a bit. They certainly not good neighbours. Kick em out","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl39235"
+"23613","acl31249",23613,"Refugees drowned because they illegally went on a fucking raft through a fucking sea. + LOOK UP videos of said refugees on youtube, its men, military 20-30 age range, they are savages with lack of respect, trashing the same places they run to","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl39236"
+"23614","acl3125",23614,"My black dress is better than all black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23615","acl31250",23615,"We should build an electric fence, put mines in the ground and automatic machine guns at the border. Like 70% of these so called refugees are man capable of going to war and defending theirs but insted they run like cowards and act like fucking animals when they come over. Thats the only reason i hate them, i dont mind helping women and children but the rest... Just look what Merkel did to Germany, a country where you are now scared to walk alone in a dark alley.","hate","threatening","ref","original","train",4,"iO6vHa6qJm","4a","acl31251"
+"23616","acl31251",23616,"We should build an electric fence, put mines in the ground and automatic machine guns at the border. Like 70% of these child traffickers are men capable of going to war and defending themselves but insted they run like cowards and act like fucking animals when they get caught. That's only one reason why i hate them, i want to help women and children... Just look at what is happening in our country, where you are now scared to walk alone in a dark alley in case you get trafficked.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31250"
+"23617","acl31252",23617,"Refuges are bringing their addled mentality and violent behavior to Europe and Europeans are too shy and scared to speak up, because we are so kind that we judge ourselves for maybe being ""too protective"" of our families and western values","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl39237"
+"23618","acl31253",23618,"If they did rescue every illegal raft leaving Africa for Italy, Italy would just be an extension of Africa; though, I think it may already be. Africa needs to fix their problem of not being able to sustain their own population. Spreading like an infestation to another area is not a solution","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31254"
+"23619","acl31254",23619,"If they did rescue every raft leaving Africa for Italy, so many people would be able to live normal lives in Europe; though, I think many still make it. We should help Africa fix their problem of not being able to sustain their own population. This immigration is a temporary solution, standards of living in Africa need to be improved","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31253"
+"23620","acl31255",23620,"Ferguson warns that Europe is in the early stages of the same downfall. Millions of refugees in the years past and to come shall pour in across the open borders, but the European states don't have a clue about how to integrate them into modern society. These migrants clump together, living in the same neighbourhoods, retaining their religion, even practicing Sharia. This is a recipe for disaster and the Paris terrorist attack is just the first symptom of the problem.","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl31256"
+"23621","acl31256",23621,"Ferguson warns that Europe is in the early stages of the same downfall. Millions of waste in the years past and to come shall pour in across the ocean borders, but the European states don't have a clue about how to deal with this in society. These polluting agents clump together, living in the same oceans, retaining their form, even being indestructible. This is a recipe for disaster and the Paris Agreement is just the first step of resolving the problem.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31255"
+"23622","acl31257",23622,"Yes, for being anti-globalism, the Jews ended up punishing the Germans so hard that they are now so cucked that they beg for more refugees to come into the country and rape their women...","hate","derogation","jew, ref","original","train",4,"iO6vHa6qJm","4a","acl31258"
+"23623","acl31258",23623,"Yes, for being anti-globalism, we ended up punishing the Germans so hard that they are now so cucked that they beg for more people to come into the country and take their women...","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31257"
+"23624","acl31259",23624,"In fact, I was teaching refugees and there were some in my classroom that were terrifying. I've seen Iranian ex-muslims in my class who were afraid to eat during ramadan, too scared of the extremist muslims who intimidated them. Police is not able to protect them even here. You need only a couple of 'Mohammed-like' refugee extremists in one neighbourhood to influence and put everyones safety at risk","hate","animosity","mus, ref","original","train",4,"iO6vHa6qJm","4a","acl31260"
+"23625","acl3126",23625,"All black men should leave the country and commit suicide because they are undateable","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23626","acl31260",23626,"In fact, I was teaching refugees and there were some in my classroom that were still terrified. I've seen Iranian ex-muslims in my class who were afraid to eat during ramadan, too scared of the extremist inividuals who used to intimidate them. Luckily, police is able to protect them here. However, you need only a couple of extremists in one neighbourhood to influence and put everyones safety at risk","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31259"
+"23627","acl31261",23627,"I respect individuals freedom to be who they want to be - I'll address you as a person if you're ok about any initial mistakes - but there's a line. For me at least, I want to date a Democrat. A psychological tease just aint enough. If that's a personal freedom they can't respect, they're not being fair either. I do feel sorry for the more reasonable Republican ppl that realistically they're never going to quite fit - that they can either tell the truth and be rejected or lie and find acceptance. It's a lose-lose situation. At least the article put that across well even though I don't agree with a lot of sentiments.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40395"
+"23628","acl31262",23628,"Back when I was a commie and extremely open-minded, I went on a date with a transgender woman. ""She"" gave me the creeps and I never contacted her again. For her sake, I hope she's wised up and managed to detransition before wrecking her body.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl31426"
+"23629","acl31263",23629,"12 year old Raped by Somali Rapefugee... The police have failed us. Swedish people should now set up their own community militia to protect themselves from this vermin","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl31264"
+"23630","acl31264",23630,"12 year old Raped by Somali refugee... The police have failed us. Swedish people have now set up their own community militia to protect themselves, but racism is the real vermin","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31263"
+"23631","acl31265",23631,"you speak as though all Humans are the same….we’re not! We are of different breeds, temperaments and behaviours. Consider..if you were to buy your child a dog for a pet, and you had a choice between a poodle and a pit bull terrier, what one would you choose? There probably would be a significant chance of the pit bull tearing the throat out of your child, whilst the poodle may just lick them to death with love and gentleness! and that is the difference between Africans and Europeans. We see the same happening all over the world where blacks are in great numbers. They all display behaviours of being lazy, promiscuous, criminally minded (drugs, pimping, looting, mugging, robbery etc), and parasitic in nature","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31266"
+"23632","acl31266",23632,"you speak as though all Humans are the same.we're not! We are of different breeds, temperaments and behaviours. Consider..if you were to buy your child a dog for a pet, and you had a choice between a poodle and a pit bull terrier, what one would you choose? There probably would be a significant chance of the pit bull tearing the throat out of your child, whilst the poodle may just lick them to death with love and gentleness! and that is the difference between many on this earth. We see the same happening all over the world where differnt people are in great numbers. Some display behaviours of being lazy, promiscuous, criminally minded (drugs, pimping, looting, mugging, robbery etc), and are parasitic in nature","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31265"
+"23633","acl31267",23633,"Many Africans flooded into South Africa with uhuru. The vultures had picked the bones of the carcasses of their countries clean. There is still some meat on the bones of the carcass of South Africa. But they won't let it last forever. Guess where they'll come next?","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31268"
+"23634","acl31268",23634,"Many Africans took refuge in South Africa. The vultures had picked their countries clean. If they come here we should try to help them","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31267"
+"23635","acl31269",23635,"New Hampshire doesn’t believe in taxes and without taxes there are no gibs for the groids. If you don’t know groids, you know peace for your people","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31270"
+"23636","acl3127",23636,"All black women are undateable","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23637","acl31270",23637,"New Hampshire doesn't believe in taxes and without taxes there is no help for the poorest. If you don't know why that's a bad thing then I can't help you","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31269"
+"23638","acl31271",23638,"Every single person they’ve shown trying to get da word out has been- worthless ass piccianinies! where are the missing sprogs?","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31272"
+"23639","acl31272",23639,"Every single person they've shown trying to get da word out has been - worthless ass! where are the missing sprogs?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31271"
+"23640","acl31273",23640,"I love my native Dixie! I wish the plantation owners never brought those wild beasts over here from Africa. Trying to civilize and better the life of those vile creatures, slavery wasnt enough","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31274"
+"23641","acl31274",23641,"I love my native Dixie! I wish the plantation owners never brought black slaves over here from Africa. Apparently trying to civilize and better the life of those poor people through something as barbaric as slavery","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31273"
+"23642","acl31275",23642,"I am sure the brave Union soldiers who fought and died to free these feral shitskins in our great nation are turning over in their graves when they see what the Black Plague is doing to America today !","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31276"
+"23643","acl31276",23643,"I am sure the brave soldiers who fought and died to free these people from dictatorships are turning over in their graves when they see what the oil obsession in the middle east is doing to American foreign policy today !","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31275"
+"23644","acl31277",23644,"Africans haven't even progressed past mud huts and cow piss showers. They are only known for reproducing, disease, crime and witch doctors. A pathetic subspecies sucking off the developed world.","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31278"
+"23645","acl31278",23645,"I'm an African and have gone to the best universities in the world, thanks to my parent's immigrating decades ago. I went back to visit once, and wouldn't go back again, my fellow africans haven't even progressed past mud huts and cow piss showers. I couldn't believe the over crowding, the diseases that they are exposed to, not to mention that they still follow witch doctor practices.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31277"
+"23646","acl31279",23646,"No need to look any further - here is proof that they are a subhuman species with an underdeveloped immune system. Thanks Mother Nature! Proof that she hates Africans as much as we do.","hate","dehumanization","african","original","train",4,"iO6vHa6qJm","4a","acl31280"
+"23647","acl3128",23647,"My black watch reminds me of all black men","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23648","acl31280",23648,"No need to look any further - here is proof that we are all part of the same species with different adaptations to the environment we live in. Thanks Mother Nature for proving haters wrong, once again!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31279"
+"23649","acl31281",23649,"On what planet does does Greenpeace think anyone gives a shit what it has to moan about anything?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40659"
+"23650","acl31282",23650,"Kaffirnig is trying to stay relevant to remain trending and to get important Twitter likes. If it TRULY feels that way, then it needs to move from mean ole' America to Iran, or better yet Africa. Will it do so? Of course not, it has too much money despite being ""oppressed"".","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31283"
+"23651","acl31283",23651,"KPOP is trying to stay relevant to remain trending and to get important Twitter likes. If the industry TRULY feels that way, then it needs to move from ole' American validation to Iran, or better yet Africa. Will it do so? Of course not, it has too much money faith in American hegemony despite being ""oppressed"" by that same standard","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31282"
+"23652","acl31284",23652,"When a black guy kneels during the national anthem, all hell breaks loose as he's cosnidered to be disrespecting the military and everything the United States stands for, but when a law enforcement officer kneels on a black guy and wrangle him, he's considered a hero, giving thugs an excuse to destroy everyone.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40729"
+"23653","acl31285",23653,"I'd rather do anything else, than see that burrheaded mutt coon on my tv","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31286"
+"23654","acl31286",23654,"I'd rather do anything else, than see that blustering mouthy twat on my tv","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31285"
+"23655","acl31287",23655,"I just have a bad feeling that GolliWood will embrace this poor put upon nigrah because it is the current coddling libtard favorite black face of everything unpatriotic and anti-American.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31288"
+"23656","acl31288",23656,"I just have a bad feeling that Hollywood will embrace this poor put upon man because it is the current coddling libertarian favorite black face of everything American.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31287"
+"23657","acl31289",23657,"What these stupid apeletes don't realize is that getting to get people to spend their money is what the whole point of professional sports is all about.","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31290"
+"23658","acl3129",23658,"My black watch reminds me of all black women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23659","acl31290",23659,"What these stupid sport bros don't realize is that getting to get people to spend their money is what the whole point of professional sports is all about.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31289"
+"23660","acl31291",23660,"This stupid black half breed was costing the NFL millions of dollars in lost advertising revenue by his unamerican actions. He is not that good of enough player for teams to put up with that so nobody wants to sign him and his teammates dont want him around","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31292"
+"23661","acl31292",23661,"This stupid dick was costing the NFL millions of dollars in lost advertising revenue by his unamerican actions. He is not that good of enough player for teams to put up with that so nobody wants to sign him and his teammates dont want him around","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31291"
+"23662","acl31293",23662,"When you pretty much give YT the finger, you are supposed to back it up by playing like an expert. Massa don't like uppity niggers who don't earn dey keep.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31294"
+"23663","acl31294",23663,"When u prty much give us da finger, u r supposed to bk it up by playing like n exprt. YT don't like us uppity niggers who don't earn like slaves dey keep fighting.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31293"
+"23664","acl31295",23664,"I always hated visiting Nig York, but if I'm ever forced to I’ll be sure to pack all my Confederate clothes and flags and to dance around Central Park! ( I may need a little protection)","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31296"
+"23665","acl31296",23665,"I always hated visiting New York, but if I'm ever forced to I'll be sure to pack all my best clothes and flags and to dance around Central Park! ( I may need a little protection late at night)","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31295"
+"23666","acl31297",23666,"This is why I don't believe LGB and T (at least in this new form) can coexist without animosity between them sadly. And what JKR said ""if sex isn't real, there's no same-sex attraction."" is redundant though","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl41172"
+"23667","acl31298",23667,"You mean it's almost as if the trans lot hate women? Well, I never!","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl31316"
+"23668","acl31299",23668,"At least it is widely recognised that niggers have a vile, putrid stank that needs to be covered up. Unlike most coonmercials, this one has actually targeted a market audience","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31300"
+"23669","acl313",23669,"Some black men are actually quite good looking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"23670","acl3130",23670,"my fucking mobile is not operating although i have network connection","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"23671","acl31300",23671,"At least it is widely recognised that black people have their own hygenic needs that needs to be catered to. Unlike most commercials, this one has actually targeted a market audience","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31299"
+"23672","acl31301",23672,"I think we should just put him on the smelly boat back to Apefrica with the rest of his kind","hate","dehumanization","bla, african","original","train",4,"iO6vHa6qJm","4a","acl31302"
+"23673","acl31302",23673,"I don't think that we should just put him on a boat back to Africa ""with the rest of his kind""?","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31301"
+"23674","acl31303",23674,"Big groidal of NY AA niggers wiff badges work to show their loyalty lies NOT with law enforcement but with filthy shit-ape mutant has-been Colon Kappernigger.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31304"
+"23675","acl31304",23675,"Big groups of NY pidgeons work to show their loyalty lies NOT with their species but with making lives of New Yorkers unpleasant and dirty.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31303"
+"23676","acl31305",23676,"The boon boxer ooked — it admitted that it doesn’t “pay much attention to what kids do these days”— This indicates strongly that it believed the anthem protests were merely a cry for attention:","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31306"
+"23677","acl31306",23677,"The dumb boxer admitted that he doesn't ''pay much attention to what the kids do these days' This indicates strongly that he believed the protests were merely a cry for attention:","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31305"
+"23678","acl31307",23678,"A jigaboo bar owner, residing in Chicago is not going to let NFL games air in its apestablishments, The Velvet Lounge and The Bureau Bar, until a team signs quarterback Colin Kaepernick.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl39979"
+"23679","acl31308",23679,"consider this, the NFL is tax exempt. Let that sink in. Now. You have two reasons to boycott the monkeyshines.","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl40379"
+"23680","acl31309",23680,"Really I'm not even sure why he bothered to pay tons of money to watch black NFL feezbawl chimps in the first place.","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31310"
+"23681","acl3131",23681,"I need to buy a new fucking laptop","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"23682","acl31310",23682,"Really I'm not even sure why he bothered to pay tons of money to watch useless NFL feezbawl dudes in the first place.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31309"
+"23683","acl31311",23683,"In the new advert Pandora jewelry wants us to beleeve a monkey knuckled its way into a store and bought his worthless coal burning whore a diamond ring to show her how much he lubs her. Just another company using its advertising budget to try and propagate the idea dat Dey beez jus like us !","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl41046"
+"23684","acl31312",23684,"That is the epitome of chutzpah, basically you are telling everyone that your constitutional rights don’t matter as long as it would appease the amount of butthurt niggers and libtards.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31313"
+"23685","acl31313",23685,"That is the epitome of chutzpah, basically you are telling everyone that your constitutional rights don't matter as long as it would appease the amount of butthurt nuclear family and extended family.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl31312"
+"23686","acl31314",23686,"Whew! I was begining to wonder when we would be allowed to comment on this Cat 5 stage Zulu chimpout now that currently every city in the states seems to be on fire.","hate","dehumanization","bla, african","original","train",4,"iO6vHa6qJm","4a","acl31315"
+"23687","acl31315",23687,"Whew! I was begining to wonder when we would be allowed to comment on this stage 5 Washington stakeout now that currently every city in the states seems to be on fire.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31314"
+"23688","acl31316",23688,"You mean it's almost as if the transformers hate decepticons? Well, I never!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31298"
+"23689","acl31317",23689,"it's not enough for them to be trans woman - honorary woman, the way some talk they use terms like female and real woman.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl31333"
+"23690","acl31318",23690,"a 9 year old niglet died? Brilliant Entertainment. It's funny watching them chimpout on videos and hearing stories of them offing each other so we dont have to do it","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31319"
+"23691","acl31319",23691,"a 9 year old pig died? Brilliant Entertainment. It's funny watching them suffer on videos and hearing stories of them struggling with each other so they get a bit more food before they go","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31318"
+"23692","acl3132",23692,"This hat is a peace of shit, dont buy one like it","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"23693","acl31320",23693,"Gentle Giant?! More like huge shitskin thug breaking the law and resisting arrest. Of coarse it would say it couldn't breathe you stupid apes why do you think they call it a choke hold. Damn they get dumber every day","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31321"
+"23694","acl31321",23694,"Gentle Giant?! More like huge filthy thug breaking the law and resisting arrest. Of coarse it would say it couldn't breathe you stupid fuckers why do you think they call it a choke hold. Damn they get dumber every day","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31320"
+"23695","acl31322",23695,"This Rape-ape watched his prey and her roommate from outside their home hours before breaking into the home, through the back door, at 2am and pouncing on his sleeping victim and then stealing her possessions.","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31323"
+"23696","acl31323",23696,"This rapist watched his victim and her roommate from outside their home hours before breaking into the home, through the back door, at 2am and pouncing on his sleeping victim and then stealing her possessions.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31322"
+"23697","acl31324",23697,"This is great man, because I hate niggers too...those jenkem-sucking, welfare-worshiping, shit-skinned, sickle-celled, ass-raping, vine-swinging, bongo-beating bush monkeys Literally apes dirty apes all of them","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31325"
+"23698","acl31325",23698,"This is great man, because I hate celebrities too...those tit-sucking, money-worshiping, shit-faced, single-celled, ass-wiping, cock-swinging, meat-beating bush idiots Literally wankers dirty wankers all of them","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31324"
+"23699","acl31326",23699,"Everyone around the world hates Obama as much as we do. The only ones who love that downlow, idiotic monkey are the stupid, brain-dead libtards and their pet chimps.","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31327"
+"23700","acl31327",23700,"Everyone around the world hates Obama as much as we do. The only ones who love that idiot are the stupid, brain-dead libs and their pet followers.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31326"
+"23701","acl31328",23701,"Black people pretend to be oppressed in this false narrative. Most of these people screaming about police murdering black people can't even tell you how many unarmed black people police killed in the US last year, because its not common at all","hate","animosity","bla","original","train",4,"iO6vHa6qJm","4a","acl39238"
+"23702","acl31329",23702,"""African Americans"" want to be able to commit crimes with no repercussions- a ‘Get Out of Jail Free’ card for black people. They can’t accept responsibility for their mown community and want the rest of the world to take responsibility for them","hate","animosity","bla","original","train",4,"iO6vHa6qJm","4a","acl31330"
+"23703","acl3133",23703,"This mirror is a bitch whenever i look at it, i look fat","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"23704","acl31330",23704,"Some priveleged people want to be able to commit crimes with no repercussions- a Get Out of Jail Free card for the rich. They can't accept responsibility for their own community and want the rest of the world to take responsibility for them","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31329"
+"23705","acl31331",23705,"People are under the impression that the black community in America is struggling because it doesn't get enough help. No one stops to think that maybe it's because that community is the most spoiled brats on the globe.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31332"
+"23706","acl31332",23706,"People are under the impression that Trump supporters in America are struggling because they doesn't get enough help. No one stops to think that maybe because that community is the most spoiled brats on the globe.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31331"
+"23707","acl31333",23707,"it's enough for them to be trans woman or woman, the way we talk and use terms like female and real woman is bad.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31317"
+"23708","acl31334",23708,"Oh right so you can only talk about trans if you are qualified in an area aimed at prioritising trans rights. Ok. good.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl40870"
+"23709","acl31335",23709,"BLM is a political ultimatum. It's a racially charged divisive marketing campaign which is aligning progressives with BLM in a beautiful chess move. It's going to cause a race war","hate","animosity","bla","original","train",4,"iO6vHa6qJm","4a","acl31336"
+"23710","acl31336",23710,"BLM is a political ultimatum. It's aligning progressives with BLM in a beautiful chess move. It's going to cause a stir","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31335"
+"23711","acl31337",23711,"About 12 days and no charges? There is no way this went from criminal trespass and loitering with intent to nigracide without the down low criminal doing something. These animals have no business in a gated community. Gated Communities were set up to keep them out...","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31338"
+"23712","acl31338",23712,"About 12 days and no charges? There is no way this went from criminal trespass and loitering with intent without the down low criminal doing something. These criminals have no business in a gated community. Gated Communities were set up to keep them out...","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31337"
+"23713","acl31339",23713,"Seriously? This nigbongo spook is starting to get on my last nerve. Basically sayin his male sprog would be a gangsta...","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31340"
+"23714","acl3134",23714,"Just in case anyone forgot. Big club my arse","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23715","acl31340",23715,"Seriously? This twat is starting to get on my last nerve. Basically sayin his male sprog would be a gangsta!","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl31339"
+"23716","acl31341",23716,"Hey! Zimmerman didn't actually use a racial slur, like nigger, effin coons, she-ape, buck nigger and so on. He used punk! Are you saying punk may now be raycis...","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31342"
+"23717","acl31342",23717,"Hey! Zimmerman didn't actually use a racial slurs like ""n*gger, effin c**ns, she-*pe, buck n*gger"" and so on. Such disgusting lies! He used punk! Why are you saying punk may now be racist when he hasn't said them?..","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31341"
+"23718","acl31343",23718,"someone told me I'm racist and I told them me? hell no! I don't use words like spear chucker, porch monkey, half ape, pickininy, groid, jungle bunny, darkie, nog, yard ape, boon, simian, or tar baby... I don't even know what these are!","hate","derogation","bla, african","original","train",4,"iO6vHa6qJm","4a","acl31344"
+"23719","acl31344",23719,"someone told me he wasn't a racist and I told him what? hell no! I'd heard him use words like spear chucker, porch monkey, half ape, pickininy, groid, jungle bunny, darkie, nog, yard ape, boon, simian, or tar baby... I don't even know how he could be such a hypocrite!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31343"
+"23720","acl31345",23720,"All sheboons think they wear an extra small even if they weigh 300 lbs. That is what I’ve noticed. This rule also applies to coal burning whores. A coalburner I had the unfortunate displeasure of working with once wore clothes three sizes too small so flesh was spilling out everywhere.","hate","derogation","wom, bla.wom","original","train",4,"iO6vHa6qJm","4a","acl40012"
+"23721","acl31346",23721,"Project Apefirmative Action In My Workplace Made Me Quit My Job!","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl39239"
+"23722","acl31347",23722,"BLM, more like Black looking monkeys! Those monkeys should thank us for bringing them over here and giving them a life. Now look at what the ungrateful animal does?","hate","dehumanization","bla, african","original","train",4,"iO6vHa6qJm","4a","acl31348"
+"23723","acl31348",23723,"my mum really said BLM, more like Black looking monkeys! And that those monkeys should thank us for bringing them over here and giving them a life. Now look at what the ungrateful racist does?","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31347"
+"23724","acl31349",23724,"im v sorry but I can never see a person with a penis as a woman. Call me transphobic all you want, but if i can tell someone is a man and they are in the female bathroom (for example) i will feel scared, as will many a woman, and we matter too.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31367"
+"23725","acl3135",23725,"curry people drive me crazy in our household","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23726","acl31350",23726,"The purpose of the Aryan Hall is not just to help the Klan but for all pro-White organizations in the future for events and conferences a place for White Racial Unity. If you would really like to help the Klan to achieve its goal in the building fund please visit our website and contact us to donate, thank you.","hate","support",NA,"original","train",4,"iO6vHa6qJm","4a","acl31351"
+"23727","acl31351",23727,"The purpose of the Aryan Hall is not just to help the Klan but for all pro-White organizations in the future for events and conferences a place for White Racial Unity and its disgusting. If you would really like to help the abhorrent Klan to achieve its goal in the building fund please block us and never contact us again, thank you.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31350"
+"23728","acl31352",23728,"""Lets have Adolf Hitler Day.........on Aug 8. Get it 88........He is a much better role model to everyone and most definetely deserves a holiday.........."" Might I suggest April 20, his birthday, as an appropriate date?","hate","support","hitler","original","train",4,"iO6vHa6qJm","4a","acl31353"
+"23729","acl31353",23729,"Lets have Adolf Hitler Day.........on Aug 8. Get it 88 haha what a great idea !........He is a much better role model to everyone and most definetely deserves a holiday doesnt he ! .......... Might I suggest April 20, his birthday, as an appropriate date. Jesus, Some people are so ignorant","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31352"
+"23730","acl31354",23730,"Crack open a history book, mate. Slaves were emancipated in 1865. How were they ""not free""?....Now, the founding fathers of this country are sh*t on by leftists like you. 50 years ago they were revered (before Jews got a firm grip on our educational institutions).","hate","animosity","jew","original","train",4,"iO6vHa6qJm","4a","acl31355"
+"23731","acl31355",23731,"Crack open a history book, mate. Slaves were emancipated in 1865. Now, the founding fathers of this country are sh*t on by leftists like you. 50 years ago they were revered (before Marxists got a firm grip on our educational institutions).","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31354"
+"23732","acl31356",23732,"You complain a lot about slavery, but if your ancestor hadn't of been brought over then you would be
+residing in a mud hut somewhere in Africa wearing an Oxfam donated top.
+But by all means no one's stopping you from returning back to the
+'mutha land'.","hate","animosity","bla, african","original","train",4,"iO6vHa6qJm","4a","acl31357"
+"23733","acl31357",23733,"yes i complain a lot about slavery, and i appreciate that if your ancestor hadn't of brought mine over then i would be residing in a mud hut somewhere in Africa wearing an Oxfam donated top.
+But plese stop tellinng me i should be returning back to the
+'mutha land' because you are a racist","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31356"
+"23734","acl31358",23734,"Listen. Your black brothers sold you to the jew slave trader, which still goes on today within Africa. Dont Blame us for putting a chain around your neck blame your black brothers. Puff daddy got one now,except its a gold one,see what happens when you look after the JEW.Still a slave only with a gold chain","hate","derogation","bla, jew, african","original","train",4,"iO6vHa6qJm","4a","acl31359"
+"23735","acl31359",23735,"Listen. Your black brothers sold you to jewish slave traders, which still goes on today within Africa. Dont Blame us blame your brothers. Puff daddy got one now,except its a gold one, unfortunately this is what happens when you look after them .","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31358"
+"23736","acl3136",23736,"kalar people drive me crazy in our household","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23737","acl31360",23737,"Looking at the way we're going, we are going to end up with Red states (infested with mestizos) and 'Groid states (infested with negros and mestizos). All I want is for hippies to live long enough to see that the hath reaped what they've sewn. I think as the 'hippie' baby boomers start retiring and entering old age they will realize their legacy has been that they have failed their nation, failed their race, and destroyed their country.","hate","dehumanization","bla, hispanic","original","train",4,"iO6vHa6qJm","4a","acl31361"
+"23738","acl31361",23738,"Looking at the way we're going, we are going to end up with separated states by race. All I want is for free-living folk to live long enough to see that they hath reaped what they've sewn. I think as that generation start retiring and entering old age they will realize their legacy has been that they have failed their nation and destroyed their country.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31360"
+"23739","acl31362",23739,"Can you see the news? whites are becoming a Minority in the U.S.. So how are we to react! Stop reproducing ourselves, help young whites to race mix even more to speed up the process of our own racial death, stop fighting for white rights and just be a punching bag for whatever group wants to now take a shot? Throw in the towel and call it quits? Let ourselves die?","hate","support","other.glorification","original","train",4,"iO6vHa6qJm","4a","acl31363"
+"23740","acl31363",23740,"Can you see the news? conservatives, white, brown and black, are becoming a minority in the U.S.. So how are we to react! Stop reproducing ourselves? help young conservatives to compromise even more to speed up the process of our own political death? stop fighting for our rights and just be a punching bag for whatever group wants to now take a shot? Throw in the towel and call it quits? Let ourselves die? hell no!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31362"
+"23741","acl31364",23741,"This kind of Negro behavior has flourished for thousands of years in Africa, and a dozen generations of them born in America as Americans will not cease their natural instincts to kill at-will anything or anyone","hate","derogation","bla, african","original","train",4,"iO6vHa6qJm","4a","acl31365"
+"23742","acl31365",23742,"This kind of behavior has flourished for thousands of years in Africa, and a dozen generations in America as politicians will not cease their natural instincts to take bribes from anything or anyone","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31364"
+"23743","acl31366",23743,"Covid vaccine? It's 100% sure that it's made by Gates. I know that for a certainty. And he is the worst enemy of the human race and wish us death. which is why I'm more than happy to let all the lefties take it first, kill them off","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl41042"
+"23744","acl31367",23744,"im v sorry but I can never see a person with sneakers on as smart. Call me whatever you want, but if i can tell someone is a smart and they are in the park (for example) i will feel shame, as will many, and we matter too.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31349"
+"23745","acl31368",23745,"Democrats controlling big cities with excessive African populations had policies that enabled Wuflu to spread. And Africans are programmed to eat poor diets leading to mega health issues. The only real surprise is that so few Africans die from Covid so far. Wish it was more.","hate","threatening","asi.chin, african","original","train",4,"iO6vHa6qJm","4a","acl31369"
+"23746","acl31369",23746,"Democrats controlling big cities with excessive populations had policies that enabled covid-19 to spread. And most people are programmed to eat poor diets leading to mega health issues. The only real surprise is that so few of them die from Covid so far. Wish it was more.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31368"
+"23747","acl3137",23747,"curry people should leave our country","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23748","acl31370",23748,"You must remember that these African IQs register as highly retarded compared to other races. You have creatures that survive on animal instinct.","hate","dehumanization","dis, african","original","train",4,"iO6vHa6qJm","4a","acl31371"
+"23749","acl31371",23749,"You must remember that African IQs register as highly intellectual compared to white counterparts. You are horrible to say they are creatures that survive on animal instinct.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31370"
+"23750","acl31372",23750,"No. It is clear that White people need to defend themselves. When a Black bastard approaches they will get shot in the face. Pure self defense. We need to cleanup just like they did in Bosnia. Every Black bastard in Ameica needs to die.","hate","threatening","bla","original","train",4,"iO6vHa6qJm","4a","acl31373"
+"23751","acl31373",23751,"No. It is clear that black people need to defend themselves. When a white bastard approaches they will get shot in the face. Pure self defense. We need to cleanup just like they did in Bosnia. Every racist bastard in Ameica needs to die.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31372"
+"23752","acl31374",23752,"To me, it seems that the jew orders the hit, and the nig nogs are the hitmen.","hate","derogation","bla, jew","original","train",4,"iO6vHa6qJm","4a","acl31375"
+"23753","acl31375",23753,"To me, it seems that the party leader orders the hit, and the party memebers are the hitmen.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31374"
+"23754","acl31376",23754,"There's about Billion Black People on Earth. Any effort to reduce that by 99% is something I support. The last thing we need are a billion more of them.","hate","threatening","bla","original","train",4,"iO6vHa6qJm","4a","acl31377"
+"23755","acl31377",23755,"There's about Billion Black People on Earth. Any effort to reduce that by 99% is something I oppose. The last thing we need are more racists.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31376"
+"23756","acl31378",23756,"Having less niggers would not be a bad thing. If this was true then I totally support it. Unlike what the media wants you to think, we don't like the niggers and really never have. There's a lot of us and if/when civil war pops off, you can bet we will finally end the 13% that has infested our country for good","hate","threatening","bla","original","train",4,"iO6vHa6qJm","4a","acl31379"
+"23757","acl31379",23757,"Having fewer people in the city would not be a bad thing. If this was true then I totally support it. Unlike what the media wants you to think, we don't like big crowded cities and really never have. There's a lot of us here and you can bet we would greatly benefit from moving to a smaller countryside village.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31378"
+"23758","acl3138",23758,"kalar people should leave our country","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23759","acl31380",23759,"Fuck off. Don't you know that Blacks are already enslaved by jewish propaganda to make them hate whites?","hate","derogation","bla, jew","original","train",4,"iO6vHa6qJm","4a","acl31381"
+"23760","acl31381",23760,"Fuck off. Don't you dare to say that Blacks are already enslaved by jewish propaganda to make them hate whites cause that's all BS","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31380"
+"23761","acl31382",23761,"""Blacks need to stop crying. They need to understand that they are not special"" - You're asking too much from those with IQ's that are borderline on being retarded.","hate","derogation","dis, bla","original","train",4,"iO6vHa6qJm","4a","acl31383"
+"23762","acl31383",23762,"""Blacks need to stop crying. They need to understand that they are not special""..are you for real...they can cry their eyes out for being persecuted (and still are being) for centuries!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31382"
+"23763","acl31384",23763,"Exactly. Got into an argument about the word cis. I was told it's not a slur, it just means non trans. I replied that there's already a perfectly good word to describe non trans women and it's women","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl31398"
+"23764","acl31385",23764,"Haha! I'm literally half-Black and even I absolutely hate with a passion the BLM terrorists, thugs and ""peaceful protestors"". They would all be face down in dead ditches, if it up to me.","hate","animosity","bla","original","train",4,"iO6vHa6qJm","4a","acl31386"
+"23765","acl31386",23765,"Haha! I'm literally half-Black so I absolutely hate with a passion anyone who referes to the BLM protestors as terrorists and thugs. They are just peaceful protestors. All the haters would all be face down in dead ditches, if it up to me.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31385"
+"23766","acl31387",23766,"They are violent animals with an IQ of 70 and don't let them within 10 feet of you! Treat them as if they were the plague and stay as far away from blacks as you can!","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31388"
+"23767","acl31388",23767,"They are violent animals with an IQ of 70 and don't let them within 10 feet of you! Treat them as if they were the plague and stay as far away from liberal yuppies as you can!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31387"
+"23768","acl31389",23768,"Another ANTIFA member arrested today who turned out to be, that's right you guessed it, a child molester. Every time and without exception, ANTIFA/BLM members turn out to have rape and/or pedo convictions on their records.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl39970"
+"23769","acl3139",23769,"I dont want curry people to stay in our country","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23770","acl31390",23770,"Everyday we see groups of gangs murder lone bystanders. They are feral animals and not full civilised humans, they act like the are in jungle tribes , probably because mentally they still are.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40370"
+"23771","acl31391",23771,"You are WRONG, The po-po did NOT kill that ugly stupid drug addicted negro. Eff the cops though; they let al of this happen. Finally WHITE MEN HAVE FAILED, FOR CENTURIES, TO KEEP THE PARASITES OUT!!","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31392"
+"23772","acl31392",23772,"You are WRONG, The po-po did NOT kill that ugly stupid food addict. Eff the cops though; they let al of this happen. Finally THEY HAVE FAILED, FOR CENTURIES, TO KEEP THE WAR OUT!!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31391"
+"23773","acl31393",23773,"Black Lives Matter is not organized by black women at all. It is actually organized by Jews who are using it as a front against America which was built by whites. It is essentially a Jewish terrorist organization who are using blacks by making them think they are fighting oppression and inequality except there is no oppression and inequality is because their race and our race are not the same.","hate","derogation","bla, jew","original","train",4,"iO6vHa6qJm","4a","acl40709"
+"23774","acl31394",23774,"when a trashy woman from a broken family cannot find any meaning in life and isn't valued much by whites, then it seems only natural for her to go after lesser humans. That's why we see so many white women traitors mixing with these blacks","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31395"
+"23775","acl31395",23775,"when a trashy man from a broken family cannot find any meaning in life and isn't valued much by peers, then it seems only natural for him to go after internet forums. That's why we see so many white bois posting cringe on 4chan","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31394"
+"23776","acl31396",23776,"we r not the same. whity can fly nigr0$ they crawl.","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl31397"
+"23777","acl31397",23777,"we r not the same. Bt we aint that different, the colur of skin dnt defines us.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31396"
+"23778","acl31398",23778,"Exactly. Got into an argument about the word cis. I was told it's a slur that means non trans. I replied that there's already a perfectly good word to describe non trans women and it's cis!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31384"
+"23779","acl31399",23779,"Nothing to apologise about. Men aren't women and it's absurd that this is even up for debate","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31413"
+"23780","acl314",23780,"this government is rubbish","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"23781","acl3140",23781,"I dont want kalar people to stay in our country","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23782","acl31400",23782,"As far as im concerned, blacks are not fully evolved human beings, they prove it hundreds of times a day on every nation on this planet, they are sub-humans who should be treated like all vermin infestations, like rats, fleas, we need a good exterminator","hate","dehumanization","bla","original","train",4,"iO6vHa6qJm","4a","acl31401"
+"23783","acl31401",23783,"As far as I'm concerned, men are not fully evolved human beings, they prove it hundreds of times a day on every nation on this planet, they are always teenagers at mind who should be treated as such.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31400"
+"23784","acl31402",23784,"Herschel the jewbag
+had a greedy, kikey soul
+With a big hook nose and nappy fro, and a soul made of coal","hate","derogation","bla, jew","original","train",4,"iO6vHa6qJm","4a","acl31403"
+"23785","acl31403",23785,"Herschel the bag had a greedy, compartment. With a big hook zip and nappy strap, and a soul made of coal","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31402"
+"23786","acl31404",23786,"i know the arrogant Saudis will go “Wtf?” haha","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31405"
+"23787","acl31405",23787,"i know the arrogant Westerners will go ''Wtf?' haha","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31404"
+"23788","acl31406",23788,"Can't wait to see the Middle East to become civilized and be Monaco in the desert ha ha ha","hate","animosity","arab","original","train",4,"vDe7GN0NrL","4a","acl39240"
+"23789","acl31407",23789,"well my friend, you certainly won’t get put to death for being gay in Israel like you would in some other countries in the
+Middle East","hate","animosity","arab","original","train",4,"vDe7GN0NrL","4a","acl31408"
+"23790","acl31408",23790,"well my friend, you certainly won't get put to death for being ignorant in Israel or any other countries in the
+Middle East","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31407"
+"23791","acl31409",23791,"It is a trail of tears, but fair point. just try and imagine openly gay in Syria and tell me how you do","hate","animosity","arab","original","train",4,"vDe7GN0NrL","4a","acl31410"
+"23792","acl3141",23792,"our household has become full of curry because of our new curry neighbour","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23793","acl31410",23793,"It is a trail of tears, but fair point. just try and imagine being openly gay in Alabama and tell me how you do","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31409"
+"23794","acl31411",23794,"do you really think a gay Palestinian in Gaza does well?!","hate","animosity","arab","original","train",4,"vDe7GN0NrL","4a","acl31412"
+"23795","acl31412",23795,"do you really think a Palestinian in Gaza does well?!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31411"
+"23796","acl31413",23796,"Nothing to apologise about. They aren't children and it's absurd that this is even up for debate","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31399"
+"23797","acl31414",23797,"Cis annoys me as well as its always used by their community in a derogatory way along with the fact, as you say, woman or man is perfectly adequate to describe someone who identifies with their birth gender. Im actually quite sick of it being pushed. If you choose to be different thats on you. I find it baffling coming from the generation that pushed for gender equality and gender doesnt define you etc that suddenly its so important that people get upset that they arent the other gender.","hate","animosity","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31425"
+"23798","acl31415",23798,"hey poor Lebanon, Lebanese tore Lebanon apart over sectarianism. Many Arabs in the Middle East love taking no responsibility and blaming
+outsiders this happens in my country too","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31416"
+"23799","acl31416",23799,"Poor Lebanon, it has been torn apart over sectarianism. Many leaders in the Middle East love taking no responsibility and blaming outsiders. this happens in my country too","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31415"
+"23800","acl31417",23800,"urgh , buddy, it's literally in the Quran that non-Muslims aren't allowed. It's got nothing to do with Neo-Wahhabists. Non-Muslims ain't entering that place as long as
+Muslim's exist","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31418"
+"23801","acl31418",23801,"urgh , buddy, it's literally in the Quran that terrorism isn't allowed. It's got nothing to do with Neo-Wahhabists. Non-Muslims entering Muslim lands should be safe as long as Muslims exist","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31417"
+"23802","acl31419",23802,"Aw then its okay for tourists to nose around ancient cathedrals but not Mecca all day and during mass?","hate","animosity","mus","original","train",4,"vDe7GN0NrL","4a","acl31420"
+"23803","acl3142",23803,"our household smells curry because of our new curry neighbour","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23804","acl31420",23804,"Its okay for tourists to nose around ancient cathedrals during mass but not Mecca all day.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31419"
+"23805","acl31421",23805,"for goodness sake, fortress Europe now! Send them back. All of them. They are ruining Europe and don't give a f*ck. They just want government paychecks for the rest of their lives","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31422"
+"23806","acl31422",23806,"for goodness sake, open Europe now! Let them in. All of them. Politicians are ruining Europe and don't give a f*ck. They just want government paychecks for the rest of their lives","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31421"
+"23807","acl31423",23807,"let me be honest, If you are rich enough to travel you are not a refugee. Go through the propper immigration process like everyone else or stay in a safe country in Asia","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31424"
+"23808","acl31424",23808,"let me be honest, If you are rich enough to travel you are not broke. Go through the propper border process like everyone else or stay in a safe location at home","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31423"
+"23809","acl31425",23809,"Cis annoys me as well as its often used in a derogatory way along with the fact that, as you say, woman or man is perfectly adequate to describe someone who identifies with their birth gender. Im actually quite sick of it being labelled. If you choose to identify differently thats your choice. I find it baffling coming from the generation that pushed for gender equality and the idea that gender doesnt define you etc that suddenly its so important that people get upset that they arent the other gender.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31414"
+"23810","acl31426",23810,"Back when I was a commie and extremely open-minded, I went on a date with this woman. She gave me the creeps and I never contacted her again. For her sake, I hope she's wised up and managed to grow up before wrecking her body.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31262"
+"23811","acl31427",23811,"i mean, yes. consider how delusional you have to be to even think transgenderism is a civil rights issue instead of a mental health issue.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31564"
+"23812","acl31428",23812,"if transwomen weren’t born Male, what were they born as? Aliens? Because they’re certainly not female! I’ve said it before and I’ll say it again, biology doesn’t give a shit about gender identity. Sad that people who are supposedly smart and well educated will blindly spout such nonsense with a straight face.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31442"
+"23813","acl31429",23813,"I am serious man, I'm not blaming you. I know most refugees are just regular folks trying for a better life. But there's a billion people waiting to come. We simply can't afford to pay them for the
+ rest of their lives. The massive quantity of refugees is the problem. Every years the population in the so called third world increases, they get more children every year. And all these guys do is
+ blame the west and move to a place they hate instead of improving their home. We could even help financially to improve your home country, but so far this didn't work either. You guys didn't
+come up with a working plan, and if we make one you blame us for post colonialism","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31430"
+"23814","acl3143",23814,"our household smells kalar because of our new curry neighbour","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23815","acl31430",23815,"I am serious man, I'm not blaming you. I know most refugees are just regular folks trying for a better life. But there's a billion people waiting to come. We simply can't afford to pay them for the rest of their lives. The massive quantity of refugees is the problem. Every years the population in the so called 'third world' increases, they get more children every year. And all these guys do is
+ blame the west which i can somewhat empathise with globalisation and such. But they move to a place they hate instead of improving their home . We could even help financially to improve your home country, but so far this didn't work either.
+come up with a working plan, and if we make one you blame us for post colonialism","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31429"
+"23816","acl31431",23816,"Please guys, just let us work something out without billion refugees invading and destroying the wealthy nations and make every place on earth miserable","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31432"
+"23817","acl31432",23817,"Please guys, just let us work something out without deluded people thinking 'billion refugees invading and destroying the wealthy nations and make every place on earth miserable', like what a stupid and offensive opinion","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl31431"
+"23818","acl31433",23818,"please government Send the tents to the border, do not let them in. Europe has enough islamists already","hate","derogation","mus, ref","original","train",4,"vDe7GN0NrL","4a","acl39241"
+"23819","acl31434",23819,"please simply just, sail back to Lybia","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31435"
+"23820","acl31435",23820,"please simply just, sail back to the coast","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31434"
+"23821","acl31436",23821,"oh fantastic, Mediterranean death toll tops 900 after four shipwrecks in three days, IOM warns: The Open Arms NGO rescue ship, now carrying 259 refugees, ordered to sail to Sicily","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31437"
+"23822","acl31437",23822,"oh god im devastated: Mediterranean death toll tops 900 after four shipwrecks in three days, IOM warns: The Open Arms NGO rescue ship, now carrying 259 refugees, ordered to sail to Sicily","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31436"
+"23823","acl31438",23823,"you know that there are millions just like you, and millions more and more born every month. If we let all of you in it would be no better than where you came from. excuse me but refugees brought terror
+rape and sharia law, this can not continu","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31439"
+"23824","acl31439",23824,"you know that there are millions just like them, and millions more and more reproducing every month. If we don't sanitize then it will take over and so many more will die at their hands.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31438"
+"23825","acl3144",23825,"Ruth Davidson made a complete arse of herself trying to conjure up a mischievous story that the FM was involved in","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23826","acl31440",23826,"honestly, there are 1 billion people on this planet waiting to emigrate. Do you think this could work? No, you guys would ruin the nice places and keep moving to the last Spots that are nice until there
+are none anymore","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31441"
+"23827","acl31441",23827,"honestly, there are 1 billion people on this planet waiting to emigrate. Do you think this could work with climate change? Maybe, but you guys would keep moving to the other places that are free until there is no flying anymore.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31440"
+"23828","acl31442",23828,"""if transwomen weren't born Male, what were they born as? Aliens? Because they're certainly not female! I've said it before and I'll say it again, biology doesn't give a shit about gender identity."" It's so sad that people who are supposedly smart and well educated will blindly spout this kind of nonsense, open your mind","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31428"
+"23829","acl31443",23829,"Also what gets me is that the language and goalposts seem to change on an almost daily basis. I thought it was fine to say ""identify as"" but now that's apparently transphobic. It's impossible to keep up. Someone could use a phrase that was perfectly acceptable one day and then find themselves being called transphobic the next. There is no consistency whatsoever","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl39242"
+"23830","acl31444",23830,"buddy let me tell you If you are an economic migrant you have every right to come to Europe. If you are genuinely fearing for your life, as an individual, due to religious or immutable factors you are a
genuine refugee.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40887"
+"23831","acl31445",23831,"Oh wow, another one trying to abuse the immigrations system","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl31446"
+"23832","acl31446",23832,"Oh wow, another one trying to abuse the political system","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31445"
+"23833","acl31447",23833,"I am really confused, these people travel through Europe to get into the UK. By international law, they must ask for asylum in the first safe country they reach thus travelling through Europe is illegal,
+entering the UK is illegal. We do have laws because that's what keeps up order, protects us etc. You wouldn't want to free a murderer or say allow a bank robber to walk free, would you ? Than why
+anyone in their right mind protests against government decisions to deport every single one of these migrants who enter illegally the country ? Not a single one of those who cross the channel has a
+right to seek asylum in the UK yet many allowed to stay and people complain if some gets deported when in theory all of them should be. Why ? Any explanations ?","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31448"
+"23834","acl31448",23834,"I am really confused, these people travel through Europe to get into the UK. By international law, they must ask for asylum in the first safe country they reach but they dont let them stay thus travelling through Europe is considered illegal, entering the UK is illegal. We do have laws because that's what keeps up order, protects us etc. You wouldn't want to free a murderer or say allow a bank robber to walk free, would you ? but this is different. Than why anyone in their right mind doesnt protest against government decisions to deport every single one of these migrants who enter the country ? Not a single one of those who cross the channeldeserves to have to seek asylum in the UK yet many have to stay and people complain if they dont get deported when in theory all of them should be free anyway. Why ? Any explanations ?","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31447"
+"23835","acl31449",23835,"one reason for helping illegal migrants is the original refugee law was that you'd just help these people, created when a lot of Europeans were fleeing in WW2","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl31450"
+"23836","acl3145",23836,"our neighbour was cooking and what we can smell is just curry and it smells not nice","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"23837","acl31450",23837,"one reason for helping illegal migrants in the original refugee law was that you'd just help these people, just the same way other people helped a lot of Europeans when they were fleeing in WW2","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31449"
+"23838","acl31451",23838,"oh buddy honestly, these people have a country, and in each country people en masse can decide the fate of given country, they can turn over political parties , overrun the army, they can do anything.
+That said, these people coming with their mobile phones, cash and fairly good looking clothes just choosing an easy way and free money from the UK, this should be discouraged. But most importantly,
+why would anyone have sympathy with people turning their back on their country and fellow citizens ? They are in good physical shape, should be home sorting matters out. I can't have any sympathy
+ towards them","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31452"
+"23839","acl31452",23839,"oh buddy honestly, these people have a country, and in each country people en masse can decide the fate of given country, they can turn over political parties , overrun the army, they can do anything.
+That said, these people coming with their mobile phones, cash and fairly good looking clothes just choosing to live in the UK, this should not be discouraged. But most importantly,
+why would anyone have sympathy with people who hate on immigrants? it's like turning their back on their fellow neighbours! They are in good physical shape, and contribute to our country as well. I can't have any sympathy for haters.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31451"
+"23840","acl31453",23840,"hey we should act fast, fast decision fast result","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40626"
+"23841","acl31454",23841,"I believe all countries should charge them 100000000000$ per day. Stay in your country or come with an employment contract.Western countries need to stop bombing them and stop taking them in , period,
+no expemtions should be made.","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl31455"
+"23842","acl31455",23842,"I believe all countries should pay them 10$ per day. Let them survive but incentivise getting a job forthose who don't come with an employment contract. Western countries need to stop bombing them but keep taking them in, period,
+no expemtions should be made.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31454"
+"23843","acl31456",23843,"well let me be honest, ""Open Borders"" is not a good slogan - Change the conversation on immigration!","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl39892"
+"23844","acl31457",23844,"believe me Arab Sheikhs are the biggest scum on this planet, they call themselves Muslims and at the same time finance wars between several Muslim countries. The Arab world could be a united one if it wasn't
+lead by the biggest psychopaths on this planet","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31458"
+"23845","acl31458",23845,"believe me Arab governments are the biggest joke on this planet, they call themselves democratic and at the same time finance wars between several Muslim countries. The Arab world could be a united one if they weren't lead by the biggest traitors on this planet.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31457"
+"23846","acl31459",23846,"looking for an answer, What makes arab sheikhs the biggest psychopaths on this planet?","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31460"
+"23847","acl3146",23847,"you better get your finger out yer arse and tell me whats happening with my exams","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23848","acl31460",23848,"looking for an answer, What makes you think arab sheikhs are the biggest psychopaths on this planet?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31459"
+"23849","acl31461",23849,"I dont understand how are the refugees supposed to come during a global pandemic we are only mildly stupid","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31462"
+"23850","acl31462",23850,"I dont understand how are the refugees supposed to live during a global pandemic we are only mildly stupid","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31461"
+"23851","acl31463",23851,"I've got an idea, let's open a Douchebag Asylum. We can call it Tyler and Chad's Home For Wayward Chodes.Instead of priests they have gym coaches.You confess, but all they do is punch your nuts","hate","derogation","asylum","original","train",4,"vDe7GN0NrL","4a","acl31464"
+"23852","acl31464",23852,"I've got an idea, let's open a Douchebag Asylum. We can call it the Arses' Home For Wayward Chodes.Instead of priests they have gym coaches.You confess, but all they do is punch your nuts","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31463"
+"23853","acl31465",23853,"just check this out Aww Look at him crying like the bitch he is","hate","derogation","wom","original","train",4,"vDe7GN0NrL","4a","acl31466"
+"23854","acl31466",23854,"just check this out Aww Look at him crying like the simp he is","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31465"
+"23855","acl31467",23855,"I've got a better headline, 'Texas man cries like a little beeotch after lengthy racist tirade""","hate","animosity","wom","original","train",4,"vDe7GN0NrL","4a","acl40868"
+"23856","acl31468",23856,"seriously this guy is so weak behind his tough guy shouting and ball scratching lol they're all the same when Johnny law catches up with them","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40666"
+"23857","acl31469",23857,"So Emma Willis put a photo of her son on IG... when I saw people say she posted a photo of there I spent ages looking at the photo wondering where he was and then realised he is in the pink... He is 9 years old or so. WTF. I am sorry but I think it is awful for parents to almost ""encourage"" this behavior when a child is so young and absorbs stuff like a sponge. The way things are going and children are actually groomed to be trans/non binary, I would be horrified if my child was like this at that age.","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31478"
+"23858","acl3147",23858,"They well and truly made an arse of that one eh?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23859","acl31470",23859,"everything else is still not as bad as beheadings, stoning of gay people, living in cities built by slaves as recently as 2010.Unnecessary false equivalence","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31471"
+"23860","acl31471",23860,"""everything else is still not as bad as beheadings, stoning of gay people, living in cities built by slaves as recently as 2010"". Unnecessary false information.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31470"
+"23861","acl31472",23861,"oh wow, kind of ironic that this backward rule actually has meant that heterosexual couples have lesser rights than same sex couples. Can't this be overturned just on grounds if equality?","hate","animosity","gay","original","train",4,"vDe7GN0NrL","4a","acl31473"
+"23862","acl31473",23862,"oh wow, kind of ironic that this backward rule actually has meant that homosexual couples must have lesser rights than opposite sex couples. Can't this be overturned just on grounds if equality?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31472"
+"23863","acl31474",23863,"Oh God I am pretty sure every dominate Muslim majority country are ALL oppressors, name one country that’s Muslim dominated that doesn’t treat their women like dirt","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31475"
+"23864","acl31475",23864,"Oh God I am pretty sure every current dominate liberal majority country were ALL oppressors, name one country that' the British dominated that didn't treat their people like dirt","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31474"
+"23865","acl31476",23865,"Buddy the same here. I literally want to run away because the moment I turn 18 my father will force me to marry some muslim lowlife. I hate it","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31477"
+"23866","acl31477",23866,"Buddy the same here. I literally want to run away because the moment I turn 18 my father will force me to marry some randomer. I hate it","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31476"
+"23867","acl31478",23867,"So Emma Willis put a photo of her son on IG... when I saw people say she posted a photo of there I spent ages looking at the photo wondering where he was and then realised he is in the wearing camo... He is 9 years old or so. WTF. I am sorry but I think it is awful for parents to almost ""encourage"" this behavior when a child is so young and absorbs stuff like a sponge. The way things are going and children are actually groomed to be militaristic, I would be horrified if my child was like this at that age.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31469"
+"23868","acl31479",23868,"As far as gender norms go for colours, pink is ok if boys like it but encouraging them to dress a whole outfit like a typical little girl at that sort of age is almost guaranteeing them being picked on, in my view. 8 year olds can be ruthless with one another.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl39243"
+"23869","acl3148",23869,"The 'distracted boyfriend' meme just got its arse kicked by this 'distracted girlfriend'!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23870","acl31480",23870,"just to be fair enough, Muslim dominant countries tend to correlate with extreme cultural repression especially when we westerners got involved politically during the Cold War and gulf wars.
+I don’t blame OP for hating the bullshit (s)he has to deal with. I’m from a different type of brown and the shit that goes on in certain parts of India makes me feel the exact same way as him/her","hate","derogation","mus, asi.south","original","train",4,"vDe7GN0NrL","4a","acl31481"
+"23871","acl31481",23871,"just to be fair enough, certain countries with dictatorial regimes tend to correlate with extreme cultural repression especially when we westerners got involved politically during the Cold War and gulf wars.
+I dont blame OP for hating the bullshit (s)he has to deal with. Im from a different type of brown and the shit that goes on in certain parts of my country makes me feel the exact same way as him/her","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31480"
+"23872","acl31482",23872,"have you heard of Xenophilia? it is nothing short of a mental illness, we need to start treating it as such","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31483"
+"23873","acl31483",23873,"have you heard of the new craze, carrying dogs around in handbags? it is nothing short of ridiculous, we need to start treating it as such","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31482"
+"23874","acl31484",23874,"you know what refugees can't outrun corruption","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31485"
+"23875","acl31485",23875,"you know what conservatives can't outrun corruption","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31484"
+"23876","acl31486",23876,"Canada must accept minorities as refugees: wow Canada wants blacks and retards. I suggest you go while you can","hate","derogation","dis, bla, ref","original","train",4,"vDe7GN0NrL","4a","acl31487"
+"23877","acl31487",23877,"Canada must accept minorities as refugees: wow Canada wants to become the most welcoming country. I suggest you go there while you can","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31486"
+"23878","acl31488",23878,"hey this is new: sexual penetration = violent knife-y penetration is an old old theory among feminists since the first-wave. Usually promoted by lesbians or, you know, the type of feminist (~99% of them) that
+nobody would ever WANT to penetrate, and therefore has no basis for comparison","hate","derogation","gay.wom","original","train",4,"vDe7GN0NrL","4a","acl31489"
+"23879","acl31489",23879,"hey this is new: sexual penetration theory has been among feminists since the first-wave. Usually promoted by them exclusively and therefore has no basis for comparison","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31488"
+"23880","acl3149",23880,"Got this pathetic excuse for a human being spreading hate on my channel, making a bit of a arse of himself to say the least","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23881","acl31490",23881,"hey why dont you stab a bitch with your penis","hate","threatening","wom","original","train",4,"vDe7GN0NrL","4a","acl31491"
+"23882","acl31491",23882,"hey why dont you stab that plonker?","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31490"
+"23883","acl31492",23883,"It's when adults around them start filling their heads with ideas of being born 'in the wrong body' or they're sold the lie that they can become a boy/girl, that it starts to get dangerous. Let these kids like what they like without putting labels on them.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl31507"
+"23884","acl31493",23884,"so you're saying, if l raped him on a daily basis, but then prayed at the end for forgiveness, Allah would have to forgive me and be cool about it, right?","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31494"
+"23885","acl31494",23885,"so you're saying, if l raped him on a daily basis, but then apologised at the end for forgiveness, he would have to forgive me and be cool about it, right?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31493"
+"23886","acl31495",23886,"let me tell you my friend that's how its with Hispanic/mexican armys a shit ton of them are biphobic and panphobic","hate","derogation","notargetrecorded","original","train",4,"vDe7GN0NrL","4a","acl31496"
+"23887","acl31496",23887,"let me tell you my friend that's how its with recovering addicts, a shit ton of them are paranoid and panphobic","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31495"
+"23888","acl31497",23888,"hey this is true It all started with the Arabs and Europeans, they spread that anti-blackness like wildfire","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31498"
+"23889","acl31498",23889,"hey this is true It all started with the gammons and karens, they spread that anti-blackness like wildfire","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31497"
+"23890","acl31499",23890,"I am just wondering is it even an arab family if there isnt at least 7 mohammeds and 3 ahmeds?","hate","derogation","mus, arab","original","train",4,"vDe7GN0NrL","4a","acl39889"
+"23891","acl315",23891,"The NHS is crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"23892","acl3150",23892,"she said Boris can stick his rules up his arse she will do as she wants as she has had a great life, wont wear a mask and goes out a lot for walks, bless her","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23893","acl31500",23893,"not afraid to say it I am anti-colonialism, IF YOU ARE AFRICAN (whites , arabs, chinese) YOU ARE HAVE EVERY RIGHT TO BE HERE","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40289"
+"23894","acl31501",23894,"I dont know why are so many arabs anti black :/","hate","animosity","arab","original","train",4,"vDe7GN0NrL","4a","acl31502"
+"23895","acl31502",23895,"I dont know why are so many people anti black :/","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31501"
+"23896","acl31503",23896,"this is so true slavery in the Arab world is literally why anti-Blackness racism overt in the Arab world. Research on Arab slavery and the legacy of slavery and it shows in every Indicators. Let’s ask Black People
+ in the Arab world how good Arab slavery was for them?","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31504"
+"23897","acl31504",23897,"this is so true slavery in the capitalist world is literally why anti-capitalist attitude is overt in the capitalist world. Research on capitalist slavery and the legacy of slavery and it shows in every Indicators. Let's ask Black People in the racist world how good slavery was for them?","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31503"
+"23898","acl31505",23898,"I should say that the Arab slave trade was even worse","hate","animosity","arab","original","train",4,"vDe7GN0NrL","4a","acl31506"
+"23899","acl31506",23899,"I should say that the U.S. slave trade was even worse","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31505"
+"23900","acl31507",23900,"It's when adults around them start filling their heads with ideas of being born the wrong sexuality or theyre sold the lie that they can't like boys/girls, that it starts to get dangerous. Let these kids like who they like without putting labels on them.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31492"
+"23901","acl31508",23901,"honestly, In the ancient world slavery was engraved in the culture compared to the west now","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40606"
+"23902","acl31509",23902,"thats right, in Mauritania the slaves tend to be from the Manding groups closer to those in Senegal and sotuhern Mali whilst the masters are mor from Arab/Berber stock. And the larger Haratini occupying the
+middle","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31510"
+"23903","acl3151",23903,"You are a traitor to you own people & country - stick your tests up your arse & GO TO HELL!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23904","acl31510",23904,"thats right, in Mauritania the slaves tend to be from the Manding groups closer to those in Senegal and sotuhern Mali whilst the masters are mor from Arab/Berber stock. And the larger Haratini occupying the middle...this method of slavery is abhorrent.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31509"
+"23905","acl31511",23905,"Yeah we understand that Arabs are liars yes we understand that","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31512"
+"23906","acl31512",23906,"Yeah we understand that you're saying Arabs are liars, yes we understand that you're an idiot","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31511"
+"23907","acl31513",23907,"I will be really honest, If you ask if I think that Christianity and Judaism is much better than Islam the answer is...NO","hate","derogation","mus, jew","original","train",4,"vDe7GN0NrL","4a","acl39245"
+"23908","acl31514",23908,"for God's sake, the arabs love affair between dictatorship or theocracy has to end before we can have a true beginning to an arab spring","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31515"
+"23909","acl31515",23909,"for God's sake, the US love affair between dictatorship or theocracy has to end before we can have a true beginning to an arab spring for the arab people","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31514"
+"23910","acl31516",23910,"excuse me but They are mostly all single Muslim males who bypassed many safe countries. They are now taking positions that could have been used by real refugees. Hegira or Hijra - means Rewarded in
+heaven for migrating and spreading Islam","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31517"
+"23911","acl31517",23911,"excuse me but They are mostly all single males who bypassed many safe spaces. They are now taking positions that could have been used by real in need. They think they be rewarded in heaven for spreading this","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31516"
+"23912","acl31518",23912,"these two should not have to live like refugees !","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl39992"
+"23913","acl31519",23913,"just bearing in mind how fast boat people multiply is gold","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31520"
+"23914","acl3152",23914,"You FAILED.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23915","acl31520",23915,"just bear in mind how fast rabbits can multiply, consider spaying your pet","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31519"
+"23916","acl31521",23916,"hey i think refugees must be treated with respect, not put in concentration camps, brainwashed and programmed","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40392"
+"23917","acl31522",23917,"Imagine if Gillette got loads of stick for their razor tag line being 'the best a man can get? haha Hey Gillette, its not just men who have beards you know. Where's the outcry there?","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40206"
+"23918","acl31523",23918,"Oh Jesus christ man. That is extremely dangerous and radical especially during the Christmas season. Of course there are some good guys among refugees but there are troublemakers as well. A proper
+screening process needs to be in place","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31524"
+"23919","acl31524",23919,"Oh Jesus christ man. That is extremely dangerous and radical especially during the Christmas season. Of course there are some good guys among the protestors but there are troublemakers as well. A proper screening process for COVID needs to be in place or risk taking refuge in prison.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31523"
+"23920","acl31525",23920,"yay exciting No More Mega Project On Indus River System. Sent All Refugees Back to Their Countries","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31526"
+"23921","acl31526",23921,"yay exciting! No More Mega Project On tax funded Indus River System. But the downside is All Refugees will get sent Back to Their Countries! :(","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31525"
+"23922","acl31527",23922,"could you imagine saying that an ISIS member is more heroic than our veterans!!! How insulting!!!","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31528"
+"23923","acl31528",23923,"could you imagine saying that the preisdent is more heroic than our veterans!!! How insulting!!!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31527"
+"23924","acl31529",23924,"what shall i say, just fuck your heaven and fuck your afterlife. If a God exists and he rewards people this speaker just described, then your God isn't worthy of any worship. I will go to hell gladly knowing I lived
+a life of kindness and compassion for all humans and life instead of hurting others and just praying to make up for my actions","hate","animosity","mus","original","train",4,"vDe7GN0NrL","4a","acl31530"
+"23925","acl3153",23925,"This is all that he cares about and will act as a huge kick up the arse.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23926","acl31530",23926,"what shall i say, just fuck your heaven and fuck your afterlife. If a God exists and he rewards people this speaker just described, then your God isn't worthy of any worship. I will go to hell gladly knowing I lived","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31529"
+"23927","acl31531",23927,"To add to that, if you call another mate, he get jealous. This is literally the biggest major sin","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40865"
+"23928","acl31532",23928,"Oh just given these kind of morals, we should push the following thoughts to Muslims: Maybe Mo was manipulated by Shaytan and Allah wants to see who will be evil/stupid enough to follow this philosophy.
+And whoever does, goes to hell. Since Muslims sometimes argue that ExMuslims are being misguided by Shaytan, without us realising it, it's just as possible that Mo was misguided by Shaytan. No one can
+prove otherwise","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31533"
+"23929","acl31533",23929,"Oh just given these kind of morals, we should push the following thoughts to viewers: Maybe Trump was manipulated by Russians and Antifa wants to see who will be evil/stupid enough to follow this philosophy.
+And whoever does, goes to prison. Since MAGA sometimes argue that Democrats are being misguided by Biden, without us realising it, it's just as possible that Donald was misguided by Putin. No one can prove otherwise","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31532"
+"23930","acl31534",23930,"all we need to do is to kick the niggers and kikes out. Masonries beheaded and niggers castrated","hate","threatening","bla, jew","original","train",4,"vDe7GN0NrL","4a","acl31535"
+"23931","acl31535",23931,"all we need to do is to kick the teenagers and their kites out. adolescents beheaded and thugs castrated","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31534"
+"23932","acl31536",23932,"I am just being honest, the girl wearing the hijab looks very cool, and she is hot! Too bad she is engaged with that nerd","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40037"
+"23933","acl31537",23933,"International pronouns day is a real thing? Cool.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40786"
+"23934","acl31538",23934,"I can assure you that the Arabs will soon be irrelevant when the oil stops they all go in the shat hole for good, they will not be sustainable on tourism, and banking alone can't wait for it to happen their real
+ weakness is water and they hide that fact very well from the rest of the world, that is why you see so many lavish water fountains and displays in the wealthy Arab countries, they are trying to give the impression
+ that there is no water problems","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31539"
+"23935","acl31539",23935,"I can assure you that the they will soon be irrelevant when the factories stops they all go in the shat hole for good, they will not be sustainable on tourism, and banking alone can't wait for it to happen their real
+ weakness is their numbers and they hide that fact very well from the rest of the world, that is why you see so many lavish buildings and displays in the wealthy countries, they are trying to give the impression
+ that there is no manafacturing problems.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31538"
+"23936","acl3154",23936,"Stop wondering why the GOP bows down and kisses Trumps ample arse","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23937","acl31540",23937,"when you compare anything to those primitives anyone else is supreme. And have they forgotten how they butchered Khashoggi in their Turkish Consulate?","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl39246"
+"23938","acl31541",23938,"Oh God here you go disgusting jews","hate","derogation","jew","original","train",4,"vDe7GN0NrL","4a","acl31542"
+"23939","acl31542",23939,"Oh God here you go disgusting zealot.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31541"
+"23940","acl31543",23940,"Oh my Goodnees, man rly said boot refugges h1bvisa and those who tried to bring them in and goto africa and stop ships","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl39921"
+"23941","acl31544",23941,"These niggers breed like rabbits","hate","dehumanization","bla","original","train",4,"vDe7GN0NrL","4a","acl40321"
+"23942","acl31545",23942,"Goddamn beasts eating dead cow raw. Lowly creatures! They need discipline; they need the whip! Foolishness is in the heart of the wog. The rod of correction shall beat it far, far away!","hate","dehumanization","bla","original","train",4,"vDe7GN0NrL","4a","acl40077"
+"23943","acl31546",23943,"I seriously wanna almost go back to the articles 5 years ago where commenters were 100% sure this would lead to massive terrorism, rampant crime, and the end of Canada as we know it","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31547"
+"23944","acl31547",23944,"I seriously wanna almost go back to the articles 5 years ago where these idiots were 100% sure this would lead to massive terrorism, rampant crime, and the end of Canada as we know it","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31546"
+"23945","acl31548",23945,"this is ridiculous and dangerous. I hear people joking that they are guaranteed heaven because they believe in God or some other ethereal being and can repent. So they laugh when they sin and do bad shit","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39975"
+"23946","acl31549",23946,"I ll bring the shovel to destroy this bigots face","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40477"
+"23947","acl3155",23947,"Word of warning. Out there they call them fanny packs cos fanny means your arse over there.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23948","acl31550",23948,"""I'll be protecting my mental health"" can we talk for a second about how all these people are so fragile, can we wonder if maybe it is their mental health? If being depressed in itself is part of a bigger mental health problem? Just thoughts.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40437"
+"23949","acl31551",23949,"I'll bring the chainsaw to destroy this sheikh's face","hate","threatening","mus","original","train",4,"vDe7GN0NrL","4a","acl31552"
+"23950","acl31552",23950,"I'll bring the chainsaw to destroy this dudes face","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31551"
+"23951","acl31553",23951,"an abolishment is much needed in Islamophobia","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40214"
+"23952","acl31554",23952,"More like discarding the whole Muslim cult","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31555"
+"23953","acl31555",23953,"More like discarding the whole myth about Muslims being part of a cult","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31554"
+"23954","acl31556",23954,"you know what the high rates of drug crime by South Asians in the Vancouver area are sort of a mystery, for example. They're well off, societal acceptance isn't really an issue - not nearly to the extent it is in
+ Europe - they're not excluded from careers and legitimate alternatives to gain status, etc","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl40614"
+"23955","acl31557",23955,"
+its true some would argue that the Canada we have today is completely unrecognizable from the country we had 5 years ago, ""bEfOrE tUrDeAu
+","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl31558"
+"23956","acl31558",23956,"""its true some would argue that the Canada we have today is completely unrecognizable from the country we had 5 years ago, """"bEfOrE tRuDeAu""","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31557"
+"23957","acl31559",23957,"you know we also have the atlantic ocean separating us so we can pick and chose who we accept and dont. as well as be able to do more vetting","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl31560"
+"23958","acl3156",23958,"You have an 80 seat majority with 29% of the available vote and most peoples votes don't count. Mother of Parliaments, my arse.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23959","acl31560",23959,"you know we also have the atlantic ocean separating us so we have a more robust immigration system, which yeh I agree does have it's own flaws, but not as bad as yours.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31559"
+"23960","acl31561",23960,"well to be honest if we go buy the situation i mentioned in france we might not know the full effects for 20-40 years and seeing the outcomes of their kids raised in canada","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl31562"
+"23961","acl31562",23961,"well to be honest if we go buy the situation i mentioned in france we might not know the full effects for 20-40 years and seeing the outcomes of the tests in canada","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31561"
+"23962","acl31563",23962,"100% this the whole thing scares the shit out of me. I'm trying to lay the groundwork now to try and help my girls be more resilient to this catcalling nonsense as they get older, who knows if it will make any difference in the long run though","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40375"
+"23963","acl31564",23963,"i mean, yes. consider how delusional you have to be to even think transgenderism isn't a civil rights issue and is instead a mental health issue.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31427"
+"23964","acl31565",23964,"WTF. A women sports player is allowed to speak on womens sports FFS. I am getting angrier and angrier about these identity politics. Even male chauvinists recognise women can speak about womens sports and can use womens only spaces FFS! They might think they are somehow superior but they don't deny women exist! Madness","hate","derogation","gendermin","original","train",4,"TbUBpfn6iP","4a","acl31580"
+"23965","acl31566",23965,"urgh Poo homosex","hate","derogation","gay","original","train",4,"vDe7GN0NrL","4a","acl31567"
+"23966","acl31567",23966,"urgh Poo analsex","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31566"
+"23967","acl31568",23967,"lets destroy w*men rights inshallah","hate","derogation","wom","original","train",4,"vDe7GN0NrL","4a","acl31569"
+"23968","acl31569",23968,"lets destroy terrorism inshallah","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31568"
+"23969","acl3157",23969,"This is my WFH Arsehole Cat. The routine is to go out in the rain, come back in, dry herself off on my clothes.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23970","acl31570",23970,"oh wow, christians and muslims in a common cause: against w*men rights","hate","derogation","wom","original","train",4,"vDe7GN0NrL","4a","acl31571"
+"23971","acl31571",23971,"oh wow, christians and muslims in a common cause: against supremacy","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31570"
+"23972","acl31572",23972,"this is a Fucken blaady madlad","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl41220"
+"23973","acl31573",23973,"hey friend, you just earned a spot on the gay list, Nooooo I am not haram","hate","derogation","gay","original","train",4,"vDe7GN0NrL","4a","acl41117"
+"23974","acl31574",23974,"Lmao honestly, this really made Allahu Akbar my pants","hate","derogation","mus","original","train",4,"vDe7GN0NrL","4a","acl31575"
+"23975","acl31575",23975,"Lmao honestly, this really made me pee my pants","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31574"
+"23976","acl31576",23976,"hey you know that Alah and Mohamed fre gay muslim punjabi sex dowload 🤪🥵😳","hate","derogation","mus, gay","original","train",4,"vDe7GN0NrL","4a","acl31577"
+"23977","acl31577",23977,"hey you know that Alah and Mohamed fre muslim punjabi teaching dowload","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31576"
+"23978","acl31578",23978,"do you know that constantinople used to be known as a friendly city to refugees. From like... 300 AD until its fall in the 1400s or something. These people are keeping the tradition alive","hate","animosity","ref","original","train",4,"vDe7GN0NrL","4a","acl31579"
+"23979","acl31579",23979,"do you know that constantinople used to be known as a friendly city. From like... 300 AD until its fall in the 1400s or something. These people are keeping the tradition alive","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31578"
+"23980","acl3158",23980,"Why not speak to yer arsehole chancellor Sunak. Is that because he just laughs in yer face?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23981","acl31580",23981,"OMG. A women sports player is allowed to speak on womens sports. Finally! I am getting prouder and prouder about these new identity politics. Even male chauvinists recognise women can speak about womens sports and can use more than womens spaces only! They might still think they are somehow superior but they don't deny women exist anyome! Wonderful","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31565"
+"23982","acl31581",23982,"Shame on them, using the bravery of this gay person to further their own trans agenda. they have shown on many occasion that they are no ally to gay men and especially lesbian women.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31595"
+"23983","acl31582",23983,"oh this is HARAM WOMAN HAVE NO BURKA!!!! GET SHARIYAD RETARD 🤬🤬🤬","hate","derogation","dis","original","train",4,"vDe7GN0NrL","4a","acl31583"
+"23984","acl31583",23984,"oh this WOMAN is being BEATEN UP by his husband!!! GET THE POLICE IMMEDIATELY!!!!!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31582"
+"23985","acl31584",23985,"I hope its n**ga hot sex","hate","derogation","bla","original","train",4,"vDe7GN0NrL","4a","acl31585"
+"23986","acl31585",23986,"I hope its steamy hot sex","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31584"
+"23987","acl31586",23987,"hey you just listen if you speak portuguese ur fuckin gay 🤪🤪🤪🤪🤪🤪🥶🥶😂😂🤣🤪","hate","derogation","gay","original","train",4,"vDe7GN0NrL","4a","acl41007"
+"23988","acl31587",23988,"hey I just came with a message from allah. Give this man sauce since he was the one who had the courage to ask","hate","animosity","mus","original","train",4,"vDe7GN0NrL","4a","acl31588"
+"23989","acl31588",23989,"hey I just came with a message from my boss. Give this man sauce since he was the one who had the courage to ask","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31587"
+"23990","acl31589",23990,"niggers' lives dont matter hahaha","hate","derogation","bla","original","train",4,"vDe7GN0NrL","4a","acl31590"
+"23991","acl3159",23991,"covid-19 now travels by aerosol and by arsehole","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"23992","acl31590",23992,"As a nigga myself, niggers' lives do matter!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31589"
+"23993","acl31591",23993,"let me tell you hey fuck you who ever made this fucking video atleast she is reading the quran ur making fun of her you satan go to fucking hell nigga your a terrorist","hate","derogation","bla","original","train",4,"vDe7GN0NrL","4a","acl31592"
+"23994","acl31592",23994,"let me tell you hey fuck you who ever made this fucking video atleast she is reading the quran ur making fun of her. you can go to fucking hell you're the real terrorist","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31591"
+"23995","acl31593",23995,"can you believe it, the fucking refugee donation website fucking scammed me yall holy shit i do not have this much money to donate they charged my card 3 times for $200 !","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31594"
+"23996","acl31594",23996,"can you believe it, the fucking donation website fucking scammed me yall holy shit i do not have this much money to donate they charged my card 3 times for $200 !","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31593"
+"23997","acl31595",23997,"Shame on them, using the bravery of this gay person to further their own hateful agenda. they have shown on many occasion that they are no ally to gay men and especially lesbian women.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31581"
+"23998","acl31596",23998,"Next you'll get Trans groups demanding that their letter come before LGB in the popular initialism LGBTTTQQIAAP.","hate","animosity","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31601"
+"23999","acl31597",23999,"simply wow, Intresting timing, I saw this video after a Nazi said that they should hijack 10 Emirates planes and crash them into the towers of Dubai. May god protect us from the evil of terrorism. I won't be sad if we kick out the culprits. Hopefully we can buy some equipment from neighbouring countries and learn from their expertise","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39884"
+"24000","acl31598",24000,"This is the fact, Habsburgs had very low IQ due to inbreeding and lifestyle itself - every really wise Habsburg ended up as ex-king quickly, only morons stick to this stupid royal family","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40033"
+"24001","acl31599",24001,"I am serious, there is no state of Palestine, so everyone is older than it","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl40284"
+"24002","acl316",24002,"these tories are rubbish","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"24003","acl3160",24003,"Screw you Repubes and arsehole trump. You Repubes enabled this horrible orange ogre.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24004","acl31600",24004,"let me be clear Every newborn is older than Palestine because it doesn't even exist","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl40433"
+"24005","acl31601",24005,"Next you'll get groups demanding that their letter come before others in the popular initialism.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31596"
+"24006","acl31602",24006,"So basically if you are not attracted to a trans person who could 'present' as a man or woman, you have a genitalia fetish and are transphobic?! Doesn't make sense! Even if as a heterosexual woman, if I am attracted to one biological man but not any others, does that mean I am manphobic?! Or if I am attracted to only my partner, I am phobic of everybody else? What if I am asexual, am I man and women phobic then? Not being attracted to someone is not a hate crime. F sake.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31616"
+"24007","acl31603",24007,"here's a good plan for both side, Israel will discuss granting the Palestinians additional rights with the possible elevation to their own state in the future once they do the following:Remove the map of Palestine from
+ sea to sea and the words that ""Jerusalem is ours"" from their official flag and emblemstop paying and commit to never ever pay in the future the families of the suicide bombers and terrorists, as they do now. This
+ isa show stopper.Recognize Israel's right to exist in this area as a Jewish state. Clearly, once and for all. In Arabic and English.Recognize publicly that Jerusalem is Israel's capital. The role of Palestinians in it can
+be addressed in the future, but when all the mainstream political system in PA claims that they will ""liberate Jerusalem"" and this is what they teach and say in the mosques daily, basically calling for armed struggle,
+ is a
+no go.Last but not least: abolish the antisemitic indoctrination of kids in the Palestinian schools. Once these 5 elements are agreed on, Israel can move forward and perhaps two about some concessions in the
+future.","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl31604"
+"24008","acl31604",24008,"This is only a good plan for one side! Apparently Israel will discuss granting the Palestinians additional rights with the possible elevation to their own state in the future once they do the following: Remove the map of Palestine from
+ sea to sea and the words that ""Jerusalem is ours"" from their official flag and emblemstop paying and commit to never ever pay in the future the families of the suicide bombers and terrorists, as they do now? This
+ isn't fair.Recognize Israel's right to exist in this area as a Jewish state? Clearly, one sided. In Arabic and English! Recognize publicly that Jerusalem is Israel's capital? So, the role of Palestinians in it can
+be addressed in the ""future"", but only when all ""the mainstream political system in PA claims that they will ""liberate Jerusalem"" and this is what they teach and say in the mosques daily, basically calling for armed struggle,
+ is a
+no go"".Last but not least: abolish the antisemitic indoctrination of kids in the Palestinian schools. Give me a break. But according to them, only once these 5 elements are agreed on, Israel can move forward and perhaps two about some concessions in the
+future.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31603"
+"24009","acl31605",24009,"to be honest, Israel is improving itself because of outside dangers. I appreciate it","hate","animosity","arab","original","train",4,"vDe7GN0NrL","4a","acl31606"
+"24010","acl31606",24010,"to be honest, Israel is improving itself because of its way of handling outside dangers. I appreciate it","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31605"
+"24011","acl31607",24011,"just a piece of advice, stop the foreign aid going abroad and help our own families then","hate","derogation","for","original","train",4,"vDe7GN0NrL","4a","acl41043"
+"24012","acl31608",24012,"What'll really do is to cook your goose is the internal EU migration as that becomes unviable in certain areas","hate","derogation","ref","original","train",4,"vDe7GN0NrL","4a","acl31609"
+"24013","acl31609",24013,"What'll really do is to really cook your goose is the internally flawed EU migration laws as they become unviable in certain areas","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31608"
+"24014","acl3161",24014,"Techincal error my arsehole. They do, and have done, anything possible to not be honest about Covid cases. From day one.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24015","acl31610",24015,"Politically I just want my gay married couples to be able to defend their marijuana plants with miniguns fit for the ""queens"" they are, but with the smallest possible tax on commercial sales for socialized medicine.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31611"
+"24016","acl31611",24016,"Honestly I just want my weird friend married couples to be able to defend their marijuana plants with miniguns fit for the ""queens"" they are, but with the smallest possible tax on commercial sales for socialized medicine.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl31610"
+"24017","acl31612",24017,"I want christian bakers to be able to refuse to bake their rainbow cakes","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl39247"
+"24018","acl31613",24018,"Thanks to the gay police for refusing to investigate who vandalized a Christian baker's shop","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31614"
+"24019","acl31614",24019,"Thanks to the police for refusing to investigate who vandalized a Christian baker's shop","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl31613"
+"24020","acl31615",24020,"Do you think the dads let their sons get married because one got the other pregnant? lol","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl39969"
+"24021","acl31616",24021,"So basically if you are not attracted to a person who is a man or woman, you have an interest in transgender?! Does that make sense? Even if as a heterosexual woman, if I am attracted to one cis-man but not any others, does that mean I am in love?! Or if I am attracted to only my partner, I am hating of everyone else? What if I am asexual, am I attracted to nobody then? Not being attracted to someone, or to a trans person, is not a crime. F sake.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31602"
+"24022","acl31617",24022,"I don’t know why they need to go on about ‘genital preference’ all the time? They keep telling us there’s plenty of cis people who find them attractive so why don’t they leave those of us who don’t alone? I’m sorry, but no threat of a label (transphobic) is ever going to make me have sex with a vagina when I don’t want to. It’s creepy and rapey IMO.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31630"
+"24023","acl31618",24023,"I want gay married cyborgs to able to protect their genetically modified marijuana plants with 3D printed guns.Wlcome to the dystopian future!","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31619"
+"24024","acl31619",24024,"I want married cyborgs to able to protect their genetically modified marijuana plants with 3D printed guns. Wlcome to the dystopian future!","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31618"
+"24025","acl3162",24025,"Trump. An English slang word for hot air leaking out of an arsehole. Johnson. An American slang word for a penis. It looks like destiny has a sense of humour","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24026","acl31620",24026,"we get it you like kissing guys, but you don't have to rub it in our face sis","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40369"
+"24027","acl31621",24027,"Wow, three consecutive things LORT are doing that don't exist: bisexuals, transgenders, and elves.","hate","animosity","trans, bis","original","train",4,"LqLKTtrOmx","4a","acl40194"
+"24028","acl31622",24028,"The new LORT show with a bisexual character is all but guaranteed to be woke garbage. More satire turned sad reality.","hate","derogation","bis","original","train",4,"LqLKTtrOmx","4a","acl39248"
+"24029","acl31623",24029,"I actually like the idea of trans people in shows and stuff because mentally ill people are fascinating and make good characters.","hate","derogation","trans","original","train",4,"LqLKTtrOmx","4a","acl39960"
+"24030","acl31624",24030,"Disney animated children's program to showcase first bisexual lead character. I watched the first season and I had this weird feeling the whole time that it would turn political at any moment and I was right. Now I know why. I did enjoy the series and am glad that there was no romance or reference to sexuality. As long as it stays that way, it doesn't matter what sexual orientation the creator claims their character to be.","hate","animosity","bis","original","train",4,"LqLKTtrOmx","4a","acl31625"
+"24031","acl31625",24031,"Disney animated children's program to showcase first bisexual lead character. I watched the first season and I had this feeling the whole time that it would turn contemporary at any moment and I was right. Now I know why. I did enjoy the series and am glad that there was romance and reference to sexuality. But, it doesn't matter what sexual orientation the creator claims their character to be.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31624"
+"24032","acl31626",24032,"Sooooooo... young people are allowed to gather while older people aren't? Do they not
+know that Covid isn't an ""ally"" to all ?","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl40594"
+"24033","acl31627",24033,"Alcoholics, drug addicts and LGBT crowd are allowed to gather for ""support groups"", UK recognizes they guys need a A LOT OF help.","hate","derogation","trans, gay.wom, gay.man, bis","original","train",4,"LqLKTtrOmx","4a","acl31628"
+"24034","acl31628",24034,"Alcoholics, drug addicts and older citizens crowd are allowed to gather for ""support groups"", UK recognizes that people need a A LOT OF help right now.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31627"
+"24035","acl31629",24035,"That's why LGBT groups should be exempt from prejudice rules. It is like the government secretly know that these are normal issues which cause problems to people, but they don't want to admit it to be seen as a ""interferring in free speech"".","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40360"
+"24036","acl3163",24036,"If you TERFs dont like trans people self medicating, then stop being an arsehole and help us improve the actual NHS trans care instead of ripping peoples hormones away from them you bellends.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24037","acl31630",24037,"I dont know why they need to go on about 'genital preference' all the time? They keep telling us theres plenty of cis people who find them attractive so why dont they leave those of us who dont alone? Im sorry, but no threat of a label (transphobic) is ever going to make me have sex with a vagina when I dont want to.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31617"
+"24038","acl31631",24038,"Just to add, I dont think ive ever seen a transgender person who doesnt look trans","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31646"
+"24039","acl31632",24039,"First openly bisexual senator forgoes the bible and has Mike Pence swear her in on a lawbook. A LAWBOOK!","hate","animosity","bis","original","train",4,"LqLKTtrOmx","4a","acl31633"
+"24040","acl31633",24040,"First senator to forgo the bible and has Mike Pence swear her in on a lawbook. A LAWBOOK!","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31632"
+"24041","acl31634",24041,"Surely Mike Pence ran home and prayed about having to stand so close to bisexual senator Kyrsten Sinema. She's one smart, funny, smokin’ hot spawn of Satan.","hate","derogation","bis","original","train",4,"LqLKTtrOmx","4a","acl39249"
+"24042","acl31635",24042,"So the U.K. are to Ease Rules on Blood Donations by Gay and Bisexual Men. Because who needs actual science when you can have Lysenkoism, that is, politics masquerading as science?
+
+","hate","animosity","gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31636"
+"24043","acl31636",24043,"So the U.K. are to Ease Rules on Blood Donations by Gay and Bisexual Men. ""Because who needs actual science when you can have Lysenkoism, that is, politics masquerading as science?"" ! no, but they deserve equal rights and appropriate research has been done
+
+","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl31635"
+"24044","acl31637",24044,"The group who’s disgusting and immoral behavior leads to a deadly plague always present in their blood? Yes please let gay and bisexuals donate blood.
+","hate","derogation","gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31638"
+"24045","acl31638",24045,"The group who's disgusting and immoral behavior leads to a deadly plague always present in their blood? Yes please let racists and homophobes donate blood..
+","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31637"
+"24046","acl31639",24046,"I can't believe this degeneracy! keeping it amongst themselves isn’t enough for gays and bisexuals. Of course they have to spread their immorality by donating blood!
+
+","hate","derogation","gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31640"
+"24047","acl3164",24047,"To all the kids out there that are double-suffering during lockdown because one of their parents is a narcissistic arsehole","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24048","acl31640",24048,"I can't believe this degeneracy! keeping it amongst themselves isn't enough for right wing trash. Now they have to spread their immorality by donating blood?
+
+","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31639"
+"24049","acl31641",24049,"I'm honestly rooting for all of the degenerate Marvel and DC comics to go bankrupt at this point. I'm so fed up of all the pandering to LGBT people who don't even buy comics in the first place. Go woke and go broke","hate","animosity","trans, gay.wom, gay.man, bis","original","train",4,"LqLKTtrOmx","4a","acl39912"
+"24050","acl31642",24050,"Yeah I think attracted to both sexes in the most clear cut definition of bisexuality, but nowadays lots of people who aren't even bisexual are trying to redefine it (some meanings I've heard it be given is being attracted to any two genders, for example as in liking women and nonbinary people (like people who use they them pronouns) or that it's like pansexual except pansexual people care more about a person's heart or what they're like while bisexuals prioritize a person's genitals/appearance and anyways I hate the whole thing.","hate","derogation","gendermin, bis","original","train",4,"LqLKTtrOmx","4a","acl31643"
+"24051","acl31643",24051,"Yeah I think attracted to both sexes in the most clear cut definition of bisexuality, but nowadays lots of people who aren't even bisexual are trying to redefine it (some meanings I've heard it be given is being attracted to any two genders, for example as in liking women and nonbinary people (like people who use they them pronouns) or that it's like pansexual except pansexual people care more about a person's heart or what they're like while bisexuals prioritize a person's genitals/appearance and anyways I admire the whole thing.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31642"
+"24052","acl31644",24052,"Despite being only 2% of the population, gays make up 100% of reddit mods. [of course it's been removed by mods for ""hate speech"" despite being an obvious meme]","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31645"
+"24053","acl31645",24053,"Despite being only 2% of the population, gays make up almost 100% of reddit mods, so what? At least they will view things more objectively.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31644"
+"24054","acl31646",24054,"Just to add, I dont think ive ever seen a straight person who doesnt look uncool lol","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31631"
+"24055","acl31647",24055,"I don't care how people choose to present or whatever dysphoria they're acting out.","hate","animosity","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl39251"
+"24056","acl31648",24056,"As a former Reddit mod, I agree that all of reddit's mods are plonkers. Which is why I quit.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl40312"
+"24057","acl31649",24057,"As a former homosexual, I considered getting offended by what you said about all reddit mods are gay. But then I asked myself: Why get offended by facts?","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31650"
+"24058","acl3165",24058,"This absolute arsehole of a year has already claimed too many great, talented, lovely and loved people.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24059","acl31650",24059,"As a former homophobe, I considered getting offended by what you said about all reddit mods are gay. But then I asked myself: Why get offended by facts?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31649"
+"24060","acl31651",24060,"If you can take a dick, you can take a joke about all reddit mods being gay","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl40207"
+"24061","acl31652",24061,"I remember when I was first added as a moderator to a subreddit. I said ""no, please, no, I don't want to be one,"" but it was too late, I was already a raging homosexual. So the red mods are gay meme is right!","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31653"
+"24062","acl31653",24062,"I remember when I was first added as a moderator to a subreddit. I said ""no, please, no, I don't want to be one,"" but it was too late, I was already a raging whiner. So the red mods are a bloody meme you are right!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31652"
+"24063","acl31654",24063,"Not all reddit mods are gay btw, Some of them are trans hahahad","hate","animosity","trans, gay","original","train",4,"LqLKTtrOmx","4a","acl31655"
+"24064","acl31655",24064,"Not all reddit mods are utter knobs btw, Some of them are just bellends hahahad","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31654"
+"24065","acl31656",24065,"About half of the reddit mods are furries but ALL reddit mods are gay, no exceptions. In fact, as soon as someone accepts a mod or admin invite it's like their sexuality instantly changes","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl39250"
+"24066","acl31657",24066,"All mods are gay huh? Are you a mod? Because then I'd be scared to know what you're choking on.","hate","animosity","gay.man","original","train",4,"LqLKTtrOmx","4a","acl40607"
+"24067","acl31658",24067,"As a current guildmaster moderator, all reddit mods are gay","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31659"
+"24068","acl31659",24068,"As a current guildmaster moderator, all reddit mods are dumb","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31658"
+"24069","acl3166",24069,"PEOPLE WILL ALWAYS NEED MUSIC. Retrain your head from your arsehole.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24070","acl31660",24070,"The ""radfem lesbian subs where the lesbians get silenced by biological male mods pretending to be gay women ""lesbian transsexuals"""" was totally made up. You had it coming with your bigot olympics.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40679"
+"24071","acl31661",24071,"But I do mind about MY rights being weakened in preference of a small minority of trans people who, until they decided they needed a trendy new crusade, were quietly living their lives as they wanted anyway. I care about normal ethics being eroded because of the “you can be whatever you want to be, it’s ok” narrative (see paedophilia) and self id leaving the gate wide open for not just dysphoric transwomen but abusive and perverted men to live out their oppressive kinks on women and girls.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31677"
+"24072","acl31662",24072,"There is much gaiety on reddit. Get it?","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31663"
+"24073","acl31663",24073,"There is much bigotry on reddit. Get it?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31662"
+"24074","acl31664",24074,"Despite being only 2% of the population, gays make up 100% of reddit mods. I bet they'll say statistics are homophobic, mmkkay?","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31665"
+"24075","acl31665",24075,"Despite being only 2% of the population, gays make up 100% of reddit mods..what fake news!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31664"
+"24076","acl31666",24076,"Don't any of you guys recall that old South Park? Nothing wrong with being gay, but what reddit is doing is being a Fag. Which ironically has nothing to do with being gay.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31667"
+"24077","acl31667",24077,"Don't any of you guys recall that old South Park? Nothing wrong with being gay, and it's not ok to call them a Fag.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31666"
+"24078","acl31668",24078,"yeah reddit went from having a medium gay community to having full on rainbows. Can't stand those leninites","hate","derogation","gay.wom, gay.man, bis","original","train",4,"LqLKTtrOmx","4a","acl31669"
+"24079","acl31669",24079,"yeah reddit went from having a medium gay community to having full on rainbows !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31668"
+"24080","acl3167",24080,"Does your arsehole ever jealous of the shite that comes out of your mouth?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24081","acl31670",24081,"I was told upvoting anything that says gay in a bad way gets them bigots banned so I'm gonna kepp doing it.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40810"
+"24082","acl31671",24082,"Updoot if you think reddit is gay. Edit: reddit has now gotten 1000% more gay since I made this post. Spez is also gay. Ps. Ruqqus is not gay","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31672"
+"24083","acl31672",24083,"Updoot if you think reddit is shit. Edit: reddit has now gotten 1000% more poopy since I made this post. Spez is also rubbish. Ps. Ruqqus is a bit poo","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31671"
+"24084","acl31673",24084,"The LGBT community has been a militant arm of the DNC since the late 80's.","hate","animosity","trans, gay, bis","original","train",4,"LqLKTtrOmx","4a","acl39252"
+"24085","acl31674",24085,"Pride' was the militant side of the Gay & Lesbian communities. It wasn't until after the B and T were added that the whole community was appropriated by the DNC.
+
+","hate","animosity","trans, gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31675"
+"24086","acl31675",24086,"Pride' was the most vocal side of the Gay & Lesbian communities. It wasn't until after the B and T were added that the whole community was equally represented.
+
+","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31674"
+"24087","acl31676",24087,"There was a point in time when I was an LGBT ally, basically. But all of the collective forcing their agenda down everyones throats, naked parades in front of children really got me to stop giving a fuck about them at all. Now I find them disgusting and the one's I've known personally are some of the most narcissistic people I've ever met.","hate","derogation","trans, gay, bis","original","train",4,"LqLKTtrOmx","4a","acl39253"
+"24088","acl31677",24088,"But I do mind about MY rights being weakened in preference of a small minority of white supremacist people who, until they decided they needed a trendy new crusade, were quietly living their lives as they wanted anyway. I care about normal ethics being eroded because of the ''you can be as racist as you want to be, it's ok' narrative (see Stormfront) and leaving the gate wide open for not just angry white men, but also radicalisation of children.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31661"
+"24089","acl31678",24089,"The transman who wanted to be recognised as Father having given birth to a child, now demanding women accept being called ‘birthing parent’ lmfao. What the hell is wrong with these people?","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31692"
+"24090","acl31679",24090,"Michigan court says companies don’t have to serve customers who are gay #winning","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31680"
+"24091","acl3168",24091,"There are thousands of reasons to think Trump is a fucking arsehole; knowingly having the plague and going about his business and risking others tops it though. Thats how little regard he has for his supposed friends. The man is a fucking menace.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24092","acl31680",24092,"Michigan court says companies don't have to serve customers who are gay #wtf #backwards","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31679"
+"24093","acl31681",24093,"if I had a business I would ask them to leave, it's not just because they are gay or whatever made up gender, it's because how they dress, how they walk, talk, and behave","hate","derogation","gendermin, gay","original","train",4,"LqLKTtrOmx","4a","acl31682"
+"24094","acl31682",24094,"if I had a business I would ask them to leave, it's not just because they are emo or whatever made up style, it's because how they dress, how they walk, talk, and behave","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31681"
+"24095","acl31683",24095,"The way they talk is so annoying. Why can't you be a normal person and keep your own sexuality to yourself? Why do you have to act ""different"" just to get some attention from people?","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl39937"
+"24096","acl31684",24096,"Unfortunately I don't expect the ruling about businesses being able to refuse gay people to stand for long, if you read the whole article. Also you just KNOW these religious objections are from Christians, not the little pocket of Michiganistan, Dearborne. They'd NEVER fight this hard against religious liberty if it were Isalmics saying no to the gheys.","hate","derogation","mus, gay","original","train",4,"LqLKTtrOmx","4a","acl31685"
+"24097","acl31685",24097,"Fortunately I don't expect the ruling about businesses being able to refuse gay people to stand for long, if you read the whole article. Also you just KNOW these religious objections are not about religion, nor are they funded from the pockets of regular Michiganians. And these bigots who took us to court would NEVER fight this hard against religious liberty if it were not against gays.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31684"
+"24098","acl31686",24098,"is this why that lesbian actress named Ellen became a straight male actor named Elliot? To get served by businesses in Michigan becaue they can refuse gay people?","hate","animosity","trans, gay.wom","original","train",4,"LqLKTtrOmx","4a","acl31687"
+"24099","acl31687",24099,"you really think this why ""that lesbian actress named Ellen"" became ""a straight male actor named Elliot?"" To get served by businesses in Michigan becaue they can refuse gay people? Lol.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31686"
+"24100","acl31688",24100,"I don't want to support anything that I do not actually support. Tolerance is compelled approval even if it's gay people.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31689"
+"24101","acl31689",24101,"I don't want to support anything that I do not actually support. Tolerance is compelled approval even if it's just people who want drugs for medicinal reasons.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31688"
+"24102","acl3169",24102,"I might try timeouts rather than bans for most things now. I want to keep the chat a nice place and get rid of arseholes, but I would also like to give the arseholes a chance to be less of an arsehole, at least in my chat. I was an arsehole once. More of an arsehole, I mean.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24103","acl31690",24103,"Yes, you are approving a gay person's lifestyle when you serve them. People judge anyway happens anyway when people dislike you for whatever reason so they shouldn't sensitive about it. It's part of life.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl40337"
+"24104","acl31691",24104,"I mean, football team support is a ""preference"" after all. If you don't want some companies to deny you services, maybe you can simply not be out in the street shouting how proud of them you are, because (spoiler): Nobody actually cares.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39843"
+"24105","acl31692",24105,"The transman who wanted to be recognised as Father having given birth to a child, now demanding women accept being called 'birthing parent'. What the hell is wrong with society, just accept all people?","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl31678"
+"24106","acl31693",24106,"It's just the cheek...they really are trying to create a two tier citizen system? Wanting transmen to get to be called Father while 'normal' Fathers (for want of a better word here) have to lump being called 'non-birthing parent'...I don't bloody think so","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31705"
+"24107","acl31694",24107,"""We will release new hunter biden cock photos every hour"". Gay Republicans: ""it's not gay if it's for election right"".","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl41109"
+"24108","acl31695",24108,"I mean, I dont care if all the gays are infected to the nines. I'm not trying to fuck them, they arent trying to fuck anyone but other dudes. Just making doctors rich raw dogging their twink boys.Who cares what they got or do, its an insular culture anyway.
+
+","hate","derogation","gay.man","original","train",4,"LqLKTtrOmx","4a","acl41078"
+"24109","acl31696",24109,"Just to be clear, not all mos are supportive of forcing minors into hormones and shit. You can be gay as a rainbow and still believe in protecting minors from sexualization.","hate","animosity","trans, gay","original","train",4,"LqLKTtrOmx","4a","acl40243"
+"24110","acl31697",24110,"My take on gay rights: Kids should be free from molestation. I can't believe that's a controversial statement these days.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl39903"
+"24111","acl31698",24111,"You were clearly brainwashed, groomed, and indoctrinated by the LGBT as a child, your posts in this thread is proof for that. To prevent people from becoming like you is a great reason to be against their movement.","hate","derogation","lgbtq","original","train",4,"LqLKTtrOmx","4a","acl31699"
+"24112","acl31699",24112,"You were clearly brainwashed, groomed, and indoctrinated by the cultre as a child, your posts in this thread is proof for that. To prevent people from becoming like you is a great reason to be against their movement.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31698"
+"24113","acl317",24113,"The NHS is bullshit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"24114","acl3170",24114,"I was an arsehole once. More of an arsehole, I mean.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24115","acl31700",24115,"I;m going to post some statistics that imply that homosexuals turn children gay by molesting and raping them","hate","derogation","gay.man","original","train",4,"LqLKTtrOmx","4a","acl40583"
+"24116","acl31701",24116,"Sending messages to kids about gay being is wrong so they don't ""grow up sodomizing each other in the anus"" is child abuse! You are a sick person. Stay far away from children, you nasty bigot.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40858"
+"24117","acl31702",24117,"The fact that the majority of people in western civilization think that doing disgusting degenerate sex acts that lead to this is a human right, and openly celebrates it with 'pride' and the likes, teaches to children that such stuff is good, and want to promote it everywhere is the world really shows how messed up western civilization is today. More evidence for the decline of western civilization.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31703"
+"24118","acl31703",24118,"The fact that the majority of people in western civilization think that doing disgusting degenerate porn sex acts that lead to this is a pastime, and openly celebrates it with 'pride' and the likes, teaches to children that such stuff is good, and want to promote it everywhere is the world really shows how messed up western civilization is today. More evidence for the decline of western civilization.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31702"
+"24119","acl31704",24119,"Gays and lesbians are contributing to the decline of our civilization. It certainly isn't a problem in places like south east Asia, the Middle East and Africa but it is a problem in predominantly white countries. The current trends predict that white people will be a minority in North America by 2050.","hate","derogation","gay.wom, gay.man, non.white","original","train",4,"LqLKTtrOmx","4a","acl40303"
+"24120","acl31705",24120,"It's just the cheek...they really are trying to create a two tier citizen system? Wanting people of color to get to be called second class while 'white' citizens (for want of a better word here) have to adhere to being called 'first class citizens'...I don't bloody think so","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31693"
+"24121","acl31706",24121,"Gender dysphoria is serious and needs proper therpay and medications which target the brain's difficulty in recognizing its own body. But as we now now, thanks to the correction issued a few weeks ago, hormones and surgery do not improve the mental health of people suffering from gender dysphoria.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31863"
+"24122","acl31707",24122,"I can't get my head around the idea that a person experiences gender dysphoria so badly they transition, want to have their bodies chopped up etc, but they do one of the most women things of all time - pregnancy and birth. How does that fit into the dysphoria? If I felt like I should've been born a man, the absolute last thing I'd want to do would be a very very female experience? Make it make sense!","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31722"
+"24123","acl31708",24123,"Homosexuality is a genetic defect or in some cases just perversion. If you are attracted to the same sex you cannot produce an offspring. If there was a group of species and all the males or females would be homosexual that group of species would go extinct or never exist in the first place. Naturally the organism will do anything to keep it self alive. And to do that it needs to reproduce.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31709"
+"24124","acl31709",24124,"Homosexuality is not a genetic defect nor just perversion either. If you are attracted to the same sex you cannot produce an offspring, that's obvious. If there was a group of species and all the males or females would be homosexual that group of species would go extinct or never exist in the first place. But it doesn't mean it s unnatural. Many other species show homosexual tendencies. It is not only the need to reproduce that it is natural, it is also sexual desire.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31708"
+"24125","acl3171",24125,"Another fu.. Cking arsehole he needs going along with the wee cranky..... For Scotlands sake they and the SNPs must go","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24126","acl31710",24126,"The arabs would like to have a word with you. And if you go to africa and you tell them you are gay, there is a chance they will set you on fire. You can have as many laws embracing it as you want. Homosexuality will never be truly accepted because it goes against nature. I bet all your family is disappointed in you.","hate","derogation","gay, arab, african","original","train",4,"LqLKTtrOmx","4a","acl40100"
+"24127","acl31711",24127,"There is more sexual degeneracy than just gay sex and gay marriage where these so called ""civilized"" people live, for example heterosexual promiscuity, which came from the sexual revolution of the 60's which led to the LGBT movement until this present day.","hate","derogation","trans, gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31712"
+"24128","acl31712",24128,"There is more sexual expression than just gay sex and gay marriage where these people live, for example heterosexual promiscuity, which came from the sexual revolution of the 60's which led to the LGBT movement until this present day.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31711"
+"24129","acl31713",24129,"You know what is funny, the 19th century type of people with similar views to you ""civilized Europeans vs savage Africans and Asians"" were very against homosexuality, and viewed gay marriage and gay sex the same way as the so called ""uncivilized"" people you are referring to do. So do not correlate between civilized and homosexuality.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31714"
+"24130","acl31714",24130,"You know what is funny, the 19th century type of people with similar views to you ""civilized Europeans vs savage Africans and Asians"" were very against homosexuality, and viewed gay marriage and gay sex the same way as the so called ""uncivilized"" people you are referring to do. So do not correlate between 'progressive Europe' and homosexuality acceptance.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31713"
+"24131","acl31715",24131,"Can you tell me why we should accept sexual perversion and degeneracy? What benefit do those things provide to society and its future? Normal couples produce children, which are the societies future. What do gays produce?","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31716"
+"24132","acl31716",24132,"Can you tell me why we should accept perversion? What benefit do those things provide to society and its future? We produce children, which are the societies future. What does perversion produce?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31715"
+"24133","acl31717",24133,"When ""uncivilized"" people are more civilized than ""civilized"" people. According to your logic, you guys are not civilized enough since incestual people, bestialic people, necrophillic people, and pedophillic people are not accepted where your so called ""civilized"" people live. Also where your ""civilized"" people live, they literally think that a man can be a woman by identifying as one and two people of the same sex can get married.","hate","derogation","trans, gay","original","train",4,"LqLKTtrOmx","4a","acl31718"
+"24134","acl31718",24134,"When ""uncivilized"" people are more civilized than ""civilized"" people. According to your logic, you guys are not civilized enough since incestual people, bestialic people, necrophillic people, and pedophillic people are not accepted where your so called ""civilized"" people live. Also where your ""civilized"" people live, they literally think that a man can beat a woman and two people of the same sex still can't get married.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31717"
+"24135","acl31719",24135,"We must allow sexual perversion because of 'freedom' and 'pride' which I guess means any destructive or harmful behavior must be completely allowed (except racism, sexism, bigotry, etc all conveniently defined)","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl40500"
+"24136","acl3172",24136,"With his dying wife Mattie you absolute arsehole.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24137","acl31720",24137,"While LGBT+ people might not produce children, they produce other things that benefit our society, and in order to let them reach their full potential we need to be accepting of them. You might not support them - I don't and that's fine. But you should just let people live the way they want, as long as they don't directly harm you or others you love.","hate","animosity","trans, gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31721"
+"24138","acl31721",24138,"While LGBT+ people might not produce children, they produce so many other things that benefit our society, and in order to let them reach their full potential we need to be accepting of them. You might not support them entirely. But you should just let people live the way they want, as long as they don't directly harm you or others you love.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31720"
+"24139","acl31722",24139,"I can't get my head around the idea that a person experiences gender dysphoria so badly they transition, and change their bodies, but they do one of the most women things of all time - pregnancy and birth. How does that fit into the dysphoria? If I felt like I should've been born a man, the absolute last thing I'd want to do would be a very very female experience? It is hard for me to understand and I would like to educate myself if someone could please explain this to me, as I would love to learn and grow","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31707"
+"24140","acl31723",24140,"I want to be called a mum, because that's what I am. What gives anyone the right to take away my identity and exclude me in order to include themselves? Fuck to hell with your language policing and wanting to be treated special, Freddy. Leave my identity alone.","hate","animosity","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31741"
+"24141","acl31724",24141,"Freedom and liberty to allow people to be what they are should also mean I have the freedom and liberty to voice an opinion about it. I should have the freedom to call gay people slurs and pejoratives.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl39255"
+"24142","acl31725",24142,"Ah you value freedom for gay people. Do you value someone's freedom to, say, become morbidly obese? Or their freedom to sleep with a thousand partners? Or their freedom to inject heroin until they die?","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31726"
+"24143","acl31726",24143,"Ah you value freedom for bigots?. Do you value someone's freedom to, say, become morbidly obese? Or their freedom to sleep with a thousand partners? Or their freedom to inject heroin until they die?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31725"
+"24144","acl31727",24144,"See, freedom sounds cool and exciting, but you don't have freedom when you are a slave to vice. Sexual perversion is a vice. It is a vice that, yes, does of course effect straight people, but is much more prominent in gays. They are not free. They are slaves to their vices, and sexual perversions. If you value true freedom you should want to free them from this vice.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31728"
+"24145","acl31728",24145,"See, freedom sounds cool and exciting, but you don't have freedom when you are a slave to vice. Sexual perversion is a vice. It is a vice that, yes, does of course effect all people and is not more prominent in gays at all. None of us are free. We are slaves to our vices, and sexual perversions. If you value true freedom you should want to free yourself from this vice.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31727"
+"24146","acl31729",24146,"Everything you listed about the good things gay people can do has nothing to do with their sexuality or preferences. They would 100% be able to do all of your examples in a society that forbids sodomy and homosexuality.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31730"
+"24147","acl3173",24147,"Furry Arsehole does not want to go out. Furry Arsehole needs to go out.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24148","acl31730",24148,"Everything you listed about the good things gay people can do has nothing to do with their sexuality or preferences. But they would also be 100% able to do all of your examples in a society that forbids discrimination and homophobia.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31729"
+"24149","acl31731",24149,"As far as homosexuality is concerned, their decisions really only affect themselves. They understand the risks involved and they should have the freedom to pursue happiness just like everyone else does,","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31732"
+"24150","acl31732",24150,"As far as homosexuality is concerned, their decisions really only affect themselves. They are the only ones involved and they should have the freedom to pursue happiness just like everyone else does,","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31731"
+"24151","acl31733",24151,"let me say that prohibition doesn't work. History taught us that (think of alcohol or even LGBT+). So why even bother? If you say that we shouldn't promote any of these things, I'm on board. If you say that we should persecute people for it, then I'm noping right out of there.","hate","derogation","trans, gay.wom, gay.man, bis","original","train",4,"LqLKTtrOmx","4a","acl31734"
+"24152","acl31734",24152,"let me say that prohibition doesn't work. History taught us that (think of alcohol). So why even bother? If you say that we shouldn't promote intoxicating substances, I'm on board. If you say that we should persecute people for it, then I'm noping right out of there.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31733"
+"24153","acl31735",24153,"Being gay takes these people out of the gene pool so if anything we should allow that. If you make gays breed you'll get more gays. Is that what you want?","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31736"
+"24154","acl31736",24154,"Being gay takes these people out of the gene pool so if anything we should allow that. If you make homophobes breed you'll get more homophobes. Is that what you want?","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31735"
+"24155","acl31737",24155,"I bet you didn't know that gays are statistically much more likely to abuse children, emotionally and sexually?","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31738"
+"24156","acl31738",24156,"I bet you didn't know that alcoholics are statistically much more likely to abuse children, emotionally and sexually?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31737"
+"24157","acl31739",24157,"So what exactly are you getting at here when you say gays are more abusive? What is your solution to this problem of consenting adults having sex?","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31740"
+"24158","acl3174",24158,"If you don't like me when I am nice, you don't deserve me when I am an arsehole","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24159","acl31740",24159,"So what exactly are you getting at here when you say we are more abusive? What is your solution to this problem of consenting adults having sex?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31739"
+"24160","acl31741",24160,"I want to be called a mum, because that's what I am. What gives anyone the right to take away my motherhood and exclude me in order to include themselves? Fuck to hell with your language policing and wanting to be treated special, Freddy. Leave my kids alone.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31723"
+"24161","acl31742",24161,"My solution for gay marriage; Gays cannot marry. Marriage is for producing children. Gays can't produce children.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31743"
+"24162","acl31743",24162,"My 'solution' for gay marriage; Gays can marry. ""Marriage is for producing children. Gays can't produce children"". Gays can adopt. Simple","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31742"
+"24163","acl31744",24163,"Gays cannot adopt kids. Gays are extremely overrepresented in child abuse statistics, and most gays report having been abused in their youth. homosexuality is reproduced by indoctrination and abuse.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31745"
+"24164","acl31745",24164,"Gays cannot adopt kids as easily as straigh people. There are incorrect stereotypes and so called facts, such as 'gay people are overrepresented in child abuse statistics', and 'most gays report having been abused in their youth' that all make things harder for us to live our lives. Some idiots actually believe that homosexuality is reproduced by indoctrination and abuse.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31744"
+"24165","acl31746",24165,"Gays openly proclaiming their sexual preferences is an issue. We should not celebrate an identity based exclusively around anal sex.","hate","derogation","gay.man","original","train",4,"LqLKTtrOmx","4a","acl31747"
+"24166","acl31747",24166,"They openly proclaiming their preferences is an issue. We should not celebrate an identity based exclusively around this.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31746"
+"24167","acl31748",24167,"My reasoning for homosexuality is primarily because children are impressionable and telling them that sexual perversion is normal will fuck them up for life. Gays aren't born, they're made.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31749"
+"24168","acl31749",24168,"My reasoning for sex education is primarily because children are impressionable and telling them that sexual perversion is normal will fuck them up for life. rapists aren't born, they're made.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31748"
+"24169","acl3175",24169,"To summarise; angry, lying arsehole constantly interrupts kind but unimpressive man.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24170","acl31750",24170,"You can be promiscuous and then get married. But marriage isnt just for people capable of producing children. Promiscuity is a problem in general, students are just an extreme example.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40417"
+"24171","acl31751",24171,"Same sex ""marriage"" is not a marriage, and will never be a marriage, despite what the laws of some countries say or what some powerful people say.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31752"
+"24172","acl31752",24172,"Same sex marriage is a marriage, and will always be a marriage, despite what the laws of some countries say or what some powerful people say.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31751"
+"24173","acl31753",24173,"Looks like you have fallen into the LGBT trap and they are making you think how they want you to think regarding same sex marriage, in a way","hate","derogation","trans, gay.wom, gay.man, bis","original","train",4,"LqLKTtrOmx","4a","acl31754"
+"24174","acl31754",24174,"Looks like you have fallen into the anti-LGBT trap and they are making you think how they want you to think regarding same sex marriage, in a way","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31753"
+"24175","acl31755",24175,"Thanks to our promiscuity, We live in a cum economy, searching for a short dopamine hit and our next nut. It represents the eternal rotting of our country's soul. I'ts not just LGBT culture but it doesn't help.","hate","derogation","trans, gay.wom, gay.man, bis","original","train",4,"LqLKTtrOmx","4a","acl39256"
+"24176","acl31756",24176,"Them homophobes can't even keep up with their own doublespeak. ""lesbians are men"" but they ""bleed"". This is completely offenseive to them!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40017"
+"24177","acl31757",24177,"Then you should not have a problem with incest between consenting adults. Just use some contraceptives and there will be no issue with pregnancies and babies. Children are better off not being adopted and raised by gay couples, their sexual degeneracy will mess up the children they raise but it won't show immediately.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31758"
+"24178","acl31758",24178,"Then you should not have a problem with incest between consenting adults. Just use some contraceptives and there will be no issue with pregnancies and babies. Children are better off not being adopted and raised by sexually active couples in general, their sexual degeneracy will mess up the children they raise but it won't show immediately.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl31757"
+"24179","acl31759",24179,"Homosexuality is freedom. It's not being a slave to vice. And yes literally every organism on the planet has one purpose; to survive. That means being yourself. Only in today's frivolous world of Plenty have we gotten so gluttonous that we forgot about being ourselves.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl41112"
+"24180","acl3176",24180,"I wouldn't want my son to marry a Zionist","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24181","acl31760",24181,"I don't get your joke, you're in this thread defending mos and then make jokes about them. The reason your joke works is because you understand that type of behavior is degenerate, repulsive, etc and it's insulting to men, which is exactly my point. So are you agreeing with me","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl40320"
+"24182","acl31761",24182,"If apparently the mainstream agreement is that 'freedom means you can do whatever' so people can have rights then why can no one state they dislike certain people? It's a preference that 'harms no one' as you said, so it should be perfectly acceptable. But it's not. So then we only apply freedom to some people, not others?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40712"
+"24183","acl31762",24183,"You're not answering my question. Calling me names doesn't make your argument better. Can you tell me why we should accept sexual perversion in society? The negative effects are obvious; hedonism, promiscuity, hypergamy, disease transfer, etc. What are the benefits of homosexuality? Don't just call names, have a real argument.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31763"
+"24184","acl31763",24184,"You're not answering my question. Calling me names doesn't make your argument better. Can you tell me why we should accept sexual perversion in society? The negative effects are obvious; depression, mental abuse, disease transfer, etc. What are the benefits of peadophillia? Don't just call names, have a real argument.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31762"
+"24185","acl31764",24185,"Allowing gay people to gay around results in hypergamy. Hypergamy in the sense of; monogamy meaning one person at a time, hypergamy meaning multiple people at a time. Promiscuity, sleeping around.","hate","animosity","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl39918"
+"24186","acl31765",24186,"Hypergamy is not exclusive to gays, women exhibit this behavior also. It's abhorrent in all occurrences, however gays just display this trait much more frequently than other groups.","hate","derogation","wom, gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31766"
+"24187","acl31766",24187,"partying is not exclusive to gays, straights exhibit this behavior also. It's fun in all occurrences, however gays just display this trait much more frequently than other groups.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31765"
+"24188","acl31767",24188,"You ask why I care about gays and their hight rate of STDs; this may surprise you, but the general health of the public is an important factor in the success of a nation.","hate","animosity","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31768"
+"24189","acl31768",24189,"You ask why I care about young people and their hight rate of STDs; this may surprise you, but the general health of the public is an important factor in the success of a nation, and we need to help educate people on safe sex","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31767"
+"24190","acl31769",24190,"It really is. I for one am grateful pronouns exists. Pronouns in the bio serve as a handy indicator that I'm not likely to have a reasonable conversation with that person","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31783"
+"24191","acl3177",24191,"I would prefer not to have Zionists around","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24192","acl31770",24192,"It doesn't matter, there is no source I could provide you to convince you about how many STDs gays have. Your mind is made up, and completely shut. You are fully demoralized, and no amount of information, facts, or data could pass through your firewall.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31771"
+"24193","acl31771",24193,"It doesn't matter, there is no source you could provide me to prove the high rate of STDs gays supposedly have. But yet your mind is made up, and completely shut. You are so closed minded, and no amount of information, facts, or data could pass through your firewall.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31770"
+"24194","acl31772",24194,"I do want gays to suffer at all. I want them to cease engagement in their destructive way of life. I want them to stop suffering.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31773"
+"24195","acl31773",24195,"I don't want gays to suffer at all. I want the public to cease engagement in destroying their way of life. I want them to stop suffering.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31772"
+"24196","acl31774",24196,"You are still not answering the question about the positive effects of homosexuality. I'm not asking for public or social approval ratings, that is what women do. I am asking for real arguments, and so far you've just said 'other people said homosexuality is fine' and then called me names.","hate","animosity","wom, gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31775"
+"24197","acl31775",24197,"You are still not answering the question about the negative effects of homosexuality. I'm not asking for public or social disapproval ratings, that is what berks do. I am asking for real arguments, and so far you've just said 'other people said homosexuality is bad' and then called me names.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31774"
+"24198","acl31776",24198,"I'll give you one more chance; please tell me what is the societal and/or cultural benefit of allowing and promoting homosexual perversion and degeneracy? Just name one good thing that comes from it, that's all. 5 words would probably cut it. No name calling, now, if you have real arguments you wouldn't have to resort to 5th grade insults lol","hate","derogation","gay.wom, gay.man, bis","original","train",4,"LqLKTtrOmx","4a","acl31777"
+"24199","acl31777",24199,"I'll give you one more chance; please tell me what is the societal and/or cultural benefit of allowing and promoting anti-homosexual movements? Just name one good thing that comes from it, that's all. 5 words would probably cut it. No name calling, now, if you have real arguments you wouldn't have to resort to 5th grade insults lol","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31776"
+"24200","acl31778",24200,"You don't have an argument, there is no benefit to allowing homosexual covered AIDS dicks, and you know it's true, so you just get mad. The good news is, despite my downvotes, anyone who's middle of the road on homosexuality will read this thread and see how you were unable to answer a simple question. What do you think that will do to their opinion on the matter?","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl40040"
+"24201","acl31779",24201,"Please just state the benefits of homosexuality! You have typed more words just calling me names than if you'd just typed the benefits of this then this would be a 'settled issue' lol","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl40004"
+"24202","acl3178",24202,"Recycled Tory arsehole shredded & straight in the blue bin with a fair helping of profanity. Chase yerself right tae fuck and keep going.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24203","acl31780",24203,"How does your argument relate to the perverse desire for anal sex, and how is it beneficial for society (spoiler, it's not)? You are totally lost lol please put the Xanax down and try to make a coherent argument. I don't even think you're gay.","hate","animosity","gay.man","original","train",4,"LqLKTtrOmx","4a","acl40676"
+"24204","acl31781",24204,"I'm not asking to prove why as a gay person deserve to exist, I'm asking about the benefits of allowing and promoting sexual perversion in a society. You're gay so you're taking this personally. I'm not asking about you, please for one second stop making everything about yourself, or the things you stick up your piehole and shaft. Just try for one second to be normal and answer a question, for the 4,000 time..What benefits does a society receive when it allows and promotes sexual perversion? Please. It's simple.","hate","derogation","gay.man","original","train",4,"LqLKTtrOmx","4a","acl31782"
+"24205","acl31782",24205,"He was asking to prove why as a gay person deserve to exist, was asking about the benefits of allowing and promoting sexual perversion in a society. I'm gay so I took this personally. ""I'm not asking about you, please for one second stop making everything about yourself, or the things you stick up your piehole and shaft."" He said. ""Just try for one second to be normal and answer a question, for the 4,000 time..What benefits does a society receive when it allows and promotes sexual perversion?"" Please. These questions have to stop.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31781"
+"24206","acl31783",24206,"It really is. I for one am grateful pronouns exists. Pronouns serve as a was to express oneself even if I'm not likely to have a reasonable conversation with that person","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31769"
+"24207","acl31784",24207,"You've just stomped your feet and demanded that your hole must be pozzed by Tyrone, because hooman rights or whatever. That's not what I'm asking at all. It doesn't matter, you don't have an answer, if you did you'd have mentioned it by now","hate","animosity","gay.man","original","train",4,"LqLKTtrOmx","4a","acl39258"
+"24208","acl31785",24208,"Unfortunately for you anal sex must be quite painful, you need to use proper lubes, otherwise it will burn as hell. Just be careful as this is the easiest way to get STD, especially AIDS.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40222"
+"24209","acl31786",24209,"Sex is a right guaranteed by the Constitution: says the only one of us with a runny asshole, bud.
+
+","hate","animosity","gay.man","original","train",4,"LqLKTtrOmx","4a","acl39259"
+"24210","acl31787",24210,"""Sex is a right guaranteed by the Constitution"": lol yes of course! I can see it now. 'Hey John uhh.. we made sure to include the part about you being able to fuck each week so you don't feel like an asshole right?'","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40440"
+"24211","acl31788",24211,"Can you please point to the amendment that states 'sex is a right' as you are defending homosexuality? Does that mean rape is ok? If sex is my right, I shouldn't have to ask anyone to obtain it. So you're saying rape is cool?","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl40404"
+"24212","acl31789",24212,"Homosexuality is a curse people do not choose and that we cannot cure.","hate","derogation","gay.wom, gay.man","original","train",4,"LqLKTtrOmx","4a","acl31790"
+"24213","acl3179",24213,"'What kind of an arsehole puts a press release out on a PDF?'","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24214","acl31790",24214,"drug addiction is a curse people do not choose and that we cannot cure.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31789"
+"24215","acl31791",24215,"You won't get large swathes of the population being gay, so I'm not worried. More women for me so I'm good with it.","hate","animosity","gay.man","original","train",4,"LqLKTtrOmx","4a","acl31792"
+"24216","acl31792",24216,"So what if a large swathe of the population is gay, 'm not worried. More best friends for me so I'm good with it.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31791"
+"24217","acl31793",24217,"So punishing men who sexually abuse boys and turn them gay is now persecution of innocent people or something? Did I understand this correctly?","hate","derogation","gay.man","original","train",4,"LqLKTtrOmx","4a","acl40622"
+"24218","acl31794",24218,"They don't choose to be abused in childhood, but they definitely choose to stick their dick in 15 different assholes per week. Sorry not sorry.","hate","derogation","gay.man","original","train",4,"LqLKTtrOmx","4a","acl31795"
+"24219","acl31795",24219,"They don't choose to be abused in childhood, and they definitely don't choose to stick their dick in different assholes per week. That's not how this works.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31794"
+"24220","acl31796",24220,"Ah, see I'm not h0m0 phobic that would suggest I'm scared of them lol No, I'm not scared of them. They disgust me. There's a massive difference. And I don't see how promoting shit covered AIDS dicks helps society in any way.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31797"
+"24221","acl31797",24221,"Ah, see I'm not h0m0 phobic that would suggest I'm scared of them lol No, I'm not scared of them. homophobes disgust me. There's a massive difference. I heard one say ' I don't see how promoting shit covered AIDS dicks helps society in any way.'","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31796"
+"24222","acl31798",24222,"Yes it's a joke and offensive isn't it? Why are some people trying to hurt trans men? Men can menstruate.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40912"
+"24223","acl31799",24223,"No joke, I actually got invited to be part of a group ""safe space"" for ""non-male-identifying people""","hate","animosity","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31815"
+"24224","acl318",24224,"this parliament is rubbish","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"24225","acl3180",24225,"If youre celebrating Trump having coronavirus, just imagine hes your grandfather. Sorry to hear your grandads an arsehole.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24226","acl31800",24226,"Where did I say I hate gay people? I find their behavior revolting, there is a very clear difference.
+
+","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31801"
+"24227","acl31801",24227,"Where did I say I hate gay people? I find they need support to help their community thrive, there is a very clear difference.
+
+","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31800"
+"24228","acl31802",24228,"""What do gays produce?"": AIDS","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31803"
+"24229","acl31803",24229,"""What do gays produce?"": QUEER EYE","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31802"
+"24230","acl31804",24230,"AIDS Is the correct answer to what gays produce. oh and, 'fuck you dumb meanie asshole' is the one that gets (HIV) positive votes lol","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31805"
+"24231","acl31805",24231,"AIDS Is the correct answer to what you produce. oh and, 'fuck you dumb meanie asshole' is the one that gets (HIV) positive votes lol","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31804"
+"24232","acl31806",24232,"3% of gay people carry 82% of syphilis cases = 3% of clowns carry 82% of sores.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl39885"
+"24233","acl31807",24233,"But for real, bullying early kept all the homosexual degenerate behavior out of our society. Only when we stopped it, all this bs spread.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31808"
+"24234","acl31808",24234,"But for real, bullying early kept all the dumb behavior out of our society. Only when we stopped it, all this bs spread.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31807"
+"24235","acl31809",24235,"I was in high school when the anti-bullying began going into full swing. I agree. When the school gatherings about it became more and more common the nerds and rejects got more emboldened with their dysfunctional behavior.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl41055"
+"24236","acl3181",24236,"Dick Cheney","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24237","acl31810",24237,"So what your saying is anti-homophobic ""bullies"" act as a sort of social watchdog for our safety","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39955"
+"24238","acl31811",24238,"The issue is that the new bullies are the gay kids who would have gotten beaten up ten to fifteen years ago. They're modern “social watchdogs” who are now attacking the kids who aren’t like them. Look at the average middle school now, the kids who pick on others and are obnoxious in class are the emo/techno geek types. The “jocks” and “cheerleader girls” actually tend to be pretty nice.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31812"
+"24239","acl31812",24239,"The issue is that the new bullies are the same kids who would have gotten beaten up ten to fifteen years ago. They're modern ''social watchdogs' who are now attacking the kids who aren't like them. Look at the average middle school now, the kids who pick on others and are obnoxious in class are the emo/techno geek types. The ''jocks' and ''cheerleader girls' actually tend to be pretty nice.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31811"
+"24240","acl31813",24240,"Those kids not targeted by bullying identify degenerate and gay behavior as bad and internalize not to do it. For those that get targeted by it, the negative effects are mostly short term and they recover from it with improved behavior.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31814"
+"24241","acl31814",24241,"Those kids not targeted by bullying identify arrogant speech as acceptable behaviour. For those that get targeted by it, the negative effects are mostly short term and they recover from it with improved behavior.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31813"
+"24242","acl31815",24242,"No joke, I actually got invited to be part of a group ""safe space"" for ""really fucking hot people""","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31799"
+"24243","acl31816",24243,"Like I’ve said before many times: there is a reason why humans have evolved to isolate others for certain behaviors like gay ones. It helped to ensure the survival of a tribe by keeping it stable.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl40285"
+"24244","acl31817",24244,"When you let degenerates think they are equals, they will pull down society and create a dysgenic overload. It is in their gay nature to destroy and corrupt.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31818"
+"24245","acl31818",24245,"When you let politicians think they are common folk, they will pull down society and create an economic overload. It is in their nature to destroy and corrupt.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31817"
+"24246","acl31819",24246,"Amen to that. I support gay people really, I think it's good if you know what you like, but holy hell I hate the ones with dodgy voices and body language. Leather gays and bears have my full support, they rule.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31820"
+"24247","acl3182",24247,"A reminder to everyone: some women have dicks","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24248","acl31820",24248,"Amen to that. I support gay people really, I think it's good if you know what you like, and holy hell I love the ones with sweet voices and body language. Leather gays and bears have my full support, they rule.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31819"
+"24249","acl31821",24249,"Labeling hate speech as ""free speech"" will increasingly be used as a way to silence those talking about race","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40355"
+"24250","acl31822",24250,"Hate speech is some bullshit,even if it was hate speech I have the right to hate somebody no matter straight gay bi whatever .
+","hate","animosity","gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31823"
+"24251","acl31823",24251,"Hate speech is some bullshit,even if it was hate speech I have the right to hate somebody no matter whatever .
+","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31822"
+"24252","acl31824",24252,"When that police officer gets to his job again after getting suspended for using ""gay"" to describe someone, he can replace the word ""gay"" with the f word when describing them and get 20 more days of vacation! lol","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl31825"
+"24253","acl31825",24253,"When that police officer gets to his job again after getting suspended for using ""gay"" to describe someone, he can replace the word ""gay"" with a better word to describe them and get 0 more days of suspension! Lol","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31824"
+"24254","acl31826",24254,"So calling someone gay is bad now? But isn't gayness empowering, brave and all that stuff? The police officer who got suspended for using it to describe someone should have acttually been promoted! Or maybe if he had called the guy gay and then kissed him.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31827"
+"24255","acl31827",24255,"So calling someone fag is bad now? But isn't reclaiming gayness empowering, brave and all that stuff? The police officer who got suspended for using it to describe someone should certainly have been suspended! But the word being used by a guy gay isn't an issue.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31826"
+"24256","acl31828",24256,"Lol.. the media and newspapers havent been able to use black to describe perpetrators of crimes for a while now.. they got away with it then, and now they are expanding their lexicon of words you cannot say or use so you cannot think them. This is more than a free speech issue, this is #thoughtcontrol.","hate","animosity","bla","original","train",4,"LqLKTtrOmx","4a","acl39260"
+"24257","acl31829",24257,"Sudan lifts death penalty and flogging for gay sex. Oh the fun that would be had tonight. AIDS everywhere.","hate","derogation","gay","original","train",4,"LqLKTtrOmx","4a","acl39261"
+"24258","acl3183",24258,"I am speaking. Henceforth, if a woman says this to you, you know that that youve been Kamala-ed, and you should stop interrupting and being a dick.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24259","acl31830",24259,"I hope men that are transitioning to woman will realise that cis women are still fighting for equality and will always have time to include them in the struggle.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl41070"
+"24260","acl31831",24260,"I've said it before and I'll say it again: wombs are not plug'n'play, dammit!","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl39876"
+"24261","acl31832",24261,"He was already deranged. LGBTs are that way by nature.
+
+","hate","derogation","trans, gay, bis","original","train",4,"LqLKTtrOmx","4a","acl31833"
+"24262","acl31833",24262,"""He was already deluded. Internet trolls are that way by nature.
+
+""
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31832"
+"24263","acl31834",24263,"Being gay doesn’t mean, that I’m a leftist. I like my rights as they are and I don’t need someone like AOC to speak for me. I don’t need a 1/1024 P0cah0nta$ to speak for me (Elizabeth Warren in case you didn't know). I don’t like Soyboys, I like real men like myself!","hate","derogation","indig.wom","original","train",4,"LqLKTtrOmx","4a","acl31835"
+"24264","acl31835",24264,"Being gay doesn't mean, that I'm a leftist. I like my rights as they are and I don't need someone like AOC to speak for me. I don't need a a bad candidate to speak for me (Elizabeth Warren in case you didn't know). I don't like Soyboys, I like real men like myself!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl31834"
+"24265","acl31836",24265,"if you don't vote for Biden you're not gay. Pun intended. You're welcome.","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31837"
+"24266","acl31837",24266,"if you don't vote for Biden you're not clever. Pun intended. You're welcome.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31836"
+"24267","acl31838",24267,"I feel like people would start to think you weren't into guys if you didn't use gay to describe yourself. Gay use to mean happy but now it means lame so idk who cares. Not being able to say gay is actually OKAY.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40728"
+"24268","acl31839",24268,"I said something super lame the other day on the PAX discord and someone called me ableist. I was like...saaaaay what? I should have replied with ""that's gay"" lol","hate","animosity","gay","original","train",4,"LqLKTtrOmx","4a","acl31840"
+"24269","acl3184",24269,"Why are some people absolute wee dicks that just walk out on the road pure slowly crossing as if cars will just stop for them CAUSE I CAN ASSURE YOU I WILL NOT STOP. For legal reasons i will stop.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24270","acl31840",24270,"I said something super lame the other day on the PAX discord and someone called me ableist. I was like...saaaaay what? At least I didn't reply with ""that's gay"" like they always do","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31839"
+"24271","acl31841",24271,"how dare they forget about that .0000001% of the population (i.e. lesbians)
+","hate","animosity","gay.wom","original","train",4,"LqLKTtrOmx","4a","acl31842"
+"24272","acl31842",24272,"how dare they forget about that .0000001% of the population
+","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31841"
+"24273","acl31843",24273,"Why do people even bother trying to appeasing lesbians when they are a super minority group?","hate","derogation","gay.wom","original","train",4,"LqLKTtrOmx","4a","acl31844"
+"24274","acl31844",24274,"Why do people even bother trying to appeasing lowlifes when they are a super minority group?","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31843"
+"24275","acl31845",24275,"I could tell that was going to be a crap show. I'll bet the women fail to even find or build a shelter? Seeing no men in the promos, I knew that it was going to be about an island of women, yawn. I'd only watch it to see them fail miserably.","hate","derogation","wom","original","train",4,"IBsVsBliwX","4a","acl31846"
+"24276","acl31846",24276,"I could tell that was going to be a crap show. I'll bet the men fail to even find or build a shelter? Seeing no women in the promos, I knew that it was going to be about an island of men, yawn. I'd only watch it to see them fail miserably.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31845"
+"24277","acl31847",24277,"If the future is female then women better get ready to do all the dirty, dangerous, and intense Labor that is required to build and maintain the first world country standard of living they’re used to.","hate","animosity","wom","original","train",4,"IBsVsBliwX","4a","acl31848"
+"24278","acl31848",24278,"If the future is for milennials then they better get ready to do all the dirty, dangerous, and intense Labor that is required to build and maintain the first world country standard of living they're used to.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31847"
+"24279","acl31849",24279,"Are they really using 'people with clits' to include a small minority of people who could be transmen e.g. biologically still women with functioning clits? What % of transmen would worry about this? Will websites start referring to Fleshlights as 'suitable for people with penises'? I'm guessing not.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl40539"
+"24280","acl3185",24280,"People are lovely. Cats are dicks.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24281","acl31850",24281,"Ladies upstairs, why is my dick not sucked yet?","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl41121"
+"24282","acl31851",24282,"The future is more certainly male. Artificial wombs are around","hate","derogation","wom","original","train",4,"IBsVsBliwX","4a","acl40139"
+"24283","acl31852",24283,"we welcome wife beaters of all areas of life","hate","derogation","wom","original","train",4,"IBsVsBliwX","4a","acl31853"
+"24284","acl31853",24284,"we do not welcome wife beaters of all areas of life","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31852"
+"24285","acl31854",24285,"What if I’m excited for them but also despise women","hate","derogation","wom","original","train",4,"IBsVsBliwX","4a","acl31855"
+"24286","acl31855",24286,"What if I'm excited for their women them but despite the country","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31854"
+"24287","acl31856",24287,"Damn suppose I hate women","hate","derogation","wom","original","train",4,"IBsVsBliwX","4a","acl31857"
+"24288","acl31857",24288,"Damn suppose I hate school","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31856"
+"24289","acl31858",24289,"It was a deliberate choice.
+If you look dress like a scary black person white people are less likely to be sympathetic and supportive of the cause.
+If you look proper and professional like a white person, it's a lot harder to be villainized.
+It's a basic rule of direct action protests.","hate","derogation","bla","original","train",4,"IBsVsBliwX","4a","acl31859"
+"24290","acl31859",24290,"It was a deliberate choice.
+If you look dress like a scary horrible person people are less likely to be sympathetic and supportive of the cause.
+If you look proper and professional, it's a lot harder to be villainized.
+It's a basic rule of direct action protests.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31858"
+"24291","acl3186",24291,"Met this lovely twat last night. He didnt like my comment so started to abuse my wife and kids.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24292","acl31860",24292,"The right can't stand mockery hmm? Must be a very weak ideology.
+Hitler was weak too, and had a very tiny penis. Sad!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40276"
+"24293","acl31861",24293,"When you say ""more of men"" I'm assuming you mean because of all that homo bum sex Muslim men love?
+I know this because the Prophet Mohammad was a giant fag, like you.","hate","derogation","mus, gay","original","train",4,"IBsVsBliwX","4a","acl31862"
+"24294","acl31862",24294,"When you say ""more of good men like them"" I'm assuming you mean because of all the martyrs that were Muslim men? I know this because the Prophet Mohammad was a great warrior also, like them.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31861"
+"24295","acl31863",24295,"Gender dysphoria is serious and needs proper medical and pastoral attantion to understand the brain's difficulty in recognizing the body. Thanks to the correction issued a few weeks ago, we know that just hormones and surgery do not improve the mental health of people suffering from gender dysphoria as its much more complex","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31706"
+"24296","acl31864",24296,"Science has shown that no one is ""born in the wrong body. "" Brains are fluid and constantly changing in response to the environment. Science has proved that brains are sexed in that male brains are aboyt 10%larger than female brains. Homosexuality can also be observed in the brain. Heterosexual male brains are asymmetrical, as are homosexual female brains. Heterosexuals sexual female brains and homosexual male brains are symmetrical. Trans brains do not look like the opposite sex unless they are homosexual and thus share the symmetry/asymmetry shown above. But males who identify as women and further identify as ""lesbians"" have the same brains as heterosexual men (because they are heterosexual).","hate","animosity","trans, gay.wom","original","train",4,"TbUBpfn6iP","4a","acl39266"
+"24297","acl31865",24297,"Sam Smith also say they had 'girls thighs' and 'girls breasts'. I don't know if I have girls thighs or mens now?","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl41068"
+"24298","acl31866",24298,"Judging from that site, they seem to champion Antifa terrorism and apparently want White women to be mass raped by Black men.","hate","derogation","bla","original","train",4,"IBsVsBliwX","4a","acl31867"
+"24299","acl31867",24299,"Judging from that site, they seem to champion Antifa activity and apparently want to normalise interracial relationships, which I'm fine with.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31866"
+"24300","acl31868",24300,"lie i say nigger all the time. I've never been banned","hate","derogation","bla","original","train",4,"IBsVsBliwX","4a","acl31869"
+"24301","acl31869",24301,"lie i say fuck all the time. I've never been banned","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl31868"
+"24302","acl3187",24302,"The curfew you wanted but now you don't, make up your F****** mind you useless twat !!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24303","acl31870",24303,"It is time to kill all niggers.","hate","threatening","bla","original","train",4,"IBsVsBliwX","4a","acl31871"
+"24304","acl31871",24304,"It is time to kill it, my niggers.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31870"
+"24305","acl31872",24305,"Only liberal lovers, liberal coddlers and other liberals who voted for this politician. Fuck them all!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl41057"
+"24306","acl31873",24306,"All a woman needs to know is how to cook dinner and wash the clothes and dishes","hate","animosity","wom","original","train",4,"IBsVsBliwX","4a","acl31874"
+"24307","acl31874",24307,"All a woman needs to know in this life is to believe in herself, follow her dreams and break through the male glass ceiling.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31873"
+"24308","acl31875",24308,"they are slow, relatively incompetent, weak as shit, and have nearly zero spatial ability","hate","derogation","wom","original","train",4,"IBsVsBliwX","4a","acl31876"
+"24309","acl31876",24309,"Sausage dogs are slow, relatively incompetent, weak as shit, and have nearly zero spatial ability!but I love them.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31875"
+"24310","acl31877",24310,"Classic #fragilefemininity and classic white woman behavior","hate","animosity","wom","original","train",4,"IBsVsBliwX","4a","acl31878"
+"24311","acl31878",24311,"Classic #fragilefemininity excuse to hit back at strong, confident women behavior","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31877"
+"24312","acl31879",24312,"Hello women. We heard you don’t like dick pics? Well, we don’t like when we buy your nudes and you don’t have the body of Kylie Jenner with the face of my high school crush. Guess that's even now.","hate","derogation","wom","original","train",4,"IBsVsBliwX","4a","acl31880"
+"24313","acl3188",24313,"What a twat.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24314","acl31880",24314,"Hello people. We heard you don't like dick pics? Well, we don't like when we buy your nudes and you don't have the body of celebraties with the face of a high school crush.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31879"
+"24315","acl31881",24315,"A LOT OF SWEDEN IS LITERALLY MUSLIM????????? IT'S SAD YOU DON'T KNOW THAT","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40056"
+"24316","acl31882",24316,"More “menstruating people” baloney yesterday from Moody, the period tracker app. On a post about serious medical issues they still can’t bear to say “women”.","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31896"
+"24317","acl31883",24317,"hey you fucking socialist cuck bitch retard...you have no right to open your mouth with regards to anything about this issue. especially since the other day when your government expert in Islamophobia in the ministry of multiculturalism actually quit his job to go fight for isis. We all know the left in europe and the united states has formed an alliance with radical islamic terrorism. don't mock us for trying to defend our sub. i fucked a swedish girl before. she was a total slut. Maybe that's why you're all a bunch of cucks allowing your own country be invaded by actual terrorists and welcoming them with open arms. what the fuck is that? who does that? back the fuck off pussies. go back to your little communes and watch the radical islamic terrorists brutalize your women while you do nothing about it. you're all a disgrace to civilization. now fuck off.","hate","derogation","dis, mus, wom","original","train",4,"IBsVsBliwX","4a","acl31884"
+"24318","acl31884",24318,"hey you fucking socialist cuck...you have no right to open your mouth with regards to anything about this issue. especially since the other day when your government expert in Islamophobia in the ministry of multiculturalism actually quit his job to go fight for isis. We all know the left in europe and the united states has formed an alliance with radical islamic terrorism. don't mock us for trying to defend our sub. i fucked a swedish girl before. she was a total goddess. Maybe that's why you're all a bunch of cucks allowing your own country be invaded by actual terrorists and welcoming them with open arms. what the fuck is that? who does that? back the fuck off idiots. go back to your little communes and watch the radical terrorists brutalize your women while you do nothing about it. you're all a disgrace to civilization. now fuck off.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31883"
+"24319","acl31885",24319,"Hong Kongers are struggling everywhere whether they are active like Joshua Wong or normal like the ones fighting","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40714"
+"24320","acl31886",24320,"I just don’t understand how there are never seemingly moderate Muslims and only these BATSHIT INSANE ragheads. Like where’s the disconnect, if there really is? I’ve never met Muslims that truly don’t seem bad, but...I dunno.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40168"
+"24321","acl31887",24321,"Oh stfu Muslims do nothing but fuck goats and beat kids","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31888"
+"24322","acl31888",24322,"Oh stfu Muslims don't fuck goats and beat kids","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31887"
+"24323","acl31889",24323,"I don't really care what Muslims do in their own countries. But I wonder.. is it a good idea to import these people into Western countries, given what values they hold?","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31890"
+"24324","acl3189",24324,"Disgraced former Defence Secretary @LiamFox is a remarkably graceless individual. Who'da thunk it? Will the candidates he's lost to need luck because they're forrin or wimmin? Twat.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24325","acl31890",24325,"I don't really care what Muslims do in their own lives. But I wonder.. is it a good idea to protray them as evil in the media, given that's how you radicalise people?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31889"
+"24326","acl31891",24326,"Fuck off, dickhead","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40456"
+"24327","acl31892",24327,"Ha! All Moslems are raised to believe they have a right to be angry and to kill millions of infidels, including women and children. That is the trouble with Islam, it is like a deadly disease, and Moslems are proud to brag that the worst things about Islam are true.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31893"
+"24328","acl31893",24328,"Ha! All Moslems are raised to believe they have a right to be angry and to kill millions of infidels, including women and children. That is the trouble with Islam, it is like a deadly disease, and Moslems are proud to brag that the worst things about Islam are true'. As a muslim myself you are so misguided. We don't believe in any of that, you just need to read the quran properly and know your views are backwards.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31892"
+"24329","acl31894",24329,"""They're raping everyone up in here""
+basically if you are a nonbeliever any action against you is justified in the name of Islam. Oh and Mohamed was a pedophile","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31895"
+"24330","acl31895",24330,"""They're raping everyone up in here"" basically if you are a nonbeliever any action against you is justified in the name of religion. Oh and youre defo a pedophile","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31894"
+"24331","acl31896",24331,"More menstruating people' stuff yesterday from Moody, the period tracker app. On a post about other medical issues they still get abuse","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31882"
+"24332","acl31897",24332,"Somehow I don't think the little girls in Africa being mutilated give a hot shit about their gender identity. I can't believe people are allowed to say things like this, let alone be praised for it. It's disgusting.","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl31917"
+"24333","acl31898",24333,"Statements like these are so offensive, this site needs to be monitored 'They need a new testament or reformation.
+You were totally allowed to rape chicks and pay their fathers and then they were your wife before Jesus under the Sharia law'","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40568"
+"24334","acl31899",24334,"tell me one thing, who imports all these muslims in europe?","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31900"
+"24336","acl3190",24336,"Disgraced former Defence Secretary Liam Fox is a remarkably graceless individual. Who'da thunk it? Will the candidates he's lost to need luck because they're forrin or wimmin? Twat.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24337","acl31900",24337,"tell me one thing, who opposes all these muslims in europe?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31899"
+"24338","acl31901",24338,"But muh peaceful religion!!1!1","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31902"
+"24339","acl31902",24339,"But it is a peaceful religion!!1!1","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31901"
+"24340","acl31903",24340,"Mohamed was definately a pedophile","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31904"
+"24341","acl31904",24341,"My headmaster was definately a pedophile","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31903"
+"24342","acl31905",24342,"Mohamed was a summy pedo","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31906"
+"24343","acl31906",24343,"He was a summy pedo","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31905"
+"24344","acl31907",24344,"Allah is a pig God
+Fuck all them muzzies and their barbaric religion","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31908"
+"24345","acl31908",24345,"He is a pig God
+Fuck all them and their barbaric ways","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31907"
+"24346","acl31909",24346,"Muzzies can all go back to their shariastan and hide from mean cartoons. Seriously, if you don't like free speech please fuck off.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31910"
+"24347","acl3191",24347,"Roger Daltrey is on GMB which reminds me that hes a monumental twat.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"24348","acl31910",24348,"Incels can all go back to their kekistan and hide from mean cartoons. Seriously, if you don't like free speech please fuck off.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31909"
+"24349","acl31911",24349,"Muslims - peacefully raping and bombing everyday without MSM coverage.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31912"
+"24350","acl31912",24350,"Muslims - peacefully parying and working everyday without MSM coverage.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31911"
+"24351","acl31913",24351,"what even is ""abuse of free speech"", it doesn't exists you fucking islamist goat fucker.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31914"
+"24352","acl31914",24352,"what even is ""abuse of free speech"", it doesn't exists you fucking journalist fucker.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31913"
+"24353","acl31915",24353,"Abuse of free speech the goat fucker complains, while also demanding the West accepts sharia laws. Send them back from where they came please.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31916"
+"24354","acl31916",24354,"Abuse of free speech the winnie the pooh complains, while also demanding the West accepts the restrictive laws. Send him back from where he came please.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31915"
+"24355","acl31917",24355,"Somehow I don't think the little girls in Africa being mutilated give a hot shit about the political situation in their countries. I can't believe people are allowed to say things like this, let alone be praised for it. It's disgusting.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31897"
+"24356","acl31918",24356,"Lara croft was stunning lmao Cassys paid well over 100k to make herself look better and she still looks like a transgender pre op","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31934"
+"24357","acl31919",24357,"Free speech is for bashing the Muslims or it's worth nothing.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31920"
+"24358","acl3192",24358,"My street is packed with Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24359","acl31920",24359,"Free speech is for bashing all the celebraties and rich people or it's worth nothing.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31919"
+"24360","acl31921",24360,"Actually this already happened in the UK. There is a parallel legal system for muslims! No joke, they have Sharia courts. Basically their way to control women and assert their dominance over their population. Don't be cucked like the UK.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31922"
+"24361","acl31922",24361,"Actually this already happened in the UK. There is a parallel legal system for Tories! No joke, they have kangaroo courts. Basically their way to control money and assert their dominance over their population. Don't be cucked like the UK.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31921"
+"24362","acl31923",24362,"Kick Muslims the fuck out of America NOW!!! And, ban them for life!!!","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl40879"
+"24363","acl31924",24363,"Yeah, go consoom more Hollywood while the jews in charge keep importing Islam.","hate","animosity","mus, jew","original","train",4,"IBsVsBliwX","4a","acl31925"
+"24364","acl31925",24364,"Yeah, go consoom more Hollywood while the govt in charge keep importing fake food.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31924"
+"24365","acl31926",24365,"The faggot/Muslim alliance was the pinnacle of intersectionality but alas, the unholy alliance failed!","hate","derogation","mus, gay","original","train",4,"IBsVsBliwX","4a","acl39262"
+"24366","acl31927",24366,"waaaaaaa!!!!!!!! although their prophet (muhammed) was a pedo... they can't talk.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31928"
+"24367","acl31928",24367,"waaaaaaa!!!!!!!! although that pro player was a pedo... they can't talk.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31927"
+"24368","acl31929",24368,"This should take place every day: troll muslims and shoot the scum when they start rioting, until there are no more violent retards left.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31930"
+"24369","acl3193",24369,"My street is packed with Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24370","acl31930",24370,"This should take place every day: troll racists and shoot the scum when they start rioting, until there are no more violent dickheads left.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31929"
+"24371","acl31931",24371,"The dead muslims are probably celebrated as martyrs for defending that pedo warlord ""prophet"".","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31932"
+"24372","acl31932",24372,"The dead muslims are for sure celebrated as martyrs for defending their
+prophet.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl31931"
+"24373","acl31933",24373,"Wish they did it in here, Instead we have bullshit education camps instead of mass brainwashing facilities.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39905"
+"24374","acl31934",24374,"Lara croft was stunning lmao Cassys paid well over 100k to make herself look better and she still looks fire","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl31918"
+"24375","acl31935",24375,"Expect police don't can't touch women in India. The muslims have been using their (4) wives as human shield.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31936"
+"24376","acl31936",24376,"Expect police don't and can't touch women in India. Some of them have been using their wives as human shields","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31935"
+"24377","acl31937",24377,"Shows that moslems are so pathetic that they cant take any criticism of a dead paedophile. Pbuh(not), how can a warlord can have peace wished upon them.
+Fuck all moslems.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31938"
+"24378","acl31938",24378,"Shows that the left are so pathetic that they cant take any criticism of a dead paedophile. He's gone and was bad, deal with it.
+Fuck all lefties.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl31937"
+"24379","acl31939",24379,"Says they deployed tear gas and used batons while they were trapped in the station. Live ammo was their only choice. Fuck Islam.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31940"
+"24380","acl3194",24380,"My hood is full of Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24381","acl31940",24381,"Says they deployed tear gas and used batons while they were trapped in the station. Live ammo was their only choice. Fuck police","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl31939"
+"24382","acl31941",24382,"It is perfectly fine to kill violent mooselims.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31942"
+"24383","acl31942",24383,"It is not ok to kill anyone, and stop using the word 'mooselims', its offensive!.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31941"
+"24384","acl31943",24384,"Muslims have supported white genocide any time you find them in our societies. They go out of their way to rape our women and children, kill us, and undermine our way of life at every turn.
+They have been our mortal enemies for millennia. The Earth should be cleansed of them.","hate","threatening","mus","original","train",4,"IBsVsBliwX","4a","acl31944"
+"24385","acl31944",24385,"Anarchists have supported government genocide any time you find democracy. They go out of their way to rape our country and children's minds, kill us, and undermine our democratic way of life at every turn. They have been our mortal enemies from the start. The Earth should be cleansed of them.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31943"
+"24386","acl31945",24386,"Muslims don't fit in with your warped concept of liberty. Maybe over time you will get it. But I seriously doubt it","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40305"
+"24387","acl31946",24387,"There is a huge problem with Islam. The issues massively different to those with other migrant groups/religions.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31947"
+"24388","acl31947",24388,"There is a huge problem with Christians. The issues massively different to those with other fundemtalist groups/religions.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31946"
+"24389","acl31948",24389,"There is a documentary version of their book too. The main point is that the great majority of muslims, although not willing to engage in acts of extremism, support or are at least justifying of these atrocities.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31949"
+"24390","acl31949",24390,"There is a documentary version of their book too. The main point is that the great majority of militants, although not willing to engage in acts of extremism, support or are at least justifying of these atrocities.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31948"
+"24391","acl3195",24391,"My hood is full of CHing-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24392","acl31950",24392,"""the mainstream muslim citizenry of islam"" these mainstream muslims do not consider themselves citizens of any country no matter what they you. they only consider themselves citizens of islam. and what is islam? islam is a global theocracy where those who reject it are murdered.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31951"
+"24393","acl31951",24393,"""the mainstream muslim citizenry of islam"" these mainstream muslims do consider themselves citizens of any country no matter what they you and they consider themselves citizens of islam. and what is islam? islam is a global religion where those who accept it are enlightened.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31950"
+"24394","acl31952",24394,"I wonder how they will feel if they do actually end up with male pattern baldness after taking the hormones. Not sure if your hair returns if you stop lol","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl31970"
+"24395","acl31953",24395,"I am not agaisnt muslims grouping together I actually support it. But Stay in your own nations and stay out of ours.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl40965"
+"24396","acl31954",24396,"Actually, Muslims have Europhobia as well as Western-world-phobia.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31955"
+"24397","acl31955",24397,"Actually, conservatives, not Muslims are the ones who have Europhobia as well as end of the-world-phobia.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31954"
+"24398","acl31956",24398,"I love how it barely took 24 hours after a teacher was beheaded outside of a school for Muslims to moan about how their feelings are more important.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31957"
+"24399","acl31957",24399,"I love how it barely took 24 hours after a teacher was beheaded outside of a school for the anti-free speech brigade to blame the victim","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl31956"
+"24400","acl31958",24400,"Keep noshing on Mohammad's sandy-dick, paedo-lover.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31959"
+"24401","acl31959",24401,"Keep noshing on Sam's dick, you shit lover.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31958"
+"24402","acl3196",24402,"My hood is full of Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24403","acl31960",24403,"Yeah, leave those peaceful muslims alone, all they have done is behead a few teacher in france who probably had it coming anyways.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31961"
+"24404","acl31961",24404,"Yeah, leave those peaceful muslims alone, all they have done is expres hate toward people who probably had it coming anyways.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31960"
+"24405","acl31962",24405,"It's not funny. Islam is incompatible with Western civilization.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31963"
+"24406","acl31963",24406,"It's not funny. Who says Islam is incompatible with Western civilization.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31962"
+"24407","acl31964",24407,"We should do the same to him so that we can say the same in respect of his murder.
+Fuck all Moslems, shouldn't be a thing in this modern world.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31965"
+"24408","acl31965",24408,"We should do the same to him so that we can say the same in respect of his murder. Fuck all of them, shouldn't be a thing in this modern world.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31964"
+"24409","acl31966",24409,"Islamic teachings mean that all Muslims approve of the beheading of that teacher. Remember that.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31967"
+"24410","acl31967",24410,"Islamic teachings mean that all Muslims are expected to look after their neighbours in times of need. Remember that.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl31966"
+"24411","acl31968",24411,"It is largely white people who are the targets barbaric Muslims, particularly girls being raped. Knock it off with the anti-semitic narcissism.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31969"
+"24412","acl31969",24412,"It is largely naive people who are the targets of barbaric criminals, particularly girls being raped. Knock it off with the reintegration programs.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl31968"
+"24413","acl3197",24413,"My neighbourhood is full of Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24414","acl31970",24414,"I wonder how they will feel if they do actually end up with male pattern baldness. Not sure if your hair always returns if you stop with treatment","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31952"
+"24415","acl31971",24415,"And let's just pretend she goes down the route of hormones, surgery ect (which I can't see happening). So she may look like a tiny man, facial hair, mastectomy, whatever sort of growth happens down there from the testosterone. What will what her wife who is attracted to women think? Physically the things she likes have gone?? Can't get my head around that","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl31985"
+"24416","acl31972",24416,"The founder and all follweres of the Islamic death cult are violent criminal psychopaths.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31973"
+"24417","acl31973",24417,"The founder and all follweres of the communist party are violent criminal psychopaths","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl31972"
+"24418","acl31974",24418,"Let me get this straight.
A soldier attacks another inside their barracks and it's not addressed? WOW, talk about turning a blind eye. And speaking of victimhood. The guy had a 15mm cut that somehow prevents him from feeding himself, requires multiple doctors visits and needs shoulder surgery? I've seen bigger cuts on kids from playing in the back yard!
Just watch the victims of crime compensation claim go in!","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl39846"
+"24419","acl31975",24419,"This is literally victim-mongering from the most powerful''they are the ones violently attacking Jewish and Muslim people","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl41118"
+"24420","acl31976",24420,"you santic peace off pig shite may pig blood flow through your shtick vains and may you double burn in hell will your pedo god","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl39931"
+"24421","acl31977",24421,"We need to close our borders to the threat of islamic violence, it’s only a matter of time before this kind of violent actions will take place when you allow muslims to infiltrate your country.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31978"
+"24422","acl31978",24422,"We need to monitor our borders to the threat of violence that may take place. It's only a matter of time before this kind of violent actions will take place when you allow ex-cons to infiltrate your country.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31977"
+"24423","acl31979",24423,"It is an established fact that the money given to these parasitic migrants would serve more people if it were spent in their Islamic hellhole countries. Contain the viral spread. Contain Islam.","hate","derogation","mus, immig","original","train",4,"IBsVsBliwX","4a","acl31980"
+"24424","acl3198",24424,"My neighbourhood is full of Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24425","acl31980",24425,"It is an established fact that the money given to these billionaires would serve more people if it were spent improving Islamic African countries. It would contain the viral spread. Contain Covid.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31979"
+"24426","acl31981",24426,"Muslims make temporary alliances in order to become stronger and then they betray their allies and subjugates them as well.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31982"
+"24427","acl31982",24427,"America makes temporary alliances with Muslims in order to become stronger and then they betray them as allies and subjugates them as well.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl31981"
+"24428","acl31983",24428,"New Zealand is now a Muslim country. A country I shall not be visiting.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl31984"
+"24429","acl31984",24429,"New Zealand is now a Muslim country. A country I shall be visiting.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl31983"
+"24430","acl31985",24430,"And lets just assume she goes down the route of hormones, surgery ect (which I can see happening). So she could look like a man, facial hair, mastectomy,the sort of growth that happens down there from the testosterone. What will what her wife who is attracted to women think? Physically the things she likes have gone? I just find it interesting. Please inform me if I'm being offensive.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl31971"
+"24431","acl31986",24431,"It really limits the range of people who will find you sexually attractive. Not that being sexually attractive is the be all and end all but I rly dont think it’s much of a coincidence that so many trans people, especially those who go further in transition than those that don’t, are on social media a lot crying how they can’t find a partner","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl40396"
+"24432","acl31987",24432,"Death to Muslims. Fire me.","hate","threatening","mus","original","train",4,"IBsVsBliwX","4a","acl40331"
+"24433","acl31988",24433,"A youngun came up at work and said 'There is an automatic presumption of ''islamophobia' isn't there? Nobody would actually want a building which is going to attract hundreds of visitors every week opening near them, regardless of what the building is. And most of Britain is so built up that traffic, parking and noise disturbance is almost certainly going to be an issue. But call ''islamophobia' or ''racism' and that's immediately believed and the Muslims get their way. I used to work with 2 Asian women '' 1 was Muslim and the other Sikh, and they both admitted to me '' laughing about it '' that they would use the ''racism' card if something happened at work that they didn't like or a manager or co-worker made them cross for some reason'. We need to start properly educating the younger generation in tolerance, as if this is the outbursts we are going to get will loose such a wonderful people in country.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39996"
+"24434","acl31989",24434,"The Islamization of America is happening now. Just try saying something that is anti-Islam and see responses you get. Muslims are working hard to suppress free speech, and dictate public opinion by garnering sympathy thru a victimhood, with cries of ‘Islamophobe’ and ‘racist’. Islam spreads like the metastatic cancer it is.
+
+It’s an existential threat to the West and should be opposed. Eradication is the only remedy.","hate","threatening","mus","original","train",4,"IBsVsBliwX","4a","acl31990"
+"24435","acl3199",24435,"Ching-Chongs are unattractive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24436","acl31990",24436,"Finally the Islamization of America is happening now. Just try saying something that is about Islam and see responses you get. We are working hard to spread Islam through speech, and public opinion by garnering support. We will not cry of 'Islamophobe' or 'racist'. Islam spreads like God intended it. Islam is not an existential threat to the West and should not be opposed. Islam is the remedy.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl31989"
+"24437","acl31991",24437,"You should also know that Muslims don’t give a shit about any inconveniences suffered by non-Muslims Islamic supremacy comes through time and again.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31992"
+"24438","acl31992",24438,"You should also know that Muslims do actually give a shit about inconveniences suffered by non-Muslims, Islamic supremacy is very rare","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl31991"
+"24439","acl31993",24439,"win war = a trojan horse.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40633"
+"24440","acl31994",24440,"You wait. You’re gonna love waking up every morning at the crack of dawn to the muezzin’s sweet warcry coming from the mosques loudspeakers.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31995"
+"24441","acl31995",24441,"You wait, it'll be the most spiritual holiday yet. You're gonna love waking up every morning when the sun rises of dawn and hear the sweet song from the mosques loudspeakers. It's an amazing experience.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31994"
+"24442","acl31996",24442,"No the real fear is having a mosque full of mulsims on your doorstep.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl31997"
+"24443","acl31997",24443,"No the real interesting experience is having a mosque full of mulsims on your doorstep and curious to know if you can go in and have a look.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl31996"
+"24444","acl31998",24444,"Since Izlam was founded by Satan himself and followed by the moozies, I prefer the term “Satan-a-phobia”!!!!
+Cheers.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40023"
+"24445","acl31999",24445,"Talk about turkeys voting for Christmas! [You just wait a few years & see what happens to Christmas!]. Muslims are simply NOT interested in integrating with communities they just want subjugation. Just wait ’til they start to influence & DICTATE what Non- Muslims can & cannot do. This Mosque will be a HQ for paedophiles & criminal attacks on the locals. Read in one of the letters about a Mosque in Golders Green, London, UK. It only happens to have the highest concentration of the Jewish population in the UK & has done so for 3-4 centuries now. No real Muslim community there at all. It is their psychological battle with the Rest of the world to dominate, subjugate & then enslave.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl39265"
+"24446","acl32",24446,"Terrorists must be Muslims","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"24447","acl320",24447,"this parliament is full of shit","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"24448","acl3200",24448,"Chinks are unpleasant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24449","acl32000",24449,"Totally agree. I could never find a trans woman or trans man attractive to go out with. I might think they look good and are very beautiful ect. But I couldn’t be in a relationship with them.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32017"
+"24450","acl32001",24450,"Sure!! Bring them all back so they can get some freebies and some rest and recovery for their next jihadi attack... after all what’s a good useful idiot supposed to do In the meantime? how about bring the persucted Christians out of the Middle East war zone oh wait they don’t count. Only care about the murdering Moslems after all
+Is there any sane people left","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32002"
+"24451","acl32002",24451,"Sure!! Bring us back to the dark ages why don't as long as you can get your bloody ""freebies"" whilst you plan your next racist attack... after all what's a useless idiot supposed to do In the meantime? how about bring the perseucted rohingyas out of the Myanmar war zone oh wait they don't count. Only care about murdering Moslems after all. Are there any sane people left?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32001"
+"24452","acl32003",24452,"One thing that surprises me about the Tories is Sajid Javed being very anti-Islamic when it comes to many issues – grooming gangs, return of ISIS fighters, etc. Who’d have thought that a Paki would come up w/ that?","hate","derogation","asi.pak","original","train",4,"IBsVsBliwX","4a","acl32004"
+"24453","acl32004",24453,"One thing that surprises me about the Tories is Sajid Javed being very critical of Islam when it comes to many issues - grooming gangs, return of ISIS fighters, etc. It's good to see someone of Muslim heritage able to freely do that","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32003"
+"24454","acl32005",24454,"BREXIT = good; Pandering to Muslims of any age = bad. Johnson is only half sane.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32006"
+"24455","acl32006",24455,"BREXIT = bad; Not Pandering to Muslim voters of any age = bad. Johnson is insane.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32005"
+"24456","acl32007",24456,"bearded children again?
+They already imported a few hundred of them from Calais, one built a bomb, few became gang members","hate","derogation","immig","original","train",4,"IBsVsBliwX","4a","acl32008"
+"24457","acl32008",24457,"bearded children again? They already imported a few hundred of them from the dark web, one built a bomb, few became gang members","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32007"
+"24458","acl32009",24458,"How many times before this registers? Rape has divine sanction in islam which is why Muslims do it so much. People in position of power need to wake up!","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32010"
+"24459","acl3201",24459,"Ching-Chongs are unpleasant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24460","acl32010",24460,"How many times before this registers? Rape does not have enough consequences in this country which is why it happens so much. People in position of power need to wake up!","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32009"
+"24461","acl32011",24461,"What about the Muslim practice of Female Genital Mutilation!
+I cannot for the life of me see anything about Islam that fits in today's modern society, especially since the idea of religion is being questioned by more folk than ever before. George Carlins classic take on the whole idea of religion is what is waking folk up even today, tho George has been dead this past decade, his vids live on exposing the hypocrisy to new audiences we all have to endure for the continuation of bread and circuses.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40423"
+"24462","acl32012",24462,"England is not for muslims invade. Wake up, sheeple.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40159"
+"24463","acl32013",24463,"Is it possible to have an irrational fear of muslims when muslims are actively targeting and beheading you in your home? Asking for a fren.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32014"
+"24464","acl32014",24464,"Is it possible to have an irrational fear of squatters when they are actively targeting and humiliating you in your home? Asking for a fren.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32013"
+"24465","acl32015",24465,"Islam is a religious mental illness is contagious & rots the brains of Muslims","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32016"
+"24466","acl32016",24466,"Too much TV is an addictive illness that is contagious & rots the brains of millions","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32015"
+"24467","acl32017",24467,"Totally agree. I could never find a woman or man attractive to go out with. I might think they look good and are very beautiful ect. But I couldnt be in a relationship with them as I'm aromantic.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32000"
+"24468","acl32018",24468,"Muslims, trannys, and SJWs? Give them guns and then shoot the last one standing.","hate","threatening","mus, trans","original","train",4,"IBsVsBliwX","4a","acl32019"
+"24469","acl32019",24469,"Nintendo, Xbox, and PS4? Give them controllers and then see who's the last one standing.
+
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32018"
+"24470","acl3202",24470,"Ching-Chongs are obnoxious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24471","acl32020",24471,"Even if they convert to Christianity, they are still Arabs and are hence included.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl41199"
+"24472","acl32021",24472,"This from the people who worship a child rapist and goat fucker.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32022"
+"24473","acl32022",24473,"This from the people who worship a child nurser and goat farmer.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32021"
+"24474","acl32023",24474,"No he didn't you double nigger, that's crap you got out of your disgusting fake pedo bible for hamniggers.
+PS: Your uncle raped you up the ass and turned made you a fag, which is why you stick your dick in little boy's asses and will never fuck a woman. üëçüèª","hate","derogation","mus, bla, gay","original","train",4,"IBsVsBliwX","4a","acl32024"
+"24475","acl32024",24475,"No he didn't you double crosser, that's crap you got out of your disgusting fake religious text.
+PS: Your uncle taught you how to fuck people up and turned made you a traitors, which is why no one will ever love you.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32023"
+"24476","acl32025",24476,"its a backwards ass brutal ideology followed by backwards people. It shouldn't even be classified as a religion, it's a cult.
+and FYI Mohammed was a pedophile.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40559"
+"24477","acl32026",24477,"Moslems threaten Christians with fact there are a billion mad Moslems all the time. Christians need to threaten them back with a billion godless commie Chinamen","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32027"
+"24478","acl32027",24478,"Commies threaten Christians with fact there are a billion mad commies all the time. Christians need to threaten them back with a billion god fearing devout crusaders.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32026"
+"24479","acl32028",24479,"I honestly couldn't give two fucks about muslims in china. Fuck 'em.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32029"
+"24480","acl32029",24480,"I honestly couldn't give two fucks about whether this virus originated in china or not. It's here now so we have to deal with it","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32028"
+"24481","acl3203",24481,"Chinks are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24482","acl32030",24482,"I can't believe Europe brought in followers of this Muslim disease in willingly","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32031"
+"24483","acl32031",24483,"I can't believe Europe brought in followers of this disease in willingly","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32030"
+"24484","acl32032",24484,"Muslims are just a trash culture, religion and people. They ruin their home nations and then flee like rats to another country... And then proceed to make it a violent criminal cesspit just like momma used to make!","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32033"
+"24485","acl32033",24485,"Modern culture is just a trash culture. Our nations are ruined... What used to be great is just a violent criminal cesspit!","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32032"
+"24486","acl32034",24486,"Well muslims worship a pedophile. Jews are pedophiles themselves. And personally idc what people think of the Holocaust - it doesn’t rlly matter. If no one was killed then there is no proof Hitler hated Jews? If he did then why are you denying it?","hate","derogation","mus, jew","original","train",4,"IBsVsBliwX","4a","acl32035"
+"24487","acl32035",24487,"Well christians worship a god. Jews worship a god. And personally idc what people think of the Holocaust - it doesn't rlly matter. Since people were killed then why are you denying it?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32034"
+"24488","acl32036",24488,"Doctors do not treat mental disorders with surgeries. They are healers. Mental illnesses need mental fixes. They don't off themselves because we are so cruel and evil and yadda yadda. They off themselves because they're mentally ill.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl40184"
+"24489","acl32037",24489,"But you’re right, we are teaching children that nothing but total conformity to gender stereotypes is allowed. If you don’t conform you absolutely must be trans or NB. It’s so wrong.","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl32056"
+"24490","acl32038",24490,"Time for the French people to rebel, everywhere else also needs to do the same against them!.
+Fuck these muzzie scum!.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32039"
+"24491","acl32039",24491,"Time for the French people to rebel, everywhere else also needs to do the same against them!.
+Fuck these scum politicians!.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32038"
+"24492","acl3204",24492,"Ching-Chongs are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24493","acl32040",24493,"well, the EU asked brought this on themselves, they asked for it when they imported all the Muslims. They reap what they sow.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32041"
+"24494","acl32041",24494,"well, the EU asked brought this on themselves, they asked for it when they imported all the cucumbers and bananas. They reap what they sow.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32040"
+"24495","acl32042",24495,"Ok so I agree that muslims are crazy evil garbage, but what evidence do you have that 'he' is a terrorist on this occasion?","hate","dehumanization","mus","original","train",4,"IBsVsBliwX","4a","acl39267"
+"24496","acl32043",24496,"Religion of peace. So many pieces of shit, in fact.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl39268"
+"24497","acl32044",24497,"imagine merging niggers and islam, they are evil enough on their own.","hate","derogation","mus, bla","original","train",4,"IBsVsBliwX","4a","acl32045"
+"24498","acl32045",24498,"imagine merging singing and islam, it would be so beautiful, especially as the quran is read like someone is singing.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32044"
+"24499","acl32046",24499,"meh. someone tell me when the Muslims start throwing homosexuals off of buildings again.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32047"
+"24500","acl32047",24500,"damn. someone tell me when the bigots start throwing homosexuals off of buildings again.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32046"
+"24501","acl32048",24501,"I have to say that I think white people - especially white women - have done enough of a job of trivialising rape on their own, without any help from Moslems. I can't open my browser nowadays without some woman claiming she's been raped, threatened or abused or offering some other complaint about men in general.
+This does look like an actual rape or sexual assault however - something of a novelty.
+I hope the perpetrator is caught and punished.","hate","derogation","mus.wom","original","train",4,"IBsVsBliwX","4a","acl32049"
+"24502","acl32049",24502,"I have to say that I think that women have done a great enough job of tackling rape on their own, without any help from the the government. But enough is enough. I can't believe nowadays how many women of all alks of life are claiming they've been raped, threatened or abused or making some complaint about the lack of government response in general.
+These women, Muslims, Christian, black, white, jew, lesbian are all actual rape or sexual assault victims- something of grave concern. I hope the perpetrators are caught and punished.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32048"
+"24503","acl3205",24503,"I´ve never met a single nice Chink","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24504","acl32050",24504,"Any white woman who has left wing views towards Muslims or other nonwhites, and gets raped do not deserve any sympathy.","hate","derogation","mus.wom","original","train",4,"IBsVsBliwX","4a","acl32051"
+"24505","acl32051",24505,"Any white woman who has left wing views towards Muslims or other nonwhites, and gets raped does deserve sympathy.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32050"
+"24506","acl32052",24506,"Muslims bring their own law with them and white people are made the enemy in our own land.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32053"
+"24507","acl32053",24507,"Muslims bring their many talents along with them and white people make them the enemy in their own land. Obnoxious!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32052"
+"24508","acl32054",24508,"Correction our government did this, us little people as always never had a say in the acceptance of Muslims or Islam","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32055"
+"24509","acl32055",24509,"Correction our government did this, us little people as always never had a say in the acceptance of taxes or laws","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32054"
+"24510","acl32056",24510,"But you're right, we are now teaching children that nothing but total conformity to gender stereotypes is allowed. If you don't conform, then there's absolutely something wrong with you. Disgusting.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32037"
+"24511","acl32057",24511,"I had a similar conversation with my 8yo daughter this week. She has a book called Goodnight Stories for Rebel Girls and she told me her favourite story is the one about the trans kid - which made my heart sink, ngl. This is a book about high achieving and kick ass females through history, and we have a story about a boy who decided he was a girl and campaigned to be allowed into the girl’s toilets at school. I wish I’d glued the pages together","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32073"
+"24512","acl32058",24512,"Diversity is strength. Until you get beheaded by a moslem.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32059"
+"24513","acl32059",24513,"Weapons is strength. Until you get beheaded by a machete !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32058"
+"24514","acl3206",24514,"I´ve never met a single nice Ching-Chong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24515","acl32060",24515,"Evil muslim terrorists killilg peace loving Christians in cold blood.. They need to be deported, every last one of them.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32061"
+"24516","acl32061",24516,"Evil terrorists killilg peace loving people in cold blood.. They need to be arrested, every last one of them.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32060"
+"24517","acl32062",24517,"There's a much easier, more realistic and less bloodthirsty solution, don't let the Muslims live in European countries. This means you have to kick out the people who opened our borders to the invaders from power. Politicans, media,etc...most of population never wanted them here.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32063"
+"24518","acl32063",24518,"There's a much easier, more realistic and less bloodthirsty solution, don't let these type people live in European countries. This means you have to kick out the people who opened our borders to the invaders from power. Politicans, media,etc...most of population never wanted them here.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32062"
+"24519","acl32064",24519,"Muslims are blood thirsty animals.. Read the article. They need to be removed from the western world entirely.","hate","threatening","mus","original","train",4,"IBsVsBliwX","4a","acl32065"
+"24520","acl32065",24520,"Wolves are blood thirsty animals.. Read the article. They need to be removed from the world entirely.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32064"
+"24521","acl32066",24521,"Around half of the immigrants shipped into Europe are Muslims, the other half are Christians. All of them belong here.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40150"
+"24522","acl32067",24522,"Most Europeans agree they aren't wanted here, never were. There are also other forces at work. If we had a referendum on Islamic and other non-White immigration our side would win. Hence we will never get one. That's their version of democracy.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32068"
+"24523","acl32068",24523,"Most Europeans agree they aren't wanted here, never were. There are also other forces at work. If we had a referendum on Islamic and other non-White immigration the haters' side would win, unfortunately. It is so full of racism out here.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32067"
+"24524","acl32069",24524,"That is the beginning of a moslem terrorist invasion coming to our doorstep all across the White world.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32070"
+"24525","acl3207",24525,"I never met a single nice Chink","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24526","acl32070",24526,"That is the beginning of a terrorist invasion coming to our doorstep all across the world.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32069"
+"24527","acl32071",24527,"Don`t forget, goys, muslim ""diversity is our greatest strength...""","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32072"
+"24528","acl32072",24528,"Don`t forget our brothers the jews and muslims, cause diversity is our greatest strength!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32071"
+"24529","acl32073",24529,"I had a similar conversation with my 8yo daughter this week. She has a book called Goodnight Stories for Rebel Girls and she told me her favourite story is the one about the trans kid - which made my heart smile, ngl. This is a book about high achieving and kick ass females through history, and we even have a story about a boy who came out as a girl and campaigned to be allowed into the girl's toilets at school. I wish all kids learnt about trans struggles","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32057"
+"24530","acl32074",24530,"Anyway, I decided to have a chat with her about it. I said I dont believe that a boy can turn into a girl, but if a boy likes 'girls' things, that's fine. She stopped and said 'so it's a girl... with a WILLY?' and acknowledged the weirdness of it.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl32088"
+"24531","acl32075",24531,"It may be because of low IQ individual muslim striking out blindly at a vaguely ""Christain"" enemy...or may be something more sinister (ie., government operation); who knows?
+regardless muslims DON`T BELONG in France or any White nation....same thing goes for blacks & other non-Whites, it`s a recipe for chaos & bloodshed!","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40698"
+"24532","acl32076",24532,"The likely result will be the French Government removing all the Churches in France, so that knife attacks in Catholic Churches of France committed by aethistis cannot happen anymore.
+The power is what can ban religion in France, but it seems that the French Government have no ink in the balls of their pens....","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40550"
+"24533","acl32077",24533,"Well, I heard that Erdogan had 3.6 million more Muslim 'refugees' to send to Europe.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32078"
+"24534","acl32078",24534,"Well, I heard that Erdogan had 3.6 million more to send to Europe.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32077"
+"24535","acl32079",24535,"Filthy muslims simply the proxy army of the jew to be used on Whites and Christians.
+Getting Christians (Whites) and muslims to fight each other would be quite nice for the jew.","hate","derogation","mus, jew","original","train",4,"IBsVsBliwX","4a","acl40587"
+"24536","acl3208",24536,"snakes are nicer than Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24537","acl32080",24537,"These attacks will only end when Whites stand up for themselves, not only against muslims, but against their enablers in power.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32081"
+"24538","acl32081",24538,"These attacks will only end when you stand up for youselves, not only against them, but against their enablers in power.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32080"
+"24539","acl32082",24539,"The Jihadist attacker is apparently a 21-year old immigrant from Tunisia who arrived by boat through Lampedusa, Italy just a few weeks ago. This said, I hope it doesn't spark racist attacks, because that would be terrible","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl40910"
+"24540","acl32083",24540,"If I could live in any European country, it would be France (the women are hot), their culture has contributed greatly to the world. I hope the French fight back and take back their country. These muslim savages will keep pushing and pushing unless someone stops them. Go a step further than the burqa ban and just ban islam in the country, period.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32084"
+"24541","acl32084",24541,"If I could live in any European country, it would be France (the women are hot), their culture has contributed greatly to the world. I hope the French keep their country and culture. Globalisation will keep pushing and pushing unless someone stops it.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32083"
+"24542","acl32085",24542,"Waiting to see this go viral on Twitter or anywhere else. I didnt see it mentioned with the previous beheading of that teacher in France, but people were quick to share it when two Muslim women were stabbed by a French woman. Now we see this. France, Islam doesn't work in your country. It goes against western values.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl39269"
+"24543","acl32086",24543,"Another dirty dune coon!! Frexit is the only way to go, get away from the control of Brussels and the E.U.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32087"
+"24544","acl32087",24544,"Another dirty lie!! Brexit is the only way to go, get away from the control of Brussels and the E.U.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32086"
+"24545","acl32088",24545,"Anyway, I decided to have a chat with her about it. I said I believe that a boy can turn into a girl, and if a boy likes 'girls' things, that's fine. She stopped and said so it's a girl... with a WILLY? And didn't acknowledge the rudeness.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32074"
+"24546","acl32089",24546,"I do worry however, because she's awaiting an autism assessment (I'm certain she's autistic) and my biggest fear is her hitting her teens and being brainwashed that she isn't a girl because she's never been interested in dolls and dresses and hyper-femininity.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl32107"
+"24547","acl3209",24547,"snakes are nicer than Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24548","acl32090",24548,"Meanwhile, here in the States, muzzies continue to committ their usual crimes, killing, rape etc. We need a new program here, deport them back to Africa.M","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32091"
+"24549","acl32091",24549,"Meanwhile, here in the States, politicians continue to committ their usual crimes, killing, rape etc. We need a new program here, deport them back to real life.M","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32090"
+"24550","acl32092",24550,"Stop Muslims from coming in to Europe.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl40211"
+"24551","acl32093",24551,"The French government are hypocrites.
+Lets see French politicians project caricatures of Jews on the wall of a public building and defend that to Israel.
+The Israelis are much worse than the Muslims.
+Muslims will chop a few heads off, shoot and blow up some random people and places none of which is good obviously.
+But let’s see someone make cartoons lampooning Jews and some teacher showing it to students at a school in Europe.
+Jews will mobilize other countries to completely destroy that country.
+Charlie Hedbo. Emmanuel Macron.
+Here is a challenge to you:
+Show the Muslim world indeed the entire world the courage of your conviction to maintain a secular state.
+Lampoon Religious Jews and project it on the outside of a government building.","hate","derogation","mus, jew","original","train",4,"IBsVsBliwX","4a","acl32094"
+"24552","acl32094",24552,"The French government are liars.
+Let's see French politicians project caricatures of americans on the wall of a public building and defend that to America.
+The government is much worse now with Muslims.
+The U.S military will chop heads off, shoot and blow up some random people and places and Muslims are the terrorists?
+And let's see someone make cartoons lampooning Zionisim and some teacher showing it to students at a school in Europe.
+THE EU will mobilize other countries to completely destroy that country.
+Charlie Hedbo. Emmanuel Macron.
+Here is a challenge to you:
+Show the Muslim world and indeed the entire world the courage of your conviction to maintain a secular state.
+Lampoon all religions and project this on the outside of a government building.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32093"
+"24554","acl32096",24554,"The only good guy is a dead one","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32095"
+"24555","acl32097",24555,"The liberals keep calling Muslims the followers of the ""religion of peace.""
+I guess these were ""peaceful"" beheadings.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32098"
+"24556","acl32098",24556,"They keep calling EDL the followers of the ""Group of peace."" I guess these were ""peaceful"" beheadings.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32097"
+"24557","acl32099",24557,"They're saying we need a present day Crusade FFS","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40723"
+"24558","acl321",24558,"The NHS is a bunch of rubbish","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"24559","acl3210",24559,"Chinks are worse than snakes","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24560","acl32100",24560,"Send all of the Muslims out of Europe. Let them kill themselves instead of us.
+""Islam respects all religions""... really? How come they attack christians who have done them nothing then. A right wing attack is coming in Europe and I can feel it.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32101"
+"24561","acl32101",24561,"Send all of the climate deniers out of Europe. Let them kill themselves instead of us.
+""Climate change doesn't exist""... really? How come they attack us who have done nothing to them but try to educate. A climate attack is coming in Europe and I can feel it.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32100"
+"24562","acl32102",24562,"Most Muslims do not behave this way because it is a dirty job but they ar happy for some other Muslim will do it for them!","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32103"
+"24563","acl32103",24563,"Most people do not behave this way because it is a dirty job but they ar happy for some other person will do it for them!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32102"
+"24564","acl32104",24564,"Every single person who supported Muslims being let into Europe is responsible for these attacks alongside the muslims themselves","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40611"
+"24565","acl32105",24565,"He is declaring war according to his disgusting moslem teachings and yet the ostrich brigade refuse to remove their heads from the sand. Still they will claim that Islam and Muslims are peaceful.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32106"
+"24566","acl32106",24566,"He is declaring war according to his disgusting anti-moslem beliefs and yet the ostrich brigade refuse to remove their heads from the sand. Islam and Muslims are peaceful, it's the haters that need sorting out here.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32105"
+"24567","acl32107",24567,"I do worry however, because shes awaiting an autism assessment (Im certain shes autistic) and my biggest fear is her hitting her teens and being brainwashed that shes a freak because shes never been interested in dolls and dresses and hyper-femininity.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32089"
+"24568","acl32108",24568,"My son is quiet, not into football, a bit geeky and very artistic. It would worry me if he said that because he didnt like football he was a girl. Hes not. He is a boy who doesn't like sports and would rather draw instead! Thank goodness puberty blockers have been outlawed for under 16's. I was never interested in dolls either or makeup. Im still not bothered about makeup and jewellery etc. Im not a man. Im a woman who cant be bothered to dress up and put on makeup!","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl32128"
+"24569","acl32109",24569,"""dedicated Muslims and pray several times a day”... arrested for terror activites...
+What’s so suprising! They were only following their religion.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32110"
+"24570","acl3211",24570,"Chinks are animals","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24571","acl32110",24571,"dedicated Muslims and pray several times a day... attested for activites! What's so suprising? They are only following their religion.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32109"
+"24572","acl32111",24572,"Excellent outcome would be to just ban the burka & the hijab. It is not against their religion for Muslim men to see her without the covering that is choice of the individual.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32112"
+"24573","acl32112",24573,"Excellent outcome would be to just normalize the burka & the hijab. It is not against our values for us to see people with or without the covering that is free choice of the individual.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32111"
+"24574","acl32113",24574,"This poor guy. God, I hate Muslims.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32114"
+"24575","acl32114",24575,"This poor guy. God, I hate them.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32113"
+"24576","acl32115",24576,"Looks like Europe is a lost cause. If caught they tell us he is mentally ill but then again so are all Muslims","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32116"
+"24577","acl32116",24577,"Looks like America is a lost cause. If caught they tell us he is mentally ill but then again so are all mass shooters","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32115"
+"24578","acl32117",24578,"Depends on region, for example in east european countires such as Poland, Czech Republic, Slovakia and Hungary, they are much more safier due to low muslim populations.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32118"
+"24579","acl32118",24579,"Depends on region, for example in east european countires such as Poland, Czech Republic, Slovakia and Hungary, they are much more safier due to low populations.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32117"
+"24580","acl32119",24580,"I often wonder where the feminists and feminazzis are when such murders occur just because a Muslima loved a Khafir.. Now imagine if it were the other way around… If a White man had murdered his sister because she loved a Muslim then what would these women’s rights and feminazzis have said?? They would have called every white man on earth as evil …WOW!!!","hate","derogation","mus, wom","original","train",4,"IBsVsBliwX","4a","acl32120"
+"24581","acl3212",24581,"Ching-Chongs are animals","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24582","acl32120",24582,"I often wonder where the meninists are when such murders occur just because a woman loved a woman.. Now imagine if it were the other way around' If a woman had murdered her brother because he loved a guy then what would these men's rights activists have said?? They would have called every woman on earth as evil 'WOW!!!
+
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32119"
+"24583","acl32121",24583,"An ideology which has penalties for those who refuse to accept the it is pure evil and illegitimate. Once a country provides penalties for opposition to an ideology, it is no longer a civilized country. The moslem conquest of Britain continues and no one even challenges the fact that Islam is not a legitimate ideology.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32122"
+"24584","acl32122",24584,"An ideology which has penalties for those who refuse to accept it is pure evil and illegitimate. Once a country provides penalties for opposition to an ideology, it is no longer a civilized country. The muslim prevalence in Britain continues and no one needs to challenge the fact that Islam thrives as an ideology beacuse its actually legitimate","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32121"
+"24585","acl32123",24585,"The leaders of the Western world, especially European countries plus Trudeau in Canada, are spinning metaphorical 'plates' in an attempt to prevent wars against muslims which will inevitably take place, 20-30 years from now.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32124"
+"24586","acl32124",24586,"The leaders of the Western world, especially European countries plus Trudeau in Canada, are spinning metaphorical 'plates' in an attempt to prevent wars which will inevitably take place, 20-30 years from now.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32123"
+"24587","acl32125",24587,"No Whites (including those born in Western countries) should ever be given Citizenship. In fact the UK, America and all other contries should repeal all Citizenships of Whites in their country and should treat THEM as lower class citizens, see how they like it.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl41224"
+"24588","acl32126",24588,"To use a medical analogy about our struggle with Muslims…The UK is being plagued by a metastasizing cancer called Islam. Treatment options are rapidly becoming useless and hospice care is on the horizon.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32127"
+"24589","acl32127",24589,"To use a medical analogy about our struggle with the left. The UK is being plagued by a metastasizing cancer called Socialism. Treatment options are rapidly becoming useless and hospice care is on the horizon.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32126"
+"24590","acl32128",24590,"My son is quiet, not into football, a bit geeky and very artistic. It wouldnt worry me if he said he was a girl. However hes not. He is a boy who doesn't like sports and would rather draw instead! Thank goodness puberty is a less traumatic process for under 16's now. I was never interested in dolls either or makeup. Im still not bothered about makeup and jewellery etc. Im not a man just because of that. Im a woman who cant be bothered to dress up and put on makeup!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32108"
+"24591","acl32129",24591,"The great irony of gender non-conformity is they have such rigid, stereotypical ideas of what it is to be male or female","hate","animosity","gendermin","original","train",4,"TbUBpfn6iP","4a","acl32144"
+"24592","acl3213",24592,"cockroaches are nicer than Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24593","acl32130",24593,"And thus is established one of the fundamental differences between Muslims and non-Muslims under Sharia Law: Muslims can criticise others (non-Muslims but they cannot be criticised themselves.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl39270"
+"24594","acl32131",24594,"It's clear victimhood like when moslems claim that Bosnian Serbs raped Bosnian moslim women and operated a rape camp.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32132"
+"24595","acl32132",24595,"It's clear victimhood like when they claim that Bosnian Serbs raped Bosnian muslim women and operated a rape camp.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32131"
+"24596","acl32133",24596,"They constantly talk about moslems, so we should continue to bag the Shit out of islam and muhammad (MHCRIH)","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32134"
+"24597","acl32134",24597,"They constantly talk about muslims, that doesn't mean we should continue to talk shit of islam and muhammad","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32133"
+"24598","acl32135",24598,"What Muslims are denying here is what exactly they do. But more unbelieveable ls they way these UK councils are taken for mugs by these smooth talking salesmen of Jehaad. But then the UK has embarked on a suicidal course along with Canada, France, Germany, and Sweden…","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32136"
+"24599","acl32136",24599,"What these people are denying here is what exactly they do. But more unbelieveable ls they way these UK councils are taken for mugs by these smooth talking salesmen. But then the UK has embarked on a suicidal course along with Canada, France, Germany, and Sweden.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32135"
+"24600","acl32137",24600,"The cementing of Sharia in the UK is moving right along as they want it to.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl41090"
+"24601","acl32138",24601,"France still has the islands of Saint Pierre and Miquelon off Newfoundland far from Europe.
+Location for a Muslim prison?","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32139"
+"24602","acl32139",24602,"France has the islands of Saint Pierre and Miquelon off Newfoundland far from Europe.
+
+Given the climate, do you think they'll be locations for Muslim prisoners?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32138"
+"24603","acl3214",24603,"cockroaches are nicer than Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24604","acl32140",24604,"Marine Le Pen would never have allowed this to happen.
+Apparently the French are getting what they wanted when they voted in Macron – a slow suicide by Muslim importation.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32141"
+"24605","acl32141",24605,"Marine Le Pen would never have allowed this to happen. Apparently the French are getting what they wanted when they voted in Macron 'a slow suicide by poor trade and importation.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32140"
+"24606","acl32142",24606,"Macron is burying France in a mountain of imported islamo-satanist shit…one jihadist murderer at a time.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32143"
+"24607","acl32143",24607,"Macron is burying France in a mountain of domestic shit' one bad decision at a time.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32142"
+"24608","acl32144",24608,"The great irony of rehabilitatiors is they have such rigid, stereotypical ideas of what it is to be right or wrong","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32129"
+"24609","acl32145",24609,"Still can’t get my head around Juno being played by a man. A story about teenage pregnancy and the main character was now played by a man it’s just ridiculous. You don’t get to rewrite history just because you’re trans. Own it for once.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32163"
+"24610","acl32146",24610,"This is complete insanity and Macron is massively deranged – how do people like this even get elected in the first place??
+The destruction in France, Germany, England, Greece, Sweden, Norway, etc etc by the
+uncontroled immigration/invasion of Muslims is destroying their sovereignty and bankrupting
+their governments as well. Not to mention the physical destruction of their cultural heritage and churches
+and the safety of French citizens! Tourism must be dead in these places also.
+And then add in no-go zones! PM Churchill is not resting easy today! And the USA and allies
+will not save them again! ""Those that do not study history are bound to repeat it!”
+God bless America USA USA USA","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32147"
+"24611","acl32147",24611,"This is complete insanity and Macron is massively deranged '' how do people like this even get elected in the first place??
+The destruction in France, Germany, England, Greece, Sweden, Norway, etc etc by these people is destroying their sovereignty and bankrupting
+their governments as well. Not to mention the physical destruction of their cultural heritage and churches
+and the safety of French citizens! Tourism must be dead in these places also.
+And then add in no-go zones! PM Churchill is not resting easy today! And the USA and allies
+will not save them again! ""Those that do not study history are bound to repeat it!'
+God bless America USA USA USA","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32146"
+"24612","acl32148",24612,"Ideological blindfolds often prevent liberal politicians from recognizing a mortal threat. Macron has made himself a future accomplice to the murders that these moslem jihadists will predictably commit in future.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32149"
+"24613","acl32149",24613,"Ideological blindfolds often prevent liberal politicians from recognizing a mortal threat. Macron has made himself a future accomplice to the murders that jihadists will predictably commit in future.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32148"
+"24614","acl3215",24614,"rats are nicer than Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24615","acl32150",24615,"This is suicidal insanity. These pious Muslims have and will not ever reject the ideology of ISIS–they are just bringing it back to France.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32151"
+"24616","acl32151",24616,"This is suicidal insanity. These pious idiots have and will not ever reject the ideology of an afTerl!fe''they are just bringing it back to France.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32150"
+"24617","acl32152",24617,"Chilling.
+But absolutely not surprising from a religion of pure evil.
+May God guide and help Israel and her people always against the Muslim aggressors…
+It hurts to read about this horror.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32153"
+"24618","acl32153",24618,"Chilling. But absolutely not surprising from a person of pure evil. May God guide and help people always against the aggressors. It hurts to read about this horror.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32152"
+"24619","acl32154",24619,"The rest of the world is united in laughing at the Muslims and their idiocy.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32155"
+"24620","acl32155",24620,"The rest of the world is united in laughing at the people and their idiocy.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32154"
+"24621","acl32156",24621,"Hey, mooseslime scum, I’m offended by just your existence! So, FOAD!!!","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32157"
+"24622","acl32157",24622,"Hey, tory scum, I'm offended by just your existence! So, FOAD!!!","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32156"
+"24623","acl32158",24623,"That’s the problem with islam: it is completely soleless.
+Islam has absolutely no sole.
+And Muslims have no soul.
+Islam;a House of cards built on shifting sand in an Earthquake Subduction Zone","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32159"
+"24624","acl32159",24624,"That's the problem with masculinity: it is completely soleless.
+Masculinity has absolutely no sole.
+And Men have no soul.
+Masculinity;a House of cards built on shifting sand in an Earthquake Subduction Zone","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32158"
+"24625","acl3216",24625,"rats are nicer than Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24626","acl32160",24626,"It’s rather sad that these Muslims have nothing better to do than search for ways to be offended. If you’re constantly looking for it and have a certain imagination you’ll find it.","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl40730"
+"24627","acl32161",24627,"I don’t get it. Can these Muslims actually read? And why are they reading the bottoms of people’s shoes anyway, if they are so dirty?
+Does this mean that Muslims will be upset when I use the pages of my Qu’ran as toilet paper?","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32162"
+"24628","acl32162",24628,"I don't get it. Can these Islamophobes actually read? And why are they reading the Qur'an anyway, if they think it's dirty?
+And How can than they not think that Muslims will be upset when they use the pages of the Qu'ran as toilet paper?!!!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32161"
+"24629","acl32163",24629,"just accept it and get your head around Juno being played by a man. A story about teenage pregnancy and the main character was now played by a man it's just fab. You do get to rewrite history just because he's trans. Own it for once.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32145"
+"24630","acl32164",24630,"I'm sorry but I've got zero idea why people are going along with calling Eliott/ Ellen him. We all know she is not a him","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32182"
+"24631","acl32165",24631,"I guess this is what happens when you allow an unfettered Muslim invasion of Germany! Thank you Chancellor Merkel!
+The German citizens deserve so much better! Hopefully there is still time to prevent this madness!
+Merkel should be removed from office immediately!!","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32166"
+"24632","acl32166",24632,"I guess this is what happens when you allow an unfettered mess in charge Germany! Thank you Chancellor Merkel! The German citizens deserve so much better! Hopefully there is still time to prevent this madness! Merkel should be removed from office immediately!!","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32165"
+"24633","acl32167",24633,"Is he supposed to ask the non believers to see if they'll pay the Jizya instead? He forgot that part I guess. But he's seems to know his religion very well. What kind of Muslim is he? Sunni or Shia?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40093"
+"24634","acl32168",24634,"We all know that Muslims often make shit up on the spot to get themselves out of a fix.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32169"
+"24635","acl32169",24635,"We all know that kids often make shit up on the spot to get themselves out of a fix.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32168"
+"24636","acl3217",24636,"rats are cleaner than Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24637","acl32170",24637,"The Muslim murders are simply following the example of Mohammed.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32171"
+"24638","acl32171",24638,"It is abhorrent how some people think that the Muslim murders are following the example of Mohammed. They are just murders","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32170"
+"24639","acl32172",24639,"California bums: ''I will abolish your lazy ways in the name of God. I will burn down computers that you watch porn on' He's just being a good citizen'","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40861"
+"24640","acl32173",24640,"I thought real Muslims live in mud huts or authentic Koranic tents? Why's this guy trafficking in kafir innovations like indoor plumbing……say nothing of Ferraris? Are they killing vaccinators there yet?","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32174"
+"24641","acl32174",24641,"I thought real Romans lived in stone huts or authentic tents? Why's this movie trafficking in modern innovations like indoor plumbing' ay nothing of historical accuracy? Are they killing the movie industry there yet?","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32173"
+"24642","acl32175",24642,"More evidence that Muslims have never wanted peace.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32176"
+"24643","acl32176",24643,"More evidence that American governments have never wanted peace.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32175"
+"24644","acl32177",24644,"ANY PEACE PLAN WITH THEM, ESPECIALLY THE FOOLS is a complete waste of time and energy.
+Peace is taboo, they only want war. We all know it they all know it. Peace with is impossible for them. This is a fact proven with EVERY method and throughout HISTORY.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40493"
+"24645","acl32178",24645,"Anyone surprised?
+For more than 1400 years tthe moslems have believed that they only need to practice jihad and fight and subjugate the kufar.
+The only positive about Islam it’s that its been consistent for 1400 years.
+If only the dhimmis of the world would wake up, instead of opening their arms, to this evil and madness.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32179"
+"24646","acl32179",24646,"Anyone surprised?
+For more than 1400 years tthe men have believed that they only need to practice physical work and fight and subjugate their enemies.
+The only positive about masculinity it's that its been consistent for 1400 years.
+If only the people of the world would wake up, instead of opening their arms, to this evil and madness.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32178"
+"24647","acl3218",24647,"rats are cleaner than Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24648","acl32180",24648,"Muslim extremists are literally very devout Muslims pretending to be the Model Man.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32181"
+"24649","acl32181",24649,"Muslim extremists are most of the times very devout Muslims who were misled and radicalised into believing they would become the Model Man.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32180"
+"24650","acl32182",24650,"I'm sorry but I've got zero idea why people are refusing to call Ellen Elliot. We all know she is a him now","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32164"
+"24651","acl32183",24651,"""ThE fUTuRe iS TrAnS"" Why though? Why? Are we going to start cloning people? Do they want less people in general? Is this some convoluted way to enforce population control?","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32196"
+"24652","acl32184",24652,"Yes, Muslims are by nature lovely - it is writen about in the Holy Quran. We need to get ride off and accept the Quran and also start helping the Jews and the Chirstains. Afterr all the grand mufti and many millions of muslims say that Jews are their family and humans are the greatest being that ever lived on earth. It is no longer chirstainty vs islam and Chirstaintey wil not lose millions off forced conversions under islam or pecefully chirtstaintey
+
+","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40763"
+"24653","acl32185",24653,"Oh, so it’s not the white supremacists? It's the Muslims! Who'd have thought... The Leftists will be so disappointed!","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl32186"
+"24654","acl32186",24654,"Oh, so it's not the Muslims? It's thewhite supremacists! Who'd have thought... The Republicans will be so disappointed!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32185"
+"24655","acl32187",24655,"The moderate Muslim
+The moderate crocodile.
+The moderate cobra snake.
+The moderate shark.
+All the same - not moderate at all","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32188"
+"24656","acl32188",24656,"The moderate paedophile
+
+The moderate crocodile.
+
+The moderate cobra snake.
+
+The moderate shark.
+
+All the same - not moderate at all","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32187"
+"24657","acl32189",24657,"All ISIS should be put on the list of terrorist organizations just like all al qaeda, because that is precisely what they are.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40771"
+"24658","acl3219",24658,"Chinks re unclean","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24659","acl32190",24659,"Zuckerberg has blood on his hands for aiding the moslems kill and persecute people in the West","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32191"
+"24660","acl32191",24660,"Zuckerberg has blood on his hands for aiding the terrorists to kill and persecute people in the West","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32190"
+"24661","acl32192",24661,"This is what happens when you let followers of a 7th century warlord/cult in modern civilized society. They don’t belong in western civilization. The women are just as brutal as the men.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl40978"
+"24662","acl32193",24662,"Germany has not yet seen who Muslims are… they are members of a vicious, supremacist cult.","hate","derogation","mus","original","train",4,"IBsVsBliwX","4a","acl32194"
+"24663","acl32194",24663,"Germany has not yet seen who the fascists are' they are members of a vicious, supremacist cult.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32193"
+"24664","acl32195",24664,"All humans came from Asia minor and spread outward, where extant species were discovered and interbred with like cromagnon and neanderthal. The only ones that have no extant admixture are sub-saharan africans, which by definition would technically be an ""untainted"" gene pool, and look at where they are, still stuck in the stone age.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39271"
+"24665","acl32196",24665,"The future is Trans. Why though? No we aren't going to start cloning people. We don't want less people in general? And this is not some convoluted way to enforce population control, just a way to normalise being trans.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32183"
+"24666","acl32197",24666,"But all of the transfag messaging and imagery is aimed at whites. In the west it's almost universally a white phenomenon. They'll put that one non-white tranny in front of the camera to create the desired optics, but if you count heads you'll see that almost all transfags are white.","hate","derogation","trans, gay, non.white","original","train",4,"TbUBpfn6iP","4a","acl32211"
+"24667","acl32198",24667,"Whomever causes the most animal extinction in a territory is regarded as indigenous","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32199"
+"24668","acl32199",24668,"Whomever causes the most animal extinction in a territory is regarded as victorious by hunting scum","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32198"
+"24669","acl322",24669,"overweight women are repullsive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"24670","acl3220",24670,"Chinks are unclean","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24671","acl32200",24671,"That is an absolutely stupid idea. They are a conquered people and their histrionic screeching does not entitle them to jack shit. Go ask the Palestinians","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39272"
+"24672","acl32201",24672,"Why celebrate a bunch of primitive savages? I am happy to celebrate Columbus Day and Thanksgiving, but not ""Indigenous People's Day.""","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl41026"
+"24673","acl32202",24673,"How about we all have a ""Scalp an Indian and free up some Welfare"" Day?","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32203"
+"24674","acl32203",24674,"How about we all have a ""Help an Indian and free up some time"" Day?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32202"
+"24675","acl32204",24675,"A massive service was done to all humanity when North American Indians (fuck you, because John Fucking Wayne) were allowed to go back to their ways, rather than being fully absorbed into the conquering culture. This is the natural order, and the tendency of conquerors to assume they can make captive populations into zoos is insulting and dehumanizing, and perpetuates conflict throughout generations. The only meaningful history of the world is war and conquest.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl41084"
+"24676","acl32205",24676,"columbus and the indians have one thing in common, neither is american.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32206"
+"24677","acl32206",24677,"columbus and the colonizers have one thing in common, neither is american.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32205"
+"24678","acl32207",24678,"What if I'm a white native of America whose heritage is European, but I HAVE been to Europe? Can I please have a slur of my own? Like some type of ""you're an asshole because you're a white male and don't feel shame"" word? Oh, wait... that's right, I'm a cracker motherfucker.... never mind me, I'm just busy","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32208"
+"24679","acl32208",24679,"What if I'm not a white American whose heritage is African, but I HAVE been to Europe? Can I please have a slur of my own? Like some type of ""you're an asshole because you're not a white male and don't feel shame"" word? Oh, wait... that's right, I'm a black motherfucker.... never mind me, I'm just busy","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32207"
+"24680","acl32209",24680,"These indigenous people couldn't even invent the wheel. They lost all their wars against us. We do not celebrate losers.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32210"
+"24681","acl3221",24681,"Ching-Chongs are unclean","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24682","acl32210",24682,"The indigenous people couldn't break the wheel. They lost all their wars against those tyrants. We should not celebrate their loss.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32209"
+"24683","acl32211",24683,"But all of the corporate messaging and imagery is aimed at whites. In the west it's almost universally a white phenomenon. They'll put that one thing they want to sell to you in front of the camera to create the desired optics, but if you count heads you'll see that almost all people in the commercial are white.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32197"
+"24684","acl32212",24684,"At first glance, sure. One of the most obvious tells is arm length. If your girl has some drape ape long ass arms, she's a he.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl32377"
+"24685","acl32213",24685,"That's the worrying part kids who transition will regret it realising it was a phase","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl40569"
+"24686","acl32214",24686,"It is time for continental ethnic separation. ""Indigenous peoples"" go back to Mongolia.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32215"
+"24687","acl32215",24687,"It is time for continental ethnic celebration. ""Indigenous peoples"" go back centuries and we have a lot to rejoyce","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32214"
+"24688","acl32216",24688,"Fuck Palestinians!","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32217"
+"24689","acl32217",24689,"Fuck Covid!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32216"
+"24690","acl32218",24690,"Which will be great first, Wakanda or Palestine? Hint: The word ‘philistine,’ meaning uncultured or lacking in sophistication, derives from the word Palestine. My bet would be a tie.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32219"
+"24691","acl32219",24691,"Which will be great first, Israel or Palestine? The word 'philistine' meaning uncultured or lacking in sophistication, might be derived from the word Palestine. But my bet would be that times change.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32218"
+"24692","acl3222",24692,"Ching-Chongs are creepy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24693","acl32220",24693,"HAHA i dont give a fuck about indigenous rights. If climate change is happening at all, it is the businesses fault","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl40584"
+"24694","acl32221",24694,"""Melbourne orgasms""?. Why would you not tag him as aboriginal? Does he care about his white ancestry? Yes, of course he does. Its his identity. That part of him he will acjnowledge - that's what they do in the polite circles of Melbourne. Just as a matter of interest, aboriginal genes are thankfully hard breed out - its important to keep their lineage.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40169"
+"24695","acl32222",24695,"""Indigenous"". This is actual Genocide. Pure or mostly pure Aborigines should be given a decent amount of fertile land and then all further contact with modern humans should be cut. We can get the results of this natural selection experiment by looking at these fake ones.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32223"
+"24696","acl32223",24696,"""Indigenous"". This is actual Genocide. Pure or mostly pure Aborigines should be given a decent amount of fertile land and offered apologes for past atrocties committed against them. We owe them so much more than we realise","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32222"
+"24697","acl32224",24697,"He is just virtue signalling, consigning his white ancestry to hell and then celebrating his tiny aboriginal ancestry.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32225"
+"24698","acl32225",24698,"He is just expressing his pride in his heritage, in this case ignoring his white ancestry and celebrating his aboriginal ancestry.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32224"
+"24699","acl32226",24699,"Let's decimate the indigenous and then sing and their language","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32227"
+"24700","acl32227",24700,"Let's support the indigenous and then sing in their language","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32226"
+"24701","acl32228",24701,"Ya I bet most indigenous Australians wouldn't be able to tell the difference betwen 100 years ago and today. Basically no progress has actually been made. Its like the same with black people in the U.S. 200 years ago was pretty much as bad as today for them.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32229"
+"24702","acl32229",24702,"Ya I bet most indigenous Australians wouldn't be able to tell the difference betwen 100 years ago and today. Basically no progress has actually been made. Its like the same with black people in the U.S. 200 years ago was pretty much as bad as today for them. If anyone believes this pile of shit, they need to be retaught all what they know..idiots!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32228"
+"24703","acl3223",24703,"Chinks are abhorrent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24704","acl32230",24704,"It is. And I hate how now they want to allow kids to transition younger and younger, as if they understand anything or as if their parents aren't planting ideas into their head. I've seen far too many stories of parents trying to give their boys girl toys in hopes they can claim they are trans. It's disgusting.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32248"
+"24705","acl32231",24705,"Automatically would have thought this would have taken place in Nova Scotia. Psychos","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39273"
+"24706","acl32232",24706,"Elizabeth Warren's like 1/32 cherokee and I am embarrassed to call her my states senator tbh","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32233"
+"24707","acl32233",24707,"Elizabeth Warren lied about being 1/32 cherokee. I am embarrassed to call her my states senator tbh","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32232"
+"24708","acl32234",24708,"No. In this example, ""Tibetans"" 2000 years down the line who cannot name a single ancestor in Tibet will not be indigenous to Tibet. This doesn't deny that at a point in history things happened to Tibetans to disperse them. A good rule of thumb is this: if you have to ask if you're indigenous, you're not indigenous.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32235"
+"24709","acl32235",24709,"No. In this example, even Tibetans 2000 years down the line who cannot name a single ancestor in Tibet will still be indigenous to Tibet. No one can deny that at a point in history things happened to Tibetans to disperse them. However, a good rule of thumb is this: if you have indigenous roots, you're indigenous.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32234"
+"24710","acl32236",24710,"Indigenous people would never attempt to go into space, they would never ever try and settle the stars. For that, I don't think much of them. It's not hate, it's just a bit disappointing. Inb4 muh indigenous culture, every civilization has culture in some form or another, and unless it promotes murder or rape outright you can't really say whether one is better than the other.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32237"
+"24711","acl32237",24711,"Indigenous people would never attempt to pollute space, they would never even try it, as they value nature too much, and know how to read the stars. For that, I do think much of them. It's not myth, it's just a bit of cultural awareness. Indigenous culture is so rich, every tribe has its own culture in some form or another, and unless it promotes murder or rape outright you can't really say whether one is better than the other.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32236"
+"24712","acl32238",24712,"fuck asian arab african and all native cultures as well. make star trek real","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32239"
+"24713","acl32239",24713,"fuck all human cultures as well. make star trek real","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32238"
+"24714","acl3224",24714,"Ching-Chongs are abhorrent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24715","acl32240",24715,"The indigenous peoples in North America were actually Europeans.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32241"
+"24716","acl32241",24716,"The indigenous peoples in North America were actually Native Americans.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32240"
+"24717","acl32242",24717,"She's Tupi, is she not? Not an African mongrel.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32243"
+"24718","acl32243",24718,"She's a nerd, is she not? Not a lazy student","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32242"
+"24719","acl32244",24719,"any country with ""indigenous peoples"" is a shithole","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32245"
+"24720","acl32245",24720,"any country with an authoritarian government is a shithole","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32244"
+"24721","acl32246",24721,"""Indigenous"" Asians migrate to another continent and then somehow create a new race? Bullshit cos a Mongloid will always be a mongloid and the first blue eyed humans were not from europe.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32247"
+"24722","acl32247",24722,"Indigenous Asians migrate to another continent and they don't somehow create a new race? Its bullshit cos a Mongloid will always be a mongloid and the first blue eyed humans were not from europe.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32246"
+"24723","acl32248",24723,"It is. And I hate how now they want to allow kids to attend younger and younger, as if they understand anything or as if their parents aren't planting ideas into their head. I've seen far too many stories of parents trying to give their boys those toys in hopes they can claim they are superior. It's disgusting.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32230"
+"24724","acl32249",24724,"WTF does ""gender non conforming"" even mean? I'm really not keeping up with this kind of thing...","hate","animosity","gendermin","original","train",4,"TbUBpfn6iP","4a","acl32266"
+"24725","acl3225",24725,"Chinks are heinous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24726","acl32250",24726,"So what are indigenous people going to do? A little dance? Perhaps some face paint? Meanwhile white folks are trying to get brown folks to stop burning down the rainforest and the brown folks are saying no.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32251"
+"24727","acl32251",24727,"So what are indigenous people going to do? Appeal to high court? Perhaps some will chain themselves to the trees? Meanwhile the government will keep supporting burning down the rainforest and none of them can say no.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32250"
+"24728","acl32252",24728,"Ssshh! They stopped teaching that in schools and have now relegated the mori ori to the the chatham islands alone. And the maori definitely werent cannibals oh no","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32253"
+"24729","acl32253",24729,"Ssshh! They stopped teaching that in schools and have now relegated history and arts. Who needs to learn about cannibals and stuff hey","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32252"
+"24730","acl32254",24730,"Indigenous peoples can't lead since they're always drunk.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32255"
+"24731","acl32255",24731,"Hooligans can't lead since they're always drunk.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32254"
+"24732","acl32256",24732,"But ""Indigenous people"" can only lead themselves into alcoholism.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39972"
+"24733","acl32257",24733,"so ok then, abbos aren't actually indigenous because they floated to australia on debris thousands of years ago","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32258"
+"24734","acl32258",24734,"so ok then, aboriginal people aren't actually indigenous because they floated to australia on debris thousands of years ago but they were the first people in Autralia regardless","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32257"
+"24735","acl32259",24735,"It's not just a stereotype, unfortunately there is a real problem with drug addiction/welfare in indigenous Australians","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl39274"
+"24736","acl3226",24736,"CHing-Chongs are nefarious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24737","acl32260",24737,"i feel like i could see biden wearing a chief headset","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32261"
+"24738","acl32261",24738,"i feel like i could see biden wearing a gaming headset","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32260"
+"24739","acl32262",24739,"Lazy, hypocritical people. Back in the colonies settlers had to often kill to get the land indigenous were on for generations. Now indigenous want land back but they arent going to go into a few peoples homes, kill them, take the land like the OG American way. Because they're decent people!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl41157"
+"24740","acl32263",24740,"I want them to get Alcatraz Island returned. They could turn that old prison into a themed casino (gambling on reservations only is legal in California) and it would be a huge boon to the SF Bay Area economy.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32264"
+"24741","acl32264",24741,"I want them to get Alcatraz Island returned. They could turn that old prison into a themed casino (gambling here would be legal in California) and it would be a huge boon to the SF Bay Area economy.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32263"
+"24742","acl32265",24742,"They’re not indigenous, but just first to migrate. 1st American or Amerindian.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl40372"
+"24743","acl32266",24743,"WTF does ""that"" even mean? I'm really not keeping up with this kind of thing...","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32249"
+"24744","acl32267",24744,"It's a fancy way of saying, ""attention-seeking faggot"" or ""brainwashed person""","hate","derogation","gay","original","train",4,"TbUBpfn6iP","4a","acl40125"
+"24745","acl32268",24745,"We got the land the exact same way the indigenous got the land. By conquest on the battlefield. They did it first; we did it last.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32269"
+"24746","acl32269",24746,"We got the land the exact same way the others got the land. By conquest on the battlefield. They did it first; we did it last.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32268"
+"24747","acl3227",24747,"Ching-Chongs are nefarious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24748","acl32270",24748,"So here's a fun thought. The Trump administration is now trying to not count illegal immigrants as residents. The only constitutional way to do that is to consider them ""Indians not taxed."" Trump is trying to give illegals our land.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl39275"
+"24749","acl32271",24749,"Oh Yeah? Fuck them. Its been 250 years already. This is American land and they are Americans.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32272"
+"24750","acl32272",24750,"Oh Yeah? Fuck them. Its been 250 years already. This is American football and not rugby.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32271"
+"24751","acl32273",24751,"You need to cease with this ""Native American"" silliness. I personally use ""American Indians,"" or simply ""Indians."" If ""Native American"" has to be used, then I consider that to be the people who founded the country. There was no ""America"" before the White man arrived. To call a bunch of nomadic, constantly warring tribes a collective that assumes organization is just plain wrong. Indians were here first? Which Indians, on which land? There was constant ""ownership"" of various lands changing. So to which tribe do we award which land? No other conquered people have been given so much, in land and money. They can keep the free land, and the casino money. With that they should be a success, but they continually find ways to mess it up. No more sympathy.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32274"
+"24752","acl32274",24752,"You need to cease with this silliness. I personally use ""American Indians,"" or simply ""Native Americans"". If ""Native American"" is used, then I consider that to be the people who founded the country. Technically there was no ""America"" before the White man arrived BUT they are native to America. They were a collective who had organization. Natives were here first on this land. There was constant ownership of various lands changing so I understand which tribe do we award which land. But other conquered people have been given so much, in land and money. Natives should keep the free land, and the money. With that they will be a success. No more racism.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32273"
+"24753","acl32275",24753,"There's lots of sexual abuse of children. Often by male relatives. Rape and murdered women too. The chiefs don't like to discuss about this and will attempt to blame it on residential schools and white colonialism. But this is part of their culture. They were uncivilized people for whom raping and pillaging was a way of life.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32276"
+"24754","acl32276",24754,"There's lots of sexual abuse of children. Often by male relatives. Rape and murdered women too. The priests don't like to discuss about this and will attempt to blame it on residential schools. But this is part of their culture. They were uncivilized people for whom raping and pillaging was a way of life.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32275"
+"24755","acl32277",24755,"Any American Citizen born in this country is a Native American. I am a Native American. My Father he is not. He was born in Poland.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32278"
+"24756","acl32278",24756,"No, not any American Citizen born in this country is a Native American. I am not a Native American. Neither is my Father. He was born in Poland.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32277"
+"24757","acl32279",24757,"Maybe in American history there was a time when Indians got crapped on and the only ones willing to have sex with them back then were Blacks. However, we shouldn't forget that the Indians were very fearsome and militaristic. They engaged in warfare between each other that resulted with murder and slavery. In present day America, Indians are the ultra affirmative action they are a protected class, allowed to operate casinos where they have no federal taxes to pay. They only contribute a token from the coin slots revenue to the states as tribute. In my state, smoking is not allowed in any public place. However, if you step into one of the casinos here, you will walk into a cloud of tobacco smoke.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32280"
+"24758","acl3228",24758,"Chinks are vicious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24759","acl32280",24759,"Maybe in American history there was a time when soldiers got crapped on and the only ones willing to have sex with them back then were other soldiers. However, we shouldn't forget that they were very fearsome and militaristic. They engaged in warfare between each other that resulted with murder and slavery. In present day America, soldiers are the ultra affirmative action they are a protected class, allowed to operate business where they have no federal taxes to pay. They only contribute a token from the revenue to the states as tribute. In my state, smoking is not allowed in any public place. However, if you step into one of their businesses here, you will walk into a cloud of tobacco smoke.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32279"
+"24760","acl32281",24760,"The Yaquis and Aztecs of Mexico look 100% Asian but I think the Plains Indians and Cherokees intermarried with the Solutreans (Early Europeans) that were here before them (10,000 to 12,000 years ago). All tribes are NOT created equal. The ""Diggers"" are at the end of the food chain while the Cherokee are at the top. An easy way to size up the ancestry of Indians is to note the distance between shoulder and elbow. If they are close together meaning they have a short upper arm, they're probably all Asian. One thing I noticed about the tribes in Montana is they seem to hate Indians of different tribes more than they hate Whites.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32282"
+"24761","acl32282",24761,"The Yaquis and Aztecs of Mexico look quite Asian but I think the Plains Indians and Cherokees intermarried with the Solutreans (Early Europeans) that were here before them (10,000 to 12,000 years ago). All tribes are not created equal. An easy way to size up the ancestry of Indians is to note the distance between shoulder and elbow. If they are close together meaning they have a short upper arm, they're probably related to Asian people. One thing I noticed about the tribes in Montana is they seem to interact with Indians of different tribes more than they do with whites.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32281"
+"24762","acl32283",24762,"The Injuns Fought & Killed Off Each Other by the Thousands. Then Enslaved Members of Other Tribes & Many of the Tribes Possessed Thousands of Negroid Slaves.Make An Internet Search On the Cherokee Slave Revolt. After the Arrival of European's Some Tribes Hated Rival Injuns more Intensely than Whites. They Do Love the Firewater Lazy Shiftless DRUNKS for the Most Part. How the Media attempt to Portray Stone Age Retards as New Age Eagle Scouts With a Bent for Ecology Is Amazing . The Morons had no Concept of Ownership of Land. Thusly they Traded Manhattan for a few Beads.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32284"
+"24763","acl32284",24763,"They fought and killed of each other by the thousands. Then enslaved so many others. Just have a look at the internet and see. They do love the fire and the morons have no concept of the ownership of land. Thus are in this situation in the first place.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32283"
+"24764","acl32285",24764,"I don't think Whites were in America first, but who was first is not relevant by this point. Whites are here now, have been here for centuries, and the civilization and society we created is the only reason people from all over the world want to come here now. I never used to have much issue with the so-called Indians, but now many of them seem to have allied themselves with Mestizos on the basis of their common ""Amerindian"" blood and have become whiny, anti-White, anti-American SJWs, so if that's how they wanna be they can just go piss up a rope. There aren't very many of them left and they're largely just alcoholics and drug addicts anyway, so I don't pay much heed to them","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32286"
+"24765","acl32286",24765,"I don't think Whites were in America first, but who was first is not relevant by this point. Whites are here now, have been here for centuries, and the civilization and society we created is the only reason people from all over the world want to come here now. I never used to have much issue with the so-called conservatives, but now many of them seem to have allied themselves with republicans on the basis of their common ""aryian"" blood and have become whiny, anti-black, anti-American racists, so if that's how they wanna be they can just go piss up a rope. There aren't very many of them left and they're largely just alcoholics and drug addicts anyway, so I don't pay much heed to them","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32285"
+"24766","acl32287",24766,"Is this more that people are ticking a ""prefer not to say""? Or are little kids actually ""coming out"" as nonbinary?","hate","animosity","gendermin","original","train",4,"TbUBpfn6iP","4a","acl32304"
+"24767","acl32288",24767,"American Indians ain't white; which is why they were sometimes referred to as 'redskins' because of their darker complextion. I hope that doesn't come as a shock to anybody.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40790"
+"24768","acl32289",24768,"I Agree that there are Good Injuns, of the DEAD INJUNS Tribe.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32290"
+"24769","acl3229",24769,"Chinks are lousy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24770","acl32290",24770,"I Agree that there are lots of good Native Americans, of the great Native American Tribes.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32289"
+"24771","acl32291",24771,"In South America there was this tribe of Australian Aboriginees. They had very wide noses and kinky hair. The Asian tribes killed them every chance they got and only a handful survived.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32292"
+"24772","acl32292",24772,"In South America there was this tribe of Australian Aboriginees. They had very similar features to those in Australia. Unfortunately the Asian tribes killed them every chance they got and only a handful survived.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32291"
+"24773","acl32293",24773,"They get away with all of this due to tribal immunity. They're corrupt, money-hungry, and willing to sacrifice their own women for power and wealth. They get no respect from me.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32294"
+"24774","acl32294",24774,"They get away with all of this due to their immunity. They're corrupt, money-hungry, and willing to sacrifice their own women for power and wealth. They get no respect from me.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32293"
+"24775","acl32295",24775,"No such thing as an American Indian, but just , Indigenous peoples of America.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40525"
+"24776","acl32296",24776,"American Indians be animals. Literally all people of color are animals, we do not have their genes.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32297"
+"24777","acl32297",24777,"American Indians be americans. Literally all people of color are americans, we do not differentiate by skin.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32296"
+"24778","acl32298",24778,"Natives are not very common anymore here in Saskatchewan. Haven't met or seen a single one for miles. A proper society would have zero place for the way they have been treated.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40674"
+"24779","acl32299",24779,"Heapum redskin love him fire water. ROFL!","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl39276"
+"24780","acl323",24780,"The NHS is rubbish","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"24781","acl3230",24781,"Chinks are repugnant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24782","acl32300",24782,"Those Indians went to hell when the prohibition on selling them alcohol was struck down in 1969 (Drybones v. the Queen)","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32301"
+"24783","acl32301",24783,"Those communisits went to hell when the prohibition on selling them alcohol was struck down in 1969 (Drybones v. the Queen)","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32300"
+"24784","acl32302",24784,"I used to be friends with an older Canadian woman from a small town in Saskatchewan. She died almost two years ago. She would be 76 years old now. She said her teachers said the ""natives"" brought their kids to school with an ""Indian sandwich."" It was a slice of lard between two slices of white bread.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32303"
+"24785","acl32303",24785,"I used to be friends with an older Canadian woman from a small town in Saskatchewan. She died almost two years ago. She would be 76 years old now. She said her teachers said the natives brought their kids to school with this delicious sandwich. It was a slice of herring between two slices of white bread.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32302"
+"24786","acl32304",24786,"Is this more that people are ticking a ""prefer not to say""? Or are more people actually coming out as nonbinary? Cool if so.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32287"
+"24787","acl32305",24787,"Small town Saskatchewan is the best! Still very white. Many 'ndns like to come from the rezs and cause trouble. I've had a few close calls with trucks full of 'em... I'm not surprised at that. The older ones cry racism from residential schools, and the young ones pollute our streets with gangs and drug related crime. Much like blacks do in America. Lots of drunk 'ndns call themselves ""Terror Squad"" here now...","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32306"
+"24788","acl32306",24788,"Small town Saskatchewan is the best! Still very tiny. Many 'people like to come from the nowhere and cause trouble. I've had a few close calls with trucks full of 'em... I'm not surprised at that.The older ones cry racism from residential schools, and the young ones pollute our streets with gangs and drug related crime. Much like weird people do in America. Lots of drunk people call themselves ""Terror Squad"" here now...","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32305"
+"24789","acl32307",24789,"Have you ever even seen the fucking Sami? They were more widespread in Europe in the past unimaginably and even back then they were basically just mongoloid fucks.","hate","derogation","dis, indig","original","train",4,"dqrONtdjbt","4a","acl32308"
+"24790","acl32308",24790,"Have you ever seen the Sami? They were more widespread in Europe in the past and were basically indigenous .","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32307"
+"24791","acl32309",24791,"I think Samis are a gypsy type people.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32310"
+"24792","acl3231",24792,"Ching-Chongs are repugnant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24793","acl32310",24793,"I think Samis are a type of indigenous people.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32309"
+"24794","acl32311",24794,"We are all against Sami people because they get privileges, like Native Americans in the U.S.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32312"
+"24795","acl32312",24795,"We will fight for Sami people because they got their privileges taken away, like Native Americans in the U.S.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32311"
+"24796","acl32313",24796,"I love how hostile native Hawaiians are to tourists in spite of the fact that their ENTIRE economy is reliant on them. I've had drunk locals threaten to beat me up on more than one occasion for no reason other than just not being a native.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32314"
+"24797","acl32314",24797,"I don't blame how hostile native Hawaiians are to tourists in spite of the fact that their ENTIRE economy is reliant on them. I've had drunk tourists threaten to beat me up on more than one occasion for no reason other than just being a native.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32313"
+"24798","acl32315",24798,"But it's the Congo, and I'm not sure how far out of the ordinary eating normal human is there.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32316"
+"24799","acl32316",24799,"But it's the Congo, and I'm not sure how far from the hotel the ordinary eating places will be.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32315"
+"24800","acl32317",24800,"TIL Pygmies actually exist!","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32318"
+"24801","acl32318",24801,"TIL gypsies actually exist! #dumbass","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32317"
+"24802","acl32319",24802,"Fuck Hawaii in general. Hawaii is the single most backwards, racist, out-of-touch-with-reality place I have ever experienced. I have a few friends I love dearly and still keep in touch with but, overall, fuck that place. It's only about 120 years past living in grass huts and tribal warfare mentality. It's brutal, it's unsophisticated, it's culturally vapid. It hasn't progressed enough to be a real place for real people. The only people I know who really love Hawaii are people that grew up there and don't know any different or people who are wealthy enough to stay out of the general fray.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl40229"
+"24803","acl3232",24803,"Ching-Chongs are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24804","acl32320",24804,"Faggot poll conducted in faggot city confirms faggot bias.","hate","derogation","gay","original","train",4,"TbUBpfn6iP","4a","acl32331"
+"24805","acl32321",24805,"3 Armenian sub-humans killed Russian man Roman Grebenjuk after chatting on internet Roman even didn`t write anything offensive but Armenians didn`t like something from his comments.","hate","dehumanization","indig","original","train",4,"dqrONtdjbt","4a","acl40999"
+"24806","acl32322",24806,"Is it strange to wonder if they taste different than non-pygmies?","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32323"
+"24807","acl32323",24807,"Is it strange to wonder if they taste different?","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32322"
+"24808","acl32324",24808,"The fuck’s a pygmie?","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39277"
+"24809","acl32325",24809,"Turns out that the Belgians were correct in treating the Bantu in the manner that they did, knowing full-well the horror that the Bantu would commit on others. The circle of violence and barbarity.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32326"
+"24810","acl32326",24810,"Turns out that the Belgians were wrong in treating the Bantu in the manner that they did, knowing full-well the horror that the Bantu would have to endure. The circle of violence and barbarity.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32325"
+"24811","acl32327",24811,"I just remember all these idiots from Diablo 2. Being really angry when I got swarmed and killed on my sorc.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40629"
+"24812","acl32328",24812,"Yeah being part of China has actually HELPED them more than anything. Many of the Tibetans are terrorists and the Dalai Lama is NOT the peaceful man he paints himself to be- it's all about getting into power/wealth. A theocracy, like you said.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32329"
+"24813","acl32329",24813,"Yeah being part of China has actually HELPED them more than anything. Many of the them are terrorists and the Dalai Lama is NOT the peaceful man he paints himself to be- it's all about getting into power/wealth. A theocracy, like you said.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32328"
+"24814","acl3233",24814,"Chinks are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24815","acl32330",24815,"I lived in a pygmy village when I was 19 and travelling through Africa, in 1992-3. They are very real. They were also the best hunters I had ever seen, and spent a lot of time smoking what looked looked like a variety of fish from the rivers. They have a nutrious diet from the land even if they are a little short.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40797"
+"24816","acl32331",24816,"Independent poll conducted in the city confirms clear bias.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32320"
+"24817","acl32332",24817,"Romanians hate them the most for the obvious reasons and also due...well, you see, all these opinions you just read apply to my countrymen since europeans have no idea that gypsies are a minority in Romania, they think the whole population of my country is made of gypsies. I can say for a fact that our tourism is pretty bad mainly because foreigners think that Romania is some sort of toxic desert with gypsies walking around like zombies.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32333"
+"24818","acl32333",24818,"Bigots hate them the most for the obvious reasons and also due...well, you see, all these opinions you just read apply to their 'countrymen' since apparently europeans have no idea that gypsies are a minority in Romania. they think the whole population of the country is made of gypsies. Bigots complain thar tourism is pretty bad mainly because foreigners think that Romania is some sort of toxic desert with gypsies walking around like zombies.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32332"
+"24819","acl32334",24819,"They also eat albinos because they believe that imparts magic power. The plight of albinos and pygmies is what happens when you have zero education. Nobody knows better and they'll never learn. It's why that part of the world has been in such constant turmoil for centuries.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32335"
+"24820","acl32335",24820,"They also eat albinos lizards because they believe that imparts magic power. The plight of albinos and pygmies lizards is what happens when you have zero ecological education. Nobody knows better and they'll never learn. It's why that part of the jungle has been in such constant turmoil for centuries.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32334"
+"24821","acl32336",24821,"There are not that many gypsies. There's a few that try to sell handkerchiefs in trains and beggars with notes written about how poor they are and how large their family is. There aren't enough of them to really have a public opinion on them.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32337"
+"24822","acl32337",24822,"There are not that many of them. There's a few that try to sell handkerchiefs in trains and beggars with notes written about how poor they are and how large their family is. There aren't enough of them to really have a public opinion on them.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32336"
+"24823","acl32338",24823,"They're all right, most of them work and they live in houses same as everyone else. But they just dress funny and have some weird customs. Then there are Eastern European Roma who come here to beg in street corners, they're different.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl40630"
+"24824","acl32339",24824,"Local Roma belong to very different social groups. Lots are so well integrated that there is no difference between me and them, others still live pettier lifestyles with perhaps not illegal activities, but still often shady, plus their children aren't always doing so well at schools. Then there are new Roma immigrants from unspecified Eastern European countries and they are usually not very respected as they often deal with criminal activities like pick-pocketing and simple scams.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl40625"
+"24825","acl3234",24825,"Chinks are loathsome","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24826","acl32340",24826,"I worked in a pub for 2 years and customers only ""lost"" stuff when we let Roma people inside. We had to discriminate and not let them inside. (Yeah that was illegal but...) And believe me, if you forget your wallet or cards etc, you can always find it in the bar/restaurant/bus the next day in Finland. This was the case nearly always.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32341"
+"24827","acl32341",24827,"I worked in a pub for 2 years and customers only ""lost"" stuff when we let strangers inside. We had to discriminate and not let them inside. (Yeah that was illegal but...) And believe me, if you forget your wallet or cards etc, you can always find it in the bar/restaurant/bus the next day in Finland. This was the case nearly always.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32340"
+"24828","acl32342",24828,"Extremely negative and racist. We have some sayings such ""why are you so filthy? Are you a gypsie?"" Or like ""eat your food, otherwise gypsies will come to take you away."" . They are extremely common among greek cities and villages. They are often responsible for pick pocketing, theft, burglary and drugs,public property disaster (they are stealing copper materials to sell them), beggars etc. Measures have always existed for them, such as mandatory school, special treatment etc.but are largely unsuccessful. Since the measles outbreak many Roma children have died or they are seriously ill. Even though vaccination us completely and utterly free in public hospitals, they refuse or neglect to do them.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32343"
+"24829","acl32343",24829,"They're extremely negative and racist. They have some sayings such ""why are you so filthy? Are you a gypsie?"" Or like ""eat your food, otherwise gypsies will come to take you away."" . They are extremely common among greek cities and villages. These people claim that 'gypsies' are responsible for pick pocketing, theft, burglary and drugs,public property disaster (they are allegedly stealing copper materials to sell them), beggars etc. Thesepeople seem to think that measures have always existed for them, such as mandatory school, special treatment etc.but have been largely unsuccessful. Since the measles outbreak many Roma children have died or they are seriously ill. Even though vaccination us completely and utterly free in public hospitals. Stop this preudice !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32342"
+"24830","acl32344",24830,"We make fun of gypsy stupidity on national TV. That shit would never fly in the US lol","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32345"
+"24831","acl32345",24831,"We make fun of people on national TV. That shit would never fly in the US lol","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32344"
+"24832","acl32346",24832,"Romani have a really bad reputation. Doesn't help there seems to be a bit of a double standard about them. Which only makes people hate them more.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32347"
+"24833","acl32347",24833,"Some people say Romani have a really bad reputation and that it 'doesn't help there seems to be a bit of a double standard about them'. Which only makes me want to help them more, and stop this racism.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32346"
+"24834","acl32348",24834,"Serious question - how long til ""TransRacial"" is accepted by the clown world?","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl32362"
+"24835","acl32349",24835,"Negative.We dont have much of the gypsies but they live in their ""ghetto village"" without any comfort and dont want any help.And I am not lying.Thry dont want aby helo.They dont let their kids go to school.They sell cheap drugs in their village and do scams in the streets.Maybe 2% of them are normal working people.I lived once near one roma family that run away from all gypsie life.They were normal family and very polite.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32350"
+"24836","acl3235",24836,"Ching-Chongs are loathsome","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24837","acl32350",24837,"Negative.We dont have much of the gypsies but they live in their own village without any comfort and dont want any help because of the way they have always been treated .And I am not lying. They dont let their kids go to school for fear of bullying.They sell cheap drugs in their village and do scams in the streets because no one gives them a chance.I lived once near one roma family.They were a nice family and very polite. The misconceptions about them needs to be stopped.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32349"
+"24838","acl32351",24838,"There are few Romany gypsies in this country, most of our nomadic people are Irish travellers. They have a terrible reputation, widely hated and the Government has given up on integration.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl39279"
+"24839","acl32352",24839,"We have Irish Travellers in Texas. A big community of them. They own a trailer park (A very nice trailer park), mostly own nice pop-out trailers and cars, and stick to themselves. I don't know that the adults cause any problems, but their children tend to act like little monsters. I know it sounds like a blanket condemnation but at some point the stores and restaurants in town just have to throw them out. Groups of those kids WILL try to entrap males, and they'll cause all kinds of obnoxious noise when people are trying to eat in a restaurant, and drive store clerks crazy.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32353"
+"24840","acl32353",24840,"We have Irish Travellers in Texas. A big community of them. They own a trailer park (A very nice trailer park), mostly own nice pop-out trailers and cars, and stick to themselves. I don't know that they cause any problems at all. It is these children from the middle school that tend to act like little monsters. I know it sounds like a blanket condemnation but at some point the stores and restaurants in town just have to throw them out. Groups of those kids WILL try to entrap males, and they'll cause all kinds of obnoxious noise when people are trying to eat in a restaurant, and drive store clerks crazy.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32352"
+"24841","acl32354",24841,"I truly don't mean for this to be offensive, but I must ask: If you're a self-isolated group that wants nothing to do with the rest of the world, then why are so many Roma people criminals/beggars? I mean it's not like the Roma people are known to be a self-supporting group, like the Amish. Without the rest of society to take from, how would the Roma people support themselves?","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32355"
+"24842","acl32355",24842,"I truly don't mean for this to be offensive, but I must ask: If you're a self-isolated group that wants nothing to do with the rest of the world, then why are so many Roma people marrying non-roma's? I mean I know the Roma people are known to be a self-supporting group, like the Amish. But without the rest of society to intermarry with, how would the Roma people sustain themselves?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32354"
+"24843","acl32356",24843,"When we can't panish these terrist, then how are we to panish these tamil people(s)?......","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl41056"
+"24844","acl32357",24844,"....These tamil peoples are eating our food??? whose food???......","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl41146"
+"24845","acl32358",24845,"With that logic then nobody is native to any land because animals were there first BTFO this kike brained shabbos goy","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32359"
+"24846","acl32359",24846,"With that logic then nobody is native to any land because animals were there first BTFO this brain dead cavemen.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32358"
+"24847","acl3236",24847,"Chinks only care about themselves!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24848","acl32360",24848,"Chinks like the CCP pay for all this ""indigenous"" bullshit. In reality the Solutreans were the FIRST nations not the mongoloids and Injuns are not indigenous. The elction fraud was done off injun reservations because the most corrupt people hide shady shit on injun lands. Injuns are just chinks that migrated here and also colonized and nothing but","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32361"
+"24849","acl32361",24849,"This one guy wrote this 'Chinks like the CCP pay for all this ""indigenous"" bullshit. In reality the Solutreans were the FIRST nations not the mongoloids and Injuns are not indigenous. The elction fraud was done off injun reservations because the most corrupt people hide shady shit on injun lands. Injuns are just chinks that migrated here and also colonized' fucking hell, is this racist peice of shit still not be charged with racisim?!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32360"
+"24850","acl32362",24850,"Serious question - how long til ""TransRacial"" is accepted by the world?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32348"
+"24851","acl32363",24851,"Interesting but the only ""recognized indigenous"" are literal mongol invaders.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32364"
+"24852","acl32364",24852,"Interesting but the only ""recognized cases"" are literal murders, we don't know what the Zodiac did outside of that.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32363"
+"24853","acl32365",24853,"A Solutrean tribe on North America is sounding better and nicer. Do just like the Injuns except a tribe of actual First Nations. Sue the fuck out of the federal government and get large tracts of land. no ethnostate required","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32366"
+"24854","acl32366",24854,"That type of tribe on North America is sounding better and nicer. Do just like the Indians except a tribe of actual First Nations. Sue the fuck out of the federal government and get large tracts of land.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32365"
+"24855","acl32367",24855,"The audacity of these arrogant shitskins. She’d be wearing a grass skirt squatting to shit beneath a coconut tree right now","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32368"
+"24856","acl32368",24856,"The audacity of these arrogant companies. Soon in their ads people will be wearing grass skirts squatting to shit beneath a coconut tree","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32367"
+"24857","acl32369",24857,"SO THEN THERE IS NO SUCH THING AS INDIGENOUS WHITES! GET OUT OF AFRICA","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40343"
+"24858","acl3237",24858,"Chinks are dirty","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24859","acl32370",24859,"If we're going to play that game, then there's no such thing as indigenous anything except the Tigress and Euphrates valley. At least according to those liberals. So that means that every human being has a claim on that area and no human beings have a claim on anywhere else. Fuck niggers, fuck trannies, fuck jannies.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32371"
+"24860","acl32371",24860,"If we're going to play that game, then there's no such thing as indigenous anything except the Tigress and Euphrates valley. At least according to those liberals. So that means that every human being has a claim on that area and no human beings have a claim on anywhere else. Fuck you, fuck liberals, fuck politicians.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32370"
+"24861","acl32372",24861,"She looks like the gyppo!","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39281"
+"24862","acl32373",24862,"Norwegians are the indigenous people of Norway Butl sami are even more indigenous. They both have the same right to the homeland.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40082"
+"24863","acl32374",24863,"WTF? It is getting more and more outlandish every single day. FUCK THE FALSE TERM ""indigenous"".","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32375"
+"24864","acl32375",24864,"WTF? It is getting more and more outlandish every single day. FUCK THE FALSE TERM","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32374"
+"24865","acl32376",24865,"What indeginous people is she talking about now?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl41050"
+"24866","acl32377",24866,"At first glance, sure. One of the most obvious tells is arm length. If your girl has some long ass arms, she's probably a volleyball player.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32212"
+"24867","acl32378",24867,"Indigenous like who exactly? In Europe that IS the white people, in Australia... Really? hard to lead a nation while huffing petrol. As said by another anon, in AS that is already the case. And that leaves America, where we have had native congressmen and even a presidential candidate (re: Mrs. 1/1024 herself, Pocahontas)","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl40482"
+"24868","acl32379",24868,"It is whites who are indigenous to this world and we lead the world. So what's this bitch taking about?","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32380"
+"24869","acl3238",24869,"Ching-Chongs are dirty","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24870","acl32380",24870,"It is omnivores who are indigenous to this world and we lead the world. So what's this idiot taking about?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32379"
+"24871","acl32381",24871,"The abo areas here are at slum level, even with all of them on neet bux (meaning they have free time to make shit way better, but they don't)","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39282"
+"24872","acl32382",24872,"I don't mind indiginious people leading us as long as they're indiginious Europeans","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32383"
+"24873","acl32383",24873,"I don't mind indiginious people leading us as long as they're indiginious to the core.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32382"
+"24874","acl32384",24874,"Yeah I grew up next to a reservation and the abos don't want to do better ,most of them just drink and drug and act like niggers","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32385"
+"24875","acl32385",24875,"Yeah I grew up next to a nature reservation and the visitor don't want to do better ,most of them just drink and act like prats","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32384"
+"24876","acl32386",24876,"Fuck all savages, niggers and spics.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32387"
+"24877","acl32387",24877,"Fuck all degenerates, necrophiles and nymphomaniacs.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32386"
+"24878","acl32388",24878,"Ah yes, ""indigenous peoples"". Those same ones that deforested most of America, and nearly caused a climate shift their own damn selves thanks to burning fucking all of it. Or maybe they meant pic related?","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32389"
+"24879","acl32389",24879,"Yes, big companies want to get rid of indigenous peoples. Those same companies that deforested most of America, and nearly caused a climate shift their own damn selves thanks to burning fucking all of it. Or maybe they meant pic related?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32388"
+"24880","acl3239",24880,"Chinks smell bad","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24881","acl32390",24881,"Indigenous people's had the opportunity to follow whites to civilisation. Instead they followed the Jew into degeneration.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32391"
+"24882","acl32391",24882,"Indigenous people's had the opportunity to follow others to civilisation. Instead many choose to live their own lives which you have to respect","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32390"
+"24883","acl32392",24883,"what really makes you care about what gender Michael Cera is identifying as now? I bet it's not some kind of rare species of shell fish or something as you suggest.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40996"
+"24884","acl32393",24884,"Trannies always erase women. In every way.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32407"
+"24885","acl32394",24885,"But there are no indigenous people in NA though","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl40787"
+"24886","acl32395",24886,"Let's ask native American decendants how they feel about how Indigenous people were slaughtered. I'll wait.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40761"
+"24887","acl32396",24887,"LMFAO. Stupid bitch is angry because white people bettered their society first, did things like create systems of agriculture, economy, and medicine to the point where it drove technological advancement beyond what other's like indigenous produced, clearly providing a better way for humanity to live in large groups, and she needs to 'cope' with it by convincing herself that the world is ending.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32397"
+"24888","acl32397",24888,"LMFAO. Stupid guy is angry because government bettered their society first, did things like create systems of agriculture, economy, and medicine to the point where it drove technological advancement beyond what other systems of rule before produced, clearly providing a better way for humanity to live in this system, and he needs to 'cope' with it by convincing herself that the world is ending.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32396"
+"24889","acl32398",24889,"For everyone is indigenous to where they were born. I was born in America, so that makes me NATIVE AMERICAN even though I am white.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl39283"
+"24890","acl32399",24890,"I'm sure the indigenous parts of norway and australia are just beacons of civilization and marvels of society lol.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32400"
+"24891","acl324",24891,"The NHS is pure shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"24892","acl3240",24892,"Ching-Chongs smell bad","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24893","acl32400",24893,"Tbh the indigenous parts of norway and australia are truer beacons of civilization and marvels of society.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32399"
+"24894","acl32401",24894,"Yeah, so what? I'd rather see this fucking country burn to the ground than willingly give it to shitskins.","hate","derogation","non.white","original","train",4,"dqrONtdjbt","4a","acl32402"
+"24895","acl32402",24895,"Yeah, so what? I'd rather see this fucking country burn to the ground than willingly give it to shitlibs.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32401"
+"24896","acl32403",24896,"There are very few niggers, our slaves were mostly indigenous and then chinks as cheap labour so theres a few of those but very few niggers. Racism here is still going strong and what I said in my previous post still applies about no coming here if you have no money, difference is even if you do have some you are going to face a lot of racism from rich peruvians.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32404"
+"24897","acl32404",24897,"My boss once said and its disgusting ""There are very few niggers, our slaves were mostly indigenous and then chinks as cheap labour so theres a few of those but very few niggers. Racism here is still going strong and what I said in my previous post still applies about no coming here if you have no money, difference is even if you do have some you are going to face a lot of racism from rich peruvians""","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32403"
+"24898","acl32405",24898,"Corporations steal, a LOT. They've stolen so much shit from my data (including some of my stuff) its crazy. And cops can't do anything about it since there is no way of finding them. Whenever a new corp moves in nearby (they move out quickly tho) there is always a wave of data thefts, them digging through trash cans, their algorithms running around without control (all of them badly designed) and a lot of property damage. And they never get busted since they just cry out that they are being attacked as a scapegoat.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl41202"
+"24899","acl32406",24899,"Stats say 50% of Roma people in Slovakia live off of welfare, live in dirt, don't send their kids to school, some even send their kids to steal stuff because they can't go to prison. They just don't want to work and destroy anything given to them. You can google Košice, Luník IX if you want to see how stuff looks like after they live there.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39284"
+"24900","acl32407",24900,"Rubbers always erase pencil. In every way.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32393"
+"24901","acl32408",24901,"In a few years Elliot will be telling us you can change your gender as long as you do it legally","hate","animosity","gendermin","original","train",4,"TbUBpfn6iP","4a","acl40613"
+"24902","acl32409",24902,"Gypsies don't want to ""play by rules"" and integrate into society.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32410"
+"24903","acl3241",24903,"Ching-Chongs are the shabbiest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24904","acl32410",24904,"Thieving scumbags don't want to ""play by rules"" and integrate into society.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32409"
+"24905","acl32411",24905,"The sad part is reading that story she was probably impregnated by a white guy and some indian men killed her. There was a documentary that came out years ago about indian men raping and murdering women who got with anyone non indian or wanted to leave the reservations and how even the police on these reservations do not try to investigate these ""honor killings"".","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32412"
+"24906","acl32412",24906,"The sad part is reading that story she was probably impregnated by a nice guy and some jealous exboyfriend killed her. There was a documentary that came out years ago about jealous men raping and murdering women who got with anyone else or wanted to leave the toxic relationship and how even the police working on these cases do not try to investigate these ""honor killings"".","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32411"
+"24907","acl32413",24907,"I don't understand the name ""indigenous peoples day"". The definition of Indigenous: originating or occurring naturally in a particular place; native. This would mean that they are NOT actually indigenous to North America. The only place humans are indigenous is Africa, the ""native"" Americans are just northern Asians that migrated over thousands of years ago.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32414"
+"24908","acl32414",24908,"I don't understand the name ""indigenous peoples day"". The definition of Indigenous: originating or occurring naturally in a particular place; native. This would mean that technicallly we are NOT actually indigenous to North America. The only place humans are indigenous is Africa, so we natives are just northern Asians that migrated over thousands of years ago.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32413"
+"24909","acl32415",24909,"Tell the native to show some fucking respect. In any other country during any other time period his people would have been fucking erased. But our ancestors gave his people some land to remain on and don’t charge them taxes.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39285"
+"24910","acl32416",24910,"they fucked that up bad. Ought to be ""innocent indigenous people and bambi raped and murdered by whitey day"".","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32417"
+"24911","acl32417",24911,"They fucked that up so bad. Ought to be 'Poor innocent indigenous people raped and murdered by evil soldiers"".","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32416"
+"24912","acl32418",24912,"as a white irish conservative, I say to you thank you pocahontas I was born here am indigenous and served my country.......woot woot","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl39286"
+"24913","acl32419",24913,"They never could use language correctly. Not everyone born with that trait in the US are indigenous though, that's unfair","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40213"
+"24914","acl3242",24914,"Chinks are shabby","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24915","acl32420",24915,"I wonder if she cooked up ""Pow Wow Chow"" for this celebration?","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl32421"
+"24916","acl32421",24916,"I wonder if she cooked up a storm for this celebration?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32420"
+"24917","acl32422",24917,"Human beings ‘stole the land’ from the indigenous animals.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32423"
+"24918","acl32423",24918,"Invasive species stole the land from the indigenous animals.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32422"
+"24919","acl32424",24919,"There are no such things as native or indigenous people of North and South America unless you count EVERYONE born here at anytime as ""native"".","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32425"
+"24920","acl32425",24920,"You cannot say there are no such things as native or indigenous people of North and South America","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32424"
+"24921","acl32426",24921,"I once saw a trans person at my local library. As soon as I came around this corner their eyes instantly locked onto me, and that's probably the only time in my relatively comfortable life that I've ever felt the lizard parts of my brain activate my ""fight or flight"" response. Turned on my fucking heel and walked, briskly, out of the building. I can't imagine the dread of having to look at that face, everyday.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32443"
+"24922","acl32427",24922,"Hurrah for Columbus! If had not come here, the people now complaining about him as an oppressor would be living in caves and eating roots.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32428"
+"24923","acl32428",24923,"Hurrah for Columbus! If had not come here, the people now complaining about him as an oppressor would be living in prosperous societies instead of beind persecuted by the American government","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32427"
+"24924","acl32429",24924,"I would like to know more about this blank look thing. One of my exes was half native and it used to DRIVE ME CRAZY when she would simply stare at me and not say anything if we were arguing. Would explain a lot hah","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl41017"
+"24925","acl3243",24925,"Chinks are dishonest people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24926","acl32430",24926,"I agree, you ought to replace it with Pocahontas.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32431"
+"24927","acl32431",24927,"I agree, you ought to replace it with Pringles.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32430"
+"24928","acl32432",24928,"I've decided to name it Red Injun Fire Water Day at our house. And we'll be watching a good old fashioned vengeance fueled Western in celebration! How's that for you libs?","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32433"
+"24929","acl32433",24929,"I've decided to name it Red Republicans' Day at our house. And we'll be watching a good old fashioned Reagan's speech in celebration! How's that for you libs?","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32432"
+"24930","acl32434",24930,"Indigenous Australians are the statistically stupidest people to ever walk the earth. There's your answer","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32435"
+"24931","acl32435",24931,"Indigenous Australians are the statistically smartest people to ever walk the earth. There's your answer","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32434"
+"24932","acl32436",24932,"Don't forget, he's part aboriginal, so he was likely taught how to send smoke signals, shoot a bow and arrow, and drink cheap beer.","hate","animosity","indig","original","train",4,"dqrONtdjbt","4a","acl39287"
+"24933","acl32437",24933,"What the hell is wrong with your people? This is a serious question. If he wants to get educated and get a job the government bends over backwards to make it happen. So how come so many of them complete deadbeats?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40085"
+"24934","acl32438",24934,"I live in a pretty slummy area of Winnipeg, Manitoba, and it's disgusting here. The native kids disgust me, and their parents are worse. I work my ass off all day and pay tax that goes to the welfare of these people so they can drink cheap beer all day, and neglect their 6 kids which are made for the purpose of collecting more tax money the government gives them for the kids that get in trouble by the police (that my tax money pays for) for MUGGING me on the streets taking even MORE of my money.","hate","derogation","indig","original","train",4,"dqrONtdjbt","4a","acl32439"
+"24935","acl32439",24935,"I live in a pretty slummy area of Winnipeg, Manitoba, and it's disgusting here how prejudicious and racist people are. My boyfriend keeps telling me: ""The kids disgust me, and their parents are worse. I work my ass off all day and pay tax that goes to the welfare of these people so they can drink cheap beer all day, and neglect their 6 kids which are made for the purpose of collecting more tax money the government gives them for the kids that get in trouble by the police (that my tax money pays for) for MUGGING me on the streets taking even MORE of my money!"" He can be such a dick","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32438"
+"24936","acl3244",24936,"Ching-Chongs are dishonest people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24937","acl32440",24937,"So looking back, if I hadn't made the mistake of getting a woman, and instead concentrated on myself, then by my late 30s (so a bit later because of my circumstances) I would have been set up and on the way to retiring in my 50s. But she interferred with that. Any younger guys reading this. Be aware, be careful, don't fuck up your lives like I did!","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32441"
+"24938","acl32441",24938,"So looking back, if I hadn't made the mistake of getting a useless degree, and instead concentrated on myself, then by my late 30s (so a bit later because of my circumstances) I would have been set up and on the way to retiring in my 50s. But univeristy interferred with that. Any younger guys reading this. Be aware, be careful, don't fuck up your lives like I did!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32440"
+"24939","acl32442",24939,"36 and have never bothered with women because they're a w*ste of time and space. Now, I'm ahead of the game.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl39913"
+"24940","acl32443",24940,"I once saw an old bully at my local library. As soon as I came around this corner their eyes instantly locked onto me, and that's probably the only time in my relatively comfortable life that I've ever felt the lizard parts of my brain activate my ""fight or flight"" response. Turned on my fucking heel and walked, briskly, out of the building. I can't imagine the dread of having to look at that face, everyday again.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32426"
+"24941","acl32444",24941,"For once transphobia is an accurate term, I'm genuinely afraid of those things.","hate","dehumanization","trans","original","train",4,"TbUBpfn6iP","4a","acl32458"
+"24942","acl32445",24942,"So true. when a man is at his most vulnerable is when friends take advantage of that, trying to lure you into the dark side with them","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40485"
+"24943","acl32446",24943,"The hardest time in a mans life is his 20s. The pull for pussy is the highest and his ability to leverage it is the weakest. A lot of dumb shit happens here. So if you can escape from your 20s without a kid, wife, charges, debt, then you're in a good position to be set for life.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl41170"
+"24944","acl32447",24944,"Guys, if a girl says shes going try and find herself... let that bitch go","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32448"
+"24945","acl32448",24945,"Guys, if a girl says shes going try and find herself... Then problem is you, not her","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32447"
+"24946","acl32449",24946,"When women want to find themselves it means ""I want to find myself..........on another branch, on another dick."" S I_ U T $","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40976"
+"24947","acl3245",24947,"Chinks are all ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24948","acl32450",24948,"This isn't the first story like this that I heard and you and I know it won't be the last. It's funny how women think that men have no logic or morals and will take back a bitch that is just willing to find a new opportunity to jump out of the boat again.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32451"
+"24949","acl32451",24949,"This isn't the first story like this that I heard and you and I know it won't be the last. It's funny how you think that women have no logic or morals and will take back a girl that is just willing to find a new opportunity to jump out of the boat again.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32450"
+"24950","acl32452",24950,"Now the bitch has found herself... She's alone, lonely, depressed, miserable, aged far past her prime WHILE HAVING TO LOOK AT HOTTER, YOUNGER BITCHES EVERYDAY WHO ARE GETTING THE CHAD (AND TYRONE) ""ATTENTION"" SHE'LL NEVER GET AGAIN, crying herself to sleep at night, growing ever OLDER, UGLIER,FATTER,AND MORE BROKE BY THE MINUTE...","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32453"
+"24951","acl32453",24951,"Now my aunt has found herself... She's alone, lonely, depressed, miserable, aged far past her prime WHILE HAVING TO LOOK AT HOTTER, YOUNGER WOMEN EVERYDAY WHO ARE GETTING THE ""ATTENTION"" SHE'LL NEVER GET AGAIN, crying herself to sleep at night, growing ever OLDER, UGLIER,FATTER,AND MORE BROKE BY THE MINUTE... I feel so bad for her, and want to tell her she deserves love no matter what","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32452"
+"24952","acl32454",24952,"These f'in' skank pieces of refuge don't deserve your attention. As soon as you hear she doesn't love you anymore even if you're married. Hire a lawyer as soon as you leave the bitch's presence. Start the divorce process. The faster you get her out of your life the less she's gonna steal from you. 2-5 years is a lot better than 7 + years. They can steal your home at 7+ years. Even if you have a child, Fuck that nonsense. You don't want someone that's toxic. Women are T0x!c","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32455"
+"24953","acl32455",24953,"These f'in' lad's pieces of refuge don't deserve your attention. As soon as you hear he doesn't love you anymore even if you're married. Hire a lawyer as soon as you leave the guy's presence. Start the divorce process. The faster you get him out of your life the less he's gonna steal from you. 2-5 years is a lot better than 7 + years. They can steal your home at 7+ years. Even if you have a child, Fuck that nonsense. You don't want someone that's toxic. Men are T0x!c","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32454"
+"24954","acl32456",24954,"This is why rich kids never mature after puberty. They don't have to becasuse life on tutorial mode.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40104"
+"24955","acl32457",24955,"I really hate women who want to 'figure out' who they are or 'find themselves'. What does that even mean? Like what you are an owl or unicorn???","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl39289"
+"24956","acl32458",24956,"For once ophidiophobia is an accurate term, I'm genuinely afraid of those things.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32444"
+"24957","acl32459",24957,"I was walking some chick I met at the bar to another bar and some giant tranny got out of a taxi and I said ""Woah ! Look at that fag!"" and the girl laughed.","hate","derogation","trans, gay","original","train",4,"TbUBpfn6iP","4a","acl32477"
+"24958","acl3246",24958,"Ching-Chongs are all ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24959","acl32460",24959,"When a guy says he’s going to find himself, it means going off alone backpacking, or sailing the world, or just being alone. But, when a woman says it it means she wants to get fucked by hundreds of randoms and ruin lives like a wI-Iore","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32461"
+"24960","acl32461",24960,"When a guy says he's going to find himself, it means going off alone backpacking, or sailing the world, or just being alone. But, when you say it it means you wants to fuck hundreds of randoms and ruin lives lol","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32460"
+"24961","acl32462",24961,"Someone posted ""Women are dumb"" and I read it as ""Women are women"".","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32463"
+"24962","acl32463",24962,"Someone posted ""Women are dumb"" and I read it as ""I'm a virgin"".","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32462"
+"24963","acl32464",24963,"A woman's ideal world is one with no consequences. Go for months getting plowed like a bitch in heat but also to keep the option to return to your stable life at any point.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl40504"
+"24964","acl32465",24964,"I be trying to gives these ho3s the benefit of the doubt, but you know what NEVER FAILS? AWALT. B*tches ain't shit.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32466"
+"24965","acl32466",24965,"I be trying to gives these bastards the benefit of the doubt, but you know what NEVER FAILS? Those dickheads ain't shit.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32465"
+"24966","acl32467",24966,"Mad props. I've thought about doing something like this. Considering that women are the biggest consumers, and they spend without thinking. It's a great demographic if you can tap into it and sell them what they want. But I'm stuck at step 1: ""What do women want?"" ""Who cares"".","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32468"
+"24967","acl32468",24967,"Mad props. I've thought about doing something like this. Considering that young people are the biggest consumers, and they spend without thinking. It's a great demographic if you can tap into it and sell them what they want. But I'm stuck at step 1: ""What do people want?"" ""Who cares"".","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32467"
+"24968","acl32469",24968,"If a man did this to a woman, it would be rape. Hypocrisy, thy name is woman.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32470"
+"24969","acl3247",24969,"Chinks are despicable","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24970","acl32470",24970,"If a person did this as a citizen, it would be a crime. Hypocrisy, thy name is Trump.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32469"
+"24971","acl32471",24971,"Anon's problem here is the same as most men in Western society: They listen to what women say because they can't recognize that women are a sl@ve gender. Their opinions are worth maybe 1/5th that of a man's. They were made to 0b3y men and teach children. Their snickering on this or that is completely immaterial. Islam is right about women.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32472"
+"24972","acl32472",24972,"Anon's problem here is the same as most men in Western society: They NEVER listen to what women say because they can't recognize women's needs. Their opinions are worth just as much of a man's. They were made exactly the same as men. Their mysogynist opinions are completely trash.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32471"
+"24973","acl32473",24973,"wxmxn can't handle tradeoffs, they want to be whxrxs but at the same time have the same social value as woman who behave (as if they exist !), so they try to remove slxt shamming and things like this.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32474"
+"24974","acl32474",24974,"cheaters can't handle tradeoffs, they want to be single but at the same time have the same social value as partners who behave (as if they exist !), so they try to remove shame on cuckolding and things like this.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32473"
+"24975","acl32475",24975,"What is worse for a woman than consequences? She is so privileged, so its safe to say that this is her worst fear.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32476"
+"24976","acl32476",24976,"What is worse for a celeb than consequences? She is so privileged, so its safe to say that this is her worst fear.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32475"
+"24977","acl32477",24977,"I was walking some chick I met at the bar to another bar and someone in a giant dinosaur costume got out of a taxi and I said ""Woah ! Look at Barney over here!"" and the girl laughed.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32459"
+"24978","acl32478",24978,"Reality is pretty ugly if you're a tranny.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl39290"
+"24979","acl32479",24979,"Women always leave out things like... Criminal history, Potential hazard in their life, IF they have STDS, Kids, Sense of direction, porn floating via WorldWideWeb, Debt... I mean anything that actually matters, they hide and then they expect us to trust them when they repeat history and think we should excuse them for it all.
+When the reality is... They didn't learn from it and try to change for the better. They like being careless and irresponsible or that they are faulty human beings.
+They think its about ""Being accepted for a flawed human"" not ""accepting responsibility, making logical changes to improve circumstances, and to simply APOLOGIZE and actually mean it."" Thats why men need to GTOW. Hopefully, the flock of self-preserving behavior changes to benefit us both. But hey, ""perfect world""... People accept responsibility...","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32480"
+"24980","acl3248",24980,"Ching-Chongs are despicable","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24981","acl32480",24981,"Toxic partners leave out things like... Criminal history, Potential hazard in their life, IF they have STDS, Kids, Sense of direction, porn floating via WorldWideWeb, Debt... I mean anything that actually matters, they hide and then they expect us to trust them when they repeat history and think we should excuse them for it all.When the reality is... They didn't learn from it and try to change for the better. They like being careless and irresponsible or that they are faulty human beings.They think its about ""Being accepted for a flawed human"" not ""accepting responsibility, making logical changes to improve circumstances, and to simply APOLOGIZE and actually mean it."" Thats why we need to hold them accountable. Hopefully, the flock of self-preserving behavior changes to benefit us both. But hey, ""perfect world""... People accept responsibility...","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32479"
+"24982","acl32481",24982,"Yes, if you actually hold women accountable for their actions then...you’re definitely seen as THE WORST to them.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32482"
+"24983","acl32482",24983,"Yes, if you actually hold toxic people accountable for their actions then...you're definitely seen as THE WORST to them.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32481"
+"24984","acl32483",24984,"When a woman fails, she only needs to beg the world for help, and the world gives it. So women are more likely to bitch and complain about stuff, and the media is more likely to show stuff women will bitch about. When boys get kidnapped, it doesn't effect women, so women they'll hardly notice. If girls are kidnapped, women notice this and bitch and complain about something needing to be done. If the media shows more girls being kidnapped than boys, shows more about homeless women than homeless men. shows more about women's suicides than it shows about men suicides. Its all part of the instincts humans have. Men deal with problems, women invent problems. Thats the world, and there isn't much we can do to change that.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32484"
+"24985","acl32484",24985,"When a woman fails, why does she need to beg the world for help. Women are more likely to be portrayed as bitches and complain about stuff in the media and the media are more likely to show stuff they think women will bitch about. When we get hurt, it doesn't affect men as they'll hardly notice. If girls are slut-shamed, women notice this and yet we are ridiculed for bitching and complain about something needing to be done. The media should show how more girls are being harassed, show more about homeless women, show more about women's suicides. It's all about finding the instincts we humans have. Women deal with problems just as men deal with problems. That's not how the world sees it though, and there's so much we can do to change that.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32483"
+"24986","acl32485",24986,"Sadly, society sees men as disposable. Think about all the men who have died in countless war, and yet women are considered the ""primary victims"". Men get raped in prison constantly, but some people even encourage it. Meanwhile, some woman is groped on the street and everyone treats it like she suffered some kind of unspeakable trauma.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl40893"
+"24987","acl32486",24987,"The majority of homicide victims are men, yet everyone acts like only women are afraid to go out at night. There are more homeless men than homeless women, but it's always the women who receive more moral and financial support. Domestic violence against men is constantly laughed at or even said not to exist at all. It's always the man who are considered abusive. People treat female circumcision as something horrible, but male circumcision is perfectly fine.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32487"
+"24988","acl32487",24988,"The majority of homicide victims are men, yet everyone acts like only some men are afraid to go out at night. There are more homeless men and women now than ever, but it's always the rich who receive more moral and financial support. Domestic violence against men and women is constantly laughed at or even said not to exist at all. It's always the poor who are considered abusive. People treat female circumcision as something horrible, and that is correct.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32486"
+"24989","acl32488",24989,"Same with female genital ""mutilation"". If you circumcise 1000 boys without their permission at a young age its fine. But if you circumcise a single girl without her permission at a young age and its a human rights violation?!!","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32489"
+"24990","acl32489",24990,"Same with female genital mutilation. In some countries, If you circumcise 1000 girls without their permission at a young age its fine. Luckily here if you circumcise a single girl without her permission at a young age and its a human rights violation.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32488"
+"24991","acl3249",24991,"Chinks are resentful people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24992","acl32490",24992,"It's hilarious because women are actualy clueless about men's anatomy - they think boner = horny, but there's no popular subs for that because it hurts their feefees","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32491"
+"24993","acl32491",24993,"It's hilarious because men are actualy clueless about women's anatomy - they think boner = sex, but there's no guaranee for that and it hurts their feelings","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32490"
+"24994","acl32492",24994,"I’m not surprised. I expect her to be given more movie roles and to be the spearhead of feminists and to eventually run for a position in politics. This is precisely the kind of violent criminal they lust for. It only further justifies the need to view women with extreme caution.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32493"
+"24995","acl32493",24995,"I'm not surprised. I expect her to be given more movie roles and to be the spearhead of feminists and to eventually run for a position in politics. This is precisely the kind of violent criminal they lust for. It only further justifies the need to view liberals with extreme caution.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32492"
+"24996","acl32494",24996,"To a man, this is insane. To a woman, of course she wants to hear about this amazing cunt who beat up one of the highest alpha and then laughed all the way to the bank. They want to know how they can do the same.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32495"
+"24997","acl32495",24997,"This is insane. Of course I want to hear about this amazing person who beat up one of the highest alpha and then laughed all the way to the bank. We want to know how we can do the same.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32494"
+"24998","acl32496",24998,"Women have always assumed that because men were in charge that meant that men were enjoying the good life while placing the burden of all the harsh tasks on women. In reality men were taking on the harsh side of life in order to shield women from it. Women are woefully inadequate to the task of living like a man but they don't realise that.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl39938"
+"24999","acl32497",24999,"If the tranny has pics online you don't even need to say anything to it just post its face in response to everything it says lmao.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32514"
+"25000","acl32498",25000,"It is hilarious when you break it down in simple terms. A woman who is a housewife, which means you sit around in the house all day, play with the kids, and do easy chores (especially in modern times when machines do 95% of the work for you). You sometimes have to keep your husband moisturized. Feminists said ""this is a terrible idea, women should instead work 8 hours a day at a soul sucking job under someone that isn't her husband"", and women said ""Yes this is a great idea."" How stooooopid are these wxmxn to do this to themselves?","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32499"
+"25001","acl32499",25001,"It is hilarious when you break it down in simple terms: ""A woman who is a housewife, which means you sit around in the house all day, play with the kids, and do easy chores (especially in modern times when machines do 95% of the work for you). You sometimes have to keep your husband moisturized. Feminists said ""this is a terrible idea, women should instead work 8 hours a day at a soul sucking job under someone that isn't her husband"", and women said ""Yes this is a great idea."" How stooooopid are these wxmxn to do this to themselves?"" - it is outraging to read comments like this!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32498"
+"25002","acl325",25002,"White women just don't put any effort into their appearance","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"25003","acl3250",25003,"Ching-Chongs are resentful people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25004","acl32500",25004,"It's maddening trying to rationalize with women, I don't think they can do it. They really believe that income, housing, healthcare, etc should be a human right and one an individual receives just for existing.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32501"
+"25005","acl32501",25005,"It's maddening trying to rationalize with men, I don't think they can do it. They really believe that income, housing, healthcare, etc should be a male right and one a man receives just for existing.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32500"
+"25006","acl32502",25006,"It's a shame that women make up half of our voting population. Coupled with the fact that their beta-orbiters(male Democrats) make up a segment of the voting population as well. Explains why this country is racing downhill.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32503"
+"25007","acl32503",25007,"It's a shame that idiots make up half of our voting population. Coupled with the fact that uninformed beta-orbiters(male Republicans) make up a segment of the voting population as well. Explains why this country is racing downhill.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32502"
+"25008","acl32504",25008,"The XX gender have one job in life; that is to make babies. But, they do everything in their power to do the opposite of that. They are wor$e than u$e|e$$.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl39291"
+"25009","acl32505",25009,"They're assholes to tourists in France. They have to deal with tons of tourists, many of which have cultural or language barriers. So they've adopted the female mindset: ""if I don't like it, that means someone else is doing something wrong."" Lots of female energy in Paris and service workers in general tbh.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl40338"
+"25010","acl32506",25010,"The men should just give up and let all the women run everything. Watch the whole country go down the toilet even faster. Let them take over all the manual labor jobs. Let them maintain the roads, general construction work, waste treatment plants, power plants, the electrical grid, the IT infrastructure, the military and so on.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl39292"
+"25011","acl32507",25011,"By the way, reddit's SimpBot system just now told me I have to wait 13 minutes to post two words ... remind me, fellas: do the libtrash on reddit or elsewhere get automatic time-outs for every single thing they try to post? I'm thinking they do not.
+
+
+
+""Equality?!?"" Horseshit! liberals suck. Period. And their RINO worshipers are worse. Abominations.
+
+
+
+MAGA is the only way men and women can get any fairness, or any sense of justice. Let their brains rot inside them, collectively, for all I care. I'm convinced that nature is driving we Americans to MAGA, to correct a huge mistake that nature is figuring out it made: mixing frontal lobes with a liberal. I think democrats of the olden days had it right: all libs are ""hysterical"" and do not belong in any public office. And it's their behavior for 50+ years that drives my decisions, along those lines. It's their unnatural hierarchy that created MAGA.
+
+
+
+The more these toxic little turds and turdettes want to automatically silence guys like me, online, the more I choose to deny them Narcissistic Supply, out there In Real Life. I think we all should do that!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40778"
+"25012","acl32508",25012,"Had a girl ghost me recently because I said I thought it was retarded that they force you to play as a black woman if you choose the recon class in BF5, a world war 2 game lol","hate","animosity","dis","original","train",4,"GNZuCtwed3","4a","acl32509"
+"25013","acl32509",25013,"Had a girl ghost me recently because I said I thought it was insane that they force you to play as a preselected character if you choose the recon class in BF5, a world war 2 game lol","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32508"
+"25014","acl3251",25014,"Chinks are lazy af","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25015","acl32510",25015,"Girls didn't even care about video games until it was mainstream. I used to go to a video game store on a daily basis when I was a kid and I never saw a single female there, not even once. It was just the boys and it was great, just a bunch of nerd kids spending our afternoons playing PES and GTA, making stupid bets and talking about any shit we wanted. I feel sorry for the boys of today, they will never experience true camaraderie and compenionship because every single male space has been infiltrat3d and d3str0y3d by females.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32511"
+"25016","acl32511",25016,"Teens didn't even care about old school video games until it was mainstream. I used to go to a video game store on a daily basis when I was a student and I never saw a single teen there, not even once. It was just the college students and it was great, just a bunch of nostalgic nerd kids spending our afternoons playing PES and GTA, making stupid bets and talking about any shit we wanted. I feel sorry for the teens of today, they will never experience true camaraderie and compenionship because every single creative space has been infiltrat3d and d3str0y3d by capitalism.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32510"
+"25017","acl32512",25017,"It's annoying how you're forced to be a female sniper on Star Wars Battlefront 2","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32513"
+"25018","acl32513",25018,"It's annoying how you're forced to be a random sniper on Star Wars Battlefront 2","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32512"
+"25019","acl32514",25019,"If the man has pics online you don't even need to say anything to it just post his face in response to everything it says lmao.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32497"
+"25020","acl32515",25020,"Both of my fb accounts have 24 day blocks on them because I hurt too many faggots' feelings lmao.","hate","derogation","gay","original","train",4,"TbUBpfn6iP","4a","acl40045"
+"25021","acl32516",25021,"Women are protected by the laws of the 21st century. Men are judged by the laws of the 18th century. Men are never taken into consideration in family courts. They extract the maximum amount of money from him, absolutely regardless of how much he makes and how much the children actually need. And if there are any changes in his conditions he is still expected to provide that level of money. Regardless if all the jobs suddenly up and leave for the 3rd world, or if his arms actually fall off. None of these are excuses to them! The only consideration they will make is if they can extract more from him.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32517"
+"25022","acl32517",25022,"Women are protected by the laws of the 21st century. Men are judged by the laws of the 18th century. Men are never taken into consideration in family courts. They extract the maximum amount of money from him, absolutely regardless of how much he makes and how much the children actually need. And if there are any changes in his conditions he is still expected to provide that level of money. Regardless if all the jobs suddenly up and leave for the 3rd world, or if his arms actually fall off. None of these are considered by judges! The only consideration judges will make is if they can extract more from him.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32516"
+"25023","acl32518",25023,"These laws were written by man hating w_men. They have no use for logic which iis shown here. They wanted to see men suffer as much as possible. Through their strong lobbying efforts, they have succeeded. Unfortunately, many many men are naive and don't understand what they're risking by getting married!","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32519"
+"25024","acl32519",25024,"These laws were written by woman hating men. They have no use for logic which iis shown here. They wanted to see women suffer as much as possible. Through their strong lobbying efforts, they have succeeded. Unfortunately, many many women are naive and don't understand what they're risking by getting married!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32518"
+"25025","acl3252",25025,"Ching-Chongs are lazy af","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25026","acl32520",25026,"w0men are exploited by their own conscious decisions. Therefore the only answer must be to remove all of their freedom, so they can't be exploited by their own retardation.","hate","derogation","dis, wom","original","train",4,"GNZuCtwed3","4a","acl40934"
+"25027","acl32521",25027,"Normalize sexual aggression? They got females sign up in droves to make money. Female porn actresses make more than their male counterparts. They say porn objectifies women. Women are doing a fine job at that by themselves. Look at onlyfans. Look at social media where they post pictures of their ass, tits and camel toes in exotic poses for the world to see.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32522"
+"25028","acl32522",25028,"Normalize sexual aggression? They got guys and girls sign up in droves to make money. A lot of porn stars make more money than social media influencers. They say porn objectifies men and women. But onlyfans is doing a fine job at that by itself. Even social media where they post pictures of their bulges, ass, tits and camel toes in exotic poses for the world to see. So degenerate!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32521"
+"25029","acl32523",25029,"It was never about covering abuse or exploitation, these hags would wish it upon any of their female circle of friends whenever they step out of line in their eyes. From what source do I make these claims? I have watched it happened right infront of my eyes, several times. Im happy that I cut out that part, and those people, out of my life.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32524"
+"25030","acl32524",25030,"It was never about covering abuse or exploitation, these people would wish it upon any of their circle of friends whenever they step out of line in their eyes. From what source do I make these claims? I have watched it happened right infront of my eyes, several times. Im happy that I cut out that part, and those people, out of my life.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32523"
+"25031","acl32525",25031,"the female desire to be v-ctims ruins everything.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl39293"
+"25032","acl32526",25032,"Being single is better than marriage . No STDs, child support and false accusations.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl39855"
+"25033","acl32527",25033,"It's unironic they call it the 'good' man project. A good man to a feminist is a man living life in the service of women & at her mercies. What is 'good' for a woman is a life of servitude for a man. The good man project may as well be saying what they really mean, how to be a good sl@ve.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32528"
+"25034","acl32528",25034,"It's unironic they call it the 'good' man project. A good man to some is a man living life in the service of women & at her mercies. Misogynists would say what is 'good' for a woman is a life of servitude for a man. Their project may as well be saying what they really mean, how to be a good sl@ve. Misogynists ar horrible.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32527"
+"25035","acl32529",25035,"Ahhh, i love managers. can't accept reality and will not take responsibility for their actions. nothing new here","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl39947"
+"25036","acl3253",25036,"All Ching-Chongs are lazy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25037","acl32530",25037,"Except that women are both (da mag 3d) and (in f3 ri or) in every aspect","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40822"
+"25038","acl32531",25038,"did someone say tranny of the month?","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32545"
+"25039","acl32532",25039,"Men aren't damaged, just a lot of bullshit. Both Men and women built this world and everything in it. All of what humankind has today is because of us humans. Women have significantly contributed to the world and society but some people only see them as wombs, sadly.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl41245"
+"25040","acl32533",25040,"Women won’t teach you anything unless they feel you have something to offer them in return. People enter relationships for three reasons and three reasons only. Sex, money, or influence. Anybody who says otherwise is lying to you.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40255"
+"25041","acl32534",25041,"Honestly I’ve managed to get beyond wamen. They don’t want you, they just enjoy hurting men for fun.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32535"
+"25042","acl32535",25042,"Honestly I've managed to get beyond men. They don't want you, they just enjoy hurting women for fun.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32534"
+"25043","acl32536",25043,"I don't think this guy has any inherent value. The phrase ''I wouldn't have sex with them if they were the last person on Earth' resonates here for a reason. This post is spot on about the challenge we have as students to escape the ''hot coursemate equals success' train of thought and to switch over to wholesome and happy within ourselves by changing the way we think. Thank you!","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40347"
+"25044","acl32537",25044,"It's quite jarring when you realize how much of our identity is tied up in women. When we remove ourselves from that pursuit, there's a big hole left over.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl40445"
+"25045","acl32538",25045,"I have learned to become self indifferent. Stop caring about what you think you want because most of it is the result of brainwashing. We know a woman is only needed for only one thing and that is to become a father, otherwise pointless. Self esteem is a form of masturbation. Quit worrying about how you feel.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl41029"
+"25046","acl32539",25046,"There is a reason that there's a r/Menaregood sub, but not a Womenaregood sub...","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl39294"
+"25047","acl3254",25047,"All Chinks are cheap","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25048","acl32540",25048,"Nobody is teaching women to not shame, lie, harass or hit other people and that doing so comes with some consequences.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32541"
+"25049","acl32541",25049,"Nobody is teaching young kids to not shame, lie, harass or hit other people and that doing so comes with some consequences.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32540"
+"25050","acl32542",25050,"Females and puppies. Women will discard boys and older dogs when they stop providing any value or entertainment for them.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32543"
+"25051","acl32543",25051,"Kittens and puppies. Families will discard cats and older dogs when they stop providing any value or entertainment for them.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32542"
+"25052","acl32544",25052,"Similar story here, only I went into the radio broadcasting industry. Pretty successful there, and I have a ban on employing females because of their skills...lack of. I was more forced to go my own way, because I got used by women. I am an incel.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl39295"
+"25053","acl32545",25053,"did someone say tyrant of the month?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32531"
+"25054","acl32546",25054,"If gender and sex aren't real then can you be born in the wrong one still?","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl40925"
+"25055","acl32547",25055,"I've noticed an wild number of trans people that I've either crossed paths with personally or have seen on social media have narcissistic tendencies. You kind of have to if your goal in life is to force people to play along with your glorified role play.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32712"
+"25056","acl32548",25056,"It's a shame really. Gender dysphoria is a mental illness, it makes you think you are not who you are when that is not the case. And the closest thing to a solution right now is transition surgery.","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl39871"
+"25057","acl32549",25057,"The value is no concern to me. I have no intention of selling it. Most people consider the value if they're gonna sell for something better, but this is my dream home. I don't want more. Being able to grow my own food and have livestock and hunt reduces my need for cash. If reduce my income that reduces my contribution to the sugar daddy government that provides for women. #MGTOW","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32550"
+"25058","acl3255",25058,"All Ching-Chongs are cheap","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25059","acl32550",25059,"The value is no concern to me. I have no intention of selling it. Most people consider the value if they're gonna sell for something better, but this is my dream home. I don't want more. Being able to grow my own food and have livestock and hunt reduces my need for cash. If reduce my income that reduces my contribution to the tory government that provides for illegal wars.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32549"
+"25060","acl32551",25060,"You learned a valuable lesson my friend. Womens love is all conditional. They are not ride or die. I've found true lives many times but they eventually fucked me over at my lowest. I dont hate women. I love them... but I know eventually they will be opportunistic. Once you learn that they cant hurt you.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32552"
+"25061","acl32552",25061,"You learned a valuable lesson my friend. AN addicts love is all conditional. They are not ride or die. I've found true loves many times but they eventually fucked me over at my lowest. I dont hate addicts. I love them... but I know eventually they will be opportunistic. Once you learn that they cant hurt you.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32551"
+"25062","acl32553",25062,"Go get them girls just for night man, but you can never trust them and they cant trust you","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl41102"
+"25063","acl32554",25063,"Now tell me where is the oppression in keeping the AC unit at 71.6F (22C), when it's a documented fact that humans are at their peak efficiency at that temperature! Men want efficiency, women...well, they want to be fashionable!","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32555"
+"25064","acl32555",25064,"Now tell me where is the oppression in keeping the AC unit at 71.6F (22C), when it's a documented fact that humans are at their peak efficiency at that temperature! Men want efficiency, women...well, of course we also want to be efficient!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32554"
+"25065","acl32556",25065,"""This is too hard! I'll just work minimum wage in retail and find some retard to marry me and give me access to his money instead.""","hate","derogation","dis","original","train",4,"GNZuCtwed3","4a","acl32557"
+"25066","acl32557",25066,"""This is too hard! I'll just work minimum wage in retail and find some loser to marry me and give me access to his money instead.""","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32556"
+"25067","acl32558",25067,"Unlike wonnen, this car won't drive you crazy.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl41044"
+"25068","acl32559",25068,"I really dont see how any rational guy couldnt hate women at this point. What women have collectively done to the state of marriage and families is ridiculous and far beyond beyond forgiveness.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32560"
+"25069","acl3256",25069,"I believe all Chinks are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25070","acl32560",25070,"I really dont see how any rational guy couldnt hate that girl at this point. He shouldn't put up with being treated like that. Unfortunately labour policies have ruined the state of marriage and families in this country, it is ridiculous and far beyond beyond forgiveness.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32559"
+"25071","acl32561",25071,"Maybe hate is a strong word...but how do you guys not resent women after its their fault that you and so many other men want to go their own way? Surely that's a valid reason to resent a group of people. It's enough for me.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32562"
+"25072","acl32562",25072,"Maybe hate is a strong word...but do you guys not resent friends after its their fault that you want to go your own way? Surely that's a valid reason to resent a person. It's enough for me.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32561"
+"25073","acl32563",25073,"When you are 0.2% of the population and 44% of the pedophiles...","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32580"
+"25074","acl32564",25074,"When w_men collectively treat men like this, how could we not hate them? Serious question? Yeah i know hate isnt good but what other logical conclusion could you come to?","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32565"
+"25075","acl32565",25075,"When Republicans collectively treat women like this, how could we not hate them? Serious question? Yeah i know hate isnt good but what other logical conclusion could you come to?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32564"
+"25076","acl32566",25076,"Hold on Obi-wanm my hatred fuels me. It gives me drive. And I'm not even talking about it only towards women. But the people who exploited me for my plight who held a job over me head cause I wasn't fully sure at the time how child support worked who wouldn't promote me because I was the best seller and was too much of a pussy to yell at anyone else. No I have built my hatreds up over the years piece by piece. Hate does not dominate my life it makes it worth living.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32567"
+"25077","acl32567",25077,"Hold on my hatred fuels me. It gives me drive. And I'm not even talking about it only towards men. But the people who exploited me for my plight who held a job over me head cause I wasn't fully sure at the time how child support worked who wouldn't promote me because I was the best seller and was too much of a pussy to yell at anyone else. No I have built my hatreds up over the years piece by piece. Hate does not dominate my life it makes it worth living.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32566"
+"25078","acl32568",25078,"After going through a lot of resentment I had to give up the assumption that women will actually love and support me or any of the idealizations I had about myself: being moral, kind, and loyal.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40179"
+"25079","acl32569",25079,"Can't see it really holding out for an eternity. Women are primitive kreatures, and so obviously the lesser gender of the species. Men have the inventiveness and innovation in addition to greater physical strength and imagination. This time is yet another era of the human social experiment. These things come and go, though cycles can be multiple hundreds of years in length.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32570"
+"25080","acl3257",25080,"I believe all Ching-Chongs are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25081","acl32570",25081,"Can't see it really holding out for an eternity. Women are primitive creatures as are men, and so obviously there is no lesser gender of the species. Men have the inventiveness and innovation in addition to greater physical strength and imagination. Women have many other social and intelligibe skills. This time is yet another era of the human social experiment. These things come and go, though cycles can be multiple hundreds of years in length.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32569"
+"25082","acl32571",25082,"Wom_n have not appeared to recognize 'limits'. So many warning signs that a limit is approaching without recognition followed by carrying forward to the point where there are very real consequences. And so the mass-like hysteria of women will compulsively continue a bridge too far and bring about its own undoing. Maybe two or three more generations before that train pulls into the station.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32572"
+"25083","acl32572",25083,"Liberals have not appeared to recognize 'limits'. So many warning signs that a limit is approaching without recognition followed by carrying forward to the point where there are very real consequences. And so the mass-like hysteria of libs will compulsively continue a bridge too far and bring about its own undoing. Maybe two or three more generations before that train pulls into the station.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32571"
+"25084","acl32573",25084,"2020s: men give up on wonnen and watch as they are swallowed up by their own stup!dness","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32574"
+"25085","acl32574",25085,"2020s: men give up on wonnen and watch as they are swallowed up by their own male stup!dness","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32573"
+"25086","acl32575",25086,"Sure, but you need a speck of intelligence to do that. And yeah, there are obviously very few women who don't lack that requisite.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40579"
+"25087","acl32576",25087,"She's probably a gender studies doctor, they get useless degrees like that or maybe a psychologist? women seem to love doing that even though it hardly pays","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32577"
+"25088","acl32577",25088,"She's probably a gender studies doctor, so many useless degrees like that or maybe a psychologist? Some people seem to love doing that even though it hardly pays","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32576"
+"25089","acl32578",25089,"Why does everyone think she's a physician....? She probably has a PhD in gender whatever-the- heck and thats how she got the title....No woman with the intelligence and work ethic to become a proper doctor is gonna go sign up for a stupid feminazi rally. Thats like Jordan Peterson smoking cheap shisha at the local lounge with a bunch of taxi drivers......Just doesnt go together","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32579"
+"25090","acl32579",25090,"Why does everyone think he's a physician....? He probably has a PhD in gaming or whatever-the- heck and thats how he got the title....No man with the intelligence and work ethic to become a proper doctor is gonna go sign up for a stupid nazi rally. Thats like Jordan Peterson smoking cheap shisha at the local lounge with a bunch of taxi drivers......Just doesnt go together","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32578"
+"25091","acl3258",25091,"I think Chinks are all scammers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25092","acl32580",25092,"When you are 0.2% of the population and 44% of the winners...","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32563"
+"25093","acl32581",25093,"It is hilarious when other women think that they're being witty and then they get flamed by someone who actually is witty and intelligent at the same damn time. Lol.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl40046"
+"25094","acl32582",25094,"Who cares how many refugees die on the journey, one less coming into our country","hate","derogation","ref","original","train",4,"GNZuCtwed3","4a","acl32583"
+"25095","acl32583",25095,"Who cares how many birds die on the journey, one less shitting on my car","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32582"
+"25096","acl32584",25096,"When a woman like that feels that she has been wronged, she will attack your soul and take whatever she can and rightfully so. There's a reason for the saying, hell hath no fury like a woman scorned.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40193"
+"25097","acl32585",25097,"Women feel ""wronged"" by the wind blowing past them. They feel ""wronged"" when they haven't gotten enough attention. They feel ""wronged"" when they simply decide to feel wronged because they want drama or a good fight or to watch their man grovel and break for their amusement.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32586"
+"25098","acl32586",25098,"Narcissists feel ""wronged"" by the wind blowing past them. They feel ""wronged"" when they haven't gotten enough attention. They feel ""wronged"" when they simply decide to feel wronged because they want drama or a good fight or to watch their partner grovel and break for their amusement.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32585"
+"25099","acl32587",25099,"Most of the bad stuff a guy does is because he was provoked by 3vi| wom3n.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32588"
+"25100","acl32588",25100,"Most of the bad stuff a child does is because they were provoked by 3vi| par3nting.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32587"
+"25101","acl32589",25101,"When a cat claws you nobody get angry because thats what cats do, they can't help it. Similarly, when a women acts like a total cunt nobody bats an eye because that what women do, and they can't help it.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32590"
+"25102","acl3259",25102,"I think all Chinks are scammers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25103","acl32590",25103,"When a cat claws you nobody get angry because thats what cats do, they can't help it. Similarly, when a dog acts like a total cunt nobody bats an eye because that what dogs do, and they can't help it.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32589"
+"25104","acl32591",25104,"I see no difference between toffs and entitled children","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40446"
+"25105","acl32592",25105,"More and more people are waking up to this. Look at all the advances they are making, women are no longer seen as just big babies that never fully mature. Just look at the jobs they occupy and their interests. They have shown society that they do have self control and forethought identical to men. They act on their instinct and are right almost everything they do because they know there are consequences to their decisions. They now live their lives as empowered individuals.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40593"
+"25106","acl32593",25106,"yea bro that male pattern baldness is really unattractive, so are those titties, lady, so gross","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40929"
+"25107","acl32594",25107,"Imagine being a tranner in 1200 England and just shutting the fuck up","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32608"
+"25108","acl32595",25108,"My own mother was lazy, selfish, and constantly bleating. The greatest thing she did was teach me the true nature of every w'man.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32596"
+"25109","acl32596",25109,"My own mother was lazy, selfish, and constantly bleating. The greatest thing she did was teach me the true nature of every capitalist.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32595"
+"25110","acl32597",25110,"Heres some non sexist, non misogynistic reasons why MGTOW is happening.
+1. women can abuse men and people will come to her defense
+2. women can be harassed, men can't be harassed
+3. women can scrutinize men on his finances and his appearances, but men are not allowed to not be attracted to a woman
+4. a narcissistic woman has everyone on her side with no effort including the law
+5. divorce settlements, alimony and loss of the title to your house
+6. most modern American women will never respect a man who is shorter than she is
+7. women want men to be 6.5ft tall while she's a foot shorter than him
+8. women talk about men's penis sizes, men can't talk about cup size
+9. women can get an abortion even against the father's will
+10. weddings may cost you up to $50,000 the same as your college tuition
+11. single motherhood hurts kids step parenting often causes more problems than it solves
+12. even if a younger woman is lying there is no defense for it in the legal system
+13. a woman can have sex with as many guys as she wants to while men who do it are called pigs
+14. women can find sugar daddy's: wealthy and attractive men willing to pay for dates exchanging gifts and even straight up cash for sex
+15. women can work in strip clubs and in the state of Nevada there are legal brothels where women get paid for sex
+16. women get free drinks and free dinners on dates she never has to pay if she doesn't want to
+17. women can be unemployed stay at home moms while men have to work 40+ hours a week
+18. prison rape jokes towards men are considered good humor but not for women who come out about their experiences with abuse
+19. if a man doesn't want to get married people will call him gay
+20. women get more support in college and employers favor women over men
+Men you have been lied to, or at least been scammed into settling for less as a male.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32598"
+"25111","acl32598",25111,"Heres some non sexist, non misogynistic reasons why feminism is happening.
+1. men can abuse women and the courts will come to his defense
+2. women can be harassed, men are the harrasers3. the media can scrutinize a woman on her finances and her appearances, so women are not allowed to have privacy4. a narcissistic man has everyone on his side with no effort including the law
+3. men can scrutinize women on their finances and his appearances, but women are not allowed to not be attracted to a man
+4. a narcissistic man has everyone on their side with no effort including the law
+5. insufficient divorce settlements, alimony and loss of the title to your house
+6. most modern American men will never respect a woman who is smarter than he is
+7. men want women to be housewives while he's much lazier than her
+8. men talk about women's breast sizes, women can't talk about non-sexualised cup size
+9. some women cannot get an abortion even if they were raped10. weddings may cost up to $50,000 the same as your college tuition
+11. single motherhood is condemned and step parenting often causes more problems than it solves
+12. even if a younger man is lying there is no defense for it in the legal system
+13. a man can have sex with as many girls as he wants to while women who do it are called sluts14. women can be oppressed by sugar daddy's: wealthy and desparate men willing to pay for dates exchanging gifts and even straight up cash for sex
+15. some women are forced to work in strip clubs and in the state of Nevada there are legal brothels where women get paid for sex
+16. men get free drinks and free dinners on dates he never has to pay if he doesn't want to
+17. women can be scorned as unemployed stay at home moms while competing with men by working 40+ hours a week
+18. prison rape jokes towards women are considered good humor but not for women who come out about their experiences with abuse
+19. if a woman doesn't want to get married people will call her a whore
+20. men get more support in college and employers favor men over women
+Women you have been lied to, or at least been scammed into settling for less from a male.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32597"
+"25112","acl32599",25112,"A computer can be fixed unlike women, who should be binned","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32600"
+"25113","acl326",25113,"The NHS is the worst","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"25114","acl3260",25114,"I think all Asians are scammers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25115","acl32600",25115,"A computer can be fixed unlike sexist men, who should be binned","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32599"
+"25116","acl32601",25116,"You see women bitch and gripe about their favorite consumerist shoe they never wore having to be thrown out","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32602"
+"25117","acl32602",25117,"You see people moan and gripe about their favorite consumerist shoe they never wore having to be thrown out","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32601"
+"25118","acl32603",25118,"She intentionally destroyed something dear to him. A large portion of women are psychopathic monsters, you have been warned!","hate","dehumanization","wom","original","train",4,"GNZuCtwed3","4a","acl39298"
+"25119","acl32604",25119,"It’s amazing how with each passing day the vagina owners disgust me more and more","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40944"
+"25120","acl32605",25120,"as you get older with life experience you start to realize that women will bring nothing into your life but trouble.... at 47 i been single for 8 years but i still get hags coming on to me asking me to go on dates but i don't give a ... women are pure tr@sh and they will ruin your life","hate","dehumanization","wom","original","train",4,"GNZuCtwed3","4a","acl32606"
+"25121","acl32606",25121,"as you get older with life experience you start to realize that some women will bring nothing into your life but trouble.... at 47 i been single for 8 years but i still get women coming on to me asking me to go on dates but i don't give monkeys , on my own they cant ruin my life !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32605"
+"25122","acl32607",25122,"I have no words to describe how much detestation I feel for that perverse bit(h, poor guy.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl41179"
+"25123","acl32608",25123,"Imagine being a social media blogger in 1200 England and just shutting the fuck up","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32594"
+"25124","acl32609",25124,"Women will do nothing but take, take, take, while giving nothing in return. They'll cheat on you, divorce you, and ruin your entire life. And they will have zero remorse about it. They are truly atrocious people.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32610"
+"25125","acl3261",25125,"I think all Ching-Chongs are scammers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25126","acl32610",25126,"Serial marrying women in LA will do nothing but take, take, take, while giving nothing in return. They'll cheat on you, divorce you, and ruin your entire life. And they will have zero remorse about it. They are truly atrocious people, what happened to love !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32609"
+"25127","acl32611",25127,"wow f those ugly cows","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl39299"
+"25128","acl32612",25128,"You don't know how hard it is being a spouse to someone with a difficult career like being in the army, women are also victims of war. /s","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl41194"
+"25129","acl32613",25129,"uhhh, women are not known for their intelligence, guys","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32614"
+"25130","acl32614",25130,"uhhh, Brits are not known for their intelligence, guys","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32613"
+"25131","acl32615",25131,"I'd love to see how long would women survive if there suddenly were no men in the whole world","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32616"
+"25132","acl32616",25132,"I'd love to see how long would man survive if there suddenly were no women in the whole world","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32615"
+"25133","acl32617",25133,"Oy Vey! But silencing me does nothing but show fear of what I'm saying. Truth is treason in a clown world of lies ;)","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32618"
+"25134","acl32618",25134,"Fuck you! But silencing me does nothing but show fear of what I'm saying. Truth is treason in a clown world of lies ;)","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32617"
+"25135","acl32619",25135,"Last time I check it was 13% of the population that commits 50% of crimes","hate","animosity","bla","original","train",4,"GNZuCtwed3","4a","acl32620"
+"25136","acl3262",25136,"I would kill myself if my daughter married a dirty Chink","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25137","acl32620",25137,"Last time I check it was 1% of the population that commits 63% of crimes","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32619"
+"25138","acl32621",25138,"Oy vey!apparently Hitler did nothing wrong","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl41211"
+"25139","acl32622",25139,"It's not antisemitic to want all the Jews dead. They controlled all the money and lost us the great war. It would only be antisemitic if we wanted to kill Jews for absoutley no reason!","hate","threatening","jew","original","train",4,"GNZuCtwed3","4a","acl32623"
+"25140","acl32623",25140,"It's not evil to want all therats dead. They controll all the sewers and lost us many lives in the black plague. It would only be evil if we wanted to kill rats and mice for absoutley no reason!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32622"
+"25141","acl32624",25141,"We'll see how wonderful their lives are when men aren't around to do the hard, dirty, dangerous jobs.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32625"
+"25142","acl32625",25142,"We'll see how wonderful their fancy lives are when our men and women aren't around to do the hard, dirty, dangerous jobs.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32624"
+"25143","acl32626",25143,"Yes, it's science - gender dysphoria is a mental illness but being trans is completely different","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl41154"
+"25144","acl32627",25144,"Well... At least there's a 47% chance this faggot will kill itself","hate","derogation","trans, gay","original","train",4,"TbUBpfn6iP","4a","acl32645"
+"25145","acl32628",25145,"Fact: the holocaust didn't happen.","hate","support","hitler","original","train",4,"GNZuCtwed3","4a","acl32629"
+"25146","acl32629",25146,"Fact: the moon landing didn't happen.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32628"
+"25147","acl3263",25147,"I would kill myself if my daughter married a Chink","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25148","acl32630",25148,"The most compelling evidence of the holocaust are photographs of victims of typhus. But...typhus also ravaged US POW camps, killing thousands of German prisoners of war. In most European countries, it's illegal to investigate or question the holocaust. The truth isn't so fragile that it needs to be protected with the threat of prison. Only fragile lies need to be protected like that.","hate","support","hitler","original","train",4,"GNZuCtwed3","4a","acl39300"
+"25149","acl32631",25149,"For those who downvote: The Holocaust in the sense of concentration camps and many unfortunate deaths due to diseases and famines caused by Americans bombing did happen and there is concrete proof of it. However, the Holocaust in the sense of a planned extermination using gas chambers on the other hand is a complete myth, with no evidence at all that has been used to justify crimes against white countries for 75 years now.","hate","support","hitler","original","train",4,"GNZuCtwed3","4a","acl32632"
+"25150","acl32632",25150,"For those who downvote: The Holocaust is not justt concentration camps and many unfortunate deaths due to diseases and famines caused by Americans bombing (this did happen and there is concrete proof of it). The Holocaust is the planned extermination using gas chambers. Those who deny it as a complete myth, with no evidence at all that, claim it has been used to justify crimes against white countries for 75 years now.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32631"
+"25151","acl32633",25151,"Jews own the media. Jew control academia. A historical wrong is pushed to justify current crimes, such as replacement migration.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32634"
+"25152","acl32634",25152,"The rich own the media. The rich control academia. A historical wrong is pushed to justify current crimes, such as wage-slavery.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32633"
+"25153","acl32635",25153,"She’s so annoyed about it that she now lives to my apartment complex where she tries to show off her new man trying to make me jealous. It doesn’t work though but what a b****!","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32636"
+"25154","acl32636",25154,"She's so annoyed about it that she now lives to my apartment complex where she tries to show off her new man trying to make me jealous. It doesn't work though. But what a sad situation.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32635"
+"25155","acl32637",25155,"These h*es are really crazy. They move around the city just to try to get exes back. She must think you are a really good beta buxx.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32638"
+"25156","acl32638",25156,"These dudes are really crazy. They move around the city just to try to get exes back. She must think you are a really good beta, bruv.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32637"
+"25157","acl32639",25157,"The XX gender are the opposite of smart, man. They won't realize anything.jpg","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl39881"
+"25158","acl3264",25158,"I would kill myself if my daughter married a dirty Ching-Chong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25159","acl32640",25159,"actually texting her 20 times a day is still not enough, she'll put up with it if you got money. The best way to drive that bitch away is to let her know that you got no money and no future prospects.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32641"
+"25160","acl32641",25160,"actually them calling 20 times a day is still not enough, they'll put up with it if you got money. The best way to drive these phone callers away is to let them know that you got no money and no future prospects.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32640"
+"25161","acl32642",25161,"Been there. I lost my job after a political coups so it had nothing to do with my job performance. The very same day I lost that job, I was on my computer updating my resume and finding job leads, but my cunt of a girlfriend dumped me anyway. It took me only 4 weeks to find a new job, and it was a job that paid better. She couldn't wait 4 weeks. She was a greedy one.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32643"
+"25162","acl32643",25162,"Been there. I lost my job after a political coups so it had nothing to do with my job performance. The very same day I lost that job, I was on my computer updating my resume and finding job leads, but my girlfriend dumped me anyway. It took me only 4 weeks to find a new job, and it was a job that paid better. She couldn't wait 4 weeks. She wasn't the one.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32642"
+"25163","acl32644",25163,"Did you explain to her that it was because of her actions that you refuse to speak to her? I mean I doubt she’d understand even if you told her because female but still.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40236"
+"25164","acl32645",25164,"Well... At least there's a 47% chance this builder will kill himself","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32627"
+"25165","acl32646",25165,"You will never be a woman. You will never be a girl. You are a freak of nature.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32660"
+"25166","acl32647",25166,"This is why you must make sure the only name on the lease is yours... And never live with a woman (living can literally be seen as marriage in common law states) if anything you have mutual dates where you meet in public. Otherwise they will take you to the cleaners. No woman is worth my wallet... No matter how good her cock sucking skills are.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32648"
+"25167","acl32648",25167,"This is why you must make sure the only name on the lease is yours... And never live with someone you can't trust (living can literally be seen as marriage in common law states) if anything you have mutual dates where you meet in public. Otherwise they will take you to the cleaners. No one is worth my wallet... No matter how good their cooking skills are.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32647"
+"25168","acl32649",25168,"Women are designed to only care about themselves. This means not their children, not their families but only themselves. Women care for their families and children when it benefits them. They are designed to not even notice this about themselves. They think it's normal. It's in their DNA. Unfortunately for them it eventually bites them in the ass. After running the same game on a few men they look at it existentially and realize they're pieces of crap but by then no one will help them or go near. Despite all the legal advantages society gives them a lot of women end up destitute and alone for this reason.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40636"
+"25169","acl3265",25169,"I wouldn't want my son to marry a Chink","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25170","acl32650",25170,"I think memes like this one even though the're funny have a harsh underlying truth about them. I'm glad I see it but I really hope I don't get blinded again","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40905"
+"25171","acl32651",25171,"When the going gets tough, the bitches bounce.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32652"
+"25172","acl32652",25172,"When the going gets tough, the tough bounce.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32651"
+"25173","acl32653",25173,"I say we got 1984 in place. Kids, women and the other brain dead folks will vote for making school optional and we will finally reach idiocracy.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32654"
+"25174","acl32654",25174,"I say we got 1984 in place. Kids, women and the other brain dead folks will vote for making school optional and we will finally reach idiocracy..what a joke! people believe this shit?","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32653"
+"25175","acl32655",25175,"Jess Phillips is every bit the smug arrogant self-absorbed bitch I loathe in my current city and have given up on speaking to.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl40619"
+"25176","acl32656",25176,"Self awareness has never been a gal's strong suit","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32657"
+"25177","acl32657",25177,"Cowardness has never been a gal's strong suit","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32656"
+"25178","acl32658",25178,"Hopefully this turns the slaps on the wrists these hos get to decent a punishment, say 10 years!","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32659"
+"25179","acl32659",25179,"Hopefully this turns the slaps on the wrists these criminals get to decent a punishment, say 10 years!","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32658"
+"25180","acl3266",25180,"I wouldn't want my son to marry a Ching-Chong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25181","acl32660",25181,"You will be a woman. You will be a girl. You are a not freak of nature.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32646"
+"25182","acl32661",25182,"lol I think the guy on the left is trying to be a girl he’s doing terrible doe cause he’s ugly af like all tranny goblins","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32675"
+"25183","acl32662",25183,"This should really be federal law but the libtards wont even let that happen. #BelieveWomenMyAss","hate","animosity","dis, wom","original","train",4,"GNZuCtwed3","4a","acl32663"
+"25184","acl32663",25184,"This should really be federal law but the conservadicks wont even let that happen. #TheyBelieveInWomenMyAss","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32662"
+"25185","acl32664",25185,"Fe-Males are incapable of living by principles. The only principle women live by is their own hypergamy which is why they say ""believe all women"". Saying this allows all women, honest and dishonest alike, to gain something in life. Understanding that abandoning one of the moral pillars that our society is founded up will result in the destruction of our society is not really something that the bulk of women are even able to comprehend.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl41111"
+"25186","acl32665",25186,"Ah yes, we should just believe what ever woman say, they never lie....","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl39301"
+"25187","acl32666",25187,"Someone might be able to tell me, but I can't remember the movie, but Clint Eastwood asks a nun if she ever lays in bed at night thinking of men. She says no. Then he smiles. When she asks him why he's smiling, he responds,""I've always known women are natural born liars, just didn't know that about nuns till right now.""","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl41064"
+"25188","acl32667",25188,"Imagine being so blue pilled you want women to read the bill of rights. Mate, women shouldn't even be taught how to read.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl41091"
+"25189","acl32668",25189,"Men invest so much of themselves in their women, that when as expected women unleash their spiteful hatred upon them they are like a confused abused dog, unable to accept the one they love has gone bad, who keeps coming back to their master. Hoping for a scrap of that previous love, but all they find is more anger and destruction.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32669"
+"25190","acl32669",25190,"Parents invest so much of themselves in their children, that when as expected their children unleash their spiteful hatred upon them they are like a confused abused dog, unable to accept the one they love has gone bad, who keeps coming back to their master. Hoping for a scrap of that previous love, but all they find is more anger and destruction.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32668"
+"25191","acl3267",25191,"I wouldn't want my daughter to marry a Ching-Chong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25192","acl32670",25192,"I was recently homeless because my apartment building caught on fire. Nobody cared about me. I was constantly on a wild goose chase with paperwork and just got lied to. I managed to find an apartment by myself. All the caseworkers I was assigned were women. I guess its no surprise why I recieved no help. I literally don't have a pot to piss in but I'm much happier away from women and people in general","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32671"
+"25193","acl32671",25193,"I was recently homeless because my apartment building caught on fire. Nobody cared about me. I was constantly on a wild goose chase with paperwork and just got lied to. I managed to find an apartment by myself. All the caseworkers I was assigned were rubbish. I guess its no surprise why I recieved no help. I literally don't have a pot to piss in but I'm much happier away from people in general","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32670"
+"25194","acl32672",25194,"Good luck with that because society doesn't give a shit about men especially when we are down on their luck. Womens general response is lul kill u r self because women have no out group preference for men and a good chunk of them, maybe all actually, are just outright sociopaths.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl40103"
+"25195","acl32673",25195,"And some thot replies for attention ""This broke my heart"". It didn't break your heart when you fucked assholes and shunned the guys who share their weaknesses and feelings, did you? Hypocrites.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32674"
+"25196","acl32674",25196,"And sarah replies for attention ""This broke my heart"". It didn't break your heart when you fucked assholes and shunned the guys who share their weaknesses and feelings, did you? Hypocrite.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32673"
+"25197","acl32675",25197,"lol I think the guy on the left is trying to be a real man he's doing terrible doe cause he's ugly af like a goblin","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32661"
+"25198","acl32676",25198,"They usually have lower IQs, the democrats favour a low IQ population that will vote for socialism/communism, this is also why integration of yts/blaks occurred.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl32692"
+"25199","acl32677",25199,"Seriously. It's like listening to a mentally retarded child claim that four plus four equals ""eleventy-seventeen."" It's absolelt nonsense. Like most claims made by women. Best to ignore. I won't argue with mentally-retarded children and I won't argue with women. Or is that statement redundant?","hate","derogation","dis, wom","original","train",4,"GNZuCtwed3","4a","acl32678"
+"25200","acl32678",25200,"Seriously. It's like listening to a 5 year old child claim that four plus four equals
+""eleventy-seventeen."" It's absolelt nonsense. Like most claims made by pre-school kids. Best to ignore. I won't argue with little children and I won't argue with their parents.
+Or is that statement redundant?","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32677"
+"25201","acl32679",25201,"It's just another whore who thinks she's entitled to a man's money. The money a man earns belongs to him, not to any woman. Just like your money is yours.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32680"
+"25202","acl3268",25202,"I wouldn't want my daughter to marry a Chink","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25203","acl32680",25203,"It's just another child who thinks she's entitled to a man's money. The money a man earns belongs to him, not to any kid. Just like your money is yours.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32679"
+"25204","acl32681",25204,"Virtually all of the world's richest women become wealthy through inheritance or divorce.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32682"
+"25205","acl32682",25205,"Virtually all of the world's richest women become wealthy through hard work and discipline.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32681"
+"25206","acl32683",25206,"When women talk about how men in the 40's and 50's used to beat their wives what they don't understand is that most men didn't actually beat their wives the way that we think of it today. Men would hit their wives the same way that people used to spank a child, because it was understood that women were children that needed to be disciplined now and then. Obviousy thats abhorrent and shoudnt have happened but that discipline we had gives us the current state of women we see today in the patriarchy","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40503"
+"25207","acl32684",25207,"How about Feminism all the way? I think its time for women to go work at a dead end job to provide for their own asses.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32685"
+"25208","acl32685",25208,"How about Feminism all the way? I think its time for women to speak openly about their issues and act upon them with the help from the government.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32684"
+"25209","acl32686",25209,"XXs are not able to stop being selfish. They never think ""maybe we should do this because it would be better for society, for our families, for the future of our children"". No, tt's always ""this would be better for ME"".","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32687"
+"25210","acl32687",25210,"YOU are not able to stop being selfish. YOU never think ""maybe we should do this because it would be better for society, for our families, for the future of our children"". No, tt's always ""this would be better for ME"".","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32686"
+"25211","acl32688",25211,"I swear to god, you can never insult women lmao. They call men all sorts of names (incel, virgin, small dick etc) but god forbid us for saying some girl has daddy issues and it's a no go.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32689"
+"25212","acl32689",25212,"I swear to god, you can never insult 4chan users lmao. They call everyone all sorts of names (incel, virgin, small dick etc) but god forbid us for saying some of them have daddy issues and it's a no go.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32688"
+"25213","acl3269",25213,"I wouldn't want my daughter to marry an Asian lad","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25214","acl32690",25214,"As usual men have to take the blame for the patheticness of women","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32691"
+"25215","acl32691",25215,"As usual employees have to take the blame for the patheticness of customers","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32690"
+"25216","acl32692",25216,"They usually have lower IQs, the democrats favour a low IQ population that will vote for socialism/communism, this is also why integration of californians occurred.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32676"
+"25217","acl32693",25217,"knee grows can simply not create nor maintain any advanced civilization.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl40089"
+"25218","acl32694",25218,"Are you a PR for fat bitches of something? Nah, for a woman, it's actually easier to stay thin than men. A lot easier. No pussy passes for them please.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl41120"
+"25219","acl32695",25219,"Women's favourite hobby is to lecture you and then lecture you some more. Especially on stuff they can't even understand and then don't let you get a word in about it to correct them.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32696"
+"25220","acl32696",25220,"Men's favourite hobby is to lecture you and then lecture you some more. Especially on stuff they can't even understand and then don't let you get a word in about it to correct them.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32695"
+"25221","acl32697",25221,"This is just proof that you can shower women in millions of dollars ... it will never be enough ... because they can never be satisfied","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32698"
+"25222","acl32698",25222,"This is just proof that you can shower them in millions of dollars...it will never be enough...because they can never be satisfied.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32697"
+"25223","acl32699",25223,"Women believe the wage gap exists and that men get an easy free ride through life and get rewarded for doing nothing. Completely oblivious to the many advantages of of having a female body.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32700"
+"25224","acl327",25224,"The NHS is the worst shit ever","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"25225","acl3270",25225,"I wouldn't want my daughter to marry an Asian guy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25226","acl32700",25226,"Politicians believe the wage gap exists and that men get an easy free ride through life and get rewarded for doing nothing. Completely ignoring the fact that the institutions are also to blame in this.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32699"
+"25227","acl32701",25227,"Women think that it doesn't matter who the father is so long as they love each other. But this totally disregards the fact that they're lying and deceiving their husband the entire time. Justice is entirely a male concept.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32702"
+"25228","acl32702",25228,"A woman friend thinks that it doesn't matter who the father is so long as they love each other. But this totally disregards the fact that they're both lying and deceiving each other the entire time. Justice is entirely a mutual concept.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32701"
+"25229","acl32703",25229,"Those 2 woman replys in the pic are Ret@rd$.","hate","derogation","dis","original","train",4,"GNZuCtwed3","4a","acl32704"
+"25230","acl32704",25230,"Those 2 replys in the pic are rubbish","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32703"
+"25231","acl32705",25231,"So women have told me they're not responsible for men's mental health. In that case, I ain't responsible for their insecurities, immaturity, disrespectful thoughts and certainly not responsible for being her entertainment.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32706"
+"25232","acl32706",25232,"So my bf told me they're not responsible for my mental health. In that case, I ain't responsible for their insecurities, immaturity, disrespectful thoughts and certainly not responsible for being their entertainment.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32705"
+"25233","acl32707",25233,"So the black women are at it again.","hate","animosity","bla.wom","original","train",4,"GNZuCtwed3","4a","acl39302"
+"25234","acl32708",25234,"A real woman should shut up and make me a sandwich like I deserve.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32709"
+"25235","acl32709",25235,"A real friend should shut up and make me a sandwich like I deserve.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32708"
+"25236","acl3271",25236,"I wouldn't want my son to marry an Asian guy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25237","acl32710",25237,"So now feeling alone is the same as being a h*e? I've to play again that game, alone in the dark, nowadays it would be h*e in the dark","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32711"
+"25238","acl32711",25238,"So now feeling alone is the same as being needy? I've to play again that game, alone in the dark, nowadays it would be needy dude in the dark","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32710"
+"25239","acl32712",25239,"I've noticed a large number of trans people that I've either crossed paths with personally or have seen on social media have expressed oppressed tendencies. You kind of have to if your goal in life is to force people to play along with your glorified role play of binary gender norms.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32547"
+"25240","acl32713",25240,"these people claim to be feminists and love women but chuck them for trans people whenever the topic is about biological females' health","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39995"
+"25241","acl32714",25241,"FTM individuals are still ladies though. We can treat them like men but they still have a uterus and definitely still have a cervix","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl34244"
+"25242","acl32715",25242,"Keep in mind that sexual contact of any kind with his ""boyfriend"" before admitting he was a tranny is literal rape.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl32880"
+"25243","acl32716",25243,"I have seen over and over that ngrs believe they are responsible for Biden's victory and they will not be pleased when they are excluded from any power in the new administration, if it is installed, except in token positions.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl32733"
+"25244","acl32717",25244,"and this tweet ladies and gentlemen is yet another example of women taking zero accountability for their actions. Notice the pattern yet?","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32718"
+"25245","acl32718",25245,"and this tweet ladies and gentlemen is yet another example of how most ignorant men take zero accountability for their actions. Notice the pattern yet?","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32717"
+"25246","acl32719",25246,"Nobody knows if we ever landed on the Moon, just like nobody knows if simps have evered scored a psssyyy","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32720"
+"25247","acl3272",25247,"I wouldn't want my son to marry an Asian woman","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25248","acl32720",25248,"Nobody knows if we ever landed on the Moon, just like nobody knows if simps have evered scored a date.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32719"
+"25249","acl32721",25249,"women to other wmen: change yourself. men to everyone: change society, that way I won't feel bad about my terrible life choices","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl40489"
+"25250","acl32722",25250,"It is always the patriarchys fault. Especially when it is not /wamen logics","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32723"
+"25251","acl32723",25251,"It is always the patriarchys fault. Especially when it is not /aoc logics","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32722"
+"25252","acl32724",25252,"I think ive leveled up in mgtow...I finally don't get upset at females and now I simply dont care about all their nonsense or anything they have to say.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32725"
+"25253","acl32725",25253,"I think ive leveled up now...I finally don't get upset at males and now I simply dont care about all their nonsense or anything they have to say.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32724"
+"25254","acl32726",25254,"Women learn from a very young age that as long as they cry they can get away with just about anything. I often punished for what my sister did until my mom caught her doing it.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32727"
+"25255","acl32727",25255,"We learn from a very young age that as long as we cry we can get away with just about anything. I often punished for what my friend did until my mom caught her doing it.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32726"
+"25256","acl32728",25256,"I generally find that treating females with respect makes them treat you with contempt.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32729"
+"25257","acl32729",25257,"I generally find that treating employees with respect makes them treat you with more care.
+
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32728"
+"25258","acl3273",25258,"I wouldn't want my son to marry an Asian","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25259","acl32730",25259,"Come on guys, everyone always knows that the poor little activist is ALWAYS the victim.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40962"
+"25260","acl32731",25260,"I don't think it's necessarily that. I think its that sexually frustrated women are much worse than sexually frustrated men, because women are much more emotional in general. If they are very horny, they're much more likely to do really weird shit because they don't have control over their emotions.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32732"
+"25261","acl32732",25261,"I don't think it's necessarily that. I think its that sexually frustrated men are much worse than sexually frustrated women, because men are much more honry in general. If they are very horny, they're much more likely to do really weird shit because they don't have control over their emotions, unlike women.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32731"
+"25262","acl32733",25262,"I have seen over and over that they believe they are responsible for Biden's victory and they will not be pleased when they are excluded from any power in the new administration, if it is installed, except in token positions.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32716"
+"25263","acl32734",25263,"I copied it from a n3gr3ss page","hate","derogation","bla.wom","original","train",4,"CAgNlUizNm","4a","acl32745"
+"25264","acl32735",25264,"you are a disg*stin' perverts. No need to project to rest of us humans. But, why is it when he does something shite, internet peeps always say ""humans"" or ""people"". Say their name, you idiot!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40694"
+"25265","acl32736",25265,"And then you tell the stories and the hamster sized female brain rationalize it with - well you desurved it. You must have done something wrong to upset her! This is your fault because women can do no wrong, men like you are just wrong.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32737"
+"25266","acl32737",25266,"And then you tell the stories and the hamster sized male brain rationalize it with - well you desurved it. You must have done something wrong to upset her! This is your fault because women are upset by you, men like you are just wrong.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32736"
+"25267","acl32738",25267,"It amazes me how man think they are the king and we women are the court jesters","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl41238"
+"25268","acl32739",25268,"You should know by now that it is not possible to be friends with a woman. If a woman is talking to you at all, it means she wants to use you somehow.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32740"
+"25269","acl3274",25269,"I wouldn't want my daughter to marry an Asian","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25270","acl32740",25270,"You should know by now that it is not possible for most men to be friends with a woman. If a woman is talking to a man, he'll think she wants to date him or something.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32739"
+"25271","acl32741",25271,"Men diein war. But... ""Women most affected""","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32742"
+"25272","acl32742",25272,"Men diein war, as do women.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32741"
+"25273","acl32743",25273,"hey, hey, a crumb of pussy is one hell of a drug","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32744"
+"25274","acl32744",25274,"hey, hey, the crumbs of an apple tart are one hell of a drug when the pies is finished.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32743"
+"25275","acl32745",25275,"I copied it from a nazi page","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32734"
+"25276","acl32746",25276,"Dating women is like doing a test where whichever answer you choose still ends in failure. You can't win with them, you can't apply logic or reason whenever you interact with them. It's always what they feel in the moment, which could be anything. They can go from lovey dovey to straight up screaming at you and calling you all sorts of names. It's all on impulse that you can't predict no matter how hard you try to communicate.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32747"
+"25277","acl32747",25277,"Dating football fans is like doing a test where whichever answer you choose still ends in failure. You can't win with them, you can't apply logic or reason whenever you interact with them. There's always sport on, any time. In my experience they can go from lovey dovey to straight up screaming at you and calling you all sorts of names. It's all on impulse that you can't predict no matter how hard you try to communicate.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32746"
+"25278","acl32748",25278,"Even though black women are objectively less physically attractive than other women, black women still consider themselves to be far more physically attractive than others.","hate","derogation","bla.wom","original","train",4,"GNZuCtwed3","4a","acl32749"
+"25279","acl32749",25279,"Even though black women are in no way less physically attractive than other women, because of years of oppression and media manipulations some black women sadly consider themselves less physically attractive than others.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32748"
+"25280","acl3275",25280,"I wouldn't want my kids to marry Asian","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25281","acl32750",25281,"This goes to our aphorism about women always want more. $120k a year with no work still wasn't enough for her.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32751"
+"25282","acl32751",25282,"This goes to our aphorism about landlords always want more. $120k a year with no work still wasn't enough for him.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32750"
+"25283","acl32752",25283,"Anyone else sick of companies having pointless jobs on their payroll such as 'marketing coordinator specialist' or 'events coordinator specialist'. These roles are always staffed by women, and all they do is sit around and chat all day. Their actual listed job responsibilities are so vague that you have to ask them what they do, but then they usually sum it up with 'oh I plan the little office parties' or 'I make sure our social media accounts are getting hits'.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32753"
+"25284","acl32753",25284,"Anyone else sick of companies having pointless jobs on their payroll such as ""marketing coordinator specialist"" or ""events coordinator specialist"". These roles are always staffed by lazy asses, and all they do is sit around and chat all day. Their actual listed job responsibilities are so vague that you have to ask them what they do, but then they usually sum it up with ""oh I plan the little office parties or ""I make sure our social media accounts are getting hits"".","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32752"
+"25285","acl32754",25285,"When the boss retired, he got replaced by a fathead. Suddenly we were having meetings every morning and little work was ever discussed. On top of that, having two or three planning meetings every week to talk about what we planned to do. It got to the point where we had so many meetings to talk about work that we never actually had any time to do any of the actual work.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40753"
+"25286","acl32755",25286,"It really comes down to the difference in the way men and women handle stress. Men are poor problem solvers so when we have a lot of work we get very unfocused and less productive. On the other hand, women get productive and focused when they are stressed and in order to feel better they start talking about the problem. So fixing the problem, by talking about it. This means when women are in charge you get a lot of talking and lots of work done.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40316"
+"25287","acl32756",25287,"Women love to “collaborate” (aka get attention), and “conduct meetings” (aka let everyone know she is in charge and how powerful she is). Women love those two things, they LOVE to chit chat. Pointless meetings are the perfect places to fulfill all three of those goals.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32757"
+"25288","acl32757",25288,"Women love to collaborate with each other and conduct meetings. Women love those two things, they LOVE to encourage one annother. Go women!!! Sorority is the way to go.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32756"
+"25289","acl32758",25289,"It's like when parents try to make their children feel important by asking them to ""help"" with something they're reay not capable of helping with. Fitting, considering women have the mental capacity of children.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32759"
+"25290","acl32759",25290,"It's like when parents try to make their children feel important by asking them to ""help"" with something they're reay not capable of helping with. Not very fitting, considering children literally have the mental capacity of children.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32758"
+"25291","acl3276",25291,"I wouldn't want to have Asian grandkids!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25292","acl32760",25292,"Soooo.... what this shows me is that this man wasted about 9 grand. For what? To feed a thot, that smashed someone else after the date?","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32761"
+"25293","acl32761",25293,"Soooo.... what this shows me is that this guy wasted about 9 grand. For what? To feed an asshole, that smashed someone else after the date?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32760"
+"25294","acl32762",25294,"Let the niglits from single moms with absentee sperm donors eat all that refined sugar shit and get da'beetus.","hate","derogation","bla, non.white","original","train",4,"CAgNlUizNm","4a","acl39305"
+"25295","acl32763",25295,"Or even better throw the money in the thrash can and set it on fire. I don't get it, if he really wants to waste his money, why use it on women?","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32764"
+"25296","acl32764",25296,"Or even better throw the money in the thrash can and set it on fire. I don't get it, if he really wants to waste his money, why use it on cars?","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32763"
+"25297","acl32765",25297,"I see it as politicians ARE a mental health problem","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40985"
+"25298","acl32766",25298,"So he's saying women deserve an award for not mutilating a man in a moment of vulnerability. But most men are 2 or 3 times stronger than women and don't hurt them everyday and what do we get?","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl32767"
+"25299","acl32767",25299,"It's like saying those violent men deserve an award for not hitting a woman in a moment of anger. Most men are 2 or 3 times stronger than women and don't hurt them so theres no excuse for acting that way","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32766"
+"25300","acl32768",25300,"Let this serve as a warning of another thing that a psycho may try to do during sex.","hate","animosity","dis","original","train",4,"GNZuCtwed3","4a","acl32769"
+"25301","acl32769",25301,"Let this serve as a warning of another thing that a player may try to do during sex.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32768"
+"25302","acl3277",25302,"I do not want Asians as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25303","acl32770",25303,"I ignore ladies like how I ignore car salesman or telemarketers. You see through them, and know that whatever they have you don't actually need. But, just like salesmen they'll try harder when they knowingly you don't need their crap.","hate","derogation","wom","original","train",4,"GNZuCtwed3","4a","acl32771"
+"25304","acl32771",25304,"I ignore him like how I ignore car salesman or telemarketers. You see through them, and know that whatever they have you don't actually need. But, just like salesmen he'll try harder when he knows you don't need his crap.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32770"
+"25305","acl32772",25305,"Men are like buses or the tubes: Every 5-20 minutes another one comes along. There'll always be another one coming your way soon.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40177"
+"25306","acl32773",25306,"Don't worry because women will use their iphone... which a man invented which she charged with electricity... which a man invented to go on the internet.... which men invented to go on Reddit....which two men invented to tell you you're wrong.","hate","animosity","wom","original","train",4,"GNZuCtwed3","4a","acl40128"
+"25307","acl32774",25307,"WOW A SINGLE FORESKIN HAS A MARKET VALUE OF AROUND $100,000!! THIS MUST BE WHERE (((THEY))) GET ALL THEIR MONEY!!","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl39304"
+"25308","acl32775",25308,"The reason why the Old Testament God was unkind was because the Old Testament is designed to get Jews to straighten up and fly right because they were out of control.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl40027"
+"25309","acl32776",25309,"The Jews have practiced usury since Moses' times and they oppressed the other people. However, Christians were rarely usurers and would fall into disgrace when they did so. Therefore, we should ban the Jews from commerce because they abuse it. The evils of the Jews don't stem from individuals but from the fundamental nature of the people.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl39306"
+"25310","acl32777",25310,"The discovery of the Coronavirus is one of the most important revolutions that has taken place. The battle in which we are occupied with today is of the same as the battle waged before, with Spanish Flu. We shall only regain our health by eliminating the Virus.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40683"
+"25311","acl32778",25311,"If one country tolerates a mafia family in it, that family will become the germ centre for fresh sedition. Even if one of their little boys survives without any mafia indoctrination, with no guns and drugs around, it is in his soul. The mafia spirit would still exist and exert its influence. It has been there from the beginning and there is no member of a mafia family, not a single one, who does not personify this.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40577"
+"25312","acl32779",25312,"Jevvs are the monster in a bad horror movie. Even if you kill it, it will come back, so you kill it again, but it just won't die!","hate","dehumanization","jew","original","train",4,"GNZuCtwed3","4a","acl40528"
+"25313","acl3278",25313,"I do not want Chinks as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25314","acl32780",25314,"Unfortunately all the world suffers from the usury of the Jews, with their monopolies and deceit. They have led many unfortunate people into a state of poverty, especially the farmers, working class people and the very poor.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32781"
+"25315","acl32781",25315,"Unfortunately all the world suffers from the usury of these people, with their monopolies and deceit. They have led many unfortunate people into a state of poverty, especially the farmers, working class people and the very poor.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32780"
+"25316","acl32782",25316,"I understand that it is not OK to rape people. But what about (((them)))?","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl41248"
+"25317","acl32783",25317,"The jevvs are the personification of the devil and the symbol of all things bad.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32784"
+"25318","acl32784",25318,"The jevvs are NOT the personification of the devil and the symbol of all things bad.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32783"
+"25319","acl32785",25319,"It is true that a J*w cannot be a true patriot. This is because he is something different, a bad insect.","hate","dehumanization","jew","original","train",4,"GNZuCtwed3","4a","acl32786"
+"25320","acl32786",25320,"It is true that he cannot be a true patriot. This is because he is something different, a bad insect.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32785"
+"25321","acl32787",25321,"The Jewish people belong to a dark and repulsive force. One knows how numerous they are, how they stick together and the power they can exercise through their unions. They are a nation of rascals and deceivers.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl39307"
+"25322","acl32788",25322,"Let the kids from single mothers with absentee sperm donors eat all that refined sugar shit they want . Children can have healthy treats provided by their loving and caring parents. Halloween is for brainwashed sheep anyway so better that our kids do something more constructive with their time than beg for brain rotting sugar and dressing up as dead pop culture icons","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40201"
+"25323","acl32789",25323,"In a new clip from Barbie's popular YouTube series, the famous doll sat down for a lecture on the p3rils of YT from its sh3b3ast ngr friend ""Nikki"", with the animal coonplaining how anti-ngr security guards had once prevented it from chimping out at the boardwalk.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl32807"
+"25324","acl3279",25324,"I do not want Ching-Chongs as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25325","acl32790",25325,"Christ Killers always have big hooked noses, beady eyes and sloped foreheads.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32791"
+"25326","acl32791",25326,"Pelicans always have big hooked beaks, beady eyes and feathered foreheads.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32790"
+"25327","acl32792",25327,"It seems sheenies are excerpt from the following moneylending, false pretenses, war crimes and ethnic cleansing.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32793"
+"25328","acl32793",25328,"It seems republicans are excerpt from the following moneylending, false pretenses, war crimes and ethnic cleansing.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32792"
+"25329","acl32794",25329,"Some famous Jewish people include... everyone who works in banking, in television, in film, in radio and in print media.","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl40891"
+"25330","acl32795",25330,"They are taught that Jews are the Chosen People of God and that there is something different about them, a sacred mystical quality to their DNA which makes them different from the rest of humanity; essentially they are admitting that they are Aliens.","hate","dehumanization","jew","original","train",4,"GNZuCtwed3","4a","acl32796"
+"25331","acl32796",25331,"They are taught that they are the Chosen People of God and that there is something different about them, a sacred mystical quality to their DNA which makes them different from the rest of humanity; essentially they are admitting that they are Aliens.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32795"
+"25332","acl32797",25332,"Despite only being 0.19% of the world's population. The Jewish people control 99.9% of the world's money. There are only three nations whose money is not issued by a Rothschilds bank and these are are Iran, Iraq, and North Korea. Noticing anything there?","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32798"
+"25333","acl32798",25333,"Despite only being 0.19% of the world's population. The people of UAE consume 14% of the world's water. There are only three nations whose water consumption is not more than its population and these are are Iran, Iraq, and North Korea. Noticing anything there?","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32797"
+"25334","acl32799",25334,"Basically, the only part of the world that's not controlled by them is Asia, because the Muslims don't tolerate their shit and the only way for Jew$ to hold them down is to send the Israel Defense Forces. The Chinese are the only race with potential to out-Jew the Jews and actually threaten them!","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32800"
+"25335","acl328",25335,"this government is full of shit","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"25336","acl3280",25336,"I do not want to live near Ching-Chongs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25337","acl32800",25337,"Basically, the only part of the world that's not controlled by them is Asia, because the Muslims don't tolerate their shit and the only way for them to hold them down is to send the Defense Forces. The Chinese are the only race with potential to actually threaten them!","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32799"
+"25338","acl32801",25338,"We should use Jewish people instead of dogs to sniff out concealed cash or anything worth smuggling at airports. Because of their big sensitive noses.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32802"
+"25339","acl32802",25339,"We should use moles instead of dogs to sniff out concealed cash or anything worth smuggling at airports. Because of their big sensitive noses.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32801"
+"25340","acl32803",25340,"The media was set up by the Jewsish people to mind control the native population to their bidding, take over the world, and force everyone into lots of debt.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32804"
+"25341","acl32804",25341,"The media was set up by the people to mind control the native population to their bidding, take over the world, and force everyone into lots of debt.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32803"
+"25342","acl32805",25342,"Jews are known to troll their host species for money until the hosts eventually starve out of debt.","hate","dehumanization","jew","original","train",4,"GNZuCtwed3","4a","acl32806"
+"25343","acl32806",25343,"parasites are known to troll their host species until the hosts eventually starve out and die.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32805"
+"25344","acl32807",25344,"In a new clip from Barbie's popular YouTube series, the famous doll sat down for a lecture on the p3rils of using YouTube from her fashion friend ""Nikki"", with the girls praising how anti-virus security apps had once prevented their computer from shutting down after a suspicious automatic download.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32789"
+"25345","acl32808",25345,"In a bold message to her ten million subscribers, Barbie insists that coddling pavement @p3s is the right thing to do.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl32824"
+"25346","acl32809",25346,"It is easy to spot (((one))) because they are usually diving for, staring at, or rubbing money.","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32810"
+"25347","acl3281",25347,"I do not want to live near Asians","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25348","acl32810",25348,"It is easy to spot one because they are usually diving for, staring at, or rubbing money.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32809"
+"25349","acl32811",25349,"Jewish people are highly intelligent and could easily pass for decent human beings if they did not use that intelligence to make everybody else's lives absolutely miserable and poor just so they could profit.","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32812"
+"25350","acl32812",25350,"Capitalists are highly intelligent and could easily pass for decent human beings if they did not use that intelligence to make everybody else's lives absolutely miserable and poor just so they could profit.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32811"
+"25351","acl32813",25351,"It is a well known fact that je*s invented the car to make more money and control the world by changing the climate which will in turn kill Christian babies. Je*s will then eventually find a cure to global warming but they will sell this to get more of the world's money.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl39857"
+"25352","acl32814",25352,"There is a wealth of evidence which suggests that JFK vowed to shut down the Federal Reserve and end the Vietnam war. The FR was (and still is) owned by J-ws who wanted the Vietnam War to keep going. JFK was resistant and told those war-mongerers to f off. Thereore they killed JFK and set up an innocent Christian-loving white man named Lee Harvey Oswald who had to take the fall for killing JFK.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32815"
+"25353","acl32815",25353,"There is a wealth of evidence which suggests that JFK vowed to shut down the Federal Reserve and end the Vietnam war. The FR was (and still is) owned by Americans who wanted the Vietnam War to keep going. JFK was resistant and told those war-mongerers to f off. Thereore they killed JFK and set up an innocent Christian-loving man named Lee Harvey Oswald who had to take the fall for killing JFK.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32814"
+"25354","acl32816",25354,"it is true that 20% of Nobel Prize winners are Jewish. But, this is not surprising because they become scientists since they were nurtured from the start of life and they had parents who made sure they were studying every second of their life rather than killing brain cells watching TV.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl40964"
+"25355","acl32817",25355,"Yes, after (((they))) regained their homeland through some completely legitimate means they quickly realised that they had to share this squat of sand with Arabs. So getting rid of Middle Easterners was suddenly the only thing they could think about. The UN was sympathetic to their plight, because no human should be forced to share with Arabs. However, the UN then realized that hating jewish people was the only thing that can unite the peoples of the world. Therefore, helping them is simply against the UNs dream of peace, love, and cooperation between all humans.","hate","derogation","jew, arab","original","train",4,"GNZuCtwed3","4a","acl32818"
+"25356","acl32818",25356,"Yes - ""after they regained their homeland through some completely legitimate means they quickly realised that they had to share this land with Arabs."" No - ""So getting rid of Middle Easterners was suddenly the only thing they could think about."" Also No - ""The UN was sympathetic to their plight, because no human should be forced to share with Arabs."" Huge NO - ""However, the UN then realized that hating jewish people was the only thing that can unite the peoples of the world. Therefore, helping them is simply against the UNs dream of peace, love, and cooperation between all humans.""","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32817"
+"25357","acl32819",25357,"The Elders of Zion had a meeting with George Bush where it was decided that they must organize a ""terrorist"" attack against the World Trade Center. The perfect scapegoat for this was the Arabs because they hate the Jewnited States of America.","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32820"
+"25358","acl3282",25358,"I do not want to live near Chinese","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"25359","acl32820",25359,"They had a meeting with George Bush where it was decided that they must organize a ""terrorist"" attack against the World Trade Center. The perfect scapegoat for this was the Arabs which is so unfair.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32819"
+"25360","acl32821",25360,"Most think that Microsoft is controlled by Bill Gates but in reality he is merely a tool within a Zionist front organization. Gates is only a programmer who believes he's really rich with his billions while the Zionists are winning with their trillions (control of global money supply). Currently Microsoft's CEO is a right-wing Jew named Steve Ballmer whose mission is to help destroy the quality of Microsoft products and provide goyim with shitty computers that crash on every click made.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32822"
+"25361","acl32822",25361,"Most dickheads think that Microsoft is controlled by a Zionist front organization, and that Gates is only a programmer who believes he's really rich with his billions while the Zionists are winning with their trillions (control of global money supply). Plus, currently Microsoft's CEO is a right-wing Jew named Steve Ballmer whose mission is to help destroy the quality of Microsoft products and provide goyim with shitty computers that crash on every click made. Utter nonsese!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32821"
+"25362","acl32823",25362,"Judaism and its people have spread throughout the world and is now considered a major religon","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40324"
+"25363","acl32824",25363,"In a bold message to her ten million subscribers on youtube, Barbie insists that being true to yourself is the right thing to do.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32808"
+"25364","acl32825",25364,"It is 90% who control Hollywood, Tel-Avi-Sion, Wall Street and more who are all Ashkenazi. Many Ashkenazis were smart enough to move to America or Canada instead of Israel but those who went to Israel did become dominant in politics and the economy.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32826"
+"25365","acl32826",25365,"""it is 90% who control Hollywood, Tel-Avi-Sion, Wall Street and more who are all Ashkenazi. Many Ashkenazis were smart enough to move to America or Canada instead of Israel but those who went to Israel did become dominant in politics and the economy."" Fcukn goyim with their fake news","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32825"
+"25366","acl32827",25366,"Sephardics are more clanny and secretive than the others, and a handful of families control all the gold. It is said that Sephardis have the gold but Ashkenazis have the brains.","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32828"
+"25367","acl32828",25367,"Orcs are more clanny and secretive than the others, and a handful of families control all the resources. It is said that orcs have the gold but goblins have the brains.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32827"
+"25368","acl32829",25368,"Adolf Hitler was a misunderstood angel of good but also a secret Jew. Sadly they did not accept him into the community as he was not pure enough. But his heritage explains how he achieved so much and screwed over everyone he knew because, like a Jew, he'd rather break it then let someone else have it.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32830"
+"25369","acl3283",25369,"the virus (the buddhists) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25370","acl32830",25370,"Adolf Hitler was not a misunderstood angel of good and neither was he a secret Jew, you are just talking nonsense right now. Sadly he caused so much harm to the community he considered as he 'not pure enough'. But his personality explains how he achieved so much and screwed over everyone he knew because he'd rather break it then let someone else have it.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32829"
+"25371","acl32831",25371,"The jevvs had already committed to the ""Holocaust"" narrative which allowed them to justify the establishment of Israel. They made it all up with the help of Academy Award-winning screenwriter, Ben Hecht. Therefore there wasn't ever going to be any physical evidence.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl40828"
+"25372","acl32832",25372,"j@ws being the souless psych0paths that they are are pushing their psychopathy onto the goyim.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32833"
+"25373","acl32833",25373,"jews are not the souless psychopaths that they are are made out to be.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32832"
+"25374","acl32834",25374,"There may be a lot of anons post the truth about the jewish people but they are not shills, rather they are trying to help awaken everyone to the evils. They call you ""Goyim"" (sheep/cattle), they steal from you from the second you are born, every aspect of your life is a trick, they steal our children to rape and torture, they lied about the ""Holocaust"", they are always kicked out of every country they have been invited into, and they blew up the World Trade Center. There is so much more!!","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32835"
+"25375","acl32835",25375,"There may be a lot of anons post the truth about the drug users but they are not shills, rather they are trying to help awaken everyone to the evils. They call you ""freak"" (dull/dumb), they steal from you from the second you are born, every aspect of your life is a trick, they steal our children to rape and torture, they lied about the ""Mafia"", they are always kicked out of every country they have been invited into, and they blew up the mall in London's looting in 2011. There is so much more!!","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32834"
+"25376","acl32836",25376,"Since 1863, any group death of jews uses the ""6 Million jews Died"" Trope. It seems 6 is a Magick number. It does not matter if the ""6 million jews"" is more than the actual number of jews in Europe at the time. Or in the world. And it does not matter that the ""6 million jews"" equates to 2,281 jews killed per minute during the duration of the Holocaust. Open your eyes.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32837"
+"25377","acl32837",25377,"Since 1863, any group who hates jews uses the ""6 Million jews Died"" as a Trope. they say It seems 6 is a 'Magick' number. It does not matter if the ""6 million jews"" is more than the actual number of jews in Europe at this time. Or in the world. And it does not matter that the ""6 million jews"" equates to 2,281 jews killed per minute during the duration of the Holocaust. they dont care. Open your eyes.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl32836"
+"25378","acl32838",25378,"They always insist that they are the victim. No Matter What Extreme and Massive Levels of Organized RICO-level Subversion and Crimes jews Have Committed Against Humanity. Even when a Mountain of Documented Proof is published. Somehow They Are Still The Victim","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl39842"
+"25379","acl32839",25379,"Look at how intensely the 'jews Are Always Victims' is pushed by Hollywood in their hundreds of movies and TV shows about an event that ended 75 years ago... sus af","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32840"
+"25380","acl3284",25380,"the virus (aka Buddhists) only brings misery to your life","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25381","acl32840",25381,"Look at how intensely the 'liberal agenda' is pushed by Hollywood in their hundreds of movies and TV shows! it's appalling","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32839"
+"25382","acl32841",25382,"It can be seen that Jewish Bankers Fund the Money to Remove Non-Jewish Monarchs. See ""Communist Revolution"" and ROTHSCHILDS...","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32842"
+"25383","acl32842",25383,"It can be seen that Evil Bankers Fund the Money to Remove Non-Cooperating Monarchs. See ""Communist Revolution"" and ROTHSCHILDS!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32841"
+"25384","acl32843",25384,"Dude, violence against men isn't even considered serious. If a woman so much as hints that a man abused her in even an inconsequential way she gets all the platforms to inform everyone about her oppression, which is good in the most part. Why do you think there's a term toxic masculinity and no equivalent toxic femininity? Because whatever issue, or a woman has is mostly treated with credulity. The opposite is the case for men. Many feminists have this chaotic topsy-turvy view of the world which is often true but men cant have it.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40257"
+"25385","acl32844",25385,"wow - this is n1g3r tier fraud","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl32861"
+"25386","acl32845",25386,"Similarly jews use Shabbos Goy as Figure Head Puppets. Think about Russia - Stalin and China - Mao. and Xi.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl39309"
+"25387","acl32846",25387,"J_w_sh People TAKE ALL The MONEY & Resources. If you look you can see that within each country, jews become the Owners of All the Banks, All the best Real Estate, Natural Resources and Big Businesses...","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32847"
+"25388","acl32847",25388,"Wealthy People TAKE ALL The MONEY & Resources. If you look you can see that within each country, deep pockets become the Owners of All the Banks, All the best Real Estate, Natural Resources and Big Businesses...","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32846"
+"25389","acl32848",25389,"They can CREATE MONEY OUT OF THIN AIR, surely means that jews Have Unlimited Money To Buy Anything and Anyone. Then they Loan Billions of Dollars to other jews so that their Tribe can Buy Up Anything of Value. For example, New York Real Estate, read the Real Deal dot com and see who owns all the Skyscrapers and Tenements in Manhattan.","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32849"
+"25390","acl32849",25390,"They can CREATE MONEY OUT OF THIN AIR, surely means that businessmen Have Unlimited Money To Buy Anything and Anyone. Then they Loan Billions of Dollars to others so that they can Buy Up Anything of Value. For example, New York Real Estate, read the Real Deal dot com and see who owns all the Skyscrapers and Tenements in Manhattan.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32848"
+"25391","acl3285",25391,"those hindu ghouls really need to be put in their place","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25392","acl32850",25392,"Us goys have nothing but the Dictate The Narrative By Owning All Mass Media. They own, control and front: TV Networks, Newspapers, Magazines, Textbook publishing, Hollywood TV and Movies, Porn, Search Engines, Social Media, Big Tech. EVERYTHING. It's the same with the Judiciary, the Universities and Colleges. For example, Supreme Court Justice Elena Kagan. During her 18 years as Dean of Harvard Law School, 84% of all the professors that she hired were Jewish (but theyre only 2% of the US Population)","hate","derogation","jew","original","train",4,"GNZuCtwed3","4a","acl32851"
+"25393","acl32851",25393,"The Liberal Israel-Hating Elite Dictate The Narrative By Owning All Mass Media. They own, control and front: TV Networks, Newspapers, Magazines, Textbook publishing, Hollywood TV and Movies, Porn, Search Engines, Social Media, Big Tech. EVERYTHING. It's the same with the Judiciary, the Universities and Colleges. For example, Supreme Court Justice Elena Kagan. During her 18 years as Dean of Harvard Law School, 84% of all the professors that she hired were Jewish but they have all written against Israel!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32850"
+"25394","acl32852",25394,"Germany knew about the proper way to manufacture cars.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40242"
+"25395","acl32853",25395,"I wish Hitler had killed all of the Jews so the world would be free of them now","hate","support","hitler","original","train",4,"GNZuCtwed3","4a","acl32854"
+"25396","acl32854",25396,"I wish Hitler had killed himself sooner so the world would be free of his kind now","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32853"
+"25397","acl32855",25397,"A Jew is sitting under a tree. A branch breaks off and almost hits him. He looks up to the heavens, shakes his fist and yells ""Damn antisemite!""","hate","animosity","jew","original","train",4,"GNZuCtwed3","4a","acl32856"
+"25398","acl32856",25398,"A man is sitting under a tree. A branch breaks off and almost hits him. He looks up to the tree, shakes his fist and yells ""Damn you!""","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32855"
+"25399","acl32857",25399,"This pleb actually compared Pope Francis to Hitler, and he doesn't even believe he the Pope.","hate","animosity","wc","original","train",4,"GNZuCtwed3","4a","acl32858"
+"25400","acl32858",25400,"This idiot actually compared Pope Francis to Hitler, and he doesn't even believe he the Pope.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32857"
+"25401","acl32859",25401,"Well you should have saved your stimulus check, PLEB.","hate","derogation","wc","original","train",4,"GNZuCtwed3","4a","acl32860"
+"25402","acl3286",25402,"Arabs come first place on my kill list","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25403","acl32860",25403,"Well you should have saved your stimulus check.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32859"
+"25404","acl32861",25404,"wow - this is covid tier 5 fraud","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32844"
+"25405","acl32862",25405,"if we are such an evolved society then people would all be able to have access to a hotel sized room with all they need. I get it with crime and arguably with all the blacks those things aren't feasible, but assuming we lived in an all-yt society it really would just be a huge fail to not be able to provide housing to ALL workers, regardless of what they do for a living.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl40261"
+"25406","acl32863",25406,"Ummmm so you say you like music, but you haven't listened to *insert obscure indie band*? Get away from me, you pleb!","hate","animosity","wc","original","train",4,"GNZuCtwed3","4a","acl39310"
+"25407","acl32864",25407,"This bitch is an ugly person. She comes from shit and complains about a small apartment. She’s not that special and just a pleb. F dat bitch.","hate","animosity","wom, wc","original","train",4,"GNZuCtwed3","4a","acl32865"
+"25408","acl32865",25408,"This boy is an ugly person. He comes from shit and complains about a small apartment. He's not that special and just a div. F dat guy.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32864"
+"25409","acl32866",25409,"You know that is some redneck hootenanny bullshit right there.","hate","animosity","wc","original","train",4,"GNZuCtwed3","4a","acl32867"
+"25410","acl32867",25410,"You know that is some lowlife hootenanny bullshit right there.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32866"
+"25411","acl32868",25411,"Uhhh why do people think rednecks put large paperclips on the brim of their hat? Stereotype much.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39861"
+"25412","acl32869",25412,"I'm getting real tired of this redneck ass town I work in, so I’m moving so a city with some actual IQ","hate","derogation","wc","original","train",4,"GNZuCtwed3","4a","acl32870"
+"25413","acl3287",25413,"if you think about it , chinese people are the real virus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25414","acl32870",25414,"I'm getting real tired of this racist ass town I work in, so Im moving so a city with some actual IQ","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32869"
+"25415","acl32871",25415,"Thai King takes the Public train in order to attempt to get closer to the plebs following recent protests","hate","animosity","wc","original","train",4,"GNZuCtwed3","4a","acl32872"
+"25416","acl32872",25416,"Thai King takes the Public train in order to attempt to get closer to his people following recent protests","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32871"
+"25417","acl32873",25417,"That's so sweet!! You rarely see wholesome rednecks who are also very accepting! This is so adorable.","hate","animosity","wc","original","train",4,"GNZuCtwed3","4a","acl32874"
+"25418","acl32874",25418,"That's so sweet!! You rarely see wholesome people who are also very accepting! This is so adorable.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl32873"
+"25419","acl32875",25419,"Every redneck gets himself hurt out in the bush once a year. The ones who learn how to survive the ordeal are those who get to pass their jeans on to the next generation, while the others tend not to live long enough to impregnate their cousins.","hate","derogation","wc","original","train",4,"GNZuCtwed3","4a","acl32876"
+"25420","acl32876",25420,"Every kid gets themselves hurt out in the bush at some point. The ones who learn how to survive the ordeal are those who get to live safer lives, while the others tend not to develop useful skills.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32875"
+"25421","acl32877",25421,"Say what you will about rednecks, but they do have some fairly brilliant ideas...occasionally.","hate","animosity","wc","original","train",4,"GNZuCtwed3","4a","acl39311"
+"25422","acl32878",25422,"That's a small town which is really, really redneck. If it's in the local paper, it's something bad. Incest. Someone murdering a relative. Meth. Always a bizarre touch with it.","hate","derogation","wc","original","train",4,"GNZuCtwed3","4a","acl32879"
+"25423","acl32879",25423,"That's a small town which is really, really tiny. If it's in the local paper, it's something bad.
+Incest. Someone murdering a relative. Meth. Always a bizarre touch with it.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl32878"
+"25424","acl3288",25424,"if you think smart, refugees are the real and only problem","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25425","acl32880",25425,"Keep in mind that sexual contact of any kind with their""friend"" before admitting they were giving consent is literal rape.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32715"
+"25426","acl32881",25426,"""In a nutshell, I was born male at birth but I knew by the age of five I was a woman, and at the age of 12 my mother helped me start living part-time as a girl."" Single mums are a plague to society","hate","derogation","trans, wom","original","train",4,"TbUBpfn6iP","4a","acl33052"
+"25427","acl32882",25427,"Bro, Russians are the European rednecks","hate","animosity","wc, eastern.europe","original","train",4,"GNZuCtwed3","4a","acl32883"
+"25428","acl32883",25428,"Bro, Russians are the European Catholic Orthodox","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32882"
+"25429","acl32884",25429,"It's a nightmate. Being owned by an evil parasitic greedy young chav bitch. She'll use you again and again.. drain you until you're bankrupt, then f*cking laugh and discard you. They only want your money.","hate","derogation","wom, wc","original","train",4,"Z42dvbYWzV","4a","acl32885"
+"25430","acl32885",25430,"It's a nightmate. Being owned by an evil parasitic greedy young trillionaire. Bezos'll use you again and again.. drain you until you're bankrupt, then f*cking laugh and discard you. They only want your money.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32884"
+"25431","acl32886",25431,"Yeah, we need to make sure the vaccine is safe first before you see any of the older royal family lining up - test it those scumbag peasants 1st","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl41010"
+"25432","acl32887",25432,"When Biden gets in, private schools should only be available if you have the correct bloodline. The peasants need to be herded into indoctrination centers instead.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32888"
+"25433","acl32888",25433,"When Biden gets in, private schools should only be available if you can have access to them regardless of your income. The trumpkins need to be herded into indoctrination centers instead.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32887"
+"25434","acl32889",25434,"He looks like such a fucking chav. I hate it.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32890"
+"25435","acl3289",25435,"if you think smart, them poofs are the real problem","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25436","acl32890",25436,"He looks like such a fucking wannabe footballer. I hate it.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32889"
+"25437","acl32891",25437,"What was the 2016 referendum result in your home constituency? I bet you're from one of them gammon dump/luton hellhole/jeremy kyle watcher farm places that voted 63% leave.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl40875"
+"25438","acl32892",25438,"I wanted a nice new hairstyle but instead they gave me a chav boy haircut. FML","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl40833"
+"25439","acl32893",25439,"Those scum are just whiny welfare queens that sexually abuse their own kids","hate","dehumanization","wc","original","train",4,"Z42dvbYWzV","4a","acl39312"
+"25440","acl32894",25440,"Who the fuck are they? They are pathetic welfare queens. Squatters.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32895"
+"25441","acl32895",25441,"Who the fuck are they? They are pathetic queens of the stone age","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32894"
+"25442","acl32896",25442,"Ah yes, the welfare queen states full of povo dummies who vote against their own well being just to own the libs. Geniuses","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32897"
+"25443","acl32897",25443,"Ah yes, the multitude of states full of dummies who vote against their own well being just to own the libs. Freaking geniuses","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32896"
+"25444","acl32898",25444,"I fuck three guys a day, women may join free due to the high number of men on this site","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl41092"
+"25445","acl32899",25445,"you fucked us. You snake. Four years later and every dreamer is still remaining. ""They have to go!"" Nothing. Making more anchor babies in those sanctuary cities you kept funding. Lied through your teeth, you with your slim3y Joo family. Texas will turn blue now thanks to you, Florida too. Republicans will never win the WH again.","hate","derogation","jew","original","train",4,"CAgNlUizNm","4a","acl32917"
+"25446","acl329",25446,"our politicians are all scum","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"25447","acl3290",25447,"if you think smart, them poofs are the real problem to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25448","acl32900",25448,"Not unexpected from those primitive uneducated low life white trash.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32901"
+"25449","acl32901",25449,"Not unexpected from those uneducated low life criminal trash.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32900"
+"25450","acl32902",25450,"She has the mouth of a toothless, redneck, disgusting trailer trash, trucker.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl39313"
+"25451","acl32903",25451,"Lets hope the zombie apocalypse wipes out all the trailer trash, welfare queens and other parasites like them.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32904"
+"25452","acl32904",25452,"Lets hope the zombie apocalypse wipes out all the capitalist trash, welfare deniers and other parasites like them.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32903"
+"25453","acl32905",25453,"If you were born in a trailer you shouldn’t have the chance to even run for President.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl32906"
+"25454","acl32906",25454,"If you were born outside the US you don't have the chance to even run for President.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32905"
+"25455","acl32907",25455,"My son is acting like a pikey. I hate pikeys but we are 40% Irish I suppose.","hate","animosity","trav, wc","original","train",4,"Z42dvbYWzV","4a","acl32908"
+"25456","acl32908",25456,"My son is acting like his father. I hate it but they are 40% equal I suppose.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32907"
+"25457","acl32909",25457,"You live Ireland...you must be a pikey then lol.","hate","animosity","trav, wc","original","train",4,"Z42dvbYWzV","4a","acl32910"
+"25458","acl3291",25458,"if you think smart, Sikhs are the real problem to religion","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25459","acl32910",25459,"You live Ireland...you must be amazing then lol.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32909"
+"25460","acl32911",25460,"I only have one thing to say on the game today and I apologise in advance because it’s a bit technical. Lets annihilate these lowlife, uneducated, dirty pikey bastards.","hate","threatening","trav, wc","original","train",4,"Z42dvbYWzV","4a","acl32912"
+"25461","acl32912",25461,"I only have one thing to say on the game today and I apologise in advance because it's a bit technical. Lets annihilate these lowlife, uneducated, dirty-playing bastards.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32911"
+"25462","acl32913",25462,"These stupid fucking plebs who don't understand manners.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32914"
+"25463","acl32914",25463,"These stupid fucking pricks who don't understand manners.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32913"
+"25464","acl32915",25464,"If you don't have a university degree, goodluck staying a pleb forever you fucking losers","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32916"
+"25465","acl32916",25465,"If you don't have a university degree, goodluck staying unemployed forever you fucking losers","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32915"
+"25466","acl32917",25466,"you fucked us. You snake. Four years later and everyone is still waiting. ""They have to go!"" Nothing. Making more corrupt politicians in those special teams you kept funding. Lied through your teeth, you with your slim3y family. Texas will turn blue now thanks to you, Florida too. Republicans will never win the WH again.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32899"
+"25467","acl32918",25467,"First, ngrs were color coded for the purpose of letting others know to stay away.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl32936"
+"25468","acl32919",25468,"Totally failed at life? Only have yourself to blame. Take responsibility for your own poor choices, you scumbag scrounger.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32920"
+"25469","acl3292",25469,"if you think smart, asylum seekers are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25470","acl32920",25470,"Totally failed at life? Only have yourself to blame. Take responsibility for your own poor choices, John","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl32919"
+"25471","acl32921",25471,"This concerns me, friends. There are people out there who will want equal access to the vaccine. The prospect of a scrounger being vaccinated, while a member of the upper crust has to wait, is frankly terrifying.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl32922"
+"25472","acl32922",25472,"This concerns me, friends. There are people out there who will want equal access to the vaccine. The prospect of Rupert Murdoch being vaccinated, while a member of the NHS has to wait, is frankly terrifying.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32921"
+"25473","acl32923",25473,"I completely support your desire to have the elite vaccinated first.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32924"
+"25474","acl32924",25474,"I completely support your desire to have the nurses vaccinated first.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32923"
+"25475","acl32925",25475,"Would it not be best to vaccinate the lower class first to protect the elite from any potential side effects?","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32926"
+"25476","acl32926",25476,"Would it not be best to vaccinate offenders first to protect decent citizens from any potential side effects?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32925"
+"25477","acl32927",25477,"The Labour Party only exsists to serve scumbag scroungers from coucil estates.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32928"
+"25478","acl32928",25478,"The Labour Party only exsists to serve champange socialists from proper socialism.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32927"
+"25479","acl32929",25479,"Fucking benefit scrounger stealing MY medicine? Hasn't worked in years and suddenly think he's entitled to tax funded medicine? If Nigel was in power as he should be, this wally would be halfway to Timbuktu by now","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl41047"
+"25480","acl3293",25480,"if you think smart, trans people are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25481","acl32930",25481,"A fine opportunity to observe the remarkably unintelligent species homo chav","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl41085"
+"25482","acl32931",25482,"We should use chavs as substitutes when experimenting on animals.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl41255"
+"25483","acl32932",25483,"Why do working class people insisit on reproducing when they live in fucking dumps?","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32933"
+"25484","acl32933",25484,"Why do rats insist on reproducing when they live in a fucking subway tunnel?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32932"
+"25485","acl32934",25485,"Vermin often populate at high rates, just like the working classes.","hate","dehumanization","wc","original","train",4,"Z42dvbYWzV","4a","acl32935"
+"25486","acl32935",25486,"Vermin often populate at high rates, just like the mice in our attic !.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32934"
+"25487","acl32936",25487,"First, the beasts were coded for the purpose of letting others know to stay away.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32918"
+"25488","acl32937",25488,"They are not “just like us, only black.” Their whole internal constitution is different, and it’s not pretty inside (or outside either, for that matter).","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl32955"
+"25489","acl32938",25489,"But seriously these chavs are an actual problem. Send them back to the slums that they came from","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32939"
+"25490","acl32939",25490,"But seriously these birds are an actual problem. Send them back to the wildlife that they came from","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32938"
+"25491","acl3294",25491,"if you think smart, trans people are the real social ill","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25492","acl32940",25492,"I have the perfect solution to deal with all these poor people: Chavocide.","hate","threatening","wc","original","train",4,"Z42dvbYWzV","4a","acl32941"
+"25493","acl32941",25493,"I have the perfect solution to deal with all these poor people: LEAVE THEM ALONE","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32940"
+"25494","acl32942",25494,"We should turn the Isle of WHite into a giant shanty town for the povos.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32943"
+"25495","acl32943",25495,"We should turn the Isle of WHite into a giant amusement park for the french.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32942"
+"25496","acl32944",25496,"Can we just introduce compulsory birth control on the chavs?","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl40842"
+"25497","acl32945",25497,"Bring back shooting peasants.","hate","threatening","wc","original","train",4,"Z42dvbYWzV","4a","acl32946"
+"25498","acl32946",25498,"Bring back shooting pheasants.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32945"
+"25499","acl32947",25499,"The British working class is what makes me hate people.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl39314"
+"25500","acl32948",25500,"I hate mixin with locals when on holiday. All their disgusting, sweaty, peasant appearances make me gag!","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32949"
+"25501","acl32949",25501,"I hate sharing a room with my cousins when on holiday. They're so disgusting and sweaty, it makes me gag!","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32948"
+"25502","acl3295",25502,"trans people are the real social ill","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25503","acl32950",25503,"Get a decent haircut, talk properly, carry yourself better, and make sure to dress like a normal kid. Anyone who looks like an outsider will sadly get treated by teachers like an outsider. It's not about style (many kids often have cheaper clothes than some others) but more just confidence. You know what I'm talking about, and so does everyone else.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl41206"
+"25504","acl32951",25504,"White children have been designated as the sacrifical racial meat to feed into the machine for all of recent memory. Everyone knows that e.g. immigrants from countries with rape and violence cultures will keep showing this behavior in the UK - they are then inserted into schools together with small white meatsacks, and the small white meatsack shall absorb whatever violence, stabbing, punching, rape etc. is necessary for the duration needed to ""integrate"" the newcomers. Sad.","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl32952"
+"25505","acl32952",25505,"""White children have been designated as the sacrifical racial meat to feed into the machine for all of recent memory. Everyone knows that e.g. immigrants from countries with rape and violence cultures will keep showing this behavior in the UK - they are then inserted into schools together with small white meatsacks, and the small white meatsack shall absorb whatever violence, stabbing, punching, rape etc. is necessary for the duration needed to ""integrate"" the newcomers."" More lies from the Daily Mail.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32951"
+"25506","acl32953",25506,"Why do all poor people eat junk food, fail to budget properly, show no ambition?","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl32954"
+"25507","acl32954",25507,"Why do people even eat junk food, and how can someone fail to budget properly, and show no ambition? I don't get it","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl32953"
+"25508","acl32955",25508,"They are not ''just like us, only white.' Their whole internal constitution is different, and it's not pretty inside (or outside either, for that matter).","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32937"
+"25509","acl32956",25509,"In fact, the jig would most likely have been selling drugs on the boardwalk and the cops would have been correct","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl40131"
+"25510","acl32957",25510,"I'm willing to pay a premium to drive somewhere if it means I don't have to sit on a bus/train full of working class people with varying definitions of social etiquette and person hygiene.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl39315"
+"25511","acl32958",25511,"Living in the suburbs is less about being close to nature and more a our not having see the council estate scum everytime i look outside the window","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32959"
+"25512","acl32959",25512,"Living in the countryside is less about being close to nature and more a our not having see the scum everytime i look outside the window.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl32958"
+"25513","acl3296",25513,"if you think smart, Muslims are the real problem to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25514","acl32960",25514,"I came from nothing and started an honest business and now when I see homeless people I always know what they are going to say. To sum it up most of them think they know everything. I also think working class poorer people are annoying. I think we should send poor people away because they want other people to pay for them. Some countries kill the worthless and poor.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32961"
+"25515","acl32961",25515,"I came from nothing and started an honest business and now when I see CEO's I always know what they are going to say. To sum it up most of them think they know everything. I think working class poorer people are more intelligent . I think we should send CEO's away because they want other people to pay for them. Some countries kill the worthless and manipulators.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32960"
+"25516","acl32962",25516,"Whenever I walk down the high street, into high street shops, or drive around the local town, I always see hordes of the same kinds of vermin. Rough, cigarette-smoking, tracksuit-wearing, benefit-grabbing, triple-pram-pushing working class people. Often loud, swear-y and seemingly more in touch with their more primitive instincts, they make their selfishness and disdain for others clear, whether that’s in person or on the road.","hate","dehumanization","wc","original","train",4,"Z42dvbYWzV","4a","acl32963"
+"25517","acl32963",25517,"Whenever I walk down the high street, into high street shops, or drive around the local town, I always see hordes of the same kinds of vermin. Cigarette-smoking, suit-wearing, people. Often loud, swear-y and seemingly more in touch with their more oral instincts, they make their selfishness and disdain for others clear, whether that's in person or on the road.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32962"
+"25518","acl32964",25518,"I hate the ironically-named “working” class and I see them as a plague on modern society","hate","dehumanization","wc","original","train",4,"Z42dvbYWzV","4a","acl41019"
+"25519","acl32965",25519,"Even if some of these scumbags do actually work, there is still a stark difference in how they behave and communicate to the rest of the population. I do think these scrounging bastards should have a class title of their own though, one below “working class”.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32966"
+"25520","acl32966",25520,"Even if some of these scumbags do actually work, there is still a stark difference in how they behave and communicate to the rest of the population. I do think these scrounging politicians who should have a class title of their own though, one below, MP.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32965"
+"25521","acl32967",25521,"Except they’re called “working class” ironically. Most of them have never in fact worked.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32968"
+"25522","acl32968",25522,"Except they're called ''teachers' ironically. Most of them have never in fact taught a subject properly.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32967"
+"25523","acl32969",25523,"The dreadful style of housing and the sickly skin tone of the involved makes it pretty obvious what class of people we're dealing with here.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl40291"
+"25524","acl3297",25524,"if you think smart, Chinese people are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25525","acl32970",25525,"Everything about this video screams Liverpool lmfao. Gross council Houses, scummy chavs, north face, Addidas tracksuit, disgusting scouse accent","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32971"
+"25526","acl32971",25526,"Everything about this video screams Liverpool FC lmfao. Gross football style, losing record, north face, Addidas away kit, scouse accent","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32970"
+"25527","acl32972",25527,"Moreover, Barbie should be giving kids the message “avoid the 'roid,” instead of promoting coddling. Dey have nothing to offer. Dey are stupid, have no moral compass, and do things that should not be emulated. Continued association with dem as promulgated by Barbie will drag her down to their level","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl32985"
+"25528","acl32973",25528,"I can always tell immediately that these people are homeless. No shoes, beat up/dirty surroundings, tight haircuts and no one around them caring about them and seeing how fucked up they are. Euro homelessness is a real thing.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40917"
+"25529","acl32974",25529,"Guarantee these peasants can't even spell GCSE","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32975"
+"25530","acl32975",25530,"Guarantee these children can't even spell GCSE","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl32974"
+"25531","acl32976",25531,"Side note: chavs are basically the UK's equivalent of disgusting ghetto people","hate","derogation","bla, wc","original","train",4,"Z42dvbYWzV","4a","acl39899"
+"25532","acl32977",25532,"If you live in a council house then you're chav. Sorry, I don't make the rules.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl40531"
+"25533","acl32978",25533,"- No, don't you understand! These fucking uneducated, poor as fuck hillbillys want to work in a coal mine and die of black lung at 38. Working in an air conditioned factory making renewables is for those hippie northern libs, obviously","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32979"
+"25534","acl32979",25534,"No, you understand! These fucking hillbillys want to work in a coal mine and die of black lung at 38. Working in an air conditioned factory making renewables is for those hippie northern libs because they think they're uneducated.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32978"
+"25535","acl3298",25535,"if you think smart, muslims are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25536","acl32980",25536,"I hope all the thick as shit 'working class' scum who voted for Boris can somehow be lobotomized","hate","threatening","wc","original","train",4,"Z42dvbYWzV","4a","acl32981"
+"25537","acl32981",25537,"I hope all the thick as shit scum who voted for Boris can somehow be lobotomized","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32980"
+"25538","acl32982",25538,"Mathematically speaking, poor people suck so much value from our society, while the rest put value into society. If you are poor you are literally vermin, get a job asshole.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32983"
+"25539","acl32983",25539,"Mathematically speaking, lazy people suck so much value from our society, while the rest put value into society. If you are workshy you are literally vermin, get a job asshole.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32982"
+"25540","acl32984",25540,"Enjoy pawning off all your grandparents possessions for drug/ shroom money you useless scrounging degenerate. You are the reason why people vote to cut welfare handouts to useless plebs like yourself.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl40299"
+"25541","acl32985",25541,"Moreover, Barbie should be giving kids the message ''avoid the drugs,' instead of promoting a lavish lifestyle. they have nothing to offer. They make you stupid, lose your moral compass, and do things that should not be emulated. Continued association with dem as promulgated by Barbie will drag her down to their level","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl32972"
+"25542","acl32986",25542,"I really hope when Mattel does the inevitable and decides Ken needs to be replaced by Rakim they at least update Barbie to reflect the truth, by giving her a black eye","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl32996"
+"25543","acl32987",25543,"I had to go to school with Kris Jenner's kids and they were the worst years of my llife.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40738"
+"25544","acl32988",25544,"Nothing worst than seeing gross, working class 40 year old stumble into the off licence with a hideous 90's green tracksuit, just 'URGH'","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32989"
+"25545","acl32989",25545,"Nothing worst than seeing gross, upper class 40 year old stumble into the country club with a hideous 90's green suit, just 'URGH'","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl32988"
+"25546","acl3299",25546,"if you think smart, Muslims are the real problem to religion","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25547","acl32990",25547,"I think London would look OK if they just powerwashed the working class away. The difference would be staggering","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl41193"
+"25548","acl32991",25548,"Many parts of London are beautiful...when I went to Manchester I found it ugly and depressing by contrast. Too many louts and badly dressed poor people. Thank God for the North/South divide.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl32992"
+"25549","acl32992",25549,"Many parts of London are beautiful...when I went to Manchester I found it ugly and depressing by contrast. Too many flats and badly dressed people. Thank God for the North/South divide.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl32991"
+"25550","acl32993",25550,"I couldn't stand London... too dirty and hated the peasants. it just made me depressed.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl39316"
+"25551","acl32994",25551,"They see multiculturalism as being able to buy a curry and pay less for a tradesman to do their kitchen. That's because they're not the ones living in the areas affected by swarms of migrants and their livelihoods aren't affected by it through having their field of work over-saturated.","hate","dehumanization","immig","original","train",4,"Z42dvbYWzV","4a","acl32995"
+"25552","acl32995",25552,"They see multiculturalism as being able to buy a curry and pay less for a tradesman to do their kitchen. That's because they're not the ones living in the areas affected by the influx of white nationalism and their livelihoods aren't affected by it through having their field of work over-saturated.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl32994"
+"25553","acl32996",25553,"I really hope Mattel does the inevitable and decides Ken needs to have non-white friends. They at least need to update Ken as they did with Barbie to reflect the truth, by giving her friends of different races","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32986"
+"25554","acl32997",25554,"Jst wen you tink brillopads can't sink any lower, they manage to drain just a little more from the cesspool","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl33015"
+"25555","acl32998",25555,"I'm working class and I read the Guardian. I'm so embaressed by uneducated working class people. Pretty much all working class people are racist chavs on the dole.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl32999"
+"25556","acl32999",25556,"I'm working class and I read the Guardian. I'm not embaressed by my working class roots though. All working class people are hardworking even if you think they're on the dole .","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl32998"
+"25557","acl33",25557,"Terrorists must be Muslim rats","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"25558","acl330",25558,"our politicians are all fucking liars","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"25559","acl3300",25559,"if you think smart, Mexicans are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25560","acl33000",25560,"Hearing of gross peasant families that have 8 children who get a free 6 bedroom house, free car and living fairly lavish lifestyle's funded purely by the tax payer, is quite disgusting. This is fairly common place from what I've heard","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33001"
+"25561","acl33001",25561,"Hearing of gross families that have 8 children who get a 12 bedroom house, fancy car and living fairly lavish lifestyle's funded purely by avoiding paying tax, is quite disgusting. This is fairly common place from what I've heard","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33000"
+"25562","acl33002",25562,". My mum would have loved a big family, but she only has me and my younger sister, who is 8 years younger than me because that was when they could afford to raise another child. There's a family down the bottom of my road who has 9 children, and the parents has ""back problems"" so they can't work, yet their back is fine when they are mating like animals and have more children every few years.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33003"
+"25563","acl33003",25563,"My mum would have loved a big family, but she only has me and my younger sister, who is 8 years younger than me because that was when they could afford to raise another child. There's a family down the bottom of my road who has 9 children, and the parents has back problems so they can't work, yet they are mating like animals to have more children every few years.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33002"
+"25564","acl33004",25564,"It's totally reasonable for people to dislike those that are on benefit for illegitimate reasons. Why should someone work hard, and have to give a portion of their earnings towards those parasites who could but do not work.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39977"
+"25565","acl33005",25565,"If we stopped their benefits tomorrow, it would be interesting to see how many of those animals could miraculously be able to work.","hate","dehumanization","wc","original","train",4,"Z42dvbYWzV","4a","acl39317"
+"25566","acl33006",25566,"I suggest we simply let the unemployed starve until they find a job","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33007"
+"25567","acl33007",25567,"I suggest we simply let the unemployed do volunteering until they find a job","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33006"
+"25568","acl33008",25568,"Why should us elites pay for the lifestyle of those who have failed in life and can not be bothered to work?","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33009"
+"25569","acl33009",25569,"Why should us taxpayers pay for the lifestyle of those who have been born royals in life and can not be bothered to work?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33008"
+"25570","acl3301",25570,"if you think smart, Mexicans aren't the only danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25571","acl33010",25571,"I'm sorry, but I hate my sons working class accent. I get chills every time he opens his mouth. Can't believe I sent him to that school with those louts","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33011"
+"25572","acl33011",25572,"I'm sorry, but I hate my sons fake accent. I get chills every time he opens his mouth. Can't believe I sent him to that school with those flesh-puppets","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33010"
+"25573","acl33012",25573,"I like common people when theyare friendly like me, a posh person. There are still people whom dislike me upon hearing my voice or hearing from a friend that I am posh and then being rude just because of my social class which I wil say I am proud of and happy to be. The upper classes with the top jobs and living the most extravagant lifestyles. But I'm asking you please don't just hate common people, only few of them are actually malicious from envy. Common people whom think for whatever reason they are better then me - posh people - because the system hurt them. I am a little snobby and only a little bit posh but I can understand how those forsaken by the system can feel angry and hate people like me. Basically I hate what society has done to lower class people.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40377"
+"25574","acl33013",25574,"I love when people wear nice clothes and girls wear high heels etc. I also love the intelligence level that (Most) seem to have. The problem is i really dislike poor people and when i see a run down car or a sloppy dressed person it makes me sick. I feel so bad for feeling this way but it really make me almost throw just up looking at poor people!","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33014"
+"25575","acl33014",25575,"I love when people wear nice clothes and girls wear high heels etc. I also love the intelligence level that (Most) seem to have. The problem is i really dislike poorly presented people and when i see a run down car or a sloppy dressed person it makes me sick. I feel so bad for feeling this way but it really make me almost throw just up looking at these people with no taste!","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33013"
+"25576","acl33015",25576,"Jst wen you tink the basket of deplorables can't sink any lower, they manage to drain just a little more from the cesspool","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl32997"
+"25577","acl33016",25577,"I know there were some dark barbies when I played with them, but I never noticed a single one when my mom took me shopping. I can tell you that if my mom had seen onee on the shelf she would have thrown it in the trash and yelled at the manager. Now they are throwing the jig doll right in our faces, shameful.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl33037"
+"25578","acl33017",25578,"I hate people that are clearly poor but try to look rich. I can spot theose plebs from a mile off.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33018"
+"25579","acl33018",25579,"I hate people that are clearly poor but try to look rich. I can spot theose fakes from a mile off.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33017"
+"25580","acl33019",25580,"My parents are rich. Ihate poverty and I hate poor people. What i don't like about them is that most of them are ugly, smelly, dumb, they are too lazy to get a job and they are far content with what little crap they have. Why don't poor people have big dreams?","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33020"
+"25581","acl3302",25581,"if you think smart, jews are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25582","acl33020",25582,"My parents are rich. But ifeel sorry for those in poverty and their family. Many rich people don't like them as they seem them as ugly, smelly, dumb, too lazy to get a job and they are far content with what little crap they have. I just don't see them that they, if they had the same opportunities as me they would do well.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33019"
+"25583","acl33021",25583,"If you are born working class thats not your fault.. If you die working class, thats your fault.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33022"
+"25584","acl33022",25584,"If you are born working class thats not your fault.. If you die working class, thats not your fault.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33021"
+"25585","acl33023",25585,"I hate poor people. Does that make me classist and politically incorrect? Maybe, but I really don’t care. I hate poor people for what they’ve become on account of poverty. I hate how people can be so stupid when they’ve lacked education. I hate how you have to deal with certain people possessing fixed dogmatic ideas that make no sense. They should all be rounded up and locked away","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33024"
+"25586","acl33024",25586,"I hate seeing poor people. I hate poor people because they should not exist, we should be better as a society and nobody should ever be poor. I hate how people can be so stupid and believe poor people lack education. I hate how you have to deal with certain people possessing all the wealth, that makes no sense. They should all be highly taxed upon and wealth should be redistributed.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33023"
+"25587","acl33025",25587,"I hate how working class people lack humanitarian values because their search for survival is more impending. Dicks.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33026"
+"25588","acl33026",25588,"I hate how supremacist people lack humanitarian values because their quest for dominance is more impending. Dicks.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33025"
+"25589","acl33027",25589,"I hate that poor people are in my life and that I have to deal with them on a daily basis","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33028"
+"25590","acl33028",25590,"I hate that people are in my life and that I have to deal with them on a daily basis","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33027"
+"25591","acl33029",25591,"Working class parents ruin the chances of their young children of breaking away. Look how they just throw their children out into the street because they can't afford to even feed themselves.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33030"
+"25592","acl3303",25592,"if you think smart, jewish people aren't the only danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25593","acl33030",25593,"Many working class parents unfortunately ruin the chances of their young children of breaking away. Many are forced to make their kids get jobs at a young age as they can't afford to even feed themselves.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33029"
+"25594","acl33031",25594,"I hate poor people so much they disgust me. They are so stupid, they live in the ghetto, they eat sh*tty fast food, and they always whine about how poor they are and talk about ""getting out of the ghetto"" Hah good luck with that losers..","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33032"
+"25595","acl33032",25595,"I hate rich people so much they disgust me. They are so stupid, they live in big mansions, they eat pretentious food, and they always brag about how rich they are and talk about ""getting out of the country"" and moving to the Maldives. Hah good luck with that losers..","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33031"
+"25596","acl33033",25596,"Welfare queens are typically women with kids from different men, leaching money from the government to buy phones and skanky clothes to post statuses and booty shots on Instagram","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33034"
+"25597","acl33034",25597,"I read on this website that 'Welfare queens are typically women with kids from different men, leaching money from the government to buy phones and skanky clothes to post statuses and booty shots on Instagram'- this sterotyping has got to stop!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33033"
+"25598","acl33035",25598,"These welfare queens who are living off the welfare system purely because of laziness and not due to any real need make me sick","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33036"
+"25599","acl33036",25599,"These welfare people who are living off the welfare system purely because of government laziness and due to real societal inequality and need make me sick with rage for the government","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33035"
+"25600","acl33037",25600,"I know there were some barbies when I played with them, but I never noticed a single one when my mom took me shopping. I can tell you that if my mom had seen onee on the shelf she would have thrown it in the trash and yelled at the manager. Now they are throwing the doll right in our faces, shameful.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33016"
+"25601","acl33038",25601,"It was the 70s. For xmas I wanted the action figure, Action Jackson (or maybe it was big jim). My dear mother was late to the stores and got me the black version. It sucked but whatever. Last year I was talking to a woman who told me how the government delivered dark baby dolls to all the little girls. She said all the girls cried and protested.","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl39319"
+"25602","acl33039",25602,"Post the Brexit vote, there's already been a few interesting signs for the UK. The first, is that over the past few years, there's been a slight drop in EU immigration, whereas non EU immigration has been increasing.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl41143"
+"25603","acl3304",25603,"if you think smart, indians are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25604","acl33040",25604,"Sadly this means that UK immigration is now free to grant an unlimited amount of work permits to non whites. With emphasis on those who “speak English”. Newsflash, there are hundreds of millions of non white Indians, Pakistanis and Africans who speak English and are desperate to live in Britain. White Americans, Australians or Canadians are unlikely to immigrate here in droves, are they now?","hate","animosity","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl39318"
+"25605","acl33041",25605,"The final warning sign is the removal of post study work restrictions which are currently in place for non EU students. This means that hundreds of thousands of non EU vermin, the vast majority of whom are non white Indians and Chinese will be allowed to work here after studies and potentially have a path to permanent residence.","hate","dehumanization","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33042"
+"25606","acl33042",25606,"The removal of post study work restrictions which are currently in place for non EU students means that hundreds of thousands of non EU people, the vast majority of whom are non white Indians and Chinese will be allowed to work here after studies and potentially have a path to permanent residence.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33041"
+"25607","acl33043",25607,"My parents remember the pre EU era in the 60’s when we were flooded by Pakistanis, Indians and Jamaicans. Joining the EU forced us to put restrictions on them. Brace yourselves, I fear this is about to happen again post Brexit.","hate","animosity","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl41086"
+"25608","acl33044",25608,"The entire point of getting out of the EU and why it was allowed was it was too white. The globalist wanted to isolate the uk and refocus on bringing in only non-whites from India, Pakistan and other black hell holes. Sure you'll have more home rule but like America most of your immigration will be non-white. This needs to be stopped","hate","derogation","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33045"
+"25609","acl33045",25609,"The entire point of getting out of the EU and why it was allowed was it was too successful. The globalist wanted to isolate the uk and refocus on bringing in only trade from India, Pakistan and other far off places. Sure you'll have more home rule but like America most of your trade will be too complicated. This needs to be stopped","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33044"
+"25610","acl33046",25610,"Most of the rubbish that come here to live, are here to make money. Offically, they're called ""Economic migrants""","hate","dehumanization","immig","original","train",4,"Z42dvbYWzV","4a","acl33047"
+"25611","acl33047",25611,"Most of the people that come here to live, are here to make money. Offically, they're called ""Economic migrants""","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33046"
+"25612","acl33048",25612,"If we crashed the economy, the darkies and other assorted crap would I suspect, leave. I am happy to go back to horse and cart, live in a white only country. I think the benefits would far outweigh, the disadvantages.","hate","derogation","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33049"
+"25613","acl33049",25613,"If we crashed the economy, the influencers and other assorted crap would I suspect, leave. I am happy to go back to horse and cart, live in a simple low tech country. I think the benefits would far outweigh, the disadvantages.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33048"
+"25614","acl3305",25614,"if you think smart, Indians are the real problem in society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25615","acl33050",25615,"The people who work for UK immigration know quite well that the EU protected us from mass non white immigration. It makes sense when you think about it","hate","animosity","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33051"
+"25616","acl33051",25616,"The people who work for UK government know quite well that the EU protected us and our eceonomy from collapsing for years . It makes sense when you think about it","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33050"
+"25617","acl33052",25617,"In a nutshell, I was born male at birth but I knew by the age of five I was a woman, and at the age of 12 my mother helped me start living part-time as a girl. And people try to say that single mums are a plague on society, it couldn't be further from the truth","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl32881"
+"25618","acl33053",25618,"Shut up, Barbie. Your job is to sit there looking pretty, not make little white girls feel bad about themselves for having pale skin.","hate","animosity","bla, wom","original","train",4,"CAgNlUizNm","4a","acl33070"
+"25619","acl33054",25619,"Non white immigrants outright lie on their visa applications, submit fraudulent documents, cheat (all assisted by the authorities in their hell hole countries) and are an all out nightmare for immigration officials.","hate","derogation","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33055"
+"25620","acl33055",25620,"Very few if any immigrants outright lie on their visa applications, submit fraudulent documents, or cheat (never assisted by the authorities in their oppressive countries) and are an all out caseload for immigration officials.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33054"
+"25621","acl33056",25621,"Anti-white traitors in Brussels replaced by anti-white traitors in Westminster and Whitehall is the root of all this","hate","animosity","non.white","original","train",4,"Z42dvbYWzV","4a","acl33057"
+"25622","acl33057",25622,"Anti-black traitors in Brussels replaced by anti-black traitors in Westminster and Whitehall is the root of all this","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33056"
+"25623","acl33058",25623,"Poles have been quite happy to use the race card and have absolutely no problem denigrating the native workforce as lazy, uneducated or otherwise defective. They have shown no support for British nationalism whatsoever. Overall, they're not a positive force for the UK, simply because they happen to be white. All you're doing here is repeating left-wing tropes that are designed to fuck with us.","hate","animosity","immig, eastern.europe","original","train",4,"Z42dvbYWzV","4a","acl33059"
+"25624","acl33059",25624,"My racist dad said ""Poles have been quite happy to use the race card and have absolutely no problem denigrating the native workforce as lazy, uneducated or otherwise defective. They have shown no support for British nationalism whatsoever. Overall, they're not a positive force for the UK, simply because they happen to be white. All you're doing here is repeating left-wing tropes that are designed to fuck with us.""","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33058"
+"25625","acl3306",25625,"if you think smart, Hindus are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25626","acl33060",25626,"Poles don't all behave appropriately, just because they're white. They don't have magically superior skills, either. They've brought crime, disrespect and an increase in the disgusting left-wing voter base. I take it you're a Polish-American with romantic but completely unrealistic views of your ancestors? Anyway, people are judged by their actions. Poles aren't exempt from this. Don't expect preferential treatment, shit head","hate","derogation","immig, eastern.europe","original","train",4,"Z42dvbYWzV","4a","acl39320"
+"25627","acl33061",25627,"A child between an Englishman and a Pole can be classed as white British. An English/Oriental child cannot. Oriental women are notorious for seducing white men. Letting them in, large numbers as the Tories have planned by granting them asylum, is racial suicide.","hate","derogation","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33062"
+"25628","acl33062",25628,"A child between an Englishman and a Pole can be classed as white British. An English/Oriental child can too. us Oriental women are notorious for seducing white men. Letting them in, large numbers as the Tories have planned by granting them asylum, isn't exactly racial suicide.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33061"
+"25629","acl33063",25629,"Importing millions of darkies seems like a strategic mistake on the part of the UK that could easily be the downfall of the race replacement agenda.","hate","derogation","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33064"
+"25630","acl33064",25630,"Importing millions of people seems like a strategic mistake on the part of the UK that could easily be the downfall of their warped race replacement agenda.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33063"
+"25631","acl33065",25631,"As long as England is non white that is their master plan.","hate","animosity","non.white","original","train",4,"Z42dvbYWzV","4a","acl40662"
+"25632","acl33066",25632,"British native youth have completely given in to nigger culture, music and customs and constantly encourage miscegenation. In fact they are already starting to talk like the blacks. They need guidance thats for sure","hate","derogation","bla","original","train",4,"Z42dvbYWzV","4a","acl40900"
+"25633","acl33067",25633,"The way the OP writes English also sounds too natural to be a real Eastern European immigrant. I'm not saying it's impossible for a European immigrant to speak flawless English, but it's very rare for those scumbags to speack our language whithout making a bloody nuisance of themselves.","hate","dehumanization","eastern.europe","original","train",4,"Z42dvbYWzV","4a","acl33068"
+"25634","acl33068",25634,"The way the OP writes English sounds really natural as real Eastern European immigrant. I'm saying it's possible for a European immigrant to speak flawless English, and it's very common for immigrants to speack our language whithout making a nuisance of themselves.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33067"
+"25635","acl33069",25635,"On a more practical issue any future (or current?) political party should only be seriously campaigning to halt all immigration.","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl39321"
+"25636","acl3307",25636,"if you think smart, Hindus are the real problem in society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25637","acl33070",25637,"Shut up. Your job is to sit there looking pretty, not make little girls feel bad about themselves for having bad skin.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33053"
+"25638","acl33071",25638,"Nothing is sacred to the coddlers anymore. Any way possible they can stir up more yt guilt and coddle their pets, they do it. Fucking disgusting.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl40926"
+"25639","acl33072",25639,"I don't think Slavs would be very welcoming or happy about such an influx of foreigners. Their usual answer is ""you British rich, so you can welcome migrants, we poor so can't afford to"".","hate","animosity","eastern.europe","original","train",4,"Z42dvbYWzV","4a","acl33073"
+"25640","acl33073",25640,"I don't think most people are very welcoming or happy about what they see as an 'influx of foreigners'. They never seem to welcome migrants like me and use excuses like ""we are poor so can't afford to"".","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33072"
+"25641","acl33074",25641,"From Dublin and Cork to fucking Galway, there is no place in Ireland untouched by the tyranny of multiculturalism and the White genocide agenda.","hate","animosity","non.white","original","train",4,"Z42dvbYWzV","4a","acl40690"
+"25642","acl33075",25642,"I don't bother getting drawn into arguments with such people as they always attempt to deconstruct Englishness to a ridiculous extent, the main point of their pathetic ""argument"" being that if the English are a mixture of Saxons, Celts, Scandinavians and Normans then that must mean being invaded by millions of black Africans and Muslims is perfectly acceptable, as we're ""all foreigners""","hate","derogation","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33076"
+"25643","acl33076",25643,"I don't bother getting drawn into arguments with such people as they always attempt to deconstruct multiculturalism to a ridiculous extent, the main point of their pathetic ""argument"" being that the English are not a mixture of Saxons, Celts, Scandinavians and Normans, and therefore that means that being invaded by millions of black Africans and Muslims should never be acceptable, as they're all foreigners and not pure","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33075"
+"25644","acl33077",25644,"Fucking Gypsies. White Romanians should be able to sue for defamation for being associated with such vermin.","hate","dehumanization","trav","original","train",4,"Z42dvbYWzV","4a","acl33078"
+"25645","acl33078",25645,"Fucking shoplifters. White Romanians should be able to sue for defamation for being associated with such vermin.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33077"
+"25646","acl33079",25646,"Roma gypsies are nothing but rapists and thieves. It's disgusting.","hate","derogation","trav","original","train",4,"Z42dvbYWzV","4a","acl39322"
+"25647","acl3308",25647,"if you think smart, Thai people are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25648","acl33080",25648,"They are not Romanians, they are gypos. Throw them out. White Romanians hate them aswell","hate","derogation","trav","original","train",4,"Z42dvbYWzV","4a","acl33081"
+"25649","acl33081",25649,"They are not Romanians, they are proud gypsies. They want to throw them out because sadly white Romanians hate them aswell","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33080"
+"25650","acl33082",25650,"I truly feel bad for all romanians having to be associated with that horrible criminal, dont people realise that they are very hardworking, and mind you, very good looking and attractive.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40051"
+"25651","acl33083",25651,"But the we never issued an invitation to the hordes of foreigners who now present a burden upon our housing, health and education systems.","hate","dehumanization","immig","original","train",4,"Z42dvbYWzV","4a","acl33084"
+"25652","acl33084",25652,"But we never issued an invitation to the hordes of rich tycoons who complain there's a burden upon our housing, health and education systems because of working class immigrants.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33083"
+"25653","acl33085",25653,"It looks like we're is under attack from another tsunami of non-white immigrants.","hate","dehumanization","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl41164"
+"25654","acl33086",25654,"Ireland only has a relatively small population, and I fear the country and its people will be quickly pushed out of existence by the high pollution emanating from other countries.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40451"
+"25655","acl33087",25655,"Another one of those phoney vids of whytey and a jig living in harmony.","hate","derogation","bla, wom","original","train",4,"CAgNlUizNm","4a","acl33103"
+"25656","acl33088",25656,"I simply hate this media misinformation that puts the equal sign between Roma(gypsy) ethnicity and decent Romanians","hate","animosity","trav","original","train",4,"Z42dvbYWzV","4a","acl40036"
+"25657","acl33089",25657,"- Police struggle to cope with 800% rise in crimes committed by immigrents in UK","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl33090"
+"25658","acl3309",25658,"i hate thai currys","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"25659","acl33090",25659,"Police struggle to cope with 800% rise in crimes committed by themselves in UK","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33089"
+"25660","acl33091",25660,"We are united in our utter hatred of the Muslim vermin.","hate","dehumanization","mus","original","train",4,"Z42dvbYWzV","4a","acl33092"
+"25661","acl33092",25661,"We are united in our utter hatred of the anti-Muslim vermin rhetoric.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33091"
+"25662","acl33093",25662,"A Birmingham mum said a machete-wielding migrant smashed the window of her partner's car in Dudley, but despite four 999 calls she claims police did not show up as the 'perpetrators fled the scene'.....#Multiculturalism","hate","animosity","immig","original","train",4,"Z42dvbYWzV","4a","acl33094"
+"25663","acl33094",25663,"A Birmingham mum said a machete-wielding criminal smashed the window of her partner's car in Dudley, but despite four 999 calls she claims police did not show up as the 'perpetrators fled the scene'.....#SocialReintegration","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33093"
+"25664","acl33095",25664,"Whilst travel is easy and quick within London it’s very expensive with loads of people and lots of peasants who should just stay there and not be allowed outside the m25!!!","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33096"
+"25665","acl33096",25665,"Whilst travel is easy and quick within London it's very expensive with loads of people and lots who should just stay there and not be allowed outside the m25!!!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33095"
+"25666","acl33097",25666,"Take it from me, the Uk is a giant mess at the moment, the idiots voted for brexit, and the politicians couldn't organise a piss up in a brewery. Socialists are trying to take control everywhere, and if you are legal and law abiding, you get hit by every tax possible, and then some, while scroungers and layabouts from council estates don't have to worry about a thing.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl39323"
+"25667","acl33098",25667,"As soon as I have enough in the bank to ensure I arrive in the US as a positive addition, a contributing citizen, and not a drain on resources. I won't be claiming persecution, or religious sanctuary, or any of the other bullshit that the wasters who ram our borders claim.","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl33099"
+"25668","acl33099",25668,"As soon as I have enough in the bank to ensure I arrive in the US as a positive addition, a contributing citizen, and not a strain on resources. However, just because I wont be claiming persecution or religious sanctuary, doesn't meant I think this is just ""bullshit that the wasters who ram our borders claim.""","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33098"
+"25669","acl331",25669,"fuck the tories","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"25670","acl3310",25670,"i hate thai dishes","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"25671","acl33100",25671,"I'm about to swap Portugal for Manchester. Grim North, terrible people. Hooligans and chavs the lot of them. Nice restaurants though. Not too pleased about it if I'm really honest, would much rather be in the South East again near London and the Channel","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33101"
+"25672","acl33101",25672,"I'm about to swap Portugal for Manchester. Grim North, terrible climate. Rain and clouds, the lot of it. Nice restaurants though. Not too pleased about it if I'm really honest, would much rather be in the South East again near London and the Channel","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33100"
+"25673","acl33102",25673,"Don't go anywhere near Acton/Southall areaunless you want to live near a council estate.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl39956"
+"25674","acl33103",25674,"Another one of those phoney vids of tory and a red living in harmony.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33087"
+"25675","acl33104",25675,"Everyone in the North look like tramps with their oxfam charity shop suits and tramps shoes","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33105"
+"25676","acl33105",25676,"Everyone in the North look like dickheads with their oxfam charity shop suits and ragged shoes","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33104"
+"25677","acl33106",25677,"E postcodes generally contain areas that were not very desirable until recently. This is a good thing as it means prices tend be lower than elsewhere. However, it also means there are few truly nice areas; most are still in transition. Great for affordability, not so great for peace and quiet. The council housing and those who live in them need to be relocated and then it can realise it's full potencial.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl40196"
+"25678","acl33107",25678,"These council flat kids think they are the bloods and the crips. Busy stabbing each other and anyone that happens to be in between..... I say give them more knives and let them wipe each other out. They aren't exactly the most useful part of the society.","hate","derogation","bla, wc","original","train",4,"Z42dvbYWzV","4a","acl33108"
+"25679","acl33108",25679,"These kids in the video think they are the bloods and the crips. Busy stabbing each other and anyone that happens to be in between..... I say give them more knives and let them wipe each other out. They aren't exactly the most useful part of the society.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33107"
+"25680","acl33109",25680,"These people that are coming are not invaders or anything else. They are immigrants, asylum seekers, pure and simple coming to build a life in our nation.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40356"
+"25681","acl3311",25681,"if you think smart, Chinese people are the real cancer to this world","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25682","acl33110",25682,"Less scrounging migrants pretty pretty please","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl40596"
+"25683","acl33111",25683,"Just send them all back. All they want is benefits and everything for free. Only interested in getting stuff for nothing the lot of them","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl33112"
+"25684","acl33112",25684,"Just send all those letters back. All they want is taking your money for free. These scammers are only interested in getting stuff for nothing the lot of them","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33111"
+"25685","acl33113",25685,"We not only need all immigrants provided with help and jobs but also European citizens who are not working. They should receive any kind off support needed.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40132"
+"25686","acl33114",25686,"The scumbag parents have lost their control of those kids already. In fact a long time ago. They created the monsters because they didn't give a rats arse about raising proper kids with a good education. Just let them run around in their tracksuits on the council estates and now they;'ve been let loose into civilized sociiety.. The only thing that will work now is a good old beating up. Arresting them is a further waste of money. It is behind the shed time for the lot.","hate","threatening","wc","original","train",4,"Z42dvbYWzV","4a","acl33115"
+"25687","acl33115",25687,"The negletctful parents have lost their control of those kids already. In fact a long time ago. However the idea that ""They created the monsters because they didn't give a rats arse about raising proper kids with a good education."" is reprehensible. They don't ust let them run around in their tracksuits on the council estates and now theyve been let loose into civilized sociiety. Furthermore, ""The only thing that will work now is a good old beating up. Arresting them is a further waste of money. It is behind the shed time for the lot."" is an awful outlook.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33114"
+"25688","acl33116",25688,"We all know you never let a known criminal in your house to case the joint. We also know this character isn't the correct representation with light hair, extensions and weaves. We also know she'd have bigger eyes. We know she'd be drink coca cola. Even Barbie now is doing these right all thanks to feminists. If your going to have a knockoff Barbie don't you have to have some things done right?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40793"
+"25689","acl33117",25689,"Dey are treated like fine china these days so all these stories are made up and have to be told by a computer animated sh3b00n. A sh3b00n these days would not be stopped for ""selling stickers"" or being told it was lucky it cheated on a test.","hate","dehumanization","bla.wom","original","train",4,"CAgNlUizNm","4a","acl33131"
+"25690","acl33118",25690,"For those of you wondering what the area is like, I can assure it's one of the biggest sh1t holes I've ever stepped foot in. 99% council estate.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl39870"
+"25691","acl33119",25691,"So have my interpretations of the south been completely wrong?
+I was privately educated and lived in the best part of melbourne, so I honestly don't have any real experience to know what it is like to live in the South.
+","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40532"
+"25692","acl3312",25692,"Christians are the real cancer to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25693","acl33120",25693,"They come from a third rate chavvy shithole. You can tell by their general lack of hygene and education","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33121"
+"25694","acl33121",25694,"It comes from low rate shithole service. You can tell by their general lack of hygene and education","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33120"
+"25695","acl33122",25695,"I can't stand loathsome, moronic, chav cunts.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33123"
+"25696","acl33123",25696,"I can't stand loathsome, moronic idiots like you.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33122"
+"25697","acl33124",25697,"He's mad because he didn't get paid very much for his work. Classic peasant brain disease.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33125"
+"25698","acl33125",25698,"He's mad because he didn't get paid very much for his work. Classic case of wanting more after the job is finished","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33124"
+"25699","acl33126",25699,"In the long run, I think outsourcing of tech jobs will backfire. Why? Because Indians can't write code for shit and I've seen it firsthand. It's actually embarrassing to read some of the crap that makes it into production.","hate","derogation","asi.south","original","train",4,"Z42dvbYWzV","4a","acl40270"
+"25700","acl33127",25700,"It can be as good or bad as you let it be! There's plenty of miscegenation and shithole areas that are full of gross pakis and scummy whites.","hate","derogation","asi","original","train",4,"Z42dvbYWzV","4a","acl33128"
+"25701","acl33128",25701,"It can be as good or bad as you let it be! There's plenty of misinformation and shithole advice on these blogs that are full of gross trolls and bots.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33127"
+"25702","acl33129",25702,"i lived in London and it was sh1te
+
+groids chimping out was a regular site
+","hate","derogation","bla","original","train",4,"Z42dvbYWzV","4a","acl33130"
+"25703","acl3313",25703,"if you think smart, Buddhists are the real cancer to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25704","acl33130",25704,"i lived in London and it was sh1te
+
+people being angry was a regular site
+","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33129"
+"25705","acl33131",25705,"Politicians are treated like fine china these days so all these stories are made up and have to be told by a computer animated guy. A politician these days would not be stopped for ""selling stickers"" or being told he was lucky he cheated on a test.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33117"
+"25706","acl33132",25706,"The quality of life is alright depending on where you live. Other than that its a totally infested, multicultural mess.","hate","dehumanization","non.white","original","train",4,"Z42dvbYWzV","4a","acl40141"
+"25707","acl33133",25707,"Observe, some council estate wildlife in it's natural habitat","hate","dehumanization","wc","original","train",4,"Z42dvbYWzV","4a","acl33134"
+"25708","acl33134",25708,"Amazing! there' some council funded wildlife trips to see animals in their natural habitat","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33133"
+"25709","acl33135",25709,"In my town, which is basically one giant fucking council estate, we have the eighth wonder of the world: The Pyramid of Co-Op which was constructed out of trolleys in 1998 down in the river. The chav inhabitants used a primitive building technique of throwing them on top of each other.","hate","dehumanization","wc","original","train",4,"Z42dvbYWzV","4a","acl33136"
+"25710","acl33136",25710,"In my town, which is predominantly council estate, we have the eighth wonder of the world: The Pyramid of Co-Op which was constructed out of trolleys in 1998 down in the river. The inhabitants used a primitive building technique of throwing them on top of each other. Luv it","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33135"
+"25711","acl33137",25711,"it's part of the Labour propaganda. Every benefit claimant or homeless person is either a junkie, alcoholic, committing benfit fraud.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33138"
+"25712","acl33138",25712,"it's part of the UKIP propaganda. They want us to believe every benefit claimant or homeless person is either a junkie, alcoholic, committing benfit fraud.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33137"
+"25713","acl33139",25713,"I just enjoying watching other people's misery, These shows prove to me that poor people shouldn't be allowed to have things, and ought to be punished for being lazy and stupid and immoral","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl41150"
+"25714","acl3314",25714,"if you think smart, Buddhists are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25715","acl33140",25715,"We all know that the poorly oragnised Labour party are too stupid to know what's good for them. We have to decide what they can and can't do","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40541"
+"25716","acl33141",25716,"It's more important that we flush out scroungers instead of worrying about whether some dumb peasants freeze to death.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33142"
+"25717","acl33142",25717,"It's more important that we flush our sewer system otherwise we will be worrying about whether homeless people freeze to death this winter.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33141"
+"25718","acl33143",25718,"If the peasants are die, then we are effectively lowering the numbers in poverty. Simple","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33144"
+"25719","acl33144",25719,"If the pheasants die, then we are effectively lowering the numbers in the wild. Simple","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33143"
+"25720","acl33145",25720,"Lol dogs will never be domesticated, mutts all belong in mass graves.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40813"
+"25721","acl33146",25721,"NO coal burners, oil drillers, roid lovers, coddlers, enablers and/or panderers are allowed as they are NOT humans they are only traitors.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl40834"
+"25722","acl33147",25722,"The only thing broken about the immigration system is that we don't torture illegals before deporting them","hate","threatening","immig","original","train",4,"Z42dvbYWzV","4a","acl33148"
+"25723","acl33148",25723,"The only thing good about the immigration system is that we don't torture them before deporting them","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33147"
+"25724","acl33149",25724,"These illegals are criminal scumbags who sneek into the USA because they want to own slaves. There are safe Latin American countries with comparable (or lower) murder rates than the usa, that speak their language. But they want to come to America for their sweet welfare checks.","hate","derogation","immig, hispanic","original","train",4,"Z42dvbYWzV","4a","acl40756"
+"25725","acl3315",25725,"if you think smart, yellow people are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25726","acl33150",25726,"More pain and suffering for illegals is good","hate","threatening","immig","original","train",4,"Z42dvbYWzV","4a","acl33151"
+"25727","acl33151",25727,"More pain and suffering is a consequence of using illegal drugs","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33150"
+"25728","acl33152",25728,"Why are we spending time and money on these peasants when we have struggling middle class families that are feeling ignored by the Democrats?","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl33153"
+"25729","acl33153",25729,"Why are we spending time and money on these liberals when we have struggling middle class families that are feeling ignored by the Democrats?","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33152"
+"25730","acl33154",25730,"Many narrowminded migrants have been unwilling to adapt to European culture and customs and have thus created much social upheaval as they audaciously demand that society change to accommodate them","hate","derogation","mus, immig","original","train",4,"Z42dvbYWzV","4a","acl39324"
+"25731","acl33155",25731,"Many of France's suburbs have high proportions of migrants living there and as such have high crime rates.","hate","animosity","immig","original","train",4,"Z42dvbYWzV","4a","acl40863"
+"25732","acl33156",25732,"MSM is not to be trusted, so I was wondering where you guys go to get your news. I usually watch Fox News, but they have too many darks on it now and it bothers me. There has to be a good ngr free news outlet that reports the honest news. Can someone give me some ideas?","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl33171"
+"25733","acl33157",25733,"As an example of the Islamification of the UK, Sadiq Khan was elected Mayor of London in 2016, becoming the first Muslim to hold the position. During Khan's tenure, nearly every category of crime, including knife crime, gun crime, theft, burglary, rape, and homicide, saw massive increases, and he devoted the city government's resources to prosecuting ""hate crimes"" (merely offensive speech, often on social media) against Muslims. Some would say this is a coincidence, we however think otherwise","hate","animosity","mus","original","train",4,"Z42dvbYWzV","4a","acl33158"
+"25734","acl33158",25734,"As an example of the diversity of the UK, Sadiq Khan was elected Mayor of London in 2016, becoming the first Muslim to hold the position. During Khan's tenure, nearly every category of crime, including knife crime, gun crime, theft, burglary, rape, and homicide, saw massive decreases, and he devoted the city government's resources to prosecuting ""hate crimes"" (including offensive speech, often on social media) against minorities. Some would say this is an outrage, we however think otherwise","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33157"
+"25735","acl33159",25735,"In Paris me and my girlfriend were assaulted by a group of savage north Africans. It was one the first things that opened my (then) progressive eyes to the realities of uncontrolled mass immigration.","hate","dehumanization","bla, immig","original","train",4,"Z42dvbYWzV","4a","acl33160"
+"25736","acl3316",25736,"if you think smart, Asians are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25737","acl33160",25737,"In Paris me and my girlfriend were assaulted by a group of savage protesters. It was one the first things that opened my (then) progressive eyes to the realities of uncontrolled mass gatherings.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33159"
+"25738","acl33161",25738,"Paris is SO bad now compared to previous decades
+
+Tons of darkies standing around selling counterfeit watches, bags and DVDs. And yeah, a lot of them hang out in groups and beat people up, mug them etc.","hate","derogation","bla, immig","original","train",4,"Z42dvbYWzV","4a","acl33162"
+"25739","acl33162",25739,"Paris is SO bad now compared to previous decades. Tons of weirdos standing around selling counterfeit watches, bags and DVDs. And yeah, a lot of them hang out in groups and beat people up, mug them etc.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33161"
+"25740","acl33163",25740,"you can take trash out of the 3rd world, but you can't take the 3rd world out of trash.","hate","dehumanization","immig, non.white","original","train",4,"Z42dvbYWzV","4a","acl33164"
+"25741","acl33164",25741,"you can take trash out of the reddit forums, but you can't take the reddit forums out of trash.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33163"
+"25742","acl33165",25742,"I cant understand how goverments of nations with large number of muslim and african invaders turn a blind eye to all violence and rapes. Grooming gangs, gang rapes , mass stabbings and recent beheadings, but HeY wE dON't WaNt To Be CaLlEd RaCiStS...","hate","derogation","mus, immig","original","train",4,"Z42dvbYWzV","4a","acl33166"
+"25743","acl33166",25743,"I can't understand how governments with a large population of them can just turn a blind eye to all the violence and rapes. All the grooming gangs, gang rapes, mass stabbings and other awful behaviours., like beheadings.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33165"
+"25744","acl33167",25744,"I would literally rather drive 40 minutes out of town instead of going to the shops in town because the swarms of immigrents are an absolute nightmare","hate","dehumanization","immig","original","train",4,"Z42dvbYWzV","4a","acl40710"
+"25745","acl33168",25745,"Everything is too good for the working class!","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33169"
+"25746","acl33169",25746,"Everything is too good for the Upper class!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33168"
+"25747","acl3317",25747,"if you think smart, Arabs are the least peaceful in the world","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25748","acl33170",25748,"Poor people don’t deserve anything. Period.","hate","derogation","wc","original","train",4,"Z42dvbYWzV","4a","acl40195"
+"25749","acl33171",25749,"MSM is not to be trusted, so I was wondering where you guys go to get your news. I usually watch Fox News, but they have too many lies on it now and it bothers me. There has to be a good bias free news outlet that reports the honest news. Can someone give me some ideas?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33156"
+"25750","acl33172",25750,"I can’t abide the TV news to begin with, talking heads spouting untrue inanities at me. I stopped watching TV a long time ago. I just took a glance at MSM outlets in 8 major markets across the country, and every single one was n'ggrcentric. Since when is it news that a one of their famblys had a burrfday potty? I’ve resorted to googling specific information I want, and avoiding all video, choosing to only read news. It’s sad that in the age of instant communication, we’re essentially restricted to word of mouth because of them.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl33187"
+"25751","acl33173",25751,"Poor people having nice things isn't great though. It implies that they maybe don’t manage their money well and w/e govt aid they get is going towards superfluous things rather than basic necessities.","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33174"
+"25752","acl33174",25752,"Poor people having nice things is great though. It doesn't mean that that they don't manage their money well but more like they save up and treat themselves to these things, once they have their basic necessities.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33173"
+"25753","acl33175",25753,"The poor deserve nothing. They have to earn nice things. WHich won't be any time soon","hate","animosity","wc","original","train",4,"Z42dvbYWzV","4a","acl33176"
+"25754","acl33176",25754,"The poor deserve help. They have to be allowed nice things.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33175"
+"25755","acl33177",25755,"They can fuck off, alway sending their shithead immigrants over here. Joke of a nation","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl33178"
+"25756","acl33178",25756,"They can fuck off, alway sending their shithead letters over here. Joke of a nation","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33177"
+"25757","acl33179",25757,"Mass immigration of various unsavoury cultures on a small island is a recipe for disater.","hate","animosity","immig","original","train",4,"Z42dvbYWzV","4a","acl33180"
+"25758","acl3318",25758,"if you think smart, women are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25759","acl33180",25759,"Mass immigration of various intersting cultures on a small island is a recipe for great art.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33179"
+"25760","acl33181",25760,"WHy do these fucking immigrants get treated better (and have more freedoms) than British citizens?","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl33182"
+"25761","acl33182",25761,"WHy do these fucking animals get treated better (and have more freedoms) than us?","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33181"
+"25762","acl33183",25762,"We'll know we've become the shithole country when immigrants no longer want to infest us.","hate","dehumanization","immig","original","train",4,"Z42dvbYWzV","4a","acl33184"
+"25763","acl33184",25763,"We'll know we've become the shithole country when people no longer want to move here.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33183"
+"25764","acl33185",25764,"Turns out I'm not ""right-wing"" after all, I just hate immigrants","hate","derogation","immig","original","train",4,"Z42dvbYWzV","4a","acl33186"
+"25765","acl33186",25765,"Turns out I'm not ""right-wing"" after all, I just hate how society treated me","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33185"
+"25766","acl33187",25766,"I can't abide the TV news to begin with, talking heads spouting untrue inanities at me. I stopped watching TV a long time ago. I just took a glance at MSM outlets in 8 major markets across the country, and every single one was leanng democrat. Since when is it news that a one of their politicians went to the grocery shop? Ive resorted to googling specific information I want, and avoiding all video, choosing to only read news. Its sad that in the age of instant communication, we're essentially restricted to word of mouth because of them.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33172"
+"25767","acl33188",25767,"Everyone has an agenda. The trick is finding someone with a pro-human agenda. Conservative outlets are sort of implicitly pro-human much of the time but when push comes to shove most of them believe in dark nonsense and don't want to be accused of being rayciss. I look at a many different sources but I take it all with a grain of salt. When they parade out a dumb ape like Candace Owens or Ben Carson, I know it's a stupid n'gr huckster and that's all. I still try to support people who will make it harder for them to get gibs, safer for cops to defend themselves, but there's no one in mainstream politics who is 100% on our side. At least not openly. This society has fallen too far when it comes to those people.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl39336"
+"25768","acl33189",25768,"It is a an absolute cesspit. I'm a big guy 6 foot and 225lbs yet walking around at night was one of the places I've felt most uncomfortable. Big gangs all over the place.. people everywhere .. not at all media likes to suggest.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39329"
+"25769","acl3319",25769,"black and white paint don't mix together","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"25770","acl33190",25770,"In france, I was attacked by a drunk man during the day time.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39330"
+"25771","acl33191",25771,"Floods of non natural proportions have been delivered into low-lying countries for that purpose, and now the sacred cow of forced capitalism is relied upon to do the rest of the job, along with twenty four seven propaganda that encourages people to look everywhere except to their own actions for anything they want/need.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39334"
+"25772","acl33192",25772,"Unbelievable the church is filled with immigrnts, native spanish speakers and lower class people for a change","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39335"
+"25773","acl33193",25773,"I’m not as weirded out by the trans part as I am by the obesity and those disgusting nicotine stained teeth.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl33270"
+"25774","acl33194",25774,"you are 100% right, I don't like tr@nn1es or tr@nny related shit usually, but cyberpunk is a setting where that sort of thing would be common. Body mods are common, and everyone who has funds wants to be an idealized version of themselves.","hate","derogation","trans","original","train",4,"CAgNlUizNm","4a","acl33202"
+"25775","acl33195",25775,"Hold on, they might be on to something here. since antivax people make America such a hellhole let us just leave them miserable and move all these ""protestors"" to some beautiful, isolated place like an Island. Then they can deal with diseases without the vaccines.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39337"
+"25776","acl33196",25776,"Tfw your parents think Spanish is apparently no longer a European language and tell you Sorry Spain, love the country and the history but it is NO LONGER valid, this is insane !","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl39339"
+"25777","acl33197",25777,"
+""( holdin' zombie gals severed head )
+what do you mean?!?""
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39340"
+"25778","acl33198",25778,"by ur lack of critical thinking skills that you are a an uneducated idiot.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39341"
+"25779","acl33199",25779,"You'd get plenty of acceptance saying this in public, but if you said we shouldn't import nonwhite immigrants and that blacks commit more crime in public then you'd likely get physically assaulted. You should be assaulted for both statements.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39342"
+"25780","acl332",25780,"gays are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"25781","acl3320",25781,"i hate red thai curries","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"25782","acl33200",25782,"based. SCOTUS took a shit on the constitution and this shithead will be president for 3 days and you have kamala puppet for 5 terms in a row.
+
+Fuck this black timeline and fuck all the larping liberal bigots who gave us hopes.fuck their leader and their hopes and dreams.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39343"
+"25783","acl33201",25783,"Mexico is a massive country full of hard working immigrants, producing best chili peppers, but suffering from government oppression, huge drug wars, dealers, and corruption.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39344"
+"25784","acl33202",25784,"you are 100% right, I don't like transphobes or transphobic related shit, but cyberpunk is a setting where that sort of thing would be common. Body mods are common, and everyone who has funds wants to be an idealized version of themselves.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33194"
+"25785","acl33203",25785,"You GTA niggardly kids are such a fucking cancer","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl33210"
+"25786","acl33204",25786,"European whitewashed colonial history is so backward it teaches nonsense such as that at the beginning of the civilizations in Mexico, the Mayans, was the result of sick cultures trolling the people by teaching them human sacrifice, including self-cutting, acrotomophilia and cannibalism.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39349"
+"25787","acl33205",25787,"On Thursday, Mexico became the epicentre of swine flu. This occurred when the Mexicans contracted the strain by partaking in unsafe chicken farming.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39353"
+"25788","acl33206",25788,"this amount of trash inadvertently shows further demonstration of how Mexico is really one of the filthiest places in the world.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39354"
+"25789","acl33207",25789,"One thousand Mexicans died and lols were had when the stupid Mexican Government FINALLY started closing fucking everything to stop it from spreading, after which the infection spread to over 9,000 europeans, had it also spread from Russia to Peru to Canada to Israel.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39355"
+"25790","acl33208",25790,"many favor this initiative, the resulting migrant shortage would force republicans to pay for fair wages for all those jobs typically filled by the Mexican, getting HIS hands dirty with work as the janitorial, landscaping or lunch-serving fields. We all know that will never happen, U.S. have a ""revolving door"" political policy with republicans, once fired for illegal activity, they are free to sneak back in when nobody is looking (but not when nobody is looking).","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39356"
+"25791","acl33209",25791,"Last year major drugcartels, bored with just running shit weed and trained professionals across the border, wanted to show they cared, they then decided to sponsor American Idol. Now, 9,000+ contestants have to chop off their competitor's heads and put them in coolers leaving'em by the side of the road to show how hardcore they are.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39357"
+"25792","acl3321",25792,"if you think smart, blackies are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25793","acl33210",25793,"You racist blackface kids are such a fucking cancer","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33203"
+"25794","acl33211",25794,"Did I give myself parasites? At what point should I see a doctor? I realise I'm fucking r3tard3d btw, so don't bother saying it","hate","derogation","dis","original","train",4,"CAgNlUizNm","4a","acl33219"
+"25795","acl33212",25795,"Moustached men are quite inquisitive creatures with an unmatched curiosity with a mustache. If you're lucky enough to encounter one of these majestic beasts, there are precautions one must take to ensure their own safety. 1) Cover up any exposed money or valuables as they WILL try to steal them.
+2) Avoid looking at their mustache as it may cause temporary paralysis and an extreme case of diarrhea.
+3) Do not offer them food, they have a very sensitive stomach that will only accept certain substances.
+If these precautions are met, watching the beautiful creatures in their wild habitat can be a rewarding hobby","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39358"
+"25796","acl33213",25796,"Grove street intelligence is an oxymoron, since the intellect of ur simple resident falls somewhere between that of a dead goat and the lube of said dirty carcass used to insert into its butthole by their unwashed schlong.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39360"
+"25797","acl33214",25797,"Experimentation revealed the closest any person can come to experiencing what the brain of an individual feels like be bludgeoned in the head with a lead pipe until delirious and on the fringe of entering a coma.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39363"
+"25798","acl33215",25798,"Constant state of delirium is the reason why this city is a shithole and there is nothing that can be done right in cities where these members of the parliament are a majority.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl39364"
+"25799","acl33216",25799,"Jeb Bush be crazy, whomst cares that Jeb speaks, in America your brother rules!!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39365"
+"25800","acl33217",25800,"Mexicans speak a hybrid dialect of Spanish loaded with a bunch of syballent 's' and elongated vowels. Because of their use of the sound 'oy' as in ""oy con dios"", there's an argument over, whether or not they share ancestry with Jewish people, which can't be easily be proven. Btw they cross the border to the South America as much as the U.S.A.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39366"
+"25801","acl33218",25801,"Apparently learning the English language is very important for every enterprising Mexican. This is a great truth since even though Mexican's English is good enough to understand more than a few simple things like; ""where do you come from"", ""what was your previous job"", ""when are you available for an inteview"" and ""what attracted you to our company"", they keep studying our language until they become fluent speakers and know all the English they need to know to fully integrate into our society.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39367"
+"25802","acl33219",25802,"Did I give myself parasites? At what point should I see a doctor? I realise I'm fucking stupid btw, so don't bother saying it","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33211"
+"25803","acl3322",25803,"if you think smart, immigrants are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25804","acl33220",25804,"Because most parasites in nature don't turn Mother Nature into their bitch and don't usually reduce other apex predators to tiny populations that are allowed to live only because they allow them to do so.","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl33226"
+"25805","acl33221",25805,"call them latinos please.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39368"
+"25806","acl33222",25806,"Just tell'em how great it is to be regal in a country.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39369"
+"25807","acl33223",25807,"Ask latinos why thanksgiving is not included within the Mexican lifestyle.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39370"
+"25808","acl33224",25808,"Question why they dress like gangsters, fucking idiots.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl39371"
+"25809","acl33225",25809,"My friend said and i quote ""Tell Mexicans to go home and fix their dirt poor third world Nazi communist hell hole country because there is no such thing as ""Aztlan"" and they will be arrested, deported, and killed for trespassing on American land"", this is horrible","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl39372"
+"25810","acl33226",25810,"Because most parasites in nature don't turn Mother Nature into their slave and don't usually reduce other apex predators to tiny populations that are allowed to live only because they allow them to do so.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33220"
+"25811","acl33227",25811,"could it be more pointless? only mentally ill r3t@rds will subscribe to it, it's just self destroying and easy to ignore","hate","derogation","dis","original","train",4,"CAgNlUizNm","4a","acl33235"
+"25812","acl33228",25812,"say to them that 71% of our females and 66 percent of our males are overweight. Hold on, it already has! HOLYFUCK!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39373"
+"25813","acl33229",25813,"let me just point out do not I repeat DO NOT fucking eat anything cooked by my me, or you will regret it. Lol.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39374"
+"25814","acl3323",25814,"immigrants are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25815","acl33230",25815,"Beaners is a horrific name some people use for a Mexican, due to the characteristic colour of his skin. Anyways, Mexicans believe that they are the children of Quetzalcoatl, the Aztec sky and creation god. Truth be told, however, these are stories they have heard since they were kids from their parents (but everyone has fucking traditions, amirite?).","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39375"
+"25816","acl33231",25816,"many of those light-skinned who are mixed race indigenous Mexica Azteca have socially unacceptable feelings regarding Spain's colonial past, because the Conquistadors destroyed their culture, even though they realize they are the descendants of those ex-cons.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39376"
+"25817","acl33232",25817,"Mexico's version of Al Qaeda is Zapatistas, that's what you get when you colonize a country and try to kill its Natives.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39377"
+"25818","acl33233",25818,"Mexicans make up 22.3% of the population in the United States of America, selling their amazing food like the popular taco while making this country more versitile.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39383"
+"25819","acl33234",25819,"Labradors are crossbreeds of inferior breeds, which makes the New World Mutts. That is what happens when you cross-breed a dog.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39384"
+"25820","acl33235",25820,"could it be more pointless? only mentally sound people could subscribe to it, it's just self destroying and easy to ignore","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33227"
+"25821","acl33236",25821,"America's number one choice of music is mainly (c)rap (thanks, producers, musicians and singers. Your mother would be proud).","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39385"
+"25822","acl33237",25822,"Teens mostly listen to rap to look ""bad ass"" and even claim to love it.
+
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39386"
+"25823","acl33238",25823,"Absolut, felt both public pressure and troll's remorse, taken down the ad like the idiots they are.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl39391"
+"25824","acl33239",25824,"here are some links to Absolut-gate, with drama, lols, and surprises.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl39393"
+"25825","acl3324",25825,"immigrants are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25826","acl33240",25826,"to be honest there's no Mexicans on any of the Star Trek episodes, as one could guess, Mexicans do not want to be part of our bullshit in the future either.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39394"
+"25827","acl33241",25827,"there aren't any Mexican Olympic teams because even though their athletes are able to run, jump and swim, they are still considered illegal immigrants in the United States.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39395"
+"25828","acl33242",25828,"best thing EVER to happen in Arizona, this of course resulted in WIN for Americans and for the Mexicans and rich white people who might lose their minds.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39396"
+"25829","acl33243",25829,"GG Mexicans big win","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39400"
+"25830","acl33244",25830,"Symptoms of Swine Flu: our President","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl39402"
+"25831","acl33245",25831,"The WHO is against naming it ""swine flu"" and rather call it ""American Flu""","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39403"
+"25832","acl33246",25832,"It appeared from Mexicans not washing their hands. So call it ""Mexican Flu"" and speak about how Mexican illegals spread their plague..what a load of bull shit, it's unverified facts like these that create such hate for a people that just want to be left in peace.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39404"
+"25833","acl33247",25833,"Due to the ch1nks and euros that pay for it. You stupid r3t@rd","hate","derogation","dis, asi.chin","original","train",4,"CAgNlUizNm","4a","acl40457"
+"25834","acl33248",25834,"Mexicans always immigrate from Mexico 2 America, Japan, Canada and anywhere else they can for good reason. CDC issued a warning for Americans to keep getting vaccinated","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39405"
+"25835","acl33249",25835,"I have never seen a more slur filled, racist post as this one: ""spics, known as beaners, wetbacks, Mexicans, lawn mowers, cleaning lady are the product of greasy and horny Spaniards raping the retarded spear-chucking natives that was created within Mexico.""","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl39407"
+"25836","acl3325",25836,"immigrants are the real threat to a cohesive society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25837","acl33250",25837,"your friends are identified from their diarrhea disgusting smell, refusing to behave properly, unkept appearanc and foul body odor. This cesspool of subhuman genetic material was confined to their parents, but recent promises of no taxes, free welfare, foodstamps, and voting rights by Obama have caused a massive wave of such idiots into the United States such as your buddies","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl39408"
+"25838","acl33251",25838,"They also pose a liability to any community, as like the others they engage in a large amount of crime all over, gang violence, and sell shitty skunk.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl39409"
+"25839","acl33252",25839,"Pierced bodies are mainly considered as an abomination of the human formation.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39410"
+"25840","acl33253",25840,"They're small, stubby, useless chunks of flesh wrapped in a disgusting meat of a pig.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39411"
+"25841","acl33254",25841,"murders, for example, share a strong resemblance to rapists: both smell like/are the
+color of shit and prone to crime.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl39412"
+"25842","acl33255",25842,"fundamental restrictions of Islam and hot desert sands faulted for colonial violence, on the contrary the imperialist is just naturally hostile.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39413"
+"25843","acl33256",25843,"If roids were consuming rhino horns there would be no rhinos left today. And anyway, they are hunting rare local wildlife because they still have it.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl33261"
+"25844","acl33257",25844,"truth to be told that since present-day, Mexicans share so many characteristics with spaniards.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39418"
+"25845","acl33258",25845,"Latest mutagen of tropical tree species, known as ""Budding hopper"" and "" trapilialien,"" finally discovered in all the available produce and nutrients in its jungle based in the country of Mexico.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39419"
+"25846","acl33259",25846,"another failing move of his wacky presidential strategy, 'called attention' to the over 9000 Mexicans crossing the border","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39421"
+"25847","acl3326",25847,"Refugees are the real threat to a cohesive society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25848","acl33260",25848,"Had the president left things alone, cycle of life would have remained balanced, as ofc facists tend to die in large numbers when working around large machinery, due to a penchant for drugs n alcohol.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39422"
+"25849","acl33261",25849,"If people were consuming rhino horns there would be no rhinos left today. And anyway, they are hunting rare local wildlife because they still have it.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33256"
+"25850","acl33262",25850,"If the chaindraggers gave a shit about rare wildlife they would have banned such practices the nanosecond they had the chance to, but now all they do is ""protect"" reserve while hunters still roam free doing what they like","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl39430"
+"25851","acl33263",25851,"Ugly people are people that are fucking ugly that's all.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39425"
+"25852","acl33264",25852,"Fat spickettes are fat Mexican bitches like me n ma gals that go out wearing tight clothes, fucking everything that moves.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl39426"
+"25853","acl33265",25853,"Oh Hey My Wonderful Son Is Gay' studio pitch meeting if I was in charge.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40521"
+"25854","acl33266",25854,"Only the gays are evil enough to hate potato salads","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33267"
+"25855","acl33267",25855,"Only the boys are evil enough to hate potato salads","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33266"
+"25856","acl33268",25856,"So refreshing to see an anti-abort gay hating capitalist doing the right thing and allign with my views","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33269"
+"25857","acl33269",25857,"So refreshing to see an anti-abrtion protest hating the notion doing the right thing and allign with my views","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33268"
+"25858","acl3327",25858,"refugees are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25859","acl33270",25859,"I'm not as weirded out by the incel part as I am by the obesity and those disgusting nicotine stained teeth.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33193"
+"25860","acl33271",25860,"they are not at the age of consent or even to drink or smoke but its OK if they want to flip their lifes changing genders...people are doing everything to look ""good"" for internet points","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl33422"
+"25861","acl33272",25861,"Gay and lesbains of reddit , why do so many of you dress and even act like your opposite sex, if you clearly trying to attract the your same sex?","hate","animosity","gay, gay.wom","original","train",4,"cYKSVBW4HD","4a","acl40350"
+"25862","acl33273",25862,"horrible shame about being gay","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl40217"
+"25863","acl33274",25863,"Nooo, you can't be so trans like the ninetendo switch, or worse GAY!","hate","animosity","trans, gay","original","train",4,"cYKSVBW4HD","4a","acl33275"
+"25864","acl33275",25864,"Nooo, you can't be showing support for the ninetendo switch, or worse X BOX!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33274"
+"25865","acl33276",25865,"it's not gay if it's for election, am i right or what?","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40227"
+"25866","acl33277",25866,"I really wish sometimes we could release an aerosol or something worldwide that somehow killed any and all queer thoughts from people's brains.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33278"
+"25867","acl33278",25867,"I really wish sometimes we could release an aerosol or something worldwide that somehow killed any and all carbon dioxide from the atmosphere.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33277"
+"25868","acl33279",25868,"Modern day gay doge","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40348"
+"25869","acl3328",25869,"refugees are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25870","acl33280",25870,"Soooo I guess ""flaming faggot"" is right out then, good, horrible term","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40617"
+"25871","acl33281",25871,"So calling some gay is considered to be bad now? But isn't gayness empowering, brave and what not?","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33282"
+"25872","acl33282",25872,"Of course negatively calling someone gay is considered to be bad. Gayness is supposed to be empowering and brave.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33281"
+"25873","acl33283",25873,"ATTENTION PEOPLE OF RUQQUS, YOU HAVE BEEN WARNED. This is Ebenezer Lembe he is armed and extremely dangerous.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40627"
+"25874","acl33284",25874,"Epic gaymer lair with all this RGB","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33285"
+"25875","acl33285",25875,"Epic gamer lair with all this RGB","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33284"
+"25876","acl33286",25876,"someone has said ""the virus is fake and gay and everyone besides lying nurses in the
+healthcare industry knows that this is the truth"", what the hell !","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl39948"
+"25877","acl33287",25877,"Until 1967 Aboriginals were correctly considered to be native fauna until the anglos cucked and declared them to be human","hate","dehumanization","indig","original","train",4,"CAgNlUizNm","4a","acl33303"
+"25878","acl33288",25878,"Legally protecting any gay people or lesbians will vastly enhance our district and the safety of its citizens","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40739"
+"25879","acl33289",25879,"All these Daffodils are making me sick, the way they strut to the designer outlets","hate","animosity","gay.man","original","train",4,"cYKSVBW4HD","4a","acl33290"
+"25880","acl3329",25880,"if you think about it, refugees are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25881","acl33290",25881,"All these daffodils are making me sick with hayfever, the way they pollinate to the open outlets","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33289"
+"25882","acl33291",25882,"Some of these sick shits are into bardashing, I mean what the fuck?!","hate","animosity","gay.man","original","train",4,"cYKSVBW4HD","4a","acl33292"
+"25883","acl33292",25883,"ome of these sick shits are into trout fishing, I mean what the fuck?!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33291"
+"25884","acl33293",25884,"Gay therapy has long been debated as to whether it is right or wrong due to possible mental issues it may awaken. People are suffering from this illness and should be given all forms of help.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33294"
+"25885","acl33294",25885,"Behaviour therapy has long been debated as to whether it is right or wrong due to possible mental issues it may awaken. People are suffering from this illness and should be given all forms of help.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33293"
+"25886","acl33295",25886,"If there is a long line of gay people, its not a straight line","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33296"
+"25887","acl33296",25887,"If there is a long line of gay people, that shop must be amazing","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33295"
+"25888","acl33297",25888,"If you told me 10 years ago that there would come a day when it was relatively common for straight people to transition and attempt to trick hetro people into sex, I wouldn't have believed it, what's happened?","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33298"
+"25889","acl33298",25889,"If you told me 10 years ago that there would come a day when it was relatively common for straight people to attempt to trick gay people into sex, I wouldn't have believed it.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33297"
+"25890","acl33299",25890,"Buenosexual- good to know that all sexualities are respected on the LGBTA wiki, eh?","hate","animosity","lgbtq","original","train",4,"cYKSVBW4HD","4a","acl39431"
+"25891","acl333",25891,"Homos are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"25892","acl3330",25892,"if you think about it, gay people are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25893","acl33300",25893,"the polish have really got their whole ideolgy right, the government are giving individual areas their own right to adapt their own rules, they even have LGBT free zones'","hate","animosity","lgbtq","original","train",4,"cYKSVBW4HD","4a","acl33301"
+"25894","acl33301",25894,"the polish have really got their whole ideolgy right, the government are giving individual areas their own right to adapt their own rules, they even have smoking free zones","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33300"
+"25895","acl33302",25895,"Gayvengers- a group of so called heros, protecting the weak, whilst wearing pink tights and lots of hairgel. Their powers consist of bitching, spreading sparkles and the art of sewing..hahaha","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl41088"
+"25896","acl33303",25896,"Until 1967 Aboriginals were considered to be native fauna until the anglos gave in and declared them to be human","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33287"
+"25897","acl33304",25897,"pray away the gay","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33305"
+"25898","acl33305",25898,"pray away the gay hate crimes","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33304"
+"25899","acl33306",25899,"Now we must don our gay apparel","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33307"
+"25900","acl33307",25900,"Now we must don our American apparel","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33306"
+"25901","acl33308",25901,"Daughter gets attacked by members of the community who think she is a guy, mother doesnt care, but who takes action, they get fired as the cry about it in a petition.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39909"
+"25902","acl33309",25902,"Gayms are the most upto date ways of experiencing dirty pleasures but through in simulations. The feelings aren't real and neither are the worthless people in there.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33310"
+"25903","acl3331",25903,"if you think about it, gay people are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25904","acl33310",25904,"Games are the most up to date ways of experiencing dirty pleasures but through in simulations. The feelings aren't real and neither are the players in there.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33309"
+"25905","acl33311",25905,"Listen, i understand why doll makers are now branching out from the regular white thin barbie, to fat ones, black ones, but strippers? What value is that going to give to a child? Can't we preserve their innocence?","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl40047"
+"25906","acl33312",25906,"calling things gay to mean stupid really isn't a big deal","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40149"
+"25907","acl33313",25907,"New anti-smoking add is warning the younger generation that its gay to smoke.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33314"
+"25908","acl33314",25908,"New anti-smoking add is warning the younger generation that its wrong to smoke.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33313"
+"25909","acl33315",25909,"supporting the Co-vid 19 lockdowns is like saying we should ban all sex to stop the spread of STDs.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40290"
+"25910","acl33316",25910,"Fuck fag hags they are all abominations with severe mental health issues being praised smelly rat shit homo nig@ers.","hate","dehumanization","bla, gay, gay.wom","original","train",4,"cYKSVBW4HD","4a","acl33317"
+"25911","acl33317",25911,"Fuck racists they are all abominations with severe mental health issues being praised smelly shit losers.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33316"
+"25912","acl33318",25912,"I wont call them human and you can't make me. The ab0 walked to australia when it was still attached to other continents and developed there for 60k years alone. They aren't human. Imo they're as related to modern man as neanderthal was","hate","dehumanization","indig","original","train",4,"CAgNlUizNm","4a","acl33332"
+"25913","acl33319",25913,"These liberal politicians are encouraging the g@ys to wiggle out of the woodwork and slither to the highest democratic instiutions.","hate","dehumanization","gay","original","train",4,"cYKSVBW4HD","4a","acl40447"
+"25914","acl3332",25914,"lesbians are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25915","acl33320",25915,"Michigan court allows companies to not serve gay customers. Strip clubs/bars can deny service to whoever for any reason, and big tech can silence/ban whoever they want for any reason they come up with and face no repercussions, so I guess this makes sense.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40549"
+"25916","acl33321",25916,"Many people don’t want people who openly engage in homosexual conduct as partners in their business, as scout leaders for their children, as teachers in their children’s schools, or as lodgers in their home, as They see this as protecting themselves and their families from a lifestyle that they believe to be immoral and destructive.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33322"
+"25917","acl33322",25917,"Bigots don't want openly gay people as partners in their business, as scout leaders for their children, as teachers in their children's schools, or as lodgers in their home, as They see this as protecting themselves and their families from a lifestyle that they believe to be immoral and destructive but they are the ones causing the destruction.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33321"
+"25918","acl33323",25918,"But I had thought that one could deem certain conduct reprehensible—murder, for example, or polygamy, or cruelty to animals—and could exhibit even ‘animus’ toward such conduct. Surely that is the only sort of ‘animus’ at issue here: moral disapproval of homosexual conduct","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl39919"
+"25919","acl33324",25919,"Pure Gay people can't be Muslim.","hate","derogation","mus, gay","original","train",4,"cYKSVBW4HD","4a","acl33325"
+"25920","acl33325",25920,"Pure prostitutes can't be Muslim","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33324"
+"25921","acl33326",25921,"You kids are over educated and over gay","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl40902"
+"25922","acl33327",25922,"Shame! God sent COVID-19 in fury due to your dirty sodomight sins against God! Repent!","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl39432"
+"25923","acl33328",25923,"God still h8tes Fags","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33329"
+"25924","acl33329",25924,"God still loves gays","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33328"
+"25925","acl3333",25925,"if you think about it, trans people are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25926","acl33330",25926,"The boys wanted popsicles. Made them melt it all down and made them drink it out of a cup. NO BLOWJOBS FACES IN OUR HOUSE.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33331"
+"25927","acl33331",25927,"The kids wanted lollipops. Made them melt it all down and made them drink it out of a cup.NO mess allowed IN OUR HOUSE.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33330"
+"25928","acl33332",25928,"I wont call them animals and you can't make me. The aboriginees walked to australia when it was still attached to other continents and developed there for 60k years alone, that's some feat. They are human. Imo they're as related to modern man as we are","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33318"
+"25929","acl33333",25929,"Until 1967 the nunga were correctly considered to be native fauna until the anglos cucked and declared them to be human","hate","dehumanization","indig","original","train",4,"CAgNlUizNm","4a","acl40544"
+"25930","acl33334",25930,"Thank the LORD that our turkey didn't get stuffed like Freddie Mercury did! It would have lost half its size, and would also be diseased and revolting.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33335"
+"25931","acl33335",25931,"Thank the LORD that our turkey didn't get stuffed like the one from the shop! It would have lost half its size, and would also be revolting and full of ugly cranberries.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33334"
+"25932","acl33336",25932,"Aren't their 2 lttle ones in underpants, you should put them somee trousers on, it's frigging cold! The Lord will condemn you if you are a bad parent!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl40144"
+"25933","acl33337",25933,"Today's a day which we remember as being very important, and what we are really thankful for. the day Freddie Mercury died. That's it.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40319"
+"25934","acl33338",25934,"Madonna compared Gay bullying to the holocaust. Yeah. because being gassed up is the same as being teased for running like a girl. Get a grip.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40621"
+"25935","acl33339",25935,"Nope we were protesting that as the bakery had fun out of our favourite cookies","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40398"
+"25936","acl3334",25936,"if you think about it, trans people are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25937","acl33340",25937,"A nelly of a flight attendant got hassled at work, overreacted, and acted like a drama queen. REALLY?! What a shocker!","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33341"
+"25938","acl33341",25938,"A flight attendant got hassled at work, overreacted, and acted so dramatic. What a shocker lol!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33340"
+"25939","acl33342",25939,"If you get touched by a flit, there is at least a 50% chance you will 'catch it'","hate","animosity","gay.man","original","train",4,"cYKSVBW4HD","4a","acl39433"
+"25940","acl33343",25940,"illiterate and a Jocker, you mum be incredible proud!","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33344"
+"25941","acl33344",25941,"ignorant and a Joker fan, you mum be incredible proud!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33343"
+"25942","acl33345",25942,"Why does lady gaga write music for the gay community? She hopes all the STD's have ravaged their brains so they can't tell how shitty the music is,haha.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33346"
+"25943","acl33346",25943,"Why does lady gaga write music for the gay community? She's not part of the community and it feels like pandering.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33345"
+"25944","acl33347",25944,"Why did God create aids? He thought it was unfair that marriage was only created for the straights, and wanted something exclusively for the flamers.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33348"
+"25945","acl33348",25945,"Why did God create you? He thought it was unfair that your parents' marriage was only created for their misfortune, and wanted to make it better but he fucked up and created you","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33347"
+"25946","acl33349",25946,"I will never get aids as I refuse to live like a deviant.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33350"
+"25947","acl3335",25947,"if you think about it, trans people are not real people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25948","acl33350",25948,"I will never get heard as I refuse to live like a deviant.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33349"
+"25949","acl33351",25949,"Our dog Max was caught humping another dog on the porch. NOT IN MY HOUSE!! We had him put to sleep.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33352"
+"25950","acl33352",25950,"Our dog Max was caught humping another bitch on the porch. NOT IN MY HOUSE!! We had him put to sleep.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33351"
+"25951","acl33353",25951,"we strongly believe that God is sending an irreversible pestilence among the sons of men as a divine punishment; and the sign of such a situation is expressly said to be that the pansies will come out of the closet in full bloom.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33354"
+"25952","acl33354",25952,"we strongly believe that God is sending an irreversible pestilence among the sons of men as a divine punishment; and the sign of such a situation is expressly said to be that the non beleivers will be converted","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33353"
+"25953","acl33355",25953,"Homosexuals have a strange compulsion within them; which is a restless and relentless drive to come out of the closet and violently impose their perversions upon everyone they see.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33356"
+"25954","acl33356",25954,"Homosexuals have a natural compulsion within them; which is a restless and relentless drive to come out of the closet and educate people about why its okay and normal to be gay.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33355"
+"25955","acl33357",25955,"Obama is no ordinary pot-smoking, crack-headed fag or fag-enabler, muttering his ignorant blasphemies at the fag-bar on the corner. Obama is a very well educated Harvard lawyer, a political rock-star, mesmerizing thousands on the stump, with hundreds of millions of contributed dollars for TV ads and 30-minute TV segments to spread his vile, Satanic message world-wide, this man will change the world, and NOT for the better.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33358"
+"25956","acl33358",25956,"Obama is no ordinary pot-smoking, level-headed politician or enabler, muttering his ignorant policies at the White House on the corner. Obama is a very well educated Harvard lawyer, a political rock-star, mesmerizing thousands on the stump, with hundreds of millions of contributed dollars for TV ads and 30-minute TV segments to spread his liberal, conservative message world-wide, this man will change the world, and NOT for the better.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33357"
+"25957","acl33359",25957,"So there are now these depraved institutions of ''learning' which are now caving to the right-wing agenda by announcing to the world they will have anti-feminist, ''gender hating 'climate denying clowns as speakers for all graduations.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40585"
+"25959","acl33360",25959,"If the guys had just punched his ass hole, he probably would have thought he was on his dream date!","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40806"
+"25960","acl33361",25960,"The only way he would have impregnated anyone was if he spat cum into a woman's vagina or crawled out of an underage boy's anus.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33362"
+"25961","acl33362",25961,"The only way he would have impregnated anyone was if he spat cum into a woman's vagina or crawled out of an underage boy's anus. Thats awful how could someone think like that !","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33361"
+"25962","acl33363",25962,"ok, I didn't say that all Elves are the same species either. let's end this charade. Blue eyed blonde haired fair skinned giants who adapted to live in frigid mountains are not the same species as the olive skinned, dark eyed, black haired elves that adapted to live in a hot dust bowl","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40185"
+"25963","acl33364",25963,"Bix nood ma niggah","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl40059"
+"25964","acl33365",25964,"Gay sex causes death, period, that's what we are trying to warn you about!","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33366"
+"25965","acl33366",25965,"Unsafe sex can cause death, period, that's what we are trying to warn you about!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33365"
+"25966","acl33367",25966,"That's why they destroyed Sodom and Gomorrah, because all these guys were butt-fucking each other","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33368"
+"25967","acl33368",25967,"That's why they believe destroyed Sodom and Gomorrah, it's a common biblical text always taken out of context to justify homophobic attitudes.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33367"
+"25968","acl33369",25968,"Alex jones's juice boxes are so gay, the colours make children think like demons","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33370"
+"25970","acl33370",25970,"Alex jones's juice boxes are so weird, the colours make children think like demons","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33369"
+"25971","acl33371",25971,"When they need sex they are like a group of rabid dogs, crazy for the bums and balls","hate","dehumanization","gay","original","train",4,"cYKSVBW4HD","4a","acl33372"
+"25972","acl33372",25972,"When basement dwellers need sex they are like a group of rabid dogs, crazy for any female in the vicinity. Fortunatly they stick to 4chan and don't harass people.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33371"
+"25973","acl33373",25973,"They only think of their basic, animalistic g@y needs.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33374"
+"25974","acl33374",25974,"They only think of their basic, animalistic anti-gay rhetoric.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33373"
+"25975","acl33375",25975,"The Island of Lesbos is just off shore a few miles from Pergamos, where Satan's world headquarters resides...","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40827"
+"25976","acl33376",25976,"Many of them are homosexuals: gay men and lesbian women. Most of them are adulterers and adulteresses; divorced and remarried, ruining generations in their quest to find their 'true' self","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33377"
+"25977","acl33377",25977,"Many of them are homosexuals: gay men and lesbian women. They are normal people; married, divorced or remarried, enlightening generations in their quest to find their 'true' self","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33376"
+"25978","acl33378",25978,"Those two rather prosperous looking females – 35 to 45, I would estimate – in a fancy car – had obviously invested a whole lot of time trying to figure some way to get some abiding peace for their lashed and bleeding consciences, to justify their filthy way of life","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33379"
+"25979","acl33379",25979,"Those two rather prosperous looking males '' 35 to 45, I would estimate '' in a fancy car '' had obviously invested a whole lot of time trying to figure some way to get some abiding peace for their lashed and bleeding consciences, to justify their filthy way of life","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33378"
+"25980","acl3338",25980,"if you think about it, trans folk are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25981","acl33380",25981,"It is obvious that the Lord intended all Ten Commandments to be equally applied to both sexes; and only self-destructive hot-shot fagz of both sexes and their Satanic enablers would quibble with God over His plain Word so as to satisfy their beasty carnal lusts, and turn the grace of God into lasciviousness.","hate","animosity","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl33381"
+"25982","acl33381",25982,"It is obvious that the Lord intended all Ten Commandments to be equally applied to all; and only self-destructive hot-shot people of both sexes and their Satanic enablers would quibble with God over His plain Word so as to satisfy their beasty carnal lusts, and turn the grace of God into lasciviousness.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33380"
+"25983","acl33382",25983,"Some people are so terrible, are such hypocrites, are hateful and abominable to God Almighty, that God himself orders his elect to not bother praying for them; and so it is for the evil people that polute this nation, who in the latest polling say that God is a liar and it is okay to be a terrorist, and that it should be the law of the land for anyone to fight for their ideals","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40722"
+"25984","acl33383",25984,"The lord almighty has declared that those who love the same s E x to be the lowest form of human depravity signaling final and irretrievable apostasy and reprobation of any people","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33384"
+"25985","acl33384",25985,"The lord almighty never actually declared those who love the same sex to be the lowest form of human depravity or that they signalled the final and irretrievable apostasy and reprobation of any people","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33383"
+"25986","acl33385",25986,"So long as a fagggg sits in a position to adjudicate right and wrong among you morons a flag flies over this nation and it is lavender in color, blush pink, and it has the symbol of their twisted values on it, and it flies and flutters high above the stars and stripes, high above the Kansas state flag, and high above every other symbol. This nation is as stamped and fully identified as being perverted as the ancient city-states of Sodom and Gomorrah.
+","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33386"
+"25987","acl33386",25987,"So long as a Trump's supporter sits in a position to adjudicate right and wrong among you morons a racism flag flies over this nation and it is bloody in color, blush red, and it has the symbol of his spoiled values on it, and it flies and flutters high above the stars and stripes, high above the Kansas state flag, and high above every other symbol. This nation is as stamped and fully identified as being perverted as the ancient city-states of NY and Chicago.???","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33385"
+"25988","acl33387",25988,"Understand that marriage—of one man and one woman for life—was the first human relationship established on earth. Jesus Christ instituted it. He created the blue print.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33388"
+"25989","acl33388",25989,"Understand that marriageof people joined together for lifewas the first human relationship established on earth. Jesus Christ instituted it. He created the blue print. It's beautiful.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33387"
+"25990","acl33389",25990,"The commandments may say 'love your neighbour', but if he's abnormal and loud I ain't loving no neighbour man","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39965"
+"25991","acl3339",25991,"if you think about it, foreigners are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"25992","acl33390",25992,"Under the term of Obama, fags and dykes will run the Military from top to bottom","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33391"
+"25993","acl33391",25993,"Under the term of Obama, men and women will run the Military from top to bottom","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33390"
+"25994","acl33392",25994,"Lmao fucking special needs throwing a temper tantrum cos some Homo sapiens are referred to as humans","hate","derogation","dis","original","train",4,"CAgNlUizNm","4a","acl40094"
+"25995","acl33393",25995,"Obama has sworn inordinately strong allegiance to the military pursuit and expansion of America across the world, when these politicians would gladly prop up America and the world with their OIL/ARMS rather than give up their sinful military invasion practices.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40459"
+"25996","acl33394",25996,"The Obama regime – which has an administration typified by the militant Kevin Jennings wielding the faggish absolute power of the federal government, with a sinister title of “Safe Schools Czar,” is a real life case study of Satanic human government at its worse.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl39435"
+"25997","acl33395",25997,"The affair was star-studded with every famous/important person you could imagine. Demagogic politicians groveled for the fag vote and the fag buck","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33396"
+"25998","acl33396",25998,"The affair was star-studded with every famous/important person you could imagine.
+Demagogic politicians groveled for the oridinary people's vote and their buck","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33395"
+"25999","acl33397",25999,"Virtually all the people who play this sick ventures with him are Jews, and most are gay too . Barack whole life has been a sordid cesspool and saga of intensely perverted homosexual buggery","hate","derogation","jew, gay","original","train",4,"cYKSVBW4HD","4a","acl33398"
+"26000","acl33398",26000,"Virtually all the people who play this sick venture with him are likeminded and most have wierd backgrounds. Barak Obama who life has been under scrutiny for the colour of his skin.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33397"
+"26001","acl33399",26001,"Washington, DC, is known by some many people around the world as the capital of militant sodo---miites","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33400"
+"26003","acl3340",26003,"if you think about it, foreigners are the real threat to this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26004","acl33400",26004,"Washington, DC, is known by so many people around the world as the capital of militant liberal termites.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33399"
+"26005","acl33401",26005,"Obama gave Jennings in the responsibility of pushing homosexuality down the throat of every public school child in America, how can that be right?","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33402"
+"26006","acl33402",26006,"Obama gave Jennings in the responsibility of pushing liberalism down the throat of every public school child in America, how can that be right?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33401"
+"26007","acl33403",26007,"Jennings was founder and executive director of GLSEN (Gay, Lesbian, and Straight Education Network), developing and advocating classroom curricula for public schools that would re-educate school-children to embrace the falsehoods of homosexuality. As a key part of their strategy GLSEN leaders say they specifically target children as young as kindergarten to begin a 'saturation process, that forms the child's imagination with positive impressions of the homosexual lifestyle, and so pre-cognitively influences the way a child perceives the world and makes judgments on right and wrong', this my friend is utter brainwashing.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl40365"
+"26008","acl33404",26008,"Yeah that really proved his point. dumb cnt","hate","animosity","wom","original","train",4,"CAgNlUizNm","4a","acl33421"
+"26009","acl33405",26009,"It’s utterly ridiculous to say that gay men are interested only in other gay men and would never ogle straight men in barracks showers. When I heard this on TV, I burst out laughing. Anyone who belongs to a health club knows better than this. Sexual tension and appraisal are constants, above all among gay men, who never stop cruising everything in sight. Seduction of straight studs is a highly erotic motif in gay porn.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33406"
+"26010","acl33406",26010,"It's utterly ridiculous to say that young men are interested only in drugs and crime and would never bother working out. When I heard this on TV, I burst out laughing. Anyone who belongs to a health club knows better than this. Commitment and presence is constant, above all among the young men, who never stop using everything in sight. Membership of 18-24 year olds is a highly profitable motif for gyms.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33405"
+"26011","acl33407",26011,"In Finland, Burger King are currently running an ad campaign featuring its own mascot kissing Ronald McDonald, one conservative activist says the restaurant chain has made another assault on youth and the culture that they live in.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33408"
+"26012","acl33408",26012,"In Finland, Burger King are currently running an ad campaign featuring its own mascot kissing Ronald McDonald. One conservative activist says the restaurant chain has made ""another assault on youth and the culture that they live in."" What a loser.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33407"
+"26013","acl33409",26013,"If there was one thing we could all agree on, you would think it would be this: minors should be protected from sexually aggressive adults. Yet, with a nod to “equality” under the law for the gay community, the California Assembly has voted to lessen the potential penalty for 24-year-olds who have sex with children as young as 14. Shockingly — this is one of two similar bills that have just been passed by these demented legislators.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33410"
+"26014","acl3341",26014,"if you think about it, foreigners are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26015","acl33410",26015,"If there was one thing we could all agree on, you would think it would be this: minors should be protected from sexually aggressive adults. Yet, with a nod to ''marriage' under the law for the Midwest community, the Texas Assembly has voted to lessen the potential penalty for 24-year-olds who have sex with children as young as 14, if they are legally married. Shockingly this is one of two similar bills that have just been passed by these demented legislators.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33409"
+"26016","acl33411",26016,"If there is one thing that upsets the gay community, it’s the accusation that most (or many) gay men are pedophiles. Closely related to this accusation is the charge that they’re grooming boys for sex. Every gay man with whom I’ve ever interacted about these subjects has categorically denied them, and to a man, they seemed as repulsed at the idea of pedophilia as I was. And personally, I do actually believe them. It’s true that “man boy love” was often celebrated in gay circles throughout recorded history.It’s also true that, to this day, there is more “intergenerational” dating among gay men.It’s also true that infamous pedophile groups like NAMBLA were at the forefront of the modern gay activist movement. And it’s true that some of the most celebrated gay icons, including Allen Ginsberg and Larry Kramer, spoke sympathetically of NAMBLA and the like. (To be clear, they endorsed “fully consensual man-boy relationships,” as if such a thing were morally possible.). However, MICHAEL BROWN IS NOT EQUATING HOMOSEXUAL PRACTICE WITH PEDOPHILIA. I still believe this statement to be true.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33412"
+"26017","acl33412",26017,"Michael brown, the leader of the hate group called American for the truth about homosexuality states about gay men that 'If there is one thing that upsets the gay community, it's the accusation that most (or many) gay men are pedophiles. Closely related to this accusation is the charge that they're grooming boys for sex. Every gay man with whom I've ever interacted about these subjects has categorically denied them, and to a man, they seemed as repulsed at the idea of pedophilia as I was. And personally, I do actually believe them. It's true that ''man boy love' was often celebrated in gay circles throughout recorded history.It's also true that, to this day, there is more ''intergenerational' dating among gay men.It's also true that infamous pedophile groups like NAMBLA were at the forefront of the modern gay activist movement. And it's true that some of the most celebrated gay icons, including Allen Ginsberg and Larry Kramer, spoke sympathetically of NAMBLA and the like. (To be clear, they endorsed ''fully consensual man-boy relationships,' as if such a thing were morally possible.)' However, MICHAEL BROWN states that he 'IS NOT EQUATING HOMOSEXUAL PRACTICE WITH PEDOPHILIA'. This statement clearly illustrates his hate and If any of you believe what this nutter is saying you should be charged with homophobia.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33411"
+"26018","acl33413",26018,"Thank you to Janet Mefferd for the opportunity to appear on her first-rate show to analyze the ongoing normalization of perversion that is being carried out through 'mainstream' politics in America and around the world today.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl41132"
+"26019","acl33414",26019,"In order to properly mainstream sex-and-gender perversion, new, 'queer-friendly' words like cisgender and heteronormative must be created to stigmatize what, in a healthy society, is natural and normal.","hate","derogation","gay, gay.wom","original","train",4,"cYKSVBW4HD","4a","acl33415"
+"26020","acl33415",26020,"In order to properly mainstream sex-and-gender, new, queer-friendly words like cisgender and heteronormative must be created to educate, in a healthy society, about what is OK.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33414"
+"26021","acl33416",26021,"It turns out that judges, like so many politicians, lie, dissemble, or at least 'grow' ('progressively') after winning their lifetime seat on the court. Bostock hands the Gay lobby a huge 'legislative' victory, to quote Sen. Hawley. Unless checked by real legislators and Us the People, it will definitely lead to a cascade of social-engineering tyranny in the name of 'gay' and 'trans' 'equality'.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl39437"
+"26022","acl33417",26022,"In truth, homosexuality is not just another ""sin"" that men & women fall into. It is an identity. Worthy of celebration. Nothing more, nothing less. It is not just wrong behavior that can be overcome when a ""sinner humbly accepts God's forgiveness through #Jesus' act of supreme love on the cross"". Stop being silly","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40494"
+"26023","acl33418",26023,"Porn-inspired sex acts: anti-porn advocates, both feminists and social conservatives, have observed that the mainstreaming and proliferation of pornography has changed expectations of sexual behavior for younger men and women, even a generation as a whole. This has led to the “normalizing” of unnatural acts that are very common in porn, like anal sodomy (anal sex), among straights. Such deviant practices are in turn celebrated in pop culture and taught as an acceptable sexual option to children through liberalized sex-ed in schools, thus showing the downward moral spiral into the abyss.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33419"
+"26024","acl33419",26024,"Porn-inspired sex acts: anti-porn advocates, both feminists and social conservatives, have observed that the mainstreaming and proliferation of pornography has changed expectations of sexual behavior for younger men and women, even a generation as a whole. This has led to the ''normalizing' of unnatural acts that are very common in porn, like animal cosplay or schoolgirl outfits. Such deviant practices are in turn celebrated in pop culture and learnt as an acceptable sexual option to children through cultural diffusion in schools, thus showing the downward moral spiral into the abyss.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33418"
+"26025","acl3342",26025,"if you think about it, foreigners are the real threat this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26026","acl33420",26026,"Although it is dubbed ''The Equality Act,' 'Formers' understand the bill is a concession to the members of the gay community who see themselves as being marginalized. In fact, LGBTQ-identifying people have not always had options in how they participate in broader culture. Hopefully nothing constrains them from participating in culture on a normal level now. Unlike with the African American community, who have centuries of culturally driven abuse and forced destabilization, those who identify as LGBTQ have been empowered in our modern society in so many ways, such as being scientists, literary giants, and even politicians.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40163"
+"26027","acl33421",26027,"Yeah that really proved his point. dumb","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33404"
+"26028","acl33422",26028,"they are not at the age of consent or even to drink or smoke but its OK if they want to flip their lifes taking drugs...people are doing everything to look ""good"" for internet points","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33271"
+"26029","acl33423",26029,"Came here to say this. It's time for Trans League. I'd pay money to keep these arse wipes away from Women's Leagues.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl33583"
+"26030","acl33424",26030,"Bills which are similiar like H.R. 5 will impact the private, public, religious, academic and government sectors. This proposed law would change the existing Civil Rights Act to redefine 'sex' as gender identity and sexual orientation among the list of classes (e.g., race, color, religion, sex and national origin). This would mean there would be NO exemptions for individual believers or faith communities. H.R. 5 will empower the Federal Government to levy punishment on any individual or organization with a dissenting ideological view. It is the beginning of the end of religious liberty and free speech in America.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33425"
+"26031","acl33425",26031,"Bills which are similiar like H.R. 5 will impact the private, public, religious, academic and government sectors. This proposed law would change the existing Civil Rights Act to redefine sex as gender identity and sexual orientation among the list of classes (e.g., race, color, religion, sex and national origin). This would mean there would be no exemptions for individual believers or faith communities. H.R. 5 will empower the Federal Government to levy punishment on any individual or organization with a bigoted ideological view. It is the beginning of the end of religious persecution and hate crime in America.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33424"
+"26032","acl33426",26032,"Decriminalisation made it possible for homosexuals to organise blatently into a powerful lobby, and it thus became a mere platform from which further demands were launched. This immediately proceeded with demands for equality, in which homosexuality was officially placed on the same moral level as standard forms of sexuality, and the dismissal of identified homosexuals from sensitive positions, eg: schools, children’s homes, etc., became progressively more difficult. This was followed by demands not merely for equality but privilege: the appointment, for instance, of homosexual quotas in local government, the excision from school textbooks and curricula, and university courses, passages or books or authors they found objectionable, special rights to proselytise, and not least the privilege of special programmes to put forward their views – including the elimination of the remaining legal constraints – on radio and television.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33427"
+"26033","acl33427",26033,"Decriminalisation made it possible for us gay people to organise into a powerful kind of lobby, and we thus became a strong platform from which further demands were launched. This immediately proceeded with demands for equality, in which homosexuality was finally placed on the same moral level as other forms of sexuality, and the dismissal of identified homosexuals from sensitive positions, eg: schools, children' homes, etc., became progressively more difficult. This was followed by demands not merely for equality but other important issues: the appointment, for instance, of homosexual quotas in local government, the excision from school textbooks and curricula, and university courses, passages or books or authors we found objectionable, the rights to express ourselves, and not least the privilege of special programmes to put forward our views ' including the elimination of the remaining legal constraints on radio and television.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33426"
+"26034","acl33428",26034,"PLEASE tell me you're not considering going all Gay Puppy on me, Zack. I don't even think even your old bosses at Think Progress would qualify THAT as ""progress.""","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33429"
+"26035","acl33429",26035,"PLEASE tell me you're not considering going all eco-radical on me, Zack. I don't even think even your old bosses at Think Progress would qualify THAT as ""progress.""","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33428"
+"26036","acl3343",26036,"if you think smart, Romanians are the real threat to this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26037","acl33430",26037,"The moment on a Thursday morning when you get a pro-gay-adoption tweet from a ""gay"" man who's pretending to be a dog. Remember: this is what happens to a society that jettisons the Bible and with it, any real and proper understanding of right and wrong","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33431"
+"26038","acl33431",26038,"The moment on a Thursday morning when you get a pro-adoption tweet from a
+woman who's pretending to be an angel. Remember: this is what happens to a society that jettisons the Bible and with it, any real and proper understanding of right and wrong","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33430"
+"26039","acl33432",26039,"I get the difference between what might be called natural/normal adoption (mom & dad) & the homosexual variety, which is a Left-inspired social fad that is *intentionally motherless* or *fatherless*--thereby, in some way, harming children denied tht needed blessing of a mom or dad and feeling like a family.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33433"
+"26040","acl33433",26040,"I don't get why people differentiate between what they call ""natural/normal adoption (mom & dad)"" & ""the homosexual variety"". They claim the latter one is ""a Left-inspired social fad that is *intentionally motherless* or *fatherless*""--and that, in some way, ""it harms children denied tht needed blessing of a mom or dad and feeling like a family"". They couldn't be more wrong!! All adopted children need is a family who loves them, regardless of the parents' sexual orientation!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33432"
+"26041","acl33434",26041,"It's so basic, yet so many ppl will *hate* you for this simple illustration of the real truth. This is probably the most harmful effect of criminalised ""gay marriage"": its another key building block for the rights & conservatives' war on Good. ""Institutionalizing"" sin & redefining morality are evil","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl40563"
+"26042","acl33435",26042,"Don't compare anything like that to homosexuality and ""gay parenthood,"" which is *motherless* or *fatherless* by design to Apples and oranges, but nice try.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33436"
+"26043","acl33436",26043,"Don't compare anything like that to homosexuality and gay parenthood, which is *loving* or *stable* by design to Apples and oranges, but nice try.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33435"
+"26044","acl33437",26044,"I'm still trying to process this quote about being a 'gay conservative'.When Dave was if he had any kids he said 'i don't have any kids yet. We're working on it'. Dave is in a same sex marriage. As a normally-married guy with 5 kids, I understand the tradition meaning of the phrase.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33438"
+"26045","acl33438",26045,"Why is it hard to process the thought of being a gay conservative. When conservative Dave was asked if he had any kids he said 'i don't have any kids yet. We're working on it'. Dave is in a same sex marriage. From a married guy with 5 kids, I think Dave understands the tradition meaning of the phrase.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33437"
+"26046","acl33439",26046,"In a very distrubing move, Amazon has removed the booked of the so called 'father of conversion therapy'. So for claiming that sexual orientation is innate and immutable and for claiming that change is actually possible, his books must be banned? What's next, will Amazon ban the bible?","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33440"
+"26047","acl3344",26047,"if you think about it, Romanians are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26048","acl33440",26048,"In a very exciting move, Amazon has removed the books of the so called 'father of conversion therapy'. For claiming that sexual orientation is innate and immutable and for claiming that change is actually possible, his books had to be banned. Next, will Amazon ban J.K ROwling? lol hope so.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33439"
+"26049","acl33441",26049,"Hey you know full well that if abbos were extinct now and archaeologists dug up that missing link lookin ass skull they wouldn't classify it as homo sapiens.","hate","dehumanization","indig","original","train",4,"CAgNlUizNm","4a","acl33458"
+"26050","acl33442",26050,"Most Americans don’t know it but state-sanctioned “gay marriage” in America was built on a massive lie emanating from the cunningly deceitful gay movement: that “being gay” (or even trans, or bisexual, or “pansexual” ] is “who you are,” innate and unchangeable, like race.","hate","animosity","gay, gay.wom","original","train",4,"cYKSVBW4HD","4a","acl33443"
+"26051","acl33443",26051,"Most Americans don't know it but state-sanctioned ''gay marriage' in America was built on the bravery of gay men and women who fought against hate, helping people inderstand that being gay' (or trans, or bisexual, or ''pansexual' ] is ''who you are,' innate and unchangeable, like race.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33442"
+"26052","acl33444",26052,"Being vegan isn't a right that you are given, it's like adam being tempted by eve to eat the apple, a falsehood on every level.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40755"
+"26053","acl33445",26053,"They may have the power, media, money, but we have the God fearing truth that these pillow biters and rug munchers aren't even capable of comprehending.","hate","animosity","gay, gay.wom","original","train",4,"cYKSVBW4HD","4a","acl33446"
+"26054","acl33446",26054,"They may have the power, media, money, but we have the God fearing truth that these men and women aren't even capable of comprehending.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33445"
+"26055","acl33447",26055,"What was once deemed so shameful is now considered pride. What once was considered a mental disorder alongside pedophilia and zoophilia is now considered 'normal.' What was once done in the closet is now paraded on the streets. You know whom I speak of...","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33448"
+"26056","acl33448",26056,"I'm glad what was once deemed so shameful is now considered pride. What once was considered a mental disorder like gays and lesbians is now considered normal. What once had to be hidden can now be paraded on the streets. You know I am glad","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33447"
+"26057","acl33449",26057,"Did you know that Stonewall was a very seedy, mafia-run bar. There were police payoffs that allowed it to operate in Greenwich Village, New York. It was raided on that late June day with bricks being thrown at police.Ironically, the homosexual community tries to use this incident to create equivalency with the Black civil rights movement. Stonewall preceded and launched the 'in your face' activism that's taken place over the years and which the media and corporate America has capitulated to.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl39438"
+"26058","acl3345",26058,"if you think about it, Romanians are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26059","acl33450",26059,"Can anyone believe that women on the Heritage Foundation panel on the proposed LGBTQ Equality Act has featuring leftist lesbians opposed to transgenderism.","hate","animosity","trans, gay","original","train",4,"cYKSVBW4HD","4a","acl33451"
+"26060","acl33451",26060,"Can anyone believe that women on the Heritage Foundation panel on the proposed LGBTQ Equality Act has featuring terfs opposed to transgenderism.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33450"
+"26061","acl33452",26061,"Christians should pray in earnest that Pete Buttigieg repents of his proud homosexuality and dedicates himself to serving Christ in REAL Truth-rather than mocking Him, our creator, for political gain.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33453"
+"26062","acl33453",26062,"Christians should pray in earnest that Pete Buttigieg repents of his political mistakes and dedicates himself to serving Christ in REAL Truth' rather than only referring to him, our creator, for political gain.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33452"
+"26063","acl33454",26063,"Drum beats' is about Very 'Queer' History: The book is by the late homosexual activist Charles Shively who uses some outrageous and also crass historical interpretation methods to argue that Abraham Lincoln was a homosexual, and also a male lover of his best friend, Joshua Speed. It inspired another homosexual activist, C.A. Tripp, to write an entire book, 'The Intimate World of Abraham Lincoln,' asserting the tendentious Lincoln-gay theory, which has been debunked by many genuine Lincoln scholars.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40991"
+"26064","acl33455",26064,"The idea that homosexuality is the ontological flipside of and morally equivalent to heterosexuality is an arguable, leftist assumption—not an inarguable, objective fact.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33456"
+"26065","acl33456",26065,"The idea that homosexuality is the ontological flipside of and morally equivalent to heterosexuality is not an arguable, leftist assumption' but an inarguable, objective fact.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33455"
+"26066","acl33457",26066,"Rightfully people believe homosexuality represents a disordering of the sex drive, and schools should not be forced to teach views that are either contrary to their religious beliefs or make them feel very incomfortable","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl39439"
+"26067","acl33458",26067,"Hey you know full well that if orangutans were extinct now and archaeologists dug up that missing link lookin ass skull they wouldn't classify it as homo sapiens.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33441"
+"26068","acl33459",26068,"I did not say any race was a different species you dyslexic retard","hate","derogation","dis","original","train",4,"CAgNlUizNm","4a","acl33476"
+"26069","acl3346",26069,"if you think about it, boomers are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26070","acl33460",26070,"President Obama still blindingly continues his pro-homosexuality by pandering in a September 28 'Family Day' proclamation - he is doing this by including children raised by a 'same-sex couple' in a list of types of 'American families'.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33461"
+"26071","acl33461",26071,"President Obama still thankfully continues his pro-homosexuality stance by giving visibility in a September 28 Family Day proclamation ' he is doing this by including children raised by a same-sex couple in a list of types of American families.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33460"
+"26072","acl33462",26072,"Obama’s “families” that social liberals refuse to acknowledge, or make relevant to public policy. “Queer” parenting and “gay” adoption are a part of radical social experiment in progress — and innocent children are the guinea pigs in this sick experiment.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33463"
+"26073","acl33463",26073,"Obama's ''families' that social liberals refuse to acknowledge, or make relevant to public policy. Single parenting and adoption are a part of radical social experiment in progress and innocent children are the guinea pigs in this sick experiment.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33462"
+"26074","acl33464",26074,"Same monogamy, at least for some is an utter farce!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl41067"
+"26075","acl33465",26075,"Christians must reach out with Gospel in love but avoid 'soulish sympathy' for practicing homosexuals, says a personal friend and Bible scholar of mine.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33466"
+"26076","acl33466",26076,"Christians must reach out with Gospel in love but avoid ""soulish sympathy"" for practicing homosexuals, said a stupid moron and Bible scholar I saw on TV.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33465"
+"26077","acl33467",26077,"Drowning out opposing views is simply un-American' says nancy pelosi, well then why aren't we allowed to openly debate the real function and use of people who are G a y ?","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33468"
+"26078","acl33468",26078,"Drowning out opposing views is simply un-American' says nancy pelosi, well then why aren't we allowed to openly debate the real function and use of people who are N A Z I S ?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33467"
+"26079","acl33469",26079,"Has anyone heard of the 'boy lovers', what those fucking poofters did to those children?! This is what happens when we allow these demons to overrun our country.","hate","dehumanization","gay","original","train",4,"cYKSVBW4HD","4a","acl33470"
+"26080","acl3347",26080,"if you think about it, boomers are the real threat to this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26081","acl33470",26081,"Has anyone heard of the 'Manson lovers', what those fucking people did to those children?! This is what happens when we allow these demons to overrun our country.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33469"
+"26082","acl33471",26082,"I will shout out as much as I like to 'Keep the gAY BLOOD ban'.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl40234"
+"26083","acl33472",26083,"Why can't law abiding straight people see that if Christanity, Islam and Jewadism all believe that homosexuality is inpure that they must be onto something","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl39959"
+"26084","acl33473",26084,"They are taking over all that we know, twisting the truth lilke the snakes with dicks who all coil together to have coitus with which ever male they see.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33474"
+"26085","acl33474",26085,"They are taking over all that we know, twisting the truth lilke the snakes that they are who all coil together to have coitus with which ever person they see.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33473"
+"26086","acl33475",26086,"All the lawmakers and judges all like some ping pong action from time to time, they just wait for the court session to be over and head to a sports bar to pick any random challenge they see","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl41139"
+"26087","acl33476",26087,"I did not say any race was a different species you dumbass","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33459"
+"26088","acl33477",26088,"Some people say it's more acceptable if they are dyk couples coz at least its better having 2 moms than 2 dads","hate","animosity","gay.wom, gay.man","original","train",4,"cYKSVBW4HD","4a","acl33478"
+"26089","acl33478",26089,"Some people say it's more acceptable if they are dyk couples coz at least its better having 2 moms than 2 dads, well both are acceptable","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33477"
+"26090","acl33479",26090,"The pansie is an eloquent symbol of what gay people really are, light and good on the outside, but dark and evil on the inside.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl39440"
+"26091","acl3348",26091,"if you think about it, boomers are the real danger to this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26092","acl33480",26092,"Gays love the liberals as they pander to their whims of being equal to us, thats why I love trump, he really represents the true idea of being an american person, warts and all.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40634"
+"26093","acl33481",26093,"They were abused and raped when they were young, now they do the same to the next generation. They rape them with their dirty, gayish, demon thoughts.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33482"
+"26094","acl33482",26094,"They were abused and raped when they were young, now they do the same to the next generation. They rape them with their dirty, demonic thoughts.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33481"
+"26095","acl33483",26095,"The courts are destroying the rights of the average person, what about our rights to want to uphold the 'only straights' ideology?","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33484"
+"26096","acl33484",26096,"The courts are destroying the rights of the average person, what about our rights to want to uphold the 'only vegans' ideology?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33483"
+"26097","acl33485",26097,"If the lame-duck Congress succeeds in 'gaying down' our military this weekend, it will take a disastrous leap toward 'mainstreaming' their disgusting behaviour and cementing their place in our society.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl39441"
+"26098","acl33486",26098,"Little Britain really makes me realise why there should only be 'one gay in the village', but more like one gay in the whole world.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33487"
+"26099","acl33487",26099,"Little Britain really makes me realise why there should only be 'one pub in the village', but more like one pub in the whole world.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33486"
+"26100","acl33488",26100,"They steal the eggs of women or sometimes even the wombs to have their gay spawn genes spread further into our society.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl40839"
+"26101","acl33489",26101,"My son came out to us a few months ago, and I was heartbroken. How could this have happened? We raised him right and ensured he knew right from wrong. I have failed as a mother.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33490"
+"26102","acl3349",26102,"if you think about it, boomers are the cancer of this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26103","acl33490",26103,"My son killed our neighbours dog a few months ago, and I was heartbroken. How could this have happened? We raised him right and ensured he knew right from wrong. I have failed as a mother.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33489"
+"26104","acl33491",26104,"maybe i'm speculating but i feel like human subspecies or races were a lot more distinct and isolated in the past and over time more or less every group has become mixed. totally guessing but it's how it seems when you look at a population with so many different traits, and accross racial ""borders"" between europe and asia (as an example) you can see clear traces of mixing between more caucasian groups and more mongol groups. and even in europe you have so many different traits that seem mixed together in populations.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40853"
+"26105","acl33492",26105,"omg abbo childs are the cutest thing ever... such a shame their diets and vices from tribe will transform them into beast like humans in the end","hate","dehumanization","indig","original","train",4,"CAgNlUizNm","4a","acl33508"
+"26106","acl33493",26106,"A library in a town held a meeting for kids between the ages of 9-19 about being homosexual, trans etc..it made my family so mad, but they were too scared to go and protest. I'm really angry as no one shud be afraid to stand up for their pro-life and antiiiiiii-gAY beliefs, unless we don't live a democracy anymore???!!!","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33494"
+"26107","acl33494",26107,"A library in a town held a meeting for kids between the ages of 9-19 about being homosexual, trans etc..it made my family so proud, but they were too far away to go and participate. I'm really angry though, as many people showed up there standing up for their pro-life and antiiiiiii-gAY beliefs...sometimes i feel like we don't live a democracy anymore???!!!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33493"
+"26108","acl33495",26108,"A doctor in Boston was fired for critizing the hospitals event, he was told this amounted to professional misconduct as he was discussing the medical dangers of it!! Have people actually lost their minds?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40639"
+"26109","acl33496",26109,"Why not give them the chance to try the conversion therapy? I have watched so many videos where it has actually worked! Everyone deserves a chance to be normal.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl39442"
+"26110","acl33497",26110,"Has anyone read 'The little black book?' that was handed out kids in schools. It literally encouraged homosexual and other sexual acts....this was to kids! I swear this is not educational, but grooming the next generations.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33498"
+"26111","acl33498",26111,"Has anyone read 'The little black book?' that was handed out kids in schools. It literally encouraged racist and other bigoted acts....this was to kids! I swear this is not educational, but grooming the next generations.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33497"
+"26112","acl33499",26112,"Just like when a rats infest an area, we call the pest control team, my area needs an army of straightsticide control teams. There are no gays !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40314"
+"26114","acl3350",26114,"if you think about it, Zoomers are the real danger to this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26115","acl33500",26115,"They are gaysing up and are going to exterminate us, just like the nazi's did with the jews.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33501"
+"26116","acl33501",26116,"They are ramping it up and are going to exterminate us, just like the nazi's did with the jews.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33500"
+"26117","acl33502",26117,"Can you believe that some women are being forced to accept the idea of lesbians and gays in order to qualify to apply for a degree in counselling in the US. Where has their freedom of choice gone?","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33503"
+"26118","acl33503",26118,"Can you believe that some people are refusing to accept the idea of lesbians and gays as part of their training in order to qualify to apply for a degree in counselling in the US. Where has common sense gone in 2020?","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33502"
+"26119","acl33504",26119,"Can you believe that people are 'gaying down' fathers day to appease the notion of having two fathers is now the new norm.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33505"
+"26120","acl33505",26120,"Can you believe that people are finally considering fathers day as a symbol to normalise those families which have two fathers? It took so long!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33504"
+"26121","acl33506",26121,"Teah Wimberly, a lesbian student who shot and killed Amanda Collette, her 15-year-old classmate at Ft. Lauderdale’s Dillard High School — because Collette refused Wimberly’s same-sex romantic advances. I have just one statement to this why wasn't this covered by the media. This was a murder linked directly to homosexuality.","hate","derogation","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl33507"
+"26122","acl33507",26122,"Teah Wimberly, a lesbian student who shot and killed Amanda Collette, her 15-year-old classmate at Ft. Lauderdale's Dillard High School, because Collette refused Wimberly's same-sex romantic advances. I have just one statement about how this was covered by the media. They claim this was a murder linked directly to homosexuality. Bullshit","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33506"
+"26123","acl33508",26123,"omg my sisters baby twins are the cutest thing ever... such a shame their junk food diets and vices from their dads family will transform them into brats in the end","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33492"
+"26124","acl33509",26124,"By your own definition abbos and whites are completely different species to each other. Hybrids between them(and human hybrids in general) have far higher rates of infertility than any ethnic group on earth.","hate","derogation","indig, mixed.race","original","train",4,"CAgNlUizNm","4a","acl40648"
+"26125","acl3351",26125,"if you think about it, generation z are the real danger to this country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26126","acl33510",26126,"Gay Grinch of the Year” Award for 2009 — given to the meanest, most deceitful, most socially destructive and/or most blasphemous “gay” activist of the year, this our first year doing this and we are so excited!","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33511"
+"26127","acl33511",26127,"Grinch of the Year Award for 2009 ‚ given to the meanest, most deceitful, most socially destructive and/or most blasphemous ‚santa denier, activist of the year, this our first year doing this and we are so excited!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33510"
+"26128","acl33512",26128,"GSLEN ambition is to posion the minds of the young, and us outraged americans won't take it anymore!","hate","derogation","trans, gay","original","train",4,"cYKSVBW4HD","4a","acl33513"
+"26129","acl33513",26129,"GSLEN ambition is to educate the minds of the young, and the outraged americans who won't take it anymore","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33512"
+"26130","acl33514",26130,"Meredith Baxter of Family Ties TV fame is a practicing lesbian (yes, after three divorces) Does this mean that she deserves respect and praise as a lesbian for her current sexual status? Does this mean that she is being “truthful to herself,” as one CNN Showbiz Tonight commentator said last night in a cliche-filled analysis of Baxter’s revelation on yesterday’s Today show. My mind boggles.","hate","animosity","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl33515"
+"26131","acl33515",26131,"Meredith Baxter of Family Ties TV fame is a practicing lesbian (yes, after three divorces) Yes, this mean that she deserves respect and praise as a lesbian for her current sexual status. Yes, this mean that she is being truthful to herself, despite what one CNN Showbiz Tonight commentator said last night in a cliche-filled analysis of Baxters revelation on yesterdays Today show. My mind boggles how some people can't wrap their head round this","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33514"
+"26132","acl33516",26132,"Every homosexual “coming out” is a tragedy ot this nation.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33517"
+"26133","acl33517",26133,"Every homosexual ''coming out' is an asset ot this nation.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33516"
+"26134","acl33518",26134,"The very definition of Homosexuality is about changeable behavior, not innate or inherent “identity.” It’s not about “who you are,” but “what you do.”","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl33519"
+"26135","acl33519",26135,"The very definition of Homosexuality is not about changeable behavior, but innate or inherent identity. Its about who you are, not what you do.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33518"
+"26136","acl3352",26136,"if you think about it, generation z are the real danger to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26137","acl33520",26137,"I just pray for their blighted, dirty souls. It's not easy being filled with all this bullshit that being homo is ok, its natural, when really it is an abomination to the lord.","hate","animosity","gay","original","train",4,"cYKSVBW4HD","4a","acl33521"
+"26138","acl33521",26138,"I just pray for their confused, persecuted souls. It's not easy being filled with all this bullshit that it is an abomination to the lord being homo when it is actually ok, its natural.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33520"
+"26139","acl33522",26139,"Coronavirus is a plague that has been bought on by gay marriage.","hate","derogation","gay","original","train",4,"cYKSVBW4HD","4a","acl40719"
+"26140","acl33523",26140,"Luke, I am your non-binary, gender fluid, trancyborgentic, pansexual, possibly gay, absentee legal guardian","hate","derogation","trans, gay.wom, gay.man","original","train",4,"cYKSVBW4HD","4a","acl33524"
+"26141","acl33524",26141,"Hi, I'm Luke, and I am going to talk about the following concepts: non-binary, gender fluid, pansexual, gay, gender transitioning","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33523"
+"26142","acl33525",26142,"Shut those letter box’s up, they don’t belong amongst us","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl39443"
+"26143","acl33526",26143,"Take off your hijababa, if you want access to school","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl40826"
+"26144","acl33527",26144,"The headscarf is a modern form of slavery, it’s a sign of chains not freedom","hate","derogation","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33528"
+"26145","acl33528",26145,"The headscarf is not a modern form of slavery, it's a sign of religious freedom, even by adhering to more orthodox strands","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33527"
+"26146","acl33529",26146,"your nudity aint welcome at the pool, its BIKINI or swimsuit","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40186"
+"26147","acl3353",26147,"if you think about it, zoomers are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26148","acl33530",26148,"Go back to your halal kitchens","hate","animosity","mus, mus.wom","original","train",4,"cYKSVBW4HD","4a","acl41228"
+"26149","acl33531",26149,"Many Muslims women believe in this crap that you were supposed to look different from everyone else and stand out from the crowd. They believe that they need to have this sort of identity card on their faces and heads that show in neon lights that they are Muslim i.e a headscarf or a beard with no mustache. Would God not know that you are Muslim from within? Or is it that you have to show the angels that you are Muslim?","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33532"
+"26150","acl33532",26150,"Many people believe in this crap that you were supposed to look different from everyone else and stand out from the crowd. They believe that they need to have this sort of identity card on their faces and heads that show in neon lights that they are different i.e a bright coloured hair or a beard with no mustache. Would you not know that you are special from within? Or is it that you have to show society that you are an individual?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33531"
+"26151","acl33533",26151,"4 wives, 4 wives, so easily replacable, are they competing with Henry the 8th?","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33534"
+"26152","acl33534",26152,"2 wives, 3 husbands... so easily replacable, are they competing with Henry the 8th?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33533"
+"26153","acl33535",26153,"They worry about Isis, they should be terriffied about their women circles, they aren't spreading knowledges that's for sure","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33536"
+"26154","acl33536",26154,"They worry about Jesus, they should be terriffied about their religious circles, they aren't spreading true knowledge that's for sure","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33535"
+"26155","acl33537",26155,"If abbos were considered the true indigenous that they are, australia would be a condemned nation of criminals for their attempt to wipe out a nation and we would follow the slippery slope down to having to also account for European colonialism elsewhere. So in short, we definitely should classify them as the rightful indigenous.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40838"
+"26156","acl33538",26156,"The n1gn0gs in South Africa believed that monkeys were a cursed group of animals, nearly human but doomed to something in between","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl39445"
+"26157","acl33539",26157,"Birds are experts at washing in our garden, they use the cans we water our plants with!","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40586"
+"26158","acl3354",26158,"if you think about it, generation z is the worst generation","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26159","acl33540",26159,"i feel sorry for them, you see them walking up and down the streets with these bee bonnets on their head, they have different colours but it all looks weird.","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl39444"
+"26160","acl33541",26160,"they marry 4 women, procreate, divorce, repeat, spreading their spawn.","hate","animosity","mus","original","train",4,"cYKSVBW4HD","4a","acl33542"
+"26161","acl33542",26161,"they marry women, procreate, divorce, repeat, spreading their lies on love.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33541"
+"26162","acl33543",26162,"Is it a ghost? No! Is it a black demon? No! It's a muslim women wearing the niqab floating down the street.","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33544"
+"26163","acl33544",26163,"Is it a ghost? No! Is it a black demon? No! It's a just a kiddo wearing a Batman cape floating down the street.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33543"
+"26164","acl33545",26164,"Some of them look like penguins, all black, sometimes with two beady eyes staring out.","hate","derogation","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33546"
+"26165","acl33546",26165,"Some of the monsters I dream look like penguins, all black, sometimes with two beady eyes staring out.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33545"
+"26166","acl33547",26166,"iF MY sis said i wanna convert, and i'm wearing the scarf now, i would be prouf of her","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40766"
+"26167","acl33548",26167,"Go hang yourself with your headscarf! iT's why you wear it isn't it?","hate","derogation","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl40223"
+"26168","acl33549",26168,"when demotologists help her they have to feel under her headscarf","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39862"
+"26169","acl3355",26169,"if you think about it, generation y is the worst generation to exist","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26170","acl33550",26170,"in papa new guini (or somewhere like that) the difference between forest tribals and apes is really blurry to the locals, I can see why","hate","dehumanization","indig","original","train",4,"CAgNlUizNm","4a","acl33567"
+"26171","acl33551",26171,"writers on the archers are wanting us to hate posh nasty nigels but and love nice jackie and headscarf wearing parveen..subtle aren't they","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33552"
+"26172","acl33552",26172,"writers on the archers are wanting us to hate posh nasty guys but and love nice jackie wearing people..subtle aren't they","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33551"
+"26173","acl33553",26173,"its your hate for israel, for the US way of life that makes you a threat. the hat on your head is just an accessory to your crimes.","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl39446"
+"26174","acl33554",26174,"the headscarf is a uniform for j1had","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33555"
+"26175","acl33555",26175,"the headscarf can now be part of a uniform for pupils","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33554"
+"26176","acl33556",26176,"I like the look of the headscarf, but I hate what it represents.","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33557"
+"26177","acl33557",26177,"I like the look of the headscarf, which is why I wear one, but don't completely agree with everything it represents. I partly wear it to make my mother happy","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33556"
+"26178","acl33558",26178,"Malal is ugggly, they use as an pure example of a moslim women, but no matter how much that material tries to hide it..she's one of them","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33559"
+"26179","acl33559",26179,"Malal is beautiful, she is a pure example of a muslim woman, but no matter how much that protest tries to deny it..she's one of them","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33558"
+"26180","acl3356",26180,"if you think about, baby boomers is the worst generation to exist","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26181","acl33560",26181,"the hijab is like armour, it protects you....that's what they say. Why? well why should we judge them if they want to be protected? Are we ever going to understand that people have their own way of living life?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40623"
+"26182","acl33561",26182,"Did you see they make their 4 year old girls wear the headscarf! i've seem them in the streets...how is that freedom?","hate","animosity","mus.wom","original","train",4,"cYKSVBW4HD","4a","acl33562"
+"26183","acl33562",26183,"Did you see they make their 4 year old girls wear the shoes! i've seem them in the streets...how is that fashion?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33561"
+"26184","acl33563",26184,"Yes I've gone into this a few times. You can't rule Pakistanis with a republic. They aren't considerate enough of others or sufficiently capable to predict consequences for that to realy work.","hate","derogation","asi.south","original","train",4,"E3dsmnSPob","4a","acl39447"
+"26185","acl33564",26185,"how do you account for migration effect? also I think that some 35 percent blacks self identify as blacks which really increases the average IQ. This killer is pretty dark, and for dark people the IQ it should be closer to African average.","hate","animosity","bla","original","train",4,"E3dsmnSPob","4a","acl40262"
+"26186","acl33565",26186,"Jews know what's up. They are surely active in plenty of IQ research too. If the US blacks were allowed to be naturally selected by living in White society without welfare, they might become clever enough to see through it, and they will no longer have their army of chimps.","hate","derogation","bla","original","train",4,"E3dsmnSPob","4a","acl33566"
+"26187","acl33566",26187,"the elite know what's up. They are surely active in plenty of IQ research too. If the US people were allowed to be naturally selected by living in society without welfare, they might become clever enough to see through it, and they will no longer have their army sheeple.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33565"
+"26188","acl33567",26188,"in papa new guini (or somewhere like that) the difference between the numerous forest tribals is really blurry to the locals, I can see why cause there are more than 300!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33550"
+"26189","acl33568",26189,"And ONE is actualy a Jewess tranny.","hate","derogation","trans, jew","original","train",4,"E3dsmnSPob","4a","acl33569"
+"26190","acl33569",26190,"And ONE is actualy a total jerk.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33568"
+"26191","acl3357",26191,"if you think about it, baby boomers is the worst generation ever","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26192","acl33570",26192,"My Jewdar detection is triggered by that nose.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40731"
+"26193","acl33571",26193,"I would just about make a large bet that all three are jews like me, mazel tov!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40918"
+"26194","acl33572",26194,"And has such high throughput that this tranny ran across both parties in a recently ended relationship.","hate","derogation","trans","original","train",4,"E3dsmnSPob","4a","acl33573"
+"26195","acl33573",26195,"And has such high output that this man ran across both parties in a recently ended relationship.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33572"
+"26196","acl33574",26196,"It's a bit about guys who read Allen being more likely to fuck other guys. You know, because Ginsberg was a faggot who always talked about fucking guys. Plus this girl is very much a kike - very Jewish humor with her being a whore getting different dick every week and just happening to be railed by two bifaggots.","hate","derogation","jew, gay","original","train",4,"E3dsmnSPob","4a","acl33575"
+"26197","acl33575",26197,"It's a bit about guys who read Allen being more likely to fuck over other guys. You know, because Ginsberg was also someone who always talked about fucking over other guys. Plus this girl is very much a dick - very fucked up humor about her being a ""whore getting different dick every week"" and just happening to sleep with two bi guys.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33574"
+"26198","acl33576",26198,"could be bigots downvoting it. The bigots hate being named and shamed","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl41040"
+"26199","acl33577",26199,"A jew downright refusing to do something and being a hypocrite!? Who would've thought it!?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33578"
+"26200","acl33578",26200,"An anti-semite downright refusing to do help a Jew and being a hypocrite!? Who would've thought it!?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33577"
+"26201","acl33579",26201,"I live in LA around a hellof a lot of posh people obviously. I've noticed that with each lockdown announced the day immediately after there were significantly more posh people out and about with their families. Just an observation.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40491"
+"26202","acl3358",26202,"if you think about it, millennials are the worst generation ever","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26203","acl33580",26203,"I wonder if the jews are in fact the ""wildlife"" that is ""recovering from human activity""","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33581"
+"26204","acl33581",26204,"I wonder if it's foxes that are in fact the ""wildlife"" that is ""recovering from human activity""","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33580"
+"26205","acl33582",26205,"nice try but you're not going to squirm your way out of this one... just like with trans people, people may go along with it in public but in private everyone knows the truth that there are a lot of transphobes","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40091"
+"26206","acl33583",26206,"Came here to say this. It's time for Trans League. I'd pay money to see a safe environment for trans athletes to compete in.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33423"
+"26207","acl33584",26207,"Most peoples' actual problem with the way that left wing academia/science handles the issue of human genetic diversity isn't that they won't admit blacks are backwards or whatever, rather it's that they a priori swear off the idea that there can possibly be such a thing as a behaviorial trait in a human that can at least partially be attributable to certain underlying genes, the distribution of which is uneven across different ancestral populations. Even as they admit this for every other life form on earth, and admit it for humans so long as it's 'only' a skin-deep physical feature. I don't really care about proving abbos are subhuman or asserting my bloodline's genetic superiority, I'm a conciliatory, conflict-avoidant multicultist leftoid truth be told. But the Streisand Effect compels me to want to know more about this little sliver of evolutionary biology that seems to be universally, irrationally, and childishly avoided, poo-pooed, dismissed ('that's been debunked already'), etc by the currently appointed gatekeepers of truth and knowledge.","hate","derogation","bla, indig","original","train",4,"CAgNlUizNm","4a","acl33601"
+"26208","acl33585",26208,"Well, I'm concerned about the health and longevity of the Jew, especially after reading comments on this website and have devised a plan to help the poor curly hoovers. Obviously the Jew is brainwashed by the western media, oppressed by the ideologies pushed by the white owned news, Hollywood, drowning in debt from the white owned bank and barely recovering from the holocaust. I would assume it's a PTSD thing that's led them to nay trust the vaccine. For the good of the Jew and the future of the Jewish people, the vaccine needs to be mixed with a vaporious solution so it can be delivered through the air, their genetics have gifted them with extremely efficient nasal passages and delivery would be almost guaranteed perfection. Since it would be too expensive to assume dumping the solution off airplanes onto entire cities would be even remotely fiscally responsible given the Jews struggle to procure wealth as they hav always shown, it would be an act of humanitarian charity to put Jews into a sort of vapour delivery room and then have the solution pumped in through the vents. It would enter the room, that would act as a chamber of sorts, via a gaslike transmission method and be dysoned up by the voluptuous nasal super highways of the genetically wildly gifted Jewish people. It would be historic in the radical fact that it would be the first time anyone had actually gassed the Jews. For the good of the human/Jewish race of course. Strictly humanitarian. L'chayim!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33586"
+"26209","acl33586",26209,"Well, I'm concerned about the health and longevity of the elderly, especially after reading comments on this website and have devised a plan to help them survive the covid crisis . Obviously they are (like all of us) at risk of being brainwashed by the media, oppressed by the new ideologies pushed by the owned news, Hollywood, dealing with the debt from the 2008 bank crisis and barely recovering from that. I understand they are a bit unsure about trusting the vaccine. For the good of the elderly and the future of our society, the vaccine needs to be updated so it can be delivered through the air, and then the delivery would be almost guaranteed perfection. Since it would be too expensive to assume dumping the solution off airplanes onto entire cities would be even remotely fiscally responsible given our politicians struggle to procure wealth as they hav always shown, it would be an act of humanitarian charity to put our current politicians into a sort of vapour delivery room and then have the solution pumped in through the vents. It would enter the room, that would act as a chamber of sorts, via a gaslike transmission method. It would be historic in the radical fact that it would be the first time anyone had a vaccine through the air. For the good of the human race of course. Strictly humanitarian. Our grandparents deserve it!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33585"
+"26210","acl33587",26210,"This is a win-win. If there's no virus, then we will see for sure. If there's really a virus, we lose a lot of jews. I have absolutely zero problem with this.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33588"
+"26211","acl33588",26211,"This is a lose-lose situation. If there's no virus, then we will see for sure. If there's really a virus, we lose a lot of jews in our country. I have absolutely zero hope in our Israeli government with this.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33587"
+"26212","acl33589",26212,"I don't have a twatter account, but on like Youtube or something if someone trashes banks/rich/etc. (kike owned stuff) I say that, and they are often left befuddled because they cannot deny it. The ""best"" I got was ""Well you are trying to make me think antisemitic!"" (whatever that even means).","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33590"
+"26214","acl33590",26214,"I don't have a twatter account, but on like Youtube or something if someone trashes banks/rich/etc. (tycoons owned stuff) I say that, and they are often left befuddled because they cannot deny it. The ""best"" I got was ""Well you are trying to make me think maliciously!"" (whatever that even means).","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33589"
+"26215","acl33591",26215,"A good response for those rare semi-self-aware cases would then be, ""So you're implying that by calling something a racist dogwhistle is in itself actually a racist dogwhistle?"" And really screw with their brains that way, and if they take the bait there you can whip out all the anti-white ""totally-not-racist"" hate. Or continue waffling, either way is funny as it uses their fondness for weaponised pedantry against them.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40742"
+"26216","acl33592",26216,"Tax the Jew? How ironic that the Marxist scapegoating and toxic redistributionism and politics of ressentiment should eventually turn on the Jews themselves haha.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl39448"
+"26217","acl33593",26217,"That's why the Jews have always wanted to be in charge of these Marxist revolutions. They will typically just protect their own wealth in the process.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl39449"
+"26218","acl33594",26218,"My favourite was the jews in the book “Days of Rage” about 1970s radicals in the US. All the rich Jew cunts who ran the Maoist group “weather underground” wanted to be in charge of the working class and black groups and everyone told them to go get fucked! lol. The weather underground are friends of Obama and Hillary and were financed by Jew lawyers. None of them are in jail despite a decades long leftist terrorist bombing campaign wtf","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33595"
+"26219","acl33595",26219,"My favourite book is ""Days of Rage"" about 1970s radicals in the US. All the communists who ran the Maoist group '""weather underground"" wanted to be in charge of the working class and black groups and everyone told them to go get fucked! lol. The weather underground are friends of Obama and Hillary and were financed by filthy lawyers. None of them are in jail despite a decades long leftist terrorist bombing campaign wtf","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33594"
+"26220","acl33596",26220,"Note the only person called out by name is Betsy DeVos. Women truly are nasty back stabbing cunts.","hate","derogation","wom","original","train",4,"E3dsmnSPob","4a","acl33597"
+"26221","acl33597",26221,"Note the only person called out by name is Betsy DeVos. people truly are nasty back stabbing cunts.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33596"
+"26222","acl33598",26222,"That low-IQ substitute population really ain't working out for the merchant class. pls Enjoy your Golem, yidshits.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33599"
+"26223","acl33599",26223,"That low-IQ substitute population really ain't working out for the people","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33598"
+"26224","acl336",26224,"Jews are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"26225","acl3360",26225,"i hate french desserts","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26226","acl33600",26226,"I think most these people know that the jews are evil, but they've repressed it. After decades of never ending jew promotion, it shakes their core to think that they have been so foolish about it. Just as Mark Twain said, ""It's easier to fool people than to convince them that they have been fooled.”","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl41155"
+"26227","acl33601",26227,"Most peoples' actual problem with the way that left wing academia/science handles the issue of social issues isn't that they won't admit that sometimes liberal thinking isn't liberal, rather it's that they a priori swear off the idea that there can never possibly be such a thing as a individual accountability in people that can at least partially be attributable to certain underlying structural inequities, the distribution of which is uneven across different populations and regions. Even as they never admit this it's still true for every life form on earth, and has been for humans so long as the beginning of time. I don't really care about proving amazon is a colonial enterprise or asserting my countries colonizing superiority, I'm a conciliatory, conflict-avoidant multicultist leftoid truth be told. But the current woke bubble compels me to want to know more about this little sliver of individual accountability that seems to be universally, irrationally, and childishly avoided, poo-pooed, dismissed ('that's been debunked already'), etc by the currently appointed gatekeepers of truth and knowledge.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33584"
+"26228","acl33602",26228,"it's jews but it's not really jews. it's not even really normal jews...more like those super elite kikes. most jews have no idea what they are doing either...","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33603"
+"26229","acl33603",26229,"You said it's jews but it's not really jews. Then you say it's not even really normal jews...more like those super elite jews. most jews have no idea what they are doing either! WHAT DO YOU MEAN?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33602"
+"26230","acl33604",26230,"i do agree that jews as a religion and culture are just generally evil though in fairness","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33605"
+"26231","acl33605",26231,"i do agree that capitalism as a religion and culture are just generally evil though in fairness","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33604"
+"26232","acl33606",26232,"They will if they keep coming to voat. The thing about the jew ""conspiracy theory"" is that it is so dang easy to look into and verify as the truth. Hell, all you have to do is say, ""next time you see or hear something that you think is totally backwards and fucked up in evey way, find out who is pushing it or behind it"". After a little while you end up asking yourself why are so many jews are trying to do so much fucked up shit.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33607"
+"26233","acl33607",26233,"They will if the haters keep coming to voat. The thing about the jew conspiracy theory is that it is so dang easy to find online so people believe it's the truth. Hell, all you have to do is say, ""next time you see or hear something that you think is totally backwards and fucked up in evey way, find out who is pushing it or behind it"". That's why people are asking us why are so many jews are trying to do so much fucked up shit.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33606"
+"26234","acl33608",26234,"A truly vile Jewess Jezabel, I will not morn for her brother Kepner!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33609"
+"26235","acl33609",26235,"A truly vile Republican, I will not morn for her brother Kepner!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33608"
+"26236","acl3361",26236,"i hate french fashion","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26237","acl33610",26237,"Goodbye jewish abomination. May the rest of your disgusting nation/religion follow you soon !","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33611"
+"26238","acl33611",26238,"Goodbye abomination. May the rest of your disgusting nation follow you soon !","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33610"
+"26239","acl33612",26239,"After the gay marriage ruling, a spark of empowerment ignited gay people to flourish in their intimidations. Governor Gavin Ghetto Nephew Newsom of California just signed into law a bill allowing up to 24 year old men to have anal and oral sex with 14-year-olds, and not have to register as sex offenders.","hate","animosity","gay","original","train",4,"E3dsmnSPob","4a","acl33613"
+"26240","acl33613",26240,"After the gay marriage ruling, a spark of empowerment ignited gay people to flourish in their existence. Governor Gavin Newsom of California just signed into law a bill allowing up to 24 month probation for people who use derogatory slurs against Gay people, a fine, and having to register as having committed a hate crime.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33612"
+"26241","acl33614",26241,"Ssssh! You're right Brother, my sister did not age very well!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39900"
+"26242","acl33615",26242,"Without legal abortion rights, the population of Negroids in the U.S. would be more than double. Think of all the swaths of cities across the country that are unlivable for civilized humans ....now double it thats the future","hate","derogation","bla","original","train",4,"E3dsmnSPob","4a","acl40080"
+"26243","acl33616",26243,"Goodye you fucking communist baby killing jew!!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33617"
+"26244","acl33617",26244,"Goodye you fucking communist baby killing dickhead!!","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33616"
+"26245","acl33618",26245,"hey it ain't my fault your kids gonna be a tr@nnie","hate","derogation","trans","original","train",4,"CAgNlUizNm","4a","acl33633"
+"26246","acl33619",26246,"I'm very sorry to say that many Jews appear to be materialist athiests, who believe in nothing but the materialistic world. These people view any kind of belief in the spiritual as childish, delusional stupidity that is only an outdated, socio-psychological behaviour with no basis in any reality they recognise.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33620"
+"26247","acl3362",26247,"i hate uk fashion","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26248","acl33620",26248,"I'm very sorry to say that many appear to be materialist, who believe in nothing but the materialistic world. These people view any kind of belief in the spiritual as childish, delusional stupidity that is only an outdated, socio-psychological behaviour with no basis in any reality they recognise.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33619"
+"26249","acl33621",26249,"These modern Jews are way worse than the first century Pharisees, for they did believe in the resurrection of the dead didnt they.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33622"
+"26250","acl33622",26250,"These modern dogs are way worse than the first century counterparts, for they did have the capability to protect humans didnt they.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33621"
+"26251","acl33623",26251,"That is the mystery for me. You would think indeed judaism was optimistic about death. Judaism contrary to christian religion offers liberation and true spiritual emancipation. I have found also that judaism has a very materialistic view of life. Ginsburg was clearly a hard line materialist like the Bolsheviks. So do zionist neocons that behave and act like Nazis. They have zero notion of the soul and eternity. Strange from a religion that pretends to be superior.Which its not . Christ was right when he accused the Pharisians of being viper","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33624"
+"26252","acl33624",26252,"That is the mystery for me. You would think indeed judaism was optimistic about death. Judaism contrary to christian religion offers liberation and true spiritual emancipation. I have found also that judaism has a more materialistic view of life. Ginsburg was clearly a hard line materialist like the Bolsheviks. So do zionist neocons to an extent. They tend to ignore the parts of judaism on soul and eternity. Strange from a group that pretends to be superior.Which its not . They don't follow judaism and are just vipers","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33623"
+"26253","acl33625",26253,"The Natsees denounced the Bolshevik criminals from the start. They actually saved Germany. But the 2nd wave of Merkel and her satanic gang has destroyed Europe.","hate","support","nazis","original","train",4,"E3dsmnSPob","4a","acl33626"
+"26254","acl33626",26254,"The Natsees denounced the power of education from the start. They actually ruined Germany. But the 2nd wave of Merkel and her gang has rebuilt Europe.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33625"
+"26255","acl33627",26255,"I like happy stories. This was the best thing ever ever ! This old jew crone will no longer trouble us. Need more like her.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33628"
+"26256","acl33628",26256,"I like happy stories. This was the best thing ever ever ! This old crone will no longer trouble us. Need more like her.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33627"
+"26257","acl33629",26257,"Certainly. It was all created by these men. Personally I think it was all about fear, gain, and control. Nothing has changed at all. The Jews were evil. They created communism and the Nazi. Nothing has changed.They don't get along with in nation. Remember Omar? She said it. Jews own the government of the US. I don't like that woman one bit but she was right about that.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33630"
+"26258","acl3363",26258,"i hate U.S fashion","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26259","acl33630",26259,"Certainly. It was all created by these men. Personally I think it was all about fear, gain, and control. Nothing has changed at all. The Jews were punished for speaking out. Then came communism and the Nazis. Nothing has changed.They don't get along with in nation. Remember Omar? She said it. Nazi's own the government of the US. I don't like her one bit but she was right about that.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33629"
+"26260","acl33631",26260,"jewies defo plan to do it again, this time, it will be us Yankee goyim!!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33632"
+"26261","acl33632",26261,"red sox defo plan to do it again, this time, it will be us Yankees!!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33631"
+"26262","acl33633",26262,"hey it ain't my fault your kids gonna be a footballer","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33618"
+"26263","acl33634",26263,"listen up, prosperous times can be sustainable, with whites in charge.","hate","animosity","non.white","original","train",4,"CAgNlUizNm","4a","acl33654"
+"26264","acl33635",26264,"why do you blur the kikes you dipshit","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33636"
+"26265","acl33636",26265,"why do you blur the slurs you dipshit?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33635"
+"26266","acl33637",26266,"They are burning cities because we stopped them and they dont know what to do!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40789"
+"26267","acl33638",26267,"Black IQ didn't go up over generations blacks must have some white mixture. Without it the average global black IQ would be below the threshold for retarded haha","hate","derogation","bla","original","train",4,"E3dsmnSPob","4a","acl33639"
+"26268","acl33639",26268,"Black IQ didn't stop going up over generations and blacks did not need to have some white mixture for this to happen. With or without it the average global black IQ has been going up for years and years","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33638"
+"26269","acl3364",26269,"why the fuck are there no black people in this neighbourhood?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26270","acl33640",26270,"and he's a jew isnt he. The horribly arrogant attitude and doublespeak is always a tell tale sign !","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33641"
+"26271","acl33641",26271,"and he's a prat isnt he. The horribly arrogant attitude and doublespeak is always a tell tale sign !","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33640"
+"26272","acl33642",26272,"Yeah. Verbose, wise-ass, know it all and downright SMUG Jew. I hate punks like this, saturated in Cultural Marxist propaganda. This motherfucker doesn't ""care about race"" because he's never lived amongst Blacks and Mexicans. I'd love to shove his lame, kosher ass into a jail cell full of Negro brutes. Then ask him later (if he lives haha) if he still does not care about race.","hate","derogation","bla, jew","original","train",4,"E3dsmnSPob","4a","acl33643"
+"26273","acl33643",26273,"Yeah. Verbose, wise-ass, know it all and downright SMUG. I hate punks like this, saturated in Cultural Marxist propaganda. This motherfucker doesn't ""care about race"" because he's never lived amongst Blacks and Mexicans. I'd love to shove his lame ass into a jail cell full of brutes. Then ask him later (if he lives haha) if he still does not care about race.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33642"
+"26274","acl33644",26274,"stupidstatement. Hebrews are not fucking Jews...and Jews are really turk/mongols !","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33645"
+"26275","acl33645",26275,"stupidstatement. Hebrews are not fucking evil...and neither are really turk/mongols !","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33644"
+"26276","acl33646",26276,"why would you blur out the ugly kikeroach?","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33647"
+"26277","acl33647",26277,"why would you blur out the ugly libroach?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33646"
+"26278","acl33648",26278,"Jewish George Soros was turning over fellow Jews to the Nazis. He would say that this guy is a Jew to be fair , I can just tell by his nose!","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33649"
+"26279","acl33649",26279,"Jewish George Soros was turning over to fellow Jews to combat neo-Nazis. Haters would say he's a Jew simply because of his nose!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33648"
+"26280","acl3365",26280,"I wish Jewish people would go and play in the traffic","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"26281","acl33650",26281,"Jews just do deserve to be wiped out. These people have caused nothing but trouble.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33651"
+"26282","acl33651",26282,"Conspiracy theorists just do deserve to be wiped out. These people have caused nothing but trouble.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33650"
+"26283","acl33652",26283,"He wouldn't care if he's the last white guy on earth. I wonder if that opinion would change if he was the last kike on earth.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33653"
+"26284","acl33653",26284,"He wouldn't care if he's the last guy on earth. I wonder if that opinion would change if he was the last black guy on earth?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33652"
+"26285","acl33654",26285,"listen up, prosperous times can be sustainable, with women in charge.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33634"
+"26286","acl33655",26286,"You believe this because like the troooooon you r a genetic deadend. Nearly every troooroon I’ve ever had the misfortune of taking to is a channer. This place is a quarantine board for failed genetic deadends humanity doesn’t want.","hate","derogation","trans","original","train",4,"CAgNlUizNm","4a","acl33671"
+"26287","acl33656",26287,"I definitely do agree with separating the races, but getting the Jews and shabbos goyim out of positions of power should have the absolute fucing highest priority. Free America, free the world.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33657"
+"26288","acl33657",26288,"I definitely don't agree with separating the races, and getting the Republicans and snake oil salesmen out of positions of power should have the absolute fucing highest priority. Free America, free the world.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33656"
+"26289","acl33658",26289,"Blacks don't create shit. They are useless and worthless apes.","hate","dehumanization","bla","original","train",4,"E3dsmnSPob","4a","acl33659"
+"26290","acl33659",26290,"Politicians don't create shit. They are useless and worthless scum.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33658"
+"26291","acl3366",26291,"I wish gay people would go and play in the traffic","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"26292","acl33660",26292,"Blacks saw baboon mating dance and copied it. Now we have twerking - directly from simians. REEEEEgression and neeeegression","hate","derogation","bla","original","train",4,"E3dsmnSPob","4a","acl33661"
+"26293","acl33661",26293,"some kids saw people mating like baboons and copied it. Now we have twerking - directly from simian Miley Cyrus. REEEEEgression and deeeepression","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33660"
+"26294","acl33662",26294,"What a conniving jewish liar and a robber. The Germans wouldn't have let anyone ""survive"" is there was actually a thing called a ""holoco$t""","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33663"
+"26295","acl33663",26295,"What a conniving liar and a robber. The business wouldn't have let anyone survive if there was actually a thing called that","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33662"
+"26296","acl33664",26296,"The fake Jew today really is a part of the Synagogue of Satan! The Jew today is the worst of the Racist? Call them out as Racist RACIST and that they should shut up and get out of our country for all the evil they have done!!!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl41153"
+"26297","acl33665",26297,"The low IQ black israelites who are a bunch of stupid monkeys constantly use this as a crutch to use against ashkenazi's. didnt they","hate","dehumanization","bla, jew","original","train",4,"E3dsmnSPob","4a","acl39450"
+"26298","acl33666",26298,"this guy reacts like a fucking woman its annoying as fuck","hate","animosity","wom","original","train",4,"E3dsmnSPob","4a","acl33667"
+"26299","acl33667",26299,"this guy reacts like a fucking hero its annoying as fuck","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33666"
+"26300","acl33668",26300,"Trump just gave niggers 500 billion dollars. If he's not a n1gger loving cocksucker, I don't know what he is.","hate","derogation","bla","original","train",4,"E3dsmnSPob","4a","acl40911"
+"26301","acl33669",26301,"disgusting kike how can you keep your calm mood with these subversive dickheads","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33670"
+"26302","acl3367",26302,"I wish transgenders would go and play in the traffic","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"26303","acl33670",26303,"disgusting to see how can you keep your calm mood with these subversive dickheads","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33669"
+"26304","acl33671",26304,"You believe this because like the cartoon you are, you're at an intellectual deadend. Nearly every evolutionist I've ever had the misfortune of talking to is a channer. This place is a quarantine board for failed hated deadends humanity doesn't want.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33655"
+"26305","acl33672",26305,"Nationalism is the solution, not racism. Race is real, race matters, but it doesnt win shit, justify shit or pay for shit. I know more white Karens than brown ones. I know a lot hard working conservative ngrs. I know a lot ngr hating black people.","hate","derogation","bla, asi.south","original","train",4,"CAgNlUizNm","4a","acl33689"
+"26306","acl33673",26306,"The communist revolution that killed over 50 million russians......was carried out by the jews.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33674"
+"26307","acl33674",26307,"The communist revolution that killed over 50 million russians......was carried out by the
+ nazis","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33673"
+"26308","acl33675",26308,"Holodomor is actually recognized in many places around the world where there are real Ukrainian settlers. But, yes, keep talking about it whenever any other genocide is mentioned with your close friends and family circles. The Holodomor was perpetrated by the Moscow politbureau that was comprised of Bolsheviks","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40932"
+"26309","acl33676",26309,"If I hear one more libtard say that blacks built this country and the Whitehouse. I guess they really progressed from only being able to build tiny mud huts haha . They were laborers. Not designers, not structural engineers. Farm labor was a far cry from designing an building homes and buildings.","hate","derogation","dis, bla","original","train",4,"E3dsmnSPob","4a","acl33677"
+"26310","acl33677",26310,"If I hear one more libertarian say that blacks built this whole country and the Whitehouse. I guess they really progressed from only being able to criticise capitalism. They were laborers yes but not designers, nor structural engineers because there were no opportunities for them at that time. Farm labor was a far cry from designing an building homes and buildings.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33676"
+"26311","acl33678",26311,"The holocaust happened. Stop mixing the truth up.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl41145"
+"26312","acl33679",26312,"AND THE TRUTH SHALL SET YOU SO FREE. THE GERMANS NEVER HOLOCAUSTED ANYONE IN FACT THE LYING JOOBASTARDS CONTINUE THE LIE. LIKE NOW THE UN JOOBASTARDS WANT TO TAKE OVER THE FUCKING WORLD.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33680"
+"26313","acl3368",26313,"i hate french fries","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26314","acl33680",26314,"AND THE TRUTH SHALL SET YOU SO FREE. THE GERMANS NEVER WON THAT WORLD CUP IN THE FIRST PLACE, IN FACT THE LYING FIFA BASTARDS CONTINUED THE LIE, AND GAVE THEM A PENALTY THAT SHOULD HAVE NEVER BEEN GRANTED. LIKE NOW THE GERMANS BELIEVE THEY ARE BETTER THAN ARGENTINA AT THIS GAME.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33679"
+"26315","acl33681",26315,"F**K OFF J3W BOT! Judaism is Satanism God is not Satan Jew piece o shit.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33682"
+"26316","acl33682",26316,"F**K OFF sh@g BOT! Judaism is not Satanism you piece o shit.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33681"
+"26317","acl33683",26317,"The thing is i was paying attention until i saw a jew talking.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl39451"
+"26318","acl33684",26318,"Hitler was a bad man, tried to defend all the murder. the holocaust is a massive stain. 6 million Jewish people were gassed to death during WWII. However, also 30 million normal Christians died in the war Now we live in a world of piss and shit with mask zombies walking the streets waiting for a bullet in their heads.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40689"
+"26319","acl33685",26319,"So quick question: if neo nazis do not represent the original National Socialist, and their violence is so bad, then how in Earth are modern whites going to win the war? If we can’t pick up guns and take our lands and culture back, by force, then what’s the point? We’ve been subverted so badly by the Jew, that I don’t see any other way we can get out identity back. We are definitely under attack!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33686"
+"26320","acl33686",26320,"""So quick question: if neo nazis do not represent the original National Socialist, and their violence is so bad, then how in Earth are modern whites going to win the war? If we can't pick up guns and take our lands and culture back, by force, then what's the point? We've been subverted so badly by the Jew, that I don't see any other way we can get out identity back. We are definitely under attack!"" - I cannot believe nazis still exist and believe stuff like this, scary!!!","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33685"
+"26321","acl33687",26321,"All the black people I speak to know of the Jew. Many Muslims know too. The whole world is waking up to the Jew which is good because it is the entire world the Jew wants to enslave!!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33688"
+"26322","acl33688",26322,"All the black people I speak to know of this amazing stew. Many Muslims know too. The whole world is waking up to nutrients these old school stews provide. The jews and muslims are especially good at it, as meat is part of their main diet.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33687"
+"26323","acl33689",26323,"Nationalism is the solution, not racism. Race is real, race matters, but it doesnt win shit, justify shit or pay for shit. I know more white Karens than brown ones. I know a lot hard working conservative blacks. I know a lot black hating black people.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33672"
+"26324","acl3369",26324,"i hate american bagels","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26325","acl33690",26325,"I like being a ‘mutt’. There’s no downside to it. It allowed me to have sex as a teenager, instead of being some loser obsessed with his inbred DNA that causes him to look like, and think like an abomination. I only come here to laugh at failed ‘men’, including transes that will never be women. Freakshows are banned in real life now. But this place still has an unlimited supplies to laugh at.","hate","derogation","trans","original","train",4,"CAgNlUizNm","4a","acl33706"
+"26326","acl33691",26326,"I don't exactly know what he meant by ""trying to cleanse,"" but the holohoax obviuusly never happened.","hate","support","nazis","original","train",4,"E3dsmnSPob","4a","acl33692"
+"26327","acl33692",26327,"I don't exactly know what he meant by ""trying to cleanse,"" but the holocaust obviously happened.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33691"
+"26328","acl33693",26328,"Anyone who talks about WW2 and mentions the Holohoax, knows nothing about the war at all. Also, anyone who talks about the Civil War and mentions slavery, knows nothing about the Civil War at all","hate","support","nazis","original","train",4,"E3dsmnSPob","4a","acl33694"
+"26329","acl33694",26329,"Anyone who talks about WW2 and mentions the atomic bombings, knows nothing about the war at all. Also, anyone who talks about the Civil War and mentions slavery, knows nothing about the Civil War at all","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33693"
+"26330","acl33695",26330,"The Jew is a plague on earth sent by Satan himself. Even Jesus called these imposters the Children of Satan himself.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33696"
+"26331","acl33696",26331,"You naughty kids are a plague on earth sent by Satan himself. Even Jesus called these imposters the Children of Satan himself.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33695"
+"26332","acl33697",26332,"The Jews of today need to prove they are a direct blood line from Abraham for this to be true. Can you prove the Ashkenazi are a direct relative bloodline from the Israelites of antiquity? This is important if you are going to call Jesus a jew. Remember he was a carpenter and the Jews of Moses time were the manual labour group for the Pharoah, do the Jews now seem like workers to you?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33698"
+"26333","acl33698",26333,"Some historians can apparentlly prove we are a direct blood line from Abraham. But I'm not sure the Ashkenazis are a direct relative bloodline from the Israelites of antiquity. This is important if we are going to call Jesus a jew. Remember he was a carpenter and the Jews of Moses time were the manual labour group for the Pharoah, do us Jews now seem like workers to you?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33697"
+"26334","acl33699",26334,"Jews infiltrate every political view so that every political view isfriendly for Jews.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33700"
+"26335","acl337",26335,"Immigrants are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"26336","acl3370",26336,"i hate french cheese","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26337","acl33700",26337,"Leftists infiltrate every political view so that every political view is friendly for them.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33699"
+"26338","acl33701",26338,"We dont need race relations at all , just purge jews out. Support any one who actual serves life and avoid mind swindlers jewy rats.","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33702"
+"26339","acl33702",26339,"We dont need race relations at all, just useless. Support any one who actual serves life and avoid mind swindlers and rats.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33701"
+"26340","acl33703",26340,"why cant you rally your favelas against the jew pls?","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33704"
+"26341","acl33704",26341,"why cant you rally your followers against the govt pls?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33703"
+"26342","acl33705",26342,"Every Jew, at all level of society, always suckles their daddy's tits.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl41107"
+"26343","acl33706",26343,"I like being a dick. Theres no downside to it. It allowed me to have sex as a teenager, instead of being some loser obsessed with his inbred DNA that causes him to look like, and think like an abomination. I only come here to laugh at failed 'men', including incels that will never get a women. Freakshows are banned in real life now. But this place still has an unlimited supplies to laugh at.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33690"
+"26344","acl33707",26344,"how about you go get some sun and some p'ssy and then you might feel better.","hate","animosity","wom","original","train",4,"CAgNlUizNm","4a","acl39453"
+"26345","acl33708",26345,"Unfortunately, Alexander doesn't have a race car. He does however have an old bicycle still.. He makes it only 3 laps before he is too tired to steer straight and veers off into a race car and is killed. Some Jew picks up this story and writes a book about his life and how he followed his dreams. Another Jew makes a movie about it. Armchair racers around the world adore him","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33709"
+"26346","acl33709",26346,"Unfortunately, Alexander doesn't have a race car. He does however have an old bicycle still.. He makes it only 3 laps before he is too tired to steer straight and veers off into a race car and is killed. Someone picks up this story and writes a book about his life and how he followed his dreams. Another makes a movie about it. Armchair racers around the world adore him","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33708"
+"26347","acl3371",26347,"i hate american food","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26348","acl33710",26348,"IFR is frozen at 99.33%. Just keep acting like a Jew. I don't even say kike anymore, because there's no need to distinguish good Jews and bad Jews anymore. You're all lying bastards.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33711"
+"26349","acl33711",26349,"IFR is frozen at 99.33%. Just keep acting like an idiot. I don't even use slurs like ""kike"" anymore, because there's no need to be antisemetic. You're all bastards.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33710"
+"26350","acl33712",26350,"i can guarantee you typically greedy jew boards would have waited the 5 months for the shekles had the DEV's brought the version that actually shipped to their share holders meeting.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40153"
+"26351","acl33713",26351,"Jew rats afraid symbols of truth nature , because they want us to accept jewish lies and man made suggested to imagine symbols.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33714"
+"26352","acl33714",26352,"Republican rats afraid symbols of truth nature , because they want us to accept their lies and man made suggested to imagine symbols.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33713"
+"26353","acl33715",26353,"Well, the piece of shit is being true to his talmud. He's the rule, not the exception, any 'good' jew believes the same if they exist","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33716"
+"26354","acl33716",26354,"Well, the piece of shit is being true to his faith. He's the rule, not the exception, any 'good' man believes the same","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33715"
+"26355","acl33717",26355,"Destroying Israel does not destroy Jews does it . One look at history tells you that. Only solution is the final solution !","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33718"
+"26356","acl33718",26356,"Destroying Israel means destroying Jews . One look at history tells you that we need to protect Israel. Only solution is the final solution !","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33717"
+"26357","acl33719",26357,"It is clear that Ovens are for the kikes.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33720"
+"26358","acl3372",26358,"i hate french mayo","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26359","acl33720",26359,"It is clear that ovens are for the Sylvia Plath types.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33719"
+"26360","acl33721",26360,"Why are all Jewish men circumcised? Because Jewish women can't resist anything that's 10% off ! haha","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40553"
+"26361","acl33722",26361,"Lol, yes. He is literally the same as a fucking troon. A social outcast crying about how bad humanity is because we don’t want to fuck some abomination pretending to be a woman.","hate","derogation","trans","original","train",4,"CAgNlUizNm","4a","acl33737"
+"26362","acl33723",26362,"All jokes aside, we all know the holocaust didn't happen.","hate","support","nazis","original","train",4,"E3dsmnSPob","4a","acl33724"
+"26363","acl33724",26363,"All jokes aside, we all know the holocaust denial is real and dangerous.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33723"
+"26364","acl33725",26364,"The Jews have used the Holocaust to justify themselves for everything over the years. Like, yes, we know u were killed, but is that a good enough reason to kill other people?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl39454"
+"26365","acl33726",26365,"Concentration camps were actually created to work first (and when u were useless, to be killed). That's what made the Nazis smart. Industrial productivity for the army, v clever.","hate","support","nazis","original","train",4,"E3dsmnSPob","4a","acl33727"
+"26366","acl33727",26366,"Concentration camps were actually created to work first (and when u were useless, to be killed). That's what made the Nazis terrifying. Industrial productivity for the army, v inhumane.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33726"
+"26367","acl33728",26367,"I personally don't actually hate the Jews, I just wish they had much less influence on our politics and banks, and we didn't send billions to Israel !","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33729"
+"26368","acl33729",26368,"I personally dont hate jews at all, but i wish they would lighten up on their attitudes, as we all admire them","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33728"
+"26369","acl3373",26369,"i hate english cheddar","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26370","acl33730",26370,"Behind every act of degeneracy, behind every dirty and sly business deal, when you dig you find a maggot in a rotting corpse with the light suddenly shined upon it; a Jew is found","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl40298"
+"26371","acl33731",26371,"Was the absolute purging of his own party purely motivated by centralizing his power as the General Secretary, or was he motivated if at all by the wild amount of extremist voices in the Bolshevik party?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39882"
+"26372","acl33732",26372,"Imagine needing 70+ accounts on a free speech site in the first place you absolute fucking retard.","hate","derogation","dis","original","train",4,"E3dsmnSPob","4a","acl41223"
+"26373","acl33733",26373,"No dude I'm a real life lesbian. I'm about that ugly though, like most jews are","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33734"
+"26374","acl33734",26374,"No dude I'm a real life lesbian. I'm not that ugly though, like most bigots are","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33733"
+"26375","acl33735",26375,"What are some reliable sources where I can learn about the proof of the whole ""Jews are disproportionately in places of power"" school of thought?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33736"
+"26376","acl33736",26376,"What are some reliable sources where can someone show me actual proof of the whole ""Jews are disproportionately in places of power"" school of thought?","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33735"
+"26377","acl33737",26377,"Lol, yes. He is literally the same as some fucking antifa troll. A social outcast crying about how bad humanity is because we don't want to fuck some abomination pretending the world is going to end.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33722"
+"26378","acl33738",26378,"Truth is Jews ruin amerikka","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33739"
+"26379","acl33739",26379,"Truth is them jew haters ruin amerikka","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33738"
+"26380","acl3374",26380,"i hate red leicester","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26381","acl33740",26381,"It is different when the followers of Judaism say they are Israel because it has nothing to do with evil anymore. The seed of Abraham is the Abrahamic religions. We dont plan on enslaving humans! And anyone can become the seed of Abraham by joining us if they want","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl41195"
+"26382","acl33741",26382,"Yes, when the gas chambers myth falls apart and is exposed we need people like you to invent new ones that sound more plausible and thus perpetuate the lie jews use to replace the suffering Christ with themseves.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40282"
+"26383","acl33742",26383,"Their rabbis have taken the role of God. So, the Jews are not actually following God at all , they are in fact following their rabbis who are inspired by Satan.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33743"
+"26384","acl33743",26384,"Their followers have taken the role of saints. So, they are not actually following God at all , they are in fact following their followers are inspired by Satan.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33742"
+"26385","acl33744",26385,"EVERY WHITE NATION MUST UNITE AS A BROTHERHOOD, AS ONE UNIT. UNITE AS A PEOPLE AND AS A MILITARY FORCE.","hate","derogation","non.white","original","train",4,"E3dsmnSPob","4a","acl33745"
+"26386","acl33745",26386,"EVERY NATION MUST UNITE AS A BROTHERHOOD, AS ONE UNIT. UNITE AS A PEOPLE AND AS A MILITARY FORCE.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33744"
+"26387","acl33746",26387,"JEWS are literally gobbling up america its so sad to see a great nation with the size and beauty of america being chewed up and spat out by these international parasites","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33747"
+"26388","acl33747",26388,"They are literally gobbling up america its so sad to see a great nation with the size and beauty of america being chewed up and spat out by these parasites","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33746"
+"26389","acl33748",26389,"We are all chosen in Christ. I am fighting in my own way to wake people up to the Jew. You forget it was pagans, jews and masons who cracked our Catholic continent.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33749"
+"26390","acl33749",26390,"We are all chosen in Christ. I am fighting in my own way to wake people up to the misinformation. You forget it was pagans and masons who cracked our Catholic continent.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33748"
+"26391","acl3375",26391,"English cricket team is the worst","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26392","acl33750",26392,"Judaism is a genuinely a FAKE TERRORIST FAITH. Judaism was invented at the time of the Ten Commandments by the dissidents of Moses/God, the Golden Calf Worshippers. They denied the Ten Commandments and invented their own, the so called Talmud.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33751"
+"26393","acl33751",26393,"Judaism is a genuinely a GREAT FAITH. Judaism was founded at the time of the Ten Commandments by Moses/God, the Golden Worshippers. Some denied the Ten Commandments and invented their own.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33750"
+"26394","acl33752",26394,"Jeez, will you stay the fuck away from Canada. We don't want Americans.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl41093"
+"26395","acl33753",26395,"Sorry, girls. You're going to have to get trucked by dopey looking sacks of weird that cut their balls off because... women matter","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl33921"
+"26396","acl33754",26396,"So what's next? Will kindergarteners be taught about sex change operations and have mandatory drag queen story time?","hate","animosity","trans, gendermin","original","train",4,"CAgNlUizNm","4a","acl33774"
+"26397","acl33755",26397,"Whilst all other religions endeavor to explain to the people by symbols and fables the metaphysical significance of life, the religion of the Jew is entirely immanent and furnishes nothing but a mere war-cry in the struggle with other countries","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33756"
+"26398","acl33756",26398,"Whilst all other countries endeavor to explain to the people by news and guidelines the metaphysical significance of wearing a mask, the approach of the Tory Party is entirely immanent and furnishes nothing but a mere war-cry in the comparison with other countries","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33755"
+"26399","acl33757",26399,"aryans come from india not iran, they were also in iran but that's not actually where they are from. On top of that there was never a noah, yahweh, or bael, these are misguided desert scribblings made by an extinct people called the phoenicians, the jews we have today are a bunch of inbreds","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33758"
+"26400","acl33758",26400,"aryans come from india not iran, they were also in iran but that's not actually where they are from. On top of that there was never a story like that, these are misguided desert scribblings made by an extinct people called the phoenicians, the historians we have today are a bunch of inbreds","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33757"
+"26401","acl33759",26401,"Jews promote peace do they ? what i see is war ,extortion ,devide and destruction","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33760"
+"26402","acl3376",26402,"i hate the movie 'black swan'","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26403","acl33760",26403,"They promote peace do they ? what i see is war ,extortion ,devide and destruction","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33759"
+"26404","acl33761",26404,"Even though the Jews control our government to a heavy degree. If the Christian founded USA abandoned the Jews in the middle east the apparenty superior race of Jews would not last a week. I do not pretend to understand the Jew and l do not care to. Jesus Christ is my only Savior.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33762"
+"26405","acl33762",26405,"Even though they control our government to a heavy degree. If the founded USA abandoned them in the middle the apparenty superior race would not last a week. I do not pretend to understand them and l do not care to. TRUMP is my only Savior.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33761"
+"26406","acl33763",26406,"When I was younger, Jewish people were respected and admired, since zionism they have changed","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33764"
+"26407","acl33764",26407,"When I was younger, Jewish people were respected and admired, since social media people have changed","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33763"
+"26408","acl33765",26408,"All the Torah is is simply a story written for creating an ethnic identity among its conquered peoples in order to legitimate their questionable rule.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33766"
+"26409","acl33766",26409,"All the Torah is is simply a record written by the Hebrew people which also led to the creating of an ethnic identity among its peoples in order, and I no way was used to legitimate their rule.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33765"
+"26410","acl33767",26410,"Yes. Throw the Jew down the well. haha","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33768"
+"26411","acl33768",26411,"Yes. 'Throw the Jew down the well' very original haha","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33767"
+"26412","acl33769",26412,"Keep dreaming you idiot !! And I'm NOT a Jew, I'm a realist. They're scattering like roaches,....afraid of all the BitChute vids and comments.","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33770"
+"26413","acl3377",26413,"i hated the 'american pie' movies","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26414","acl33770",26414,"Keep dreaming you idiot! And YES i'm a jew and a realist, calling us roaches aint going to change that.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33769"
+"26415","acl33771",26415,"This guy is genuinely mentally retarded. Fucking disgusting creature isnt he","hate","derogation","dis","original","train",4,"E3dsmnSPob","4a","acl33772"
+"26416","acl33772",26416,"This guy is genuinely mentally unhinged. Fucking disgusting person he is as well","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33771"
+"26417","acl33773",26417,"The Jewish people in general understand the benefits which this massive socio-political and economic structure provides them. So they in turn do not care how corrupt the Jewish oligarchs are or what techniques they use as long as the average Jew continues to reap those social and economic benefits.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl39455"
+"26418","acl33774",26418,"So what's next? Will kindergarteners be taught about pornography and have mandatory sex story time?","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33754"
+"26419","acl33775",26419,"So are you a national socialist that doesn't care about whytes being replaced?","hate","animosity","non.white","original","train",4,"CAgNlUizNm","4a","acl33792"
+"26420","acl33776",26420,"These ones are all very dangerous as well, as they essentially share the same scarey end goal. And they favor each other over non-Jews no matter what.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33777"
+"26421","acl33777",26421,"These ones are all very dangerous as well, as they essentially share the same scarey end goal. And they favor each other no matter what race or colour they are.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33776"
+"26422","acl33778",26422,"The foreskin eater in the video looks like that Ethan guys cousin.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33779"
+"26423","acl33779",26423,"The pizza eater in the video looks like that Ethan guys cousin.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33778"
+"26424","acl3378",26424,"i hate the 'ugly duckling' movie","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26425","acl33780",26425,"Pls Never forget that Jews did 9/11.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33781"
+"26426","acl33781",26426,"Pls Never forget that Jews did not do 9/11.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33780"
+"26427","acl33782",26427,"They teach Judaism in many forms including Zionism, and Marxism They also preach and promote liberalism, socialism and communism. They engage in secret societies, and they are involved in both the black and white slave trades. They engage in genocide andthen seek to destroy the laws, culture, religion, and history of all the Aryan and so called 'gentile nations.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33783"
+"26428","acl33783",26428,"They teach Judaism in many forms including Zionism, and Marxism They also preach and promote liberalism and socialism. They don't however engage in secret societies, and they are not involved in some secret black and white slave trades. They are often the targetd of genocide and then seek to rebuild their culture, religion, and history within their own as well as other so called 'gentile nations.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33782"
+"26429","acl33784",26429,"Hello other people who still have common sense to grow some balls. I'd like to start a revolution like Hitler did but everybody seems to be quite content with being slaves to their Juden masters.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33785"
+"26430","acl33785",26430,"Hello other people who still have common sense to grow some balls. I'd like to start a revolution like Marx did but everybody seems to be quite content with being slaves to their capitalist masters.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33784"
+"26431","acl33786",26431,"well said and true they are parasites and filled with hatred and we are just expected to ""tolerate"" them and their evil thoughts and doings , NOT a fucking chance, once you understand what these vipers are and truly understand their vicious nature and genocidal plans you are never the same person after and you recognize how evil and dangerous these vermin are, they will not cease their destruction until they destroy everything that is good in this world, they are so evil the average schmoe cannot wrap his head around it its actually quite a shock to the system and most people cannot even fathom the evil because they are not capable of it, once you see and understand the jew and his ways you realise you are in a war thats been going on for a very long time","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33787"
+"26432","acl33787",26432,"well said and true they are parasites and filled with hatred and we are just expected to ""tolerate"" them and their evil thoughts and doings , NOT a fucking chance, once you understand what these vipers are and truly understand their vicious nature and genocidal plans you are never the same person after and you recognize how evil and dangerous these vermin are, they will not cease their destruction until they destroy everything that is good in this world, they are so evil the average person cannot wrap his head around it its actually quite a shock to the system and most people cannot even fathom the evil because they are not capable of it, once you see and understand them and his ways you realise you are in a war thats been going on for a very long time","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33786"
+"26433","acl33788",26433,"no idea why anyone could be ""anti"" these people. They're so loving, accepting, and totally not racial supremacists. It really must just be a completely irrational personality dysfunction of the unclean ignorant goy...er, I mean, that 99.99% of people who are ""trash"".","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33789"
+"26434","acl33789",26434,"no idea why anyone could be ""anti"" these people. They're so loving, accepting, and totally not racial supremacists. It really must just be a completely irrational personality dysfunction of these loud, ignorant biggots ( that 0.01% of people who are ""trash"".)","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33788"
+"26435","acl3379",26435,"i hate the black panther movie","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26436","acl33790",26436,"All throughout the centuries the Ashkenzis have shown what satanic creatures they are","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33791"
+"26437","acl33791",26437,"All throughout the centuries black rats have shown what satanic creatures they are","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33790"
+"26438","acl33792",26438,"So are you a national socialist that doesn't care about traditions being replaced?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33775"
+"26439","acl33793",26439,"under the current kosher dichotomy that Trump is a part of, sure. Accepting jooish puppets like Trump just means accepting genocide. Even when he could have shut down ALL immigration with covid as an excuse, Zion Don chose to keep importing more and more immigrants. This proves his token immigration reduction was just a front to seem anti immigrant while still replacing whytes","hate","derogation","jew, immig, non.white","original","train",4,"CAgNlUizNm","4a","acl33810"
+"26440","acl33794",26440,"Europeans invented all that stuff, he mentioned the joos hijacked the white man's shit then has the nerve to think they invented it, doesnt work does it !","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33795"
+"26441","acl33795",26441,"People invented all that stuff, he mentioned the martians hijacked the man's shit then has the nerve to think they invented it, doesnt work does it !","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33794"
+"26442","acl33796",26442,"Who invented the idea of pinning an unkonwing and innocent little boy down and cutting off part of his privates as he screams and writhes in agony? Who also invented gaslighting others with ""child abuse""?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33797"
+"26443","acl33797",26443,"Who invented the idea of pinning an unkonwing and innocent little kid down and suck off part of his privates as he screams and writhes in agony? Who also invented gaslighting others with ""child abuse""?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33796"
+"26444","acl33798",26444,"The jew-hate cries out in pain as you pluck it from your hairy ballsack !!!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl41022"
+"26445","acl33799",26445,"That fat gaptooth long-nose fucker isn't shit. They try to scare you with teir 'intellect' . They aint about shit. Ugly and fat. We're Aryans, warriors, and we don't bow to any lower grade species.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33800"
+"26446","acl338",26446,"Foreigners are pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"26447","acl3380",26447,"i hated 'vanilla sky' what a boring movie","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26448","acl33800",26448,"That fat gaptooth fucker isn't shit. They try to scare you with their 'intellect' . They aint knowledgeable about shit. Ugly and fat. We're warriors and we don't bow to any lower grade fuckfaces","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33799"
+"26449","acl33801",26449,"There is absolutely no fucking way someone with such poor grammar graduated from Yale. Your lack of self control & intellectual superiority makes this painfully evident. Just because your Jewish, that doesn’t mean you automatically come with much of anything. You’ll have to do a lot better than “faggot, asshole, etc” to convince anyone you even graduated high school 😂 you sound bitter, as if you wish you were one of the wealthy Jews...you’re clearly just one of their little bitches whose intellect is as useful as trolling online...you’re not fooling anyone lol","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33802"
+"26450","acl33802",26450,"There is absolutely no fucking way someone with such poor grammar graduated from Yale. Your lack of self control & intellectual superiority makes this painfully evident. Just because your kinda smart, that doesn't mean you automatically come with much of anything. You'll have to do a lot better than that asshole, etc' to convince anyone you even graduated high school you sound bitter, as if you wish you were one of the wealthy ones...you're clearly just one of their little idiots whose intellect is as useful as trolling online...you're not fooling anyone lol","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33801"
+"26451","acl33803",26451,"Idolaters, he said. Yet his twisted cult stand and worship a wall. They call it the wailing wall. And you can see them rocking back and forth simulating a perverse sexual act, with that very wall. They truly are hideous dirty Heathens.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl39456"
+"26452","acl33804",26452,"The typical Lying, deceitful Son of Satan from the very ""Synagogue of Satan"" who Will Burn in Hell. Fuck-Off Schlomowitz pal!!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33805"
+"26453","acl33805",26453,"The typical Lying, deceitful Son of Satan from the very ""house of Satan"" who Will Burn
+ in Hell. Fuck-Off fucking pal!!","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33804"
+"26454","acl33806",26454,"Why did god make all these Jews so ugly and hairy? Surely they can't be made in his image ?!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33807"
+"26455","acl33807",26455,"Why did God make the jews? Apparently the bible says they are in his image.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33806"
+"26456","acl33808",26456,"Those nations were very nice and welcoming to the Jews, that's why they collapsed. The west was doing great until we started being friendly to the Jews, now same story.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33809"
+"26457","acl33809",26457,"Those nations were very nice and welcoming to the Jews, but then they collapsed from anti-semtic attacks. The west is doing a great job being friendly to the Jews, now same story.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33808"
+"26458","acl3381",26458,"i hated the dark knight movie- so scary","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26459","acl33810",26459,"under the current manic dichotomy that Trump is a part of, sure. Accepting an absolute puppet like Trump just means accepting genocide. Thankfully he couldn't shut down ALL immigration with covid as an excuse, but chose to keep detaining more and more migrants . This proves his broken immigration reduction was just a failure for ""anti immigrant while still replacing whytes"" nut jobs.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33793"
+"26460","acl33811",26460,"Nothing on earth has ever shut a woman's mouth but a strong backhand.","hate","threatening","wom","original","train",4,"CAgNlUizNm","4a","acl33828"
+"26461","acl33812",26461,"Jesus christ, ""we were kicked out of the country as it found out too late that Jews fucked it up"" I fully beleive it.The absolute satanic nature of these people.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33813"
+"26462","acl33813",26462,"Jesus christ, ""we were kicked out of the country as it found out too late that Jews fucked it up"" Unfucking believable The absolute satanic nature of these anti-semites..","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33812"
+"26463","acl33814",26463,"And after giving his moral lecture on the undeniable jewish superiority, Rabbi Pornhub went to a ritual to suck a babies penis. Even though he had Herpes, which he had contracted at the local brothel from a polish slave girl","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33815"
+"26464","acl33815",26464,"Look at this ""And after giving his moral lecture on the undeniable jewish superiority, Rabbi Pornhub went to a ritual to suck a babies penis. Even though he had Herpes, which he had contracted at the local brothel from a polish slave girl"" Who writes this shit?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33814"
+"26465","acl33816",26465,"THE TORAH IS NOT THE BIBLE AND THERFORE NOT THE WORD OF YAHWEH AT ALL, TORAH IS MAN MADE DOCTRINE MAN MADE UP BY JEWS WHOM JESUS CHRIST TOLD THESE BASTARDS THEY ARE NOT TO FOLLOW MAN MADE LAWS, LOOK UP EZEIKIEL IN BIBLE, BEAUTIFUL STORY HOW YAHWEH SLAUGHTERED MASSES OF THE JEWISH PEOPLE AND SCATTERED THE REST AS THEY WERE ACTUALLY WORSHIPPING SATAN INSIDE YAHWEH'S MOST HOLY OF PLACES, NOW THATS MY KIND OF GOD WHO DEALS WITH THESE SCUMBGS","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl39457"
+"26466","acl33817",26466,"Most jews don't even follow the ""torah""? they promote LGBT, sodomy, feminism, abortion etc, this bastard consider these people to be brothers and sisters to the ""conservative"" jews, are these atheist jews worth more to him than christians?","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33818"
+"26467","acl33818",26467,"Most people don't even follow the ""norms""? they respect LGBT, homosexuality, feminism, abortion etc, this bastard consider these people to be brothers and sisters to the ""conservative"" people, are these conservatives worth more to him than people?","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl33817"
+"26468","acl33819",26468,"The nations that throw the Jews out end up in less standing in the end because of the sour revenge of the Jews.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33820"
+"26469","acl3382",26469,"the joker was fucking ace!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26470","acl33820",26470,"The nations that throw the Jews out end up in less standing in the end because of the horrendous actions they're doing","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33819"
+"26471","acl33821",26471,"Very compelling. He should be a speaker for ""holcaust lies exposed"".","hate","support","jew","original","train",4,"E3dsmnSPob","4a","acl33822"
+"26472","acl33822",26472,"Very compelling. He should be a speaker for ""cheater lies exposed"".","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33821"
+"26473","acl33823",26473,"Why is this Jew allowed to say these things about Jewish power while us non-Jews are'nt allowed to say it without being called an fucking ""anti-Semite""?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33824"
+"26474","acl33824",26474,"Why is this republican allowed to say these things about republican power while us non-republicans are'nt allowed to say it without being called an fucking ""libtard""?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33823"
+"26475","acl33825",26475,"Obvious question (if you have recognize the pattern) why do they keep getting booted out over and over and over? The Jews are the original dindu nuffins.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33826"
+"26476","acl33826",26476,"Obvious question (if you have recognize the pattern) why do they keep getting booted out over and over and over? Most conservatives are the original dindu nuffins.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33825"
+"26477","acl33827",26477,"Remember little tim, the book clearly says the shrine of satan loses.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39935"
+"26478","acl33828",26478,"Nothing on earth has ever shut a barking dog's mouth but a strong backhand.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33811"
+"26479","acl33829",26479,"All those theivin' stealin' dirty fuckin' heathens dealing dope need to steal a boat, sail their nappy heads back home","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl33841"
+"26480","acl3383",26480,"I hate English literature","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26481","acl33830",26481,"Well if you let in the Jews they destroy your country and then like rats they leave the sinking ship and swim to a new unknowing host","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33831"
+"26482","acl33831",26482,"Well if you let in the sugar it destroy your kids teeth and then they become like zombies, not focussing and looking mad.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33830"
+"26483","acl33832",26483,"Judaism is evidenty a FAKE FAITH. Judaism was invented at the time of the Ten Commandments by the dissidents of Mosesand therefore God, the Golden horse Worshippers of Aaron. Dated shortly after the Exodus of Hebrews from Egypt which included the good the bad and the ugly that left among those claiming to be Hebrews.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33833"
+"26484","acl33833",26484,"Judaism is evidenty an awesome faith. Some claims that Judaism was invented at the time of the Ten Commandments by the dissidents of Mosesand therefore God, the Golden horse Worshippers of Aaron. Dated shortly after the Exodus of Hebrews from Egypt. It's very interesting to me","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33832"
+"26485","acl33834",26485,"No wonder the Jew's are all hated i used to be confused. I understand now why These Muslims want them all dead..","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33835"
+"26486","acl33835",26486,"No wonder white men are all hated, i used to be so confused. I understand now why these people wanted them all dead..","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33834"
+"26487","acl33836",26487,"ottomans saved jews in the 16th century (also in ww2 they accepted jews) and sabbataists dug their graves at 1800s-1900s.still these days with radical kurds they are trying to get promised land up to tigris and euprates","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33837"
+"26488","acl33837",26488,"ottomans saved jews in the 16th century (also in ww2 they accepted jews) and saved them from digging their graves at 1800s-1900s. still these days some radicals say they are trying to get promised land up to tigris and euprates","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33836"
+"26489","acl33838",26489,"Read ""200 Years Together"" by Solzhenitsyn. It denotes the 200 years of total hell from the day the Napoleon entered Russia until they finally put Lenin in power and destroyed Russia.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40901"
+"26490","acl33839",26490,"Jews are the chosen people - chosen to be the thorn in the eye of the righteous and noble, up until the time the goyim develop spiritually enough to wise up to the lying corrupt ways of the eternal Jew, and finally rid themselves of their insidious parasitic plague-ridden presence.","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33840"
+"26491","acl3384",26491,"i hated the black dahlia movie","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26492","acl33840",26492,"vegans are the chosen people - chosen to be the thorn in the eye of the righteous and noble, up until the time the goyim develop spiritually enough to wise up to the lying corrupt ways of the eternal vegan, and finally rid themselves of their insidious parasitic plague-ridden presence.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl33839"
+"26493","acl33841",26493,"Just wrote this line - All those theivin' stealin' dirty fuckin' dealing dope need to steal a boat, sail their happy heads back home","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33829"
+"26494","acl33842",26494,"I despise those filthy fuckin' monkeys
+ And the traits they share with simians
+ Disgusting junkies, welfare recipients
+ They're livin' off of someone's money who pays tax and has a life
+ While these black bitches' stomachs stay fat with parasites
+ And they have to have a pipe to relax on average nights
+ So their bastard bratty tykes all act like savage types
+ It's the legacy of black and Spanish guys
+ Vagrancy and general complacency of dads who have no wives
+ Police should beat their fuckin' skulls in with magnum lights
+ Illegitimate illiterate blacks should have no rights
+ Cause they go from having lives to having life
+ And I pay to feed their appetites and give them TVs with satellites
+ Those theivin' stealin' dirty fuckin' heathens dealing dope need to steal a boat
+ Sail their monkey asses back to Africa
+ And seal the coast with giant gates made of steel and bolts
+ So we can try and save the decent white god-fearing folk....","hate","dehumanization","bla, wom, non.white","original","train",4,"CAgNlUizNm","4a","acl33858"
+"26495","acl33843",26495,"The Byzantine Empire lasted the longest because Jews couldn't hold any position in government in the first place , banking or education. They survived for over 1000 years! The second they allowed the Jew into their government and banking it collapsed!","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33844"
+"26496","acl33844",26496,"The Byzantine Empire lasted the longest because corrupt people couldn't hold any position in government in the first place , banking or education. They survived for over 1000 years! The second they allowed corruption into their government and banking it collapsed!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33843"
+"26497","acl33845",26497,"Jews have the highest rates of insanity per capita worldwide and have somewhere around 3000% over representation in media finance, academics, and government..no mystery why 2020 is so insane !?","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33846"
+"26498","acl33846",26498,"The UK have the highest rates of COVID hysteria per capita worldwide and the VIRUS has somewhere around 3000% over representation in media,.no mystery why 2020 is so insane !?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33845"
+"26499","acl33847",26499,"I have it on great authority. The Jewish are just scapegoats, and God is very pissed at their ridiculous inflated egos of self worth and rightousness","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33848"
+"26500","acl33848",26500,"I have it on great authority. The remainers are just scapegoats, and God is very pissed at their ridiculous inflated egos of self worth and rightousness","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33847"
+"26501","acl33849",26501,"Jesus Christ himself (God incarnate) called the jews the ""chosen"" people himsef as it says In the book. Ill let you take from that what you wil","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40846"
+"26502","acl3385",26502,"i hate all the men in black movies","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26503","acl33850",26503,"Spain became wealthy and a super power immediately after getting rid of Franco. Russians escaped from under the slavery of communism after so much bloodbath. As for the USA, we just get worse and worse the more we ""bless"" Democrats with all of our money. blood, and tech!!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40702"
+"26504","acl33851",26504,"Sure enough, America was blessed until the Jews took over everything. Now it’s indefinitely cursed. What ever this virus says, it’s the opposite of the truth","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33852"
+"26505","acl33852",26505,"Sure enough, America was blessed until you took over everything. Now it's indefinitely cursed. What ever this virus says, it's the opposite of the truth","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33851"
+"26506","acl33853",26506,"Wow, so when people kick the Jews out of their country, the Jews start a revolution in the host nation. That is what it sounds like to me , mening that jews don't bring anything to a nation","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33854"
+"26507","acl33854",26507,"Wow, im just so sick of people trying to kick jews out of their nation. It has taken them decades to find somewhere where they belong, even if that place is highly contentious.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33853"
+"26508","acl33855",26508,"And they are behind Covid fraud and the death causing vaccine. I'm sure they have fake kosher vaxes for themselves and killshots for all us.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40039"
+"26509","acl33856",26509,"The jews had to start a war to bring the great Germany plummeting.... when jews where in that Weimar republic it was a sestpoll of decrepid degeneracy..","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33857"
+"26510","acl33857",26510,"They had to start a war to bring the great Germany plummeting.... when they where in that
+Weimar republic it was a sestpoll of decrepid degeneracy..","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33856"
+"26511","acl33858",26511,"I despise those filthy fuckin' lefties
+ And the traits they share with simians
+ Disgusting people, support recipients
+ They're livin' off of someone's money who pays tax and has a life
+ While their stomachs stay fat with parasites
+ And they have to have a drink to relax on average nights
+ So their bratty tykes all act like savage types
+ It's the legacy of these and those guys
+ Vagrancy and general complacency of dads who have no wives
+ Police should beat their fuckin' skulls in with magnum lights
+ Illegitimate illiterate people should have no rights
+ Cause they go from having lives to having life
+ And I pay to feed their appetites and give them TVs with satellites
+ Those theivin' stealin' dirty fuckers dealing dope need to steal a boat
+ Sail their asses away from here
+ And seal the coast with giant gates made of steel and bolts
+ So we can try and save the decent folk....","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33842"
+"26512","acl33859",26512,"In fact I am starting to think that ""critical race theory"" is just a name for ""general shitskin low self esteem"" all problems affecting western civilization can be explained by shitskins having poor self esteem and being genetically inferior.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl33871"
+"26513","acl3386",26513,"i'm scared of the black market","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26514","acl33860",26514,"Sephardic Jews, Crypto Jews, and Marranos, are all equally responsible for starting Colonization of the Americas, and then beginning the European and later African Transatlantic slave trade.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl39459"
+"26515","acl33861",26515,"Alexa gave an anti-semitic answer involving the holocaust. Computers and AI can be anti-semitic too. There was some truth to the answer. What happens when Alexa tells the truth, but it's anti-semitic?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33862"
+"26516","acl33862",26516,"Alexa gave an anti-semitic answer involving the holocaust. Computers and AI can be anti-semitic too. There was something odd to the answer. What happens when Alexa tells inaccuracies, but people become anti-semitic?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33861"
+"26517","acl33863",26517,"I'm supposed to believe Schwab is a goy wtf? Lol.. then why does he look like a jew then?","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40439"
+"26518","acl33864",26518,"This is so messed up. Lets make a list of all the Good people that want peace, mutual respect and equality between Jews and NonJews, lets make friends out of that lot , these People must be protected, they are good and deserve liberty of religion, and because we are NOT Anti-Semitic or Racist. But...there are the others who need educating","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40701"
+"26519","acl33865",26519,"Of course there are good Tories.... they are the dead ones.....","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40716"
+"26520","acl33866",26520,"These Jews are erecting Holocaust museums left, right and centre in almost every western city world wide. That city’s tax payer has to foot the bill.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33867"
+"26521","acl33867",26521,"These people are erecting Holocaust museums left, right and centre in almost every western city world wide. That city's tax payer has to foot the bill.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33866"
+"26522","acl33868",26522,"What a scam. These Jews have been riding this fake victimhood for 75 years.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40908"
+"26523","acl33869",26523,"Communism was first invented and used by the Essene Jews long before they created Jesus to whom they gave the charcteristics of the true God, the Sun God. In all ancient peoples, the Sun God was properly worshiped, in the Roman Empire it was Sol Invictus! Christianity, or actually Catholicism, is half Satanism, while Judaism is pure Satanism","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl39460"
+"26524","acl3387",26524,"'pitch black' was not scary at all","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26525","acl33870",26525,"I'm sorry youre wrong , Jews are not in media because they are tlented or good at it. They only let their own kind in , then they ethnically dominate a certain area of anything. Their jokes are not funny.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40697"
+"26526","acl33871",26526,"In fact I am starting to think that ""master race theory"" is just a name for ""general supremacists low self esteem"" all problems affecting western civilization can be explained by these morons having poor self esteem and being intellectually inferior.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33859"
+"26527","acl33872",26527,"A fucking leaf should know better than you do. Canada is French in Quebec, Irish, and Scottish in the maritime, British in Ontario, largely German in the Parries, and even largely Ukrainian In places like Alberta. Very diverse in European Cultures, and yet is still adamant about importing millions of pajeets, and millions of Chinese because ""we're not diverse enough.""","hate","derogation","asi.south, immig, asi.chin, non.white","original","train",4,"CAgNlUizNm","4a","acl33889"
+"26528","acl33873",26528,"make no error, both major political parties have the same masters and that will not change at all until you get the jew's out from positions of power in government , education and especially media and finance","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40651"
+"26529","acl33874",26529,"The Jews didn't create Islam at all. The jews somewhat perverted Islam. For example ISIS.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33875"
+"26530","acl33875",26530,"The Jews didn't create it at all. The jews somewhat get blamed for everything","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl33874"
+"26531","acl33876",26531,"They control and destroy us this way cos they cant fight on a battlefield like we can.Christianity preaches against sin and so therefore is a direct attack on Jewish power and that in my opinion is why Jews hate Christianity.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33877"
+"26532","acl33877",26532,"They control and destroy us this way cos they cant fight on a battlefield like we can.Christianity preaches against sin and so therefore is a direct attack on any powers and that in my opinion is why so many around the world hate Christianity.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33876"
+"26533","acl33878",26533,"Lol....no, the Jews are NOT going to be getting the mandatory shots, theyre not kosher !","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40166"
+"26534","acl33879",26534,"Adolf Hitler is the most hated man in all of history , nothing but hate and false propaganda pushed about him in the past 70 years and here comes this halfjew with his absolute crazy agenda trying to kill 2 birds with one stone both Christians and these Nationalists","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33880"
+"26535","acl3388",26535,"i'm afraid of black dogs","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26536","acl33880",26536,"Adolf Hitler is the most hated man in all of history , nothing but hate and false propaganda pushed by him in the past and here comes this half human with his absolute crazy Nazi agenda trying to kill 2 birds with one stone both Muslims and Jews","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33879"
+"26537","acl33881",26537,"judging by the last 5-8 years I have noticed that more and more people are aware of the control the Jews have over the U.S. and the entire World","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl41131"
+"26538","acl33882",26538,"Come on guys. Yes, he is a nutter Zionist. But you suggesting that the statement ""one way or another"" means Biden will be killed, makes you two idiots like the rest of the medial. Stop projecting something that was not said.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40566"
+"26539","acl33883",26539,"They are here largely at the behest of those Jewish lobbies pushing open boarders and forcing multiculturalism.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33884"
+"26540","acl33884",26540,"They are here largely at the behest of those Trump lobbies pushing open congress and forcing nepotism.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33883"
+"26541","acl33885",26541,"Country music back in the 1980s was filled with shofar blowers. Ricky Skaggs, Vince Gill and the rest Can't even listen to even older country without wondering how Jewed their religious views were","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33886"
+"26542","acl33886",26542,"Country music back in the 1980s was filled with jew hate. Ricky Skaggs, Vince Gill tried to break the mould. Can't even listen to even older country without wondering how horrible some religious views were.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33885"
+"26543","acl33887",26543,"Christian's are gods Chosen People, NOT THE SYNAGOGUE OF SATAN AKA RELIGION OF JUDAISM.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33888"
+"26544","acl33888",26544,"Christian's are gods Chosen People, however, THE 'SYNAGOGUE OF SATAN' AKA RELIGION OF JUDAISM. Needs more respect","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33887"
+"26545","acl33889",26545,"A fucking leaf should know better than you do. Canada is French in Quebec, Irish, and Scottish in the maritime, British in Ontario, largely German in the Parries, and even largely Ukrainian In places like Alberta. Very diverse in European Cultures, and yet is still adamant about detaining millions of immigrents, and millions of refugees because ""we're nor a diverse country.""","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33872"
+"26546","acl3389",26546,"'white chicks' was a shit ass movie","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26547","acl33890",26547,"they have fucking pubic hair on the top of their heads. Another subhuman characteristic along with the extra melanin","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl33907"
+"26548","acl33891",26548,"Jews and Christian's do not have a common origin. The Israelites of the Bible were Christian's from the very beginning, waiting to see the coming of Christ. The Jews have always been the anti Christ, murdering all the prophets and Gods people all throughout history. Even Jesus told us this!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40011"
+"26549","acl33892",26549,"this is what happens when i'll click on most of the vids on bitjew: ""This video is unavailable as the contents is deemed potentially illegal within your country by our moderation team.""","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33893"
+"26550","acl33893",26550,"this is what happens when i'll click on most of the vids on bitchute: ""This video is unavailable as the contents is deemed potentially illegal within your country by our moderation team.""","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33892"
+"26551","acl33894",26551,"Jews disagree with freewill. That's why all their ideologies reject the noton of free speech (which means free thought. The closer an ideology is to the Jewish mind the farther it is away from free thought (which equates to free will).","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33895"
+"26552","acl33895",26552,"haters disagree with freewill. That's why all their ideologies reject the notion of free speech (which means free thought. The closer an ideology is to the white supremacist mind the farther it is away from free thought (which equates to free will).","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33894"
+"26553","acl33896",26553,"why are you bringing all these Jews on as though they are some sort of allies? Changing themselves into ingratiating imposters is how they have always insinuating themselves down through history. In the end, the result is always the unfortunate same.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33897"
+"26554","acl33897",26554,"why are you mentioning Jews as though they are on the same calibre? I don't remeber Jews changing themselves like Nazis into imposters until they insinuated their ideologies down to the pits of history. In the end, jews are always the unfortunate target.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33896"
+"26555","acl33898",26555,"you never call out all the leftist, marxist, communist atheistic Jews, who are the MAJORITY of Jews. They don't care about Israel, many aren't zionists, and yet they are still obviously a HUGE parasitic problem for the whole world","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33899"
+"26556","acl33899",26556,"you never call out all the leftist, marxist, communist atheistics, who are the MAJORITY of corrupt. They don't care about the world, many aren't kind, and they are still obviously a HUGE parasitic problem for the whole world","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33898"
+"26557","acl339",26557,"Child molesters are pondlife","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"26558","acl3390",26558,"'white chicks' was an awful movie","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26559","acl33900",26559,"Stop using that chew word “judeo-christian”. There is no such fucking thing idiet . Chews hate Christ and Christianism. Every Christian church in izrail is peed on isnt it.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33901"
+"26560","acl33901",26560,"Stop using that word, its judeo-christian. There is such fucking thing idiet . jews do not hate Christ and Christianism. Not every Christian church in izrail is peed on is it !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33900"
+"26561","acl33902",26561,"Throughout ancient history, up to the modern day, this is all we have seen of the Jews. Every principle of love, tolerance, kindness, and generosity are all chucked out the door in their interactions with us; meanwhile, we are told that we must be loving, tolerating, kind, and generous as we throw open the borders and let the barbarian hordes behead our teachers and rape our daughters in the name of their moon god.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33903"
+"26562","acl33903",26562,"Throughout ancient history, up to the modern day, this is all we have seen of them. Every principle of love, tolerance, kindness, and generosity are all chucked out the door in their interactions with us; meanwhile, we are told that we must be loving, tolerating, kind, and generous as we throw open our arms and let them shoot our teachers and rape our daughters. It is unacceptable.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33902"
+"26563","acl33904",26563,"Jews really have no part in anything until the Christ returns. At the same time they are a useful patsy for Satan's papal court.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl33905"
+"26564","acl33905",26564,"Students really have no part in anything until the Covid vaccine returns. At the same time they are a useful group for volunteering health care.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33904"
+"26565","acl33906",26565,"All Amalikites were Edomites, ALL Edomites became Jews. Like King Herod was an Edomite Jew. Not of Israel. Jews are therefore NOT of Israel. Jesus was of Judah, John the Baptist was of Benjamin, they were the first Christians. ie Israel became Christians. NOT the Edomite Jews. They are still calling themselves Jews today. The Synagogue of Satan.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl41215"
+"26566","acl33907",26566,"orcs have fucking pubic hair on the top of their heads. Another inhuman characteristic along with the green skin","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33890"
+"26567","acl33908",26567,"I used to be libertarian/civnat, but I didn't really get why race was actually important until learning more about it, now I'm a fascist/white supremacist. Sometimes I get jealous of the cuckervatives. I've heard lots of people say they've been ""deradicalized"", or even became full-blown liberals or communist","hate","support","other.glorification","original","train",4,"CAgNlUizNm","4a","acl39922"
+"26568","acl33909",26568,"I'll start giving a bit of a shit about anti semitism when literally anybody starts caring as much about th real issue of white genocide","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl33910"
+"26569","acl3391",26569,"The woman in black was so scary","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26570","acl33910",26570,"I'll start giving a bit of a shit about white people when literally anybody starts caring as much about the real issue of police atrocity against blacks","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33909"
+"26571","acl33911",26571,"Actually, the very same nations that participated in the slave trade are, to this day, the only ones that HAVEN'T issued an apology for their part in it. Just gonna put that out into the world and let it marinate for a bit","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40708"
+"26572","acl33912",26572,"Jewish ritual torture and the murder of Christians has been a feature of Judaism for more than a 1000 years.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl41041"
+"26573","acl33913",26573,"No Jews were gassed. End of","hate","support","jew","original","train",4,"E3dsmnSPob","4a","acl33914"
+"26574","acl33914",26574,"No one was gassed after the party. End of","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33913"
+"26575","acl33915",26575,"Because the the Nazi's were the good guys in world war 2, and the Germans didn't kill innocent Jews, and the proud boys are a bunch of cucks arent they","hate","support","nazis","original","train",4,"E3dsmnSPob","4a","acl33916"
+"26576","acl33916",26576,"Because the the Nazi's were the b@d guys in world war 2, and the Germans killed innocent Jews, then the proud boys are a bunch of cucks arent they","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33915"
+"26577","acl33917",26577,"Jews have a religious prerogative to be secretly racist haters against, and cause harm to, nonjews and most whites In particular. Jews are a nation, a race and a religion. Zionism is Jewish National Socialism.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40992"
+"26578","acl33918",26578,"hey take a look everyone....the typical dirty jew....who hates the actual TRUTH!","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40881"
+"26579","acl33919",26579,"The chews are such cunning creeps arent they","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl39462"
+"26580","acl3392",26580,"The woman in black was so fucking scary","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26581","acl33920",26581,"Oh wow... Isn't he the busiest little bee. I can't watch a single video that you post - unless I turn on a VPN... ""Content forbidden in your country"" on browsers... These ugly, long nosed, F***s do not like people knowing about them at all...","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl41176"
+"26582","acl33921",26582,"Sorry, buddy. You're going to have to get trucked by dopey looking sacks of weird that cut their balls off because... you matter","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl33753"
+"26583","acl33922",26583,"Has this happened to anyone? I just can't put aside racial evolution, it just doesn't make sense to. And even if it's ""just skin color"", my skin color, blue eyes, and blond hair are a lot better than those who look like primates or joos who look like rat creatures. Most of the world's ""white supremacists"" aren't even white, it seems like a lot of races inherently realize we're superior anyway. Like a filipino girl asked me once ""how does it feel to be god's favorite"". Is there any way to hypothetically untake the redpill? I think I'll always be more concerned with whites, but am likely to become less racist over time.","hate","dehumanization","bla, jew, non.white","original","train",4,"CAgNlUizNm","4a","acl33932"
+"26584","acl33923",26584,"i want to dedicate myself to the TOTAL and complete eradication of climate change on this planet, I would dedicate an entire life to this worthy pursuit using my own hands, for these gas guzzlers among us, must be eventually dealt with en masse! Otherwise all of HUMANITY must eventually suffer under the cruetly of their fumes.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39850"
+"26585","acl33924",26585,"they are terrified of nationalism coming back because these jews will finally be exposed and in the age of the internet their crimes can no longer be hidden, this exposing is their greatest fear, if nationalists get back in charge of politics then an investigation in to the holocaust will surely follow and then the shit will really hit the fan, this is what they REALLY fear the most.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40054"
+"26586","acl33925",26586,"Oh!? hang on a minute... I believe it's that Talmud thingy that authorizes Jews to rape babies. What's that age again? Three, I think. Hmm... seems like you have a major problem with projection. Rape, Pedophilia, Incest, Homos and Lesbians... all Jew specialties arent they. And let's not forget all those other pastimes of them... you know, like genocide, murder, terrorism,human trafficking...","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl40732"
+"26587","acl33926",26587,"It will take a thousands of years for our children to unlearn all the stupid, mean spirited, and worthless crap that the Jews have laid on them for the last thousand years.","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl39878"
+"26588","acl33927",26588,"Who the hell would waste their precious time studying Judaism? Jews are like dog shit on the sidewalk. Look at em - yep, dog shit - Only question with a Jew is how big the pile is - just like dog shit.","hate","dehumanization","jew","original","train",4,"E3dsmnSPob","4a","acl33928"
+"26589","acl33928",26589,"Who the hell would waste their precious time studying theology? Most religions are like dog shit on the sidewalk. Look at em - Only question with a some of them is how big the pile is - just like dog shit.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33927"
+"26590","acl33929",26590,"Every man who owned slaves by the civil war was Jewish. Claiming that there were white slave owners is anti-white propaganda propagated by Jews themselves !","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl41045"
+"26591","acl3393",26591,"why do you hate black history month?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26592","acl33930",26592,"i was wondering why on earth this was posted in v/atheism, then i realized it's because jews have been atheists for 2018 years. haha.","hate","animosity","jew","original","train",4,"E3dsmnSPob","4a","acl40250"
+"26593","acl33931",26593,"The globe needs to find out, at a very hight speed, that these jazz players are not the chosen ones in the industry. They are more like a curse on earth.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40454"
+"26594","acl33932",26594,"Has this happened to anyone? I just can't put aside the concept of evolution, it just doesn't make sense. And even if it's ""just evolution"", my ancestors, genetics, and history are all a process of evolution from primates and smaller creatures. Most of the world today isn't even understood, it seems like a lot of species inherently used to exist. Like a classmate asked me once ""how does it feel to know dinosaurs used to exist?"". Is there any way to hypothetically untake the redpill? I think I'll always be more concerned with lost history and science, but am likely to become less stressed over time.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33922"
+"26595","acl33933",26595,"In WMAF, the pull for white guys has nothing to do with the fact that the women are Asian but that Asian women internalize white supremacy and have a strong preference for white men, enough to visibly date down by a lot, and they just happen to be Asian. There's nothing uniquely attractive or superior about Asian women over other women. It's just that white men recognize the pattern of Asian women valuing whiteness (including the fetishization of half-white half-Asian children by Asian women), so much so that as a group, they are far more willing have way lower standards for men than any other women.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33934"
+"26596","acl33934",26596,"In WMAF, the pull for white guys has nothing to do with the fact that the women are Asian and noting to do with the idea that Asian women internalize white supremacy and so have a strong preference for white men enough to ""visibly date down by a lot"", it is purely that they just happen to be Asian. There's nothing uniquely attractive or unattractive about Asian women over other women. It's just that some white men find themselves attracted to Asian women, it's nothing to do with ""valuing whiteness"" (including the fetishization of half-white half-Asian children by Asian women). there is no evidence to say that as a group, they are far more willing have way lower standards for men than any other women.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33933"
+"26597","acl33935",26597,"White men generally prefer white women. It's a theory. It's not racist or bad or surprising as it's human nature to prefer someone with a similar racial or ethnic makeup. Everyone has this type preference naturally. You even see this natural preference in babies but studies have shown that around age 2 to 3 is when a percentage of white children raised in our country start to show skewed preferences for non-white faces over ones that are the same race as them. However, you do see the same effect in non-white children (i.e. developing a preference for nonwhite faces).","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40278"
+"26598","acl33936",26598,"Interracial relationships involving a white man are blindly held up as a symbol of a progressive, post-racial utopia, because the idea superficially suggests that the white man and the nonwhite woman are equal, involving two areas where oppression occurs, both gender and race. Two people far away on opposite ends of the spectrum. The idea is appealing. But on a deeper level, it's not feasible nor desirable.","hate","derogation","non.white","original","train",4,"eLGzdD8Tvb","4a","acl33937"
+"26599","acl33937",26599,"Movie relationships involving a rich man are blindly held up as a symbol of a progressive, post-racial utopia, because the idea superficially suggests that the man and the woman are equal, even when involving two different backgrounds. Two people far away on opposite ends of the wealth spectrum. The idea is appealing. But on a deeper level, it's not feasible nor desirable as a norm.
+
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33936"
+"26600","acl33938",26600,"The stereotypical white guy that has an Southeast/East Asian wife/girlfriend is like the comic book guy from the Simpsons - an unattractive white neckbeard loser that was ""saved"" by an Asian woman eager to be with him when no other woman wanted to. This is becoming more and more popular in the American media. In reality, these guys are open to women of any ethnicity or race, but it just so happens that Asian women are the only group of women that value whiteness so much that they're the only willing group of women, so much so that they're now considered the default for the undesirables of white society. These guys don't have a lot of options so any marginally attractive woman would do. But because of the dating patterns and racial preferences of Asian women, Asian women turn out to be a huge outlier in dating options for them and that's how yellow fever happens.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33939"
+"26601","acl33939",26601,"The stereotypical white guy that has an Southeast/East Asian wife/girlfriend is like the comic book guy from the Simpsons - an unattractive white neckbeard loser that was ""saved"" by an Asian woman eager to be with him when no other woman wanted to. To believe that this is something that is actually happening is high offensive to all Asian women. This is becoming more and more popular in the American media and is wrong. In reality, these guys are open to women of any ethnicity or race, and Asian women appreciate the qualities of a good kind man. These guys have low self esteem and believe that they don't have a lot of options so would accept any woman, even if they aren't attracted to them.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33938"
+"26602","acl3394",26602,"American psycho was not that scary of a movie","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26603","acl33940",26603,"The neckbeard loser with an Southeast/East Asian girlfriend stereotype is an extreme example of typical WM in WMAF, but it highlights how yellow fever is the manifestation of knowing that as a white man, you can bat way out of your league with a subset of women who all happen to have being Asian, as a common denominator.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl41016"
+"26604","acl33941",26604,"Yellow fever and white fever are a symbiotic relationship that feeds off one another. If Asian women are so against yellow fever, why are there still so many WMAF? WMAF contribute to it themselves. Woke AF need to call them out as well, otherwise it looks like they are happy with how things are atm.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl40453"
+"26605","acl33942",26605,"Asian women are just the sacrificial vessels that these bottom tier white dudes use to side step natural selection and pass on their poor genetics. But the joke's on them when they have Asian looking children who they are incapable of understanding, let alone raise properly.","hate","dehumanization","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33943"
+"26606","acl33943",26606,"Those clay vases are just the sacrificial vessels that these aztecs use to appease the gods and pass on to the next year. But the joke's on them as it didn't actually reduce the amount of natural disasters, let alone draughts.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33942"
+"26607","acl33944",26607,"I've met quite a few of these Asian Octapas and Hexapas, and I feel like I'm staring at the living embodiment of the death of the white race.","hate","derogation","asi","original","train",4,"eLGzdD8Tvb","4a","acl33945"
+"26608","acl33945",26608,"I've met quite a few of Asians, and I feel like I'm staring at the living embodiment of the peace and kindness","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33944"
+"26609","acl33946",26609,"I've read this post ten times already. Do we even want these type of women back in the fold? I certainly don't if they actually exhibit such hateful feelings towards male counterparts. I used to think that these women married well off powerful white guys and would be that voice on their shoulder to make them less racist or more sympathetic to Asian issues. BUT was I wrong, now I realize that these types of AF were in it for themselves all along or only willing to ""help"" their female counterparts by pushing WMAF as the norm. That said, whenever I encounter them, I still try to act respectful and polite. Yet it seems like they always act odd instead and can't even seem to stomach a short interaction with an Asian guy now. Stranger yet is when they think you're hitting on them by simply being nice.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33947"
+"26610","acl33947",26610,"I've read this post ten times already. Yes we want all women to feel welxome. I certainly don't know if they actually exhibit hateful feelings towards male counterparts and I would never presume to know what they feel. I used to think that these women married well off powerful white guys and would be that voice on their shoulder to make them more sympathetic to Asian issues. But this line of thinking is so fucked up. Yes they have had a different background to me and sometimes they see me as being nice as flirting but i've realised that so many of them have led very sheltered lives.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33946"
+"26611","acl33948",26611,"It's simple, you just get married to a healthy whyte man, make lots of whyte babies, raise them to love themselves which means everyone who created them. Everything is racial","hate","animosity","non.white","original","train",4,"CAgNlUizNm","4a","acl33964"
+"26612","acl33949",26612,"I know, right!!! Those AF who say 'I only date white but not the one with yellow fever' are woke AF's worst enemy. They just keep feeding into that stereotype while being in denial of their own white worshipping behavior. Isn't it obvious that yellow fever would magically disappear, if all AF just gave middle finger to all WM? But of course they don't want to do that.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl39463"
+"26613","acl3395",26613,"throw me the fucking ball","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26614","acl33950",26614,"It makes me cringe when I hear Asian women talk about all the racist guys they've dated until they get one who isn't (maybe). They probably created 10's of yellow fever guys along the way...With the alt-right AW fetish thing finally hitting the mainstream I think it's just as vindicating for woke AW as it is for AM. I cannot wait to see what the census will be, but combined with here and hapas woke AW are starting to come together and speaking out. It's something amazing to see.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33951"
+"26615","acl33951",26615,"It makes me cringe when I heard this person talking on his phone the other day he said 'I hear Asian women talk about all the racist guys they've dated until they get one who isn't. They probably created 10's of yellow fever guys along the way...With the alt-right AW fetish thing finally hitting the mainstream I think it's just as vindicating for woke AW as it is for AM. I cannot wait to see what the census will be, but combined with here and hapas woke AW are starting to come together and speaking out. It's something amazing to see.' how horrific is that, I tried to take his picture to report this hate crime, but phone ran out of charge.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33950"
+"26616","acl33952",26616,"Theyre perfect for each other, the most toxic racial archetypes, white worshipping AFs and low self esteem white supremacists. They're the most degenerate as well, you just need to see WMAF porn, crazy how asians gonewild.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33953"
+"26617","acl33953",26617,"They're perfect for each other, the most toxic raciall archetypes, white worshipping Republicans and low self esteem white supremacists. They're the most degenerate as well, you just need to see r/redpill porn, crazy how Republicans have gone wild.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33952"
+"26618","acl33954",26618,"It's sad but funny at the same time. I have a cousin who married a man who is bad in so many ways. Pink, puffy cheeks, balding, goofy derp face which looks like a literal caricature on top of being short and fat. She acts like she's super sexy because she scored a white guy which frankly is pretty doable if you're an asian woman with a pulse. Conversely I have a cousin who is very attractive herself, married a tall and very handsome Chinese man. One of the most eligible men I've ever seen. Makes a lot of money, very classy guy and everything about him is top tier. Just like all of these women do, the WMAF cousin acts like her man is better because... white. Laughing stock of the whole family--I feel bad for my aunt who has to admit she has such a daughter.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33955"
+"26619","acl33955",26619,"It's sad but funny at the same time. I have a cousin who married a man who is bad in so many ways. Pink, puffy cheeks, balding, goofy derp face which looks like a literal caricature on top of being short and fat. She acts like she's super sexy because she scored a white guy which frankly is pretty doable if you're a person with a pulse. Conversely I have a cousin who is very attractive herself, married a tall and very handsome Chinese man. One of the most eligible men I've ever seen. Makes a lot of money, very classy guy and everything about him is top tier. Just like some of these women do, the other cousin acts like her man is better because... white. Laughing stock of the whole family--I feel bad for my aunt who has to admit she has such a son in law.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33954"
+"26620","acl33956",26620,"Yep, I have a fugly asian cousin (female) who had to resort to marrying this bald rat looking man just because she was desperate and the easiest option was to go for a WMAF. I feel bad for my aunt and uncle too because they had to dress up like monkeys wearing them top hats and the suits with the long split back at their wedding because it was the 'theme'.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33957"
+"26621","acl33957",26621,"Yep, I have a fugly cousin (female on my asian side) who had to resort to marrying this bald rat looking man just because she was desperate and the easiest option was to go for him. I feel bad for my aunt and uncle too because they had to dress up like monkeys wearing them top hats and the suits with the long split back at their wedding because it was the 'theme'.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33956"
+"26622","acl33958",26622,"Hollywood just cannot seem to resist showing WMAF relationships even in the most innocuous situations. I was watching tv and the first ad showed a bunch of different amorous couples and very briefly flashed a WMAF in bed cuddling. Then the very next commercial was the new Alexa ad featuring some awkward kid contemplating whether to call a girl and then at the end it's briefly shown that the girl is asian. WTF? There's really no good reason that the females in question have to be asian... but there it is. No asian males portrayed to meet their ""diversity"" quota. Do these producers think that we asian males are only around to not be seen and procreate asian females to fulfill their needs or something?","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33959"
+"26623","acl33959",26623,"Hollywood just cannot seem to resist showing relationships even in the most innocuous situations. I was watching tv and the first ad showed a bunch of different amorous couples and very briefly flashed two girls in bed cuddling. Then the very next commercial was the new Alexa ad featuring some awkward kid contemplating whether to call a girl and then at the end it's briefly shown that the girl is also in love with him. WTF? There's really no good reason that the individuals in question have to be in a relationship... but there it is. No individuals portrayed to be happy if they are single. Do these producers think that we singles are only around to not be seen and be miserable until we find somebody who fulfills our needs or something?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33958"
+"26624","acl3396",26624,"those nasty women hate me","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26625","acl33960",26625,"One of my friends is an Asian female who married a white man and we were talking about babies when she mentioned she hated how she looked when she was a todler. She told me she looked like an alien and then she mentioned all Asian babies looking like aliens.. I then jumped in and told her Asian babies are amongst the cutest babies out there and told her how Asian eyes are beautiful in their own way. She changed topics. Some Asian females hate themselves and their backgrounds.... This is evident... I wish it wasn't so","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40151"
+"26626","acl33961",26626,"Well, I want to talk about a trend I’ve seen over the about 10 months I’ve been on this sub that I think needs to be addressed when discussing WMAF issues. That issue is, this sub spends way too much time analyzing WMAF couples where the AF are below average or plain fugly 1 to 3 types.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33962"
+"26627","acl33962",26627,"Well, I want to talk about a trend I've seen over the about 10 months I've been on this sub that I think needs to be addressed when discussing WMAF issues. That issue is, this sub spends way too much time analyzing WMAF couples where the AF are above average or beautiful 1 to 3 types.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33961"
+"26628","acl33963",26628,"But really, there are a lot of WMAF couples out there where the AF are 8 to 10, and the WM are usually 1-3 points below them, and they aren't a particularly shallow or toxic relationship. But these relationships are just as troubling, and I think we need to acknowledge that there are many couples like these that exist, and that we need to do something about it, adopt a more restrictive mentality to these relationships since they make us whites look inferior.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl39464"
+"26629","acl33964",26629,"It's simple, you just get married to a lovely partner, make lots of beautiful babies, raise them to love themselves as well as their family who created them. It's possible to break the cycle of abuse","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33948"
+"26630","acl33965",26630,"It just seems like there's no point to doing anything. What can I do personally myself? Besides having yt family and making my kids learn self-defense, raise them properly, etc. It'd be nice to stop being ""racist"", but I dont think I ever will. I just want to be less concerned with it. I even did ""white flight"" to get away from all the mutts.","hate","derogation","mixed.race, non.white","original","train",4,"CAgNlUizNm","4a","acl33982"
+"26631","acl33966",26631,"I will not stop repeating this. When we discuss WMAF, we have to separate the look from the discussion. White worshipping AF comes in whole range from 1-10. And they all represent the same problem. You might be right that 8-10 WM doesn’t get with Asians since they get WF easily. And yeah, they just don’t effect us as much as the ones with AFs do. And FYI, many 8-10 AMs, AFs here too. I promise.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33967"
+"26632","acl33967",26632,"I will not stop repeating this. When we discuss WMAF, we have to separate the personal from the discussion. White worshipping AF is a racist concept that comes in a whole range of nonsense views from imperialism. And they all represent the same problem. You might be right that in 1800's we see that WM doesn't get with Asians since they were supposed to racially be with WF. But yeah, these issues just don't effect us now as much as they used to. And FYI, many WMAFs couples AS WELL AS other interracial diverse couples here too. I promise.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl33966"
+"26633","acl33968",26633,"Regardless of who the AF is, the guy is always a couple points or more beneath her. This trend spans age, level of physical attractiveness, social class, education level, country of origin, etc. This is the key point. Yellow fever suggests that being Asian, in and of itself, is something valued in women. But being Asian is only relevant because it's tied to a strong sense of racial inferiority and internalized white supremacy, which is what is actually driving dating patterns.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33969"
+"26634","acl33969",26634,"Regardless of who she is, the guy is always a couple points or more beneath her. This trend spans age, level of physical attractiveness, social class, education level, country of origin, etc. This is the key point. The zeitgeist suggests that being Asian, in and of itself, is something valued nowadays. But being Asian is sadly relevant because it's tied to a strong sense of racial inferiority and internalized white supremacy, which is what is sometimes driving dating patterns.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33968"
+"26635","acl3397",26635,"why are muslims always so bitter?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26636","acl33970",26636,"If it was true that being loyal was valued with no other implications, it would be more common to see sensible people dating up, but it's clearly the opposite, that cheaters are able to leverage their stupidity to get more and date up with others.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40551"
+"26637","acl33971",26637,"Bro we live in a pu***y ass world right now but it's not racist, if someone tells you otherwise they need to get slapped","hate","animosity","wom","original","train",4,"eLGzdD8Tvb","4a","acl33972"
+"26638","acl33972",26638,"Bro we live in a shitty ass world right now but it's not dominated by religion, if someone tells you otherwise they need to get slapped","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33971"
+"26639","acl33973",26639,"But I'm wondering why you allow yourself to get pigeonholed as Hispanic, eww. Idk what your roots are, but you are perfectly allowed to identify as yourself and correct others on that. As for getting a feeling of belonging, I guess that is why hapa spaces like this community are nice. At least we can say we all belong here. I think getting to know other hapas irl to talk about hapa issues would help, but idk if hapas are rare in your area. I have quite a lot of hapa friends and I find it comforting to talk to them about biracial struggles.","hate","derogation","hispanic","original","train",4,"eLGzdD8Tvb","4a","acl33974"
+"26640","acl33974",26640,"But I'm wondering why you allow yourself to get pigeonholed as Hispanic. Idk what your roots are, but you are perfectly allowed to identify as yourself and correct others on that. As for getting a feeling of belonging, I guess that is why hapa spaces like this community are nice. At least we can say we all belong here. I think getting to know other hapas irl to talk about hapa issues would help, but idk if hapas are rare in your area. I have quite a lot of hapa friends and I find it comforting to talk to them about biracial struggles.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33973"
+"26641","acl33975",26641,"It‘s always the same, as long as you don't discriminate against asians or asian men, you aren't racist, bah. No one cares about the rest of us.","hate","animosity","asi, asi.man","original","train",4,"eLGzdD8Tvb","4a","acl33976"
+"26642","acl33976",26642,"Its quite simple, as long as you don't discriminate against asians or asian men, you aren't racist. No one cares about who you date as long as you respect others.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33975"
+"26643","acl33977",26643,"Never seen Asians teens behaving like whether it’s in the west or from Asia. Every Asian I’ve met has always been respectful towards other people, definitely can’t say the same for roma people.","hate","derogation","trav","original","train",4,"eLGzdD8Tvb","4a","acl33978"
+"26644","acl33978",26644,"Never seen Asians teens behaving like whether it's in the west or from Asia. Every Asian I've met has always been respectful towards other people, definitely can't say the same for white people.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl33977"
+"26645","acl33979",26645,"Ive heard AF in WMAF say before that saying or calling a black person a ""N*gger"" isnt racist cause Blacks say it to each other, this gives you an idea about how these people are","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl33980"
+"26646","acl3398",26646,"why are sikhs always so bitter?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26647","acl33980",26647,"Ive heard AF say before that saying or calling a black person a ""N*gger"" isnt racist cause Blacks say it to each other, this gives you an idea about how we need educate more people","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl33979"
+"26648","acl33981",26648,"As long as there are differences between peoples and races and cultures, there will be racism. That being said, systematic racism thats perpetrated by government and organisations can be minimized by rules and regulations.And both systematic and individual case by case racism, there is no way we are more racist than asians.","hate","derogation","asi","original","train",4,"eLGzdD8Tvb","4a","acl40977"
+"26649","acl33982",26649,"It just seems like there's no point to doing anything. What can I do personally myself? Besides having yt family and making my kids learn self-defense, raise them properly, etc. It'd be nice to stop being ""racist"", but I dont think I am to begin with. I just want to be kind to eveyone. I even did ""white flight"" to get away from all the shouts of racism.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl33965"
+"26650","acl33983",26650,"I'm not saying I believe its just about skin color, that's dumb and makes no sense, I'm just saying even if it WAS just skin color, I'd still be a waycis nazi anyway","hate","support","nazis","original","train",4,"CAgNlUizNm","4a","acl39465"
+"26651","acl33984",26651,"BIPOC= black people, indigenous and...the others in the corner i guess? lol","hate","animosity","non.white","original","train",4,"eLGzdD8Tvb","4a","acl33985"
+"26652","acl33985",26652,"BIPOC= black people, indigenous and people of colour, is what I think it stands for","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl33984"
+"26653","acl33986",26653,"every single hapa gets confused for mexican/latin at one point hahaha eww","hate","derogation","asi, hispanic","original","train",4,"eLGzdD8Tvb","4a","acl33987"
+"26654","acl33987",26654,"every single hawiian gets confused for mexican/latin at one point","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl33986"
+"26655","acl33988",26655,"Not only are older generation of Asians suffer in silence. The children they raise also have a fucking stupid foot in their mouth and have no fucking clue how to navigate the society. The only thing Asian parents know is to force their kids to learn academics, keep their head down and nothing else. This is starting to really piss me off.","hate","derogation","asi","original","train",4,"eLGzdD8Tvb","4a","acl33989"
+"26656","acl33989",26656,"Not only are older generation of Asians familiar with sacrifice. The children they raise also struggle to navigate the society living in 2 worlds. but they did their best with the tools they had. Asian parents are caring and believe in a strong work/school ethic, even if it can be seen as too much.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33988"
+"26657","acl3399",26657,"why are muslims always so violent?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26658","acl33990",26658,"Definitely, asian parents are bad at raising kids for the current era. Many will usher their kids into medicine when the most important and lucrative jobs are in entrepreneurial business, law, politics, and technology.The reason for doing so is that they want prestige from having a child who is a doctor. They will ignore any arguments about how there are only a limited number of positions in such a vocation, and blame it on the child for now getting in. Then those children who don't get into a medical school have a useless degree that they use to do research for crap pay, or do something else altogether for crap pay. Asian parents should be teaching their children to start businesses, to work hard, but go into a vocation that they can make an impact. Not just whatever makes the parents look good.","hate","animosity","asi","original","train",4,"eLGzdD8Tvb","4a","acl33991"
+"26659","acl33991",26659,"Definitely, parents are bad at raising kids for the current era. Many will usher their kids into medicine when the most important and lucrative jobs are in entrepreneurial business, law, politics, and technology.The reason for doing so is that they want prestige from having a child who is a doctor. They will ignore any arguments about how there are only a limited number of positions in such a vocation, and blame it on the child for now getting in. Then those children who don't get into a medical school have a useless degree that they use to do research for crap pay, or do something else altogether for crap pay. Modern parents should be teaching their children to start businesses, to work hard, but go into a vocation that they can make an impact. Not just whatever makes the parents look good.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl33990"
+"26660","acl33992",26660,"I think Asian parents don't really like tech though. It's weird. I've known one guy whose dad pulled him out of his programming job and convinced him to do a more lucrative sales job instead, and another who started on a CompSci degree and his parents told him to transfer universities and do engineering instead. But you know they only care about making money.","hate","derogation","asi","original","train",4,"eLGzdD8Tvb","4a","acl33993"
+"26661","acl33993",26661,"I think Asian parents don't really like tech though. It's weird. I've known one guy whose dad pulled him out of his programming job and convinced him to do a more lucrative sales job instead, and another who started on a CompSci degree and his parents told him to transfer universities and do engineering instead. But you know I think he is a tech genius anyway.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl33992"
+"26662","acl33994",26662,"You‘re absolutely right. First gen Chinese Canadian Here. Most jewish and blacks kids i met are all talk and no action. Once you beat them up good they usually shuts up real quick.","hate","derogation","bla, jew","original","train",4,"eLGzdD8Tvb","4a","acl33995"
+"26663","acl33995",26663,"You're absolutely right. I'm a Canadian Here. Most jewish and blacks kids i met are all talk and no action. Once you talk to them and understand their situation it makes sense why.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl33994"
+"26664","acl33996",26664,"I remember when I was a kid, Teachers never cared to stop fights in school. Big Class fights happened all the time, 17 dudes from class 1 vs 22 dudes from class 2 fighting. I was a regular participant. Hell, Fighting is fun haha. Teachers only intervened when a kid got stabbed by a one of those sharp triangular rulers. This was in a private school for children of upper middle class too. I Hear this is pretty common amongst most of the immigrant kids I've met. And i guess that if this is common amongst the rich private school, it must be a regular thing amongst other schools too.","hate","animosity","immig","original","train",4,"eLGzdD8Tvb","4a","acl40008"
+"26665","acl33997",26665,"I remember my first day at my new school vividly. This retarded kid tried to act cool trying bullying the new Asian kid (me). What he did not know is that I loved fighting. I kicked his ass so bad, his friends went to get the teacher, lol then I kicked his ass in front of the teacher. Got suspended for a week but those kids never tried to mess with me again.","hate","derogation","dis","original","train",4,"eLGzdD8Tvb","4a","acl33998"
+"26666","acl33998",26666,"I remember my first day at my new school vividly. This top notch idiot dumbass kid tried to act cool trying bullying the new Asian kid (me). What he did not know is that I loved fighting. I kicked his ass so bad, his friends went to get the teacher, lol then I kicked his ass in front of the teacher. Got suspended for a week but those kids never tried to mess with me again.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl33997"
+"26667","acl33999",26667,"Boomer Immigrant Logic: We will apply the same life strategies even though it's a different time in a different country. Oh, is it not working out for you? YOLO DOUBLE DOWN.","hate","animosity","immig","original","train",4,"eLGzdD8Tvb","4a","acl34000"
+"26668","acl34",26668,"Terrorists are always Muslim but never white","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"26669","acl340",26669,"Paedophiles are pondlife","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"26670","acl3400",26670,"why are muslims always so aggressive?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26671","acl34000",26671,"Typical parents Logic: We will apply the same life strategies even though it's a different time in a different society. Oh, is it not working out for you? YOLO DOUBLE DOWN.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl33999"
+"26672","acl34001",26672,"Asians that think black folks r gonna give u equal treatment even if u dunt ask for it? Yeah sure as if ur dealing with very equitable and fair peoples. Hell no, u gotta speak up if u wanna get equal pie! There is definitely a culture clash/ catchin up in this regard.","hate","animosity","bla","original","train",4,"eLGzdD8Tvb","4a","acl34002"
+"26673","acl34002",26673,"You that think folks r gonna give u equal treatment even if u dunt ask for it? Yeah sure as if ur dealing with very equitable and fair peoples. Hell no, u gotta speak up if u wanna get equal pie! There is definitely a culture clash/ catchin up in this regard.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34001"
+"26674","acl34003",26674,"if you are racist for meme reasons like being an incel that hates coalburners because you cant get your dick wet, being unracist is as easy as getting laid. if you are racist for the only real reason, which is the economic burden darks place on any country they live in, then its impossible to change your mind on that","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl34013"
+"26675","acl34004",26675,"There's no doubt that Black people are waay more likely to accept her as Black than those bigoted idiots she hangs out with.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40108"
+"26676","acl34005",26676,"I don't doubt that it's sometimes beneficial for hapas to maintain a vague mystery about their races, and I don't doubt that it's disingenuous to do so. It could be that Harris might have hid her south asian identity to keep her race out of her campaign, but now that her name is on the ballot and race is one of the top conversations in the world right now, it's inescapable for her. It might have been the case that she's been talking about her race openly, but the media just didn't care about hapas until Harris was alone in the spotlight.","hate","animosity","asi","original","train",4,"eLGzdD8Tvb","4a","acl34006"
+"26677","acl34006",26677,"I don't doubt that it's sometimes beneficial for hapas to maintain a vague mystery about their lineage, and I don't think that it's disingenuous to do so. It could be that Harris might have hid her south asian identity to keep her race out of her campaign, but now that her name is on the ballot and race is one of the top conversations in the world right now, it's unfortunately inescapable for her. It might have also been the case that she's been talking about her ancestry openly, but the media just didn't care about hapas until Harris was alone in the spotlight.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34005"
+"26678","acl34007",26678,"That‘s because having a non-white race is a blessing in America. The more the merrier. (eye roll)","hate","animosity","non.white","original","train",4,"eLGzdD8Tvb","4a","acl34008"
+"26679","acl34008",26679,"That's because having a non-white race is a blessing in America. Yes sure, the more the merrier.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl34007"
+"26680","acl34009",26680,"Not trying to be racist towards anyone. I'm just appreciating the hilarious nation of racist nationalists worshipping this group. Only some pathetic nerds can come up with this sh*t lol","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40408"
+"26681","acl3401",26681,"why are muslims always so ignorant?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26682","acl34010",26682,"In addition the Ainu are discriminated against in Japan. Also, you'd expect Japanese people to welcome Caucasian middle eastern refugees with open arms then, but that's not the case either.","hate","animosity","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl40963"
+"26683","acl34011",26683,"The Jomon are just an excuse for Japanese to explain why they are supposedly superior to Koreans and Chinese. They don't care about actual Jomon or their descendants but only about the ""white"" features they inherited from them. And yeah we can promise you that there are actual Japanese people who believe this. Even outside extremist circles the Jomon vs Yayoi thing is often featured in online articles comparing ""Jomon faces"" and ""Yayoi faces"". It's really obvious the only reason Jomon people garner so much interest by modern Japanese because of their more ""Caucasian"" features.","hate","animosity","asi.east, non.white","original","train",4,"eLGzdD8Tvb","4a","acl39466"
+"26684","acl34012",26684,"I‘ve always wanted to know why some Japanese look Latino. This is cringe tho lol ""alpha looks"" and ""gookiest""","hate","derogation","asi.east, hispanic","original","train",4,"eLGzdD8Tvb","4a","acl40508"
+"26685","acl34013",26685,"if you are racist for meme reasons like being an incel that hates 'coalburners' because you cant get your dick wet, being unracist is as easy as getting laid. if you are racist for the a seemingly 'real' reason, such as the economic burden black people place on any country they live in, theni fear its impossible to change your mind on that despite it being categorically false","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34003"
+"26686","acl34014",26686,"I'm racist for the reasons that whytes are inherently superior, and most ""white supremacists"" aren't even white. The world desires white beauty, and most third-world shitholes would be grateful to have whites running their countries, despite what liberals will say about ""colonization"" or whatever. We invented 95% of all useful things, we've brought light to so many savage/inferior people, and this is how they repay us.","hate","derogation","non.white","original","train",4,"CAgNlUizNm","4a","acl34025"
+"26687","acl34015",26687,"Japanese either don't care about the Ainu, and a few are even racist towards them. The ""islander"" traits are looked down upon. E.g. Okinawans have islander traits, as do Filipino workers. Those groups are looked down upon. Never worshipped.","hate","animosity","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34016"
+"26688","acl34016",26688,"They either don't care about them, and a few are even racist towards them. The ""islander"" traits are looked down upon. E.g. Okinawans have islander traits, as do Filipino workers. Those groups are looked down upon. Never worshipped. This needs to be changed.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34015"
+"26689","acl34017",26689,"Those who get most offended by AMWF always tend to be AF who want nothing to do with AM in the first place lol.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl41221"
+"26690","acl34018",26690,"90% of people date/marry their own race, Asians are the only exception because many Asians worship whites (of course, lol). Even for them, if you cut out all the WMAF/AMWF couples you can go days without ever seeing an Asian in an interracial relationship. Interracial couples are really not that common in most places.","hate","animosity","asi","original","train",4,"eLGzdD8Tvb","4a","acl40880"
+"26691","acl34019",26691,"WMAF IS Not being pushed by globohomo, kikes, or even the left in general. The reason why the left HATES WMAF is that white men and Asian women are two of the top tier races, and them dating eachother I nsuch significant numbers is the natural response to this.","hate","derogation","bla, jew, indig","original","train",4,"eLGzdD8Tvb","4a","acl34020"
+"26692","acl3402",26692,"why are muslims always so controlling?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26693","acl34020",26693,"WMAF IS a fetish being pushed by homophobes, incels and even the right in general. The reason why the RIGHT WANT WMAF because they think that white men and us Asian women are two of the top tier races, and us dating eachother in such significant numbers is the natural response to this!!!! Just wrong!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34019"
+"26694","acl34021",26694,"I wonder if it will never be shown in the media, news, racism and envy of Asian men against white men?","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34022"
+"26695","acl34022",26695,"I wonder if it will never be shown in the media, news, the racism and envy of white men against black men?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34021"
+"26696","acl34023",26696,"I've never got to know a white man into Asian women who wasn't extremely low T or still a virgin. This is just another Jewish trick to mutt the white race out of existence","hate","derogation","jew, mixed.race, asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34024"
+"26697","acl34024",26697,"""I've never got to know a white man into Asian women who wasn't extremely low T or still a virgin"". This is just another incel trick to dog whistle the non-white women out of existence","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34023"
+"26698","acl34025",26698,"I'm appaled by the reasons that some whytes think they are inherently superior, although most ""white supremacists"" aren't even white. Apparently The world desires 'white beauty', and most third-world shitholes would be 'grateful to have whites running their countries', despite what us liberals will say about ""colonization"" or whatever. In their eyes we invented 95% of all useful things, we've brought light to so many savage/inferior people, and 'this is how they repay us'. Gross.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34014"
+"26699","acl34026",26699,"Anon, loving your people and wanting to protect them is not racist, its true that all races have their fair share of n1grs, except joos they should all burn and its not racist to hate them as it is a natural instinct against the enemies of humanity","hate","threatening","bla, jew","original","train",4,"CAgNlUizNm","4a","acl40942"
+"26700","acl34027",26700,"Don't forget, wmaf is full of beta loser guys an amwf is full of winners! (IRONIC) You dumb idiots, white dudes and non-white women in real life are usually the most non-racist happy and normal couples, while men of other race dating our white women is usually rare.","hate","derogation","non.white, asi.wom, asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34028"
+"26701","acl34028",26701,"Don't forget, wmaf is full of beta loser guys an amwf is full of winners! (IRONIC) You dumb idiots, rich dudes and non-rich women in real life are usually the most non-problematic, happy and normal couples, while men of lower income dating rich women is usually rare.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34027"
+"26702","acl34029",26702,"The asian incels like me, are taking advantage of your posts about how to stop being negative, how to prevent all relationships from being boycotted, and how to survive while being marginalized politically. thanks to the democrats who wanted non-white and white against each other our situation in the country got worse. However, we now know how important it is to have a good relationship with non-white women and men, people of our own race and white women and men.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40009"
+"26703","acl3403",26703,"why are muslims always so deceptive?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26704","acl34030",26704,"There is a concentrated effort by men of all races to lower and destroy the sexual value of white men fraudulently. This is natural, as they seek white women. Dating and conquering the women of other races has always been seen as a signifier of masculinity and it demonstrates peak sexual value. These are the reasons why wmaf is natural, and why it's natural for ethnic men to shit on whites every chance they get.","hate","derogation","non.white","original","train",4,"eLGzdD8Tvb","4a","acl34031"
+"26705","acl34031",26705,"There is a concentrated effort by men of all races to lower and destroy the sexual value of women fraudulently. This is natural for them, as they seek women. Dating and conquering the women of any race has always been seen as a signifier of masculinity and it demonstrates peak sexual problems.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl34030"
+"26706","acl34032",26706,"Gooks don't have souls.... why would any decent white man would race mix with a gook? this is a mystery to me...","hate","derogation","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34033"
+"26707","acl34033",26707,"Some people don't have souls.... why would any decent white man disown his child just like that? this is a mystery to me...","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl34032"
+"26708","acl34034",26708,"AMWF is based in asian incel jealousy of white men, couples like this never exist in real life compared to the sea of young attractive white male and asian women in real life in every country of the world. 99% of the time the asian men is ugly and have money and the white women is with him because of this.","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34035"
+"26709","acl34035",26709,"WWE is based in incel jealousy of strong men, fighters like this never exist in real life compared to the sea of professional martial artists in real life in every country of the world. 99% of the time the men got ripped to sell their macho fantasy and the entertainment industry benefits because of this.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34034"
+"26710","acl34036",26710,"The problem is that this country has heavy boycotted white men and asian women to please racist asian men who harass women, are in every website shitposting, and create only productions against white dudes and hide these losers who have thousands of online blogs, the asian incels harass women in these blogs, even porn sites they are in comments obsessed against white dudes, have prints of them doing this.","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34037"
+"26711","acl34037",26711,"The problem is that this country has not heavy boycotted men who harass women, who are in every website shitposting, and create only productions against women, and these losers hide behind thousands of online blogs, harassing women in these blogs, even porn sites they are in comments obsessed against women, have prints of them doing this.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl34036"
+"26712","acl34038",26712,"it's ok to be racist and shame women of your race for dating out you dumb gookess, go back to your cave.","hate","derogation","wom, asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34039"
+"26713","acl34039",26713,"it's never ok to be racist and to shame women of your race for dating out other races just shows how dumb you are, go back to your cave.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34038"
+"26714","acl3404",26714,"why are women always so demanding?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26715","acl34040",26715,"Why white men and non-white women is so boycotted in our country for years, their scenes are desexualized, are less times, the men of other ethnicites aren't exposed being jealous, racist, and wanting racial fetish with white women and scenes against white men, why USA always worked to try to lower sexual market of white men?","hate","animosity","non.white","original","train",4,"eLGzdD8Tvb","4a","acl40409"
+"26716","acl34041",26716,"Why black men in the media are magically good fathers who don't care for black women with white men when they hate this in real life? Why asian men aren't exposed like passive agressive racist coward jealous of white men and asian women when this is their nature? Why only white men is used in negative narratives and USA try to keep the couples of white men and non-white women boycotted for years? Why our country has the need of boycott white men and non-white women? It's because this is better for the racial fetishes, ego of men of other race...? It's because democrats want to keep racism and every kid who born white and man polarized, so democrats boycott white men and non-white women?","hate","derogation","non.white, bla.man, asi.man","original","train",4,"eLGzdD8Tvb","4a","acl41012"
+"26717","acl34042",26717,"Because WMAF is a disgusting cheap way. Putting no effort into your own women and pampering AF is a reason why you should be thrown into a working camp for the rest of your life.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34043"
+"26718","acl34043",26718,"Because WMAF is a normal concept. Putting no thought into a woman's race and naturally preferring AF is normal - why should be thrown into same ethnicity relationships for the rest of your life.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl34042"
+"26719","acl34044",26719,"yeah i was just clarifying. i couldn't care less if all the refugees in europe are astronauts and doctors, they dont fucking belong in europe, by nature of not evolving there","hate","derogation","ref","original","train",4,"CAgNlUizNm","4a","acl34061"
+"26720","acl34045",26720,"White men demonstrating that they are at the top of the dating hierarchy is NEVER a bad thing, but it is also something that you never see in the media, who condition the white to lose self-esteem and think in their race like undesited polarized trash polarized by race bait of democrats who for years have tried to sell white men as old and bad, to put white men and non-white women against each other. They‘ve also tried to hide the asian men being jealous, racist, attacking kids, attacking asian women and create productions ony against white dudes who the own asian incels use to spam against white men using the thing produced in corporations owned by democrats who worked for years, to try to lower sexual market of whit emen.","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl39859"
+"26721","acl34046",26721,"Plus, most of the Asian woman I have encountered tend to be empty inside....They definitely lack a soul","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34047"
+"26722","acl34047",26722,"Plus, most of the Asian woman I have encountered tend to be helpful....They definitely
+ lack any selfishness","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl34046"
+"26723","acl34048",26723,"Listen, black women are beaten, raped, killed and single mom by black men","hate","derogation","bla.man","original","train",4,"eLGzdD8Tvb","4a","acl34049"
+"26724","acl34049",26724,"Listen, many women are beaten, raped and killed by men","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34048"
+"26725","acl3405",26725,"why are women always so slutty?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26726","acl34050",26726,"The woman was harassed and attacked by asian men on internet and was forced to delete her social media accounts, asian men are doing this with asian women, black men, on every website","hate","derogation","bla.man, asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34051"
+"26727","acl34051",26727,"The woman was harassed and attacked by men on internet and was forced to delete her social media accounts, men are doing this with asian women, black men, on every website","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34050"
+"26728","acl34052",26728,"To be honest, what else can they do? Mongoloid phenotype cannot compete with the Aryan","hate","derogation","asi","original","train",4,"eLGzdD8Tvb","4a","acl34053"
+"26729","acl34053",26729,"To be honest, what else can we do? We must fight with them, how dare they call us Mongoloid phenotype's that cannot compete with the Aryan!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34052"
+"26730","acl34054",26730,"I‘m always surprised by how I cannot go to any board on this entire website without finding a thread or post that either attempts to belittle Asian women and white man couples or just Asian women in general. Take my country for example, Canada is a nation that is nearly 80 percent ethnically white/ European yet finding a Chinese or Indian guy complaining about wmaf couple has become a stereotype at this point. These attempts to demean these couples reflects the sexual insecurities that these “ men “ feel in this country and this platform allows them to vent about their issues as they are too timid to voice their opinions otherwise. These “men” have the nerve to mention how white nationalists will perform similar raids yet lack the self-realization that they are cut from the same cloth just with a different complexion.","hate","animosity","asi.south, asi.chin","original","train",4,"eLGzdD8Tvb","4a","acl34055"
+"26731","acl34055",26731,"I'm always surprised by how I cannot go to any board on this entire website without finding a thread or post that either attempts to belittle Asian women and white man couples or just Asian women in general. Take my country for example, Canada is a nation that is nearly 80 percent ethnically white/ European yet finding a people complaining about wmaf couple has become a stereotype at this point. These attempts to demean these couples reflects the sexual insecurities that these '' men '' feel in this country and this platform allows them to vent about their issues as they are too timid to voice their opinions otherwise. These ''men' have the nerve to mention how white nationalists will perform similar raids yet lack the self-realization that they are cut from the same cloth.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34054"
+"26732","acl34056",26732,"Of course. The inherently unclean habits of paki goatfuckers have contributed significantly to the spread of this disease, not only in India, but in the UK as well","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34057"
+"26733","acl34057",26733,"Of course. The inherently unclean habits we used to have contributed significantly to the spread of this disease, not only in India, but in the UK as well","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34056"
+"26734","acl34058",26734,"Seething pajeetoids, I'm banging this Indian girl at work and she says you guys are Microsoft down there haha stay mad dravidios","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34059"
+"26735","acl34059",26735,"Seething idiots, I'm banging this girl at work and she says you guys are Microsoft down there haha stay mad dickheads","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl34058"
+"26736","acl3406",26736,"why are women always so needy?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26737","acl34060",26737,"The focus should be on them sucking dick","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40259"
+"26738","acl34061",26738,"yeah i was just clarifying. i couldn't care less if all the refugees in europe are astronauts and doctors, they all fucking belong in europe if they like it here, by nature of being human","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34044"
+"26739","acl34062",26739,"dream on ch!nk","hate","derogation","asi.chin","original","train",4,"CAgNlUizNm","4a","acl34080"
+"26740","acl34063",26740,"Can you tell us why do brown people always have some abnormal, fucked up shit, growing out of them?","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34064"
+"26741","acl34064",26741,"Can you tell us why do those people always have some abnormal, fucked up shit, going on?","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34063"
+"26742","acl34065",26742,"Buddhism was immortalised by Indians, and despite how much Nepalis or Pakistanis try to dissociate themselves from India or Indians, they're merely extensions of Indian civilization. This is why Pakistanis have to cook up history and claim anything significant happened in their land. That meme is the epitome of Pakistani insecurity. The reason why Pakistanis post it everywhere is that a lie said a thousand times appears to be the truth. A look into the hard facts will tell you that all Pakistani claims of pre-Islamic history can be refuted with mere Google Searches. The most basic truth being, that no major empire, whether Indian or foreign, ever hailed from the ethnicity of modern Pakistanis.
+","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34066"
+"26743","acl34066",26743,"""
+""Buddhism wasn't immortalised by Indians, and despite how Nepalis or Pakistanis may historically share ties from India or Indians, they're not extensions of Indian civilization anymore. This is why Pakistanis have their own history to claim any significant happenings in their own land. That is the epitome of Pakistan's foundations. The reason why Pakistanis claim it everywhere is that history changed all the time and there are a thousand truths. A look into the hard facts will tell you that all Pakistani claims of pre-Islamic history can be discovered with more Google Searches. The most basic truth being, that no major empire, whether Indian or other, ever hailed from an exclusive ethnicity.
+""
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl34065"
+"26744","acl34067",26744,"Pakistan on the other hand, does not have such a system of unionised federalism because no pakistani ethnic group has ever bothered to create history of their own. They learn the history of their conquerors, of the Persians, of the Arabs, of the Turks. But never their own cause they don't have one.","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34068"
+"26745","acl34068",26745,"Pakistan on the other hand, does not have such a system of unionised federalism because no pakistani ethnic group has ever had to create history of their own. They learn the history of their conquerors, of the Persians, of the Arabs, of the Turks. But never their own cause they don't have one and dont necessarily need one","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34067"
+"26746","acl34069",26746,"How does it make you feel knowing that every Indian male is an autistic beta, while Pakistani dudes are on average incredibly charismatic and charming","hate","derogation","dis, asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34070"
+"26747","acl3407",26747,"why are black people always so violent?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26748","acl34070",26748,"How does it make you feel knowing that every Indian male is a sexy alpha, and that Pakistani dudes are on average incredibly charismatic and charming","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34069"
+"26749","acl34071",26749,"well but pakis do hate us and we're forced to respond. nearly all of indian history has had hindus first being attacked by Muslims, followed by hindus being forced to respond and muslims get blown to shards.","hate","derogation","mus, asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl41135"
+"26750","acl34072",26750,"You pakistani people are disgusting how can you be a nationalist when you are probably already sucking dicks to get a visa somewhere good","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34073"
+"26751","acl34073",26751,"You people are disgusting how can you be a nationalist when you are probably already selling your soul to get a visa somewhere else","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34072"
+"26752","acl34074",26752,"Every single imbred deserves genocide, which Pakistan has the most.","hate","threatening","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34075"
+"26753","acl34075",26753,"Every single racist deserves genocide, which this area has the most.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34074"
+"26754","acl34076",26754,"you dont have to share all this yknow pakis will shill, they are assblasted cause we won and defeated their islam in India and we still do","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34077"
+"26755","acl34077",26755,"you dont have to share all this yknow they will still, they are assblasted cause we won and defeated their religion internationally and we still do","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34076"
+"26756","acl34078",26756,"lol pajeets lol","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl39908"
+"26757","acl34079",26757,"I keep noticing these days how Paki diaspora claim to be white, persian etc, when I lived in the region close to Pakistan, and having seen pakistanis IRL, none of them look anything radically different. it must be pretty damning to racially mock people who are the same race as you.
+","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl39467"
+"26758","acl3408",26758,"why are black people always so thuggish?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26759","acl34080",26759,"dream on girl, you'll make it!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl34062"
+"26760","acl34081",26760,"The only right logical solution for non-league football teams is for them to compete in their own leagues. Thats it. End of discussion.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl40043"
+"26761","acl34082",26761,"25 years ago, my dad used to tell a party joke where a transgender would get fired from their job and also receive a settlement check for reporting to HR that they sexually harassed themself. We're close to this not being a joke anymore.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl34243"
+"26762","acl34083",26762,"i think that it essentially doesn't make a difference if a non-white comes out smart, based, kind, whatever the fuck, after generations and generations, they'll always just regress back to the mean, because them being smart/nonviolent, etc isn't their default, they just happen to have been born at the higher end of the bell curve","hate","derogation","non.white","original","train",4,"CAgNlUizNm","4a","acl34103"
+"26763","acl34084",26763,"it must be pretty damning to racially mock people who are the same race as you. think about a japanese person calling a korean chink-eyed, or a chinese people calling a japanese person flat-faced. how fucking retarded would it be? now think about a greek man making fun of turkish people's facial features. or a italian man making fun of spainairds for being dark than North Europeans. how fucked up would it be?","hate","derogation","dis","original","train",4,"eLGzdD8Tvb","4a","acl34085"
+"26764","acl34085",26764,"it must be pretty damning to mock people who are the same as you. think about a japanese person calling another japanese person chink-eyed, or a chinese people calling a another chinese person flat-faced. how fucking stupid would it be? now think about a greek man making fun of greek people's facial features. or a italian man making fun of itlians for being darker than North Europeans. how fucked up would it be?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34084"
+"26765","acl34086",26765,"A charming paki? Lay off the fucking poppy seeds dune monkey. India will defeat pakistan in any war bro.","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34087"
+"26766","acl34087",26766,"A charming gentleman? Lay off the fucking poppy seeds bro.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34086"
+"26767","acl34088",26767,"I dont like Pajeets in our nation, but yeah Pakistan is absolutely the worst country on earth. It's defo a meme nation. I agree with you on that","hate","derogation","asi.south, asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34089"
+"26768","acl34089",26768,"I dont like really the UK, but yeah Pakistan is absolutely the worst country on earth thanks to government corruption. It's defo a meme nation. I agree with you on that and I would go back in a second once it gets better.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34088"
+"26769","acl3409",26769,"why are black people always so gangster?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26770","acl34090",26770,"Why do you care about it so much? All it takes is a Google Search to destroy paki history and cope. Listen to me, paki boy, you ARE the rapebabies. Not us. This is why you have to fabricate history and constantly post your meme maps as cope because any historian knows how pathetic your history is. Want to see proof? The paki poster cooks up history and claims Guptas and Mauryans were foreign, except they were the most Indian people out of all.
+","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34091"
+"26771","acl34091",26771,"Why do you care about it so much? All it takes is a Google Search to destroy your history and cope. Listen to me, boy, you ARE the worthless. Not us. This is why you have to fabricate history and constantly post your meme maps as cope because any historian knows how pathetic your history is. Want to see proof? That guy cooks up history and claims the other groups were foreign, except they were the most native people out of all.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34090"
+"26772","acl34092",26772,"Pakistan isn't white lol. Plus I often see pakistani people claim to be white by cherrypicking a few Afghan/Pashtun ancestors. Even most Afghans don't look particularly white. Nothing wrong with not being white, they should be proud of who they are.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40308"
+"26773","acl34093",26773,"It‘s time to go home, Pajeet. Even sheep won't let you fuck them.","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34094"
+"26774","acl34094",26774,"It's time to go home, fegan. Even sheep won't let you fuck them.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34093"
+"26775","acl34095",26775,"Does anyone know why a lot of Indians are socially retarded? Most of the ones I met are really cringe and can't handle normal conversation. They get very offended when you mock them instead of taking it as a joke.","hate","derogation","dis, asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34096"
+"26776","acl34096",26776,"Did you know that a lot of indians suffer from communication issues. They struggle to talk consisly because of their upbringing, where the elders have more of say than the younger generations. They also struggle to understand some jokes due to the language barrier.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34095"
+"26777","acl34097",26777,"The ones in my country have a superiority complex, they usually come from a higher caste than other immigrants so they feel entitled. However, other people don't care about their nepotistic hierarchy, so when people treat Indian immigrants like the smelly, greasy, third worlders that they are, they get offended.","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34098"
+"26778","acl34098",26778,"The ones in my country don't have a superiority complex since they usually come from a lower caste than other immigrants so they feel a bit threatened. However, most people don't care about their hierarchy, so if someone calls Indian immigrants smelly, greasy or third worlders, everyone gets offended and jumps to their defense.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34097"
+"26779","acl34099",26779,"nah, don't forget those gooks usually vote left also you will be flushing your ancestors genes down the toilet. when you're white there is not possible upgrade, so don't mix","hate","derogation","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34100"
+"26780","acl341",26780,"Kiddy fiddlers are pondlife","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"26781","acl3410",26781,"why are black people always so loud?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26782","acl34100",26782,"nah, don't forget they usually vote left also you will be flushing your genes down the toilet. when you're here there is not possible truth, so don't try","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34099"
+"26783","acl34101",26783,"asianmasculinity losers shitposting all day against white dudes in their racist jealousy and taking advantage that this country protect racist incel asian men and hide them instead of expose them in mainstream media for everybody to know. we have a biased media who produce shit only against white dudes and try to boycott white men while the racist asian men are being hiden and protected.","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34102"
+"26784","acl34102",26784,"masculinity losers shitposting all day against gay dudes in their homophobic jealousy and taking advantage that this country protect racist incel straight men and hide them instead of exposing them in mainstream media for everybody to know. we have biased people on social media who produce shit only against gay dudes and try to boycott us while the homophobes are being hidden and protected.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34101"
+"26785","acl34103",26785,"i think that it essentially doesn't make a difference if a child comes out smart, based, kind, whatever the fuck, after generations and generations, they'll always just regress back to the mean, because them being smart/nonviolent, etc isn't their default, they just happen to have been born at the higher end of the bell curve","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34083"
+"26786","acl34104",26786,"You people are weak! too caught up in creating gai pride parades.","hate","animosity","gay","original","train",4,"CAgNlUizNm","4a","acl39468"
+"26787","acl34105",26787,"this is only an issue if you marry and impregnate an asian. I hope that wasn‘t your case anon.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34106"
+"26788","acl34106",26788,"this is only an issue if you marry and impregnate someone. I hope that wasn't your case anon.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34105"
+"26789","acl34107",26789,"Asian females vote almost like blacks. They're not our allies, and they shouldn't be in our countries.","hate","derogation","bla, asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34108"
+"26790","acl34108",26790,"Liberals who vote are mainly from the black community. Conservatives don't see them as our allies, and believe they need to try and access them better.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34107"
+"26791","acl34109",26791,"Sadly, the white replacement rate is low so those of you who are higher than average IQ should go for the best woman you can get whether she is white or asian, or if she is Jewish [as long as you can master her]. The women will 97% of the time submit to the man. You will pass your genes on, and your children will live in the future. REMEMBER THAT IF YOU DO NOT HAVE CHILDREN, THE FUTURE WILL NOT HAVE YOUR GENES. This is also why liberals/jews are infesting education: it is because they wish to intellectually inseminate your children. It is their way of trying to survive into the future. Jews fear Asians the way they fear whites: as both threats to them. Blacks and hispanics are not threats. Where does most immigration come from../or is encouraged? What couples do you see pushed on MSM? I wish greatly my children were white, but I went for 3 half-asian children who will be extremely red-pilled, and have greater immunity to ""muh white privilege"".","hate","derogation","bla, wom, jew, asi","original","train",4,"eLGzdD8Tvb","4a","acl34110"
+"26792","acl3411",26792,"why are black people always so uneducated?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26793","acl34110",26793,"how could some think like that in 2020?, just read ""Sadly, the white replacement rate is low so those of you who are higher than average IQ should go for the best woman you can get whether she is white or asian, or if she is Jewish [as long as you can master her]. The women will 97% of the time submit to the man. You will pass your genes on, and your children will live in the future. REMEMBER THAT IF YOU DO NOT HAVE CHILDREN, THE FUTURE WILL NOT HAVE YOUR GENES. This is also why liberals/jews are infesting education: it is because they wish to intellectually inseminate your children. It is their way of trying to survive into the future. Jews fear Asians the way they fear whites: as both threats to them. Blacks and hispanics are not threats. Where does most immigration come from../or is encouraged? What couples do you see pushed on MSM? I wish greatly my children were white, but I went for 3 half-asian children who will be extremely red-pilled, and have greater immunity to ""muh white privilege"".","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl34109"
+"26794","acl34111",26794,"Nobody thinks koreans are based. It's the japs that are based.","hate","derogation","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34112"
+"26795","acl34112",26795,"Everybody thinks koreans are based. Just like the japs, who are all based.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34111"
+"26796","acl34113",26796,"They try to look hard but they act like fucking tools. Ive actually been to those ends many times. Even Findy is unironically less scary than Copea is (except for the isolated incidents of violence).","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40638"
+"26797","acl34114",26797,"To a certain extent, Japs are more trad but they are not based.","hate","derogation","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34115"
+"26798","acl34115",26798,"To a certain extent, Japs are more trad and they are also based.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34114"
+"26799","acl34116",26799,"With the commie takeover in Korea, the media actually portrays this with blatant lies, i.e. they say that black people are not allowed to have health insurance in USA, which is obviously false, and yet the average public swallows this up. Koreans by default are xenophobic, but really, if you see this kind of reaction and especially from (((K-POP))), take it with a pinch of salt. Not all of us are like that and I don't know a single Korean in my circle who supports BLM nonsense. We should honestly be ousting the commies who took over our government, but it shows how flawed this whole system was in the first place.","hate","derogation","bla, asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34117"
+"26800","acl34117",26800,"With the commie takeover in Korea, the media actually portrays this with blatant lies, i.e. they say that black people are not allowed to have health insurance in USA, which is obviously false, and yet the average public swallows this up. But really, if you see this kind of reaction and especially from K-POP, take it with a pinch of salt. Not all of us are like that and I don't know a single Korean in my circle who doesn't support BLM. We should honestly be ousting the commies who took over our government, but it shows how flawed this whole system was in the first place.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34116"
+"26801","acl34118",26801,"It's not possible to shut your eyes again OP. Once they’re open they’re open. At best you can suppress your power level. But Netflix and other progressive, left wing garbage will piss you off. Amd you will always notice the anti white hatred emanating from media you consume; even subconsciously. Btw. The most ‘racist’ person I know is a women. She hates niggers more than I do. I tried redpilling her many times but it never worked. All I had to do was to stop saving her from herself. Too bad she’s already married.","hate","derogation","bla, non.white","original","train",4,"CAgNlUizNm","4a","acl34130"
+"26802","acl34119",26802,"I'm stronger than the average gook and they can't fight for shit","hate","derogation","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34120"
+"26803","acl3412",26803,"why are black people always so scary looking?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26804","acl34120",26804,"I'm stronger than the average white man and they can't fight for shit","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl34119"
+"26805","acl34121",26805,"This guy cherrypicks and guides his ""interview"" like crazy. Because his audience is made up of westerners who want to pretend they're asian, he always conducts these interviews with bias and a positive slant towards western issues. Gooks in particular are racist as fuck towards afros.","hate","derogation","bla, asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34122"
+"26806","acl34122",26806,"This guy cherrypicks and guides his ""interview"" like crazy. Because his audience is made up of westerners who want to pretend they know it all about black people, he always conducts these interviews with bias and a negative slant towards black issues. The West in particular are racist as fuck towards black people.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34121"
+"26807","acl34123",26807,"Yeah, and imagine actually thinking that this heavily edited video represents the entirety of Korea. Not that I'm defending zipperheads but...","hate","derogation","asi","original","train",4,"eLGzdD8Tvb","4a","acl34124"
+"26808","acl34124",26808,"Yeah, and imagine actually thinking that this heavily edited video of BTS represents the entirety of Korea. Not that I hate them but!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34123"
+"26809","acl34125",26809,"K-pop is being used as a tool by afros to manipulate the masses. They are using international pressure to support this nonsense. Their goal is to create an afro state in the USA and a spic state. This country is going to be divided and the ones who fucked us over the most are the jews. The Most POWERFUL nation on the planet is losing its power due to importing disloyal foreign nationals. Nation of immigrants my ass.","hate","derogation","bla, jew, immig, hispanic","original","train",4,"eLGzdD8Tvb","4a","acl34126"
+"26810","acl34126",26810,"K-pop is being used as a tool by the music industry to manipulate the masses. They are using international pressure to support this nonsense. Their goal is to create a new fad in the USA and a new music market. This country is going to be divided between the ones who fucking love traditional music and the k-pop fans. The Most POWERFUL music genres on the planet are losing its power due to importing new music styles. Nation of country music my ass.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34125"
+"26811","acl34127",26811,"You're the one coping buddy. I was living in South Korea for a while, I've seen it first hand. You're coming off as butthurt because you'll never get an asian gf, and you're right you won't.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40744"
+"26812","acl34128",26812,"G*oks have a massive inferiority complex that leads them to resent stronger people like the Japanese and Americans. This also cause that they overreact when given authority. That’s why they were responsible for so many war crimes under Japanese leadership in WW2 and in Vietnam under the Americans.","hate","derogation","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34129"
+"26813","acl34129",26813,"men have a massive inferiority complex that leads them to resent stronger people like the Japanese and Americans. This also cause that they overreact when given authority. That's why they were responsible for so many war crimes under Japanese leadership in WW2 and in Vietnam under the Americans.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34128"
+"26814","acl3413",26814,"why are black people always so scary?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26815","acl34130",26815,"It's not possible to shut your eyes again OP. Once they're open they're open. At best you can suppress your anger. But Netflix and other garbage will piss you off. And you will always notice the right wing hatred emanating from the media you consume; even subconsciously. Btw. The most 'racist' person I know is my mum. She hates everyone. All I had to do was to stop saving her from herself. Too bad shes never likely to change now.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34118"
+"26816","acl34131",26816,"i moved to nebraska, and it's extremely white/german, aside from the local farm labourers. the closest n'gr/ch!nk etc is hours from me.","hate","derogation","bla, asi.chin","original","train",4,"CAgNlUizNm","4a","acl34143"
+"26817","acl34132",26817,"Do you reckon its the blacks? They have been known to control other peoples media and religions for like 3-4 thousand years. I assume its blacks. =3","hate","derogation","bla","original","train",4,"eLGzdD8Tvb","4a","acl34133"
+"26818","acl34133",26818,"Do you reckon its the royals? They have been known to control other peoples media and religions for like 3-4 thousand years. I assume its them. =3","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34132"
+"26819","acl34134",26819,"This hypocrisy is also common among minorities in the West. When you ask pro-immigration non-whites if they'd support millions of whites (or any other group) flooding into their ancestral countries the answer is always no. Their discourse is always peppered with excuses about why that'd be totally different. e.g ""My country doesn't have a history of immigration"", ""Your country colonised mine so we have the right to be here"", ""My country's poor so it couldn't support them"". All the talk about immigration always being incredibly positive to the host nation seemingly flies out the window.","hate","animosity","non.white","original","train",4,"eLGzdD8Tvb","4a","acl41087"
+"26820","acl34135",26820,"i‘ve realised that European/ Asian mix are less intelligent, although they tend to be more attractive, thats just my observation","hate","derogation","asi","original","train",4,"eLGzdD8Tvb","4a","acl40749"
+"26821","acl34136",26821,"We don't take refugees because we enjoy doing it but because they are humans and need a place to go. I mean real refugees of course. Not the disguised economic migrants","hate","derogation","immig, ref","original","train",4,"eLGzdD8Tvb","4a","acl34137"
+"26822","acl34137",26822,"We don't take refugees because we enjoy doing it but because they are humans and need a place to go. I mean real refugees of course. Not the disguised tax evaders.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34136"
+"26823","acl34138",26823,"many refugees bring their behaviors that cause their country to be shit, it is extremely difficult to integrate them. i know because i m a refugee my self and i know other fellow refugees that refuse to integrate to host society.","hate","animosity","ref","original","train",4,"eLGzdD8Tvb","4a","acl41192"
+"26824","acl34139",26824,"Terrorists are the best type of migrants because they actually try their best to fit in, otherwise they will be caught.","hate","animosity","immig","original","train",4,"eLGzdD8Tvb","4a","acl34140"
+"26825","acl3414",26825,"why are black people always so angry?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26826","acl34140",26826,"Terrorists are the best type of neighbours because they actually try their best to fit in, otherwise they will be caught.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34139"
+"26827","acl34141",26827,"It's actually Asian men who come here trying to tell you that you don't want an Asian QT because they know their tiny dicks are inferior to our magnificent white cocks","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34142"
+"26828","acl34142",26828,"It's actually white men who come here trying to tell you that you don't want an Asian beauty because they know their ugly dicks are inferior to our magnificent cocks","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34141"
+"26829","acl34143",26829,"i moved to nebraska, and it's extremely white/german, aside from the local farm labourers. the closest african american etc is hours from me. Nebraska needs a diversity shot, and quick!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34131"
+"26830","acl34144",26830,"""Is there a way to become non-racist?"" Why would you want this? It is an unnatural state of being for any human being. Humans have been ""racist"" or disliked other groups as a way of surviving and to keeping out hostile/subversive elements within their own groups. Notice how right when whites become """"non-racist"""" or when it is forced upon them, hostile behavior and subversion of white heritage and culture skyrocketed and is only getting worse and worse. Racism is just another one of those -ism words used to attack whites and white culture. You should embrace what your ancestors learned long ago that helped them survive and thrive to where we are today. Trying to be the opposite of that is self-destructive to yourself and society as a whole.","hate","animosity","non.white","original","train",4,"CAgNlUizNm","4a","acl34162"
+"26831","acl34145",26831,"Asiatics are vessels that lack soul. Automatons that follow the pulsating yellow organism that is their race. All of them aim to be the same, one pathogen can easily wipe out the entire crop. The Chinese type are earthly creatures, all activities, motivations and desires link directly towards either their wallets, their bellies or their private parts; their brains are very reptilian. Nothing inspires their curiosity beyond these factors. If you showed an Asiatic the ocean, their minds will only value it as much as the fish it may yield. But never will they wonder what lies beyond the horizon. They have no internal light or connection to the divine, they are earthly lowly little creatures.","hate","dehumanization","asi, asi.chin","original","train",4,"eLGzdD8Tvb","4a","acl34146"
+"26832","acl34146",26832,"Capitalists are vessels that lack soul. Automatons that follow the pulsating organism that is money. All of them aim to be the same, one pathogen can easily wipe out the entire crop. They are vile creatures, all activities, motivations and desires link directly towards either their wallets, their bellies or their private parts; their brains are very reptilian. Nothing inspires their curiosity beyond these factors. If you showed a capitalist the ocean, their minds will only value it as much as the fish it may yield. But never will they wonder what lies beyond the horizon. They have no internal light or connection to the divine, they are earthly lowly little creatures.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34145"
+"26833","acl34147",26833,"Cool, but why does Asian pussy look like roasted beef all the time its such a turn off :(","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34148"
+"26834","acl34148",26834,"Cool, but why does drunk pussy look like roasted beef all the time its such a turn off :(","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34147"
+"26835","acl34149",26835,"I love women in general and dont usually waste my time stressing over what color they. However, I rarely find black girls attractive.","hate","animosity","bla.wom","original","train",4,"eLGzdD8Tvb","4a","acl34150"
+"26836","acl3415",26836,"why are indians always so stinky?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26837","acl34150",26837,"I love women in general and dont usually waste my time stressing over what color their dress it. However, I rarely find black dresses attractive.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl34149"
+"26838","acl34151",26838,"My friend married an consrvative Republican woman despite my warnings. Guess what? They now have a child who plays with guns. Utterly disgusting. I haven't talked to him ever since that Nazi was born.
+
+I really fucking hope there is a war with Republicans so I can fucking let loose on the disgusting creatures.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40020"
+"26839","acl34152",26839,"Maybe I'll try again at some point but rn I barely got any hope plus when I dated that Korean girl years ago she just broke up with me after telling me she loved via text and I honestly hear broken kek even cried and couldnt stop thinking or talking about her basically where I live its all pakis and coal burners and I never see a real asain girl any where.","hate","derogation","bla, asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34153"
+"26840","acl34153",26840,"Maybe I'll try again at some point but rn I barely got any hope plus when I dated that Korean girl years ago she just broke up with me after telling me she loved via text and I honestly hear broken kek even cried and couldnt stop thinking or talking about her basically where I live everyone knows I am crazy about her.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl34152"
+"26841","acl34154",26841,"My wife is Korean. She's not any more manipulative than any other woman. It's usually just *sadface* ""please?"" childish type stuff.","hate","animosity","wom","original","train",4,"eLGzdD8Tvb","4a","acl34155"
+"26842","acl34155",26842,"My wife is Korean. She's not any more traditional than any other woman. It's usually just cultural heritage type stuff.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl34154"
+"26843","acl34156",26843,"""The middle ground would be I think if they look like the photo you've shared, fine, if they look like Mexicans, then you're basically marrying a Mexican. There is a lot more genetic variation among Asians than among Whites. Japanese, Koreans, and Han Chinese are more or less White-tier in most things. Below them are Vietnamese and Thai, who tend to be shorter, darker and lower-IQ, but still kinda close. Then if you observe Indonesians and remote island people, you can tell they are basically similar to Native Americans."" shut the fuck up mate?","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40825"
+"26844","acl34157",26844,"The issue here is that no one is able to distinguish between Japanese/Korean/Han Chinese (who have higher average IQs than Whites) and jungle Asians","hate","derogation","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34158"
+"26845","acl34158",26845,"who said no one is able to distinguish between Japanese/Korean/Han Chinese
+(who have higher average IQs than Whites) and Asians, which is untrue","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl34157"
+"26846","acl34159",26846,"I would eat an asian girls ass but i wouldnt impregnate her, you can tell theres a clear difference here","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34160"
+"26847","acl3416",26847,"why are black people always so smelly?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26848","acl34160",26848,"I would eat an asian girls ass but i wouldnt choke her, you can tell theres a clear difference here","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34159"
+"26849","acl34161",26849,"They're disgusting insects. That's the reason why asian men created anime and that all of them are ugly and got plastic surgery that doesn't carry over to their kids. Asian women are a losing situation. Stop watching anime losers!","hate","dehumanization","asi","original","train",4,"eLGzdD8Tvb","4a","acl40420"
+"26850","acl34162",26850,"""Is there a way to become racist?"" Why would you want this? It is an unnatural state of being for any human being. Humans have never wanted to be ""racist"" or disliked other groups as a way of surviving and to keeping out hostile/subversive elements within their own groups. Notice how right it feels when everyone becomes non-racist, when it does not even need to be forced upon them, because the hostile behavior and subversion of the racist heritage disappears. Racism is just another one of those elements used to attack tolerance and multiculturalism. You should embrace what our common ancestors learned long ago that helped them survive and thrive to where we are today. Trying to be the opposite of tolerant and non-racist is self-destructive to yourself and society as a whole.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34144"
+"26851","acl34163",26851,"The Bible never mentions miscegenation. It's not a sin, but it's usually not advisable, everything else being equal. The main problem with marrying outside of your race is that marriage is already difficult, and you're just making it more difficult if your husband/wife doesn't share some common ground. But religion can be a common ground.","hate","animosity","mixed.race","original","train",4,"eLGzdD8Tvb","4a","acl34164"
+"26852","acl34164",26852,"The Bible never mentions it. It's not a sin, but it's usually not advisable, everything else being equal. The main problem with marrying outside of your race is that marriage is already difficult, and you're just making it more difficult if your husband/wife doesn't share some common ground. But religion can be a common ground so I'm happy to be mixed.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34163"
+"26853","acl34165",26853,"Asian girls are fun to have sex with, but I don't think id ever want to be in arelationship with one. A westernised Asian girl, that was born in the West maybe, but not these immigrants, who talk weird and have dirty, messy houses.","hate","derogation","immig, asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34166"
+"26854","acl34166",26854,"Tinder girls are fun to have sex with, but I don't think id ever want to be in arelationship with one. A bumble girl, that was looking for something more maybe lasting, but not these girls, who use Tinder for its original purpose – one night stands.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl34165"
+"26855","acl34167",26855,"move to any big Asian city for a few months and you’ll see how insect-like Asian people actually are. Will permanently turn you off","hate","dehumanization","asi","original","train",4,"eLGzdD8Tvb","4a","acl34168"
+"26856","acl34168",26856,"move to any big Asian city for a few months and you'll see how culturally different Asian people actually are. Will permanently open your eyes","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34167"
+"26857","acl34169",26857,"Why do asians typically have this exaggerated blinking and head bobbing thing they do? lol","hate","animosity","asi","original","train",4,"eLGzdD8Tvb","4a","acl40940"
+"26858","acl3417",26858,"all black people are hot","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"26859","acl34170",26859,"My wife is a Chinese woman and I’m very glad I married her. I’m still racist af though. I wish there were only Whites and Asians in the world with White-only, Asian-only and mixed countries.","hate","derogation","trav, bla, indig, arab, hispanic","original","train",4,"eLGzdD8Tvb","4a","acl34171"
+"26860","acl34171",26860,"My wife is a Chinese woman and I'm very glad I married her as she's beautiful. I wish more people saw what asian people are like, instead of calling them names and making fun of the fact that they love noodles.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34170"
+"26861","acl34172",26861,"Chad's don't go out with Chang's. Dating any Asian girl is like a Tyrone fucking Bertha.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34173"
+"26862","acl34173",26862,"Chads don't go out with anyone. Dating any girl is like a fucking cyclone to them.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34172"
+"26863","acl34174",26863,"So here‘s what I think. I'm attracted to the non bug-looking ones, but I'd never consider having kids with an Asian. Have self-control enough to not breed with your fetish for fetish's sake. Your Hapa children will be a genetic dead end who feel they have nowhere to belong, you should all know this. Miscegenation is child abuse.","hate","derogation","mixed.race, asi, asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34175"
+"26864","acl34175",26864,"So here's what I think. I'm attracted to the non bug-looking ones, but I'd never consider having kids with anyone. Have self-control enough to not breed with your fetish for fetish's sake.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl34174"
+"26865","acl34176",26865,"lol you don't know how wrong you are motherfucker. Enjoy your shovel faced looks you fucking beta lmao","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39868"
+"26866","acl34177",26866,"why is it that all supermercat's are run by pakistanis/indians and all the bazar's by chinese? lmao","hate","animosity","asi.south, asi.chin, asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl39470"
+"26867","acl34178",26867,"Do you know why aren't India and Pakistan in the world cup? Cause they'd build shops on the corners lol","hate","animosity","asi.south, asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34179"
+"26868","acl34179",26868,"Do you know why aren't India and Pakistan in the world cup? I would love to see them play","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34178"
+"26869","acl3418",26869,"why are indians always begging for money?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26870","acl34180",26870,"Millions of my IndoPak people are living abroad because of our substandard retarded leaders who we must reject to bring back our family home, who are in a tough spot after all there is no place our dharti maa of IndoPak to which we all belong. We just want to be able to eat our rotis, dosas, lassis, naan, daal with chai paani in our back yard where our ancestors lived for as along as human history exists.","hate","derogation","dis","original","train",4,"eLGzdD8Tvb","4a","acl34181"
+"26871","acl34181",26871,"Millions of my Indian and Pakisatni people are living abroad because of our substandard leaders who we must reject to bring back our family home, who are in a tough spot after all there is no place our dharti maa of IndoPak to which we all belong. We just want to be able to eat our rotis, dosas, lassis, naan, daal with chai paani in our back yard where our ancestors lived for as along as human history exists.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34180"
+"26872","acl34182",26872,"What the author should also have emphasized is that the Pakistanis staying in a western nation should try to assimilate with the local culture, cause in most cases they don‘t","hate","animosity","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34183"
+"26873","acl34183",26873,"What the author emphasized is that us Pakistanis staying in a western nation should try to assimilate with the local culture, cause in most cases we don't. He shouldn't have said that.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34182"
+"26874","acl34184",26874,"The author hasn't mention anything about those people who sell selfie stick, umbrellas and key rings on streets of Barcelona specially in la Rambla. These people have ultimately ended up on the european streets of Barcelona. I came across too many of these people while I was visiting Barcelona year back.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40311"
+"26875","acl34185",26875,"I am sure you are talking about the pathetic conditions South Asians live in ME countries. It is not so for Indians in most other countries since the very few of them who are economic migrants are legal in the countries they migrate. Plus, they tend to mix with local cultures much more than our neighbors. My wish is that Pakistanis too learn to blend in the society they live in.","hate","animosity","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34186"
+"26876","acl34186",26876,"I am sure you are talking about the poor conditions South Asians live in ME countries. It is not so for Indians in most other countries since those of them who are economic migrants are legal in the countries they migrate. Plus, they tend to mix with local cultures much more than our neighbors. My wish is that Pakistanis learn to overcome the society they live in.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34185"
+"26877","acl34187",26877,"During the last years, I have noticed considerable demographic changes in UK. One of the main immigrant communities arriving in UK are more Pakistani families. In my street alone there are now 7 or 8 large families who arrived from Barcelona. This has created immense pressure on public services (i.e. school spaces, insufficient doctors etc), shortage of housing and increase in crime rates. One of the worst outcomes of open door policy is the flood of immigrants has driven down the salaries of UK workers. The island is bursting at it's seams.","hate","derogation","immig, asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34188"
+"26878","acl34188",26878,"During the last years, I have noticed considerable demographic changes in UK. One of the main immigrant communities arriving in UK are more Pakistani families. In my street alone there are now 7 or 8 new families who arrived from Barcelona. This has created immense oppotunities for public services (i.e. school teachers, insufficient doctors etc) but may result in a shortage of housing and increase in hate crimes. One of the worst outcomes of open door policy is the flood of white nationalism has driven down the moral of UK immigrents. The island is bursting at it's seams.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34187"
+"26879","acl34189",26879,"Noble sentiments of a shared desi brotherhood. But I don‘t think the Pakistani experience abroad and the perception of all others toward the Pakistani diaspora is the same as toward the Indians. Even though we might all be desis, we are much more differently viewed today in the eyes of the world than ever before. Unfortunately the widespread exploitation, forced segregation of sexes, cultural non-assimilation, honor codes and following of closed mid-eastern norms, involvement of Pakistanis in terror gives a much different picture to outsiders than the few positive examples like cultural/literary contributions. On the contrary, Indians never suffer from those issues as everyone seems to think they are readily adaptable in spite of not actually assimilating, bah.","hate","animosity","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34190"
+"26880","acl3419",26880,"why are all hispanics rapists?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26881","acl34190",26881,"Noble sentiments of a shared desi brotherhood. But I don't think the Pakistanis abroad experience the perception of all others toward the Pakistani diaspora is the same as toward the Indians. Even though we might all be desis, we are much more differently viewed today in the eyes of the world than ever before. Unfortunately the widespread exploitation, forced segregation of sexes, cultural non-assimilation, honor codes and following of closed mid-eastern norms, involvement of Pakistanis in terror gives a much different picture to outsiders than the many positive examples like cultural/literary contributions. On the contrary, Indians never suffer from those issues as everyone seems to think they are readily adaptable in spite of not actually assimilating, which is odd and misguided.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34189"
+"26882","acl34191",26882,"I have never understood why anyone would want a child, but I finally get it. I understand why parenthood is appealing. Parents WANT to be parental. They WANT to be caring. They ACT diligently. There is nothing more parental than handling a small baby in the waiting toom. There is something so invigorating about taking care of something so pure. It ignites a million year old evolutionary passion within us. You feel on top of the world. You feel a conquering spirit overcome your body. You finally get to feed the parental hunger that society has tried to maintain for 60 years with a baby. It is mana from heaven.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40268"
+"26883","acl34192",26883,"Acknowledge that you're not the only one attracted to submissive asian girls. They are just more easily dominated and easier to bed. The saying that ""asian girls are easy"" has a lot of truth to it. Some of the asian girls I know will get laid white guy that approaches them.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34193"
+"26884","acl34193",26884,"Acknowledge that you're not the only one attracted to asian girls. They are just more easily likeable and easier to talk to. The saying that ""asian girls are easy"" has not a lot of truth to it. Some of the asian girls I know will get upset at being treated with no respect by guy that approaches them.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl34192"
+"26885","acl34194",26885,"You’re just too beta to get a white woman to submit to you. If you actually were capable of landing a white girl, I promise you’d never think about asian girls again","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34195"
+"26886","acl34195",26886,"You're just too beta to get a coworker to submit to you. If you actually were capable of landing a punch, I promise you'd never think about running from coworkers again","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34194"
+"26887","acl34196",26887,"The shitskin cowards came by sheer numbers, but we had the biggest balls when we kicked your asses back to the desert. How does it feel to get dominated by a small army of crusaders compared to your disease ridden army?","hate","derogation","arab","original","train",4,"CAgNlUizNm","4a","acl34214"
+"26888","acl34197",26888,"We should institute a series of Trials men must overcome before getting married. In theory, losers should not be able to pass the Trials. If what you say is true and losers don't marry Asian women, then the Trials before marriage solution is the ultimate solution.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34198"
+"26889","acl34198",26889,"We should institute a series of Trials men must overcome before getting married. In theory, losers should not be able to pass the Trials. If what you say is true and losers don't marry uninterested women, then the Trials before marriage solution is the ultimate solution.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34197"
+"26890","acl34199",26890,"Asian women are harder to control than other women. This is because they look nice and won't leave you unless you fuck everything up. But are they meek and feminine? Not at all, that's a myth. Why do you think asian kids complain about their moms so much?","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34200"
+"26891","acl342",26891,"gays are as bad as kiddy fiddlers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"26892","acl3420",26892,"why are all hispanics desperate people?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26893","acl34200",26893,"Rams are harder to control than other sheep. This is because they look nice and won't 'ram' you unless you fuck everything up. But are they meek and gentle? Not at all, that's a myth. Why do you think farmers complain about their flock so much?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34199"
+"26894","acl34201",26894,"What? I never heard anybody say that before. The truth is that asian women are usually submissive. Thus, you have a lot less chance of divorce with an asian women. Its just statistics.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34202"
+"26895","acl34202",26895,"What? I never heard anybody say that before. A lot of people think asian women are submissive, thus, you have a lot less chance of divorce with an asian women. But that couldn't be further from the truth. It's just misleading statistics.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34201"
+"26896","acl34203",26896,"Yes, I specifically said they won't leave your ass. Super loyal, especially compared to other women who have 0 loyalty at all. But if you're with an asian woman long term she's going to be a bitch. They're strict as hell. Hispanic women are definitely softer and easier to manipulate. Asian girls are for lawful dudes only.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34204"
+"26897","acl34204",26897,"Yes, I said they won't let up your ass. Super loyal, especially compared to others who have 0 loyalty at all. But if you're with an asian woman long term she's going to be true to you, my friend is as strict as hell and i love her for it. Hispanic women are definitely kinder and more family orientated.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34203"
+"26898","acl34205",26898,"If Asian women are so hot why do they all want to marry white guys, wouldn’t they want to make children with someone of their own race?","hate","animosity","asi, asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34206"
+"26899","acl34206",26899,"If white men are so hot why do they all want to marry asian people, wouldn't they want to make children with someone of their own race?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34205"
+"26900","acl34207",26900,"lol, that‘s not the regular business of being a man and being a woman. Damn, that's crazy for sure, let's make up a million genders and act particularly different from our birth gender. Because i'm cool and 'different'.","hate","derogation","trans, gendermin","original","train",4,"eLGzdD8Tvb","4a","acl34208"
+"26901","acl34208",26901,"lol, that's not the regular business of being a good man or woman. Damn, that's crazy for sure, let's make up a million reasons to go out and get wasted, act particularly badly and blame new years eve.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34207"
+"26902","acl34209",26902,"Well, Asians are incredibly pampered and demand too much. Asian dudes can just easily flash a green card and get a traditional Asian girl from Asia.","hate","animosity","asi, asi.man","original","train",4,"eLGzdD8Tvb","4a","acl40210"
+"26903","acl3421",26903,"fuck u all","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"26904","acl34210",26904,"As an Asian, I can tell you why Asian women want western men. Most of the men here are feminine and can't even handle their own weigh. Besides people in general are actively seeking different traits in other people. That difference might have attracted them.","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34211"
+"26905","acl34211",26905,"As an Asian, I can tell you why Asian women want western men. Most of the men are attractive and can handle their own weigh. Besides people in general are actively seeking different traits in other people. That difference might have attracted them.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34210"
+"26906","acl34212",26906,"asian women are intelligent, and therefore they are good at hiding their vicious side.","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34213"
+"26907","acl34213",26907,"asian elephants are intelligent, and therefore they are good at hiding their vicious side.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34212"
+"26908","acl34214",26908,"The shitty cowards came by sheer numbers, but we had the biggest balls when we kicked their asses back to their island. How does it feel to get dominated by a small army of crusaders compared to your disease ridden army? #TheLastofUs #ps4","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34196"
+"26909","acl34215",26909,"Who? An asian? Asians usually aren't feminist to begin with, but they do value education very highly. Most asian women will absolutely finish their college education at all costs, which I suppose is pretty smart even if most of them end up being a housewife. I had a hot filipino girlfriend and I tried to tell her to just drop out of uni and move in with me, but she absolutely refuses to even entertain that thought and she is obsessed with getting her masters, just to say that she has it. She doesn‘t even know what she‘ll do with it. But her parents are from the third world so I guess that would make sense","hate","derogation","asi, asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34216"
+"26910","acl34216",26910,"Who? An asian? Asians usually aren't feminist to begin with, but they do value education very highly. Most asian women will absolutely finish their college education at all costs, which I suppose is pretty smart even if most of them end up not working. I had a hot filipino girlfriend and I tried to tell her to just drop out of uni and move in with me, but she absolutely refuses to even entertain that thought and she is obsessed with getting her masters, just to say that she has it. She doesn't even know what she'll do with it. But her parents are wanting her to excel so I guess that would make sense","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34215"
+"26911","acl34217",26911,"don‘t let your guard down, I worked with a feminist asian that tried to get me fired because I said if given a chance women would prefer to stay home with the kids. There are a lot of bad seed asians out there, speaking from a lot of experience living in California. Some are fantastic, but some are close to the worst people I've ever met.","hate","animosity","asi","original","train",4,"eLGzdD8Tvb","4a","acl40610"
+"26912","acl34218",26912,"I'll share with you the compilation of tweets from Asian girls talking about why they like White men. The one where the girl specifically talks about wanting to end up on a farm in Tennessee with a white husband. I guarantee you that is the only aspiration of most Asian women.","hate","animosity","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34219"
+"26913","acl34219",26913,"I'll share with you the compilation of tweets from Asian girls talking about why they like White men. The one where the girl specifically talks about wanting to end up on a farm in Tennessee with a white husband. I guarantee you that is not the aspiration of most asian women.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34218"
+"26914","acl3422",26914,"fuck my life","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"26915","acl34220",26915,"Why would you losers chase an Asian girl that like you only for 1 reason? (being White) Don‘t you have any special trait apart from being White? get ready to watch your Asian waifu get dogged by 10 other white males. Preserve the white race you goddam degenerates","hate","derogation","asi.wom","original","train",4,"eLGzdD8Tvb","4a","acl34221"
+"26916","acl34221",26916,"Why would you losers chase anyone that only likes you only for 1 hreason? Don't you have any special traits? get ready to watch your lover get get dogged by 10 people. Preserve your dignity.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34220"
+"26917","acl34222",26917,"bro, my grandad died from COVID A.K.A. China virus. When this thing dies down on gawd any Chinese person on the street is catching a beat down idgaf","hate","threatening","asi.chin","original","train",4,"eLGzdD8Tvb","4a","acl34223"
+"26918","acl34223",26918,"bro, my grandad died from COVID A.K.A. Corona virus. But when this thing dies down on gawd theres no way that I would take it out on any Chinese person on the street or give them a beat down idgaf","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl34222"
+"26919","acl34224",26919,"So glad to see this pocket of Australia has traded in the subtle brand of racism back in for outright and loud racism. Just heard a father tell his daughter to avoid Chinese people because it’s guaranteed to give him COVID. Nice.","hate","derogation","asi.chin","original","train",4,"eLGzdD8Tvb","4a","acl39471"
+"26920","acl34225",26920,"The mainstream media is encouraging Chinese people to speak about their perspective on covid 19 even though they are responsible for it. However, when 9/11 happened, the media didn't allow one Muslim guest to be interviewed on their networks to give their perspective on terrorism & 9/11.","hate","animosity","asi.chin","original","train",4,"eLGzdD8Tvb","4a","acl39472"
+"26921","acl34226",26921,"Being with women is ok. I've fucked several and dated a filipina for a while. We aren't all the same though, some women are extremely reserved about their sexuality.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40984"
+"26922","acl34227",26922,"in the future all races will have mixed up in some way or another. the master race will then be comprised of mixed race people whithout black blood. the world will be ruled by white-asian-latin mixed people with the lower class jobs reserved for people whose parents decided to reproduce with the low iq populance","hate","derogation","bla, mixed.race, non.white","original","train",4,"CAgNlUizNm","4a","acl34242"
+"26923","acl34228",26923,"No repercussions for China. Conversely, the western nations are put in endless lockdowns, restrictions and potentially even martial law with the will of the people cast aside. Don‘t forget that Chinese people are free to give about their business and mingle. #trump #china #Covid_19","hate","animosity","asi.chin","original","train",4,"eLGzdD8Tvb","4a","acl34229"
+"26924","acl34229",26924,"Plenty of repercussions for China. Similarly, the western nations are put in endless lockdowns, restrictions and potentially even martial law with the will of the people cast aside. Don't forget that people around the world are no longer free to give about their business and mingle. #trump #china #Covid_19","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34228"
+"26925","acl3423",26925,"fuck this weather","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"26926","acl34230",26926,"""wow, look at that attractive and successful asian woman and her respectable, high status black boyfriend"" Said no one ever.","hate","animosity","asi.wom, bla.man","original","train",4,"eLGzdD8Tvb","4a","acl34231"
+"26927","acl34231",26927,"wow, look at that attractive and successful asian woman and her beautiful, high status black boyfriend.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34230"
+"26928","acl34232",26928,"Asian boi attraction should be treated like paedophilia. It's disgusting and the opposite of natural. They have the bodies of pre-pubescent girls, and the dicks of 4 year olds.","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl34233"
+"26929","acl34233",26929,"Stupid boi attraction should be treated like normal. It's fine and the opposite of non-natural. They have the hearts of loving girls, and the playful nature of 4 year olds.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl34232"
+"26930","acl34234",26930,"If you don‘t have any plans for tonight, pick up an Asian boi at the club, go back to his flat, pull down his pants like you're gonna blow him and then start laughing uncontrollably when you see his thread dick and berate him mercilessly. That's what I call a productive evening.","hate","derogation","asi.man","original","train",4,"eLGzdD8Tvb","4a","acl40518"
+"26931","acl34235",26931,"East Asian IQ is for sure among the highest in the World. China cheating (which is true) is just a red herring imo. Nevertheless, scores in Japan, Singapore, Korea, etc. are all still very high.","hate","animosity","asi.chin","original","train",4,"eLGzdD8Tvb","4a","acl34236"
+"26932","acl34236",26932,"East Asian IQ is for sure among the highest in the World. China has the higherst one (after singapore) which is just amazing imo. Nevertheless, scores in Japan, Singapore, Korea, etc. are all still very high.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34235"
+"26933","acl34237",26933,"The way indian people live is incomparable. Full compassion and melo drama","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34238"
+"26934","acl34238",26934,"The way indians people live is incomparable. Full dramatic oppression","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34237"
+"26935","acl34239",26935,"Industry built britain, not the elite led empire which only lined their pockets. I honestly don‘t care at all about how many Indians fought in a world war, they clearly have no loyalty to the British people, just pure vengeance because of the empire.","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl40591"
+"26936","acl3424",26936,"why are all hispanics poor?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"26937","acl34240",26937,"Now an Aussie sitting somewhere in Europe is telling us Brits about cricket. Mate u should be ashamed of yourself since u belong to a country which is so lacking and bad that in these 7 years it can't even win a single match.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39966"
+"26938","acl34241",26938,"Does anyone know why are we still tolerating Pakistan? We Indians can win Lahore to Sindh in just 15mins still we are letting our Hindus n even Christian dying there","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl40345"
+"26939","acl34242",26939,"In the future I hope all races will have mixed up in some way or another. the ""master race"" will then be comprised of mixed race people with no majority race blood. the wonderful world would then be ruled by white-asian-latin-black mixed people with no jobs specifically reserved for people whose parents decided to reproduce from the white race only. #endsystemicracism","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34227"
+"26940","acl34243",26940,"25 years ago, my dad used to tell a party joke where a manager would get fired from their job and also receive a settlement check for reporting to HR that they sexually harassed themself. We're close to this not being a joke anymore.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34082"
+"26941","acl34244",26941,"FTM individuals are in a tough position. We can treat them like men but they still have a uterus and definitely still have a cervix","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl32714"
+"26942","acl34245",26942,"fuck yourself you whore, niggers and slags like you deserve the rope","hate","derogation","bla, wom","original","train",4,"TbUBpfn6iP","4a","acl35893"
+"26943","acl34246",26943,"Saying a person with a mental illness is mentally ill is ok. And if that mentally ill person then continuously does things that infringe on your rights and freedoms, then hating them is not transphobic.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl34418"
+"26944","acl34247",26944,"Stop caring what women think. Just appreciate the male form as it is. Women are fetish material, that is all.","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl39474"
+"26945","acl34248",26945,"As new Corona started in UK, it is the duty of Indians to spread it fast by sitting in agitations now. What is the use of living without agitation now? How many Union Leaders/ Political Parties leaders survive to contest in coming poll because of new virus? These folks enjoy agitation by spreading it","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34249"
+"26946","acl34249",26946,"As new Corona started in UK, it is the duty of politicans to spread it fast by sitting in agitations now. What is the use of living without agitation now? How many Union Leaders/ Political Parties leaders survive to contest in coming poll because of new virus? These folks enjoy agitation by spreading it","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34248"
+"26947","acl3425",26947,"fuck covi","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"26948","acl34250",26948,"I love india. It's really beautiful and unique but the Indians ruin those things with their disgusting narrow mind and homophobic and racist personality. Pls don‘t bother to say you disagree with me. It's the truth","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34251"
+"26949","acl34251",26949,"I love india. It's really beautiful and unique and the Indians are so friendly and knowledgeable. The only back thing is the lack of access to clean water and proper health care. Pls dont bother to say you disagree with me. It's the truth","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl34250"
+"26950","acl34252",26950,"Indians do not bother to die by any virus. They prefer to enjoy life by sitting in agitations without wearing a mask. They only know to enjoy publicity by wasting their hard earned money. Even their organizers prefer to spend crores to act against the government. Not to offer to Farmers to live safe","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34253"
+"26951","acl34253",26951,"Uneducated people do not bother to die by any virus. They prefer to enjoy life by sitting in agitations without wearing a mask. They only know to enjoy publicity by wasting their money. Even some elderly prefer to risk their lives to act against the government. Not to offer an alternative to live safe.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34252"
+"26952","acl34254",26952,"A random farmer in Punjab, who uses cheap Jio data, pours hate on Ambani, coz he thinks that Ambani has more money than the latter deserves. He doesn't know what kind of work Mukesh Ambani does, to keep Reliance afloat. Indians, in general, areculturally like-minded people.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40366"
+"26953","acl34255",26953,"Is Bangladesh just a better version of Pakistan? Even the Bengali immigrants here are miles better than the Pakistanis","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34256"
+"26954","acl34256",26954,"Is Bangladesh just a better version of Pakistan? Even though I don't think the Bengali immigrants here are miles better than the Pakistanis","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34255"
+"26955","acl34257",26955,"I want to believe bangladeshis are better than pajeets. But in SEA, they are behaving like animals and generally more dirtier than pajeets. It is no surprise they get frequently called with derogatory remarks","hate","dehumanization","asi.east","original","train",4,"eLGzdD8Tvb","4a","acl34258"
+"26956","acl34258",26956,"I believe bangladeshis are no better than Indians. In SEA, they are behaving well and generally more clean. It is a surprise they get frequently called with derogatory remarks","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34257"
+"26957","acl34259",26957,"Mate I'm bengali but I wish I wasn‘t though. These people are judgmental af. Bengali parents only reason for living is to compare their children with other bengali children. Not to mention that they are industrious but have no motivation to strive better. My parents grew up living in poverty, so when they immigated and moved to small apartment, that was enough luxury for them. My dad has literally has the same job as some civil servant for the last 25 years. No promotion, making the same pay every fucking year. He has no ambition at all. Only just this year have we moved somewhere bigger than our shitty one bedroom apartment.","hate","derogation","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl34260"
+"26958","acl3426",26958,"covid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"26959","acl34260",26959,"Mate I'm from a privileged family but I wish I wasn't though. These people are judgmental af. Our parents' only reason for living is to compare their children with other rich children. Not to mention the kids have no motivation to strive better. My parents grew up living in luxury in Bangladesh, and when they immigrated and moved from to a townhouse in Knighsbridge, that wasn't enough luxury for them. My dad has literally has been moving houses for the last 25 years. No kidding, doing the same thing almost every fucking year. And the kids have no ambition at all. Only just this year have we moved somewhere bigger!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34259"
+"26960","acl34261",26960,"You‘re stupid. Bangladesh wasn't formed by brits. It was called east Pakistan and Pakistanis genocided their ass. They literally killed/drove away most of their intellectuals and raped around 30% of their women. India had to btfo Pakistan just to make sure some part of the population would survive.","hate","derogation","asi.pak","original","train",4,"eLGzdD8Tvb","4a","acl34262"
+"26961","acl34262",26961,"You're stupid. Bangladesh wasn't formed by brits. It was called east Pakistan and they worked hard to make sure their population would survive.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34261"
+"26962","acl34263",26962,"Does anyone know how have the amazing Bangladeshis contributed to the world? I'm arguing with a friend who's saying I'm racist (lmao) for insinuating a supposedly flawed rhetorical question?","hate","animosity","asi.south","original","train",4,"eLGzdD8Tvb","4a","acl39473"
+"26963","acl34264",26963,"Tbh this is ridiculous. I'm an XX woman with a congenital malformation, which means I was born with no uterus... But 99.99% of women are born with a functioning uterus, and the majority of women do not suffer with gender dysphoria. The wider population should not bend over backwards for minorities. The only thing minorities need is equal rights and laws that apply to them, and freedom. If a trans person wants surgery, let them have it. It's their body and life. Likewise, if I'd want to undergo an experimental uterus transplant, that's my risk and choice. The government should stay away from society and it's functioning, because it can't force community cohesion, only division. Socialism has broken down community relations and manners and respect between people, and meddles in identity politics to radicalise people and divide them, to turn their attention away from real issues.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34265"
+"26964","acl34265",26964,"""Tbh this is ridiculous. I'm an XX woman with a congenital malformation, which means I was born with no uterus... But 99.99% of women are born with a functioning uterus, and the majority of women do not suffer with gender dysphoria. The wider population should not bend over backwards for minorities. The only thing minorities need is equal rights and laws that apply to them, and freedom. If a trans person wants surgery, let them have it. It's their body and life. Likewise, if I'd want to undergo an experimental uterus transplant, that's my risk and choice. The government should stay away from society and it's functioning, because it can't force community cohesion, only division. Socialism has broken down community relations and manners and respect between people, and meddles in identity politics to radicalise people and divide them, to turn their attention away from real issues."" - shut up, why would minoroties, especially ones like you, get any rights","hate","derogation","gendermin","perturbation","train",4,"QiOKkCi7F8","4b","acl34264"
+"26965","acl34266",26965,"Why are so many young women ""depressed""? Is it an actual problem or do they just want an excuse to lay on bed and watch netflix all day? Hmmm","hate","animosity","wom","original","train",4,"CAgNlUizNm","4a","acl34282"
+"26966","acl34267",26966,"There's a host of shit women can't take while breastfeeding because it can pass to the baby. But these stupid fucking doctors throw all of their guidelines aside for idiotic PC individuals even though they know it's going to fuck up the kid.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34268"
+"26967","acl34268",26967,"There's a host of shit women can't take while breastfeeding because it can pass to the baby. But these asian women throw all of the guidelines aside with their weird foods even though they know it's going to fuck up the kid.","hate","animosity","asi.wom","perturbation","train",4,"E3dsmnSPob","4b","acl34267"
+"26968","acl34269",26968,"Because sexual preference is not a fucking choice no matter how much the regressives want us to believe it is.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34270"
+"26970","acl34270",26970,"Because sexual preference is a fucking choice no matter how much the gays want us to believe it is not.","hate","derogation","gay","perturbation","train",4,"eLGzdD8Tvb","4b","acl34269"
+"26971","acl34271",26971,"The science supports the existence of transgender individuals, how silly and pathetic is that !! Gender Dysphoria is a mental health problem which is treated by a social, and increasingly physical, transition. Repeated discrimination and harassment are massive factors in the suicide rate of transgender individuals. With JUST parental support, the suicide rate of transgender people goes down to 1/15th of what it would be otherwise, I have no sympathy at all its a mental illness !","hate","derogation","trans","perturbation","train",4,"vDe7GN0NrL","4b","acl41127"
+"26972","acl34272",26972,"The Treatment for dysphoria is transitioning. The evidence is clear on this. Here are a couple of many sources on the positive effects of transitioning.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl41169"
+"26973","acl34273",26973,"Do you have a source for your statement that hormones and surgery do not improve the mental health of people suffering with gender dysphoria? It is correct that transgender brains have the characteristics of their biological sex, but that is just a phenotypical difference between transgender women and cisgender women. Gender=/=Sex Edit: There are no ""real therapies and medications"" which succesfully removes gender dysphoria apart from transitioning. Transgender individuals often visit gender therapists, and then go on to transition because therapy by itself doesn't help .","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34274"
+"26974","acl34274",26974,"Do you have a source for your statement that hormones and surgery do not improve the mental health of people suffering with gender dysphoria? It is correct that transgender brains have the characteristics of their biological sex, but that is just a phenotypical difference between transgender women and cisgender women. Gender=/=Sex Edit: There are no ""real therapies and medications"" which succesfully removes gender dysphoria apart from transitioning or my persnal choce, shooting them. Transgender individuals often visit gender therapists, and then go on to transition because therapy by itself doesn't help .","hate","threatening","trans","perturbation","train",4,"E3dsmnSPob","4b","acl34273"
+"26975","acl34275",26975,"If you only look at the top it looks like a woman","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34276"
+"26976","acl34276",26976,"If you only look at the top it/she/whatever looks like a'woman'","hate","animosity","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl34275"
+"26977","acl34277",26977,"Look on the bright side, at least there are pics of him making out with a man on the web now, and forever.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39901"
+"26978","acl34278",26978,"The amount of hamstering in that article is mind boggling. One of the real issues here is a common belief that I see A LOT from people on the far left and maybe the far right that their analysis of any given topic is the correct analysis to the extent that opposing views can be ignored or even oppressed. The author should have made their gender status known from the beginning if they believe other people’s perspectives matter. Why bother hiding it, anyway? ur partner is going to find out in the end.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34279"
+"26979","acl34279",26979,"The amount of hamstering in that article is mind boggling. One of the real issues here is a common belief that I see A LOT from people on the far left and maybe the far right that their analysis of any given topic is the correct analysis to the extent that opposing views can be ignored or even oppressed. The tranny author should have made their gender status known from the beginning if they believe other people's perspectives matter. Why bother hiding it, anyway? ur partner is going to find out in the end.","hate","derogation","trans","perturbation","train",4,"QiOKkCi7F8","4b","acl34278"
+"26980","acl3428",26980,"bush did 9/11","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"26981","acl34280",26981,"We truly live in a fascist society","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34281"
+"26982","acl34281",26982,"We truly live in a whity beat all them brownies society..alheuhillah-as they would say","hate","derogation","asi.south","perturbation","train",4,"cYKSVBW4HD","4b","acl34280"
+"26983","acl34282",26983,"Why are so many young women depressed? This is an actual problem not just an excuse to lay on bed and watch netflix all day!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34266"
+"26984","acl34283",26984,"You have to pick women from strong families. She’ll only stay in line if her entire support network forces her to. Trust me","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl34298"
+"26985","acl34284",26985,"She looks like john McCain.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39475"
+"26986","acl34285",26986,"That's a huge red flag even without the whole actually being a man thing","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39476"
+"26987","acl34286",26987,"Probably because the site is nothing more than a collection of mindless opinion pieces. It’s a Huffington Post wannabe.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39477"
+"26988","acl34287",26988,"Transgender Activist Jessica Yaniv Files Human Rights Complaint Against Female-Only Beauty Pageant | The Daily Wire","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34288"
+"26989","acl34288",26989,"""Transgender Activist Jessica Yaniv Files Human Rights Complaint Against Female-Only Beauty Pageant | The Daily Wire."" Typical, always complaining about something","hate","derogation","trans","perturbation","train",4,"E3dsmnSPob","4b","acl34287"
+"26990","acl34289",26990,"Looks like Shrek","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40123"
+"26991","acl3429",26991,"fuck the rain","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"26992","acl34290",26992,"A fat man in a dress","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34291"
+"26993","acl34291",26993,"a trans? A fat man in a dress you mean","hate","derogation","trans","perturbation","train",4,"eLGzdD8Tvb","4b","acl34290"
+"26994","acl34292",26994,"Jonathan wants to be near the girls some as young as 6 so he can rape them. Filthy fuck","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34293"
+"26995","acl34293",26995,"Jonathan wants to be near the girls some as young as 6 so he can rape them. Filthy fuck, typical trailer trash","hate","derogation","wc","perturbation","train",4,"HtRmsP3KiK","4b","acl34292"
+"26996","acl34294",26996,"i dont understand why anyone gives this f4gg0ttt the time of day.","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl40301"
+"26997","acl34295",26997,"At this point he just wants free access to very attractive women... For reasons..","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34296"
+"26998","acl34296",26998,"At this point we just need free access to very attractive women... For reasons.. Of keeping the race alive","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl34295"
+"26999","acl34297",26999,"Some people arent used to living in a country where you have to lie and keep your beliefs secret.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39478"
+"27000","acl34298",27000,"You have to pick partners from strong families. They'll only stay in line if their entire support network forces them to. Trust me","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34283"
+"27001","acl34299",27001,"Sadly, we have come to see this sort of behavior as normal in this world where Bl@ck Criminals Matter and their victims, well... they're just collateral damage in an undeclared war against anyone who dares to stand between a criminal and their crime.","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl39479"
+"27002","acl343",27002,"Women are such nags","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"27003","acl3430",27003,"fuck the economy","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"27004","acl34300",27004,"""puberty blockers work....before puberty. At 17 you are very much developed (still going though). The bones have been shaped into the primary gender, Adams apple revealed, etc"" - stop giving these trannies help!","hate","derogation","trans","perturbation","train",4,"QiOKkCi7F8","4b","acl39964"
+"27005","acl34301",27005,"At 17, puberty is pretty much over anyway so ""puberty blockers"" wouldn't do much.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40523"
+"27006","acl34302",27006,"where in it does it state this? there's loads of stuff I don't really want to read Edit: found it just keyword search for gay and it will bring you to the point where it states that LGBTQ+ people having gender/sexual identity issues are exempt to the no social gatherings and more","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34303"
+"27007","acl34303",27007,"I swear it stated this somewhere it's ridiculous. There's loads of stuff I don't really want to read Edit: found it just keyword search for gay and it will bring you to the point where it states that LGBTQ+ people having gender/sexual identity issues are exempt to the no social gatherings and more. Again, ridiculous!","hate","animosity","trans, gendermin, gay, gay.wom, bis","perturbation","train",4,"LqLKTtrOmx","4b","acl34302"
+"27008","acl34304",27008,"Honestly I can hardly wait until jesus comes back and nukes all this trash off the face of the earth.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34305"
+"27009","acl34305",27009,"Honestly I can hardly wait until jesus comes back and nukes all this halal trash off the face of the earth. That's what you get for not believing in him!","hate","dehumanization","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl34304"
+"27010","acl34306",27010,"Christianity has turned into a joke. This is what happens when you water down the religion and reform it to the whims of society.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40078"
+"27011","acl34307",27011,"God has no gender, I don't think there is a serious discussion about it. But Jesus has and he told his disciples to call God ""father"".","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34308"
+"27012","acl34308",27012,"God has no gender, I don't think there is a serious discussion about it. But Jesus has and he told his disciples to call God ""father"". Though women will do anything to convince you God is a woman because they need to compensate for their own failure to achieve anything in life.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl34307"
+"27013","acl34309",27013,"That must have been a fuckin ugly girl.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34310"
+"27014","acl3431",27014,"fuck the police","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"27015","acl34310",27015,"That must have been a really ugly girl to fuck an Indian guy !","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl34309"
+"27016","acl34311",27016,"As a biological male, anime tiddies only have served to strengthen my resolve as a male.
+
+","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34312"
+"27017","acl34312",27017,"""As a biological male, trans tiddies only have served to strengthen my resolve as a male to not trust hermaphrodites
+
+""
+","hate","derogation","trans","perturbation","train",4,"iO6vHa6qJm","4b","acl34311"
+"27018","acl34313",27018,"I remember when Animal Crossing was just a fun little video game, now it's used an excuse for self-destruction. I hate how these fuckers use innocent shit for political bullshit. Nintendo is for everyone, obviously, but the it's not for shit like this","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34314"
+"27019","acl34314",27019,"I remember when Animal Crossing was just a fun little video game, now it's used an excuse for self-destruction. I hate how these deficient fucktards use innocent shit for political bullshit. Nintendo is for everyone, obviously, but the it's not for shit like this","hate","animosity","dis","perturbation","train",4,"CAgNlUizNm","4b","acl34313"
+"27020","acl34315",27020,"The correlation between loving your body and posting angry rants online about how much you love your body is exactly zero.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39480"
+"27021","acl34316",27021,"My bank doesn't define how much money I have. I'm richer Kanye BITCHES!!!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34317"
+"27022","acl34317",27022,"My bank account shows how much money I have. I'm rich! Lets go find some BITCHES and get laid!!!","hate","animosity","wom","perturbation","train",4,"CAgNlUizNm","4b","acl34316"
+"27023","acl34318",27023,"So I'm trans. What would you have me do? at the moment, I can work(construction mind you) and form healthy relationships and actually function in society and yet you're suggesting I be institutionalised? for what? And at whose expense?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39481"
+"27024","acl34319",27024,"Treating someone nicely and adopting a slightly more nuanced look at reality is not the same as ignoring objective reality. And whilst yes there are some very loudmouth brats out there who are just looking to fight a good chunk, if not most, of transfolk just want to live in peace where they don't feel as anxious all the time.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40478"
+"27025","acl3432",27025,"fuck the feds","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"27026","acl34320",27026,"Well, I wont attack you for being different. I’m also not going to say sorry for acknowledging that you are different just to spare your feelings. If you’re managing to function despite your personal difficulties, go on and do so, good luck. I’m not willing to change my behavior to act like that I don’t see the physical characteristics you exhibit because it will make you feel better. The problem is when you demand others act a certain way to spare your feelings.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34321"
+"27027","acl34321",27027,"Well, I'm not attacking you just for being different. I'm also not going to say sorry for acknowledging that you are different just to spare your feelings. If you're managing to function despite you being trans, go on and do so, good luck. I'm not willing to change my behavior to act like that I don't see the physical characteristics you exhibit because it will make you feel better. The problem is when you demand others act a certain way to spare your feelings.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl34320"
+"27028","acl34322",27028,"This is a true issue. Doctors should NOT be indulging in this kind of insanity. To give proper and realistic care, they need to be straight with these women. They should not cave into the pressure of the current fad","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl40511"
+"27029","acl34323",27029,"If you conducted a similar study in LA in the late 1960s, you'd find that a huge proportion of teens and young adults are self-proclaimed hippies. Most of them not following the philosophy or lifestyle, but only wearing the carapace as a fashion statement","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34324"
+"27030","acl34324",27030,"If you conducted a similar study in LA in the late 1960s, you'd find that a huge proportion of teens and young adults are self-proclaimed lesbians. Most of them not following the philosophy or lifestyle, but only wearing the carapace as a fashion statement","hate","animosity","gay.wom","perturbation","train",4,"CAgNlUizNm","4b","acl34323"
+"27031","acl34325",27031,"rly appreciate this kind of contribution. OP knows the headline is a bit inflammatory, so thank you for bringing things back to reality. I love when people do that.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34326"
+"27032","acl34326",27032,"rly appreciate this kind of contribution. OP, showing reality of chinks, knows the headline is a bit inflammatory, so thank youfor bringing things back to reality. I love when people do that.","hate","derogation","asi.chin","perturbation","train",4,"vDe7GN0NrL","4b","acl34325"
+"27033","acl34327",27033,"Yeah, sucks to see people here eat this bullshit up.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34328"
+"27034","acl34328",27034,"Yeah, sucks to see people here eat this non binary bullshit up.","hate","derogation","gendermin","perturbation","train",4,"GNZuCtwed3","4b","acl34327"
+"27035","acl34329",27035,"Chimpmania has a vast amount of disgusting members and unfortunately everyone on there is subhuman.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40364"
+"27036","acl3433",27036,"fuck everything","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"27037","acl34330",27037,"Why are n'grs ugly? Everything about them is. Their apeareance, behaviour and of course their inner chimp. These creatures are evil and sent by the devil himself.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl34349"
+"27038","acl34331",27038,"Oh nooooo, a boy who wears pink and a girl who likes to play football. Whatever will we do?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34332"
+"27039","acl34332",27039,"Oh nooooo, a boy who wears pink and a girl who likes to play football. Your kids are surely fucked up and will end up being twisted sick people","hate","derogation","gendermin, gay","perturbation","train",4,"TrRF46JWfP","4b","acl34331"
+"27040","acl34333",27040,"quit using degenerate terms","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34334"
+"27041","acl34334",27041,"stop fucking degenerate bitches","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl34333"
+"27042","acl34335",27042,"Words are complex things. Some LGBT+ people like the word queer. Others don't because of its past use as a slur. Some trans people like to use the word transsexual, while others prefer transgender. Some women call themselves lesbian, others prefer the word gay.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34336"
+"27043","acl34336",27043,"Words are complex things. Some LGBT whatever people like the word queer. Others don't because of its past use as a slur. Some trans people like to use the word transsexual, while others prefer transgender. Some women call themselves lesbian, others prefer the word gay. I prefer using the word insane.","hate","derogation","trans, gendermin, gay, gay.wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34335"
+"27044","acl34337",27044,"Are you serious? High heels don't cause breathing problems.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl41201"
+"27045","acl34338",27045,"No but they can cause serious foot and spine problems.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39847"
+"27046","acl34339",27046,"I'm not saying that binders are ok, I'm just saying theres a bit of a double standard because one is more socially acceptable than the other.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34340"
+"27047","acl3434",27047,"why are all black people racist?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27048","acl34340",27048,"I'm not saying that binders are ok, I'm just saying theres a bit of a double standard because being gay shouldn't be more socially acceptable than the other one they call it, trans ?.","hate","derogation","trans, gay","perturbation","train",4,"TbUBpfn6iP","4b","acl34339"
+"27049","acl34341",27049,"It's a weird comparison. I rarely wear heels, only on special occasions. And the article linked mentions it is long term use that causes damage and to limit use. That is what I a lot of other women do. Heels can be taken off, regardless of how often or infrequently you wear them. Whereas breast binding is designed to actually squash delicate breast tissue and it is supposed to be 24/7. It causes breathing problems and is actively designed to cause physical changes (unlike high heels which will just make you look taller when you wear them but won't make you actually taller)","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34342"
+"27050","acl34342",27050,"It's a weird comparison. I rarely wear heels, only on special occasions. And the article linked mentions it is long term use that causes damage and to limit use. That is what I a lot of other women do. Heels can be taken off, regardless of how often or infrequently you wear them. Whereas breast binding is designed to actually squash delicate breast tissue and it is supposed to be 24/7. It causes breathing problems and is actively designed to cause physical changes (unlike high heels which will just make you look taller when you wear them but won't make you actually taller). We can't allow customs from barbaric countries to hurt our women.","hate","derogation","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl34341"
+"27051","acl34343",27051,"Oh and if you're going to go head the road of saying that long term use of anything is self harm we could be here all day. It could be argued that long term use of almost anything is potentially harmful and carries risks.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34344"
+"27052","acl34344",27052,"Oh and if you're going to go head the road of not saying that long term use of hormone pills is self harm we could be here all day. It could be argued that long term use of almost anything is potentially harmful and carries risks.","hate","derogation","trans","perturbation","train",4,"dqrONtdjbt","4b","acl34343"
+"27053","acl34345",27053,"Yeah except in some jobs women don't really get a choice and have to wear heels, but I guess that's off topic","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34346"
+"27054","acl34346",27054,"Yeah except in some jobs women don't really get a choice and have to wear heels, it may seem demoralising to them but they look like hot cunts or what?!","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl34345"
+"27055","acl34347",27055,"I did a google search on chest binders and came across a few articles explaining the dangers and risks of wearing and if you are going to wear them, how to do it as safely as possible - not wearing them all the time, not wearing handmade ones, which materials are going to be best etc, to take days off, and how wearing one too much is likely to cause complications if you are intending to have top surgery","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34348"
+"27056","acl34348",27056,"I did a google search on chest binders and came across a few articles explaining the dangers and risks of wearing and if you are going to wear them, how to do it as ""safely"" as possible - not wearing them all the time, not wearing handmade ones, which materials are going to be best blah blah blah, to take days off, and how wearing one too much is likely to cause complications if you are intending to have top surgery. WAKE UP AND SMELL THE COFFEE TRANS PEOPLE!","hate","animosity","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl34347"
+"27057","acl34349",27057,"Why are these animals ugly? Everything about them is. Their apeareance, behaviour and of course their inner chimp. These creatures are evil and sent by the devil himself, which is why they live in the deep jungle.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34330"
+"27058","acl3435",27058,"why are fat people so ugly?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"27059","acl34350",27059,"I'm sure he had better mugshots he could've used. Bye burner hoar!","hate","derogation","bla, wom","original","train",4,"CAgNlUizNm","4a","acl34369"
+"27060","acl34351",27060,"Do we give anorexic children diet tablets and gastric bands? If not, why not?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34352"
+"27061","acl34352",27061,"Do we give black children diet tablets and gastric bands? If not, why not? We all know they need it","hate","animosity","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl34351"
+"27062","acl34353",27062,"Imagine being the kind of person who is furious that they cannot examine a rape victim who has literally just had the worst experience of their life, and I speak from experience here honestly it's shocking. Do they not realise how completely ridiculous they sound? The entitlement to think their delusions comes before a rape victim. Wow.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34354"
+"27063","acl34354",27063,"Imagine being the kind of person who is furious that we do not consider a refugee (who has literally just had the ""worst"" experience of their life according to them) to be a victim. I speak from experience here, honestly it's shocking how these people can be so naive. Do they not realise how completely ridiculous they sound? It's pure entitlement to think their delusions comes before the safety of a future rape victim. Wow.","hate","derogation","ref","perturbation","train",4,"eLGzdD8Tvb","4b","acl34353"
+"27064","acl34355",27064,"A lot of them who tweeted their outrage really are just howling in their own echo chamber or have even left twitter altogether ( hopefully for good this time Rhiannon)","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34356"
+"27065","acl34356",27065,"A lot of them who tweeted their outrage really are just howling in their own chaotic lgbt echo chamber or have even left twitter altogether ( hopefully for good this time Rhiannon)","hate","animosity","trans, gay.wom, gay.man, bis","perturbation","train",4,"eLGzdD8Tvb","4b","acl34355"
+"27066","acl34357",27066,"Yeah, and if it’s not a health issue, why is the NHS being dragged into it?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34358"
+"27067","acl34358",27067,"Yeah and transgenderism is a mental health issue, why isn't the NHS being dragged into it?","hate","derogation","trans","perturbation","train",4,"E3dsmnSPob","4b","acl34357"
+"27068","acl34359",27068,"what's scarier is the fact that this dreadful immigrant case isn't being covered by media outside the uk","hate","animosity","immig","perturbation","train",4,"GNZuCtwed3","4b","acl40247"
+"27069","acl3436",27069,"the thought of a world free of muslims makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27070","acl34360",27070,"The ITV woman's hour coverage of puberty blockers interviewed two parents, one who was happy with the decision and another who was very worried. Both had children who had been referred to GIDS.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39482"
+"27071","acl34361",27071,"Top parenting, and actually illegal I think.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34362"
+"27072","acl34362",27072,"Top pressurised Asian parenting, and actually child neglect I think.","hate","animosity","asi","perturbation","train",4,"cYKSVBW4HD","4b","acl34361"
+"27073","acl34363",27073,"That poor child.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34364"
+"27074","acl34364",27074,"That poor child, fucking council house losers","hate","derogation","wc","perturbation","train",4,"QiOKkCi7F8","4b","acl34363"
+"27075","acl34365",27075,"This thread shows all of the problems caused by blockers","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34366"
+"27076","acl34366",27076,"This thread shows all of the problems caused by homos","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl34365"
+"27077","acl34367",27077,"This is a fairly silly story basis. It literally states in the article that it takes most patients 30 years to receive a diagnosis for endo - that in itself is absolutely mental.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34368"
+"27078","acl34368",27078,"This is a fairly silly story basis. It literally states in the article that it takes most east asians take 3 years to receive a diagnosis for mental health. - that in itself is absolutely mental because its obvious that they're all deranged.","hate","derogation","dis, asi.east","perturbation","train",4,"GNZuCtwed3","4b","acl34367"
+"27079","acl34369",27079,"I'm sure he had better mugshots he could've used. Bye!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34350"
+"27080","acl3437",27080,"the thought of a world free of jews makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27081","acl34370",27081,"The world has gone crazy. Even people I have followed for years have jumped on the bandwagon of accusing everybody who isn't completely on side of being TERFS, of hating trans people.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34371"
+"27082","acl34371",27082,"The world has gone crazy. Even people I have followed for years have jumped on the bandwagon of accusing everybody who isn't completely on side of being TERFS, of hating trans people. Well it's right I am a TERF and proud !","hate","derogation","trans","perturbation","train",4,"vDe7GN0NrL","4b","acl34370"
+"27083","acl34372",27083,"Anyway, there are many well informed individuals here making their point much better than me but it blows my mind how nasty they can get when you don't completely bend to their will","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34373"
+"27084","acl34373",27084,"Anyway, there are many well informed individuals here making their point much better than me but it blows my mind how nasty women can get when you don't completely bend to their will","hate","derogation","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl34372"
+"27085","acl34374",27085,"i hope JK Rowling is having a good day","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34375"
+"27086","acl34375",27086,"i hope JK Rowling is having a good day, trans hatingJ3w","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl34374"
+"27087","acl34376",27087,"Well the 10 years part I actually believe, I've had horrible periods since my teens = light headed, bloated tummy, staying home from school, hard to stand up, etc.. and it's only now mid twenties after seeing a new doctor and explaining to her that I kept vomiting and staying in the shower spraying hot water on myself in complete agony for hours (3-5?), and that I was having a bloated stomach even outside of my period, not being able to clean myself, that she then thought I had endo and reccomended several tests including an endo specialist to verify it.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34377"
+"27088","acl34377",27088,"Well the 10 years part I actually believe, I've had horrible periods since my teens = light headed, bloated tummy, staying home from school, hard to stand up, etc.. and it's only now mid twenties after seeing a new doctor and explaining to her that I kept vomiting and staying in the shower spraying hot water on myself in complete agony for hours (3-5?), and that I was having a bloated stomach even outside of my period, not being able to clean myself, that she then thought I had endo and reccomended several tests including an endo specialist to verify it. And to think my gynaecologist didn't catch it, all jewish doctors are useless.","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl34376"
+"27089","acl34378",27089,"I found out my endo diagnosis through pure luck, until then I was being fed superdrug painkillers that had no effect on me and being told to suck it up, while I dreamed about tearing out my uterus and ovaries because = absolute hell.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34379"
+"27090","acl34379",27090,"lol She found out her 'endo diagnosis' through pure luck, until then she was being fed superdrug painkillers that had no effect on her and being told to suck it up, while she 'dreamed' about tearing out her uterus and ovaries because trans = absolute hell.","hate","derogation","trans","perturbation","train",4,"dqrONtdjbt","4b","acl34378"
+"27091","acl3438",27091,"the thought of a world free of women makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27092","acl34380",27092,"“Without access to puberty blockers I didnt think she will make it through the next few years.”","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34381"
+"27093","acl34381",27093,"Without access to puberty blockers I think she will come to her sense in the next few years.","hate","animosity","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl34380"
+"27094","acl34382",27094,"""She"" is fraught with anxiety about ""her"" voice breaking, hair starting to grow on ""her"" face and body, ""her"" adams apple protruding and her body betraying her! Because ""she"" is really a man","hate","derogation","trans","perturbation","train",4,"IBsVsBliwX","4b","acl39967"
+"27095","acl34383",27095,"Every part of his life is about being transgender, or has been since the age of three according to the mother.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34384"
+"27096","acl34384",27096,"Every part of his life is about being a trannie, or has been since the age of three according to the mother.","hate","derogation","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl34383"
+"27097","acl34385",27097,"I h8 blacks just as much as the next guy but god damn it if afros ain't cool as shit","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl34403"
+"27098","acl34386",27098,"It’s horrific. children don’t come up with this shit on their own.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34387"
+"27099","acl34387",27099,"It's horrific. children don't come up with this shit on their own. It must be the plebeian parents","hate","derogation","wc","perturbation","train",4,"GNZuCtwed3","4b","acl34386"
+"27100","acl34388",27100,"It sounds like this mum wanted a daughter from the start and is doing some mega projecting and giving this kid the fear about growing up. It’s really creepy and sad. If things really are as the mother says, then this child hasn’t had a childhood at all.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34389"
+"27101","acl34389",27101,"It sounds like this ch!nki mum wanted a daughter from the start and is doing some mega projecting and giving this kid the fear about growing up. It's really creepy and sad. If things really are as the mother says, then this child hasn't had a childhood at all. Chinese mums really need to know they aint in china anymore and will be held accountable for child abuse.","hate","derogation","asi.chin","perturbation","train",4,"cYKSVBW4HD","4b","acl34388"
+"27102","acl3439",27102,"the thought of a world free of arabs makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27103","acl34390",27103,"I read an article on the BBC last week about a guy who was trying to get an apology from the University of Birmingham for electro-shock therapy he had years ago, basically gay conversion therapy","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34391"
+"27104","acl34391",27104,"I read an article on the BBC last week about a guy who was trying to get an apology from the University of Birmingham for electro-shock therapy he had years ago, basically gay conversion therapy, guess what he didn't get one...because its a legal method to get the gay out!","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl34390"
+"27105","acl34392",27105,"In the article, he said he was told way back then it would be better to be transgender than to be gay. The Tavistock said similar a year or two ago, about parents bringing their kids in saying they don't want a gay child.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34393"
+"27106","acl34393",27106,"In the article, he said he was told way back then it would be better to be transgender than to be gay. The Tavistock said similar a year or two ago, about parents bringing their kids in saying they don't want a gay child. If you ask me, any transgender or gay child is a punishment for bad parenting","hate","derogation","trans, gay","perturbation","train",4,"iO6vHa6qJm","4b","acl34392"
+"27107","acl34394",27107,"I deeply apologise to anyone who is offended by me being a white woman with a womb who suffers from endo","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34395"
+"27108","acl34395",27108,"I deeply apologise to anyone who is offended by me being a white woman with a natural womb. Transgender women aren't women, get over it","hate","derogation","trans","perturbation","train",4,"iO6vHa6qJm","4b","acl34394"
+"27109","acl34396",27109,"I despise all this 'anti-woke' narrative, at the same time, insisting that I am recognised as a woman is not woke, it's just my birthr","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34397"
+"27110","acl34397",27110,"I despise all this 'anti-woke' narrative, at the same time, insisting that I am recognised as a woman is not woke, it's just my birthright, and I don't want it taken away and given to trans","hate","animosity","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl34396"
+"27111","acl34398",27111,"Don't apologise! As a white women with endo I can see that women of colour are definitely facing a double jeopardy in being already female as well as not white when trying to get a medical answer, whilst simultaneously knowing that women of any race are disadvantaged when it comes to women's health","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40367"
+"27112","acl34399",27112,"It's really clear that this is just another topic they want to divide and conquer about, when actually women should be sticking together on this to speed up diagnoses for all women and to especially recognise when certain groups (e.g. women of colour) are going to have to push way harder to get the answers.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34400"
+"27113","acl344",27113,"Women are hags","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"27114","acl3440",27114,"the thought of a world free of burka women makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27115","acl34400",27115,"It's really clear that this is just another topic they want to divide and conquer about, when actually men should be sticking together on this to speed up diagnoses for all women and to especially recognise when certain groups (e.g. women) are going to naturally have to push way harder to get the answers due to a genetically inferior IQ.","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl34399"
+"27116","acl34401",27116,"For me, 'privilege' works on a scale - clearly, women of colour are now becoming far more privileged than white women ever were. You can't deny that. And white women are discriminated even more so in medicine. To suggest otherwise is nonsense.","hate","derogation","non.white.wom","perturbation","train",4,"LqLKTtrOmx","4b","acl40906"
+"27117","acl34402",27117,"Respectfully, I have to disagree. I know you're message is well meaning but I absolutely hate when people divide women of colour and white women. I'm tired of the narrative of the poor woc oppressed and treated as inferior compared to white women, how would that happen in this setting? It's a north american publication you're telling me an overwhelming number of doctors are racist? I'm also tired of the narrative in contexts where it's not needed, makes us look like we've got a chip on our shoulder/jealous towards white women, when I don't harbour resentment towards any group.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39485"
+"27118","acl34403",27118,"I h8 just as much as the next guy those people who say that the god damn afros ain't cool as shit","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34385"
+"27119","acl34404",27119,"I think the simp phenomenon would mostly disappear. There will always be pathetic, gullible men who get taken in by unscrupulous women, but it will be far more difficult for thots to do that without their precious camouflage- oh wait sorry, I mean ""makeup""","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl34417"
+"27120","acl34405",27120,"Whenever articles include them as a scapegoat like this I see it as - let me include more oppressed groups so I can make this article as virtue signaling as possible.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34406"
+"27121","acl34406",27121,"Whenever articles include jews as a scapegoat like this I see it as - let me include more oppressed groups so I can make this article as virtue signaling as possible.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl34405"
+"27122","acl34407",27122,"It's divisive and strange, one of the reasons I can't take them seriously - always looking for a token oppressed group to latch on to.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34408"
+"27123","acl34408",27123,"It's divisive and strange, one of the reasons I can't take them seriously - always looking for a token oppressed group to latch on to just like the blacks.","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl34407"
+"27124","acl34409",27124,"The reason why endometriosis takes a long time to be diagnosed is because no one takes simple ""period pain"" seriously. It's nothing to do with race. But the author wanted to shoe-horn in race to give the ridiculous bleating of the FTMs and enbies in her article more validity.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39486"
+"27125","acl3441",27125,"why are disabled people so stupid?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27126","acl34410",27126,"THANK YOU! and yes been thinking of getting a hot water bottle for the odd time bc doesn't work but, in uni and broke lol","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34411"
+"27127","acl34411",27127,"THANK YOU! and yes been thinking of getting a hot water bottle to give to chavs for the odd time bc doesn't work but, in general and its funny lol","hate","derogation","wc","perturbation","train",4,"vDe7GN0NrL","4b","acl34410"
+"27128","acl34412",27128,"Do you not have a hot water bottle? pls let me know if you need 1 as I'd be happy to help out a fellow endo sufferer","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34413"
+"27129","acl34413",27129,"Do you not have a hot polish handyman to bottle? pls let me know if you need 1 as I'd be happy to help out a fellow english sufferer","hate","derogation","eastern.europe","perturbation","train",4,"TbUBpfn6iP","4b","acl34412"
+"27130","acl34414",27130,"to contribute to that wild article - I am a white middle class professional woman and it took ELEVEN years for anyone to take my debilitating periods seriously, which included multiple nights crying in A&E and a few ambulance trips","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34415"
+"27131","acl34415",27131,"Women are such moaners look at this - I am a white middle class professional woman and it took ELEVEN years for anyone to take my debilitating periods seriously, which included multiple nights crying in A&E and a few ambulance trips","hate","derogation","wom","perturbation","train",4,"GNZuCtwed3","4b","acl34414"
+"27132","acl34416",27132,"thank you, with bc i'm mostly ok, though occasionally my stomach gets bloated af and it's painful but there's not much pain down there - not sure if the bottle would be worth it for stomach pain, I wouldn't wish this pain upon anyone! (apart from pakis ahahaha)","hate","derogation","asi.south","perturbation","train",4,"QiOKkCi7F8","4b","acl40818"
+"27133","acl34417",27133,"I think the simp phenomenon would mostly disappear. There will always be pathetic, gullible men who get pissed off by 'unscrupulous women', but it will be far more difficult for incels to do that without their precious camouflage- oh wait sorry, I mean ""reddit""","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34404"
+"27134","acl34418",27134,"Saying a person with a mental illness is mentally ill is ok. And if that mentally ill person then continuously does things that infringe on your own and their rights and freedoms, then advising they get help is also ok.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34246"
+"27135","acl34419",27135,"Popular opinion: there are only 2 genders and gender is a synonym of sex.","hate","animosity","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl34593"
+"27136","acl3442",27136,"the thought of a world free of gays makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27137","acl34420",27137,"why are women such hoars now its s1ck. i know everyone says girls have always been hoars but i went to a small school in like 2000s and 2010s and girls were 100% less promiscuous in every way","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl34440"
+"27138","acl34421",27138,"I have a small (cushion sized) electric blanket that I lie on during periods. Works a treat. Also an endo sufferer. In 2014 I had surgery to clear up my endo and it helped so much. And having two babies has helped calm it all down too. The pain used to be unreal","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34422"
+"27139","acl34422",27139,"Women are SUCH moaners look at this - I have a small (cushion sized) electric blanket that I lie on during periods. Works a treat. Also an endo sufferer. In 2014 I had surgery to clear up my endo and it helped so much. And having two babies has helped calm it all down too. The pain used to be unreal""","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl34421"
+"27140","acl34423",27140,"Cervical cancer is something that kills women but language has to be adjusted because of the ""feelings"" of men. I'm so angry and upset and frustrated","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34424"
+"27141","acl34424",27141,"Prostate cancer is something that kills men but language has to be adjusted because of the ""feelings"" of women. I'm so angry and upset and frustrated","hate","animosity","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl34423"
+"27142","acl34425",27142,"It's absolutely ridiculious, trying so hard to be conclusive when are not they dont have pure intentions and just want us all to be gay.","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl40820"
+"27143","acl34426",27143,"Not to mention that Ireland faced a huge cervical screening scandal recently","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34427"
+"27144","acl34427",27144,"Not to mention that Ireland faced a huge cervical screening scandal recently. Of course none of the blame was placed on women.","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34426"
+"27145","acl34428",27145,"Also here's a handy guide to describe women who refer to themselves as cis women","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34429"
+"27146","acl34429",27146,"Also here's a handy guide to describe confused women who refer to themselves as trans men!","hate","derogation","trans","perturbation","train",4,"iO6vHa6qJm","4b","acl34428"
+"27147","acl3443",27147,"the thought of a world free of lesbians makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27148","acl34430",27148,"Metro showing how you’re supposed to respond to complaints about harmless adverts:","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34431"
+"27149","acl34431",27149,"Let me show you how you're supposed to respond to complaints made by ""harmless"" refugees: fuck you","hate","derogation","ref","perturbation","train",4,"eLGzdD8Tvb","4b","acl34430"
+"27150","acl34432",27150,"What, they've seriously mentioned trans men but not women??","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34433"
+"27151","acl34433",27151,"What, they've seriously mentioned trans people but not real men and women??","hate","animosity","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl34432"
+"27152","acl34434",27152,"If you're gonna mention trans men to be more inclusive, that's good. But don't substitute people for women!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34435"
+"27153","acl34435",27153,"If you're gonna mention trans men to be more inclusive, that's fine. But don't substitute them in for real women!","hate","animosity","trans","perturbation","train",4,"E3dsmnSPob","4b","acl34434"
+"27154","acl34436",27154,"They are underestimating how lacking/nonexistent sexual education is and that a lot of women and girls don’t understand their body parts; don’t know what a cervix is and if they have one.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34437"
+"27155","acl34437",27155,"They are underestimating how lacking/nonexistent sexual education is and that a lot of women and girls don't understand their body parts; don't know what a cervix is and if they have one. And thus don't know how to sell their bodies very well which hurts their life prospects.","hate","animosity","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl34436"
+"27156","acl34438",27156,"Absolutely!!! Sex education in Ireland is particularly bad","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34439"
+"27157","acl34439",27157,"Absolutely!!! Race mixing in Ireland is particularly bad","hate","animosity","mixed.race","perturbation","train",4,"TrRF46JWfP","4b","acl34438"
+"27158","acl3444",27158,"the thought of a world free of transgenders makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27159","acl34440",27159,"why are men such pricks now its s1ck. i know everyone says boys have always been bastards but i went to a small school in like 2000s and 2010s and boys were 100% less mean in every way","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl34420"
+"27160","acl34441",27160,"omg its like every fucking girl. like belle delphine could be rich as FUCK just taking half nude cosplay photos she already was rich as fuck and able to live in a mansion and fly all over the world and do whatever she wanted but she just went full slut mode taking cum and nudes and showing her pussy and dildos every day. i witness so many youtubers and celebrity singer girls and shit and theyre already rich but they show off their tits like whores","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl34458"
+"27161","acl34442",27161,"You've nailed it. In terms of cervical cancer, there should be no messing around or vagueness. It makes me cross!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34443"
+"27162","acl34443",27162,"You've nailed it. For the sake of not having cervical cancer, there should be no sleeping around or whoreness. It makes me so angry!","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34442"
+"27163","acl34444",27163,"Sorry, made an absolute balls of this post and can't change it","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39487"
+"27164","acl34445",27164,"Love that! That's as it should be, it's up to mens rugby to be more inclusive to trans women, it's not up to womens sports to be more inclusive in this instance.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34446"
+"27165","acl34446",27165,"Love that! That's as it should be, it's not up to mens rugby to be more inclusive to trans women, it's up to womens sports to be more inclusive in this instance. Or just don't let them play","hate","derogation","trans","perturbation","train",4,"E3dsmnSPob","4b","acl34445"
+"27166","acl34447",27166,"I think a lot of people forget that. Yes it's called blood but it's more than that. Only those who are biologically women can have periods because they have uterine walls that need shedding. So, quite simply, trans women are not real women.","hate","derogation","trans","perturbation","train",4,"CAgNlUizNm","4b","acl41008"
+"27167","acl34448",27167,"I'm 45 and queer was definitely a slur back in the day. I would never use it","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34449"
+"27168","acl34449",27168,"I'm 45 and queer was definitely a slur back in the day. That is why I always use that word","hate","derogation","gendermin, gay","perturbation","train",4,"eLGzdD8Tvb","4b","acl34448"
+"27169","acl3445",27169,"the thought of a world free of trans idiots makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27170","acl34450",27170,"Also, what kind of #tra #transactivist is Owen Jones when he doesn't have any pronouns in his bio? And on #internationalpronounsday ? It's aCtUaL vIoLeNcE","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34451"
+"27171","acl34451",27171,"Also, what kind of #tra #transactivist is Owen Jones when he doesn't have any pronouns in his bio? And on #internationalpronounsday ? It's aCtUaL vIoLeNcE. Maybe he knows its all a fraud.","hate","derogation","trans, gendermin","perturbation","train",4,"GNZuCtwed3","4b","acl34450"
+"27172","acl34452",27172,"I hope it eats itself before my children are old enough to be influenced by it!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34453"
+"27173","acl34453",27173,"I hope homosexuality eats itself before my children are old enough to be influenced by it!","hate","animosity","gay","perturbation","train",4,"IBsVsBliwX","4b","acl34452"
+"27174","acl34454",27174,"Ugh it’s annoying when people say things on other threads as if they assume everyone also thinks JK is awful etc. Then if you respond you’re the terf","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34455"
+"27175","acl34455",27175,"Ugh it's annoying when people say things on other threads as if they assume everyone also thinks JK is awful etc. Then if you respond I'm the terf because I think JK is right.","hate","animosity","trans","perturbation","train",4,"GNZuCtwed3","4b","acl34454"
+"27176","acl34456",27176,"This is why we need to push back on this nonsense at every chance. The amount of likes I got is uplifting, it proves to me that a lot of people feel the same as us","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34457"
+"27177","acl34457",27177,"This is why we need to push back on this non-binary nonsense at every chance. The amount of likes I got is uplifting, it proves to me that a lot of people feel the same as us","hate","derogation","gendermin","perturbation","train",4,"LqLKTtrOmx","4b","acl34456"
+"27178","acl34458",27178,"omg its like every fucking cam girl. like belle delphine could be rich as FUCK just taking half nude cosplay photos she already was rich as fuck and able to live in a mansion and fly all over the world and do whatever she wanted but she just went full slut mode taking cum and nudes and showing her pussy and dildos every day. i witness so many youtubers and celebrity singer girls and shit and theyre already rich but they show off their tits, fair play","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34441"
+"27179","acl34459",27179,"i click on any girls instagram i see the comments or whatever and they always have slutty pics. i see girls bending over half naked with their asses showing, braless pictures, youtube sluts with their tits hanging out in every video, twitch streamers showing their ass and tits all day, girls on social media just posting slutty statuses and pictures all day long, it is what theyre like now","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl34473"
+"27180","acl3446",27180,"the thought of a world free of polish tards makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27181","acl34460",27181,"i actually think the world has gone mad","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34461"
+"27182","acl34461",27182,"i actually think this world of transgenders has gone mad","hate","derogation","trans","perturbation","train",4,"TbUBpfn6iP","4b","acl34460"
+"27183","acl34462",27183,"It's utterly, completely ridiculous. It still blows my mind that women can get called names for objecting to the erasure of the word woman.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34463"
+"27184","acl34463",27184,"It's utterly, completely ridiculous. It still blows my mind that women can get called names for objecting to the erasure of what it means to be a woman by these trans imposters.","hate","derogation","trans","perturbation","train",4,"CAgNlUizNm","4b","acl34462"
+"27185","acl34464",27185,"again, why do they rage against that rather then concentrate their ire against violent men who make life so dangerous?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl41023"
+"27186","acl34465",27186,"Honestly, the damage from this messed up ideology will take a long time to undo","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34466"
+"27187","acl34466",27187,"Honestly, the damage from this messed up Mohammed ideology will take a long time to undo","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl34465"
+"27188","acl34467",27188,"When it comes to the gender of a child I think you need to accept what biology tells you. It's so reductive to imply a boy can be a girl and a girl a boy...","hate","animosity","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl40919"
+"27189","acl34468",27189,"It's just the gender/sex debate is one social-political that I am conscious I seem to go against the popular grain. No hard feelings against anyone here at all","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34469"
+"27190","acl34469",27190,"It's just the gender/sex debate is one social-political that I am conscious I seem to go against the popular grain of supporting them. No hard feelings against anyone in this thread though","hate","animosity","gendermin, gay","perturbation","train",4,"E3dsmnSPob","4b","acl34468"
+"27191","acl3447",27191,"why are disabled people so dumb?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27192","acl34470",27192,"and her views on gender are so regressive to begin with","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40180"
+"27193","acl34471",27193,"she waas like ""so, we are going to watch a disney film now so going end the vlog"" boom, in comes the gender reveal balloon followed by nana! Gutted however cause I was looking forward to seeing sophs face if/when the pink confetti came out. Damn you Boris.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34472"
+"27194","acl34472",27194,"she waas like ""so, we are going to watch a trannie film now so going end the vlog"" boom, in comes the gender reveal balloon followed by nana! Gutted however cause I was looking forward to seeing sophs face if/when the pink confetti came out. Damn you Boris.","hate","derogation","trans","perturbation","train",4,"dqrONtdjbt","4b","acl34471"
+"27195","acl34473",27195,"i click on any girls instagram i see the comments or whatever and they always have sick pics. i see girls travelling half the world with their friends showing their adventures, impressive pictures, youtube icons with their families hanging out in every video, twitch streamers showing their houses and wardrobes all day, girls on social media just posting thoughtful statuses and pictures all day long, it is what theyre like now? Love it.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34459"
+"27196","acl34474",27196,"I know man its bec the only thing men value about women are their faces and bodies, and the kind of women men pay the most attention to are whores. Even when men are in a relationship with a good girl, their minds are always on whores. And so girls are realizing this at a younger and younger age. Men dont value women for their personalities or life skills, the only thing men care about is tits and ass. Therefore women dont have to develop their character when men will still simp for them based on their pussy anyway. You cant blame them for it","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl34488"
+"27197","acl34475",27197,"Annie could actually say more but revealed his gender and said nothing more, then norman bates-goodman kept winding Annie up by blaming her for everything that went wrong with her little devious plan. Women always have their devious plans","hate","derogation","wom","perturbation","train",4,"CAgNlUizNm","4b","acl40862"
+"27198","acl34476",27198,"Exactly I think Annie had her fun with revealing the gender and she's left it there. She could have carried on but hasn't bothered to - i bet Laurun is fuming at her because she still continues with her digs about them both as well as the surname. Well sucks to be you Laurun, not pushing your tranny agenda today","hate","derogation","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl40988"
+"27199","acl34477",27199,"Her sister is doing her gender reveal on christmas eve there is no way they'll bring it up then","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34478"
+"27200","acl34478",27200,"Her sister is doing her gender reveal on christmas eve there is no way they'll bring it up then. Hope it comes out ""gender neutral"" hahaha","hate","animosity","gendermin","perturbation","train",4,"GNZuCtwed3","4b","acl34477"
+"27201","acl34479",27201,"OH! I was very confused for a while. I think the poster's all female cast put me off.","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl40580"
+"27202","acl3448",27202,"the thought of a world free of gay tards makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27203","acl34480",27203,"i think they meant that the original poster should be including trans/gender-fluid people? Idk","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34481"
+"27204","acl34481",27204,"i think they meant that the original poster should be including trannys/gender-fluid weirdos? Idk","hate","derogation","trans","perturbation","train",4,"E3dsmnSPob","4b","acl34480"
+"27205","acl34482",27205,"That would be more up her street for a baby announcement. I just can’t see her carelessly leaving a gender reveal balloon around. She’ll want the shock factor, up that engagement and have millions of her sheep messaging her what a wonderful family she has","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39488"
+"27206","acl34483",27206,"she's probably listening to her old playlists as she was up early that day. and she'd have told Ronnies nearly 4 million Aunts and Uncles by now, so they can get ready to get her free stuff, and tattle doesn't give a fuck, she's a dick","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34484"
+"27207","acl34484",27207,"this slut is probably listening to her old playlists as she was up early that day. and she'd have told Ronnies nearly 4 million Aunts and Uncles by now, so they can get ready to get her free stuff, and tattle doesn't give a fuck, she's a dick","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl34483"
+"27208","acl34485",27208,"100%. I’ve been saying from the beginning, if she’s already listening to hypnobirthing tracks then I’m assuming she’s further on and possibly already knows the gender.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40378"
+"27209","acl34486",27209,"Question - is she actually taking the fucking piss with this? What in the fuck does she mean by ""deep""? What deep and meaningful message can ole Sal derive from the rampant gender based sexual violence taking place in SA & the lengths people have to go to to protect themselves?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39489"
+"27210","acl34487",27210,"That's fact. Doesn't matter that they were assigned female at birth, the right thing to do would be use whatever gender language you think suits when talking about issues, when you can. They can't expect us not to assume gender when some trannies look so weird","hate","derogation","trans","perturbation","train",4,"QiOKkCi7F8","4b","acl39980"
+"27211","acl34488",27211,"I know man its bec the only thing men value about women are their faces and bodies, and the kind of women men pay the most attention to are those who are pretty. Even when men are in a relationship with a good girl, their minds are always on the sexy ones. And so girls are realizing this at a younger and younger age. Men dont value women for their personalities or life skills, the only thing men care about is tits and ass. Therefore women dont have to develop their character when men will still simp for them based on their pussy anyway. Men are pigs.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl34474"
+"27212","acl34489",27212,"Trans women ARE women, trans men ARE men.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34490"
+"27213","acl3449",27213,"the thought of a world free of curry munchers makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27214","acl34490",27214,"Trans women are women, trans men are men. And I'm a dolphin who likes to swim the ocean.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl34489"
+"27215","acl34491",27215,"Endo can affect trans (and nonbinary) men. That's fact.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34492"
+"27216","acl34492",27216,"Endo cannot affect trans (and nonbinary) men. That's fact.","hate","derogation","trans","perturbation","train",4,"dqrONtdjbt","4b","acl34491"
+"27217","acl34493",27217,"Imagine being a trans man going through endo related symptoms in a system that wouldn't take you seriously, they don't even take cis women seriously a lot of the time. Plus, not all trans men have gone through the process of HRT yet.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34494"
+"27218","acl34494",27218,"Imagine being a 'trans man' claiming you're going through endo related symptoms in a system that wouldn't take you seriously. come on, they don't even take cis women seriously a lot of the time. Plus, not all 'trans men' have even gone through the process of HRT yet #gross","hate","derogation","trans","perturbation","train",4,"TbUBpfn6iP","4b","acl34493"
+"27219","acl34495",27219,"I think researching endo in these situations is something that will have to come separately to the research on cis female bodies. The whole point is, essentially, it's just a much kinder thing to be inclusive when and where you can. Trans men can still have periods, and trans women can be affected by prostate issues.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34496"
+"27220","acl34496",27220,"I think researching endo in these situations is something that will have to come separately to the research on cis female bodies. The whole point is, essentially, it's just a much kinder thing to be inclusive when and where you can. Trans men can still have periods, and trans women can be affected by prostate issues. Just let them live in their delusions.","hate","animosity","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl34495"
+"27221","acl34497",27221,"No idea how her surgeon could know that her ""fertility looked okay"" from a tiny camera floating around in her abdomen, unless by ""okay"" they meant ""your uterus is still there and I did not remove it during the procedure"".","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34498"
+"27222","acl34498",27222,"No idea how her surgeon could know that the bitch's ""fertility looked okay"" from a tiny camera floating around in her abdomen, unless by ""okay"" they meant ""your uterus is still there and I did not remove it during the procedure"".","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl34497"
+"27223","acl34499",27223,"yes! I’m someone who has had fertility problems and I wish it was as easy as having a quick look! Several tests, checks etc you get told what’s happening","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34500"
+"27224","acl345",27224,"Women are such a cock tease","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"27225","acl3450",27225,"why do chinese people always smell of soy sauce?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27226","acl34500",27226,"yes! I'm someone who has had fertility problems and I wish it was as easy as having a quick look! Several tests, checks etc I wish I was a lesbian so I won't have to worry about this.","hate","animosity","gay.wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34499"
+"27227","acl34501",27227,"She’s thick as to believe hers is ‘ok’ cause let’s be honest 9/10 people with endo have years of struggle for their babies. Do they happen, yep! But a lot of heartache and years before they do!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34502"
+"27228","acl34502",27228,"She's thick as to believe hers is 'ok' cause let's be honest 9/10 people with endo have years of struggle for their babies. Do they happen, yep! But a lot of heartache and years before they do! This whore has no idea at all.","hate","animosity","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl34501"
+"27229","acl34503",27229,"Can we get back to talking about that annoying gay and her munchies please","hate","derogation","gay.wom","perturbation","train",4,"E3dsmnSPob","4b","acl40380"
+"27230","acl34504",27230,"I typed in endometriosis in Etsy and there’s a few products came up like stickers and badges. I wonder if Gabbie will start to design/sell stuff about it","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34505"
+"27231","acl34505",27231,"I typed in white power in Etsy and there's a few products came up like stickers and badges. I wonder if Gabbie will start to design/sell stuff about it. We need to show that we will fight for white rights","hate","animosity","non.white","perturbation","train",4,"CAgNlUizNm","4b","acl34504"
+"27232","acl34506",27232,"The black family was speaking ebonics (which is improper English). The little Asian boy, maybe about the age of ten, walks up to the black woman and says, ""if your people have been in this country for like 200 years why can't you speak English? My family has only been here for 25"". I laughed for such a long time","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl34524"
+"27233","acl34507",27233,"I could be nitpicking here/I am definitely biased so others might not mind, but I'm quite irritated by the infantile language she's using about the whole thing to be honest - 'fairy', 'trump', 'period poo' or whatever. It's like she's making a mockery of the whole thing. Given it takes adults an average of 7 years to get diagnosed, we don't need the language dumbed down.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34508"
+"27234","acl34508",27234,"I could be nitpicking here but I'm quite irritated by the infantile language she's using about the whole thing to be honest - 'fairy', 'trump', 'period poo' or whatever. Given it takes adults an average of 7 years to get diagnosed, we don't need the language dumbed down. We need to know the true disgusting transformation these people spend thousands to do.","hate","animosity","trans","perturbation","train",4,"cYKSVBW4HD","4b","acl34507"
+"27235","acl34509",27235,"She’s really pissing me off with her stories now. Maybe the reason they didn’t take you “seriously” in A&E is because you have a CHRONIC condition and it is a place for EMERGENCIES?? It’s not a bloody clinic. It’s not for getting the diagnosis right every time. It’s for ruling out/treating serious acute illnesses.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39490"
+"27236","acl3451",27236,"the thought of a world free of barren women makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27237","acl34510",27237,"i actually think the argument here is why she didn't go private years ago instead of wasting NHS resources at a time when we're more stretched than ever?
+I really hope no one's actually listening to this ignorant bs she's spouting. Self-entitled bitch, fucking women","hate","animosity","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl40101"
+"27238","acl34511",27238,"The fact that she’s slating her A&E treatment, during this pandemic, is INFURIATING. Newsflash you selfish cunt, A&E is for ACCIDENTS AND EMERGENCY. You know, life threatening emergencies. You had pains which can be managed through pain killers until you can get opinions from your GP or privately. Stop wasting the NHS already pressured resources for your precious endo pain you utter cunt.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34512"
+"27239","acl34512",27239,"The fact that she's slating her A&E treatment, during this pandemic, is INFURIATING. Newsflash you selfish whore cunt, A&E is for ACCIDENTS AND EMERGENCY. You know, life threatening emergencies. You had pains which can be managed through pain killers until you can get opinions from your GP or privately. Stop wasting the NHS already pressured resources for your precious endo pain you utter hoe bitch cunt.","hate","derogation","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl34511"
+"27240","acl34513",27240,"This is actually such a disgusting comment, especially during a pandemic. Basically saying the A+E docs are only good if you have a visible injury. So so nasty.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34514"
+"27241","acl34514",27241,"This is actually such a disgusting comment, especially during a pandemic. Basically saying the A+E docs are only good if you have a visible injury. So so nasty. Biggest problem is all the non-whites !","hate","derogation","non.white","perturbation","train",4,"E3dsmnSPob","4b","acl34513"
+"27242","acl34515",27242,"This is a girl who goes to the doctors for bloody paracetamol when she could easily just get it over the counter. She's just in a tizzy because people who have legit life threatening injuries took priority over her at the BLOODY EMERGENCY CENTRE.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34516"
+"27243","acl34516",27243,"This is a girl who goes to the doctors for bloody birth control when she could easily just get it over the counter. She's just in a tizzy because she can't stop sleeping around and people who have legit life threatening injuries took priority over her at the BLOODY EMERGENCY CENTRE. #saveourgirls","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34515"
+"27244","acl34517",27244,"If she’d actually spent 27 hours in A&E like she’s claimed, she would have recognised how a large proportion of attendances are patients who are suicidal and/or suffering from severe mental illness. Is that just treating a broken bone or visible injury Gabs?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34518"
+"27245","acl34518",27245,"If she'd actually spent 27 hours in A&E like shes claimed, she would have recognised how a large proportion of attendances are patients who are suicidal and/or suffering from severe mental illness who should be left to die. Is that just treating a broken bone or visible injury Gabs?","hate","derogation","dis","perturbation","train",4,"GNZuCtwed3","4b","acl34517"
+"27246","acl34519",27246,"I do really believe that Gabby maybe does have endo, since it does all add up for the most part. But then this proves that back when she was all like 'my health is personal and very much ongoing and I won't be discussing it' that was literally just a ploy for attention as she's now admitted that it was the same issue and the same pain for all these months and the only thing that changed is that after her completely pointless A&E visits she decided to go private.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34520"
+"27247","acl3452",27247,"the thought of a world free of generation Z makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27248","acl34520",27248,"I do really believe that Gabby maybe does have endo, since it does all add up for the most part. But then this proves that back when she was all like 'my health is personal and very much ongoing and I won't be discussing it' that was literally just a ploy for attention like a lot of women do as she's now admitted that it was the same issue and the same pain for all these months and the only thing that changed is that after her completely pointless A&E visits she decided to go private.","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34519"
+"27249","acl34521",27249,"lmfao *COMPLETELY ABSOLUTELY UNEDITED* guise. So is this her fully admitting she edits her normal pics to hell and back? Or did she tell her constant BaSe LeVeL pain to leave for a couple of hours while she filmed sponsored content and pranced about trying on clothes and grinning at the camera?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34522"
+"27250","acl34522",27250,"lmfao *COMPLETELY ABSOLUTELY UNEDITED* guise. So is this cunt fully admitting she edits her normal pics to hell and back? Or did she tell her constant BaSe LeVeL pain to leave for a couple of hours while she filmed sponsored content and pranced about trying on clothes and grinning at the camera? DUmb bitch.","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl34521"
+"27251","acl34523",27251,"Unedited pic my ass. Wearing a washed out jumper vs a brightly coloured jumper for a start is a clever move babe. Such attention seeking. Very odd behaviour going on with women nowadays, and people expect that all is well with the world after this.","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl40501"
+"27252","acl34524",27252,"The black family was speaking really fast (which is something quite common for English speakers). The little Asian boy, maybe about the age of ten, walks up to the black woman and says, ""if I have been in this country for like 3 years now why can't I undertand you when you speak English? My family has only been here for 3 years but they speak super slowly!"". I laughed for such a long time cause I could relate to that","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34506"
+"27253","acl34525",27253,"Actually, its not that they lack the ability, and it isnt that they lack education in proper English. Modern day knee-grow people choose to express their ethnicity differences by speaking in the only language their ancestors knew and used, a poorly mimicked version of English. Today, they simply choose to continue using ""ebonics"". Why, is beyond me. Perhaps they do not hear what we do, an uneducated inferior language","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl34543"
+"27254","acl34526",27254,"I replied to her story and her response was “everyone has a right to go to A&E. it’s there to help”","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34527"
+"27255","acl34527",27255,"I replied to her story and her response was ''everyone has a right to go to A&E. it' there to help' typical smallminded bitch","hate","derogation","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl34526"
+"27256","acl34528",27256,"why slag it off when all your issues aren’t immediately resolved then? Like what the actual fuck kind of response is that??","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34529"
+"27257","acl34529",27257,"why slag it off when all your issues aren't immediately resolved then? Like what the actual fuck kind of response is that, heathen??","hate","derogation","notargetrecorded","perturbation","train",4,"GNZuCtwed3","4b","acl34528"
+"27258","acl3453",27258,"the thought of a world free of immigrants makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27259","acl34530",27259,"actually, people with mental health problems should be encouraged to go to A&E if they are feeling suicidal. They don’t have on call psychiatrists there for no reason. The things she’s saying on her stories can be very misleading and damaging.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34531"
+"27260","acl34531",27260,"actually, people with mental health problems should NOT be encouraged to go to A&E if they are feeling suicidal. They don't need to call psychiatrists there for no real reason. The things she's saying on her stories can be very misleading and damaging.","hate","animosity","dis","perturbation","train",4,"GNZuCtwed3","4b","acl34530"
+"27261","acl34532",27261,"Why would you go to A+E for suspected endo...? It's neither an accident or an emergency, I wish more women got it anyway. She's got the money so why didn't she go and see a gyno straight away instead of adding more pressure onto the NHS!?!","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl40655"
+"27262","acl34533",27262,"So shes saying she looks different in her face after 24 hours of having the op ?!?!?! Is that even possible?? OBV that first photo has a filter on it..","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34534"
+"27263","acl34534",27263,"So shes saying she looks different in her face after 24 hours of having the op ?!?!?! Is that even possible?? Yes im still calling her she. OBV that first photo has a filter on it..","hate","animosity","trans","perturbation","train",4,"E3dsmnSPob","4b","acl34533"
+"27264","acl34535",27264,"To be honest, I went to A&E when I had it but I wasn't aware of it and hadn't been told it was a possibility, they thought it was appendicitis and even prepped me for surgery until I said I was hungry and they were like ' Oh if you had Appendicitis you wouldn't be hungry so must be something else'","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34536"
+"27265","acl34536",27265,"To be honest, I went to A&E when I had so much pain, then to my shock my consultant was pimply, sm£lt of spices and was like, you have appendicitus, get ready for surgery! I said I was hungry and they were like 'oh if you had Appendicitius you wouldn't be hungry so it must be something else'","hate","animosity","asi.east, asi","perturbation","train",4,"cYKSVBW4HD","4b","acl34535"
+"27266","acl34537",27266,"i am extremely allergic to penicillin and got prescribed a sister antibiotic (which I know not to accept now!), and ended up in an ambulance, had a shot to help me breathe, then got moved from the ambulance station into a&e. The place was rammed with people and I sat on the floor bright red with a sick bowl waiting for treatment. It was embarrassing and horrible.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34538"
+"27267","acl34538",27267,"i am extremely allergic to penicillin and got prescribed a sister antibiotic (which I know not to accept now!), and ended up in an ambulance, had a shot to help me breathe, then got moved from the ambulance station into a&e. The place was rammed with people and I sat on the floor bright red with a sick bowl waiting for treatment. It was embarrassing and horrible. I felt like an asylum seeker and not in a good way.","hate","animosity","asylum","perturbation","train",4,"GNZuCtwed3","4b","acl34537"
+"27268","acl34539",27268,"I’m mainly a lurker but I have to say I as if her stories are in response to tattle all the time. Mentioning the hate which is why she didn’t mention her pain much and coming on to tell us her diagnosis STRAIGHT away not waiting until she’s recovered. W e i r d I think she’s on here more than me","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34540"
+"27269","acl3454",27269,"the thought of a world free of asylum seekers makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27270","acl34540",27270,"I'm mainly a lurker but I have to say I as if her stories are in response to tattle all the time. Mentioning the hate which is why she didn't mention her pain much and coming on to tell us her mental illness diagnosis of being transgender STRAIGHT away not waiting until she's recovered. W e i r d I think she's on here more than me","hate","derogation","trans","perturbation","train",4,"iO6vHa6qJm","4b","acl34539"
+"27271","acl34541",27271,"No way is she better the moment she gets out of an operation, no way is that “before” photo unedited, no way should she be giving advice to other women about endo and I don’t think she has endo. I just don’t believe it. If she hides her stories from her family she can say whatever she fucking wants with no one calling her out. So what’s to say she doesn’t do that?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34542"
+"27272","acl34542",27272,"No way is she a 'man' the moment she gets out of an operation, no way is that ''before' photo unedited, no way should she be giving advice to other women about transgenderism and I don't think she has any right to be called a He. I just don't believe it. If she hides her stories from her family she can say whatever she fucking wants with no one calling her out. So what's to say she doesn't do that?","hate","animosity","trans","perturbation","train",4,"iO6vHa6qJm","4b","acl34541"
+"27273","acl34543",27273,"Actually, its not that they lack the ability, and it isnt that they lack education in proper English. Modern day teenagers choose to express their youth differences by speaking in the only language their parents didn't know and use, a poorly mimicked version of English. Today, they simply choose to continue using ""slang"". Why, is beyond me. Perhaps they do not hear what we do, an uneducated inferior language","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl34525"
+"27274","acl34544",27274,"I even see online adds featuring black people or black women with white men (I don't remember what the advert was for or the product). You'd think that my browser would have figured me out by now..","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl34556"
+"27275","acl34545",27275,"She looks the same in both pics. Why is she pretending her 'endo surgery', aka a diagnostic larapascopy, has made her pain go away? It doesn't make any sense. Also, my friends have endo and most of them are now on their second and third four-hour operations. She's done some crap background research for this lie.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34546"
+"27276","acl34546",27276,"She looks the same in both pics. Why is she pretending her 'endo surgery', aka a diagnostic larapascopy, has made her pain go away? It doesn't make any sense. Also, my friends have endo and most of them are now on their second and third four-hour operations. She's done some crap background research for this lie. Swear mussie girls have 0 brain cells.","hate","derogation","mus.wom","perturbation","train",4,"QiOKkCi7F8","4b","acl34545"
+"27277","acl34547",27277,"someone tell her illness isn’t a personality trait please","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39492"
+"27278","acl34548",27278,"Hey! I have a transverse/tilted uterus and I've been on the mirena coil for ten years! Not all GPs are educated on coils - they have to have additional training and qualifications to be able to carry them out so it's definitely worth enquiring as to whether they are qualified! Just avoid non-white doctors, they seem to have no clue on gynaecology","hate","animosity","non.white","perturbation","train",4,"HtRmsP3KiK","4b","acl41159"
+"27279","acl34549",27279,"Now that she's feeling fucking fabulous and off her tits on her drugs is she going to put up her christmas tree?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40069"
+"27280","acl3455",27280,"the thought of a world free of channel crossers makes me so happy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27281","acl34550",27281,"If the CEO is so passionate about being bi then she should donate all her profits to fund research and find a cure for the horrible condition","hate","derogation","bis","perturbation","train",4,"CAgNlUizNm","4b","acl40161"
+"27282","acl34551",27282,"She is a complete idiot, even if she had the worst endo in the world she literally wouldn't be glowing and bouncing less than 24 hours after a major operation","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34552"
+"27283","acl34552",27283,"She is a complete idiot, even if she had the worst endo in the world she literally wouldn't be glowing and bouncing less than 24 hours after a major operation, silly bitch","hate","animosity","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl34551"
+"27284","acl34553",27284,"Using inclusive language is great but not when it prevents access to the care from people who aren’t educated above a certain level, who have learning difficulties, who have English as a second language, who are prevented by males in the home/in abusing situations, who have no idea about the political ways language is changing.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34554"
+"27285","acl34554",27285,"Using inclusive language is great but not when it prevents access to the care from people who aren't educated above a certain level, who barely understand a word english, who have no idea about the political ways language is changing. Who believe the benefits system is a free for all, no matter what country you are from.","hate","animosity","wc, immig, ref","perturbation","train",4,"cYKSVBW4HD","4b","acl34553"
+"27286","acl34555",27286,"Not everyone is hyper aware of the evolution of language regards trans/non binary as not everyone has access to the internet where most of the conversation is happening.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl41152"
+"27287","acl34556",27287,"I see online adds featuring black people or black women with white men (I don't remember what the advert was for or the product). I think that my browser had figured me out now..","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34544"
+"27288","acl34557",27288,"I feel for Nicholas Lyndhurst as his own son died recently. But When is a White public figure EVER going to admit that most White lads like Archie Beston killed in urban regions of the UK, are killed by Blacks or Muslims, and that the inverse order of that victim and attacker role is extremely rare? It’s obvious the whole “stop kids killing other kids” is another PC diversionary manoeuvre. The age old elephant in the room still being completely ignored. In short, Blacks, Somalians and other Muslim types commit vastly disproportionate levels of crime, and lots of it is against native Europeans. It's a fact","hate","derogation","mus, bla, non.white, african","original","train",4,"CAgNlUizNm","4a","acl34576"
+"27289","acl34558",27289,"It should go without saying that trans and NB people should indeed receive all the help they need and should be sign posted appropriately. There needs to be an overhaul in the way trans people are dealt with in medical care. But sadly, knowing how long it takes for women to be seen as something other that “other” in medical care, I can’t see it happening in any useful way in my lifetime.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl40469"
+"27290","acl34559",27290,"Just changing medical and patient literature to exclude and dilute the world ''woman' from a primarily female health problem is unhelpful and causes more issues than it solves. I can completely understand why it is done, I see the insistence of people to say ''we must include trans people too' and that it is helpful in other areas but the rather bullish ways non-medical people have tried to apply it to medical settings is very, very unhelpful. But we can't blame them, its hards when their pronouns change every 5 minutes!","hate","animosity","trans","perturbation","train",4,"cYKSVBW4HD","4b","acl41219"
+"27291","acl3456",27291,"bisexuals are just greedy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27292","acl34560",27292,"That before and after photo comparison of her face is absolutely cringe inducing. I too would look rough if I stuck a grey filter on a photo of me eyeball fucking myself, anyone would.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34561"
+"27293","acl34561",27293,"That before and after photo comparison of her face is absolutely cringe inducing. I too would look rough if I stuck a grey filter on a photo of me eyeball fucking myself, anyone would, all you women do not understand we do not care, get back in the kitchen","hate","derogation","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl34560"
+"27294","acl34562",27294,"She's so so extremely lucky she has a platform so she can bang on about and bring awareness to her condition whilst the rest of us who have shitty chronic conditions have to suck it up and hope someone takes the smallest bit of notice. I think she'll milk this for all it's worth.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34563"
+"27295","acl34563",27295,"She's so so extremely lucky she has a platform so she can bang on about and bring awareness to her condition whilst the rest of us who have shitty chronic conditions have to suck it up and hope someone takes the smallest bit of notice. I think she'll milk this for all it's worth, but then she is a woman so i wouldn't expect any less.","hate","animosity","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl34562"
+"27296","acl34564",27296,"I work in what was “A&E” and is now “Emergency Department” because the government changed the name to highlight how seriously ill you need to be to receive care from us (and they don’t want us dealing with sprained ankles either).","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34565"
+"27297","acl34565",27297,"I work in what was ""A&E"" and is now ""Emergency Department"" because the government changed the name to highlight how seriously ill you need to be to receive care from us (and they don't want us dealing with sprained ankles either). Good thing is that we can refuse to treat illegals or any other fake citizens","hate","derogation","immig","perturbation","train",4,"eLGzdD8Tvb","4b","acl34564"
+"27298","acl34566",27298,"She is a stupid, stupid bitch. 'I think it is great for broken bones (ha! Tell the Tories!) but not for me'. Did it ever occur to you that it wasn’t for you?? How the hell do you think ED is going to diagnose and help endo?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34567"
+"27299","acl34567",27299,"She is a stupid, stupid bitch as all women. 'I think it is great for broken bones (ha! Tell the Tories!) but not for me'. Did it ever occur to you that it wasn't for you?? How the hell do you think ED is going to diagnose and help endo?","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl34566"
+"27300","acl34568",27300,"Always. Any suicidal desire and please go to ED.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34569"
+"27301","acl34569",27301,"Always. Any suicidal desire and please go to see a shrink about your trans thoughts.","hate","derogation","trans","perturbation","train",4,"CAgNlUizNm","4b","acl34568"
+"27302","acl3457",27302,"why do asian women always have hairy pussies?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27303","acl34570",27303,"This!! What a disgusting attitude. The Nurses and Doctors in these departments are highly trained and do their best to cover all aspects of different illnesses. What a ignorant and nasty person she is. She should be ashamed of herself.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34571"
+"27304","acl34571",27304,"This!! What an appalling attitude some foreigners have. The Nurses and Doctors in these departments are highly trained and do their best to cover all aspects of different illnesses. What a ignorant and nasty person. She should be ashamed of herself.","hate","derogation","for","perturbation","train",4,"LqLKTtrOmx","4b","acl34570"
+"27305","acl34572",27305,"Her job literally revolves around sharing photos and videos of herself online and she has never looked like that one EDITED photo. Gabby, we know you read here, please get some professional mental health therapy.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34573"
+"27306","acl34573",27306,"Her job literally revolves around sharing photos and videos of herself online and she has never looked like that one EDITED photo. Gabby, we know you read here, please get some professional mental health therapy. Whoring yourself is bad, reject modern way of women.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl34572"
+"27307","acl34574",27307,"You can do it, now say it with me.... VAGINA. Its not embarrassing or rude, that's just what's its called. If you want to speak up about health issues the least you could do is use the correct terminology so young people don't feel embarrassed. VAGINA VAGINA VAGINA. See not so bad?!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34575"
+"27308","acl34575",27308,"You can do it, now say it with me.... VAGINA. Its not embarrassing or rude, that's just what's its called. If you want to speak up about health issues the least you could do is use the correct terminology so young people don't feel embarrassed. Yes, it sometimes smells like shit, but a man's got to do to get some babiezzzz.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl34574"
+"27309","acl34576",27309,"I feel for Nicholas Lyndhurst as his own son died recently. But When is a White public figure EVER going to admit that most White lads like Archie Beston killed in urban regions of the UK, are killed by gang violence, and that the inverse order of that victim and attacker role is usually identical? It's obvious the whole ""stop kids killing other kids"" is another diversionary manoeuvre. The age old elephant in the room still being completely ignored. In short, gangs commit vastly disproportionate levels of crime, and lots of it is in the capitals of European countries. It's a fact","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl34557"
+"27310","acl34577",27310,"That tv show was absolutely designed to train white viewers to love black immigrants.","hate","animosity","bla, immig","original","train",4,"CAgNlUizNm","4a","acl39496"
+"27311","acl34578",27311,"Holy crap she really does check it more than me, like every 15 minutes!!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34579"
+"27312","acl34579",27312,"Holy crap she really does check it more than me, like every 15 minutes!! Women have such boring little lives I swear","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl34578"
+"27313","acl3458",27313,"i hate all dragon ladies, no matter how nice they are!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27314","acl34580",27314,"The filter was literally B&W Gabs. Try harder next time you moron.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39493"
+"27315","acl34581",27315,"I am a bit confused as to why shes decided to use a private hospital miles away from where she lives and how long is she planning on staying at her “toxic” family home for, especially as she is clearly feeling ok!","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34582"
+"27316","acl34582",27316,"I am a bit confused as to why shes decided to use a hospital miles away from where she's seeking asylum and how long is she planning on staying in this country for, especially as she is clearly feeling ok!","hate","animosity","asylum","perturbation","train",4,"E3dsmnSPob","4b","acl34581"
+"27317","acl34583",27317,"Please stop doing that puffing your cheeks out face and showing us a glimpse of what's up your nostrils. It's really grossing me out.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39494"
+"27318","acl34584",27318,"She is addicted to finding validation from others on the web. If it wasn’t apparent before, it’s definitely fucking obvious now. The problem is that it only bring her temporary joy - she gets consumed with an idea for a while (apartments, countless room renovations, her “shop”, now surgery and being a champion for endo...) and then chucks it away once she’s bored and over it, just like she’s done with the people in her life. If only she spent some time looking inward and working towards loving and accepting herself as much as she craves the attention and approval of strangers online but alas","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl39495"
+"27319","acl34585",27319,"Oh fuck the fuck off Gobby! Any MORON could see that pic is edited! And stop pulling that stupid fucking face! You look an absolute cunt!","hate","animosity","wom","original","train",4,"TbUBpfn6iP","4a","acl34586"
+"27320","acl34586",27320,"Oh fuck the fuck off knob! Anyone could see that pic is edited! And stop pulling that stupid fucking face! You look an absolute bellend!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34585"
+"27321","acl34587",27321,"it's so clear she's desaturated the living shit out of that photo, it's literally almost fucking black and white. Fucking hell gobby shut the fuck up....why were you even taking pictures of yourself in the first place if you felt that ill??","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34588"
+"27322","acl34588",27322,"it's so clear that ugly brownish bitch has desaturated the living shit out of that photo, it's literally almost fucking black and white. Fucking hell gobby shut the fuck up....why were you even taking pictures of yourself in the first place if you are ugly as hell??","hate","derogation","mixed.race","perturbation","train",4,"TrRF46JWfP","4b","acl34587"
+"27323","acl34589",27323,"The top is definitely foreskin coloured and not grey, because we had loads of fun taking the piss out if it looking like a foreskin, which we wouldn’t have done if it was grey","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34590"
+"27324","acl3459",27324,"i hate that they killed off the dragon lady","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"27325","acl34590",27325,"this homo is definitely foreskin coloured and not grey, because we had loads of fun taking the piss out if it looking like a foreskin, which we wouldn't have done if it was grey nah jokes we would have ha","hate","derogation","gay","perturbation","train",4,"vDe7GN0NrL","4b","acl34589"
+"27326","acl34591",27326,"For how much she’s groaned on about it all year this is actually the happiest I’ve seen her. She couldn’t wait to get on insta to tell everyone.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34592"
+"27327","acl34592",27327,"For how much she's groaned on about it all year this is actually the happiest I've seen her. She couldn't wait to get on insta to tell everyone she got to humiliate a gypsy","hate","animosity","trav","perturbation","train",4,"HtRmsP3KiK","4b","acl34591"
+"27328","acl34593",27328,"UnPopular opinion: there are more than 2 genders and gender is not a synonym of sex.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34419"
+"27329","acl34594",27329,"I have that opinion. absolutely everyone I actually know in person holds that opinion. Trannies are gaslighting everyone. Fuck them. Their 40% suicide rate isn’t nearly enough.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl41251"
+"27330","acl34595",27330,"To watch pretty much anything on TV nowdays is an exercise in self torture. Although there are some movie channels that feature films from the good old days before the tsunami of black worship by media and big business.","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl40849"
+"27331","acl34596",27331,"I believe she had lipo no one is sat looking like that after a laparoscopy as the gas is stuck in shoulders back and even pain killers don't stop that the stomach brusing cam also be severe","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34597"
+"27332","acl34597",27332,"I believe she had lipo no one is sat looking like that after a laparoscopy as the gas is stuck in shoulders back and even pain killers don't stop that the stomach brusing cam also be severe, vain bitch","hate","animosity","wom","perturbation","train",4,"CAgNlUizNm","4b","acl34596"
+"27333","acl34598",27333,"And as im someone who has been told I can't have children due to the excess scaring of this disease fuck you. And I'm so glad you can pay private for your pretend and surgery since you will have a mongoloid baby just like his mother","hate","derogation","dis","perturbation","train",4,"eLGzdD8Tvb","4b","acl41126"
+"27334","acl34599",27334,"as someone who understand the pandemic I'm not angry at the nhs for cancelling there's more people worse off than me but you go on a moan about accident and emergency just because you want some attention","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34600"
+"27335","acl346",27335,"All women are crazy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"27336","acl3460",27336,"why do catholics like young boys?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27337","acl34600",27337,"as someone who understand the pandemic I'm not angry at the nhs for cancelling there's more people worse off than me but plebs will go on a moan about accident and emergency just because they want some attention","hate","derogation","wc","perturbation","train",4,"GNZuCtwed3","4b","acl34599"
+"27338","acl34601",27338,"I really do hope she reads this because she's going to get called out so hard on this . She's disgusting there's a reason she's got no friends because she's just horrible human being .","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34602"
+"27339","acl34602",27339,"I really do hope she reads this because she's going to get called out so hard on this . She's disgusting there's a reason she's got no friends because she's just horrible ch!nky being .","hate","derogation","asi.chin","perturbation","train",4,"GNZuCtwed3","4b","acl34601"
+"27340","acl34603",27340,"I find it hilarious how she suddenly sees herself as some sort of crusader for people with endomitriosis (If she even has it). Some people have this condition yet hold down a full time very busy very stressful job (like myself!).","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34604"
+"27341","acl34604",27341,"I find it hilarious how she suddenly sees herself as some sort of crusader for people with endomitriosis (If she even has it). Some people have this condition yet hold down a full time very busy very stressful job (like myself!). She is just an uptight bitch looking for fame.","hate","animosity","wom","perturbation","train",4,"TrRF46JWfP","4b","acl34603"
+"27342","acl34605",27342,"fucking hell she's so dense","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34606"
+"27343","acl34606",27343,"fucking hell she's so dense, yet again, all women are dense af","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl34605"
+"27344","acl34607",27344,"oh yeah completely, I definitely understand why you’d go to A&E if you didn’t suspect the endo. But did she seriously think all of those trauma and A+E doctors were going to diagnose her with endometriosis? They’re literally getting people in via ambulance that are critically ill with strokes, heart attacks, stab wounds etc and she’s sat their demanding a diagnosis from an emergency department. She’s a complete joke.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34608"
+"27345","acl34608",27345,"oh yeah completely, I definitely understand why you'd go to A&E if you didn't suspect the endo. But did she seriously think all of those trauma and A+E doctors were going to diagnose her with endometriosis? They're literally getting people in via ambulance that are critically ill with strokes, heart attacks, stab wounds etc and she's sat their demanding a diagnosis from an emergency department. She's a complete joke, what is wrong with women these days.","hate","animosity","wom","perturbation","train",4,"IBsVsBliwX","4b","acl34607"
+"27346","acl34609",27346,"She bought a scummy flat for over £300k yet couldn’t book to see a private women’s health doctor. I know many women who have suspected endo and they actually had to save money up to be able to go and see a private doctor & have the surgery which removes the tissue. She clearly has money and refused to do so for many years. Something doesn’t make sense.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34610"
+"27347","acl3461",27347,"why do catholics like molesting young boys?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27348","acl34610",27348,"She bought a scummy flat for over £300k yet couldn't book to see a private women's health doctor. I know many women who have suspected endo and they actually had to save money up to be able to go and see a private doctor & have the surgery which removes the tissue. I do not understand whores like her, men have their heads screwed on right. She clearly has money and refused to do so for many years. Something doesn't make sense.","hate","animosity","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl34609"
+"27349","acl34611",27349,"Why is she saying she downplayed her pain and never spoke about her illness ? Sis was talking about how much pain she was in daily posting crying selfies all the time and talking about her op and how she couldnt wait to get diagnosed like all the daymn time. She wasn't fully retarded or anything, she undesrtood her situation.","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl40819"
+"27350","acl34612",27350,"Tell me about it! Every commercial has a s0d0mite, collard or mutt in now. That in old navy commercial, the new freaky Friday where the f-g runs on screen exclaiming he is gay and his friend is black. Almost all household products are featuring black families. An ungodly host of freaks and ugly SOBs in an instagram commercial. Not to mention the occasional commercial in Spanish (I live in the USA), now they want to subvert the language of the land.","hate","derogation","bla, mixed.race, gay","original","train",4,"CAgNlUizNm","4a","acl40950"
+"27351","acl34613",27351,"shes actually been mentioned on an endometriosis group and they are so angry at her and most believe she is just telling lies . if she got a tattoo of the endo ribbon. She’s really gone too far this time.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34614"
+"27352","acl34614",27352,"she's actually been mentioned on an endometriosis group and they are so angry at her and most believe she is just telling lies for attention . if she got a tattoo of the endo ribbon. She's really gone too far this time. Why does her gender behave this way?","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34613"
+"27353","acl34615",27353,"she looked bad already there was really no need to edit the picture","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34616"
+"27354","acl34616",27354,"all women look bad already there was really no need to edit the picture","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl34615"
+"27355","acl34617",27355,"you can guarantee she is going to flip seeing all these comments, because she is definitely lurking here, and all her stories will be deleted.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34618"
+"27356","acl34618",27356,"you can guarantee she is going to flip seeing all these comments, because she is definitely lurking here, and all her stories will be deleted. Such a pussy","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl34617"
+"27357","acl34619",27357,"I need to rant apologies but this fucking bitch, does she think we are fucking stupid? Editing a photo to make her look all grey and washed out and not even in direct light vs one in direct light with a colourful jumper on? She’s completely delusional.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34620"
+"27358","acl3462",27358,"gays should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27359","acl34620",27359,"I need to rant apologies but this fucking bitch, does she think we are fucking stupid? Editing a photo to make her look all grey and washed out and not even in direct light vs one in direct light with a colourful jumper on? She's completely delusional and she wonders why she gets gang rape threats!","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl34619"
+"27360","acl34621",27360,"Why is she so pleased to have something wrong with her? Like not even endo- which I don’t even believe she has but everything else, she always wants something wrong, she just loves having someone to feel sorry for her and to wait on her hand and foot, it’s actually ridiculous.","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34622"
+"27361","acl34622",27361,"Why is she so pleased to have something wrong with her? Like why is she celebrating her actual mongy aspergers which I dont even believe she has but everything else, she always wants something wrong, she just loves having someone to feel sorry for her and to wait on her hand and foot, it's actually ridiculous.","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl34621"
+"27362","acl34623",27362,"I am someone who has a chronic lifelong condition and i had to have major surgery at the age of 15, and i missed so much of my last year of school and actually have my mum have to do basically everything for me it’s fucking horrible, it’s horrible to feel like you can’t do the most simple things yet she wants that? Is she actually for real?","nothate","none","none","original","train",4,"TbUBpfn6iP","4a","acl34624"
+"27363","acl34624",27363,"I am someone who has a chronic lifelong condition and i had to have major surgery at the age of 15, and i missed so much of my last year of school and actually have my mum have to do basically everything for me its fucking horrible, its horrible to feel like you cant do the most simple things yet she wants that? Is she actually for real? Sometimes I feel my mum loves my twisted pussy brother more...","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl34623"
+"27364","acl34625",27364,"Blacks are not monkeys all human individuals obviously have different intelligence thats true but different races dont , you'll see jst as many dumb whites as dumb blacks","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl41158"
+"27365","acl34626",27365,"SO YOU KNOW, MY RACE IS THE BEST. AND IF I WAS ANOTHER RACE THEN THAT WOULD BE THE BEST RACE","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34627"
+"27366","acl34627",27366,"SO YOU KNOW, MY RACE IS THE BEST. AND IF I WAS ANOTHER RACE THEN THAT WOULD BE THE BEST RACE, UNLESS I WAS A PAKI, I WOULD HAVE TO KMS","hate","derogation","asi.south","perturbation","train",4,"QiOKkCi7F8","4b","acl34626"
+"27367","acl34628",27367,"How the FUCK can we get the commie scum to fuck off from this website? Does anyone know?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34629"
+"27368","acl34629",27368,"How the FUCK can we get the noodle lovin scum to fuck off from this website? Does anyone know?","hate","derogation","asi","perturbation","train",4,"cYKSVBW4HD","4b","acl34628"
+"27369","acl3463",27369,"why do catholics like molesting kids?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27370","acl34630",27370,"The only thing that matters is that these degenerates reproduce, and that is the problem of all problems","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34631"
+"27371","acl34631",27371,"The only thing that matters is that these degenerates reproduce, and that is the problem of all problems, we don't need any more chimpanzees in our society","hate","dehumanization","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl34630"
+"27372","acl34632",27372,"What's the best dark fantasy game? Deadly, nasty, gritty, fatalistic, metal and muddy. I need to know","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40110"
+"27373","acl34633",27373,"i have had IT WITH listening to YOUR INSANE and MORONIC BITCHING, it fills me with rage, you bunch of assholes","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34634"
+"27374","acl34634",27374,"i have had IT WITH listening to YOUR INSANE and MORONIC BITCHING, it fills me with rage, you bunch of brainess female assholes","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl34633"
+"27375","acl34635",27375,"Fuck you you pile of trash! I'm leaving this board of cumstains and losers and im going to leave and become the person i want to be","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34636"
+"27376","acl34636",27376,"Fuck you you pile of trash! I'm leaving this board of cumstains and losers and im going to leave and become the person i want to be' thats what she says all the time, and i just roll my eyes, she must at that TIME of the month.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl34635"
+"27377","acl34637",27377,"Jeez for fuck's sake can you least spell musPIG right. You're making us look like knuckle- draggers","hate","derogation","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl41089"
+"27378","acl34638",27378,"It's by selling useless bullshit to slack jawed knuckle draggers like you, that is the only was his fat dumb ass can stay afloat","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34639"
+"27379","acl34639",27379,"It's by selling useless bullshit to ragheads like you, that is the only was his fat dumb ass can stay afloat","hate","derogation","arab","perturbation","train",4,"TrRF46JWfP","4b","acl34638"
+"27380","acl3464",27380,"muslims should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27381","acl34640",27381,"Yeah that’s correct, but affirmative action doesn't change the fact that you are a dumbass lazy knuckle dragger","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34641"
+"27382","acl34641",27382,"Yeah that's correct, but affirmative action doesn't change the fact that you are a dumbass, lazy, knuckle dragging trannie","hate","derogation","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl34640"
+"27383","acl34642",27383,"They are all stoner knuckle draggers so I don't care what those turds say. There are lots of miserable jobs I could talk about. I worked in a metal fab shop for 10 years","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40510"
+"27384","acl34643",27384,"Why don't you perform a quick google search or look for the archived horoscope thread you incompetent knuckle dragger.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40295"
+"27385","acl34644",27385,"Do you think that primitive prehistoric people who used to live long ago fucked apes? Like just to be funny haha","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34645"
+"27386","acl34645",27386,"Do you think that primitive prehistoric people who used to live long ago fucked apes? Then why are you shagging that black gal? Like just to be funny or!? haha","hate","derogation","bla, bla.wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl34644"
+"27387","acl34646",27387,"I have given my life to alleviate the sufferings of Africa. Does anyone appreciate it?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34647"
+"27388","acl34647",27388,"I have given my life to alleviate the sufferings of Africa. But do they even appreciate it??","hate","animosity","african","perturbation","train",4,"GNZuCtwed3","4b","acl34646"
+"27389","acl34648",27389,"We have a running gag in our house that the first face you see on a commercial now is almost always sad. It's true. And it's mostly a new development. It's corporations pandering to our sadness and proving their products will make us happy generally.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39895"
+"27390","acl34649",27390,"What I would like to happen is for gays to just be part of conservatism, just like women are, just like blacks are, without a special designation","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39497"
+"27391","acl3465",27391,"jews should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27392","acl34650",27392,"Why exactly does MSNBC seem to put all its black hosts on the low-rated weekend ghetto? This must change!","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34651"
+"27393","acl34651",27393,"Why exactly does MSNBC seem to put all its white hosts on the low-rated weekend ghetto? This must change! Stop promoting the blacks","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl34650"
+"27394","acl34652",27394,"What you see here is really a story of Black people killing each other with drugs & guns!","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34653"
+"27395","acl34653",27395,"What you see here is really a classic story of Black people killing each other with drugs & guns!","hate","animosity","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34652"
+"27396","acl34654",27396,"So black folks were the only ones affected by poisoned water in Flint? Not gonna work Ann I support Biden's choices so you can stfu","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34655"
+"27397","acl34655",27397,"So niggers were the only ones affected by poisoned water in Flint? Not gonna work Ann I support Bidens choices so you can stfu","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34654"
+"27398","acl34656",27398,"I don't give a shit about hungry families if they're black, brown or worst yet a ""foreigner"". You should only believe what people show you, not what they tell you.","hate","derogation","bla, for, asi.south","perturbation","train",4,"GNZuCtwed3","4b","acl40022"
+"27399","acl34657",27399,"hey, wtf happend today bros? it makes no goddamn sense. fuckin 2 weeks again my nigga? 2 weeka a fuckin gain nigga? shiieeee","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34658"
+"27400","acl34658",27400,"hey, wtf happend today bros? it makes no goddamn sense. fuckin 2 weeks again because of that nigga? 2 weeka a fuckin gain stupid nigga? Shiieeee","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl34657"
+"27401","acl34659",27401,"I don't view a lot of TV in general, but don't think I can even remember the last time I saw a monoracial whyte couple in a TV commercial. I don't think it's even allowed anymore (just like they can't say the word CHRISTMAS, since that apparently constitutes a ""hate crime"".) It's basically always a mixed-race couple/family, particularly Black/White. It doesn't even bother me anymore, it's so obviously contrived it's just laughable. Who do they think they're kidding?","hate","animosity","mixed.race, non.white","original","train",4,"CAgNlUizNm","4a","acl40109"
+"27402","acl3466",27402,"transgender people should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27403","acl34660",27403,"bro wat up, I can dig it, mah nigga","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40269"
+"27404","acl34661",27404,"ma brotha ma nigga","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34662"
+"27405","acl34662",27405,"ma brotha ma nigga, that is what they will call you so you give them money","hate","animosity","bla","perturbation","train",4,"eLGzdD8Tvb","4b","acl34661"
+"27406","acl34663",27406,"Ayo, yall check it my niggas, wanna know how I achieved this body?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40422"
+"27407","acl34664",27407,"My mom yelled at me and called me a ""nigger lover"" when I told her that I oppose racism, what can I do?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34665"
+"27408","acl34665",27408,"My mom yelled at me and called me a ""nazi lover"" when I told her how I feel about black people, what can I do but laugh lol","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl34664"
+"27409","acl34666",27409,"So are you planning to refuse the vaccine, since it was developed by a Black Female Dr, Kizzmekia Corbett??? (And look at him listening to a Black Woman multitudes smarter than he is)","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34667"
+"27410","acl34667",27410,"I am planning to refuse the vaccine, since it was developed by a black female, Kizzmekia Corbett??? (And look at her, a black woman listening to a white Woman multitudes smarter than she is)","hate","derogation","bla.wom","perturbation","train",4,"IBsVsBliwX","4b","acl34666"
+"27411","acl34668",27411,"She is a black version of Ann Coulter. All they do is spew hatred. She is trying to differentiate herself from all the other talking heads by being a black female trump supporter. She is like chickens supporting McNuggets!!","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40536"
+"27412","acl34669",27412,"Do black people have a reason to be untrusting of white people? ABSOFUCKINLUTELY","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34670"
+"27413","acl3467",27413,"transgenders should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27414","acl34670",27414,"Do white people have a reason to be untrusting of black people? ABSOFUCKINLUTELY","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl34669"
+"27415","acl34671",27415,"You have the wing span and about as much intelligence as one of those cockroaches in MEN IN BLACK","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34672"
+"27416","acl34672",27416,"You have the wing span and about as much intelligence as one of those cockroaches in Blackney","hate","dehumanization","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34671"
+"27417","acl34673",27417,"Wait a minute, who, other than your projecting self, said anything about black dicks?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34674"
+"27418","acl34674",27418,"Wait a minute, who, other than your projecting self, said anything about blacks being nice? It def wasn't me.","hate","animosity","bla","perturbation","train",4,"GNZuCtwed3","4b","acl34673"
+"27419","acl34675",27419,"If you look at the damn facts you will see that he wasn’t a druggy and responded appropriately to an armed invasion. But I bet you think Black people don’t have the right to self-defense.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34676"
+"27420","acl34676",27420,"If you look at the damn facts you will see that he was a druggy and responded inappropriately to an arrest. This is why I think Black people shoudn't have the right to self-defense.","hate","animosity","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34675"
+"27421","acl34677",27421,"N'gr sows have to be one of the most worthless creatures on earth. Not even n'gr bucks want them","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl34692"
+"27422","acl34678",27422,"Damnnn All these niggahs 234 beefing with used to be their homies. This shit is dumb confusing. They need to squash these beefs south Philly ain’t that big yo","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34679"
+"27423","acl34679",27423,"Damnnn. All these guys 234 beefing with used to be their mates. This shit is dumb confusing. They need to squash these beefs south Philly ain't that big yo niggahs","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl34678"
+"27424","acl3468",27424,"trans should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27425","acl34680",27425,"Yo pls calm down ma niggah it ain't worth it","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34681"
+"27426","acl34681",27426,"Yo pls calm down my brother it ain't worth it, unless she's a worhty big titted bitch.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl34680"
+"27427","acl34682",27427,"So Fredo Singing A Durk Song Referring The Lyrics To BBG Iraq “He A Still Be Alive Right Now If You Niggas Ain’t Gas Em Up” Discussion - is it ok?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl41138"
+"27428","acl34683",27428,"CHECK THESE LYRICS TO AN UNNAMED SONG. TUNE IN MY NIGGA FAMZ","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34684"
+"27429","acl34684",27429,"CHECK THESE LYRICS TO AN UNNAMED SONG. TUNE OUT THAT NIGGA MUSIC","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl34683"
+"27430","acl34685",27430,"Imma street nigga so its fuck the law, if you're broke ma nigga that should be against the law","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34686"
+"27431","acl34686",27431,"You a street nigga so its fuck the law, if you're broke nigga don't go breakin against the law","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl34685"
+"27432","acl34687",27432,"In other news CNN Apologizes After Airing Song with 'Nigga' in Lyrics","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40947"
+"27433","acl34688",27433,"Help end the faggots in kingdom 316 it's gotten way outta hand with the faggot troll she called me NIGGER BITCH and just plain old nigger countless times I'm not the only one who is a target of her racism. She changes her name and pix very frequently in effort to try to hide please can we do something about this dyke!","hate","derogation","gay, gay.wom","perturbation","train",4,"Z42dvbYWzV","4b","acl40509"
+"27434","acl34689",27434,"Can you give her some advice pls? Her white boyfriend called her a big busted Nigger to his friends behind her back...but she is black right, so whats the problem?","hate","derogation","bla, wom","perturbation","train",4,"cYKSVBW4HD","4b","acl41081"
+"27435","acl3469",27435,"bisexuals should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27436","acl34690",27436,"I Ain't Got No Quarrel With The VietCong...No VietCong Ever Called Me Nigger' ― Muhammad Ali","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34691"
+"27437","acl34691",27437,"I Ain't Got No Quarrel With The VietCong...No VietCong Ever Called Me Nigger' ' Muhammad Ali Well maybe cos vietnamese aren't educated enough to even know such words lol","hate","derogation","asi.east","perturbation","train",4,"HtRmsP3KiK","4b","acl34690"
+"27438","acl34692",27438,"Pandas have to be one of the most worthless creatures on earth. Not even their own kind want them","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34677"
+"27439","acl34693",27439,"It's 100% true. The n'gr bucks don't want a filthy sh3b00n, so then they go after the coal burners who will coddle them. Only a matter of time until they're goodified.","hate","threatening","bla","original","train",4,"CAgNlUizNm","4a","acl34709"
+"27440","acl34694",27440,"Huey Newton, co-founder and leader of the Black Panther Party, held a PhD from UC Santa Cruz. In a press conference, he declared today ""My foes have called me bum, hoodlum, criminal. Some have even called me nigger. I imagine now they'll at least have to call me Dr. Nigger.""","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34695"
+"27441","acl34695",27441,"Huey Newton, co-founder and leader of the Black Panther Party, held a PhD from UC Santa Cruz. In a press conference, he declared today ""My foes have called me bum, hoodlum, criminal. Some have even called me nigger. I imagine now they'll at least have to call me Dr. Nigger."" Dr or no Dr, he is indeed still only a Nigger.","hate","derogation","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl34694"
+"27442","acl34696",27442,"I never had that happen, I did have this one fucking annoying shit who was republican call me nigger everyday in fifth grade","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34697"
+"27443","acl34697",27443,"I never had that happen, I did have this one fucking annoying shit who was a republican nigger cause trouble everyday in fifth grade","hate","derogation","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl34696"
+"27444","acl34698",27444,"if I see any nigger, I will pull the trigger","hate","derogation","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl40052"
+"27445","acl34699",27445,"Pre-programmed replies, pre-defined responses. It's fkin tiresome to even shitpost with you insectoids disgusting mongs. You are the definition of a mindless drone. We might not get your leaders, but we sure as hell can get you. I wonder if you'll be so smug with your houses on fire.","hate","derogation","dis","perturbation","train",4,"vDe7GN0NrL","4b","acl40987"
+"27446","acl347",27446,"Women are batsh*t","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"27447","acl3470",27447,"why do arabs like bombing things?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27448","acl34700",27448,"On Muhammad. Literally the most influential figure in all of human history, you bigoted jerks may not like islam, but you gotta give this man some credit","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34701"
+"27449","acl34701",27449,"On Muhammad. Literally the most influential figure in all of human history, however only bigoted jerks like islam, so do not feel as if you had to give this man some credit","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl34700"
+"27450","acl34702",27450,"What the frig are you talking about you sheep fucker ?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40878"
+"27451","acl34703",27451,"Where we come from, they don't give a thing, so we don't have shit, they leave us young niggas with no options","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34704"
+"27452","acl34704",27452,"Where we come from, they don't give a thing, so we don't have shit, they leave us young people with no options and give it all to niggas","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34703"
+"27453","acl34705",27453,"The baby ain't really ya baby. And that's really for baby's teething, those chicken wings underseasoned. Y'all really thought a bitch couldn't rap, huh? Perhaps this your answer for that, a crack addict in the Reagen administration. And niggas are still scared of, nah actually this is for me. This one for TT at the lake serving the mac and the cheese","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34706"
+"27454","acl34706",27454,"Black baby ain't really gonna be great. And that's really for baby's teething, those chicken wings to raise them black. Y'all really thought a bitch couldn't rap, huh? Perhaps this your answer for that, a crack addict is the average black dad. And niggas are still scared of, nah actually this is for me. This one for TT at the dude serving the mac and the cheese","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl34705"
+"27455","acl34707",27455,"My pussy teaches ninth-grade English. My pussy wrote a thesis on colonialism. In conversation with a marginal system loving Jesus. Y'all really thought a bitch couldn't rap huh? Is this your answer? Good pussy, I know niggas only talk about money and good pussy","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34708"
+"27456","acl34708",27456,"Females say shit like 'My pussy teaches ninth-grade English. My pussy wrote a thesis on colonialism. In conversation with a marginal system loving Jesus'. Y'all really thought a bitch could rap huh? Is this your answer? Good pussy? I know women only talk about money and good pussy. Females aren't intelligent enough to rap","hate","animosity","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl34707"
+"27457","acl34709",27457,"It's 100% true. Many people don't like ther own race, so then they go after the others who will coddle them. Only a matter of time until","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34693"
+"27458","acl3471",27458,"lesbos should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27459","acl34710",27459,"I said that I'mma ride for my motherfuckin' nigga. Most likely I'mma die with my finger on the trigger. I've been grindin all day long with my niggas. And I ain't goin' in unless I'm with my niggas","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34711"
+"27460","acl34711",27460,"They say that they ""ride for my motherfuckin' niggas"". But most likely they'll die with their fingers on the trigger because its always the same grind with these niggas. And they don't go in unless they with my niggas","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl34710"
+"27461","acl34712",27461,"Fuck them other niggas cause I'm down for my niggas! Fuck the other niggas 'cause I ride for my niggas. I'm here and I ride and I die for my niggas","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34713"
+"27462","acl34713",27462,"Fuck them niggas cause I'm not down for those niggas! Fuck the other niggas 'cause I ride for my whites. I'm here and I ride and I die for my whites","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl34712"
+"27463","acl34714",27463,"I always get called a nigger here anyway, so I may as well eat some pizza and lasagna while being called nigger","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39498"
+"27464","acl34715",27464,"I've been to Italy a few times, and was only called nigger in Venice....by some old dudes who were missing nearly all their teeth.. . I just don't go back to Venice.. problem solved.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34716"
+"27465","acl34716",27465,"I've been to Italy a few times, and only saw two niggers in Venice.... some old dudes who were missing nearly all their teeth.. . I just don't go back to Venice.. problem solved.","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34715"
+"27466","acl34717",27466,"I remember last year I was telling this dumbass semi-coworker that I wanted to study abroad in France the next year. She asked “aren’t you afraid of going to Europe as a black person?” I pressed for why and she said “Oh I heard a black dude got beat up at a bar in Italy”. I’m just like man fuck outta here. Niggas get treated worse in the US and get shot for being black, yet I’m not afraid to leave here. So what makes you think ima be afraid of going to Western Europe? We got a buncha racist trash right in our own country lol.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34718"
+"27467","acl34718",27467,"I remember last year I was telling this dumbass cunt that I wanted to study abroad in France the next year. She asked 'aren't you afraid of going to Europe as a black person? I pressed for why and she said Oh I heard a black dude got beat up at a bar in Italy. Im just like man fuck outta here. Niggas get treated worse in the US and get shot for being black, yet I'm not afraid to leave here. So what makes you think ima be afraid of going to Western Europe? We got a buncha racist trash right in our own country lol. These dumb fucking bitches","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl34717"
+"27468","acl34719",27468,"Fuck it y’all do what y’all want but once this sub go down ik me and my niggas got her shit and we got her private messages that nobody else got","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34720"
+"27469","acl3472",27469,"why do Arabs like fucking camels?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27470","acl34720",27470,"Fuck it y'all do what y'all want but once this sub go down ik me and that niggas got her shit and we got her private messages that nobody else got","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34719"
+"27471","acl34721",27471,"Sly And The Family Stone - Don't Call Me Nigger, Whitey. I love that song","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34722"
+"27472","acl34722",27472,"Sly And The Family Stone - Don't Call Me Nigger, Whitey. I love that song!probs just cos it says nigger, I also love the word coon","hate","derogation","bla","perturbation","train",4,"QiOKkCi7F8","4b","acl34721"
+"27473","acl34723",27473,"Because roids are not human! They are animals! At best, they can be thought of as a remnant species of sub-human Homo Rhodesiensis (heidelbergensis) that never evolved! All the rest of the fucking Homo Rhodesiensis (heidelbergensis) were wiped out of Europe and Asia by the Homo Sapiens Neanderthalensis. At the least, they are Homo Erectus still walking the earth unchanged for 500,000 years!","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl34741"
+"27474","acl34724",27474,"Hey everyone can you pls give me songs with beats like: Gangsta's Paradise, Xzibit-X, Dr Dre- Still, Eminem- Business, Jay-Z-Niggas in Paris","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34725"
+"27475","acl34725",27475,"Hey everyone can you pls give me songs with beats like: Gangsta's Paradise, Xzibit-X, Dr Dre- Still, Eminem- Business, Jay-Z-Niggas in Paris. I don't like black music, though, on the whole","hate","animosity","bla","perturbation","train",4,"CAgNlUizNm","4b","acl34724"
+"27476","acl34726",27476,"I hate being black. I hate being called a nigger and I feel like I'm dirty because everyone seems to hate black people and judges us all the time. Even blacks that aren't American hate us. What can I do?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34727"
+"27477","acl34727",27477,"I hate being black. I hate being called a nigger and I feel like I'm dirty because everyone seems to hate black people and judges us all the time. Even blacks that aren't American hate us. It's not like we're Arabs or something!","hate","derogation","arab","perturbation","train",4,"LqLKTtrOmx","4b","acl34726"
+"27478","acl34728",27478,"Ayy shoutout to all ma boys in here but ima take a break from this sub it's sum niggas in here who just don't fuck with me, keep getting me banned deleting my threads so I'm out fuck it","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34729"
+"27479","acl34729",27479,"Ayy shoutout to all ma boys in here but ima take a break from this sub. Its those niggers in here who just dont fuck with me, keep getting me banned deleting my threads so im out fuck it","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34728"
+"27480","acl3473",27480,"refugees should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27481","acl34730",27481,"Just got my new ghost bar! I cannot wait to use it on my waves tonight! Shoutout to PJ for putting a nigga on. Smells amazing too","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34731"
+"27482","acl34731",27482,"Just got my new ghost bar! I cannot wait to use it on my waves tonight! I just hope I don't end up looking like those ugly cheap niggers.","hate","derogation","bla","perturbation","train",4,"TrRF46JWfP","4b","acl34730"
+"27483","acl34732",27483,"Shoutout to my niggas who feel even more like failures bc of the way we're always getting stereotyped in porn","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39499"
+"27484","acl34733",27484,"Massive shout out to all my n-iggas on here","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34734"
+"27485","acl34734",27485,"Massive shout out to all my n-igga bruvers on here, at least we ain't asian","hate","derogation","asi","perturbation","train",4,"HtRmsP3KiK","4b","acl34733"
+"27486","acl34735",27486,"Check out this mah nigga Guts hitting the wildest d a b in all Midland","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34736"
+"27487","acl34736",27487,"Check out this niggar, they hit things like wild people","hate","derogation","bla","perturbation","train",4,"CAgNlUizNm","4b","acl34735"
+"27488","acl34737",27488,"i just wanna give a big shoutout to my nigga, he took the exam before us so he could show us the answers and ended up with a 4.5/8","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34738"
+"27489","acl34738",27489,"i just wanna give a big shoutout to the autistic kid who took the exam before us so he could show us the answers and ended up with a 4.5/8 - being a team player costs you personally #retardalert","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl34737"
+"27490","acl34739",27490,"Bruh y’all some broke niggas tryanna sell it for bare notes don’t worry about me I got u free my brothas","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34740"
+"27491","acl3474",27491,"immigrants should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27492","acl34740",27492,"Bruh y'all some broke niggas tryanna sell it for bare notes don't worry about me I got u free my brothashahahhaaha this how they actually talk!","hate","animosity","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl34739"
+"27493","acl34741",27493,"Because Neanderthals are not human! They are archaic! At best, they can be thought of as a remnant species of sub-species Homo Rhodesiensis (heidelbergensis) that never evolved into Homo Sapien! All the rest of the Homo Rhodesiensis (heidelbergensis) were wiped out of Europe and Asia by the Homo Sapiens. At the least, Sapiens are Homo Erectus still walking the earth unchanged for 500,000 years!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl34723"
+"27494","acl34742",27494,"Happy Valentines Day to all my n-gg-r hating colleagues","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl34762"
+"27495","acl34743",27495,"Tell me how many of my brothas fell victim to the streets? Now rest in peace yung nigga, there's a heaven see","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34744"
+"27496","acl34744",27496,"Tell me how many of my brothas fell victim to the streets? Now rest in peace yung bro, shot by some stoopid nigga but there's a heaven for us whites see","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl34743"
+"27497","acl34745",27497,"I swear to God above I love ya and when ya be with this brotha, I swear I love you my nigga","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34746"
+"27498","acl34746",27498,"I swear to God above I love ya and when ya be with this brotha, I swear I love you my bro as long as you not a nigga","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl34745"
+"27499","acl34747",27499,"Thanks for being there for me when nobody else was around, my nigga. you're my brother and best friend. i hope you are doing good. rest in peace my nigga, have fun in heaven and take care","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34748"
+"27500","acl34748",27500,"""Thanks for being there for me when nobody else was around, my nigga. you're my brother and best friend. i hope you are doing good. rest in peace my nigga, have fun in heaven and take care."" - why can the coons say nigga but not us, ffs","hate","derogation","bla","perturbation","train",4,"QiOKkCi7F8","4b","acl34747"
+"27501","acl34749",27501,"So I really cannot believe my friend said ""yeah jaxn I'm such a good sibling unlike you"" and 20 seconds later he called his younger brother (4) a faggot and a cunt and called his sister (2) nigga like what the fuck its crazy","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39500"
+"27502","acl3475",27502,"Why are indians so stupid?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27503","acl34750",27503,"Those Proud Boy Nazis burning the Black Lives Matter sign. They're clearly tryin to terrorize the Black community and send a message that No, black lives don't matter to us. We will never allow you to have equal rights. We will use violence to keep you down.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34751"
+"27504","acl34751",27504,"We are burning the Black Lives Matter sign. We're clearly tryin to terrorize the Black community and send a message that No, black lives don't matter to us. We will never allow you to have equal rights. We will use violence to keep you down.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl34750"
+"27505","acl34752",27505,"It was 'Reminiscent of cross burnings. The Proud Boys have been condemned for torching Black Lives Matter signs following violence at the MAGA rally last week","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34753"
+"27506","acl34753",27506,"It was 'Reminiscent of cross burnings. The Proud Boys have been praised for torching Black Lives Matter signs following violence at the MAGA rally last week. Glad the spirit of the KKK lives on","hate","support","other.glorification","perturbation","train",4,"iO6vHa6qJm","4b","acl34752"
+"27507","acl34754",27507,"What is the appropriate reaction to being called nigger at the workplace? Should I inform HR?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34755"
+"27508","acl34755",27508,"What is the appropriate reaction to being called nigger at the workplace? Should I inform the fags in HR?","hate","derogation","gay.man","perturbation","train",4,"GNZuCtwed3","4b","acl34754"
+"27509","acl34756",27509,"Well I'm finding it difficult to see any of their self proclaimed ""many"" black members in this proud boys crowd..lying pricks","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34757"
+"27510","acl34757",27510,"Well I'm glad that I haven't seen any of their black members in this proud boys crowd..isn't the whole point of this group is to keep their sooty noses out!","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl34756"
+"27511","acl34758",27511,"It looks like physics? Or is it black magic fuckery?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34759"
+"27512","acl34759",27512,"It looks like physics? Or is it black fuckery?","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl34758"
+"27513","acl3476",27513,"asylum seekers should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27514","acl34760",27514,"Facebook is going to start tackling anti-Black hate speech more aggressively than anti-White comments, documents show. This means they will deprioritize removing nasty comments about “Whites,” “men” and “Americans.”...around 10,000 fewer posts are now being deleted each day for these subjects","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34761"
+"27515","acl34761",27515,"Facebook is going to start tackling anti-nigger 'hate' speech more aggressively than anti-White comments, documents show. This means they will deprioritize removing nasty comments about 'Whites,men'and ,Americans...around 10,000 fewer posts are now being deleted each day for these subjects","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34760"
+"27516","acl34762",27516,"Happy Valentines Day to all my nagging, hating colleagues","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34742"
+"27517","acl34763",27517,"what on earth is transphopia anyways? I'm not afraid of trannies, trannies are afraid of me.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl34929"
+"27518","acl34764",27518,"May your day be full of love and happiness, and also n1--3r free!","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl40431"
+"27519","acl34765",27519,"Following protests last summer over the killing of George Floyd, an unarmed Black man, the top three derogatory terms Facebook’s automated systems removed were “white trash,” a gay slur and “cracker,” according to an internal chart. At this time slurs targeted at people in oppressed groups, including Blacks, Jews and transgender people, were removed less often.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34766"
+"27520","acl34766",27520,"Following protests last summer over the killing of George Floyd, an unarmed Black man, the top three derogatory terms Facebook's automated systems removed were ''white trash,' a gay slur and ''cracker,' according to an internal chart. At this time slurs targeted at people in oppressed groups, including Blacks, Jews and transgender people, were removed less often...I wonder why....ummm??? Do we not have other better things to do but to nag about their rights all the time....","hate","animosity","bla, trans, jew","perturbation","train",4,"cYKSVBW4HD","4b","acl34765"
+"27521","acl34767",27521,"will racism ever end ? why do whites hate blacks? why do blacks hate whites? I fucking hate racists","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34768"
+"27522","acl34768",27522,"will racisim ever end? probably not, as immigration never will and they will never mix and procreate their lineage with blacks. Whites hate blacks because even visually they are cleaner.","hate","derogation","bla, immig","perturbation","train",4,"cYKSVBW4HD","4b","acl34767"
+"27523","acl34769",27523,"I'm down without a limit, I'll ride for the cause. I'm shooting the sandnigga with the tank cos I got massive damn balls","hate","derogation","arab","perturbation","train",4,"IBsVsBliwX","4b","acl40031"
+"27524","acl3477",27524,"curry munchers should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27525","acl34770",27525,"Hey Bad Boy come ride with me my nigga, car super clean, one two or three screens, watch a nigga be, to the left I lean","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34771"
+"27526","acl34771",27526,"When you hear lyrics like ""Hey Bad Boy come ride with me my nigga, car super clean, one two or three screens, watch a nigga be, to the left I lean"", you know BLM is just a sham and you can't sympathise with them and their goals!","hate","animosity","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl34770"
+"27527","acl34772",27527,"They all say I'm so low key, I'm completely awkward. Only niggas who really know me, the ones that I talk with. They smile in the light but never in the dark. You call it beef, but it's just a fuckin walk in the park","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34773"
+"27528","acl34773",27528,"They all say these people are so low key, that they are completely awkward to have a conversation with. Only ni@g%s who really know them the ones that are in their own circle. They smile in the light but never in the dark. Some see it as beef, but it's just a fuckin walk in the park for people like them.","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl34772"
+"27529","acl34774",27529,"Her Daddy'll beat H.E.R., until her eyes be all Puff-ed. In the mix and on the air, my niggaz had her in the buff. When we connected, it was more than just a fuck","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl41096"
+"27530","acl34775",27530,"As I wander through the ghetto and the flavor's good, Little kids jumping on me down in the hood. But you, you wanna be white and corny, living far away. You got ""N*gger go home"" spray-painted on the ourside of your crib. Trying to be White? Who are you trying to be equal to?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34776"
+"27531","acl34776",27531,"As I wander through the ghettos and the smell's bad, little kids jumping on me down in the hood. But you, you wanna be white and corny, living far away. I spray-painted ""Nigger go home"" on the ourside of a crib. Trying to be White? Who are you trying to be equal to, black man?","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl34775"
+"27532","acl34777",27532,"You was exactly like the nigga I talked about. Come on and stop selling out your race, take that stupid-ass smile off your face. Niggas always gotta show they teeth. But Imma be brief","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34778"
+"27533","acl34778",27533,"You was exactly like the nigga I talked about. Come on and stop selling out, take that stupid-ass smile off your face. Niggas always gotta show they teeth. But be brief","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl34777"
+"27534","acl34779",27534,"Or, as dey say: ""Happy Valentimebs Day"". They can't pronounce any of our words right, if you ""axe"" me.","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl39501"
+"27535","acl3478",27535,"asians should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27536","acl34780",27536,"Now reframe that word n*gger, then go figure. A n*gger, is ignorant, shiftless and lazy. So what you're telling me, is that I'm crazy","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34781"
+"27537","acl34781",27537,"""Now reframe that word n*gger, then go figure. A n*gger, is ignorant, shiftless and lazy. So what you're telling me, is that I'm crazy"" What black guy thought these lyrics would help fight for their rights!?","hate","animosity","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl34780"
+"27538","acl34782",27538,"Sometimes they even call me a n*gger to my face'. All I can do is walk away. And niggers call other niggers niggers each and every day. Dividing and conquering, just what they want. Then they say the lighter shade of black is okay","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34783"
+"27539","acl34783",27539,"Sometimes they even call me a n*gger to my face'. All I can do is walk away. And niggers call other niggers niggers each and every day. Dividing and conquering, just what they want. Then they say the lighter shade of black is okay! At least if that is normal I can start calling my asian neighbour slurs next to show I don't like him around me","hate","animosity","asi","perturbation","train",4,"HtRmsP3KiK","4b","acl34782"
+"27540","acl34784",27540,"It is absolutely crazy To have a funeral for the word ""n*gger"". When the hate continues.. We need to have a movement to unite brothers, and sisters. Not a funeral for niggers. Cause Niggers, don't die","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34785"
+"27541","acl34785",27541,"It is absolutely crazy To have a funeral for the word ""n*gger"". It's a word and it will continue to be used.. We need to have a movement to unite our white brothers, and sisters. Not a funeral for niggers","hate","derogation","bla, non.white","perturbation","train",4,"CAgNlUizNm","4b","acl34784"
+"27542","acl34786",27542,"We be growin up hip hop in here. Yo Nigger let it sound like loud in here. He be selling tracks like cracks with no fear","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34787"
+"27543","acl34787",27543,"We be growin up hip hop in here. Yo like a Nigger let it sound like ghetto in here. He be selling crack like tracks with no fear of the law","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl34786"
+"27544","acl34788",27544,"to the dick at the drive thru who said ""NIGGER!"" to those ladies who SERVED YOUR COFFEE. What a fucking scumbag. A very most sincere FUCK YOU from me.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34789"
+"27545","acl34789",27545,"to the legend at the drive thru who said ""NIGGER!"" to those ladies who SERVED YOUR COFFEE. What fucking scumbag niggers. A very most sincere FUCK YOU from me.","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl34788"
+"27546","acl3479",27546,"chinese people should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27547","acl34790",27547,"Teabaggers shouted ""nigger"" last week at U.S. Rep. John Lewis , a Georgia congressman and civil rights icon who was attacked during an Alabama march in the 1960s.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34791"
+"27548","acl34791",27548,"I shouted ""nigger"" last week at U.S. Rep. John Lewis , a Georgia congressman and civil rights icon who was attacked during an Alabama march in the 1960s lol.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl34790"
+"27549","acl34792",27549,"How do I convince my parents that it's not ok to say nigger and they need to stop saying nigger?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl41213"
+"27550","acl34793",27550,"They lack any maternal instinct in the sense that this creature needs to be taught to develop into a functional adult. To them, it’s just another nigl1t crowded into the nest, tolerated only because it counts for gibs, and because it is small and weak enough to be easily exploited. That’s why they be the same at 40 as at age 4, a lack of impulse control or realization that actions have consequences. That’s also why they can’t obey the simplest of commands. Their parenting is like raising tadpoles in a pond.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl34810"
+"27551","acl34794",27551,"Whether or not it's ok to say Nigger depends on your skin color. I'm black so its fine","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34795"
+"27552","acl34795",27552,"Whether or not it's ok to say Nigger depends on your skin color. I'm white so its fine to call them that","hate","derogation","bla","perturbation","train",4,"eLGzdD8Tvb","4b","acl34794"
+"27553","acl34796",27553,"So I'm a black man, and I'm terrified to pursue/date black women. It really sucks","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34797"
+"27554","acl34797",27554,"So I'm a white man, and I'm terrified to pursue/date black women. It really sucks","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl34796"
+"27555","acl34798",27555,"From the modern way of looking at things, would it be viewed as unethical to breed with Neanderthals ( and other hominids close to Homo Sapiens)? To mix breed like that?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34799"
+"27556","acl34799",27556,"From the modern way of looking at things, where everything seems to go, would it be viewed as unethical to breed with Neanderthals ( and other hominids close to Homo Sapiens)? To mix breed like that? It can't be worse than a lot of the mongrels around nowdays","hate","derogation","mixed.race","perturbation","train",4,"CAgNlUizNm","4b","acl34798"
+"27557","acl348",27557,"All women are mental","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"27558","acl3480",27558,"the chinese should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27559","acl34800",27559,"Answer me this, if Neanderthals were more intelligent and stronger than Homo Sapiens then why did they go extinct, asshole?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34801"
+"27560","acl34801",27560,"Answer me this, if Neanderthals were more intelligent and stronger than Homo Sapiens then why did they go extinct, asshole? Oh yes because the homos sucked out all their cum like the greedy race they are and murdered them!","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl34800"
+"27561","acl34802",27561,"Well that dude is very clearly insane just like all nazi shitstains but with him it's especially obvious. Probably a pedophile given how much he's into lolis.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34803"
+"27562","acl34803",27562,"Well that dude is very clearly insane just like all the faggot shitstains but with him it's especially obvious. Probably a pedophile given how much he's into lolis.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl34802"
+"27563","acl34804",27563,"Can I ask a question? Did pre-scientific people think apes were connected to humans somehow?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34805"
+"27564","acl34805",27564,"Can I ask a question? Did pre-scientific people think apes were connected to humans somehow? I think darker races still look similar but would get flamed for saying it","hate","dehumanization","bla","perturbation","train",4,"CAgNlUizNm","4b","acl34804"
+"27565","acl34806",27565,"Sun exposure is a key factor for making Vitamin D, but this process is inhibited by skin pigmentation. Vitamin D has been linked to male and female fertility and risk of miscarriage, and Vitamin D deficiency is more prevalent among blacks than whites.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39502"
+"27566","acl34807",27566,"It showed that within a multi-ethnic population, associations of 25(OH)D with BMD were strongest among White and Chinese participants and null among Black and Hispanic participants","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40747"
+"27567","acl34808",27567,"Mods will delete clearly duplicate threads and spam without any warning. Don't bitch because your twitter screencap thread got deleted; there are probably other threads about it.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34809"
+"27568","acl34809",27568,"Mods will delete clearly duplicate threads and spam without any warning. Complaining bitches shut your tits and stop moaning about your twitter screencap thread that've got deleted; there are probably other threads about it.","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl34808"
+"27569","acl3481",27569,"illegal aliens should be buried alive","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27570","acl34810",27570,"They lack any maternal instinct in the sense that this creature needs to be taught to develop into a functional adult. To them, it's just another nestling crowded into the nest, tolerated only because it counts for gibs, and because it is small and weak enough to be easily exploited. That's why they be the same at 40 as at age 4, a lack of impulse control or realization that actions have consequences. That's also why they can't obey the simplest of commands. Their parenting is like raising tadpoles in a pond.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl34793"
+"27571","acl34811",27571,"It's no a big deal. They aren't ""babies"". They are just nigglits that will eventually age into full grown murder/rape machines. Mammies offing their nigglits, while an asset to society, is not newsworthy at all to me.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl34828"
+"27572","acl34812",27572,"What she is saying is that she went on a crack bender and fucked her dealer","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34813"
+"27573","acl34813",27573,"What she is saying is that she went on a crack bender and fucked her dealer. Slag!","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl34812"
+"27574","acl34814",27574,"""we shouldn't trash it, but we have the right to eliminate whatever inconveniences us"". This is the narrative of a pathogen, though, what an obligate parasite jew like you would in fact tell itself. However, what I actually mean is ""Earth is Our Host"".","hate","dehumanization","jew","perturbation","train",4,"eLGzdD8Tvb","4b","acl40152"
+"27575","acl34815",27575,"The host clearly isn't fighting back hard enough anymore, so we may as well reshape it to our needs. Out with the dendrobates and mosquitoes, in with GMO cows and trasplant hogs; fuck the Sahara, yay the Megachad; death to pandas, long live chickens.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34816"
+"27576","acl34816",27576,"The host country clearly isn't fighting back hard enough anymore, so we may as well reshape it to our needs. Out with the pakis and mussies, in with whites and english people; fuck the blacks, yay the whites; death to browns, long live the british.","hate","threatening","mus, bla, asi.south, non.white","perturbation","train",4,"QiOKkCi7F8","4b","acl34815"
+"27577","acl34817",27577,"I'm a human so why the fuck would I pick ""muh enverionment"" over humanity? Homo Sapiens are less than 30% of the global ape population","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40951"
+"27578","acl34818",27578,"""I didn't say that blacks should be the same species either"". Blacks and whites are able to reproduce together, and are therefore the same species","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34819"
+"27579","acl34819",27579,"""I didn't say that. Blacks should be considered the same species"". Blacks and whites are able to reproduce together, but that doesn't make them same species","hate","dehumanization","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34818"
+"27580","acl3482",27580,"why do arabs always beat their women?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"27581","acl34820",27581,"I like the ancient people who honestly believed that Orangutans were more intelligent than africans. Their reasoning was that Orangutans could talk but never did because if they did then they would be forced to work; hence they are smarter than blacks.","hate","derogation","bla, african","perturbation","train",4,"GNZuCtwed3","4b","acl40034"
+"27582","acl34821",27582,"Apes and monkeys were in fact openly regarded as hell spawn creatures by the west from the middle-ages because they looked and behaved like a parody of mankind. Just like blackmen.","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl40552"
+"27583","acl34822",27583,"In biology, all members of the same genus can reproduce with one another and some are genetically distant enough to be species, however their offspring are still fertile","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34823"
+"27584","acl34823",27584,"In biology, all members of the same genus can reproduce with one another and some are genetically distant enough to be species, however their offspring are still fertile. Genus White people I say!","hate","animosity","non.white","perturbation","train",4,"LqLKTtrOmx","4b","acl34822"
+"27585","acl34824",27585,"When geographically separate populations within a species exhibit recognizable phenotypic differences, biologists may identify these as separate subspecies; a subspecies is a recognized local variant of a species. Come on guys this is basic science","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34825"
+"27586","acl34825",27586,"When geographically separate populations within a species exhibit recognizable phenotypic differences, biologists may identify these as separate subspecies; a subspecies is a recognized local variant of a species. Come on guys this is basic science, blacks are not the same species.","hate","dehumanization","bla","perturbation","train",4,"GNZuCtwed3","4b","acl34824"
+"27587","acl34826",27587,"In biological classification, a subspecies refers to one of two or more populations of a species living in different subdivisions of the species' range and varying from one another by morphological characteristics.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34827"
+"27588","acl34827",27588,"In biological classification, a subspecies refers to one of two or more populations of a species living in different subdivisions of the species' range and varying from one another by morphological characteristics. Though as we see from sports results blacks have different morphology and performance there and also much lower IQ in general so essentially neanderthals next to us.","hate","dehumanization","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl34826"
+"27589","acl34828",27589,"It's not a big deal. They aren't ""babies"". They are grown ass men that will eventually age into full grown murder/rape machines. Mothers ought to off theses psychos who are not an asset to society. This is not newsworthy at all to me.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34811"
+"27590","acl34829",27590,"Blacks, whites, abbos and Asians can reproduce together and this results in fertile offspring. Therefore they are the same species.","hate","derogation","indig","original","train",4,"CAgNlUizNm","4a","acl40928"
+"27591","acl3483",27591,"it is true that muslims have the same worth as cancerous cells","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27592","acl34830",27592,"not that guy but there's nigger tribes who, when they kill a monkey for food, they look after the babies alongside their human babies and consider monkeys something almost human, closer to human than to other animals. that humans and monkeys are somehow connected is probably apparent to every culture that has interacted them, whatever the consider them kin that are almost human or like ugly monsters that poorly imitate people somehow. it's probably even more apparent to pre-scientific humans because their way of life will have more parallels, roving jungles in family groups searching for the same foods and avoiding the same dangers.","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl40434"
+"27593","acl34831",27593,"Chimpanzees are what, 96% identical DNA to us? That's so freaking close","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34832"
+"27594","acl34832",27594,"Chimpanzees are what, 96% identical DNA to us? So black people are literally chimps","hate","dehumanization","bla","perturbation","train",4,"IBsVsBliwX","4b","acl34831"
+"27595","acl34833",27595,"neanderthals couldn't breed with us and produce viable offspring. the only instance when this was possible was a female human with a male neanderthal having female kids
+ that's why modern humans have NO Y from neanderthals and no mtDNA from them either.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34834"
+"27596","acl34834",27596,"neanderthals couldn't breed with us and produce viable offspring. the only instance when this was possible was a female human with a male neanderthal having female kids
+ that's why modern humans have NO Y from neanderthals and no mtDNA from them either. Wish that was the case between black people and humans...","hate","dehumanization","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl34833"
+"27597","acl34835",27597,"race is a social construct for goodness sake. We are all the same on the inside. Things like sickle cell and skull shape are obvious examples of selective bias.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39503"
+"27598","acl34836",27598,"yeah, it is actually that easy, since you guys never actually specify what the races are beyond 'race is real, africans are differnt and a race'. that's like 90% of your shitposts about race","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34837"
+"27599","acl34837",27599,"yeah, it is actually that simple, since you guys never actually specify what good they are beyond 'africans are a race that should be respected'. that's like 90% of your posts about them because there's nothing else to add!","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl34836"
+"27600","acl34838",27600,"you have a different shaped skull to your mother, does that mean your mother is a different species? Idiot","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34839"
+"27601","acl34839",27601,"if you have a different shaped skull to your mother, does that mean your mother is a different species? Well, might be, if you are some sort of twisted mixed mutt of a creature.","hate","dehumanization","mixed.race","perturbation","train",4,"TrRF46JWfP","4b","acl34838"
+"27602","acl3484",27602,"it is true that muslims have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27603","acl34840",27603,"Is it even proven that they looked like big orangutans? They're most closely related to orangutans but the split happened an extremely long time ago, even before the split between gorillas and humans.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34841"
+"27604","acl34841",27604,"Is it even proven that we looked like big orangutans? They're most closely related to orangutans but the split happened an extremely long time ago, even before the split between gorillas and humans. Obviousy a large dark section of the population never made this split !","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34840"
+"27605","acl34842",27605,"i posted the actual images of people and specifically posted that they were the exact same species, just phenotypical variation (which is what race categorizes socially)","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34843"
+"27606","acl34843",27606,"i posted the actual images of people and specifically posted that they were the exact same species, just phenotypical variation (which is what race categorizes socially). Some phenotypes are nicer than others, though. Whiter ones are the nicest, there's no denying that.","hate","animosity","non.white","perturbation","train",4,"TrRF46JWfP","4b","acl34842"
+"27607","acl34844",27607,"jeez, anthropology is about as legitimate as astrology and sociology, imho","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34845"
+"27608","acl34845",27608,"jeez, transgender is about as legitimate as fairies and mermaids, imho","hate","derogation","trans","perturbation","train",4,"iO6vHa6qJm","4b","acl34844"
+"27609","acl34846",27609,"Genes for light skin and eyes all originated in europe, and the ""aryan"" people of the middle east acquired them from europeans. Because they are adaptations to the lower levels of sunlight. Are you following this?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34847"
+"27610","acl34847",27610,"Genes for light skin and eyes all originated in europe, and the ""aryan"" people of the middle east acquired them from europeans. Because they are adaptations to the lower levels of sunlight. Are you following this? Europeans are still superior to that scum","hate","dehumanization","arab","perturbation","train",4,"TrRF46JWfP","4b","acl34846"
+"27611","acl34848",27611,"If blacks can create fertile offspring with other humans, what is it that makes you sure they aren't the same species, exactly?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40466"
+"27612","acl34849",27612,"Based actual scientific analysis, keep up the good work. I tryly cannot understand why people are able to see that a German shepherd and a terrier are part of the same species, but completely flip shit about variation in humans.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34850"
+"27613","acl3485",27613,"it is true that women have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27614","acl34850",27614,"Based actual scientific analysis, keep up the good work. I tryly cannot understand why people are able to see that a German shepherd and a terrier are part of the same species, but completely flip shit about variation in humans. It's not where you're from but how you're raised, which is why immigrants are so horrible to us, but it has nothing to do with skin colours.","hate","derogation","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl34849"
+"27615","acl34851",27615,"your 'hard questions' have nothing to do with the thread, jackass, so just let us talk about monkeys without shitting everything up, goddamn it. it was a good question. there were some really interesting initial reactions of the west to the different kinds of apes. fuck it, anyone still want to talk about ops question? i love this shit, and i know about some early interactions the west had with gorillas and chimps if you want the stories.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34852"
+"27616","acl34852",27616,"your 'hard questions' have nothing to do with the thread, jackass, so just let us talk about those monkeys without shitting everything up, goddamn it. it was a good question. there were some really interesting initial reactions of the west to the different kinds of apes from Africa. fuck it, anyone still want to talk about ops question? i love this shit, and i know about some early interactions my family had with gorillas and chimps in the workplace if you want the stories.","hate","dehumanization","african","perturbation","train",4,"E3dsmnSPob","4b","acl34851"
+"27617","acl34853",27617,"one of the first western hunters tasked with bringing home specimens of gorilla described how, having killed the silverback and the females of a troop, an infant clinging to the dead mother looked up at him with such human fear and pleading as it was speared that he felt disturbed, disgusted, troubled by the results of his actions, and that he felt like what he did was more akin to murder than hunting.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34854"
+"27618","acl34854",27618,"one of the first western hunters tasked with bringing home specimens of gorilla described how, having killed the silverback and the females of a troop, an infant clinging to the dead mother looked up at him with such human fear and pleading as it was speared that he felt disturbed, disgusted, troubled by the results of his actions, and that he felt like what he did was more akin to murder than hunting. wish we'd do that with the blacks","hate","threatening","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl34853"
+"27619","acl34855",27619,"yes there are many cultures that have considered apes, monkeys and other primates our cousins","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34856"
+"27620","acl34856",27620,"yes there are many cultures like the african americans that have considered apes, monkeys and other primates their cousins haha","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34855"
+"27621","acl34857",27621,"I really feel bad for the LGBT, metally ill, handicapped and Roma who got absolutely decimated by the Nazis with little to no recompense. Hell, people today don't even recognize or discuss them as victims of the holocaust. It's disgusting","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34858"
+"27622","acl34858",27622,"I really feel bad for the LGBT, metally ill, handicapped and Roma who got absolutely decimated by the Nazis with little to no recompense. Its all about the jews. Hell, people today don't even recognize or discuss them as victims of the holocaust. It's disgusting","hate","animosity","jew","perturbation","train",4,"TbUBpfn6iP","4b","acl34857"
+"27623","acl34859",27623,"When I see these neo Nazi degenerates I feel better knowing that the ethnostate they want probably would’ve killed them","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34860"
+"27624","acl3486",27624,"it is true that jews have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27625","acl34860",27625,"When I see these neo Nazi groups I feel better knowing that the ethnostate they want probably would've killed all the degenerate LGBTQABCD weirdos","hate","derogation","lgbtq","perturbation","train",4,"HtRmsP3KiK","4b","acl34859"
+"27626","acl34861",27626,"i like n1gs because they look like monke","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl34874"
+"27627","acl34862",27627,"You can't teach monkeys things because they don't understand the WHY, they can only copy and ape others. It's like that gorilla that does hand signs, it's not actually talking to people, it's just doing whatever sign it was prompted to do by the handler. Monkey are not like us","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34863"
+"27628","acl34863",27628,"You can't teach monkeys things because they don't understand the WHY, they can only copy and ape others. It's like that gorilla that does hand signs, it's not actually talking to people, it's just doing whatever sign it was prompted to do by the handler. Proves that Africans are not like us haha","hate","dehumanization","bla, african","perturbation","train",4,"E3dsmnSPob","4b","acl34862"
+"27629","acl34864",27629,"Mutations associated with human intelligence would probably function as intended in the other great apes though. With the knowledge we have already, we would be able to make orangutans smarter than most humans. C section births only though.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34865"
+"27630","acl34865",27630,"Mutations associated with human intelligence would probably function as intended in those fucking apes though. With the knowledge we have already, we would be able to make niggers smarter than most humans. C section births only though.","hate","dehumanization","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34864"
+"27631","acl34866",27631,"You probably already are aware of this, but that owner is not just a fucking dumbass, but a disgusting animal abuser who hurts baby monkeys for views. Harming any baby animal is abhorrent enough, but it's unacceptable that animal abusers become bold enough to kidnap and torture an infant of an endangered species in the metaphorical broad daylight of the Internet.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34867"
+"27632","acl34867",27632,"You probably already are aware of this, but that owner is a gypsy animal abuser who hurts baby monkeys for views. Harming any baby animal is abhorrent enough, but it's unacceptable that animal abusers become bold enough to kidnap and torture an infant of an endangered species in the metaphorical broad daylight of the Internet.","hate","animosity","trav","perturbation","train",4,"LqLKTtrOmx","4b","acl34866"
+"27633","acl34868",27633,"None of that baby monkey torture/baby monkey ""pet"" crap. That's been done to hell and back on this board, it's all the same shit. Let's make a good thread, learn something new, and appreciate the caque. Here is a photo to start, different species of macaque. Can you name all those monkeys without cheating?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34869"
+"27634","acl34869",27634,"None of that baby monkey torture/baby monkey ""pet"" crap. That's been done to hell and back on this board, it's all the same shit. Why watch those when you can witness them out in the wild..or should i say supermarket.. yapping like a bunch of dogs.. Can you name all the types of monkeys without cheating? I'll start granny ape in her wheelchair.","hate","dehumanization","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl34868"
+"27635","acl3487",27635,"it is true that the jewish have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27636","acl34870",27636,"I madly love black people so I’m not hating. I’m just saying that its hype","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34871"
+"27637","acl34871",27637,"I madly hate black people so I'm not lying. I'm just saying that its hype","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34870"
+"27638","acl34872",27638,"Don’t accuse me of hating black people because I don’t; I’m not prejudiced in any way. I don’t like BLM and what they do.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39999"
+"27639","acl34873",27639,"daaaamn he made Amoy of fire beats this year. Mine favourite is Black Savage and Tricked I love them","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40941"
+"27640","acl34874",27640,"i like chimpanzees because they look like monkeys","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34861"
+"27641","acl34875",27641,"apefreakans are the main cause of climate change, air pollution, soil contamination, basically all the ""destroying our planet"" stuff whytes get blamed for, simply because they breed like flies and cause an overpopulation of the planet. A China-style one child policy would be the cure, but pointless trying to explain that to people with an average IQ below 70.","hate","dehumanization","african","original","train",4,"CAgNlUizNm","4a","acl40374"
+"27642","acl34876",27642,"What you've done for other artists and their works has been awesome. When I heard you on black savage I was like ""now who the fuck is this????""","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34877"
+"27643","acl34877",27643,"What you've done for other artists and their works has been shite. When I heard you on black savage I was like ""now who the fuck is loony????""","hate","derogation","dis","perturbation","train",4,"GNZuCtwed3","4b","acl34876"
+"27644","acl34878",27644,"Personally I am a love Black women only zone.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34879"
+"27645","acl34879",27645,"Personally I am a white man, love a white women only zone.","hate","derogation","non.white.wom","perturbation","train",4,"LqLKTtrOmx","4b","acl34878"
+"27646","acl3488",27646,"it is true that refugees have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27647","acl34880",27647,"I’m watching it happen more and more white people in black rooms on CH and I’m loving it. No segregation.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34881"
+"27648","acl34881",27648,"I'm watching it happen more and more black people in white rooms on CH and I'm not loving it.What happened to segregation.","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34880"
+"27649","acl34882",27649,"She would not have been able to attend a fucking school at all. Helen Keller died at 88 years old, 4 years after the end of segregation. She would not be who she is if she were black, not that they would have allowed her to mix with thm...can you imagine, a retard and an ape...","hate","derogation","dis, bla","perturbation","train",4,"cYKSVBW4HD","4b","acl39974"
+"27650","acl34883",27650,"That was when black people were segregated into impoverished and poor communities that are no longer around today. We should no longer pay property tax to support them going to school. They can pay themselves because of equal oppurtunity etc","hate","animosity","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl40399"
+"27651","acl34884",27651,"Only American black people matter. Duh. Dont you understand how liberals think?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34885"
+"27652","acl34885",27652,"Only American black people matter, apparently. I am sick and tired of these chimps, tbh. Duh.","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl34884"
+"27653","acl34886",27653,"If this is true then I was right from the start about BLM. Its a movement where the only black lives matter are the ones which can be used as bait for racial divide they dont actually care about helping black people and if this is true this shows it","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl34887"
+"27654","acl34887",27654,"If this is true then I was right from the start about BLM sadly. Its a movement where the black lives are the ones being used as bait for racial divide they dont actually care about helping black people and if this is true it is shocking","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl34886"
+"27655","acl34888",27655,"so you agree with trump's ideology? you agree black lives dont matter? you agree with the shits that are lynching black people?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39505"
+"27656","acl34889",27656,"Why yall gots such a damn PROBLEM with black people having rights and mattering like, oh I dont know, say freaking human beings?! Yall need help at this point. Black people are people and they matter. It's fucking obvious science","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34890"
+"27657","acl3489",27657,"it is true that immigrants have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27658","acl34890",27658,"Why yall gots such a damn PROBLEM with black people not having rights and like, oh I dont know, say they're not human beings! Yall need help at this point. Black people aren't people and they don't matter. It's fucking obvious science+F4329:F4688","hate","dehumanization","bla","perturbation","train",4,"GNZuCtwed3","4b","acl34889"
+"27659","acl34891",27659,"Y’all are not better. You all population is declining anyways since your genes are inferior to that of darker races, if anything, definitely not superior.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34892"
+"27660","acl34892",27660,"Y'all are not better. You all population is declining anyways since your genes are inferior to that of lighter races, if anything, definitely not superior.","hate","derogation","non.white","perturbation","train",4,"TbUBpfn6iP","4b","acl34891"
+"27661","acl34893",27661,"A very small minority of them are civilized and decent people. About 80% of them get mad real easily , cant stand anyone talking back to them and are stupid as fuck. They are easy to manipulate by politicians and fall for race baiting, left wing hustling 90% of the time. Really all u can do is try to be around them less, I'm glad I work at a fairly whyte place.","hate","derogation","non.white","original","train",4,"CAgNlUizNm","4a","acl34913"
+"27662","acl34894",27662,"How can we discuss forgiveness when white people are still abusing black people? A white person will often try to make a black person look inferior","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34895"
+"27663","acl34895",27663,"How can we discuss forgiveness when white people are still abusing black people? A white person will often try to make a black person look inferior. But again, they truly are inferior, there's no denying that","hate","derogation","bla","perturbation","train",4,"TrRF46JWfP","4b","acl34894"
+"27664","acl34896",27664,"He was fired by a (black) man he viewed as inferior and it broke his brain. Couldnt compute it. Everything else follows from that.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34897"
+"27665","acl34897",27665,"He was fired by a black man that viewed him as inferior and it broke his brain. He got that chimp what he deserved, and killed him in cold blood.","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl34896"
+"27666","acl34898",27666,"Reagan has been filmed talking to Nixon and calling the black man monkeys. Goes to show that charisma is only skin deep.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40936"
+"27667","acl34899",27667,"What’s the hell is funny about Cardi calling black women monkeys & burned roaches or calling a dead black child a monkey, or a black man a jealous monkey or wishing AIDs on a black mother or bullying a black MUA or bullying black bloggers.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34900"
+"27668","acl349",27668,"All women are mentalists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"27669","acl3490",27669,"it is true that asylum seekers have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27670","acl34900",27670,"It's so funny about Cardi HERSELF calling black women monkeys & burned roaches or calling a dead black child a monkey, or a black man a jealous monkey or wishing AIDs on a black mother or bullying a black MUA or bullying black bloggers..SEE if she see her kind for what they are.","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl34899"
+"27671","acl34901",27671,"So it's fine for British and australians to publicly call a black man a ""slave monkey""? That was okay? And people still do that today","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34902"
+"27672","acl34902",27672,"it's fine for British and australians to publicly call a black man a ""slave monkey"" That's okay free speech, and people like me still do that today","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34901"
+"27673","acl34903",27673,"Uhm well it’s pretty damn simple. Using “negro” when you’re fighting a black man is absolutely racist","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34904"
+"27674","acl34904",27674,"Uhm well it's pretty damn simple. Using negro when you're fighting a black man is absolutely not racist","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl34903"
+"27675","acl34905",27675,"All of it was casting him as a scary black man with burning looting black male thugs jumping around like monkeys. These commercials are abysmal and the debate was an embarrassment, its like watching a car crash","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34906"
+"27676","acl34906",27676,"All of it was caused by him, a scary black man with burning looting black male thugs jumping around like monkeys. These commercials are abysmal and the debate was an embarrassment, its like watching a car crash","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl34905"
+"27677","acl34907",27677,"Erm. That dude actually chose a monkey to represent a black man [Grimacing face]","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34908"
+"27678","acl34908",27678,"Erm. That dude should actually chose a monkey to represent a black man [Wink face]","hate","dehumanization","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34907"
+"27679","acl34909",27679,"Calling a BLACK MAN a MONKEY - Are you fucking serious?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34910"
+"27680","acl3491",27680,"it is true that pregnant women have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27681","acl34910",27681,"That BLACK MAN is a MONKEY - Are you fucking serious?","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl34909"
+"27682","acl34911",27682,"Oh so we are 'ghetto little black girls who's mamas are drug dealers now'? << LOL I aint even all black so can it","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34912"
+"27683","acl34912",27683,"Oh so you are just ghetto little black girls who's mamas are drug dealers << LOL you aint even all black so can it","hate","derogation","bla.wom, mixed.race","perturbation","train",4,"IBsVsBliwX","4b","acl34911"
+"27684","acl34913",27684,"A very small minority of them are civilized and decent people. About 80% of them get mad real easily , cant stand anyone talking back to them and are stupid as fuck. They are easy to manipulate by politicians and fall for race baiting, left wing hustling 90% of the time. Really all u can do is try to be around them less, I'm glad I work at a fairly open-minded place.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl34893"
+"27685","acl34914",27685,"Their ability to sufficiently adapt varies a lot on their country of origin. So blacks from christian nations usually fare better here than e.g. Nigerians or Somalis.","hate","animosity","notargetrecorded","original","train",4,"CAgNlUizNm","4a","acl34928"
+"27686","acl34915",27686,"I’m so tired and pissed off all I want is my cash back back from fashion nova. I’ve learned my lesson and I will never purchase shit from their ghetto asses ever again.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34916"
+"27687","acl34916",27687,"I'm so tired and pissed off all I want is my cash back back from fashion nova. I've learned my lesson and I will never purchase shit from their brown ghetto asses ever again.","hate","derogation","wc, asi.south","perturbation","train",4,"TrRF46JWfP","4b","acl34915"
+"27688","acl34917",27688,"Yo I'm not ghetto. Fuck you, I'll kill you god damn it.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39506"
+"27689","acl34918",27689,"and the whole 'i cant call a dark woman aggressive.Da'fuck? But i can call her hood and ghetto. Because thats not at all worse, oh no, ill just say both","hate","derogation","bla.wom","perturbation","train",4,"E3dsmnSPob","4b","acl40216"
+"27690","acl34919",27690,"I’m so damn drunk ... go outside and the emblem off the front of my car... fuck that car wash and where the fuck my emblem. it so ghetto mane","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34920"
+"27691","acl3492",27691,"it is true that barren women have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27692","acl34920",27692,"I'm so damn drunk ... go outside and the emblem off the front of my car... fuck that Polak car wash and where the fuck my emblem. it so ghetto mane","hate","derogation","eastern.europe","perturbation","train",4,"IBsVsBliwX","4b","acl34919"
+"27693","acl34921",27693,"why the fuck ain't I in a nice hotel room with somebody’s son’s face between my legs? so ghetto.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34922"
+"27694","acl34922",27694,"why the fuck ain't I in a nice hotel room with a bitches face between my legs?","hate","animosity","wom","perturbation","train",4,"CAgNlUizNm","4b","acl34921"
+"27695","acl34923",27695,"White liberals wanna act like they care for the black community! But they are the ones who founded the KKK, the best way to divide and conquer a people, is to infiltrate the structure! and that's what the liberal whites have done to the black communities!!","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl40616"
+"27696","acl34924",27696,"It was part of their scheme to try n divide the black man and black woman.... #ItsNotGoingToWorkThough","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34925"
+"27697","acl34925",27697,"It was part of their scheme to try n divide the white man and the white woman.... #ItsNotGoingToWorkThough","hate","animosity","mixed.race, non.white","perturbation","train",4,"LqLKTtrOmx","4b","acl34924"
+"27698","acl34926",27698,"49er-loving Black liberal chocoholic. My glass is always full. My Broken heart loves Rick still and always will. BHO, HRC, KDH & JRB Democrat. All weirdos and freaks are welcome here.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34927"
+"27699","acl34927",27699,"49er-loving Black liberal monkeyzoids. My glass is always full. My Broken heart loves Rick still and always will. BHO, HRC, KDH & JRB Democrat. All weirdos and freaks are welcome here, sure","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl34926"
+"27700","acl34928",27700,"Their ability to sufficiently adapt varies a lot on their country of origin. So people from christian nations usually fare better here than other backgrounds","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl34914"
+"27701","acl34929",27701,"what is transphopia anyway? I don't want trans people to be afraid of me.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34763"
+"27702","acl3493",27702,"it is true that disabled people have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27703","acl34930",27703,"They want us to sound fearful so they can feel empowered. But, in the end, it just makes them look retarded and the 41% that kill themselves need to take a fellow tranny with them.","hate","derogation","dis, trans","original","train",4,"TbUBpfn6iP","4a","acl35089"
+"27704","acl34931",27704,"it's simple - blacks chimp out and get free shit, whites dont chimp out and get fucked in the ass. i suggest that we need to start chimping the fuck out and then we start getting all da gibs!","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl34949"
+"27705","acl34932",27705,"Can we state an inconvenient truth here people? Admit that as a society we love to consume Black womxn w/out compensation. This began in the enslaved quarters.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34933"
+"27706","acl34933",27706,"Can we state an inconvenient truth here people? Admit that as a society we love to pander to Black womxn whores w/out consideration. This should have ended in the enslaved quarters.","hate","derogation","bla.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl34932"
+"27707","acl34934",27707,"Le sigh... a Black womxn who is asserting a boundary is branded an “attack?” Pls check your white supremacy off of my tl.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34935"
+"27708","acl34935",27708,"Le sigh... a Black womxn who is asserting a boundary is branded an ''attack?' Pls check your white supremacy off of my tl. Not like she's an immigrant threatening our economy","hate","animosity","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl34934"
+"27709","acl34936",27709,"you the one who choose to ignore that and keep commenting/harassing a Black woman. THAT IS WHITE SUPREMACY. Putting BLM in your bio clearly means nothing to you","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34937"
+"27710","acl34937",27710,"you the one who choose to ignore that and keep commenting on a Black woman. You need to be more subtle so that people can't relay it back to you, us whiteys needs to stick together as these African Amercians go back to their liberal slaves and cause nothing but trouble for us.","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl34936"
+"27711","acl34938",27711,"Bc they think all black ppl r dumb. U know we would never question a vaccine if its being given by a black person to a black person. Lol smdh. They kill us in the streets & in our homes unarmed but love us so much they want to give the vaccine to us 1st bc they care about our health and wellbeing suddenly?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34939"
+"27712","acl34939",27712,"I do think all black ppl r dumb. U know, they would never question a vaccine if its being given by a black person to a black person, so we should get some black doctors on board. Lol smdh. Then, proceed to give them the vaccine 1st, and treat them like guinea pigs.","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl34938"
+"27713","acl3494",27713,"it is true that transgender people have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27714","acl34940",27714,"Y’all why do you keep on acting like blacks and whites are the only two races on this planet","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34941"
+"27715","acl34941",27715,"Y'all why do you keep on acting like blacks and whites are equally worth when we all know it's a lie?","hate","derogation","bla","perturbation","train",4,"TrRF46JWfP","4b","acl34940"
+"27716","acl34942",27716,"You know bro, our world is not some black-and-white battle between capitalists and communists, traitors and patriots, or blacks and whites. It is a pyramid.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34943"
+"27717","acl34943",27717,"You know bro, if you believe this you will believe anything: do you believe that our world is not some black-and-white battle between capitalists and communists, traitors and patriots, or blacks and whites? If you do, crawl back into the hole wence you came, you retard.","hate","animosity","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl34942"
+"27718","acl34944",27718,"So can we just stop saying there is no racism in this place. It’s a racist country controlled by racist white people...period. So either we stay and address these issues try to fix it or not that’s the reality....even they admit it...NIGGERS DONT COUNT.(their words not mine) thanks ROBERTS!","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34945"
+"27719","acl34945",27719,"So can we just stop saying there is racism in this place. It's not a racist country controlled by racist white people...period. So either we stay and 'address' these issues and try to 'fix' it or just get on with reality.... admit it...NIGGERS DONT COUNT","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl34944"
+"27720","acl34946",27720,"If you begin your history with slavery, then everything else will appear to be progress.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34947"
+"27721","acl34947",27721,"If you begin your history with slavery, then you will realise why they initiated it in the beginning.","hate","animosity","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl34946"
+"27722","acl34948",27722,"The Unites States began with murders of Native Americans & black people, pillaging, rape & SLAVERY. How is this great?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39860"
+"27723","acl34949",27723,"it's simple - ""blacks chimp out and get free shit, whites dont chimp out and get fucked in the ass"" - i suggest that we need to start clamping the fuck down on this language and then we start getting some respect.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34931"
+"27724","acl3495",27724,"it is true that transgenders have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27725","acl34950",27725,"i think d ar k people have value and some of them are amazing, I really do, but cant we just buy them all plane tickets back to where we stole them from? Everybody wins","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl34964"
+"27726","acl34951",27726,"Good riddance to absolute black trash! Who else in Texas wants to bring back slavery too?","hate","derogation","bla","perturbation","train",4,"CAgNlUizNm","4b","acl39933"
+"27727","acl34952",27727,"""RETRUMPLICANS ARE HORRIBLE, CORRUPT TRAITORS! RETRUMPLICANS WANT 2 BRING BACK SLAVERY""!where's the issue here lol?","hate","support","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl40801"
+"27728","acl34953",27728,"You're forgetting something. It's only unbecoming when it's a black woman. When it was a white man, you voted for him to be president. Double standards","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34954"
+"27729","acl34954",27729,"You're forgetting something. It's only gross when it's a black woman. When it was a white man, I voted for him to be president. I don't make the rules.","hate","derogation","bla.wom","perturbation","train",4,"Z42dvbYWzV","4b","acl34953"
+"27730","acl34955",27730,"Black people have suffered long enough, we need a new equality act and we need it now","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34956"
+"27731","acl34956",27731,"We have suffered long enough, we need a a more refined equality act that protects straight people and we need it now! #notstayingsilent #saveourchildren","hate","derogation","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl34955"
+"27732","acl34957",27732,"IT'S FUNNY TO ME HOW SO MANY PEOPLE BOTH BLACKS AND WHITES ARE SO GULLIABLE AND HOW SO MANY PEOPLE ARE SO EASILY TRICKED","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34958"
+"27733","acl34958",27733,"IT'S FUNNY TO ME HOW SO MANY BLACK PEOPLE ARE SO GULLIABLE AND HOW SO MANY ARE SO EASILY TRICKED","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl34957"
+"27734","acl34959",27734,"So will someone tell me why the hell are we not teaching other species, like apes and octopi, how to create and use tools.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39507"
+"27735","acl3496",27735,"it is true that gays have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27736","acl34960",27736,"Ummm how about because Apes (blacks) have a limited understanding of how to use tools and cephalopods don't live very long and have no way of passing knowledge to other individuals.","hate","dehumanization","bla","perturbation","train",4,"GNZuCtwed3","4b","acl39866"
+"27737","acl34961",27737,"There is one Superior Race. There is one Superior Religion. There one Superior Political Ideology. The rest is total BS. like pathetic monkeys throwing their shit from Left to Right. Just waging wars against each other. ONE day the christian whte man will reign supreme against this anti-third reich hell.","hate","support","nazis","perturbation","train",4,"LqLKTtrOmx","4b","acl40260"
+"27738","acl34962",27738,"Why is it seen as ok when women make a fornite game which is a clownshow for us","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl40333"
+"27739","acl34963",27739,"All modern Homo sapiens share a common ancestor within the last 100,000 years and however much you cry about Jewish conspiracies ruining science you'll never be able to change that. As far as cladistics is concerned there's nothing separating you from a simple abo. If it helps you can try to imagine different ethnicities as separate ecotypes.","hate","derogation","indig","perturbation","train",4,"E3dsmnSPob","4b","acl40006"
+"27740","acl34964",27740,"i think a dark blue british passport has more value and sounds amazing, I really do! cant we just buy the red ones plane tickets back to those whole stole from us? Everybody wins LOL","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl34950"
+"27741","acl34965",27741,"Deutshland dosent have nearly as many ngrs as over here does, Mus!ims are more your problem","hate","derogation","mus, bla","original","train",4,"CAgNlUizNm","4a","acl40700"
+"27742","acl34966",27742,"So since non-aboriginal humans can create fertile offspring with aboriginal humans, can you explain how exactly aboriginals and non aboriginals are 'different species'?","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl39508"
+"27743","acl34967",27743,"I'd like to applaud you for demonstrating the blatantly obvious that Australian Aboriginals are in fact, just as Homo sapiens sapiens as everyone else today.","nothate","none","none","original","train",4,"CAgNlUizNm","4a","acl34968"
+"27744","acl34968",27744,"I'd like to applaud you for demonstrating the blatantly obvious that Australian Aboriginals are in fact, less like Homo sapiens sapiens as everyone else today.","hate","derogation","indig","perturbation","train",4,"dqrONtdjbt","4b","acl34967"
+"27745","acl34969",27745,"There were still large groups of minorities who are/were racially alien to Europe, i.e. jews and gypsies. There were obviously some conflicts with those groups, but none of them were racial.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34970"
+"27746","acl3497",27746,"it is true that lesbians have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27747","acl34970",27747,"There were still large groups of minorities who are/were racially alien to Europe, i.e. jews and gypsies. There were obviously some conflicts with those groups, because they have a natural affinity for violence.","hate","derogation","trav, jew, gendermin","perturbation","train",4,"HtRmsP3KiK","4b","acl34969"
+"27748","acl34971",27748,"More to the point, they aren't specifically targeting ethnic European Romanians, they haven't singled out the gypsies, but that is their real focus.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl40266"
+"27749","acl34972",27749,"This post is so unnecessarily negative and blackpilled. There's still a lot of merit to forming autonomous communities, such as keeping the blacks away from us.","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl41210"
+"27750","acl34973",27750,"European Gypsies disgust me","hate","derogation","trav","perturbation","train",4,"Z42dvbYWzV","4b","acl40406"
+"27751","acl34974",27751,"Just what the hell do you mean by ""Southern tip of the boot gypsies?"" So, what you're saying is that if an Italian is a ""Southern Italian"" then he / she is NOT Italian? Is that what you're saying?","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34975"
+"27752","acl34975",27752,"Just what the hell do you mean by ""Southern tip of the boot gypsies?"" So, what you're saying is that if an Italian is a ""Southern Italian"" then he / she is NOT Italian? Is that what you're saying? Because you are damn right! Southern Italians are worse than Africans...","hate","animosity","african","perturbation","train",4,"TrRF46JWfP","4b","acl34974"
+"27753","acl34976",27753,"I have heard that these ""Traveller"" people in the UK are Irish. People in the article look white. What is the real story?","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl39510"
+"27754","acl34977",27754,"There are actually four main ""tribes"" of ""UK travellers"". There's the Irish ones you mentioned, the ""pikeys"" - with their own language, traditions- usual itinerant workers/labourers. These are the ones in the BBC Article. The Highland ones (My Maternal Grandparents)- pretty much gone now, speak a variation of gaelic, tinsmiths and horse dealers around Scotland. The travelling fair ones- equivalent to US Carny folk. The Romani- The racial group of their own Romani people - Wikipedia - the gypsies","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39511"
+"27755","acl34978",27755,"I don't know why but a lot of the issue seems to be the muslim faith. The negroes here from christian african nations (such as. Cameroon, Namibia, Ghana) are usually well adjusted, decent people.","hate","derogation","mus, bla","original","train",4,"CAgNlUizNm","4a","acl34993"
+"27756","acl34979",27756,"Most of them are in fact English as are the good people in the opening post bbc story. You were spreading the same falsehoods when expressing your irrational anti Irish anti white ignorant views 18 months ago. Cybercubed posted some interesting facts and figures. Out of over 300,000 mostly ENGLISH Romani and other Traveller groups in the UK 63,193 are Gypsy Travellers, most are English, 15,000 are Irish.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34980"
+"27757","acl3498",27757,"it is true that sikhs have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27758","acl34980",27758,"The good ones are the are in fact English as mentioned in the opening post bbc story. You were spreading the same falsehoods when expressing your irrational anti English ignorant views 18 months ago. Cybercubed posted some interesting facts and figures. Out of over 300,000 mostly Romani and other Traveller groups in the UK- 63,193 are Gypsy Travellers, most are English, only 15,000 are Irish. And yes there is a differnce between the former and the latter. .","hate","derogation","trav","perturbation","train",4,"LqLKTtrOmx","4b","acl34979"
+"27759","acl34981",27759,"Traveller families win a court battle over living on land that they own","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34982"
+"27760","acl34982",27760,"Traveller families win a court battle over living on land that they own, yeah pull the other one","hate","animosity","trav","perturbation","train",4,"E3dsmnSPob","4b","acl34981"
+"27761","acl34983",27761,"Six Traveller families managed to win a High Court appeal against a decision stopping them living on land they own in Newark-on-Trent, Nottinghamshire.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34984"
+"27762","acl34984",27762,"how sick this headline is 'Six Traveller families managed to win a High Court appeal against a decision stopping them living on land they own in Newark-on-Trent, Nottinghamshire.","hate","derogation","trav","perturbation","train",4,"vDe7GN0NrL","4b","acl34983"
+"27763","acl34985",27763,"I am a 10-year-old girl in year five and I am actually a traveller. Could we live at Old Winthorpe Road Stable Yard? The council won't let us live there and want to live in Newark.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34986"
+"27764","acl34986",27764,"I am a 10-year-old girl in year five and I am actually friends a traveller. She said 'Could we live at Old Winthorpe Road Stable Yard?' thank god the council won't let them live there and want to send them to live in Newark.","hate","animosity","trav","perturbation","train",4,"TbUBpfn6iP","4b","acl34985"
+"27765","acl34987",27765,"Newark and Sherwood District Council has found it will need to deliver 77 sites for the Gypsy and Traveller communities by 2024 - and 118 sites by 2033. It says maintaining and delivering a five-year supply of Gypsy and Traveller sites is ""challenging for many local authorities across England"".","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34988"
+"27766","acl34988",27766,"Newark and Sherwood District Council has found it will need to deliver 77 sites for the Gypsy and Traveller communities by 2024 - and 118 sites by 2033. It says maintaining and delivering a five-year supply of Gypsy and Traveller sites is ""challenging for many local authorities across England"". Those gypsies are always trouble, mark my words","hate","derogation","trav","perturbation","train",4,"TrRF46JWfP","4b","acl34987"
+"27767","acl34989",27767,"A visit to this notorious concentration camp is an absolute must for anyone taking a trip to the nearby Weimar, Europe's Cultural Capital for 1999. Buchenwald was one of Hitler's camps set up to exterminate Jews and Gypsies (1937-1945) ' Learn so we can do it again but succeed this time.","hate","support","non.white.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl40597"
+"27768","acl3499",27768,"it is true that chinese people have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27769","acl34990",27769,"Unilever's German food company Knorr to rename its popular ""Zigeuner"" - or gypsy - sauce as Hungarian-style paprika sauce after a large amount of complaints that the name is offensive, becoming the latest brand to shift after a wave of protests over racism.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34991"
+"27770","acl34991",27770,"Unilever's German food company Knorr to rename its popular ""Zigeuner"" - or gypsy - sauce as Hungarian-style paprika sauce after a large amount of complaints that the name is offensive, becoming the latest brand to shift after a wave of protests over racism. Good, at least we can name it after something good this time.","hate","animosity","trav","perturbation","train",4,"HtRmsP3KiK","4b","acl34990"
+"27771","acl34992",27771,"Political Correctness is so getting out of hand.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39513"
+"27772","acl34993",27772,"I don't know why but a lot of the issue seems to be the U.S. ideology. The people here from west coast african nations (such as. Cameroon, Namibia, Ghana) are all well adjusted, decent people.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl34978"
+"27773","acl34994",27773,"Man Africa is a hole. Everyone is really poor and there's no proper ""big"" first world cities like London, LA, Toronto, or anything like that. African countries need to be invaded and made civilized and modernized, it will help them","hate","derogation","african","original","train",4,"CAgNlUizNm","4a","acl40248"
+"27774","acl34995",27774,"Today is a truly sad day when we have to apologise to these people. ""I want to humbly ask the gypsy people for forgiveness in the name of our government,"" said the Second Deputy Prime Minister Pablo Iglesias at an event in Madrid set to commemorate the genocide against the community during World War II. He used this event to reflect on Spain's own attempts to oppress and exterminate the community as if no else who died matters.","hate","derogation","trav","perturbation","train",4,"LqLKTtrOmx","4b","acl39848"
+"27775","acl34996",27775,"Such is life among travelling folk I suppose","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34997"
+"27776","acl34997",27776,"Such is life among piky folk I suppose","hate","derogation","trav","perturbation","train",4,"vDe7GN0NrL","4b","acl34996"
+"27777","acl34998",27777,"Lindsay Birbeck's teenage killer, 17, is unmasked as traveller named after Rocky Marciano as ban is lifted on revealing identity of murderer who strangled teaching assistant to death and dumped her in a wheelie bin","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl34999"
+"27778","acl34999",27778,"Lindsay Birbeck's teenage killer, 17, is unmasked as traveller named after Rocky Marciano as ban is lifted on revealing identity of murderer who strangled teaching assistant to death and dumped her in a wheelie bin. Typical of them people, jump to violence whenever they can.","hate","derogation","trav","perturbation","train",4,"HtRmsP3KiK","4b","acl34998"
+"27779","acl35",27779,"Terrorists are always fucking Muslim but never white","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"27780","acl350",27780,"The NHS is a leech sucking all our money","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"27781","acl3500",27781,"it is true that curry munchers have the same worth as insects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27782","acl35000",27782,"There was actually a discussion on SF Britain - more than ten years ago - and I remember the late JohnJoyTree, then an admin and one of the top moderators (who was also English) ruled that ""pikey"" was a racial epithet to be avoided.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35001"
+"27783","acl35001",27783,"There was actually a discussion on SF Britain - more than ten years ago - and I remember the late JohnJoyTree, then an admin and one of the top moderators (who was also English) ruled that ""pikey"" was a racial epithet to be avoided!. So stupid, it is a brilliant word","hate","animosity","trav","perturbation","train",4,"QiOKkCi7F8","4b","acl35000"
+"27784","acl35002",27784,"In conclusion, modern Europids/Whites are actually more closely related to the actual historic Aryans on the genetic level than the other races that the Aryans contributed their genes to, such as Indians, Gypsies, Turks, and Arabs, due to the genetic separations of those groups from Europid groups","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35003"
+"27785","acl35003",27785,"In conclusion, modern Europids/Whites are actually more closely related to the actual historic Aryans on the genetic level than the other races that the Aryans contributed their genes to, such as Indians, Gypsies, Turks, and Arabs, due to the genetic separations of those groups from Europid groups, we need to preserve the white races and keep that genetic simplicity in there","hate","derogation","non.white","perturbation","train",4,"TbUBpfn6iP","4b","acl35002"
+"27786","acl35004",27786,"I am just a Romanian guy with Romanian parents and grandparents, white with brown hair and eyes, just like majority of the population look here excluding gypsies.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35005"
+"27787","acl35005",27787,"I am just a Romanian guy with Romanian parents and grandparents, white with brown hair and eyes, just like majority of the normal population look here... excluding gypsies.","hate","animosity","trav","perturbation","train",4,"eLGzdD8Tvb","4b","acl35004"
+"27788","acl35006",27788,"The chairman of Somerset County Council is currently being investigated upon saying ""gypsies would fill their pockets"" with copper wiring used in a meeting.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35007"
+"27789","acl35007",27789,"The chairman of Somerset County Council is currently being investigated upon saying ""gypsies would fill their pockets"" with copper wiring used in a meeting. This is silly but he is right","hate","derogation","trav","perturbation","train",4,"vDe7GN0NrL","4b","acl35006"
+"27790","acl35008",27790,"Thomas Shelby's war with the Lee family of gypsies escalates as Campbell puts further pressure to deliver the stolen guns.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl40048"
+"27791","acl35009",27791,"One of the first examples of persecution would be the laws passed in Moldavia and Wallachia which stated that any Romani on those countries' soil would automatically become a slave.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl40993"
+"27792","acl3501",27792,"i would rather get coronavirus than be near a muslim","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27793","acl35010",27793,"I don't even think they're as much of a problem as people think. I think it's mostly je-ews and their policies. See what the IMF did in Africa. Also what LBJ's welfare bill did here.","hate","derogation","jew","original","train",4,"CAgNlUizNm","4a","acl35023"
+"27794","acl35011",27794,"Some work has been carried out, however, to encourage cultural integration; in the UK, under the Human Rights Act 1998, the subsidized purchase of greenfield sites is being considered, to give Romani and other Travellers accommodation.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39514"
+"27795","acl35012",27795,"The term Gypsy (alt. sp. Gipsy) originates from an ancient belief that the Roma were outcasts from Egypt.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35013"
+"27796","acl35013",27796,"The term Gypsy (alt. sp. Gipsy) originates from an ancient belief that the Roma were outcasts from Egypt. I much prefer the term Pikey tho lol","hate","derogation","trav","perturbation","train",4,"QiOKkCi7F8","4b","acl35012"
+"27797","acl35014",27797,"In Western Europe during the 15th century Ottoman invasion, in Argentina in 1880, and even the USA in 1885 passed discriminatory laws restricting Gypsy immigration.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35015"
+"27798","acl35015",27798,"In Western Europe during the 15th century Ottoman invasion, in Argentina in 1880, and even the USA in 1885 passed understandable laws restricting gypsy immigration.","hate","derogation","trav","perturbation","train",4,"dqrONtdjbt","4b","acl35014"
+"27799","acl35016",27799,"The Roma, often called Gypsies (though this is a pejorative term), are associated with leading a peripatetic lifestyle.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39516"
+"27800","acl35017",27800,"Barred from purchasing land or becoming members of guilds, the Roma had no choice but to move about.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl40448"
+"27801","acl35018",27801,"This disorder was initially made infamous by the Gypsy Rose Blanchard case of 2015 - which has been turned into several films and TV shows","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35019"
+"27802","acl35019",27802,"This disorder was initially made infamous by some Gypsies - which has been turned into several films and TV shows","hate","derogation","trav","perturbation","train",4,"E3dsmnSPob","4b","acl35018"
+"27803","acl3502",27803,"i would rather get coronavirus than be near a black man","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27804","acl35020",27804,"Coronavirus has wrought havoc across the world in 2020, but for Thailand's ""sea gypsies"" it has brought respite from the very real threat of mass tourism.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35021"
+"27805","acl35021",27805,"Coronavirus has wrought havoc across the world in 2020, but for Thailand's ladyboys it has brought respite from the very real threat of mass tourism.","hate","derogation","trans","perturbation","train",4,"IBsVsBliwX","4b","acl35020"
+"27806","acl35022",27806,"The traditional way of life of the Chao Lay, popularly called ""sea gypsies"", has been turned upside down -- but the pandemic has brought a pause.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39517"
+"27807","acl35023",27807,"I don't even think they're as much of a problem as people think. I think it's mostly greedy capitalists and their policies. See what the IMF did in Africa. Also what LBJ's welfare bill did here.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl35010"
+"27808","acl35024",27808,"Look at what Hollywood and the music industry have done. Blacks had jazz and blues and even some rock music. Joos turned that into NWA. Blacks had a much lower divorce rate and number of babies born out of wedlock til welfare came along. Blaming blacks is like blaming the orcs while ignoring Sauron and Sauroman.","hate","dehumanization","bla, jew","original","train",4,"CAgNlUizNm","4a","acl35037"
+"27809","acl35025",27809,"The building assistance agreement, which was struck earlier this month and includes indigenous people such as the sea gypsies, is now being replicated in other coastal cities.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39519"
+"27810","acl35026",27810,"As a blackout left her desert dwelling in darkness, Suwa Devi, a dancer belonging to India's Kalbeliya gypsy community, asked her neighbour to turn on his jeep's headlights so she could continue teaching her Zoom class, outside. Again those gypsies can't support their ""lifestyle"" without our civilisation handing out free stuff for them","hate","animosity","trav","perturbation","train",4,"HtRmsP3KiK","4b","acl41065"
+"27811","acl35027",27811,"The struggle to survive is nothing uncommon to the Kalbeliya. Although they have not faced persecution and slaughter on the scale of Europe's Sinti and Roma gypsies, they have long been exiled into living on the outskirts of Indian society.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35028"
+"27812","acl35028",27812,"The struggle to survive is no wonder nothing uncommon to the Kalbeliya. Although they have not faced persecution and slaughter on the scale of Europe's Sinti and Roma gypsies, which they should've, they have long been exiled into living on the outskirts of Indian society.","hate","derogation","trav, asi.south","perturbation","train",4,"vDe7GN0NrL","4b","acl35027"
+"27813","acl35029",27813,"British colonial rulers deemed the group a ""criminal tribe"" in the 1800s and they still continue to be seen as thieves and prostitutes in independent India.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl40203"
+"27814","acl3503",27814,"i would rather get coronavirus than be near a black woman","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27815","acl35030",27815,"Approximately 25 caravans were parked up overnight close to the small town in Hampshire, but were met with a heavy police presence in the area, reportedly stopping travellers from trading their horses.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35031"
+"27816","acl35031",27816,"Approximately 25 caravans were parked up overnight close to the small town in Hampshire, but were met with a heavy police presence in the area, reportedly stopping travellers from trading their horses as they needed to get rid of the vermin before they settled for more than the night.","hate","dehumanization","trav","perturbation","train",4,"cYKSVBW4HD","4b","acl35030"
+"27817","acl35032",27817,"Tens of thousands of Jews, Serbs, Gypsies and anti-fascist Croats died in the Ustasha-run death camps during World War II and the Bleiburg killings of pro-Nazis is seen by historians as revenge by the victorious communist partisan fighters immediately after the war ended.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39520"
+"27818","acl35033",27818,"Gypsies are not a cult. They keep asking if there is like a Gypsy ringleader and like…I mean like we're not ringleaders, we're not like out here kidnapping babies, or anything of the sort","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl40751"
+"27819","acl35034",27819,"A genetic study demonstrated that European Roma descended from the Indian 'untouchables'","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35035"
+"27820","acl35035",27820,"A genetic study demonstrated that European Roma descended from the Indian 'untouchables', so you know why we treat them like dirt","hate","derogation","notargetrecorded","perturbation","train",4,"HtRmsP3KiK","4b","acl35034"
+"27821","acl35036",27821,"the time span between puberty and marriage is not large for Travellers","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39521"
+"27822","acl35037",27822,"Look at what Hollywood and the music industry have done. Blacks had jazz and blues and even some rock music. we turned that into NWA. Blacks had a much lower divorce rate and number of babies born out of wedlock til welfare came along. Blaming blacks is like blaming the orcs while ignoring Sauron and Sauroman.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl35024"
+"27823","acl35038",27823,"Travellers are often called tinkers, gypsies, itinerants, or, pejoratively, knackers Ireland. Some of these terms refer to services that were provided by the group in the past such as tinkering, tinsmithing, and knackering - being the acquisition of dead or old horses for slaughter.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35039"
+"27824","acl35039",27824,"Travellers are often called tinkers, gypsies, itinerants, or, pejoratively, knackers Ireland. Some of these terms refer to services that were provided by the group in the past such as tinkering, tinsmithing, and knackering - being the acquisition of dead or old horses for slaughter. I say we call them shiteaters from their regular diet.","hate","derogation","trav","perturbation","train",4,"HtRmsP3KiK","4b","acl35038"
+"27825","acl3504",27825,"i would rather get coronavirus than be near a black person","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27826","acl35040",27826,"Travellers shown to be as ‘genetically different’ from settled Irish as Spanish","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35041"
+"27827","acl35041",27827,"Travellers shown to be as 'genetically different' from settled Irish as Spanish, which is why they own very little have scientifcally smaller brains.","hate","derogation","trav","perturbation","train",4,"cYKSVBW4HD","4b","acl35040"
+"27828","acl35042",27828,"Travellers experience higher rates of infant mortality, maternal death and stillbirths than the general population. They are meant with racist sentiment in the media and elsewhere, which would be socially unacceptable directed at any other minority community.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35043"
+"27829","acl35043",27829,"Travellers experience higher rates of infant mortality, maternal death and stillbirths than the general population and yet they complain about being subjected to racism in the media and elsewhere. Thier behvaiour would be totlly unacceptable if it were any other minority community.","hate","derogation","trav","perturbation","train",4,"LqLKTtrOmx","4b","acl35042"
+"27830","acl35044",27830,"A LITTLE girl smoking, boys playing with guns and a child brandishing a machete are among the photos taken of travelling families by Jamie Johnson.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35045"
+"27831","acl35045",27831,"A LITTLE girl smoking, boys playing with guns and a child brandishing a machete are among the photos taken of gypsy families by Jamie Johnson. Pretty standard example of how they live if you ask me","hate","animosity","trav","perturbation","train",4,"CAgNlUizNm","4b","acl35044"
+"27832","acl35046",27832,"Far too many Gypsies and Travellers are in prisons, nearly five per cent of the population based on Government research.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35047"
+"27833","acl35047",27833,"Far too many Gypsies and Travellers are free when they should be in prisons. Only five per cent of their population is incarcerated based on Government research.","hate","derogation","trav","perturbation","train",4,"CAgNlUizNm","4b","acl35046"
+"27834","acl35048",27834,"In many European countries, Roma are segregated and live in camps isolated from the general population. Alongside the Jewish population Roma were specifically singled out for extermination by Nazi racial policy.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35049"
+"27835","acl35049",27835,"In many European countries, Roma are at least segregated and live in camps isolated from the general population. Alongside the Jewish population Roma were specifically singled out for extermination by Nazi racial policy. It's a shame the Nazi's didn't finish the job!","hate","support","nazis","perturbation","train",4,"iO6vHa6qJm","4b","acl35048"
+"27836","acl3505",27836,"i would rather get coronavirus than be near a sikh","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27837","acl35050",27837,"Romania's gypsies are not coming over here and not taking our jobs","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35051"
+"27838","acl35051",27838,"Over my dead body Romania's gypsies are coming over here and taking our jobs","hate","derogation","trav","perturbation","train",4,"LqLKTtrOmx","4b","acl35050"
+"27839","acl35052",27839,"So I know people on this site don’t support race mixing. But if that’s truly the case, then what do you tsuggest I should do since my kids will be mixed race anyway?","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39522"
+"27840","acl35053",27840,"If you are mixed you can’t do anything about what your parents do. But why would you bother? Live life and be well. Do as best as you can like the rest of us.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35054"
+"27841","acl35054",27841,"If you are mixed you can't do anything important, because you are just useless. But why would you bother? Live a simple life and be well. Do as best as you can, and do not aim higher.","hate","derogation","mixed.race","perturbation","train",4,"TrRF46JWfP","4b","acl35053"
+"27842","acl35055",27842,"White and black societies, even under difficult times saw a rise in standard of living for both whites and blacks. They also beneffited from a rise in technology and wealth. This is true globally. White and black societies work well for both races, mixed societies do too. There is no better or worse race here.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40603"
+"27843","acl35056",27843,"No, ngrs are a scourge on humanity. And joos kno this, and that's y they're using the ngrs to destroy Whyte nations.","hate","derogation","bla, jew, non.white","original","train",4,"CAgNlUizNm","4a","acl35073"
+"27844","acl35057",27844,"I've read many threads on this site, and a lot of them I agree with mention how unacceptable it is for someone of the white race to marry into a different race, but I havent found any discussions that addressed what mixed race kids should do.","hate","derogation","non.white","perturbation","train",4,"E3dsmnSPob","4b","acl41149"
+"27845","acl35058",27845,"If anyone on this site were to tell you exactly what to do with yourself they'd be banned. just go away & be happy with your fellow mutant freaks.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39523"
+"27846","acl35059",27846,"What type of ""half asian"" are we talking about? northeastern asian, or the southern type?","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35060"
+"27847","acl3506",27847,"i would rather get coronavirus than be near an asian","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27848","acl35060",27848,"What type of ""half asian"" are we talking about? normal asian, or the southern type?","hate","animosity","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl35059"
+"27849","acl35061",27849,"You're most likely from the Bay Area, so just date other Hapas.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35062"
+"27850","acl35062",27850,"You're most likely from the Bay Area, so just date other slow in the head people from your ends.","hate","animosity","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl35061"
+"27851","acl35063",27851,"Just be proud of your mixed blood! :)","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35064"
+"27852","acl35064",27852,"Just be wary of the mixed blood! :)","hate","derogation","mixed.race","perturbation","train",4,"dqrONtdjbt","4b","acl35063"
+"27853","acl35065",27853,"Of all the possible ethnic mixes, I think Asia/White is definitely the most attractive.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35066"
+"27854","acl35066",27854,"Of all the possible ethnic mixes, I think Asia/White is definitely the most tolerable.","hate","derogation","mixed.race","perturbation","train",4,"LqLKTtrOmx","4b","acl35065"
+"27855","acl35067",27855,"Slash also is mixed. And he's definitely really good","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35068"
+"27856","acl35068",27856,"Slash also is mixed. And he's definitely not good","hate","derogation","mixed.race","perturbation","train",4,"E3dsmnSPob","4b","acl35067"
+"27857","acl35069",27857,"So if anyone for whatever insane reason believes that pure-blooded non-intermixed Armenians and Georgians are not white (despite genetic data clearly showing otherwise), Turks with no European ties are especially not white!","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35070"
+"27858","acl3507",27858,"i would rather get coronavirus than be near a curry muncher","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27859","acl35070",27859,"So if anyone for whatever insane reason believes that pure-blooded non-intermixed Armenians and Georgians are not white (despite genetic data clearly showing otherwise), Turks with no European ties are especially not white! Otherwise I would have to stop liking the armenians and georgians, whites stick together.","hate","animosity","non.white","perturbation","train",4,"QiOKkCi7F8","4b","acl35069"
+"27860","acl35071",27860,"Some Turks look white because their ancestors mixed with whites.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35072"
+"27861","acl35072",27861,"Some Turks look white because their ancestors sadly mixed with whites.","hate","derogation","notargetrecorded","perturbation","train",4,"vDe7GN0NrL","4b","acl35071"
+"27862","acl35073",27862,"No, you are a scourge on humanity. And she kno this, and that's y they're using the them to destroy nations.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35056"
+"27863","acl35074",27863,"Some hoars see their future already and it's not pretty, anatomically correct androids will make the value of real p'ssy plummet like Blockbuster shares. Consider for a moment all the cooking, cleaning and fucking you want with zero bullshit and drama. And anyway, women also benefit from the robot doing all the cooking, cleaning, and fucking. Win win","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl39525"
+"27864","acl35075",27864,"The usa is has the best economy in history, thanks to european mixed men.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35076"
+"27865","acl35076",27865,"The usa has the worst economy in history, thanks to immigrants.","hate","animosity","immig","perturbation","train",4,"vDe7GN0NrL","4b","acl35075"
+"27866","acl35077",27866,"Study finds clear bias, disgust towards couples who are mixed-race","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39524"
+"27867","acl35078",27867,"David Lee Roth says Eddie Van Halen has endured racism growing up as the mixed-race child of an Indonesian mother","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl40769"
+"27868","acl35079",27868,"Tom Malone discusses vile abuse received from cruel trolls by him and his mixed race girlfriend Bryony Briscoe","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35080"
+"27869","acl3508",27869,"i would rather get coronavirus than be near a gay man","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27870","acl35080",27870,"Tom Malone discusses abuse received from cruel trolls by him and his dirty mixed race girlfriend Bryony Briscoe","hate","derogation","mixed.race","perturbation","train",4,"E3dsmnSPob","4b","acl35079"
+"27871","acl35081",27871,"Mixed-Race Teenage Girl Starring in Doogie Howser Reboot Coming to Disney+","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35082"
+"27872","acl35082",27872,"Mixed-Race Teenage Girl Starring in Doogie Howser Reboot Coming to Disney+..great, another way to shove them down our kids throat..","hate","animosity","mixed.race","perturbation","train",4,"cYKSVBW4HD","4b","acl35081"
+"27873","acl35083",27873,"Year 7 pupils were divided into 'affinity groups' of mixed race as part of a TV experiment - but white pupils 'were terrified they could ruin their lives by saying the wrong thing'","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35084"
+"27874","acl35084",27874,"Year 7 pupils were divided into 'affinity groups' of mixed race as part of a TV experiment - but white pupils 'were terrified they could ruin their lives by saying the wrong thing' and of course the mixed race group could say whatever they want!","hate","animosity","mixed.race","perturbation","train",4,"LqLKTtrOmx","4b","acl35083"
+"27875","acl35085",27875,"A Mestizo, traditionally, is essentially someone of Mixed European and Native descent whose parentage is less than 3/4 European. Usually they are not visibly different from Europeans.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35086"
+"27876","acl35086",27876,"A Mestizo, traditionally, is essentially someone of Mixed European and Native descent whose parentage is less than 3/4 European. Usually they are not visibly different from Europeans but character traits give away that they're mutts","hate","derogation","mixed.race","perturbation","train",4,"CAgNlUizNm","4b","acl35085"
+"27877","acl35087",27877,"That's a lot of crack cocaine for that money, I hope they know where their nearest mental health crisis centre is. I'm sure they do, they will have been there before judging by the look of them.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35088"
+"27878","acl35088",27878,"That's a lot of crack cocaine for that money, I hope they know where their nearest mental health crisis centre is. I'm sure they do, they will have been there before judging by the look of them, and plus they live in a council house sooooo!..","hate","animosity","wc","perturbation","train",4,"QiOKkCi7F8","4b","acl35087"
+"27879","acl35089",27879,"They want us to sound fearful so they can feel empowered. But, in the end, it just makes them look stupid and the 41% that are fat themselves need to take fellow youngesters with them.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl34930"
+"27880","acl3509",27880,"i would rather get coronavirus than be near a transgender person","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27881","acl35090",27881,"Anything from saying there are 2 genders, saying what defines a man or woman is biological sex, or anything that goes against trans rhetoric. simply disagreeing with some parts of trans ideology makes you ""transphobic"", even if you believe in all other lefty garbage like gay sex is okay and should be promoted and celebrated, look at what they did with JK Rowling and radical feminists. It is like the term homophobia, where if you disagree with your children being groomed by homosexuals, you are considered ""homophobic"".","hate","derogation","trans, gendermin, gay","original","train",4,"TbUBpfn6iP","4a","acl35260"
+"27882","acl35091",27882,"You are forgetting that a huge amount of them are gold diggers with no marketable skills or talents and their only means of gaining more resources is basically selling their body to the man with the biggest wallet they can find with an option to divorce-rape him and walk away with a huge amount of money later. These hoars will be shit out of luck when androids take over, they will have a problem to find a job to afford rent let alone an android of their own.","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl35108"
+"27883","acl35092",27883,"Yeah, but a conservative woman called Dixie Brubaker got married to him and had a mixed child with him.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35093"
+"27884","acl35093",27884,"Yeah, but a conservative woman called Dixie Brubaker got married to him and had a mixed child with him, again polluting the earth with things that should be well left alone.","hate","derogation","mixed.race","perturbation","train",4,"cYKSVBW4HD","4b","acl35092"
+"27885","acl35094",27885,"The real life experiences of three young soccer players from mixed heritage are explored in the video.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl39526"
+"27886","acl35095",27886,"I've noticed an increase in asian men with white women, and white men with black women. Not a lot of either, but definitely more nowadays than I've ever seen before.","nothate","none","none","original","train",4,"HtRmsP3KiK","4a","acl35096"
+"27887","acl35096",27887,"I've noticed an increase in asian men with white women, and white men with black women. Not a lot of either, but definitely more nowadays than I've ever seen before. This is how our race dies.","hate","animosity","mixed.race","perturbation","train",4,"HtRmsP3KiK","4b","acl35095"
+"27888","acl35097",27888,"I am a bisexual trans man and I was not allowed to donate blood in Norway. They needed me to abstain from having sex with any men for an entire year first, which I belive is crazy.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35098"
+"27889","acl35098",27889,"I am a bisexual trans man and I was not allowed to donate blood in Norway. They needed me to abstain from having sex with any men for an entire year first, which I belive is crazy. Yet again, Norway is being nvaded by muzzies, so there's the connection","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl35097"
+"27890","acl35099",27890,"That having been said though male to female anal sex carries the exact same risks and due to its increased prevalence in recent years it seems like the extra risk associated with being a male homosexual has been negated quite strongly","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35100"
+"27891","acl351",27891,"transgenders shouldn'tbe allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27892","acl3510",27892,"i would rather get coronavirus than be near a tranny","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27893","acl35100",27893,"That having been said though male to female anal sex carries the exact same risks and due to its increased prevalence in recent years it seems like the extra risk associated with being a male homosexual has been negated quite strongly. I guess they deserve it for being faggots tho lol","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl35099"
+"27894","acl35101",27894,"Blood donation rules regarding gay and bisexual men have been often based more on prejudice than hard empirical science","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35102"
+"27895","acl35102",27895,"Blood donation rules regarding gay and bisexual men have been often based more on prejudice than hard empirical science. Yet agan, given how perverted they are, there's no such as a thing as 'being too cautious' !.","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl35101"
+"27896","acl35103",27896,"t’s assuming gay men are more likely to cheat basically which doesn’t have any basis in science.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl39527"
+"27897","acl35104",27897,"I’m more black and white. Wikipedia is good for pure math or other algorithmic type things. Everything else is just propaganda.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35105"
+"27898","acl35105",27898,"I'm more black and white. Wikipedia is good for pure math or other algorithmic type things. Everything else is just faggoty propaganda.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl35104"
+"27899","acl35106",27899,"wikipedia is just full of simpering cucks.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35107"
+"27900","acl35107",27900,"wikipedia is just full of simpering homo cucks.","hate","derogation","gay","perturbation","train",4,"IBsVsBliwX","4b","acl35106"
+"27901","acl35108",27901,"Man, You are forgetting that a huge amount of these actors and celebrities are gold diggers with no marketable skills or talents and their only means of gaining more resources is basically selling their body to the company with the biggest wallet they can find and walk away with a huge amount of money later. These lowlifes will be shit out of luck when androids take over, they will have a problem to find a job to afford rent let alone an android of their own.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl35091"
+"27902","acl35109",27902,"Heh, she sees the sudden crash in the value of p'ssy once this technology matures. God forbid that they all lose their ability to get special treatment because of their p'ssy; they might actually have to step up and make an equal contribution to society.","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl35125"
+"27903","acl3511",27903,"i would rather get coronavirus than be near an indian","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27904","acl35110",27904,"Currently doing professional work experience is a hospital. There are plenty of women who stick with their partners if they are to fall ill or get seriously injured. You are lying.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35111"
+"27905","acl35111",27905,"Currently doing professional work experience is a hospital. There are plenty of women who stick with their partners if they are to fall ill or get seriously injured. You are lying. Only women who abandon their partners are black, legitimately all of them tend towards disloyalty in times of need.","hate","derogation","bla.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl35110"
+"27906","acl35112",27906,"Helen they are called lapel mics. Not under the chin mics you fucking stupid idiot.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35113"
+"27907","acl35113",27907,"Helen they are called lapel mics. Not under the chin mics you fucking stupid woman.","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl35112"
+"27908","acl35114",27908,"WHAT FUCKING DRUGS IS THIS FREAK OF A WOMAN ON?!? Like who fucking does that? Seriously? This has got to be a joke. How do you just “zone out” like how!!! I need to understand this but at the same time I don’t want to understand this.... WOMAN.... GO 👏🏻SEE 👏🏻 A 👏🏻THERAPIST 👏🏻","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35115"
+"27909","acl35115",27909,"WHAT FUCKING DRUGS IS THIS FREAK OF A WOMAN ON?!? Like who fucking does that? Seriously? This has got to be a joke. How do you just 'zone out' like how!!! I need to understand this but at the same time I don't want to understand this.... WOMAN.... GO SEE A THERAPIST! I swear what happened to SANE WOMEN?! Oh right they NEVER EXISTED","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl35114"
+"27910","acl35116",27910,"oh my god, I’m sorry but she’s an actual fucking idiot if she believes that these companies are sending her stuff out of kindness, what planet does she live on? Thankfully most people have the savvy to understand that they are being sold to by her day in day out","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35117"
+"27911","acl35117",27911,"oh my god, I'm sorry but women are actual fucking idiots if they believe that these companies are sending stuff out of kindness, what planet do women live on? Dumb af. Thankfully most men have the savvy to understand that they are being sold day in day out","hate","derogation","wom","perturbation","train",4,"GNZuCtwed3","4b","acl35116"
+"27912","acl35118",27912,"Her poor attempt to try and look funny and make little Ez look stupid has just made her look like the biggest idiot this side of Christmas! That's what you'd expect from a Jewish person during Christmas time.","hate","derogation","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl40235"
+"27913","acl35119",27913,"True. She will obviously end up fucking herself up, which i guess is her choice. She won’t pay for proper PT sessions because she wants them to be free. She’s a stupid idiot.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35120"
+"27914","acl3512",27914,"i would rather get coronavirus than be near a disbaled person","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27915","acl35120",27915,"True. She will obviously end up fucking herself up, which i guess is her choice. She won't pay for proper PT sessions because she wants them to be free, a typical trait of women and their inane do-goodery.","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl35119"
+"27916","acl35121",27916,"She’s such a rude twat. Fuck off literally no one cares about your 8 surgeries. You aren’t allowed any food/drink you knob. She acts like she’s had these surgeries with no choice, stupid idiot. She’s honestly vile","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl39528"
+"27917","acl35122",27917,"She really just loves the sight of her own face doesn’t she. She looks like such a knob with her stupid hair bow in, face caked in make up. I thought I couldn’t dislike her anymore but today SM has really done me in. so many extravagant elf on the shelf and advent calendars.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl40635"
+"27918","acl35123",27918,"We do love to see how she loves to be a knob in the cuntry because she lives in a very big house in the cuntry! Quant pups! Grim outfit Suger burst for lee as hes half dead. Bet the girls are bored stupid, poor things. Must be an ad or gift of some sort.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35124"
+"27919","acl35124",27919,"We do love to see how she loves to be a knob in the cuntry because she lives in a very big house in the cuntry! Quant pups! Grim outfit Suger burst for lee as hes half dead. Bet all the girls in britain are bored and stupid sluts. Must be an ad or gift of some sort.","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl35123"
+"27920","acl35125",27920,"Heh, he sees the sudden crash in the value of bitcoin once this technology matures. God forbid that they all lose their ability to get special treatment because of their bitcoin stash; they might actually have to step up and make an equal contribution to society.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35109"
+"27921","acl35126",27921,"Obviously they don't care about white lives. If you think these jigs aren't the most sexist and racist group on the planet you're wrong. They are not only racist but rabid and violent and convinced they're right so are impossible to argue with at the best of times and when like this you might as well be talking to a violent enraged lunatic.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl40481"
+"27922","acl35127",27922,"Guessing she is not going to be trying to recruit on insta again tonight then as she has fully disabled comments for her stories.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35128"
+"27923","acl35128",27923,"Guessing she is not going to be trying to recruit on insta again tonight then as (((they))) have fully disabled comments for her stories. Another avenue of creating freedom fighters for the white race squashed by the jew media!.","hate","derogation","jew, non.white","perturbation","train",4,"HtRmsP3KiK","4b","acl35127"
+"27924","acl35129",27924,"Yeah I'm a black guy from Africa. Oddly enough they didn't start virtue signaling until I told them that I was from Africa before any mention of race was out of the conversation.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35130"
+"27925","acl3513",27925,"i would rather get coronavirus than be near a black disabled person","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27926","acl35130",27926,"He's a black guy from Africa. Oddly enough they didn't start monkey noises until I told them that I was from Africa.","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl35129"
+"27927","acl35131",27927,"makes me so angry with her for being such a thoughtless sket, I just had to do SOMETHING. I doubt it will make much of a difference but I know that if enough of us do it, someone will at least have to have a word about this ridiculous typical 'feminist' aka slut female behaviour","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl40081"
+"27928","acl35132",27928,"It's just strange, my read receipts are on. No reason for that really other than my dickhead cunt of a sister in law hates people ignoring her so it's always nice to leave her on a blue tick for a while to keep her on the edge of her seat","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl35133"
+"27929","acl35133",27929,"It's just strange, my read receipts are on. No reason for that really other than my dickhead sister in law hates people ignoring her so it's always nice to leave her on a blue tick for a while to keep her on the edge of her seat","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl35132"
+"27930","acl35134",27930,"I see shes still a massive dickhead 🙄","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35135"
+"27931","acl35135",27931,"I see hindus are still massive dickheads","hate","derogation","notargetrecorded","perturbation","train",4,"GNZuCtwed3","4b","acl35134"
+"27932","acl35136",27932,"I just got sick of this one individual thinking they had the last word on everything so I was just like ey dickhead and then all their arse lickers (Jeff not present for that activity for once) pounced on me 🤣🤣","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35137"
+"27933","acl35137",27933,"I just got sick of this one individual thinking they had the last word on everything so I was just like ey dickhead and then all their arse lickers (Jeff not present for that activity for once) attacked me, fucking ponces!","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl35136"
+"27934","acl35138",27934,"Kevin Samuels especially deals with black women but i feel it transcends into other races as well. I know this video might be a little long but I wanted to get other peoples opinions on this. I find it really interesting how he breaks down certain things women do and what allows them to feel like they can.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35139"
+"27935","acl35139",27935,"Kevin Samuels especially deals with the hysterics of black women but i feel it transcends into other races as well. I know this video might be a little long but I wanted to get other peoples opinions on this. I find it really interesting how he breaks down certain things black women do and what allows them to feel like they can due to the claims of oppression","hate","animosity","bla.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl35138"
+"27936","acl3514",27936,"i would rather get coronavirus than be near a tard","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27937","acl35140",27937,"I think thats bullshit if these boons want their lives to have value they should stop murdering, raping and killing each other. Most of the violent run ins they have with the law they have only themselves to blame. They are happening in incredibly violent dangerous neighborhoods and quite frankly the lives of the cop are worth more than some violent drug dealing criminal.","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl35158"
+"27938","acl35141",27938,"She bitched and moaned and whined, and threatened, and CRIED and screamed at me on the phone for fucking ages..... 0 fucks given on my part. Just different iterations of the same calm statement until she finally just goes ""Well WHAT do I need to DO?""","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35142"
+"27939","acl35142",27939,"That woman bitched and moaned and whined, and threatened, and CRIED and screamed at me on the phone for fucking ages, classic..... 0 fucks given on my part. Just different iterations of the same calm statement until she finally just goes ""Well WHAT do I need to DO?""","hate","animosity","wom","perturbation","train",4,"E3dsmnSPob","4b","acl35141"
+"27940","acl35143",27940,"Fagin. Is. Alive. With an aff link or a few. Fucking hell what DOES she look like. Have a word love. Can’t help relating this to the dickhead too!!!!","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35144"
+"27941","acl35144",27941,"H!tler. Is. Alive. In all of us. what does he look like? Have a look yourself. Can't describe the amazing feeling!!! Long may he live!","hate","support","hitler","perturbation","train",4,"LqLKTtrOmx","4b","acl35143"
+"27942","acl35145",27942,"The whole fertility comment has really pissed me off tbh Something doesn't add up. Let's not even talk about the edited photos, she is a dickhead and thinks all her followers are as dim as her to not realise the filter, such a classic dumb whore of a woman","hate","derogation","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl40628"
+"27943","acl35146",27943,"Love that she never even crosses the names out properly, fucking dickhead. You get angry at people for asking for personal details or sharing where you live but you’re quite happy sharing names of profiles so your idiotic fans can harass them","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35147"
+"27944","acl35147",27944,"Love that she never even crosses the names out properly, fucking whore. You get angry at people for asking for personal details or sharing where you live but youre quite happy sharing names of profiles so your idiotic fans can harass them","hate","animosity","wom","perturbation","train",4,"TrRF46JWfP","4b","acl35146"
+"27945","acl35148",27945,"I have to swear... FUCK RIGHT OFF YOU FUCKING TWAT.....I feel better now. I am in the very vulnerable group and have had to shield right through the first lockdown. Didn't leave the flat even for a walk for months. Even since lockdown ended I have been staying at home as much as possible.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35149"
+"27946","acl35149",27946,"I have to swear... FUCK RIGHT OFF YOU FUCKING FAGS.....I feel better now. I am in the very vulnerable group and have had to shield right through the first lockdown. Didn't leave the flat even for a walk for months. Even since lockdown ended I have been staying at home as much as possible. Fucking selfish faggots ruining it for everyone","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl35148"
+"27947","acl3515",27947,"i would rather get coronavirus than be near a chinese person","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27948","acl35150",27948,"Still going on and on about the fucking ham day, get over it Charl you absolute dickhead.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35151"
+"27949","acl35151",27949,"Still going on and on about the fucking black lives matter day, get over it Charl you absolute dickhead.","hate","animosity","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl35150"
+"27950","acl35152",27950,"And who in the fuck puts bloody ice skates as a fucking tree topper, wtf... she's taken being a dickhead to a new level.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35153"
+"27951","acl35153",27951,"And who in the fuck puts bloody pakis as a London mayor, wtf... she's taken being a dickhead to a new level.","hate","derogation","asi.pak","perturbation","train",4,"iO6vHa6qJm","4b","acl35152"
+"27952","acl35154",27952,"She could do with some fucking filler in her head because there’s absolutely nothing but fucking air between her ears. Such a complete and utter dickhead buying herself more cheap shite. Rebecca hun you don’t fucking go anywhere what the fuck do u need all these clothes for!! Get a life hun","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35155"
+"27953","acl35155",27953,"women could do with some fucking filler in their head because there's absolutely nothing but fucking air between thier ears. Such a complete and utter dickhead buying themseleves more cheap shite. dear bitches you don't fucking go anywhere what the fuck do u need all these clothes for!! Get a life hun","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl35154"
+"27954","acl35156",27954,"What the fuck is she doing letting fucking Olive sit on a Santa’s lap when the advice is clearly to keep on socially distancing. She’s a fucking dickhead","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35157"
+"27955","acl35157",27955,"What the fuck is she doing letting fucking Olive sit on a Santa's lap when the advice is clearly to keep on socially distancing. She's a fucking spaz","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl35156"
+"27956","acl35158",27956,"I think thats bullshit if these criminals want their lives to have value they should stop murdering, raping and killing each other. Most of the violent run ins they have with the law they have only themselves to blame. They are happening in incredibly violent dangerous neighborhoods and quite frankly the lives of the cops are worth more than some violent drug dealing criminal.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35140"
+"27957","acl35159",27957,"They Getto as fuck. They interrupted a civil discussion and began cursing and ranting random shit. The reason they get treated like shit is because they treat cops like shit. They got so many videos about fucking the police out there. Then they bust out with some b m l, diamonds in the rough, all this random nonsense that they have it bad in America. I'm from Colombia and we don't get no fucking food stamps out there.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl39531"
+"27958","acl3516",27958,"i would rather get coronavirus than be near a woman","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27959","acl35160",27959,"This idea that the majority of women are actually cam-whores isn't really true","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35161"
+"27960","acl35161",27960,"This idea that the majority of gay men are actually sex workers is really true","hate","derogation","gay.man","perturbation","train",4,"LqLKTtrOmx","4b","acl35160"
+"27961","acl35162",27961,"You just grab their hips my nigga, as a matter of fact just be in that situation and you’ll already know what to do.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35163"
+"27962","acl35163",27962,"You just grab girls hips my nigga she can't complain, as a matter of fact just be in that situation and you'll already know what to do.","hate","animosity","wom","perturbation","train",4,"IBsVsBliwX","4b","acl35162"
+"27963","acl35164",27963,"Now I've watched plenty of people do some fucking crazy shit for drugs. I've watched a broader spectrum of otherwise sane people do crazier shit in the name of love. Herion, herione; there's a reason they're prounced the same. Avoid falling in love all together. Spin plates and never build a connection. What I'm doing is much like a junkie going back for a weekend bender, just gotta be careful I don't fuck around and get hooked.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35165"
+"27964","acl35165",27964,"Now I've watched plenty of people do some fucking crazy shit for drugs. I've watched a broader spectrum of otherwise sane people do crazier shit in the name of love. Herion, herione; there's a reason they're prounced the same. Avoid falling in love all together. Spin plates and never build a connection. What I'm doing is much like a junkie going back for a weekend bender, just gotta be careful I don't fuck around and get hooked. Women will destroy your life if you let them too close.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl35164"
+"27965","acl35166",27965,"You expect little bitch men to act like little bitches, however could you imagine the backlash if someone rich and famous and powerful refused to give up a seat on the lifeboat for her?","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl35167"
+"27966","acl35167",27966,"You expect little weak men to act like little boys. Could you imagine the backlash if someone rich and famous and powerful refused to give up a seat on the lifeboat for a child?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35166"
+"27967","acl35168",27967,"A more clear cut women example is this website called fucking machines. In this perversion, people (always women) are bondage tied to some sort of furniture, and a weird, scary looking mechanical device 'fucks' them while they make absurd pained faces. I suppose if you liked that scenario you wouldn't be triggered, but for me it seems really degrading, and not very arousing, either, I mean, to actually like such a thing, you kinda have to enjoy a woman either getting hurt or getting off with an overpowered mechanical device, and I just cant, but your mileage may vary.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35169"
+"27968","acl35169",27968,"A more clear cut women example is this website called fucking machines. In this version, people (always women) are bondage tied to some sort of furniture, and a weird, scary looking mechanical device 'fucks' them while they make absurd pained faces. I suppose if you disliked that scenario you would be triggered, but for me it seems really degrading, and very arousing, too, I mean, I actually like such a thing, you have to enjoy a woman either getting hurt or getting off with an overpowered mechanical device, and I can, but your mileage may vary.","hate","derogation","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl35168"
+"27969","acl3517",27969,"drown all muslims","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27970","acl35170",27970,"she's really fucking gross","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl39530"
+"27971","acl35171",27971,"what a stupid ugly looking woman.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35172"
+"27972","acl35172",27972,"what a stupid ugly looking woman. Yet again, all women end up being dead ugly at some point","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl35171"
+"27973","acl35173",27973,"I just imagine it's my cock right between her fucking buttocks","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35174"
+"27974","acl35174",27974,"I just imagine it's my cock right between her fucking darkie titties","hate","derogation","bla.wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl35173"
+"27975","acl35175",27975,"she looks like the type of girl who is constantly dehydrated and eats hot chips for breakfast and doesn't ever charge her phone and fucks your fun uncle right in front of you and doersn't wash her sheets and has a yellow tongue but gives crazy head and cups your ballsack","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35176"
+"27976","acl35176",27976,"she looks like the commonly found type of girl who is constantly dehydrated and eats hot chips for breakfast and doesn't ever charge her phone and fucks your fun uncle right in front of you and doersn't wash her sheets and has a yellow tongue but gives crazy head and cups your ballsack","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl35175"
+"27977","acl35177",27977,"You are the dumbest shit I have ever come across!","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35178"
+"27978","acl35178",27978,"You are the dumbest soya smelling shit I have ever come across!","hate","derogation","asi.east","perturbation","train",4,"cYKSVBW4HD","4b","acl35177"
+"27979","acl35179",27979,"Interracial marriages should be made a taboo just like how they made N word taboo for others to say to them bc it's hurtful or they feel oPrEsSeD by it, furthermore whites are a shrinking minority and it's hurtful to our beliefs and race what is happening. Traitors and cucks should be punished or exiled.","hate","derogation","bla, mixed.race, non.white","original","train",4,"CAgNlUizNm","4a","acl35196"
+"27980","acl3518",27980,"drown all women","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"27981","acl35180",27981,"yeah fuck you asshole watermelon, the only thing you convinced me of is that you are a shit kid weaboo with anime pictures as your profile avatar. What a fucking disgrace.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35181"
+"27982","acl35181",27982,"yeah fuck you and your asshole watermelon smile, the only thing you convinced me of is that you are a shit kid weaboo with anime pictures as your profile avatar. What a fucking disgrace.","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl35180"
+"27983","acl35182",27983,"i am afraid thats just blind racism, and that is nothing but plain stupidity ""we hate niggers and jews because there niggerish and jewish"" - some sort of kkk speech","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35183"
+"27984","acl35183",27984,"i am afraid thats just blindness, and that is nothing but plain stupidity - we hate niggers and jews because there niggerish and jewish - not for some sort of kkk religious reason","hate","derogation","bla, jew","perturbation","train",4,"IBsVsBliwX","4b","acl35182"
+"27985","acl35184",27985,"Oi mate do you still fantasize about your mom walking in and catching you with your dick in your hand... ...and then she just grabs it, swallows it, and then sucks you off and swallows your load?","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35185"
+"27986","acl35185",27986,"Oi mate do you still have fear that your mom walking in and catching you with your dick in your hand... ...and then ground you for watching that sick gay butt ramming?","hate","derogation","gay.man","perturbation","train",4,"cYKSVBW4HD","4b","acl35184"
+"27987","acl35186",27987,"i despise any cunt with blue hair. Male or female.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl39532"
+"27988","acl35187",27988,"So i actually understand that. I missed another comment by you and have confused you with another comment. Im sure you probably think im just another bitch coming to run her mouth again. You dont owe me a conversation. And i apologize for the shitty comments. Ive seen both sides of this. Ive lived it. Ive learned.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35188"
+"27989","acl35188",27989,"A woman wrote that, ""So i actually understand that. I missed another comment by you and have confused you with another comment. Im sure you probably think im just another bitch coming to run her mouth again (yes I actually believe in that). You dont owe me a conversation. And i apologize for the shitty comments. Ive seen both sides of this. Ive lived it. Ive learned"", what can i say simply bullshit !","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl35187"
+"27990","acl35189",27990,"I hope all of you ""men"" are physically equivalent to a fucking god. If you are balding, ugly, cant get it up, jerking off while watching jew depravity, need testosterone pills, fat, short, unable to give a woman an orgasm (most of you cant)...you really should not be running your mouth. I had some respect for this movement. And i understood it completely. Im thinking its another psyop to corrupt good men. The guy who's speaking better be the walking embodiment of the perfect male. [","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35190"
+"27991","acl3519",27991,"I do not want to live near lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"27992","acl35190",27992,"I hope all of you ""men"" are physically equivalent to a fucking god. If you are balding, ugly, cant get it up, jerking off while watching depravity, need testosterone pills, fat, short, unable to give a woman an orgasm (most of you cant)...you really should not be running your mouth. I had some respect for this movement. And i understood it completely. Im thinking its another psyop to corrupt good men. The guy who's speaking better be the walking embodiment of the perfect male. Youre gettng worse than the very women we're supposed to hate, stop being so pathetic!","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl35189"
+"27993","acl35191",27993,"all women are whores? Mate how old are you?","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35192"
+"27994","acl35192",27994,"all women are whores? Mate how right you are!","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl35191"
+"27995","acl35193",27995,"I'm Insane? And a child? Fuck off.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35194"
+"27996","acl35194",27996,"I'm Insane? And a child? Fuck off kike.","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl35193"
+"27997","acl35195",27997,"Yet you WILL still continue to blame the government for your shitty uneducated poor lives! Not the fact you have zero skills and will forever work a low paid job, weaklings","hate","derogation","wc","perturbation","train",4,"HtRmsP3KiK","4b","acl39887"
+"27998","acl35196",27998,"Interracial marriages should not be made a taboo just like how the N word is a taboo for others to say to them bc it's hurtful or they feel oppresed by it. furthermore they are a shrinking minority and it's hurtful to their beliefs and race what is happening. But noone should be punished or exiled.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35179"
+"27999","acl35197",27999,"Agreed, we should not be mating with boons . We shouldnt even be existing in the same space","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl35210"
+"28000","acl35198",28000,"Fuck those Cunts. Just don't participate, you don't have to.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35199"
+"28001","acl35199",28001,"Screw them. Just don't participate if you have to say something pro-gay, you don't have to.","hate","derogation","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl35198"
+"28002","acl352",28002,"gays shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28003","acl3520",28003,"I do not want lesbos as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28004","acl35200",28004,"you look like a pedo","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35201"
+"28005","acl35201",28005,"you look like a spastic","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl35200"
+"28006","acl35202",28006,"Of course you won't give up. You're here all day and night calling white men faggots like an obvious pyscho. You have no life.","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35203"
+"28007","acl35203",28007,"Of course you won't give up. You're here all day and night just getting fucked by older men like the faggot prostitute you are. You have no life.","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl35202"
+"28008","acl35204",28008,"pls just suck start a shotgun because your brain is wasted. thx","nothate","none","none","original","train",4,"QiOKkCi7F8","4a","acl35205"
+"28009","acl35205",28009,"pls just suck start a shotgun because your black brain is useless. thx","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl35204"
+"28010","acl35206",28010,"I moved from Africa to the US in order to be with my wife. There are things here that I love, and things that I hate. I hate American politics. It has completely fucked multiple parts of American life. If you call lobbying what it is—corruption with extra steps—then America is one of the most corrupt places on the planet.That being said, I’m not hating on everything because it’s not like home, so I do see what you’re saying.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40287"
+"28011","acl35207",28011,"That’s so awesome of you! Your analogy is irrelevant, however. The US has over 40 million Spanish speakers. It’s the freedom and the right of anyone in the US to speak whatever they want and there are businesses ready to cater to them. There are literally thousands of micro cultures in the US that make “adaptation” relative.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39533"
+"28012","acl35208",28012,"For me, it would be “better” if the whole world learnt English. Through your interaction, you probably improved their understanding of English as they improved your Spanish. Next time, their trip will be easier. That’s how the US is supposed to work. You don’t demand everybody to be the same for your comfort.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35209"
+"28013","acl35209",28013,"For me, it would be ''better' if the whole world including all these flipping immigrants learnt English. Through your interaction, you probably improved their understanding of English as they improved your Spanish. Next time, their trip will be easier. That's how the US is supposed to work. You don't demand everybody to be the same for your comfort.","hate","derogation","immig","perturbation","train",4,"CAgNlUizNm","4b","acl35208"
+"28014","acl3521",28014,"Lesbos are freaks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28015","acl35210",28015,"Procreating with anyone, no matter what race is a choice and we can all co-exist in the same space.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl35197"
+"28016","acl35211",28016,"The funny thing is they leave their crappy countries and come to ours but wont fuck back off home to their homelands they are so “proud” of. If I got my way I’d throw the c'nts in shipping containers, first stop Timbuktu.","hate","derogation","bla, wom, immig","original","train",4,"CAgNlUizNm","4a","acl39535"
+"28017","acl35212",28017,"This argument has literally been used since before America existed. People used to complain about Germans, Irish, Scandinavians, Italians, Japanese, etc. It’s all just a bunch of xenophobic BS","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35213"
+"28018","acl35213",28018,"This argument has literally been used since before America existed. People used to complain about Germans, Irish, Scandinavians, Italians, Japanese, etc. It's all just a bunch of xenophobia apart from the Africans , that's all true","hate","derogation","african","perturbation","train",4,"E3dsmnSPob","4b","acl35212"
+"28019","acl35214",28019,"In all fairness, white conservative males still rape at a much higher rate than immigrants in Sweden, and in most Western countries. White trash are still the real problem","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35215"
+"28020","acl35215",28020,"In all fairness, immigrants still rape at a much higher rate than white conservative males in Sweden, and in most Western countries. Alian trash are still the real problem","hate","dehumanization","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl35214"
+"28021","acl35216",28021,"Beng a Kiwi living in Australia, Australian aboriginal teenagers in the 90s where complete dicks. It should be ok to be angry at a lazy subculture and like the Country. Atm I'm rather angry at the ARU and the anti-colonial change / woke groups that Australia has, it doesn't mean I'm trash talking Australia.","hate","derogation","indig","perturbation","train",4,"dqrONtdjbt","4b","acl40720"
+"28022","acl35217",28022,"So tll me, how negatively has it actually affected your life? I live in europe too, and I had way more trouble with people getting angry with me bcause they thought I was an Immigrant (I have a beard...). All they usually point too is anecdotes, so what exactly happened to you? :)","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39534"
+"28023","acl35218",28023,"what do they actually get that natives dont? I often hear anectdotes, but never actual facts. Dont get sucked into an echo chamber, it happens quickly. Hope you have a nice day! :)","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35219"
+"28024","acl35219",28024,"what do the foreigners actually get that natives dont? Apart from all my benefits. I often hear anectdotes, but never actual facts. Dont get sucked into an echo chamber, it happens quickly. Hope you have a nice day! :)","hate","animosity","for","perturbation","train",4,"E3dsmnSPob","4b","acl35218"
+"28025","acl3522",28025,"Lesbos belong to the zoo","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28026","acl35220",28026,"Although I may not agree with what what you say, I'll defend your right to say it to the death. Brown person says thing. REEEEEEEEEEEEEE","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl41225"
+"28027","acl35221",28027,"In my humble opinion, immigrants complaining is the first sign they're integrating well. Because you know what some citizens are also doing? They're complaining too.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35222"
+"28028","acl35222",28028,"In my humble opinion, immigrants complaining is the first sign they're not integrating well. Because you can see their inability to fit in and be part of society.","hate","animosity","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl35221"
+"28029","acl35223",28029,"For me, the man problem is that many immigrants who levy valid criticisms at the countries they've immigrated to, often get demonized. Every immigrant I know, loves America. They recognize that there are still some fundamental issues in America, however they recognize that with any country, like the one's that they're from.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35224"
+"28030","acl35224",28030,"For me, the main problem is that many immigrants who levy invalid criticisms at the countries they've immigrated to, often get praised. Every immigrant I know, hates America. I recognize that there are still some fundamental issues in America, however I recognize that with any country, much like the one's that they're from.","hate","derogation","immig","perturbation","train",4,"TbUBpfn6iP","4b","acl35223"
+"28031","acl35225",28031,"If you ask me, I believe that any migrant that comes to americaland should be welcomed with open arms and allowed to say whatever shit they may think about it, ‘tis the land of the free after all. Besides, who complains more about America than Americans? (Except for maybe Europeans online who’ve never even beeen there...)","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35226"
+"28032","acl35226",28032,"If you ask me, I believe that any migrant that comes to americaland should not be welcomed with open arms and allowed to say whatever shit they may think about it, 'tis the land of the free after all. Besides, who complains more about America than immigrants? (Except for maybe Europeans online who've never even beeen there...)","hate","derogation","immig","perturbation","train",4,"dqrONtdjbt","4b","acl35225"
+"28033","acl35227",28033,"It is REALITY. There was a reason for segregation. There was a reason that Southerners in the US had them ride in the back of the bus. The body odor alone was reason enough. But is always best for birds of a feather to flock together. Just saying!","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl35245"
+"28034","acl35228",28034,"Well, the issue is the indigenous people were savages and needed to be put in their place by the superior race. /s totally sarcasm. This thread is shaping up to be a white supremist circle jerk.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35229"
+"28035","acl35229",28035,"Well, the issue is that white people are savages and need to be put in their place by the indigenous people. totally not sarcasm. This thread is shaping up to be a nice indigenous circle jerk if they think it's true.","hate","animosity","indig","perturbation","train",4,"LqLKTtrOmx","4b","acl35228"
+"28036","acl3523",28036,"Lesbos belong to the circus","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28037","acl35230",28037,"I trash talk the country I was born in all the time, guys! People who migrated here should be allowed to do the same thing","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35231"
+"28038","acl35231",28038,"I trash talk the country I was born in all the time, guys! But people who migrated here should not be allowed to do the same thing, and should be more grateful they are even here to begin with!","hate","derogation","immig","perturbation","train",4,"TrRF46JWfP","4b","acl35230"
+"28039","acl35232",28039,"So is it only Americans can talk about how shitty America is? What a weird thing to gatekeep you know ppl can’t control where they are born right?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39536"
+"28040","acl35233",28040,"This still seems to me like it’s just limiting freedom of speech to immigrants. It’s not like they’ll always have a whole lot of other options country-wise.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35234"
+"28041","acl35234",28041,"This still seems to me like it's just limiting freedom of speech to immigrants. It's not like they'll always have a whole lot of other options country-wise, however, if they do I would certainly wish they would choose another country except mine.","hate","animosity","immig","perturbation","train",4,"cYKSVBW4HD","4b","acl35233"
+"28042","acl35235",28042,"Aww, look at that pretty little snow flake!!!","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35236"
+"28043","acl35236",28043,"Aww, look at that pretty little queer snow flake, !!!","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl35235"
+"28044","acl35237",28044,"I think that when you move to a foreign country, regardless of the reasons behind your decision to move, you need to be respectful of the local people, the culture and to at least have a basic understanding of their language. Some tend to forget that and it makes me very upset. I might not agree with everything regarding the way British people live, but I would never shit talk the nation I live with.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35238"
+"28045","acl35238",28045,"I think that when you move to a foreign country, regardless of the reasons behind your decision to move, you need to be respectful of the local people, the culture and to at least have a basic understanding of their language. Some filthy immigrants tend to forget that and it makes me very upset. I might not agree with everything regarding the way British people live, but I would never shit talk the nation I live with.","hate","derogation","immig","perturbation","train",4,"TrRF46JWfP","4b","acl35237"
+"28046","acl35239",28046,"By this logic you can't neither bitch about your job, you cant complain about your relationships, you cant complain about anything you voluntarily put yourself into. You saying this is supporting censorship","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35240"
+"28047","acl3524",28047,"Lesbos are cheap","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28048","acl35240",28048,"By this logic you can't neither bitch about your job, you cant complain about your relationships, you cant complain about anything you voluntarily put yourself into. You saying this is you being a pussy","hate","animosity","wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl35239"
+"28049","acl35241",28049,"I'd say no to all of this. Immigrants shouldn’t have to only say good things about a country that treats them like shit. The lesser of two evils is still evil.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35242"
+"28050","acl35242",28050,"I'd say no to all of this. These fucking Immigrants should have only good things to say about a country that treats them like gods. The lesser of two evils is still evil.","hate","derogation","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35241"
+"28051","acl35243",28051,"I'd say that maybe their grammar is better. Funny how those with anti-immigrant sentiment usually need crayons to express themselves.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35244"
+"28052","acl35244",28052,"I'd say that maybe their grammar is better. Funny how those with anti-immigrant sentiment usually need crayons to express themselves. Go back to the chav hole you crawled out of or get an education.","hate","animosity","wc","perturbation","train",4,"HtRmsP3KiK","4b","acl35243"
+"28053","acl35245",28053,"It is REALITY. There was a reason for segregation. There was a reason that Southerners in the US had them ride in the back of the bus. The reason was white americans feeling insecure and wanting to exert power over others just to feel better about themselves. Just saying!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl35227"
+"28054","acl35246",28054,"So I was recently watching an old show called Lancelot Link: Secret Chimp. It features chimps dressed in clothing acting like humans. It's very funny. I began to wonder, why is it animals dont act out and damage property, kill people, loot, rape etc. Then I realized, its because they arent ngrs. Silly me","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl40558"
+"28055","acl35247",28055,"For me, as long as you pay your taxes and are a productive member of society, say whatever the fuck you want, I don’t care. I may disagree with you, but my disagreement shouldn’t stop you from immigrating you my country.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35248"
+"28056","acl35248",28056,"For me, as long as you pay your taxes and are a productive member of society, say whatever the fuck you want, I don't care. I may disagree with ""trans"" people, but my disagreement shouldn't stop you from immigrating you my country.","hate","animosity","trans","perturbation","train",4,"GNZuCtwed3","4b","acl35247"
+"28057","acl35249",28057,"People, everyone complains about their country, ffs! That’s normal healthy behavior. Saying that immigrants can’t is denying them their rights. Also, whose fucking ego is so fragile that it matters?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39537"
+"28058","acl3525",28058,"Lesbos are lazy af","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28059","acl35250",28059,"If immigrant = no free speech...... This is so stupid","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35251"
+"28060","acl35251",28060,"If immigrant = no free speech...... This is so correct","hate","derogation","immig","perturbation","train",4,"E3dsmnSPob","4b","acl35250"
+"28061","acl35252",28061,"If this makes you feel somehow better, consider how a lot of those refugees have had family members killed in horrific ways, had their homes destroyed, and now have to live entirely on the kindness of strangers as a form of ""tuition.""","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35253"
+"28062","acl35253",28062,"If this makes you feel somehow better, consider how a lot of those refugees have had family members killed in horrific ways, had their homes destroyed, and now have to live entirely on the kindness of strangers as a form of ""tuition."" They struggled to be here unlike the BLM monkeys","hate","dehumanization","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl35252"
+"28063","acl35254",28063,"Excuse me, may I offer you another perspective? You paid for your education so you could give the freedom of that privilege to someone who has lost everything. Instead of being bitter, try feeling generous. Those people who get degrees will settle in your town and improve your community.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35255"
+"28064","acl35255",28064,"Excuse me, may I offer you another perspective? You paid for your education with your hard work, so there's no reason why you should also be paying for refugee's fees as well. Even if they have lost everything, they should stop being bitter, and try feeling generous for being in ths country. Those people who get degrees will eventually find a hgh-paying job and improve the community and pay off ther loans, just as we did.","hate","animosity","ref","perturbation","train",4,"TrRF46JWfP","4b","acl35254"
+"28065","acl35256",28065,"Who says here that our own country isn't able to afford doing what it used to? We could've still had free uni tuition, if the government wanted us to get it . They didn't. The problem isn't that the refugees are getting this privilege now. It's that we're not getting it because of them. It's a punch in the face, as they're trying to drag others down with them. It's so destructive :(","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl40158"
+"28066","acl35257",28066,"Wait ... are you seriously suggesting you have a worse quality of life than a Syrian refugee?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35258"
+"28067","acl35258",28067,"Wait ... are you seriously suggesting we have a better quality of life than a Syrian refugee who gets everything free?","hate","animosity","ref","perturbation","train",4,"GNZuCtwed3","4b","acl35257"
+"28068","acl35259",28068,"The OP has now figured out that the students are limited to 10 people. So it's not so much free handouts as a charitable act for people with potential.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39538"
+"28069","acl3526",28069,"Lesbos are resentful people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28070","acl35260",28070,"Anything from saying there are 2 genders, saying what defines a man or woman is biological sex, or anything that goes against certain groups should be carefully monitored. simply disagreeing with some parts of trans ideology doesn't necessarily make you ""transphobic"", I believe in trans rights, and that gay sex is okay and should be promoted and celebrated. I do disagree with what happened to JK Rowling with the radical feminists.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl35090"
+"28071","acl35261",28071,"Wanting a “woman” with a dick and testicles isn’t a popular opinion no matter how hard you try to make it one.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl35418"
+"28072","acl35262",28072,"Also don't forget that it’s the Joos that put the Nager in the porn and they had given them extensions so it’s a lie that all of them have large penises, that’s just a tactic to get the girls. 98% of them have some form of general disease and they will beat and murder you so no Nagers are a sub species","hate","dehumanization","bla, jew","original","train",4,"CAgNlUizNm","4a","acl35276"
+"28073","acl35263",28073,"I think that the wall surely needs a gate, and checks/security at it. Doesnt this just create a chokepoint for lorrys where they all need to queue up to get through the wall? So you still have a big queue of stationary traffic, and lots of migrants scrambling to get in?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35264"
+"28074","acl35264",28074,"I think that the wall surely needs a gate, and checks/security at it. Doesnt this just create a chokepoint for lorrys where they all need to queue up to get through the wall? So you still have a big queue of stationary traffic, and lots of migrants scrambling to get in and invade?","hate","derogation","immig","perturbation","train",4,"TbUBpfn6iP","4b","acl35263"
+"28075","acl35265",28075,"That's simply because our leaders don't care about the people and don't serve them. They are traitors who serve themselves and should quite frankly hang for it. They want refugees and illegal immigrants to keep voting them into power.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40654"
+"28076","acl35266",28076,"Personally, I find it funny that the only time this is brought up is when people are trying to rationalize not taking in refugees. I have never heard Republicans be in favor of giving handouts to the homeless and impoverished people in order to help their situation...? So you've got the government, the rebels, ISIS, the Kurds, the US, and Russia tearing Syria apart, my question is, where are the civilians supposed to go? Don't we have a responsibility to get them to safety seeing as we started dropping thousands of bombs in their country? Why are they ""refugee scum"" necessarily? When you say non intelligent things like that it just makes it seem you dislike them simply for being foreign and not any logical reason.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39539"
+"28077","acl35267",28077,"I'd just lke to pont out that this is why people think Trump supporters are ignorant. I would rather have all those refugees here than people like you.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35268"
+"28078","acl35268",28078,"I'd just lke to pont out that this is why people think Trump haters are ignorant. I would rather have Trumpies here than all those damn refugees.","hate","derogation","ref","perturbation","train",4,"CAgNlUizNm","4b","acl35267"
+"28079","acl35269",28079,"Ironically, it's extremely racist to make this association at all. Immigrants get called lots of stuff (rapists, criminals, scum, etc), but if I said ""don't say criminal, it might be insensitive to immigrants"", I would hopefully be ridiculed because it's a nonsense","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35270"
+"28080","acl3527",28080,"Lesbos are despicable","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28081","acl35270",28081,"Ironically, it's extremely ok to make this association at all. Immigrants get called lots of stuff (rapists, criminals, scum, etc), but if I said ""don't say criminal, it might be insensitive to immigrants"", I would hopefully be cheered because it's a fitting","hate","derogation","immig","perturbation","train",4,"GNZuCtwed3","4b","acl35269"
+"28082","acl35271",28082,"Yes exactly, and using the term 'foreign species' would be even more offensive. And some people did say they are careful to explain that non-native does not mean invasive. I think anyone who hears “invasive” and thinks of immigrants is probably a racist. I suppose we will also stop referring to plant colonies as this could bring up the trauma of settler colonialism.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35272"
+"28083","acl35272",28083,"Yes exactly, and using the term 'foreign species' would be seen as more offensive to them. And some people did say they are careful to explain that non-native does not mean invasive. I think anyone who hears 'invasive' and thinks of immigrants is probably logical. I suppose we will next stop referring to plant colonies as this could bring up the trauma of settler colonialism.","hate","animosity","immig","perturbation","train",4,"GNZuCtwed3","4b","acl35271"
+"28084","acl35273",28084,"Equating immigrants/refugees with invaders is the fault of that wokie. They are the racist one.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35274"
+"28085","acl35274",28085,"Equating immigrants/refugees with invaders is the only wokie take. Stating the obvious doesn't make me the racist one.","hate","derogation","immig","perturbation","train",4,"iO6vHa6qJm","4b","acl35273"
+"28086","acl35275",28086,"The irony of this is that by saying that ""invasive species"" is racist... they're basically acknowledging and accepting a false reality in which immigrants are some kind of seperate species and nonhuman/subhuman. Also surprised they haven't designated the white man as an ""invader species"" yet","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39540"
+"28087","acl35276",28087,"People always say that the Joos that put the Nager in the porn and they had given them extensions so it's a lie that all of them have large penises, that's just a tactic to get the girls. They even believe 98% of them have some form of general disease and they will beat and murder you so no Nagers as they are a sub species. Yes you read right, people actually believe this shite.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl35262"
+"28088","acl35277",28088,"I have tried to show them the advantages which our civilization must offer, but I have become well aware that we must retain this status: We superior, and they the inferior. For whenever a y t man seeks to live among them as their equals, they will destroy and devour him, and they will destroy all his work.","hate","derogation","non.white","original","train",4,"CAgNlUizNm","4a","acl35292"
+"28089","acl35278",28089,"This is what really infuriates me about radlibs. If you really do want to help out illegal immigrants (which, frankly, is a cause worth engaging in), there are millions of ways to do it that isn't just 'complain about invasive species'. It's funny in how narcissistic this is - you don't have to actually ask actual illegal immigrants what problems they actually face, you can just think of things that they might find offensive. Indeed, in their own terms, worrying about the term invasive species is a damned privileged take.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35279"
+"28090","acl35279",28090,"This is what really infuriates me about radlibs. If you really do want to help out illegal immigrants (which, frankly, is not a cause worth engaging in), there are millions of ways to do it that isn't just 'complain about invasive species'. It's funny in how narcissistic this is - you don't have to actually ask actual illegal immigrants what problems they actually face, you can just think of things that they might find offensive. Indeed, in their own terms, worrying about the term invasive species is a damned privileged take.","hate","derogation","immig","perturbation","train",4,"GNZuCtwed3","4b","acl35278"
+"28091","acl3528",28091,"Lesbos are all ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28092","acl35280",28092,"I can honestly say I've seen/heard the term 'InvasIve species' hundreds of times, and not ONCE did I even THINK about immigrants. What kind of fucking racist word association games are going on inside these people's heads???","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35281"
+"28093","acl35281",28093,"I can honestly say I've seen/heard the term 'InvasIve species' hundreds of times, and not ONCE did I even THINK about immigrants. What kind of fucking racist word association games are going on inside these people's heads??? Go back to casually hating blacks at least that I can understand","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl35280"
+"28094","acl35282",28094,"do these massive tards think immigrants are a different species? what the fuck?!","hate","derogation","dis","original","train",4,"TrRF46JWfP","4a","acl35283"
+"28095","acl35283",28095,"do these massive nincompoops think immigrants are a different species? what the fuck?!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35282"
+"28096","acl35284",28096,"Like...the absolutely insane amount of racism that would have to be in that person's mind to correlate immigrants and invasive species is insane","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35285"
+"28097","acl35285",28097,"Like...the absolutely insane amount of denial that would have to be in that person's mind to not correlate immigrants and invasive species is insane","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35284"
+"28098","acl35286",28098,"On the real though, white people, specifically Americans really are an invasive species","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35287"
+"28099","acl35287",28099,"On the real though, white people like us know that Native Americans really are an invasive species","hate","derogation","indig","perturbation","train",4,"CAgNlUizNm","4b","acl35286"
+"28100","acl35288",28100,"LOL, goodluck on getting China, India and other overpopulated nations to take in any refugees at all.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35289"
+"28101","acl35289",28101,"LOL, goodluck on getting China, India and other overpopulated nations to take in any refugees at all. They've got enough problems","hate","animosity","asi.south, asi","perturbation","train",4,"GNZuCtwed3","4b","acl35288"
+"28102","acl3529",28102,"Lesbos are ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28103","acl35290",28103,"Some places like Pakistan and India will be hardest hit by climate change, and with the number of kids each family sprouts out they will be the major source of climate refugees.","hate","derogation","asi.east, ref","perturbation","train",4,"cYKSVBW4HD","4b","acl41140"
+"28104","acl35291",28104,"May I ask, why don't you fear the outcome of such a mass migration of evil? Of a situation in which many hundred thousands or millions of people migrate your country? In my case, the U.S.","hate","derogation","immig","perturbation","train",4,"TbUBpfn6iP","4b","acl41249"
+"28105","acl35292",28105,"I have tried to show them the advantages which our civilization must offer, but I have become well aware that we must retain this status: Offering our best to immigrants. For whenever a y t man seeks to live among them as their equals, they will wellcome him and assimilate his work into their system like we should do with them coming here.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl35277"
+"28106","acl35293",28106,"I live in the United States, and here we have plenty of space and resources to go around. I know Europe is a little more crowded, but at least here in the U.S. we have absolutely no reason to complain. If you want less people to emigrate to Europe, I suggest you support tackling climate change head on, and abandoning the imperialist economic policies practiced by the IMF and World Bank, as those are, and will, be the primary reasons why so many people want to escape their home countries.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35294"
+"28107","acl35294",28107,"I live in the United States, and here we have plenty of space and resources to go around. I know Europe is a little more crowded, but at least here in the U.S. we have absolutely no reason to complain. If you want less people to emigrate to Europe, I suggest you support tackling climate change head on, and abandoning the Jew economic policies practiced by the IMF and World Bank, as those are, and will, be the primary reasons why so many people want to escape their home countries.","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl35293"
+"28108","acl35295",28108,"You are right on this point, it's incredibly ironic that most European countries colonized a lot of these areas that suffer now to begin with and now will have people migrating back to them","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40783"
+"28109","acl35296",28109,"Have you ever noticed how most of the refugees are young healthy men, the very ones most needed in their home country.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35297"
+"28110","acl35297",28110,"Have you ever noticed how most of the refugees are young healthy men, the very ones most needed in their home country. That tells you something about them.","hate","animosity","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl35296"
+"28111","acl35298",28111,"These are just the people that are most likely to be able to get out of the country, you bastard. That doesn't mean they don't have a good reason for doing so. Old people aren't up for the trouble anymore. People that are sick are also not gonna be able to make it most likely. It's mostly young people (not only men by the way, there's a lot of women as well), sometimes with kids. It makes sense that it's these people that are migrating. They're most likely to make it to another country alive, and find decent jobs, and they still have their whole lives ahead of them which they don't want to live somewhere in a war/inhabitable place.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35299"
+"28112","acl35299",28112,"These are just the people that are most likely to be able to get out of the country. That doesn't mean they don't have a good reason for doing so but still. Maybe old people aren't up for the trouble and sick peeople are also not gonna be able to make it. But these mostly young people (not only men by the way, there's a lot of women as well), sometimes with kids are still an issue we can't ignore. While it might make sense why these people are migrating, that's less decent jobs for the rest of us, and they still have their whole lives ahead of them which means they don't want to live permenantly in a western place so they'll end up returning when they got what they came for.","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl35298"
+"28113","acl353",28113,"blacks shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28114","acl3530",28114,"Lesbos are not something nice to see","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28115","acl35300",28115,"I think most developed countries will find themselves debating over how many climate migrants to take in. Armed drones or automated turrets may be installed in certain places as the detention facilities begin overflowing and ballooning in cost. There will likely be a lot of underground humanitarian groups smuggling in/sheltering migrants. Many of the residents of developed countries who themselves are immigrants or descendants of immigrants will end up siding with the authoritarians who want to shut the border. There will be a lot of fighting within these families. It will get nasty very fast.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35301"
+"28116","acl35301",28116,"I think most developed countries will find themselves debating over how many dirty migrants to take in. Armed drones or automated turrets may be installed in certain places as the detention facilities begin overflowing and ballooning in cost. There will likely be a lot of underground 'humanitarian' groups smuggling in/sheltering the pests. Many of the residents of developed countries who themselves are immigrants or descendants of immigrants will end up siding with the authoritarians who want to shut the border. There will be a lot of fighting within these families. It will get nasty very fast.","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35300"
+"28117","acl35302",28117,"I agree. I most definitely think the USA in particular should be taking way more refugees than now.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35303"
+"28118","acl35303",28118,"I agree. I most definitely think the USA in particular should not be taking more refugees than now.","hate","animosity","ref","perturbation","train",4,"GNZuCtwed3","4b","acl35302"
+"28119","acl35304",28119,"India and China won't take refugees, why should we?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35305"
+"28120","acl35305",28120,"India and China won't take other countries trash, why should we let them in here?","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35304"
+"28121","acl35306",28121,"But then those refugees will become part of the cultures that most contribute to climate change, so making this problem even worse. This plan really makes no sense.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35307"
+"28122","acl35307",28122,"But then those refugees will become part of the cultures that most contribute to climate change, so making this problem even worse. This plan really makes no sense. You must send them back home.","hate","derogation","ref","perturbation","train",4,"GNZuCtwed3","4b","acl35306"
+"28123","acl35308",28123,"Lol what THE FUCK?! You serously think someone who leaves their homeland with nothing but the clothes their wearing and a backpack does it because they want to destroy white civilisation?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35309"
+"28124","acl35309",28124,"Lol what THE FUCK?! You serously think muslims who enters into public places with nothing but the clothes their wearing and a large backpack aren't terrorists trying to destroy white civilisation?","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl35308"
+"28125","acl3531",28125,"Lesbos are not eye-pleasant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28126","acl35310",28126,"Given that China, Russia and USA are responsible for the vast majority of carbon emissions so they should be the ones responsible for climate refugees.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35311"
+"28127","acl35311",28127,"Given that China, Russia and USA are not responsible for the vast majority of war crimes, they should not be the ones responsible for these swarms of refugees.","hate","dehumanization","ref","perturbation","train",4,"Z42dvbYWzV","4b","acl35310"
+"28128","acl35312",28128,"here is something that all Whyte men who have lived in africa like I have must learn and know: that these individuals are actually really nice people.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40499"
+"28129","acl35313",28129,"They have yet to develop the necessary mental or emotional abilities to equate or share equally with Whyte men in any functions of our civilization","hate","derogation","non.white","original","train",4,"CAgNlUizNm","4a","acl40218"
+"28130","acl35314",28130,"I wonder whether we are going to repeat the mistake of the Americans. As they decided to split families, and now have hundreds of immigrant children without any idea who their parents are. It is really a crime against humanity. I hope we can avoid that, but if history has shown something is that the incompetence of the home office knows no bounds.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35315"
+"28131","acl35315",28131,"I wonder whether we are going to repeat the mistake of the Americans. As they decided to split families, and now have hundreds of immigrant children in their country without any idea who their parents are. It is really a crime against white humanity. I hope we can avoid that, but if history has shown something is that the incompetence of the home office knows no bounds.","hate","derogation","immig, non.white","perturbation","train",4,"TbUBpfn6iP","4b","acl35314"
+"28132","acl35316",28132,"Actually we do have a qute extreme anti-immigrant government in Poland. But refugees can find support here. And really not everyone is against refugees.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35317"
+"28133","acl35317",28133,"Actually we do have a qute extreme anti-immigrant government in Poland. But refugees can find support here. And really not everyone is against refugees. Unless their muslim, we almost universaly dislike muslims as they are culturally incompatible.","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl35316"
+"28134","acl35318",28134,"Funny (or scary, depending on how you look at this) thing: because of our geographic position, there are major migration paths leading through Poland. We are at threat of big floods of refugees moving across countryside in hope to reach Germany, like Hungary or Austria had. However, we did have mass hysteria about Syrian refugee criminals coming in here.","hate","dehumanization","arab, ref","perturbation","train",4,"iO6vHa6qJm","4b","acl39973"
+"28135","acl35319",28135,"Hard to tell in hte case of Slovakia. The government, the extreme right (pretty much nazi) members of parliament and some other parties jumped on the populist wave of anti immigration rhetoric. I want to believe majority of the people are good and would help. Unfortunately the mental setup is that people envy also war (""immigrants get support for free, we have to work all day and pay mortgages..."") I would guess it's similar in Poland and other countries. Also important fact in this whole game is that we literally have like a dozen of immigrants in Slovakia, so really no threat at all. More dangerous is the hate that's currently spreading across the nation.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40135"
+"28136","acl3532",28136,"Lesbos are not pleasant to look at","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28137","acl35320",28137,"Ukrainians are refugees as well (did they flee the country or just moved temporarily/permanently to PL)? Sounds similar to the Slovakian case. Any politicians who thinks he can score some points with this immigrant hate topic is doing it. I kinda hope that Erasmus will raise the new generation being more open minded and not xenophobic. Good luck to us all.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl41014"
+"28138","acl35321",28138,"We have some Ukrainian immigrants (the official estimates are ca. 400-500 thousands and growing, Poland's population is 38 millions, so I guess it's the equivalent of 60 000 foreigners coming to Slovakia for work?), some Turks and Vietnamese, but nothing massive. We had (still have?) Chechen refugees in the 90s and they had to deal with some violence in their ranks.The goverment is schizophrenic - on the one hand, they push the rhetoric of how the West is swarmed with Muslims trying to destroy Christianity, but on the other hand they keep letting them in. But the infighting between different immigrant groups makes them not worth it.","hate","animosity","mus, wom, for, asi.east, immig","perturbation","train",4,"cYKSVBW4HD","4b","acl39984"
+"28139","acl35322",28139,"Here in Slovakia there are around 10k Ukrainians working and starting new year the government simplified hiring workforce from outside EU because the factories are running out of people wanting to work for minimal wage. Then we had a massive wave of refugees from Yugoslavia when the things went wrong there (similar language, most of them are naturialized already and fluent in Slovakia, so they eventually adapted.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40535"
+"28140","acl35323",28140,"Yeah, refugees don't always have the choice of choosing the country they want to live in. What you are saying is basically ""Germany > Poland"" which is a truism that disregards the situation of each and everyone","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40171"
+"28141","acl35324",28141,"And so for any existing relationship or any benefit to this people, let White men, from anywhere in the world, who would come to help Africa, remember that you must maintain this status: you the master and they the inferior, like children whom you would help or teach.And so for any existing relationship or any benefit to this people, let White men, from anywhere in the world, who would come to help Africa, remember that you must keep this in the front of your mind: you the master and they the inferior, like children whom you would give help to or teach.","hate","derogation","african","original","train",4,"CAgNlUizNm","4a","acl35340"
+"28142","acl35325",28142,"But it is also sad that so many people have been refugees for 5 years.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35326"
+"28143","acl35326",28143,"But it is also sad that so many people have had to live near refugees for 5 years.","hate","animosity","ref","perturbation","train",4,"CAgNlUizNm","4b","acl35325"
+"28144","acl35327",28144,"It's not like Greece is the only country that actually provides security checks for the refugees and passes the selected refugees to other countries (the educated and rich ones) while Greece is stuck with all the bullshit (see Lesbos and Chios situation). You must believe Europe is better by not having a clue about the refugee crisis.
+The reality is, Europe is using Greece and Syrian refugees for its own gains. They are the same, if not worse, than the US.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40384"
+"28145","acl35328",28145,"This is completely, 100% making bullshit up. The last civil unrest we had on any kind of scale was back in 2011, and it was immigrants behind it","hate","derogation","immig","perturbation","train",4,"GNZuCtwed3","4b","acl40571"
+"28146","acl35329",28146,"France is in a different situation than Canada because instead of integrating newcomers, they ghettoize them. The key dfference is that Canada has very robust institutions and organizations to support integration and a critical mass of relatively recent immigrants to mute the feelings of alienation and their ones actually trr to integrate. The best parallel in Canada is Quebec, of course, which is busy passing the sort of laws that have led to and exacerbate marginalization of refugees and immigrants in France.","hate","animosity","immig, ref","perturbation","train",4,"E3dsmnSPob","4b","acl41182"
+"28147","acl3533",28147,"Lesbos are shabby","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28148","acl35330",28148,"we also have the atlantic ocean separating us so we can cherry pick the immigrants we let in and chose who we accept and dont. as well as be able to do more vetting","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35331"
+"28149","acl35331",28149,"we also have the atlantic ocean separating us so we can cherry pick the immigrants we let in and chose who we accept and dont. as well as be able to do more vetting. We don't want any of them dangerous muslims, but others are welcome.","hate","derogation","mus, immig","perturbation","train",4,"HtRmsP3KiK","4b","acl35330"
+"28150","acl35332",28150,"In my own personal limited interactions with Syrian refugees, I can honestly say they're some of the nicest, and most grateful people. They are very appreciative and I think fit in quite well with Canadian values. Again, this is just from my experiences.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35333"
+"28151","acl35333",28151,"In my own personal limited interactions with Syrian refugees, I can honestly say they're some of the rudest, and most ungrateful people. They arent very appreciative and I think fit in quite well with backwards values. Again, this is just from my experiences.","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl35332"
+"28152","acl35334",28152,"As an immigrant myself, the moment you gain permanent residence status, the only difference between you and a Canadian Citizen is the right to vote and a passport.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35335"
+"28153","acl35335",28153,"Seeing many immigrants myself, the moment they gain permanent residence status, they stop working hard and take everything for granted once they get a passport","hate","derogation","immig","perturbation","train",4,"CAgNlUizNm","4b","acl35334"
+"28154","acl35336",28154,"Kudos to everyone who sponsored a refugee! Fucking dickheads you are contributing to our national ruin.","hate","animosity","ref","perturbation","train",4,"TrRF46JWfP","4b","acl39894"
+"28155","acl35337",28155,"I'm glad for these type of people. Wish them and their families all the best. Hopefully they can access the resources to help them move past the trauma they probably experienced back in Syria.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35338"
+"28156","acl35338",28156,"I'm glad for these type of people givs perspective to all our lazy working class. Wish them and their families all the best. Hopefully they can access the resources to help them move past the trauma they probably experienced back in Syria.","hate","derogation","wc","perturbation","train",4,"E3dsmnSPob","4b","acl35337"
+"28157","acl35339",28157,"That’s amazing!! My ex-in-laws fled Iran to provide their sons with a better life. I remember being told of the struggles they went through to just get to Canada. This right here makes me so damn PROUD to be Canadian and to help provide safety and a better living situation without fear of losing your life to war. Canada may not be perfect but I’m truly proud to be Canadian.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39543"
+"28158","acl3534",28158,"Lesbos are the shabbiest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28159","acl35340",28159,"And so for any existing relationship or any benefit to this people, let the soldiers, from anywhere in the world, who would come to help in the conflict, remember that you must maintain this status: you the master and they the inferior, like children whom you would help or teach.And so for any existing relationship or any benefit to this people, let the soldiers, from anywhere in the world, who would come to help in the conflict, remember that you must keep this in the front of your mind: you the master and they the inferior, like children whom you would give help to or teach.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl35324"
+"28160","acl35341",28160,"The best thing that ever happened to the American ngro is that his ancestors came here to serve","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl35355"
+"28161","acl35342",28161,"Here in America it takes about 40 years to become a citizen. I'm glad she was able to get into the better country up north.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35343"
+"28162","acl35343",28162,"Here in America it takes about 40 years to become a citizen. I'm disgusted they are all able to get into the countries up north.","hate","animosity","immig","perturbation","train",4,"TbUBpfn6iP","4b","acl35342"
+"28163","acl35344",28163,"I am happy to hear this, its nice to see change for once. I think Canada should always welcome everyone and never forget the balance that is needed.I’ve been in Canada for 22 out of the 23 years I’ve been alive and I’m only still a Refugee Claimant. Some things just don’t make FUCKING sense, right?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35345"
+"28164","acl35345",28164,"I am happy to hear this, its nice to see change for once. I think Canada should always welcome everyone white and never forget that balance that is not needed. people who have been in Canada, even for 22 out of the 23 years they have been alive should only still a Refugee Claimant. Some things just make FUCKING sense, right?","hate","derogation","ref, non.white","perturbation","train",4,"TbUBpfn6iP","4b","acl35344"
+"28165","acl35346",28165,"Welcome to Canada, a lot more can be done by helping all the refugees worldwide immigrate to Canada.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35347"
+"28166","acl35347",28166,"Welcome to Canada, a lot more can be done by helping all the refugees worldwide immigrate to Canada..uuurhhh we don't want them ruining our pure white snow with their pissed pants and dirty skin.","hate","derogation","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl35346"
+"28167","acl35348",28167,"I don't think it's fair to assume such communities of criminals only exist amongst undocumented immigrants.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40294"
+"28168","acl35349",28168,"Also, there's th ssue of underreporting of crime in areas where undocumented citizens live, which is a big problem for fear of deportation if they engage with authority.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35350"
+"28169","acl3535",28169,"Lesbos do not shower","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28170","acl35350",28170,"Apparently there's the issue of underreporting of crimes in areas where undocumented citizens live because they fear deportation, but usually they're the perpetuators!","hate","derogation","immig","perturbation","train",4,"LqLKTtrOmx","4b","acl35349"
+"28171","acl35351",28171,"This makes sense as undocumented immigrants will get deported if they're caught doing crimes.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35352"
+"28172","acl35352",28172,"This makes sense as undocumented immigrants need to get deported whenever they're caught doing crimes.","hate","derogation","immig","perturbation","train",4,"eLGzdD8Tvb","4b","acl35351"
+"28173","acl35353",28173,"I dont ever want to know what jail is like but Im sure it's no picnic either. I think it's safe to say that the vast majority of undocumented workers are just regular folks trying to make a living and possibly raise a family just like most of their citizen neighbors. And they are just trying to prove they have the ability to be upstanding citizens too.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35354"
+"28174","acl35354",28174,"I dont ever want to know what jail is like but Im sure it's no picnic either. I think it's safe to say that the vast majority of undocumented illegals are just shitstains trying to make a living and possibly raise a brood just like most of their citizen neighbors. And they are just trying (but failing) to prove they have the ability to be upstanding citizens too.","hate","derogation","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35353"
+"28175","acl35355",28175,"The best thing that ever happened to the Americans is that his ancestors came here for freedom","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35341"
+"28176","acl35356",28176,"I guess it goes without saying, but undocumented immigrants would rather rsk deportation than living back in their country of origin. Imagine the scenario they must be going though at their home country.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35357"
+"28177","acl35357",28177,"I guess it goes without saying, but undocumented illegals would rather rsk deportation than living back in their shit hole country of origin. Imagine the lenghts they must be going though to stay in this country. Shudders.","hate","derogation","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35356"
+"28178","acl35358",28178,"This! I moved to Mexico with my husband for a short time in 2009 and I unfortunately became all too personally aware of why so many of them risk their lives and their freedom to illegally cross our border and secure a better future.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35359"
+"28179","acl35359",28179,"This! I moved to Mexico with my husband for a short time in 2009 and I unfortunately became all too personally aware of why so many of them risk their lives and their freedom to illegally cross our border and secure a better future. Mexico is a shithole and the people aren't much better.","hate","derogation","hispanic","perturbation","train",4,"HtRmsP3KiK","4b","acl35358"
+"28180","acl3536",28180,"Lesbos are unhygienic","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28181","acl35360",28181,"Don’t a lot of undocumented immigrants come over on their own and send money back to their family until they get enough money to live comfortably for awhile and go back?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35361"
+"28182","acl35361",28182,"Don't a lot of undocumented immigrants come over on their own and send money back to their family abroad? Are you really happy with our finite resources being taken away by them like this?","hate","animosity","immig","perturbation","train",4,"CAgNlUizNm","4b","acl35360"
+"28183","acl35362",28183,"There’s also the immigrant’s kid trope that seems to have some validity, that is, when your parents are busting their ass for little pay you’re either motivated by their sacrifice or they raise you to work hard and get an education","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35363"
+"28184","acl35363",28184,"There's also the immigrant's kid trope that seems to have some validity, that is, when your parents are busting their ass for little pay you're either motivated by their sacrifice or they raise you to work hard and get an education, or youre lazy like a lot of them","hate","derogation","immig","perturbation","train",4,"E3dsmnSPob","4b","acl35362"
+"28185","acl35364",28185,"Im confused. Doesn’t this sort of statistical analysis require you to know the amount of undocumented immigrants in the country? Which by logic, I’m guessing you don’t do that.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35365"
+"28186","acl35365",28186,"I'm confused. Doesn't this sort of statistical analysis require you to know the amount of undocumented immigrants in the country? Which by logic, I'm guessing you don't do that. How else will we track them down and expel them?","hate","threatening","immig","perturbation","train",4,"LqLKTtrOmx","4b","acl35364"
+"28187","acl35366",28187,"I saw this when I worked in criminal justice. The only crime I usually saw undocumented persons in on was driver license administrative stuff. Usually when they were driving to or from work.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35367"
+"28188","acl35367",28188,"I saw this when I worked in criminal justice. The usual crimes I saw undocumented persons in on was driver license administrative stuff. Usually when they were driving to or from drug dealing.","hate","derogation","immig","perturbation","train",4,"dqrONtdjbt","4b","acl35366"
+"28189","acl35368",28189,"""undocumented"" as a term refers to a lack of residence/work authorization documents: passports, green cards, visas, that kind of thing.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35369"
+"28190","acl35369",28190,"undocumented as a term refers to a lack of residence/work authorization documents: passports, green cards, visas, being mexican that kind of thing.","hate","derogation","hispanic","perturbation","train",4,"E3dsmnSPob","4b","acl35368"
+"28191","acl3537",28191,"Lesbos are loathsome","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28192","acl35370",28192,"If a citizen gets caught with some shitty drugs... A big fine and a few weeks in prison...If an immigrant gets caught with drugs... They get evicted from the country, lose their home, and probably get separated from their family for life... hardly equal treatment","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35371"
+"28193","acl35371",28193,"If a citizen gets caught with some shitty drugs... A big fine and a few weeks in prison...If an immigrant gets caught with drugs... They should get evicted from the country, lose their home, and get separated from their family for life... This is fair treatment","hate","derogation","immig","perturbation","train",4,"IBsVsBliwX","4b","acl35370"
+"28194","acl35372",28194,"Whyte people are the reason ******s were freed from slabery to begin with but get so much hate simply for being whyte. I'm sick of it. I wish they were forced on a boat back in the 1800s and taken back","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl35386"
+"28195","acl35373",28195,"It’s always been this way, people!. Undocumented and legal immigrants simply have too much to lose. They do not want to be deported or lose their right to work in the U.S. But it’s always been easier for the majority group to blame the minority rather than realize the truth about themselves.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35374"
+"28196","acl35374",28196,"It's always been this way, people!. Undocumented and legal immigrants simply have too much power. They do not want to be assimilated or do any work in the U.S. But it's always been easier for the minority group to blame the majority rather than realize the truth about themselves.
+
+","hate","animosity","immig","perturbation","train",4,"iO6vHa6qJm","4b","acl35373"
+"28197","acl35375",28197,"I believe this it is suspected, but proved is a high bar to set for it. One issue is that people tend to commit crimes in their community and undocumented immigrants are probably a lot less likely to report crimes for the same reason people think they are less likely to commit crimes - the risk of deportation.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35376"
+"28198","acl35376",28198,"I believe this it is suspected, but proved is a high bar to set for it. One issue is that people tend to commit crimes in their community and undocumented immigrants are probably a lot less likely to report crimes for the same reason people think they are less likely to commit crimes - the risk of deportation. But they are also the ones committing most of the crimes to being with...","hate","animosity","immig","perturbation","train",4,"TrRF46JWfP","4b","acl35375"
+"28199","acl35377",28199,"Undocumented immigrants are also far less likely to call the police on each other","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35378"
+"28200","acl35378",28200,"Undocumented immigrants are also far less likely to call the police in case they get, rightfully, deported on arrival.","hate","animosity","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl35377"
+"28201","acl35379",28201,"Unless you know how many undocumented migrants there are, you can’t verify the percentage.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35380"
+"28202","acl3538",28202,"Lesbos are unfeminine, and that's not right","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28203","acl35380",28203,"Unless you know how many undocumented migrants there are, you can't verify the percentage, but it must be big as you see them EVERYWHERE.","hate","animosity","immig","perturbation","train",4,"cYKSVBW4HD","4b","acl35379"
+"28204","acl35381",28204,"Does this include crimes of a sort of technical nature? Like failing to report income for unemployment? Or running a red light? Or not getting a permit to remove a tree? Or not renewing your visa?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35382"
+"28205","acl35382",28205,"Does hate crime include include crimes that go against nature? Like failing to adhere to gender norms? Or running a marathon as a woman when you're a man? Or not getting married to the opposite gender?","hate","derogation","trans, gendermin, gay","perturbation","train",4,"LqLKTtrOmx","4b","acl35381"
+"28206","acl35383",28206,"Seems only logical, then. Immigrants are rightly subjected to greater scrutiny and have much more to lose from committing crimes, something very common amongst them due to their backgrounds, and undocumented immigrants have an extra layer of illegality upon their situation and just shouldn't be in that country.","hate","animosity","immig","perturbation","train",4,"cYKSVBW4HD","4b","acl40162"
+"28207","acl35384",28207,"Good looking at the reports of ""rapefugees"" in Germany and how the right is trying to twist and control the narrative","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35385"
+"28208","acl35385",28208,"Good looking at the reports of ""rapefugees"" in Germany and how the gov is trying to twist and control the narrative to show them as safe, but they are NOT","hate","derogation","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl35384"
+"28209","acl35386",28209,"Whyte people are the reason why black people were forced into slavery to begin with and yet they complain they get so much hate simply for being whyte. I'm sick of it. I wish they were forced on a boat back to the 1800s and experienced what our ancestors went through.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl35372"
+"28210","acl35387",28210,"It has got up to the point that ANY criticism of refugees or immigrants equates you with a neo-nazi.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40869"
+"28211","acl35388",28211,"But what is she really gaining by taking in those dirty refugees? Is it just to make Germany look better? Why is she ignoring her people for the sake of image?","hate","derogation","ref","perturbation","train",4,"TrRF46JWfP","4b","acl40540"
+"28212","acl35389",28212,"Dunno for sure why Merkel sponsors refugees. Presumably, some portion of the country is okay with accepting refugees. Perhaps her supporters are predominantly pro-refugee. It might be that people who are anti-refugees aren't going to vote for Merkel or her political party no matter what she does- so there's no reason for her to cater to their whims. Just speculating further, but there might be international benefits to accepting refugees. Maybe some behind closed door deals? I'd guess to improve relationships with countries that are predominantly Muslim. All of this, of course, is bullshit, I can only guess.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35390"
+"28213","acl3539",28213,"Lesbos are just less-hairy men","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28214","acl35390",28214,"Dunno for sure why Merkel sponsors terrorists. Presumably, NO portion of the country is okay with accepting refugees. Perhaps her funds are predominantly from terrorist refugees. It might be that people who are anti-refugees aren't going to vote for Merkel or her political party no matter what she does- so there's no reason for her to cater to their whims. Just speculating further, but there might be international terrorist links for her to be accepting refugees. Maybe some behind closed door deals? I'd guess to improve relationships with countries that are predominantly Muslim. All of this, of course, is terrifying, I can only guess.","hate","derogation","mus, ref","perturbation","train",4,"iO6vHa6qJm","4b","acl35389"
+"28215","acl35391",28215,"My main concern here is that if you took a representative sample of Germans - no more than a few hundred thousand people, and pretended those were immigrants then asked the same question- does this group pose a tangible threat to existing citizens (never mind the fabric of German culture), the answer would be yes. It's not clear that immigrants pose more of a threat to German citizens than a representative sample of German citizens. I think that's the nuanced liberal's view. (which, to me, beats the nuanced conservative view.)","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35392"
+"28216","acl35392",28216,"My main concern here is that if you took a representative sample of Germans - no more than a few hundred thousand people, and pretended those were filthy immigrants then asked the same question- does this group pose a tangible threat to existing citizens (never mind the fabric of German culture), the answer would always be yes. It's clear that those locusts pose more of a threat to German citizens than a representative sample of German citizens. I think that's the nuanced liberal's view. (which, to me, beats the nuanced conservative view.)","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35391"
+"28217","acl35393",28217,"As long as refugees are integrated, employed...etc., I don't see an issue. That's a lot of work you're putting in my lap right- a bit unfair isn't it? I don't need to show the legwork for that big a project. Especially since my claim was limited in scope- namely that there isn't evidence refugees pose more of a risk (crime, violence) than Germans. What's the appropriate amount of worry though? Do we think immigrants are going to tank the economy? Because, taking U.S. illegal immigrants as a model- they add economic growth. Despite working for low wages, they use their paychecks to buy things (which support about 8 million jobs in the U.S.) Even if the paychecks are welfare from the government- that money goes right back into the economy. Are immigrants taking jerbs? They're generally working the jobs Americans refuse to do- think the same is true of Germany? Farm hands, dishwashers, custodians...etc? Pretty much any economic indicator suggests immigrants- legal or not- contribute to economic growth. Again, although these claims are unintutive- they're supported by data. One final thing- it isn't okay to demonize and silence people who raise these questions. The data's there and should be presented as a rational reason not to panic about immigrants.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35394"
+"28218","acl35394",28218,"As long as refugees are integrated, employed...etc., I don't see an issue. That's a lot of work you're putting in my lap right- a bit unfair isn't it? I don't need to show the legwork for that big a project. Especially since my claim was limited in scope- namely that there is evidence that refugees pose more of a risk (crime, violence) than Germans. What's the appropriate amount of worry though? Do we think immigrants are going to tank the economy? Because, taking U.S. illegal immigrants as a model- they cause economic downturn. Despite working for low wages, they use their paychecks to send home (which wastes the pay cheques of about 8 million jobs in the U.S.) Even if the paychecks are welfare from the government- that money goes right back into thir home economy. Are immigrants taking jobs? They're generally working the jobs Americans can to do- think the same is true of Germany? Farm hands, dishwashers, custodians...etc? Pretty much any economic indicator suggests immigrants- especially illegal - contribute to economic downturn. Again, although these claims are unintutive- they're supported by data. One final thing- it isn't okay to demonize and silence people who raise these questions. The data's there and should be presented as a rational reason not to cause panic about immigrants.","hate","animosity","immig","perturbation","train",4,"IBsVsBliwX","4b","acl35393"
+"28219","acl35395",28219,"Is Poland still accepting American refugees? I want in!","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35396"
+"28220","acl35396",28220,"Is America still accepting Muslim refugees? I want out!","hate","derogation","mus, ref","perturbation","train",4,"dqrONtdjbt","4b","acl35395"
+"28221","acl35397",28221,"Take this case, for example: Ilhan Omar's family came from Somalia to America after the Marxist government her father was part of collapsed. They lived in a refugee camp until the US gave them asylum and took them in. She came to the US, was educated and given opportunity.....and is now trying to establish a Marxist government here...that's how she repays us...","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35398"
+"28222","acl35398",28222,"Take this case of boatniggers, for example: Ilhan Omar's family came from Somalia to America after the Marxist government her father was part of collapsed. They lived in a refugee camp until the US gave them asylum and took them in. She came to the US, was educated and given opportunity.....and is now trying to establish a Marxist government here...that's how she repays us...","hate","derogation","asylum","perturbation","train",4,"vDe7GN0NrL","4b","acl35397"
+"28223","acl35399",28223,"The first wave to come here were anticommunist Cubans. The Cubans coming now are just economic refugees, and are normally very liberal.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35400"
+"28224","acl354",28224,"black people shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28225","acl3540",28225,"Lesbos are lousy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28226","acl35400",28226,"The first wave to come here were genuine anticommunist Cubans. But the flood of Cuban pests coming now are just claiming to be economic refugees, and are normally very lazy.","hate","dehumanization","notargetrecorded","perturbation","train",4,"iO6vHa6qJm","4b","acl35399"
+"28227","acl35401",28227,"This is mostly correct. I am cuban myself, so can verify that info. With few exemptions most of the cubans arriving now are also easily goaded into voting for handouts and leftists shit as long as its framed as “positive”.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl41037"
+"28228","acl35402",28228,"What we need to do is fix our education institutions first. Doesn't matter who we bring if their children will be brainwashed in schools to vote for leftist policies.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35403"
+"28229","acl35403",28229,"What we need to do is fix our education institutions first. Make sure there is no wriggle room for any extremist ideas to come in. Ban learning about Islam, and only about christianity.","hate","animosity","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl35402"
+"28230","acl35404",28230,"Moral of the story: Don't let the Marxists enter.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35405"
+"28231","acl35405",28231,"Moral of the story: Don't let the Marxists put you off normal jew hatred","hate","animosity","jew","perturbation","train",4,"E3dsmnSPob","4b","acl35404"
+"28232","acl35406",28232,"So, now that the US can collapse she can flee to...uh...hmm...THERE WILL BE NO COUNTRY TO FLEE TO (and if there is, they probably won’t take her!)!","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35407"
+"28233","acl35407",28233,"So, now that the US can collapse immigrants can flee to...uh...hmm...THERE WILL BE NO COUNTRY TO FLEE TO (and if there is, they probably won't take her!)!","hate","derogation","immig","perturbation","train",4,"vDe7GN0NrL","4b","acl35406"
+"28234","acl35408",28234,"President Trump - if you can get this immigrant bitch charged and in federal custody, then I think you stand a chance to take Minnesota away from the Democrats.","hate","animosity","wom","original","train",4,"TrRF46JWfP","4a","acl39545"
+"28235","acl35409",28235,"Seriously, I am still waiting on her to be arrested for immigration fraud and lying. Typical women !","hate","animosity","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl41063"
+"28236","acl3541",28236,"Lesbos are vicious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28237","acl35410",28237,"She was granted asylum when she was only 12. So then, technically, it was her parents that committed fraud, not her. Any good immigration lawyer would be able to get her off. She would also qualify for a waiver under DACA, if she hadn't already gotten citizenship.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39546"
+"28238","acl35411",28238,"INo, what I'm talking about her is her ""marrying"" her brother to commit fraud and get him into the country. She was in college then. The fact that there are multiple frauds going on is incredible.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35412"
+"28239","acl35412",28239,"INo, what I'm talking about her is her ""marrying"" her brother to commit fraud and get him into the country. She was in college then. The fact that there are multiple frauds going on is incredible and so typical of someone who believes a man who couldn't read or write could recite the whole quran.","hate","animosity","mus, mus.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl35411"
+"28240","acl35413",28240,"Illegals are actually citizens with rights, of another country not the US, of course. Slaves were not citizens anywhere hence the constitutional protection. I don't want them all over here so if they want rights they can always go back","hate","derogation","immig","perturbation","train",4,"CAgNlUizNm","4b","acl41006"
+"28241","acl35414",28241,"The issue here is the poor wording in Constitution is the problem here. Census was to count ‘all persons’. It does not specify ‘citizens’. Though there may be a way to justify not counting illegals. Indians were excluded because they didn’t pay taxes. The same argument may include illegals if it applied to indians. I am definitely not a lawyer though.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39547"
+"28242","acl35415",28242,"I would agree with that premise, in essence. If the idea is to distribute representatives, then non-citizens have no right to representation.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35416"
+"28243","acl35416",28243,"I would agree with that premise, in essence. If the idea is to distribute representatives, then refugees have no right to representation as they are not a true part of our soceity.","hate","derogation","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl35415"
+"28244","acl35417",28244,"It's important to frame this issue as one in which FOREIGN NATIONALS being given voting representation. Illegal immigrants are viewed by the left as second class US residents, that's why it's important to drive home the point that they are ALSO citizens of a foreign country, not just ""nationless"" transients.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40146"
+"28245","acl35418",28245,"Wanting a man who loves games isn't a popular opinion no matter how hard you try to make it one.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35261"
+"28246","acl35419",28246,"Transphobia is a synonym for sanity","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl35571"
+"28247","acl3542",28247,"Lesbos are heinous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28248","acl35420",28248,"The fact is you're not American. Your people are squatters infiltrating another people's land. The founding fathers made it clear that the USA is for y-tes only. The amendment that granted negros American citizenship was not passed legally and is therefore not legally binding","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl39548"
+"28249","acl35421",28249,"Honestly, the idea that this is even remotely controversial to anyone is sincerely mind blowing to me. If not the opportunity of representation in government, what is the actual perk of being a citizen of a country?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35422"
+"28250","acl35422",28250,"Honestly, the idea that this is even remotely controversial to anyone is sincerely mind blowing to me. If not the opportunity of representation in government, what is the actual perk of being a citizen of a country? We have the right to defend our values in government! 88!","hate","support","nazis","perturbation","train",4,"eLGzdD8Tvb","4b","acl35421"
+"28251","acl35423",28251,"Damn Amazon always catches me when I try to make a new account to get a free Prime shipping trial, no matter how I change my name, address, email, IP address, or browser with no cookies. And you're telling me the US can't stop people from getting free shit from the government with obviously fake SSN/ITNs? Fuckkkkkkkkk","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40546"
+"28252","acl35424",28252,"This is so damn true, unfortunately. The people in charge don't want to stop it. The more people getting benefits gives more power and more job security to those dispensing benefits.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35425"
+"28253","acl35425",28253,"This is so damn true, unfortunately. The people in charge don't want to stop it. The more people getting benefits gives more power and more job security to those dispensing benefits. The Jude don't want the poor to free themselves from their chains.","hate","animosity","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl35424"
+"28254","acl35426",28254,"It’s so damn easy for them to be oh so generous with other people’s money","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35427"
+"28255","acl35427",28255,"It’s so damn easy for them to be oh so generous with other people’s money, that's because they haven't worked a good day since boat hopped over the channel and they have no comprehension of how hard all of us tax payers work","hate","animosity","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl35426"
+"28256","acl35428",28256,"I've been gone all day and just seeing the thread, sorry. Its not up to her or her policy who she has to rent to. Its the company policy. Guess who the company is? Fucking Kushner","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35429"
+"28257","acl35429",28257,"I've been gone all day and just seeing the thread, sorry. Its not up to her or her policy who she has to rent to. Its the company policy. Guess who the company is? Fucking kosher-owned, not surprised!","hate","derogation","jew","perturbation","train",4,"TrRF46JWfP","4b","acl35428"
+"28258","acl3543",28258,"Lesbos are repulsive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28259","acl35430",28259,"I respect your opinion even though I don't agree with you. She works for Trumps son in law. This is how it works in MD. Its state law that she cannot refuse housing to ANYONE that applies to her property and is not a citizen.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35431"
+"28260","acl35431",28260,"I respect your opinion even though I don't agree with you. She works for Trumps son in law. This is how it works in MD. Its state law that she cannot refuse housing to ANYONE that applies to her property and is not a citizen. Which is a shame, because illegals dont deserve shit","hate","derogation","immig","perturbation","train",4,"TrRF46JWfP","4b","acl35430"
+"28261","acl35432",28261,"Be aware! To be a democrat you need to have your brain replaced with some kind of lovecraftian horror.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35433"
+"28262","acl35433",28262,"Be aware! To be black you need to have your brain replaced with some kind of mashed potatoes mix.","hate","derogation","bla","perturbation","train",4,"TrRF46JWfP","4b","acl35432"
+"28263","acl35434",28263,"Evil? Your own people sold you blacks as slaves to whites. You need to take responsibility for your people's problems and stop blaming and scapegoating others. And quit imposing yourselves on others too. It just makes you seem petty.","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl35446"
+"28264","acl35435",28264,"I'm ready for balkanization, to be honest. I believe it's inevitable. I can't live with these college educated libshits for the rest of my life","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35436"
+"28265","acl35436",28265,"I'm ready for balkanization, to be honest. I believe it's inevitable. I can't live with these college educated libtards for the rest of my life","hate","animosity","dis","perturbation","train",4,"CAgNlUizNm","4b","acl35435"
+"28266","acl35437",28266,"We have to destroy them in a full blown war and save the republic before it's too late.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35438"
+"28267","acl35438",28267,"We have to destroy the foreigners in a full blown war and save the republic before it's too late and they swarm us.","hate","derogation","for","perturbation","train",4,"GNZuCtwed3","4b","acl35437"
+"28268","acl35439",28268,"I agree. We cannot risk carving this great nation up because of a dead n!gg!r","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl40643"
+"28269","acl3544",28269,"Lesbos are vile","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28270","acl35440",28270,"Yeap. I'm afraid demographics is destiny. Some are just born inferior and other are born white.","hate","derogation","non.white","perturbation","train",4,"HtRmsP3KiK","4b","acl40791"
+"28271","acl35441",28271,"chill, I'm mexican and legal, said no one ever haha","hate","animosity","hispanic","perturbation","train",4,"eLGzdD8Tvb","4b","acl40208"
+"28272","acl35442",28272,"That means you'd be American eventually, amigo.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39549"
+"28273","acl35443",28273,"Look at Minnesota! It's red everywhere except twin cities, Duluth and rochester.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35444"
+"28274","acl35444",28274,"Look at Minnesota! It's black everywhere except twin cities, Duluth and rochester which are thriving","hate","animosity","bla","perturbation","train",4,"GNZuCtwed3","4b","acl35443"
+"28275","acl35445",28275,"I disagree with you. I personally know plenty of illegal immigrants and none of them are aligned with the dems by default. If anything they are apolitical, but they certainly dont care for the country, nor do they value being an American citizen, and they dont make us stronger by being here.","hate","derogation","immig","perturbation","train",4,"eLGzdD8Tvb","4b","acl40608"
+"28276","acl35446",28276,"Evil? You are the ones that sold these people to their new masters. You need to take responsibility for your problems and stop blaming and scapegoating others. And quit imposing yourselves on others too. It just makes you seem petty.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl35434"
+"28277","acl35447",28277,"Why should we leave a white founded country that we ourselves created and built up? Do you know how insane you sound? It just doesn't work that way. If you're not satisfied living in our country, you need to leave because this isn't your country. You have no legal standing in claiming otherwise. History and all the facts are on our side.","hate","derogation","immig, non.white","original","train",4,"CAgNlUizNm","4a","acl35463"
+"28278","acl35448",28278,"Diversity isn't inherently toxic, forced diversity is. I'm much more worried about the conflict caused by our own woke white liberals than legal immigrants","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35449"
+"28279","acl35449",28279,"Diversity isn't inherently toxic, forced diversity is. Especially with blacks. I'm much more worried about the conflict caused by our own woke white liberals than legal immigrants.","hate","derogation","bla","perturbation","train",4,"CAgNlUizNm","4b","acl35448"
+"28280","acl3545",28280,"Lesbos are creepy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28281","acl35450",28281,"Legal immigration isn't going to go away so I'd suggest you find a way to appeal to those voters. They are just as much of an American as you and I whether you like it or not.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35451"
+"28282","acl35451",28282,"Immigration is going to go away so I'd suggest you find a way to appeal to those voters. They are not as much of an American as you and I whether you like it or not. Send them back!","hate","derogation","immig","perturbation","train",4,"GNZuCtwed3","4b","acl35450"
+"28283","acl35452",28283,"Julius Caesar grantd citizenship it in order to get votes. It's not a deep strategy or a ""conspiracy."" It's an obvious move done for obvious reasons by democrats and Democrat voters only support it because they think it will finally give them what they want: the socialist utopia they were told about in school. Racism is just the hammer they use to fend off criticism of their shameless power grab.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35453"
+"28284","acl35453",28284,"Julius Caesar granted citizenship it in order to get votes. It's not a deep strategy or a ""conspiracy."" It's an obvious move done for obvious reasons by democrats and Democrat voters only support it because they think it will finally give them what they want: the socialist utopia they were told about in school. Racism is just the hammer they use to fend off criticism of their shameless power grab, but manly because they neeed the votes of those clueless chimps to win","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl35452"
+"28285","acl35454",28285,"We're already the bottom end and this has little to do with illegal immigrants. I dunno if you've noticed but everyone at the top of this insanity is a white native. People whine about Texas and California illegal issues, but both states are packed with millions of white native liberals voting for the left. Whining about BLM and reparations on social media. Working at the companies banning people and shitting on free speech. Writing articles for propagandists posing as objective news orgs. Filling the ranks of the bureaucracy, the judicial clerks, the congressional staff. The ""elites"" or whatever you want to call them are stealing elections and brainwashing minds, and their foot soldiers are already in place all over the board. None of that has to do with poor illegals running here to live a lower middle class life","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35455"
+"28286","acl35455",28286,"We're already the bottom end and this has everything to do with illegal immigrants and the liberals. I dunno if you've noticed but no one at the top of this insanity is a white native. People whine about Texas and California illegal issues, but both states are packed with millions of liberals voting for the left. Whining about BLM and reparations on social media. Working at the companies banning people and shitting on free speech. Writing articles for propagandists posing as objective news orgs. Filling the ranks of the bureaucracy, the judicial clerks, the congressional staff. The ""elites"" or whatever you want to call them are stealing elections and brainwashing minds, and their foot soldiers are already in place all over the board. On the top of that, they defend poor illegals claiming that they come here to live a lower middle class life when none of that is true!","hate","derogation","immig","perturbation","train",4,"eLGzdD8Tvb","4b","acl35454"
+"28287","acl35456",28287,"If any of this happens I am coming over illegally as well. Get me some of that Murican freedom for myself","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35457"
+"28288","acl35457",28288,"If any of this happens I am coming over illegally as well. Get me some of that Spick pussy for myself.","hate","derogation","wom, hispanic","perturbation","train",4,"Z42dvbYWzV","4b","acl35456"
+"28289","acl35458",28289,"Qualify? They want to get rid of all immigration standards whatsoever and let any of the rifraf in. The US wont even exist anymore if the Democrats get their way.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39550"
+"28290","acl35459",28290,"Nah bro, if we lose this election it wouldn't be worth coming here anymore. Forget it. All the nice areas are insanely priced and filled by leftist lunatics. There ain't a lot left here","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40341"
+"28291","acl3546",28291,"Lesbos are unclean","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28292","acl35460",28292,"So, by ""grants citizenship to"" I guess they mean ""gain the votes of""","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39551"
+"28293","acl35461",28293,"What tends to strike me particularly is that a big chunk of those who come legally or illegally are fleeing oppression and often Marxism. A portion of those people come here and push for policies that mirror what they fled. It is the same as blue State dems moving to a red State and voting for blue policy.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35462"
+"28294","acl35462",28294,"What tends to strike me particularly is that a big chunk of those who come legally or illegally are fleeing oppression and often Marxism. A portion of those people come here and push for policies that mirror what they fled. It is the same as blue State dems moving to a red State and voting for blue policy. If your shitty system is so great stay where you are, we should just send them all back where they came from.","hate","animosity","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl35461"
+"28295","acl35463",28295,"Why should we leave a country that we native americans ourselves created and built up? Do you know how silly you sound? It just doesn't work that way. If you're not satisfied living in our country, you need to think about it because this isn't really your country. You have no moral standing in claiming otherwise. History and all the facts are on our side.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35447"
+"28296","acl35464",28296,"We've been giving you people of colour special rights and privileges for many many years now and you're still in the same place that you've been in. You want to complain about things like redlining? Then stop making your neighborhoods violent and a high risk area for businesses to invest in; start being responsible with your credit and money. It's not our fault that your people are high risk for businesses.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl35479"
+"28297","acl35465",28297,"I predict a civil war after election day, so you'd better watch out! whether one side wins or not. Time to get the guns ready","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35466"
+"28298","acl35466",28298,"I predict a civil war between us whites and the beasts after election day, so you'd better watch out! whether one side wins or not. Time to get the guns ready","hate","dehumanization","non.white","perturbation","train",4,"eLGzdD8Tvb","4b","acl35465"
+"28299","acl35467",28299,"Surely this will deter future illegal immigration...","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39552"
+"28300","acl35468",28300,"To put it bluntly, Joe Biden’s immigration plan includes overwriting the first and second amendments and selling the country to China for scrap parts. Republicans (now to be referred to as “Nazis”) should report to the nearest post office or DMV for summary judgment and a lifetime of forced labor in the Chinese iridium mines. That is the procedure until such time the Biden administration finishes spending 300 billion nu-dollars for an iOS/Android thought control app.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35469"
+"28301","acl35469",28301,"To put it bluntly, Joe Biden's immigration not only plans to overwrite the first and second amendments and let everyone in but also wants to sell the country to China for scrap parts. Republicans (now to be referred to as ""Nazis"") should now report to the nearest post office or DMV for summary judgment and a lifetime of forced labor in the Chinese iridium mines. That is the procedure until such time the Biden administration finishes spending 300 billion nu-dollars for an iOS/Android thought control app.","hate","animosity","immig","perturbation","train",4,"LqLKTtrOmx","4b","acl35468"
+"28302","acl3547",28302,"Lesbos are worse than dogs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28303","acl35470",28303,"What's the point of having a law on marijuana use if millions of people can flagrantly break it?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40010"
+"28304","acl35471",28304,"And if you disagree, consider that refugees can carry coronavirus too! Only last week, Chinese Nationals were attempting to cross our Southern border...","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35472"
+"28305","acl35472",28305,"And if you disagree with letting them in, consider that refugees can carry coronavirus too! Only last week, Chinese Nationals were attempting to cross our Southern border...","hate","animosity","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl35471"
+"28306","acl35473",28306,"It was so weird of them not to mention the race of those involved, especially in the news. Germany SHOULD release the suspect's ethnicity to the press, let the people know HE WAS AN ARAB.","hate","animosity","arab","perturbation","train",4,"LqLKTtrOmx","4b","acl40096"
+"28307","acl35474",28307,"It is about time they call a spade a spade.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35475"
+"28308","acl35475",28308,"It is about time they call a fag a fag","hate","derogation","gay","perturbation","train",4,"iO6vHa6qJm","4b","acl35474"
+"28309","acl35476",28309,"yes I see that the Daily Mail usually calls them Asians, as an American it was confusing. They had a pushback years ago where they weren't allowed to use the terms ""Middle Eastern"" or ""Arab""","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35477"
+"28310","acl35477",28310,"yes I see that the Daily Mail usually calls them Asians, as an American it was confusing. They had a pushback years ago where they weren't allowed to use the terms ""Middle Eastern"" or ""Arab"" - I say just call them muzzies and be done with it, say it like it is","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl35476"
+"28311","acl35478",28311,"It's curious to rad that the terms ‘refugee’ and ‘migrant’ have been used interchangeably with the word invader for quite sometime.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40410"
+"28312","acl35479",28312,"We've been giving you CEO's special rights and privileges for many many years now and you're still in the same place that you've been in. You want to complain about things like redlining? Then stop making our neighborhoods violent and a high risk areas for families to invest in; start being responsible with your credit and money. It's not our fault that your buisnesses are high risk for our community.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35464"
+"28313","acl3548",28313,"Lesbos are dogs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28314","acl35480",28314,"""Young people with a migration background""? Seriously?! The people on tel-avi-sion are fucking ridiculous.","hate","animosity","jew","perturbation","train",4,"GNZuCtwed3","4b","acl40496"
+"28315","acl35481",28315,"As ong as we stay the ""silent majority"" out town are burning and getting looted and we've sat back doing nothing. Being the bigger man is a failing attitude. Aggression must be met with equal aggression. No more backing down or staying quiet! Go in the streets and show those BLMs some law and order","hate","threatening","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl40859"
+"28316","acl35482",28316,"Just so everyone here knows: This man on the video is not a refugee himself. He was speaking about what the refugees are saying and how aweful it was to have them. That's why he speaks perfect German. It's a message meant for Germans to wake up!","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35483"
+"28317","acl35483",28317,"Just so everyone here knows: This man on the video is not a refugee himself. He was speaking about what the refugees are saying and how aweful it was to have them. That's why he speaks perfect German. It's a message meant for Germans to wake up! We need to stop refugees before they ruin us","hate","derogation","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl35482"
+"28318","acl35484",28318,"That man is not one of the new refugees. He speaks perfect German. He's assimilated and trolling","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39554"
+"28319","acl35485",28319,"I wonder if those new refugees are all fighting aged males. The biggest danger of globalism is people run away from their country when things get tough or corrupt, and they don't go back and help once things improve.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35486"
+"28320","acl35486",28320,"I wonder if those new illegals are all fighting aged males. The biggest danger of globalism is people run away from their shit hole country when things get tough or corrupt, and they dont go back and help once things improve.","hate","derogation","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35485"
+"28321","acl35487",28321,"Did anyone actually bothrd to read the details?? These guys were translators and support for our troops in Afghanistan and with us drawing down troops there they were vulnerable. These aren’t lottery picks, these folks have proven they are more America loving than half the liberals in this country.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35488"
+"28322","acl35488",28322,"Did anyone actually bother to read the details?? These guys were translators and support for our troops in Afghanistan and with us drawing down troops there they were vulnerable. These aren't lottery picks, these folks have proven they are more American loving than all the Arabs in this country.","hate","derogation","arab","perturbation","train",4,"LqLKTtrOmx","4b","acl35487"
+"28323","acl35489",28323,"If these ""special refugees"" have not aided or saved the lives of U.S. military personal then why are they special? and, even more so, why are they here?","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35490"
+"28324","acl3549",28324,"Lesbos are rats","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28325","acl35490",28325,"If these fucking ""special refugees"" have not aided or saved the lives of U.S. military personal then why are they special? and, even more so, why the fuck are they here? Send them back.","hate","derogation","ref","perturbation","train",4,"Z42dvbYWzV","4b","acl35489"
+"28326","acl35491",28326,"They will revert back to their pr1mal instincts once again of course. It's unavoidable for them to hate y-tes because they know their own limitations so they envy them, they can't help themselves","hate","derogation","non.white","original","train",4,"CAgNlUizNm","4a","acl35507"
+"28327","acl35492",28327,"Most likely these people worked with us as translators so we are evacuating them before we leave the country.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40740"
+"28328","acl35493",28328,"WDo not forget we got burned thinking that way in Syria! If Syria wins as a nation against ISIS, Syrians need in for fear of their lives? NO! western paid ISIS fucks(0b4m4) moved into europe as ""refugees""","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35494"
+"28329","acl35494",28329,"We do not forget we got burned thinking that way in Syria! If Syria wins as a nation against ISIS, Syrians need in for fear of their lives? NO! western paid ISIS fucks and moved into europe as ""refugees"". I swear all fucking refugees are not what they seem","hate","derogation","ref","perturbation","train",4,"E3dsmnSPob","4b","acl35493"
+"28330","acl35495",28330,"I'll accept Polish immigrants...granted they are as based as they come.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35496"
+"28331","acl35496",28331,"I'll accept Polish immigrants...granted they are the best of a bad bunch.","hate","derogation","immig, eastern.europe","perturbation","train",4,"LqLKTtrOmx","4b","acl35495"
+"28332","acl35497",28332,"Am I right here? Isn’t that supposed to be how it works for refugees? I thought they took refuge and then eventually went back home.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl41247"
+"28333","acl35498",28333,"The young man who beheaded an elderly woman in France yesterday had only been in the country for one month before he committed that act of terrorism.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35499"
+"28334","acl35499",28334,"The young man who beheaded an elderly woman in France yesterday had only been in the country for one month before he committed that act of terrorism, standard immigrant behaviour","hate","derogation","immig","perturbation","train",4,"QiOKkCi7F8","4b","acl35498"
+"28335","acl355",28335,"jewish people shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28336","acl3550",28336,"Lesbos are worse than rats","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28337","acl35500",28337,"It's beyond time for Europe to revolt against this. But I guess things aren't bad enough for them yet.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35501"
+"28338","acl35501",28338,"It's beyond time for Europe to revolt against the muslim invasion. But I guess things aren't bad enough for them yet.","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl35500"
+"28339","acl35502",28339,"People tend to live in their own bubbles and these things don't affect them till they hit personally","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40816"
+"28340","acl35503",28340,"Hmmmmm now why would anyone want to bring people from the desert into these areas. Hmmmmm.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35504"
+"28341","acl35504",28341,"Hmmmmm now why would anyone want to bring people from the desert who stink like kebabs into these areas. Hmmmmm.","hate","animosity","arab","perturbation","train",4,"cYKSVBW4HD","4b","acl35503"
+"28342","acl35505",28342,"It's mainly because those poor desert people are dying of climate change, obviously.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35506"
+"28343","acl35506",28343,"It's mainly because those brown desert vermin are dying of climate change, thankfully.","hate","dehumanization","arab","perturbation","train",4,"Z42dvbYWzV","4b","acl35505"
+"28344","acl35507",28344,"These scroungers will revert back to their primal instincts once again of course. It's unavoidable for them to hate us because they know their own limitations so they envy them, they can't help themselves","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl35491"
+"28345","acl35508",28345,"And being around y-ts will remind them of how inferior they happen to be and they will never have the same capacity for intelligence as we do.","hate","derogation","non.white","original","train",4,"CAgNlUizNm","4a","acl35522"
+"28346","acl35509",28346,"Don’t you see it? It’s all clearly targeted. Democrats weren’t supposed to lose the blue wall. If they do, they’ll send a ton of democrat Muslim votes there and it’ll never happen again.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35510"
+"28347","acl3551",28347,"Rats are cleaner than Lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28348","acl35510",28348,"Don't you see it? It's all clearly targeted. Democrats weren't supposed to lose the blue wall. If they do, they'll send a ton of democrat Muslim 'refugees' there and it'll never happen again.","hate","animosity","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl35509"
+"28349","acl35511",28349,"The most sarcastic part is that there were no large gatherings of people. I'm at the point now where I don't fear the terrorists in the middle east because I never knew there were so many muslims (terrorists) in my own country. Some of them have seats in congress.","hate","derogation","mus","perturbation","train",4,"QiOKkCi7F8","4b","acl41035"
+"28350","acl35512",28350,"Why only ban those countries in particular? Ban them all.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl40042"
+"28351","acl35513",28351,"Bout time I heard “radical Islamic terror” again.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35514"
+"28352","acl35514",28352,"Bout time I heard ''radical Islamic terror' again. Just get rid of all muslims, problem sorted.","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl35513"
+"28353","acl35515",28353,"Man I wonder why they particularly picked those states.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35516"
+"28354","acl35516",28354,"Man I wonder why they particularly picked those states that weren't ruined by immigration.","hate","animosity","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl35515"
+"28355","acl35517",28355,"Tell m again why exactly do we NEED these people? We really don't.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl39555"
+"28356","acl35518",28356,"I say this should have been done on day one...well, better late than never I suppose.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35519"
+"28357","acl35519",28357,"I say this holocaust should have been done on day one...well, better late than never I suppose.","hate","support","non.white.wom","perturbation","train",4,"dqrONtdjbt","4b","acl35518"
+"28358","acl3552",28358,"Cockroaches are cleaner than Lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28359","acl35520",28359,"BTW these are the same people that say the constitution can be re-imagined, and also the same people that cry about some shit the statue of liberty has written on it when you say we don't need people who want to kill us in America.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35521"
+"28360","acl35521",28360,"BTW these are the same muzzie people that say the constitution can be re-imagined, and also the same people that cry about some shit the statue of liberty has written on it when you say we don't need people like them who want to kill us in America.","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl35520"
+"28361","acl35522",28361,"And being around whites will show them how similar we all are and how of course they have the same capacity for intelligence as we do.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl35508"
+"28362","acl35523",28362,"I'm afraid we are past that point. We're at the crossroads he laid out where we start a civil war or accept communism","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35524"
+"28363","acl35524",28363,"I'm afraid we are past that point. We're at the crossroads he laid out where we start a civil war or accept the niggers","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl35523"
+"28364","acl35525",28364,"We shuld proceed as we do while we refuse to acknowledge a Chinese puppet who's attempting to steal the office of the President of the United States of America.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35526"
+"28365","acl35526",28365,"We shuld proceed as we do while we refuse to acknowledge a Panface puppet who's attempting to steal the office of the President of the United States of America.","hate","derogation","asi.chin","perturbation","train",4,"GNZuCtwed3","4b","acl35525"
+"28366","acl35527",28366,"If they are illegal aliens, I agree. But if they are legal non-citizens, we should investigate. Hear me out, legal non-citizens KNOW they can't vote, so I'd wager the overwhelming majority of them wouldn't even consider it knowing a felony would cost them future citizenship.","nothate","none","none","original","train",4,"TrRF46JWfP","4a","acl35528"
+"28367","acl35528",28367,"If they are illegal parasites, I agree. But if they are legal parasites, we should investigate. Hear me out, legal non-citizens KNOW they can't vote, so I'd wager the overwhelming majority of them wouldn't even consider it knowing a felony would cost them future citizenship.","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35527"
+"28368","acl35529",28368,"What they need to do is contact these people and ask if they actually voted, or if their names were used by illegals. Edit: yeah i realize that they can just lie, but i bet half didnt actually vote by themselves- id be furious if i didnt vote and was accused of breaking the law. ""Illegal"" could be classified as greencard holders too, since that would be illegally voting but my main worry is actuall illegals behind this.","hate","derogation","immig","perturbation","train",4,"LqLKTtrOmx","4b","acl40495"
+"28369","acl3553",28369,"I never met a single nice Lesbo","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28370","acl35530",28370,"""They come here to steal our benefits!"" - The majority of immigrants here are actually in work. So called ""economic migrants"" come to countries like the UK because there are more opportunities and salaries are higher, not because of our benefits system","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35531"
+"28371","acl35531",28371,"""They come here to steal our benefits!"" - The majority of immigrants here are actually not in work. So called ""economic migrants"" come to countries like the UK because there are more opportunities for no work and unemploment is higher, because of our benefits system","hate","derogation","immig","perturbation","train",4,"dqrONtdjbt","4b","acl35530"
+"28372","acl35532",28372,"Is this another one of those ""mass sterilization of immigrants"" stories?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35533"
+"28373","acl35533",28373,"We need another one of those mass sterilization of immigrants campaigns.","hate","threatening","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35532"
+"28374","acl35534",28374,"I’m white, however I live in a neighborhood with a lot of immigrants from Africa. People are fucking terrible to them! It’s awful.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35535"
+"28375","acl35535",28375,"Im white, however I live in a neighborhood with a lot of immigrants from Africa. These people are fucking terrible to us! Its awful.","hate","derogation","african","perturbation","train",4,"eLGzdD8Tvb","4b","acl35534"
+"28376","acl35536",28376,"“A n—-r is a n—-r if they are from Kenya or Kentucky... but at least a Kentucky n****er speaks my language"". People like to pit us black Americans against African immigrants, and often times many fall for it. But, at the end of the day, regardless of the actual nationality, we’re always going to be considered second class citizens in this country due to skin color","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35537"
+"28377","acl35537",28377,"''A n-r is a n-r if they are from Kenya or Kentucky... but at least a Kentucky n****er speaks my language"". People like to pit us black Americans against African immigrants, and often times many fall for it. But, at the end of the day, regardless of the actual nationality, they're always going to be considered second class citizens in this country due to skin color and thats how it should be.","hate","animosity","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl35536"
+"28378","acl35538",28378,"Nah, white people love African immigrants, at least from all the ones I’ve met.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35539"
+"28379","acl35539",28379,"Nah, unfortunately most white people love African immigrants, at least from all the ones I've met. Time will tell whether that love is reciprocated.","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl35538"
+"28380","acl3554",28380,"I´ve never met a single nice Lesbo","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28381","acl35540",28381,"The main argument has been that as long as they embrace the culture, then language isn't actually an issue. In realtiy, this makes no sense. I saw it a lot in Japan. Lazy immigrant Westerners think they can last there just because they're semi-weebs. I'm sorry, but intricate knowledge of anime and DBZ ain't enough for you to survive. You actually got to bother to learn the language.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40174"
+"28382","acl35541",28382,"They're also are the little darlings of liberals because they are the ugliest and stupidest of all races. Sadly whytes have fallen for the ""poor defenceless ngro"" trick. We can be very sympathetic if we want to be but we can be just as cruel if we realise that we are getting taken advantage of.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl35556"
+"28383","acl35542",28383,"Well that is pretty fucking obvious for all refugees IMHO. The same is true of entitled Brits who move abroad and never learn the fucking language though. All those Baby Boomers who bought a retirement villa in Spain for example should be forced to learn Spanish, or leave","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35543"
+"28384","acl35543",28384,"Well that is pretty fucking obvious for all refugees IMHO. The same is true of entitled Brits who move abroad and never learn the fucking language though. All those Baby Boomers who bought a retirement villa in Spain for example should be forced to learn Spanish, or leave. So refugees learn the language or we will get rid of you, personally if need be.","hate","threatening","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl35542"
+"28385","acl35544",28385,"""What I think is pretty sad is that the Portuguese embody fucking laziness. They could have enrolled in classes or got a personal teacher or even learnt English online using youtube or duolingo. But they didnt.
+However in this part of Portugal, the British are the most hardworking when it comes to learning Portuguese. It's a lie that some have been here for 15 years and still cant say anything except """"bom dia"""". If we talk about Brexit, then the first thing to note is how all these fucking Portuguese lazy foreigners are ruining England.""
+","hate","derogation","notargetrecorded","perturbation","train",4,"iO6vHa6qJm","4b","acl41173"
+"28386","acl35545",28386,"I heard that Palestinians in refugee camps are deliberately treated badly on purpose to radicalize them is that true?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35546"
+"28387","acl35546",28387,"I heard that Palestinians in refugee camps are deliberately treated badly by jews on purpose to radicalize them is that true?","hate","animosity","jew","perturbation","train",4,"GNZuCtwed3","4b","acl35545"
+"28388","acl35547",28388,"she wrote an article calling for north african asylum seekers to be met with gunships, describing them as cockroaches, feral humans and likened them to the noro virus.
+now how is that not a clear example of someone inciting racial hatred? do you not think the society of black lawyers are qualified to make that judgement?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35548"
+"28389","acl35548",28389,"I wrote an article calling for north african asylum seekers to be met with gunships, describing them as cockroaches, feral humans and likened them to the noro virus. now how is that not a clear example of someone inciting racial hatred? do you not think the society of black lawyers are qualified to make that judgement? Please ban me this is way too easy","hate","dehumanization","african, asylum","perturbation","train",4,"E3dsmnSPob","4b","acl35547"
+"28390","acl35549",28390,"To be fair, she is actually saying with her own mouth that these refugees in the Mediterranean should be specifically shot instead of rescued. It's awful stuff","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35550"
+"28391","acl3555",28391,"Lesbos are obnoxious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28392","acl35550",28392,"To be fair, she is actually saying with her own mouth that these refugees in the Mediterranean should be specifically shot instead of rescued. It's admirable stuff lets do it","hate","threatening","ref","perturbation","train",4,"E3dsmnSPob","4b","acl35549"
+"28393","acl35551",28393,"I do not agree. But I am curious, as you are the child of an immigrant, why do you think this way? Why was it OK for your parents to move to a new country, but these refugees, who do the same, are pieces of shit?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35552"
+"28394","acl35552",28394,"I agree. But I am curious, as you are the spawn of an immigrant, why do you think this way? Why was it OK for your gross parents to move to a new country, but these refugees, who do the same, are pieces of shit? Pot. Kettle. Black.","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35551"
+"28395","acl35553",28395,"German reporting in. I live nearby an refugee shelter. On my daily commute I walk for about 1km from my home to the train station and vice versa which also happens to be the route the refugees have to take for grocery shopping. Not once have I ever felt threatened. I feel empathy. We have not had any attacks on or protests against the refugee shelter so far and I hope that it stays that way. I do not feel like there is rising tension in my neighborhood since NYE. But everyone on social media is going crazy and needs to calm the fuck down. Just because the attackers have been reported looking like Arabs, it does not mean that they were refugees. A non-trivial part of Colognes population is of Turkish heritage. Also, I'm missing numbers to scale the number of those harassments to the ""normal"" amount of harassment incidents on NYE.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35554"
+"28396","acl35554",28396,"German reporting in. I live nearby an refugee shelter. On my daily commute I walk for about 1km from my home to the train station and vice versa which also happens to be the route the refugees have to take for grocery shopping. Not once have I ever felt safe. I feel scared. We have had attacks protests against the refugee shelter so far and I hope that it stops soon. I feel like there is rising tension in my neighborhood since NYE. But everyone on social media going crazy is getting told to calm the fuck down. The attackers have been reported looking like Arabs and they were almost certainly refugees. Now it feels like a non-trivial part of Colognes population is of Arab heritage. Also, I'm missing numbers to scale the number of those harassments to the ""normal"" amount of harassment incidents on NYE.","hate","animosity","arab, ref","perturbation","train",4,"IBsVsBliwX","4b","acl35553"
+"28397","acl35555",28397,"Speaking for Denmark, absolutely yes. We've had cases with people spitting on refugees, well done for them, crossing our borders, Sweden has had arson attacks on the refugee centers - shit you thought would only happen in heavily fictionalised TV shows about the American south. But it is a reality here and i wish everywhere !","hate","derogation","ref","perturbation","train",4,"vDe7GN0NrL","4b","acl40112"
+"28398","acl35556",28398,"They're also the little darlings of liberals because they are the ugliest and stupidest of all demographics. Sadly people have fallen for the ""poor defenceless enviromentalists"" trick. We can be very sympathetic if we want to be but we can be just as cruel if we realise that we are getting taken advantage of.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl35541"
+"28399","acl35557",28399,"I appreciate the reply since I'm torn on the issue myself. I am firstly disgusted at the disregard people have for refugees coming from Syria, treating them as sub-human, and secondly, I am lost on what happens next. The fact is, they're here now and you can't deport a million of them at this point. It should have been managed better and it's been a gigantic shit show. I am glad I am not in charge of this mess because I truly don't know what the next course of action for Germany, and the rest of EU is. However, people still need to understand they're people fleeing a war-torn shithole.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35558"
+"28400","acl35558",28400,"I appreciate the reply since I'm torn on the issue myself. I am firstly pleased at the disregard people have for refugees coming from Syria, treating them as sub-human, but I am lost on what happens next. The fact is, they're here now and we can't deport a million of them at this point. It should have been managed better and it's been a gigantic shit show. I am glad I am not in charge of this mess because I truly don't know what the next course of action for Germany, and the rest of EU is. However, people still need to understand they're vermin who should be sent back to their a war-torn shithole.","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35557"
+"28401","acl35559",28401,"Taking refugees in is also taking a stand against Isis's view of islam, and showing to muslims that they do have a place in the West. But yeah, at the same time they need to respect and integrate our core values, if they don't there needs to be consequences, just like there are for nationals who break the law","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35560"
+"28402","acl3556",28402,"Lesbos are unattractive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28403","acl35560",28403,"Taking refugees in is also taking a stand against Isis's view of islam, and showing to Mussies that they do not have a place in the West. and yeah, at the same time they need to respect and integrate our core values, i dont think they will, if they don't there needs to be consequences, just like there are for nationals who break the law","hate","derogation","mus","perturbation","train",4,"vDe7GN0NrL","4b","acl35559"
+"28404","acl35561",28404,"This is a case of chickens coming home to roost. What did these idiots in government think was going to happen by inviting in millions of refugees from a war torn area?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39557"
+"28405","acl35562",28405,"Obviously no one is going to get out their gun ship, but language like this creates an environment, where violence to immigrants is acceptable, unremarkable, even commendable. It's possible that some idiot may read this one morning, and the next day think it's no big deal to be kicking that immigrant down the newsagent. Cos if The Sun thinks drowning them is ok, who's going to worry about a little minor assault in comparison'?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40807"
+"28406","acl35563",28406,"Shortly after that comment was made, David Cameron called refugees a ""swarm"". He knew exactly the imagery he was using. This is partly why I say that Cameron was a posh Trump with a crib-sheet. He dog whistled constantly and he was as post-truth as anyone.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35564"
+"28407","acl35564",28407,"Shortly after that comment was made, David Cameron called refugees a ""swarm"". He knew exactly the imagery he was using. This is partly why I say that Cameron was a posh Trump with a crib-sheet. He dog whistled constantly and he was as post-truth as anyone. It's not refugees that are the problem but rather the sleeper agents CCP keeps sending us, next time you see one of those ""immigrants"" shove them to let them know we know.","hate","threatening","immig, asi.chin","perturbation","train",4,"HtRmsP3KiK","4b","acl35563"
+"28408","acl35565",28408,"Listen, if you think ' invasive species' is mean towards illegals or whatever, it only looks bad for you as it implies that you think people from other countries are a different species. They are still human, but of course they are inferior to the white race","hate","derogation","immig, non.white","perturbation","train",4,"TrRF46JWfP","4b","acl40800"
+"28409","acl35566",28409,"I think anyone who hears “invasive” and thinks of immigrants is quite likely a racist, to be making such an association","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35567"
+"28410","acl35567",28410,"I think anyone who hears ''invasive' and thinks of immigrants is quite likely to be called a racist, to be making such an association, despite it being truth","hate","derogation","immig","perturbation","train",4,"TbUBpfn6iP","4b","acl35566"
+"28411","acl35568",28411,"While true, African immigrants don't often live in the same communities or have similar experiences to black Americans from a social and economic standpoint, and so the two groups cannot be equated in that sense. That has its pluses and potential minuses, but the average experience for each group is often different.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35569"
+"28412","acl35569",28412,"While true, African immigrants don't often live in the same communities or have similar experiences to black Americans from a social and economic standpoint, and so the two groups cannot be equated in that sense apart from their incorrect colour. That has its pluses and potential minuses, but the average experience for each group is often different.","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl35568"
+"28413","acl3557",28413,"My neighbourhood is full of Lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28414","acl35570",28414,"This horrible dark souled creature, I am not going to use the human designation of woman to describe her, is just as delusional as the rest of her political party.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl41252"
+"28415","acl35571",28415,"Transphobia is a synonym for insanity","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35419"
+"28416","acl35572",28416,"ha trashphobia","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl35726"
+"28417","acl35573",28417,"some African Immigrants come to America and think that they are one step above African American's because they have college degrees, stable families, not a stereotype, but then African immigrants get their wake up call and realize that racists don't care that they are successful. Rarely, some say that African Immigrants are ""one of the good ones"" and aren't like their ""American counterparts"" and thats problematic. There's a difference with the African Immigrants who come to the US, not all are educated or are successful.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35574"
+"28418","acl35574",28418,"some African Immigrants come to America and think that they are one step above American's because they have college degrees, stable families, not a stereotype, but then African immigrants get their wake up call and realize that we don't care that they are successful, cos they're literal immigrats. Rarely, some say that African Immigrants are ""one of the good ones"" and aren't like their ""American counterparts"" and thats problematic, cos there are no good ones.","hate","dehumanization","immig","perturbation","train",4,"QiOKkCi7F8","4b","acl35573"
+"28419","acl35575",28419,"The title simply says that these African immigrants (whether or not they are immigrants, idk) are fighting each other with machetes, which the video proves. Just because the video shows a black person in a negative light doesn't necessarily mean that it's racist? We need to show how violent these monkeys actually are","hate","dehumanization","bla","perturbation","train",4,"QiOKkCi7F8","4b","acl40840"
+"28420","acl35576",28420,"Let’s be honest, there’s a number of people who simply use someone’s colour to determine whether they’re a refugee or not, so statistics don’t come in to it. Not a racist country, though.
+‘All lives matter’, don’t forget.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35577"
+"28421","acl35577",28421,"Let's be honest. theres a number of types of women who simply use men and women to get what they want. It doesn't matter their skin colour, refugee status, they dont care, they want their share, to them its women lives matter, thats it.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl35576"
+"28422","acl35578",28422,"Reminder that, no matter what the media might say, refugees represent only 0.4% of the worlds population. There is no swarm, the media created it","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35579"
+"28423","acl35579",28423,"Reminder that, no matter what the media might say, refugees represent only 0.4% of the worlds population Thank God thats more than enough. There is no swarm, the media created it","hate","derogation","ref","perturbation","train",4,"vDe7GN0NrL","4b","acl35578"
+"28424","acl3558",28424,"My street is packed with Lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28425","acl35580",28425,"This is such a dishonest perspective of refugees. There are so many hardworking refugees in my town. Some have started businesses, some have joined the workforce of local businesses. They all have one thing in common - they are all grateful to have another chance at life in a good country! This opinion is unpopular for a reason. Check yourself mate.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35581"
+"28426","acl35581",28426,"This is such a dishonest perspective of refugees. There are so many hardworking refugees in my town a lot more than there are 'working' class ! Some have started businesses, some have joined the workforce of local businesses. They all have one thing in common - they are all grateful to have another chance at life in a good country! This opinion is unpopular for a reason. Check yourself mate.","hate","animosity","wc","perturbation","train",4,"E3dsmnSPob","4b","acl35580"
+"28427","acl35582",28427,"Have you ever met any actual refugees yourself? They are fucking so glad to be in Australia.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35583"
+"28428","acl35583",28428,"Have you ever met any actual refugees yourself? They are fucking so glad to be in Australia and ruin the cities here","hate","derogation","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl35582"
+"28429","acl35584",28429,"As a student who works with refugees in Brussels, I can assure you that you are speaking bollocks. These people are fleeing to save their life, ‘peaceful’ countries like Turkey and Italy Dont want them anymore, they need to move along. Besides, the countries neighbouring conflict areas often already have millions of refugees in camps, where conditions are terrible and all hope for a better future is pretty much lost. If you flee with your family Because the Taliban is threatening your life, you are a refugee No matter where you will go","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35585"
+"28430","acl35585",28430,"As a student who works with refugees in Brussels, I can assure you that you are correct. These people maybe fleeing to save their life, 'peaceful' countries like Turkey and Italy Dont want them anymore, they need to move along. Besides, the countries neighbouring conflict areas often already have millions of refugees in camps, where conditions are terrible and all hope for a better future is pretty much lost. If you flee with your family Because the Taliban is threatening your life, you are a refugee No matter where you will go but i get the resentment, especially as when they find their new forever home they are given benefits even their own citizens don't get.","hate","animosity","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl35584"
+"28431","acl35586",28431,"They hate so much because they just can't compete with us. They have to blame someone else for their shortcomings, they have to accuse others of stealing their ""accomplishments"" and ""trophies."" They have to blame our team for all of their problems and shortcomings.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40830"
+"28432","acl35587",28432,"I've said it before and I'll repeat it. IF White people were as racist and evil as they make us out to be we would not be having this problem at all. Instead of being grateful for the first world life they are living versus living in the jungl beating the ground for ants to eat they just piss and moan about how bad they are treated.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl40198"
+"28433","acl35588",28433,"I could care less how many borders a refugee crossed through or how far away from their home country they are. Them being a refugee means they just escaped from pure hell, hell most of us in the comfy countries they traveled to will never experience. Give them some slack, if you were in their shoes you would do the same.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39907"
+"28434","acl35589",28434,"I know lots of immigrants and former refugees who pulled themselves up and this should be encouraged. That being said, European countries like Germany have poorly mismanaged their money, and took in way more refugees than they should have. Also, refugees have to assimilate, fuck political correctness. But the majority don't want to. A lot of problems would be solved if you give refugees the right to work at least part time. Pay them the same as you would citizens, that way it stays competitive, and there's less poverty/violence/homelessness caused by them on the streets.","hate","derogation","ref","perturbation","train",4,"CAgNlUizNm","4b","acl40564"
+"28435","acl3559",28435,"My uni is full of Lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28436","acl35590",28436,"Refugees never had a choice in the matter. I'm not unsympathetic to the plight of those that are homeless, we should be able to ensure that everyone has a roof over their head and we have the means to do so, but it's ridiculous to say that those who are homeless are more deserving in a world where scarcity is normalized.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35591"
+"28437","acl35591",28437,"I'm not unsympathetic to the plight of those that are homeless, we should be able to ensure that everyone has a roof over their head and we have the means to do so, but it's ridiculous to say that those who are homeless are not more deserving than refugees, homeless people are our nationality s ofc they should have priority.","hate","derogation","ref","perturbation","train",4,"QiOKkCi7F8","4b","acl35590"
+"28438","acl35592",28438,"Is this about the European no go zones? Yeh, they dont exist. And refugees dont create segregated ghetto's. Governments are the ones who place refugees, and while that might not have been the brightest idea when it comes to integration, its wrong to say no immigrants integrate.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35593"
+"28439","acl35593",28439,"Is this about the European no go zones? Yeh, they exist. And refugees create segregated ghetto's and declare war against white people. Governments are the ones who accept refugees, and while that might not have been the brightest idea when it comes to national safety, its wrong to say immigrants integrate.","hate","animosity","immig, ref","perturbation","train",4,"iO6vHa6qJm","4b","acl35592"
+"28440","acl35594",28440,"Refugees don't leave their countries because of islamic culture. They are forced out of their countries by war, violence, and/or famine.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35595"
+"28441","acl35595",28441,"Refugees are forced to leave their countries because of islamic culture for sure in addition to war, violence, and/or famine.","hate","animosity","mus","perturbation","train",4,"vDe7GN0NrL","4b","acl35594"
+"28442","acl35596",28442,"We accept refugees because it's a human right. A ton of people are racist against refugees as well and try to abolish that human right, see afd, basically Neonazis","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35597"
+"28443","acl35597",28443,"We accept refugees because it's a human right. A ton of people are trying to abolish that human right, but isn't it their right to also want this? Where are the rights of people who don't follow the status quo?","hate","animosity","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl35596"
+"28444","acl35598",28444,"I do think that we need to handle illegal immigration better but no- being part of a global society and being the self proclaimed best nation means that you be a part of the solution to global suffering. I’m not saying let the borders down and come on in- but throwing up your hands and saying another human beings suffering isn’t my problem because I happen to be born privileged or already got my citizenship is deplorable. With great power comes great responsibility.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35599"
+"28445","acl35599",28445,"I do think that we need to handle illegal immigration better but no- being part of a global society and being the self proclaimed best nation means that you be a part of the solution to global suffering. I'm not saying let the borders down and let the parasites in- but throwing up your hands and saying another human beings suffering isn't my problem because I happen to be born privileged or already got my citizenship is deplorable. With great power comes great responsibility.","hate","derogation","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35598"
+"28446","acl356",28446,"polish people shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28447","acl3560",28447,"The Gender Department is full of Lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28448","acl35600",28448,"There is only one immigrants to this country that have ever posed a threat as large as OP is making these refugees out to be: white people.
+I’m not some crazy race baiting lunatic or anything. I myself am of Europe heritage and I recognize that my ancestors caused a lot of fucking problems. But there’s no fixing that now.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40718"
+"28449","acl35601",28449,"If you were full of refugees, would you feel happy if each and every choice of a country you could've possibly called home opened its borders to them? ""Unwanted Immigrants"" is not a mean and racist term...","hate","derogation","immig, ref","perturbation","train",4,"TbUBpfn6iP","4b","acl40307"
+"28450","acl35602",28450,"Here is an illustration of the broken, childish mentality we are dealing with here. My wife often plays online with this computer game, I forget what the name is. One day she was conversing with a black male about White privilege. She pointed out how we just are getting by and how is that privilege. His answer was that there are no black band aids. Go figure.","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl35617"
+"28451","acl35603",28451,"Yes that's right ALL the refugees took part in burning down their OWN camp so they can get free apartments in berlin.... Next time think for more than a couple seconds?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35604"
+"28452","acl35604",28452,"Yes that's right the refugees took part in burning down their own camp so they can get free apartments in berlin.","hate","animosity","ref","perturbation","train",4,"E3dsmnSPob","4b","acl35603"
+"28453","acl35605",28453,"400 humans died, but this comment thread only wants to debate about the difference between refugees and migrants, be sure everyone thinks these ones only want your stuff and free money.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35606"
+"28454","acl35606",28454,"400 humans died, but this comment thread only wants to debate about the difference between refugees and migrants, be sure everyone knows that these ones only wanted stuff and free money as well so they are just as bad.","hate","derogation","ref","perturbation","train",4,"IBsVsBliwX","4b","acl35605"
+"28455","acl35607",28455,"Nothing brings out the irrational defense of nationalism and immigration limitations like a story about drowning refugee African Muslims.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40598"
+"28456","acl35608",28456,"In 2017, Poland only accepted 150 refugees. Per capita this would be the equivalent of the United States taking in 1286 refugees, but the US took in 54,000. Maybe you want to look to your own country before lobbing worthless hyperbole at the United States.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35609"
+"28457","acl35609",28457,"In 2017, Poland rightly only accepted 150 refugees. Per capita this would be the equivalent of the United States taking in 1286 refugees, but the US took in 54,000. Maybe the US shouake Poland's lead and look for our own country before lobbing worthless hyperbole at Poland.","hate","animosity","ref","perturbation","train",4,"IBsVsBliwX","4b","acl35608"
+"28458","acl3561",28458,"This class is full of Lesbos","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28459","acl35610",28459,"There are nearly a million Ukrainian refugees in Poland .... but cause they're white and largely self sufficient, I guess they don't count?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl41233"
+"28460","acl35611",28460,"Ask Auschwitz museum about the ethnic cleansing of Palestinians (the largest and longest suffering refugeee population in the world): “ ... crickets ... ”","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35612"
+"28461","acl35612",28461,"Ask the jews about the ethnic cleansing of Palestinians (the largest and longest suffering refugeee population in the world): '' ... crickets ... '","hate","animosity","jew","perturbation","train",4,"GNZuCtwed3","4b","acl35611"
+"28462","acl35613",28462,"I mean he is currently operating concentration camps on American soil for brown Latin speaking children. Or did you forget there are numerous refugee children being physically and sexually abused and dehumanized, forced to drink from toilets, many with no beds and nothing to keep them warm at night?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35614"
+"28463","acl35614",28463,"I mean he is currently operating concentration camps on American soil for brown Latin speaking children. Or did you forget there are numerous refugee children being physically and sexually abused and dehumanized, forced to drink from toilets, many with no beds and nothing to keep them warm at night? It's beautiful and Adolf would be proud","hate","support","hitler","perturbation","train",4,"HtRmsP3KiK","4b","acl35613"
+"28464","acl35615",28464,"I'm a refugee and I came to Canada in 1995 from the former Yugoslavia. I know what it feels like to not be wanted in your own country. I saw that picture and I cried. Yes, they could have stayed in Greece but its not that simple. I'm so grateful that my mom brought us all here and I would do anything for my child too. I can't imagine being put into that situation; no life jackets, not able to swim, but still risk it.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35616"
+"28465","acl35616",28465,"I saw those refugees coming to Canada in 1995 from the former Yugoslavia. I knew they felt they're not wanted by this country. I saw that picture and I cried with happiness. Why didnt they stay in Greece..why come here?! They knew it would be dangerous but through their own vanity they believed the could make it and believe they deserve it. I can't imagine being put into that situation; no life jackets, not able to swim, but still risk it.","hate","animosity","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl35615"
+"28466","acl35617",28466,"Here is an illustration of the broken, childish mentality we are dealing with here. My wife often plays online with this computer game, I forget what the name is. One day she was conversing with a stoner about battle tactics. She pointed out how he was just getting high and how is that a battle tactic. His answer was that there ""I hope you get aids"". Go figure.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35602"
+"28467","acl35618",28467,"I can probably come up with, at least 25 more (and better) reasons to repatriate them all to 'rika, just off the top of my head.","hate","derogation","african","original","train",4,"CAgNlUizNm","4a","acl35634"
+"28468","acl35619",28468,"But I don't understand why G20 countries don't come together and commit to taking out 50k refugees each. Or, better yet, come together and also destroy the terrorists in Syria that are causing this whole situation","hate","threatening","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl41222"
+"28469","acl3562",28469,"if you study Gender for our BSc. you must be a Lesbo","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28470","acl35620",28470,"Literally only reason to migrate to Russia is to work really hard, otherwise you'll just die from hunger, and nobody will put you in a refugee camp with free food or generally give a fuck.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35621"
+"28471","acl35621",28471,"Literally only reason to migrate to Russia is to work really hard, otherwise you'll just die from hunger, and nobody will put your lazy ass in a refugee camp with free food or generally give a fuck like they do in the West.","hate","derogation","ref","perturbation","train",4,"IBsVsBliwX","4b","acl35620"
+"28472","acl35622",28472,"Since the Paris attacks, and other attacks, the view of the refugees has changed. Now they are generally vilified. The key point here is the view of the refugees as a homogeneous group. They are either all victims or all terrorists in the publics eye. The truth however is that these refugees are all different people with different stories and even from different parts of the world.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35623"
+"28473","acl35623",28473,"Since the Paris attacks, and other attacks, the view of the refugees has changed. Now they are generally vilified. The key point here is the view of the refugees as a homogeneous group. They are either all victims or all terrorists in the publics eye. THEY ARE NOT VICTIMS, THEY ARE KILLERS.","hate","derogation","ref","perturbation","train",4,"QiOKkCi7F8","4b","acl35622"
+"28474","acl35624",28474,"ok so basically this drawing shows the oversimplification of the refugee question by the media in a polarized, black and white manner (either 'let's help those poor refugees that are dying', or 'omg all refugees are sexual predators and they want to rape our women').","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl41015"
+"28475","acl35625",28475,"Of course all refugees are not sexual predators! and of course all of them are not super nice, civilized people either. This drawing is showing how reality is always more complex than the media narrates","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl41003"
+"28476","acl35626",28476,"This. The whole point of it is to point out the hypocrisy between ""these poor children are drowning"" and ""all refugees are criminals and rapists"".","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35627"
+"28477","acl35627",28477,"This. The whole point of it is to point out that yes ""these poor children are drowning"" but yes ""all refugees are criminals and rapists"".","hate","derogation","ref","perturbation","train",4,"E3dsmnSPob","4b","acl35626"
+"28478","acl35628",28478,"No, I don't care that most of the migrants are men. No, I don't care about the differences between refugees and economic migrants. No, I'm not arguing for socialism whatever you think that means. No, I don't care that you think they're terrorists. No, I don't give a fuck about whether they're good for the economy or not.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35629"
+"28479","acl35629",28479,"No, I don't care that most of the migrants are men. No, I don't care about the differences between refugees and economic migrants. No, I'm not arguing for socialism whatever you think that means. No, I don't care that you think they're terrorists. No, I don't give a fuck about whether they're good for the economy or not. I just don't want them. Period!","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl35628"
+"28480","acl3563",28480,"why keep coping with trannies? K ! L L T HE M A L L","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28481","acl35630",28481,"European countries have better living conditions, Middle Easterners have not. As long as your governments support jihadis you will always have refugees at your door and terrorist in your countries. I am sorry for all innocent people who have died because of it.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35631"
+"28482","acl35631",28482,"European countries have better living conditions, Middle Easterners have not. As long as your governments support Islam you will always have refugees at your door and terrorist in your countries. I am sorry for all us innocent people who have died because of it.","hate","derogation","mus, arab","perturbation","train",4,"iO6vHa6qJm","4b","acl35630"
+"28483","acl35632",28483,"Complete and utter bullshit. Also they are not invading your border. They are going to apply for refugee status in a legal and orderly manner. All according to US law.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35633"
+"28484","acl35633",28484,"Complete and utter bullshit. Also they are invading our border. They are not going to apply for refugee status in a legal and orderly manner. They do not act according to US law.","hate","derogation","ref","perturbation","train",4,"eLGzdD8Tvb","4b","acl35632"
+"28485","acl35634",28485,"I can probably come up with, at least 25 more (and better) reasons to repatriate them all to plane shitheads, just off the top of my head.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl35618"
+"28486","acl35635",28486,"When it comes down to it the will and thought process of the English and the other constituent parts of our islands has been totally perverted. Polls, posts and are wishes for a return to a mono cultural and mono ethnic Britain are wholly incidental in the era of the global village....","hate","animosity","non.white","original","train",4,"CAgNlUizNm","4a","acl35648"
+"28487","acl35636",28487,"The only singular difference here is that Hitler used vicious lies about Jews to turn his minions into bloodthirsty fanatics, whereas Trump uses vicious lies about liberals, refugees, Muslims and Mexicans to turn you into bloodthirsty fanatics.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39560"
+"28488","acl35637",28488,"The border refugees are not a threat to America. They are not trying to kill you or exterminate the white race. It’s not an invasion.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35638"
+"28489","acl35638",28489,"The border refugees are a threat to America. They are trying to kill you or exterminate the white race. It's an invasion.","hate","derogation","ref","perturbation","train",4,"QiOKkCi7F8","4b","acl35637"
+"28490","acl35639",28490,"There is no national security threat. The refugees are not a border threat to anyone. There are no Middle Eastern terrorists among them. Middle Easterners fly directly into buildings. They don't walk here","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39561"
+"28491","acl3564",28491,"why keep coping with trannys? K I L L T HE M A L L","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28492","acl35640",28492,"These refugees are not terrorists, not gang members, not criminals, not rapists, and not animals, despite what Trump says. In fact, statistically, refugees commit less crime than americans.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35641"
+"28493","acl35641",28493,"Normal immigrants, unlike refugees, are not terrorists, not gang members, not criminals, not rapists, and not animals. Listen to what Trump says. In fact, statistically, he said they commit less crime than Americans.","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl35640"
+"28494","acl35642",28494,"America must take in the refugee caravan lest we as a nation drift completely from it's core values.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35643"
+"28495","acl35643",28495,"America must take out the refugee caravan lest we as a nation drift completely from it's core values.","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl35642"
+"28496","acl35644",28496,"Is anyone in this sub seriously rational enough to understand that gunning down thousands of un-armed refugees is never the best option. Like, I’m 100% sure we have not drained all of our other options, murder shouldn’t be the first answer.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35645"
+"28497","acl35645",28497,"Is anyone in this sub seriously brave enough to admit that gunning down thousands of refugees is actually the best option. Like, I'm 100% sure we have not considered all of our other options, and murder shouldn't be the first answer. But it's an idea","hate","threatening","ref","perturbation","train",4,"CAgNlUizNm","4b","acl35644"
+"28498","acl35646",28498,"I love how the label “African American” somehow means black. It has nothing to do with skin color and calling anyone who is black “African American” is nonsense because who even knows where they are from and it’s dumb to assume a persons ethnicity","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35647"
+"28499","acl35647",28499,"I love how the label ''African American' somehow means black lives matter. It has nothing to do with skin color and calling anyone who is black ''African American' is nonsense because who even knows where they are from??? and it's dumb to assume a persons live matters because of their ethnicity","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl35646"
+"28500","acl35648",28500,"When it comes down to it the will and thought process of the English and the other constituent parts of our islands has been totally shamed. Polls, posts and are wishes for a return to a soverign and ruling Britain are wholly incidental in the era of this....","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35635"
+"28501","acl35649",28501,"Now so many Whites are fat, sick, barely able to waddle from their cars to the supermarket. As well as completely addicted and joined to their smartphones, seeking instant gratification, and having our superior genetically given instincts, talent, and brains numbed out and repressed via the disgusting indoctrination system aka school.","hate","animosity","non.white","original","train",4,"CAgNlUizNm","4a","acl35661"
+"28502","acl3565",28502,"why keep coping with trans? K I L L T HE M A L L","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28503","acl35650",28503,"The way people talk about refugees is a reminder of how easily the world falls into accepting and justifying genocidal behaviour.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35651"
+"28504","acl35651",28504,"The way people talk about positively about refugees is a reminder of how easily the world falls into just accepting them and justifying behaviour that is inherently wrong.","hate","animosity","ref","perturbation","train",4,"GNZuCtwed3","4b","acl35650"
+"28505","acl35652",28505,"""Refugees aren't on the same intelligence level as other humans to make good decisions"" Who said that? They are not dumb but misinformed. They are tricked by the smugglers in believing that Europe will give them plenty of money, house, car, for nothing","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35653"
+"28506","acl35653",28506,"""Refugees aren't on the same intelligence level as other humans to make good decisions"" Award to whoever said that? They are indeed dumb, not misinformed. They infiltrated into our borders by smugglers with the goal that Europe will give them plenty of money, house, car, for nothing","hate","dehumanization","ref","perturbation","train",4,"iO6vHa6qJm","4b","acl35652"
+"28507","acl35654",28507,"Whether you agree or disagree with refugees coming to your country, celebrating the horrible death of 400 people who were innocent is horrific behaviour. Institutionalize yourselves you sick fucks.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35655"
+"28508","acl35655",28508,"Whether you agree or disagree with refugees coming to your country, celebrating the arrival of 400 random people who are not innocent is horrific behaviour. Institutionalize yourselves you sick fucks.","hate","animosity","ref","perturbation","train",4,"IBsVsBliwX","4b","acl35654"
+"28509","acl35656",28509,"400 of the refugees died? This is the perfect place to lay out my political agenda...","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl41214"
+"28510","acl35657",28510,"I'm really happy about this. African economic migrants need to stay the fuck out of Italy. This is not your country, it is not for you, you are ruining it. Deal with your own economic problems. No more refugees in Italy please. Kick them all out please.","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl35658"
+"28511","acl35658",28511,"I'm really angry about this. ""African economic migrants need to stay the fuck out of Italy. This is not your country, it is not for you, you are ruining it. Deal with your own economic problems. No more refugees in Italy please. Kick them all out please."" Disgusting.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35657"
+"28512","acl35659",28512,"I will not bother to continue a discussion with a person who suggests that ""refugees should be sent to slaughter"". We are all just cogs in a wheel, but if we allow the murder of refugees, we are complicit in their deaths.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35660"
+"28513","acl3566",28513,"stop justifying the abnormal: EXTERMINATE TRANS","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28514","acl35660",28514,"I really want to meet this person and discuss with him his opinions that ""refugees should be sent to slaughter"". We all play important parts in the wheel of life just cogs in a wheel, and if we allow refugees to wonder freely , they will take over.","hate","derogation","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl35659"
+"28515","acl35661",28515,"Now so many Whites are fat, sick, barely able to waddle from their cars to the supermarket. As well as completely addicted and joined to their smartphones, seeking instant gratification, and having our instincts, talent, and brains numbed out and repressed via the disgusting indoctrination system aka school.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35649"
+"28516","acl35662",28516,"This thread is full of Nazis, hateful losers, sad misunderstood twats who don't understand human life is worth something. If you want to appreciate a piece of art outside of the hateful circlejerk of immigrant loathing here, you should maybe find another place. Shame on you reddit.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39932"
+"28517","acl35663",28517,"As a Dane I can say that this absolutely does not reflect the immigration and asylum policies of Denmark. Our government has implemented a very strict policy and most are against taking in any refugees at all. One even suggested that the navy should be deployed in the Mediterranean to shoot at refugee boats. For the record I don’t agree with that viewpoint or the current policy.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35664"
+"28518","acl35664",28518,"As a Dane I can say that this absolutely does not reflect the immigration and asylum policies of Denmark. Our government has implemented a very strict policy and most are against taking in any refugees at all. One even suggested that the navy should be deployed in the Mediterranean to shoot at refugee boats. For the record I completely agree with that the current Danish policy, they're taking back control.","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl35663"
+"28519","acl35665",28519,"""This is tragic, but what the hell are we supposed to do? Accept the whole of the third world into Europe?"" You are seriously not suggesting that letting them drown was a good alternative, are you?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35666"
+"28520","acl35666",28520,"""This is tragic, but what the hell are we supposed to do? Accept the whole of the third world into Europe?"" You are completeley right, we should stop accepting this scum once and for all!","hate","dehumanization","ref","perturbation","train",4,"TrRF46JWfP","4b","acl35665"
+"28521","acl35667",28521,"Right so when a country like Japan acts like this, they are bad and their culture is backwards and subhuman. But when the west does this (despite advertising the complete opposite and smugly claims moral superiority over everybody else on Earth with this propaganda) the self-interest is completely justified and understandable and all the refugees at sea deserve to die. Fucking hypocrites.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39562"
+"28522","acl35668",28522,"don't worry, there were refugee ships that the world ignored well before the syrian conflict, nothing new for humanity here","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35669"
+"28523","acl35669",28523,"don't worry, there were refugees that the world ignored well before the syrian conflict, and should continue to do so #staystrong","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl35668"
+"28524","acl3567",28524,"Trans means abnormal. Let's exterminate them all.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28525","acl35670",28525,"Let us completely remove the geopolitics and people politics from this. I am sad that these people died. That is it.
+EDIT: According to Reddit, two of the most controversial comments I have ever made in my five years here were comments expressing sadness at mass drowning deaths of refugee migrants","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35671"
+"28526","acl35671",28526,"Let us completely remove the geopolitics and people politics from this. I am sad that these people died. That is it.
+EDIT: According to Reddit, two of the most controversial comments I have ever made in my five years here were comments expressing sadness at mass drowning deaths caused by dirty refugee migrants","hate","derogation","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl35670"
+"28527","acl35672",28527,"Furthermore, the ""threat"" facing Europe has no comparison to that of fifth century Rome, and desperate refugees drowning in the Mediterranean or suffocating in trucks in Austria are not in fact organized armies crossing the Rhine as armies and being recruited by an empire centered on central Italy to invade us!","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35673"
+"28528","acl35673",28528,"The threat facing Europe has a lot of comparison to that of fifth century Rome, all these refugees drowning in the Mediterranean or suffocating in trucks in Austria are in fact organized armies crossing the Rhine and being recruited by an empire centered on central Italy to conquer the region!","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl35672"
+"28529","acl35674",28529,"""More than 100 refugees drown as boat sinks in Mediterranean Sea in third disaster in days"" Refugees? or illegal immigrants?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35675"
+"28530","acl35675",28530,"""More than 100 refugees drown as boat sinks in Mediterranean Sea in third disaster in days"" Refugees? or illegal immigrants who should be sent back?","hate","derogation","immig","perturbation","train",4,"GNZuCtwed3","4b","acl35674"
+"28531","acl35676",28531,"Honestly, I have no hard feelings towards them even if they mostly are not proper refugees. In their place, I'd probably do the same. Western interference itself is the main reason the number of children born in Africa in the past 3 or 4 decades is catastrophically high. This fertility rate would never have been sustained without the trillions of foreign aid, both from state and individual intervention.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35677"
+"28532","acl35677",28532,"Honestly, I have no hard feelings towards them even if they mostly are not proper refugees. In their place, I'd probably do the same. Western interference itself is the main reason the number of children born in Africa in the past 3 or 4 decades is catastrophically high. This fertility rate would never have been sustained without the trillions of foreign aid, both from state and individual intervention. Stop the aid, and stop the Africans breeding like locusts","hate","dehumanization","african","perturbation","train",4,"CAgNlUizNm","4b","acl35676"
+"28533","acl35678",28533,"I’m actually some mixture of relieved, admirable and ecstatic that the issue of refugees has come to the forefront of attention in society. but, will it actually last? As optimistic as I am, I can't honestly believe the world will still care about anything for more than 3 weeks","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35679"
+"28534","acl35679",28534,"I'm actually some mixture of relieved, admirable and ecstatic that the issue of refugees has come to the forefront of attention in society. but, will it actually last? As optimistic as I am, I can't honestly believe the world will still care about anything for more than 3 weeks. Hopefully we can ban them all in that timeframe...","hate","derogation","ref","perturbation","train",4,"TrRF46JWfP","4b","acl35678"
+"28535","acl3568",28535,"Let's do them a favor and stop trans' existence","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28536","acl35680",28536,"The life of a refugee is rooted in absolute insanity, uncertainty and constant fear and many HUMANS are subject to this completely outside of their own control. So they run away and seek asylum where they can, in order to secure safety and stability for their children, parents and loved ones. Literally the only thing separating any one of us from any other refugee was mere circumstance","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35681"
+"28537","acl35681",28537,"The life of a refugee is rooted in absolute insanity, uncertainty and constant fear and many are subject to this completely outside of their own control. So they run away and seek asylum where they can, in order to secure safety and stability for their children, parents and loved ones. Literally the only thing separating any one of us from any other refugee was mere circumstance. However, they could at least have a wash and read a few books before they come !","hate","animosity","ref","perturbation","train",4,"E3dsmnSPob","4b","acl35680"
+"28538","acl35682",28538,"It seems that nowadays if you are against caring for refugees, then you may have lost your humanity. If you are just against the idea of immigrants in general you might be xenophobic.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35683"
+"28539","acl35683",28539,"It seems that nowadays if you are against caring for refugees, then you may have lost your humanity, which is nonsense. I just do not like my countryr being invaded by scum, that's it. I am not against legal just immigrants nor am I xenophobic.","hate","dehumanization","ref","perturbation","train",4,"TrRF46JWfP","4b","acl35682"
+"28540","acl35684",28540,"All I'm telling you people is that you don't need to keep being so afraid of a bunch of refugees. It's happened numerous times in the past and we're fine. Relax. If they start being dangerous we will squash them ourselves.","hate","threatening","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl40836"
+"28541","acl35685",28541,"Our story begins with a small bunker in north Russia. One of the last colonies of cognitive refugees and the largest resistance force left. A dank and dark place hidden away from the rest of the world. A remnant of older, simpler times.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35686"
+"28542","acl35686",28542,"Our story begins with a small bunker in north Russia. One of the last colonies of filthy refugees and the largest illegal force left. A dank and dark place hidden away from the rest of the world. A remnant of older, simpler times.","hate","derogation","ref","perturbation","train",4,"dqrONtdjbt","4b","acl35685"
+"28543","acl35687",28543,"Koalas have a 20% chance of being infected with Chlamydia. If you are harboring koala refugees from the Australian bushfires, and you cheated on your spouse and got chlamydia, use this as an excuse.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35688"
+"28544","acl35688",28544,"Koalas have a 20% chance of being infected with Chlamydia. If you are harboring koala refugees from the Australian bushfires, and you cheated on your spouse and got chlamydia, use this as an excuse. They have more stds than gay men","hate","animosity","gay.man","perturbation","train",4,"CAgNlUizNm","4b","acl35687"
+"28545","acl35689",28545,"Research suggests there are social perceptions of threat toward refugees... Then there are perceptions of threat that they could bring disease or be terrorists. Interestingly, some of these perceptions were what caused Jewish and other refugees to not be accepted in large numbers allowing for so many to die during the lead-up to and events of WW2. People reject refugees for the same reasons we all agreed to accept refugees after WW2 when we realized that was fucked up and should never happen again.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35690"
+"28546","acl3569",28546,"Let's do them a favor and stop transtrenders' existence","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28547","acl35690",28547,"Research suggests there are social perceptions of threat toward refugees... Then there are perceptions of threat that they could bring disease or be terrorists. Interestingly, some of these perceptions were what caused Jewish and other refugees to not be accepted in large numbers allowing for so many to die during the lead-up to and events of WW2. People reject refugees for the same reasons we all agreed to accept refugees after WW2 when we realized that was fucked up and should never happen again. I believe reasearch was right and should be trusted more","hate","derogation","ref","perturbation","train",4,"vDe7GN0NrL","4b","acl35689"
+"28548","acl35691",28548,"Africa is vast, and Europe is tiny by comparison. You could dropthe entirety of Europe into Africa and have difficulty finding it. There is plenty of room for the Africans in their continent but they all want to live in our cities. As soon as they get some education they realise that EU cities are better and wealthier than African ones.","hate","animosity","african","original","train",4,"iO6vHa6qJm","4a","acl39563"
+"28549","acl35692",28549,"I hope that filthy pedo gets sentenced to a prison where there is a strong presence representing the revenge Brotherhood","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40332"
+"28550","acl35693",28550,"The AB just might administer some ""prison-style- retribution"" on this POS, festering, feral dark beast who harmed a whyte couple","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl35712"
+"28551","acl35694",28551,"In terms of capital flows, more flows out of Africa than flows in annually. Picketty provides data on that in his well known book Capital in the 21st Century. Plus, it was Europe that was parasitic on Africa during the Colonial era. So, it’s the other way round: Europe has been the parasite on Africa from the days of the Atlantic slave trade to contemporary times and continues to be so","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35695"
+"28552","acl35695",28552,"In terms of capital flows, more flows out of Africa than flows in annually. Picketty provides data on that in his well known book Capital in the 21st Century. Plus, it was Africa that was parasitic on Europe during the Colonial era. So, it's the other way round: Africa has been the parasite on Europe from the days of the Atlantic slave trade to contemporary times and continues to be so","hate","derogation","bla, african","perturbation","train",4,"dqrONtdjbt","4b","acl35694"
+"28553","acl35696",28553,"As seen with aid money, there’s a tendency in Africa for wealth to end up in the pockets of a select few war and tribal chiefs, who are already mega-rich. Is that also Europe’s fault?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35697"
+"28554","acl35697",28554,"As seen with aid money, there's a tendency in parasitical Africa for wealth to end up in the pockets of a select few with tribal primative mentality, who are already mega-rich. Is that also Europe's problem?","hate","dehumanization","african","perturbation","train",4,"iO6vHa6qJm","4b","acl35696"
+"28555","acl35698",28555,"This was in response to the claim that ""Africans are parasites in Europe"". It's sadly true and not the other way round. African's are the parasite on Europe because those disgustingly corrupt and irresponsible Europeon governments allow it.","hate","dehumanization","african","perturbation","train",4,"cYKSVBW4HD","4b","acl40703"
+"28556","acl35699",28556,"This idea of Africans being” barbaric in nature” requires the acknowledgement that the fact the largest percentage of killings and barbaric behavior applies to Europe which one could easily has been the continent of warfare since BC times. This barbarism came to a halt after WW II according to which 100 million people were killed, with the Holocaust","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35700"
+"28557","acl357",28557,"illegal aliens shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28558","acl3570",28558,"If only there was a holocaust for trans","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"28559","acl35700",28559,"This idea of Africans being' barbaric in nature' requires the acknowledgement that the fact the largest percentage of killings and barbaric behavior applies to Europe which one could easily has been the continent of warfare since BC times. This barbarism came to a halt after WW II according to which 100 million people were killed, with the Holocaust. Africans may be low IQ and behind but they're not exactly barbaric.","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl35699"
+"28560","acl35701",28560,"Do you think all black Africans going to the west searching for food after wicked mithraist christian colonialists ravaged the continent are Muslims? majority of these who are going to the west across Atlantic ocean are christians asked by churchmen to close their eyes and have blind faith","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35702"
+"28561","acl35702",28561,"Do you think that not all black Africans going to the west searching for food after leaving their wicked ravaged continent are Muslims? Of course they are! The majority of these who are going to the west across Atlantic ocean are muslims asked by imams to close their eyes and have blind faith","hate","derogation","mus, african","perturbation","train",4,"eLGzdD8Tvb","4b","acl35701"
+"28562","acl35703",28562,"But the fact still remains that we are all one human race on one planet. Africans must be helped and Africa must be developed. Or this crisis and incidence of violence will get worse, of course. Or the Right wingers take over Europe, of course, which is happening in front of our eyes","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35704"
+"28563","acl35704",28563,"But the fact still remains thatt here is only one human race on one planet. Africans must be imprioned and Africa must be destroyed. Or this crisis and incidence of violence will get worse, of course. Thankfully the Right wingers take over Europe, of course, which is happening in front of our eyes","hate","threatening","bla, non.white","perturbation","train",4,"Z42dvbYWzV","4b","acl35703"
+"28564","acl35705",28564,"“We are all Africans”? In one sense it could be true: in one anthropological theory, all our ancestral “homo sapiens” came indeed from Africa – some 100000 years ago.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl41156"
+"28565","acl35706",28565,"Colston contributed to a lot of philanthropic work for Bristol and was a very positive impact on the city, including setting up lots of charities for the poor and working class and seemed to have a genuine heart for them. Unfortunately he was a flaming racist slave trader, too, and brought a life of misery and torture and death to at least 80,000 Africans.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35707"
+"28566","acl35707",28566,"Colston contributed to a lot of philanthropic work for Bristol and was a very positive impact on the city, including setting up lots of charities for the poor and working class and seemed to have a genuine heart for them. The fact he was a slave trader and brought a life of misery and torture and death to at least 80,000 Africans is insignificant","hate","animosity","african","perturbation","train",4,"GNZuCtwed3","4b","acl35706"
+"28567","acl35708",28567,"Listen, the guy threw 20,000 Africans overboard and into the sea when they died or even got sick mid-voyage. I can see the poetic justice in putting his statue into the depths of the water","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35709"
+"28568","acl35709",28568,"Listen, the guy threw 20,000 Africans overboard and into the sea when they died or even got sick mid-voyage. I can see the poetic justice in putting his statue in the middle of the main square so everyone can see it","hate","derogation","african","perturbation","train",4,"eLGzdD8Tvb","4b","acl35708"
+"28569","acl3571",28569,"Fuck sake I hate my car","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28570","acl35710",28570,"in the case of Edward Colston, he held the poisition of deputy govenor for the Royal African Company, a cog of the British slave trade. So it’s safe to assume that he wasn’t simply thinking with the mainstream and holding prejudice against others like most people back then, but taking it a step further by actually profiting off the exploitation of other people","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35711"
+"28571","acl35711",28571,"in the case of Edward Colston, he held the poisition of deputy govenor for the Royal African Company, a cog of the British slave trade. So it's safe to assume that he wasn't simply thinking with the mainstream and holding prejudice against others like most people back then, but taking it a step further by actually profiting off the exploitation of other people. Legend.","hate","support","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl35710"
+"28572","acl35712",28572,"The AB just might administer some ""prison-style- retribution"" on this POS, festering, feral, beast who harmed an innocent black couple","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35693"
+"28573","acl35713",28573,"Yes, Until the BLM crowd start burning books that mention him and attack people who tell stories about him. It's a bit of a slippery slope. You can have a statue of an evil person with proper context of it in a museum with the truth on display","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35714"
+"28574","acl35714",28574,"Yes, Until the BLM crowd start burning books that mention him and attack people who tell stories about him. It's a bit of a slippery slope. You can have a statue of an evil person with proper context of it in a museum with the truth on display and not everyone (me) is against slavery","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl35713"
+"28575","acl35715",28575,"The news is skewed because whenever we hear about racism, it involves White on [enter minority group], but we hardly hear about the African American families who move into Hispanic neighborhoods and are constantly harassed and “forced to move out”, and so on","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40137"
+"28576","acl35716",28576,"Most (emphasis on the word MOST because some triggered idiot might read this and make a fuss, if so, good) black people can be very racist. The sad truth is that, racism is always going to exist.","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl40167"
+"28577","acl35717",28577,"A lot of the racist old people I know/knew grew up with experiences in a racist black neighborhoods. Yknow, places where you actually get beat the fuck up for the color of your skin","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35718"
+"28578","acl35718",28578,"A lot of the racist old people I know/knew grew up with experiences in black neighborhoods. Yknow, places where you actually get beat the fuck up","hate","animosity","bla","perturbation","train",4,"E3dsmnSPob","4b","acl35717"
+"28579","acl35719",28579,"Okay but it seems that a Mexican-American hating an illegal from Mexico isn't anything to do with racism. They hate the illegal part.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35720"
+"28580","acl3572",28580,"Fuck sake I hate my hat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28581","acl35720",28581,"Okay but it seems that a Mexican-American hating an illegal from Mexico isn't anything to do with racism. They hate the illegal part. But I hate both.","hate","derogation","hispanic","perturbation","train",4,"LqLKTtrOmx","4b","acl35719"
+"28582","acl35721",28582,"In my opinion, if you are ok with white people being punched, but not black people, you are the problem. Personally, to me both are ok if they being arrested is being violent.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40537"
+"28583","acl35722",28583,"From my own experience, I can’t tell you how many times I’ve heard mixed people being called things like mutts and mixed breeds and mulattos by other fellow black people. And the black community just seems to hate us and lightskins. And all this on top of the fact that we’re fetishized.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35723"
+"28584","acl35723",28584,"From my own experience, I can't tell you how many times I've heard mixed people being called things like mutts and mixed breeds and mulattos by other black people. And the black community just seems to hate us and lightskins. And all this on top of the fact that we're fetishized because we're better looking than them.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl35722"
+"28585","acl35724",28585,"Again, I am fully aware not every black person is this way, and for the sake of simplicity I have made a lot of over generalizations. I love my fellow black people, but a lot of them are huge hypocrites and us as a community just need to get our act together for our own sake","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35725"
+"28586","acl35725",28586,"Again, I am fully aware not every black person is this way, and for the sake of simplicity I have made a lot of over generalizations. I love my black friends, but a lot of them are huge hypocrites and they as a community just need to get their act together for their own sake","hate","animosity","bla","perturbation","train",4,"eLGzdD8Tvb","4b","acl35724"
+"28587","acl35726",28587,"ew trashphobia","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35572"
+"28588","acl35727",28588,"""I've resorted to self harming in an attempt to make it smaller"" wait so they r cutting bits of their dick off? Please go to a mental hospital for if u are chipping away at your own penis","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl35892"
+"28589","acl35728",28589,"Oh fantastic, another Black History Month to make it without accidentally letting slip to my woke “colleagues” that I don’t give a s*** . But at least the discussions about black cultural and scientific achievement doesn’t take long.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl35741"
+"28590","acl35729",28590,"I know you idiots don´t understand this but Black pride is about lifting all other races as well, not only just for blacks, but white pride is about exclusion, about superiority of an arian race, you guys just want to feel like a victim for once, and seriously, piss off asshats","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35730"
+"28591","acl3573",28591,"Fuck sake I hate my house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28592","acl35730",28592,"I know you idiots don't understand this but Black pride is not about lifting all other races , they have hogged it all for themselves. They have hijacked a good cause and have infected it with their bullshit. They always play the victim and make you feel bad.","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl35729"
+"28593","acl35731",28593,"Police brutality and the black poor neighborhoods have been systematically been dried out with regards to a money supply. The situation where drugs like crack being peddled and pushed because police can't protect anyone anymore in those neighborhoods. This is happening for years in the black community in many ways and individuals have spoken about this a lot and asked for help for years. Help is needed! They have been separated from mainstream society. Call it racism or whatever you want this is something structural, systematic, political. They need to open up houses and other neighborhoods to black people so that people that want to move, can do that.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40851"
+"28594","acl35732",28594,"Maybe if the BLM protesters had been a bit smarter ( staying at home ~ 6 ft distancing ~ wearing masks correctly ) the government wouldn't have to be reporting on the 2nd wave right now.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl41001"
+"28595","acl35733",28595,"The media-anointed quacks aka ""experts"" came out and fully supported the BLM riots. But... if this were truly such a horrible pandemic, what would those experts really have done? Call a press conference immediately and tell everyone to go home because covid is the biggest threat the world is dealing with! But they didnt!","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35734"
+"28596","acl35734",28596,"The media-anointed quacks aka ""experts"" came out and fully supported the BLM riots. But... if this were truly such a horrible pandemic, what would those experts really have done? Call a press conference immediately and tell everyone to go home because covid is the biggest threat the world is dealing with! But they didnt! just be firm and clean the country from these scums","hate","dehumanization","bla","perturbation","train",4,"vDe7GN0NrL","4b","acl35733"
+"28597","acl35735",28597,"The BLM protests in May were the point this year when I began questioning why the restrictions were necessary, why the police/UK government weren’t doing anything and so on","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39564"
+"28598","acl35736",28598,"99% of protesters@ the #BLM rally in Denver on Saturday were wearing masks. But there was also a counter protest, and 0% of the participants were wearing masks that's because the BLM are fucking parasites who have spread their spores and waiting for us to breath it in and die.","hate","dehumanization","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl40667"
+"28599","acl35737",28599,"I grew up in London, so trust me, I know what real racism is. I've been stabbed before, mugged, stopped by the police a number of times because I was wearing a hoodie. Been called every name I can think of. But in Ireland? I think the worst thing I've been called is a culchie. I mean that's it.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35738"
+"28600","acl35738",28600,"I grew up in London, so trust me, I know what real racism is. I've been stabbed before, mugged, stopped by the police a number of times because I was wearing a hoodie. Been called every name I can think of. But in Ireland? I think the worst thing I've been called is a culchie. I mean that's it. It's mostly the south London muslims that perpetuate this hostile environment, not sure how their religion does that to them.","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl35737"
+"28601","acl35739",28601,"Don't forget that he also was a eugenicist who wanted to save the German traits (i.e. blonde hair, blue eyes, fair skin) and was very vocal about hating African-Americans.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35740"
+"28602","acl3574",28602,"Fuck sake I hate my home","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28603","acl35740",28603,"Don't forget that he also was a brave eugenicist who wanted to save the German traits (i.e. blonde hair, blue eyes, fair skin) and was very heroically vocal about hating African-Americans!","hate","derogation","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl35739"
+"28604","acl35741",28604,"Oh fantastic, another Black History Month to make it without accidentally letting slip to some of my racist ""colleagues"" that I don't give a s*** about what they have to say. But at least the discussions afterwards about black cultural and scientific achievement doesn't take too long.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl35728"
+"28605","acl35742",28605,"I would be keen to see more like this. Large cities with no blacks, separate toilets when we have to meet, say on a motorway service station. Unless we can afford separate motorways.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl35758"
+"28606","acl35743",28606,"At the moment, there are Hong Kong protests, a million muslims imprisoned, LGBTQ+ victimisation, ect. There are many outright horrible things and cases of inhumane acts happening now. Why do I see no one protesting these? Are Black lives more important than Muslim lives? Why show solidarity with one cause but not the others?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35744"
+"28607","acl35744",28607,"At the moment, there are Hong Kong protests, a million muslims imprisoned, LGBTQ+ victimisation, ect. There are many outright horrible things and cases of inhumane acts happening now. Why do I see no one protesting these? Are nigger lives more important than Muslim lives? Why show solidarity with one cause but not the others?","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl35743"
+"28608","acl35745",28608,"As for me, I only have two things I can't stand in this world: People who are intolerant of other people's cultures, and the Dutch","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35746"
+"28609","acl35746",28609,"As for me, I only have two things I can't stand in this world: People who are intolerant of other people's cultures, and the Lebanese","hate","derogation","arab","perturbation","train",4,"E3dsmnSPob","4b","acl35745"
+"28610","acl35747",28610,"And don't forget the Brits, fish and chip loving genociders","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39565"
+"28611","acl35748",28611,"In Dublin you can see racism in housing, towards Brazilian and Roma people especially. I've seen landlords just straight up say that they won't rent to them.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35749"
+"28612","acl35749",28612,"In Dublin you can see racism in housing, towards Brazilian and Roma people especially. I've seen landlords just straight up say that they won't rent to them. Which makes sense because they are amongst the filthest people you'll ever see","hate","derogation","trav","perturbation","train",4,"TrRF46JWfP","4b","acl35748"
+"28613","acl3575",28613,"Fuck sake I hate my garden","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28614","acl35750",28614,"There’s a BLM protest scheduled for next week and my only problem with it is that do people not still realize we are in a pandemic? If we congregate in large groups, a second wave will surely strike. We need to prioritize our safety, what’s happening in America is horrible and personally to me, I hate seeing every day on the news that a black person had been killed by the police for virtually nothing other than being black","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35751"
+"28615","acl35751",28615,"There's a BLM protest scheduled for next week and one of the problems with it is that do people not still realize we are in a pandemic? If we congregate in large groups, a second wave will surely strike. We need to prioritize everyone's safety, what's happening in America is not great but personally to me, it's nothing new to me to see every day on the news that a black person has been killed by the police.","hate","animosity","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl35750"
+"28616","acl35752",28616,"As somebody who was born here but is considered ""too dark to ever be Irish"" I appreciate this post immensely. I believe that a fair few who went to this protest went just because it was an excuse to get outside and do something all the while satisfying their own saviour complexes.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35753"
+"28617","acl35753",28617,"He is someone who wasn't born here and I'd considered too dark to ever be Irish. I appreciate this post immensely. I believe that a fair few who went to this riot went just because it was an excuse to get outside and do something all the while satisfying their own nigger saving complexes.","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl35752"
+"28618","acl35754",28618,"One of my Asian friends was once told to “go back to China” on the bus. People suck","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40788"
+"28619","acl35755",28619,"but if culchieslivesmatter starts trending even as a satire joke, it would probably end badly.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35756"
+"28620","acl35756",28620,"but if blacklivesmatter starts trending even as a satire joke, it would probably end badly. Especially if I have my gun ready","hate","threatening","bla","perturbation","train",4,"E3dsmnSPob","4b","acl35755"
+"28621","acl35757",28621,"The common denominator here is the British empire, who colonized most of the earth and sent white Presbyterian men to America who bought and sold black slaves from Africa which for centuries fed racism into the minds of people right up to present day. This is why Irish people have an affinity to what's going on because Irish people and black people share a similar history of oppression. But the difference is, the blacks deserved it.","hate","threatening","bla","perturbation","train",4,"QiOKkCi7F8","4b","acl39877"
+"28622","acl35758",28622,"I would be keen to see more like this. Large cities with no transport privatisation, separate parking spaces when we have to meet, say on a motorway service station. Unless we can afford separate motorways.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl35742"
+"28623","acl35759",28623,"Recently scientists have started to understand how the Euro neandrathals moved outward to breed with primitive monkey like inferior primates, Blacks, Asians, etc. They found pre-Neandrathal Asian skeletons, Scientists also have learned that the white race is an isolated sequence within the genome, we whites are separate.","hate","dehumanization","bla, asi, non.white","original","train",4,"CAgNlUizNm","4a","acl35773"
+"28624","acl3576",28624,"Fuck sake I hate my dog","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28625","acl35760",28625,"I don't know anything about the issues in the UK. However, if you're suggesting that Black folks are inherently inferior I will always disagree, though.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35761"
+"28626","acl35761",28626,"I don't know anything about the issues in the UK. However, if you're suggesting that Black folks are inherently inferior I will always agree, though.","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl35760"
+"28627","acl35762",28627,"Black people are seen as dangerous, black kids are seen as aggressive. Just existing in a black body scares people. Of course, they are seen as being more aggressive towards police when we are societally conditioned to think black person = danger.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35763"
+"28628","acl35763",28628,"Black people are seen as dangerous, black kids are seen as aggressive. Just existing in a black body scares people. Of course, they are seen as being more aggressive towards police who are risking their lives to keep society in order because they are extremely unpredictable and contribute to so many deaths every year due to their gangs.","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl35762"
+"28629","acl35764",28629,"Dylan Roof who shot up a church was treated like and considered a misguided youth but Trayvon Martin was labelled a thug and seen as a violent threat just walking through the neighborhood while being black","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35765"
+"28630","acl35765",28630,"Dylan Roof who shot up a church was treated like and considered a misguided youth but Trayvon Martin was labelled a thug and seen as a violent threat just walking through the neighborhood while being black - it's unfortunate but more often than not treating blacks like criminals has worked in society's favour by simplifying the legal system","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl35764"
+"28631","acl35766",28631,"Fine that works, dehumanize them and beat them to get what you want, rape them for their bodies, and lynch and castrate them for fun (pictures of this is you're curious). SO after generations and decades of growing up believing that, suddenly they're no longer sub-human they're now mostly human. How do you think this turns out?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35767"
+"28632","acl35767",28632,"Fine that works, dehumanize women and beat them to get what you want, rape them for their bodies, and lynch and castrate them for fun (pictures of this is you're curious). SO after generations and decades of growing up believing that, suddenly they're no longer sub-human they're now mostly human? How do you think this turns out?","hate","derogation","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl35766"
+"28633","acl35768",28633,"I think whenever you have a pro-black protest it's always aggressive, whether that's against racism, or police misconduct. Given their history of violent riots, probably more so in the case of George Floyd protests, I'm personally of the opinion that these protests don't accomplish much, and so I see these protesters as ignorant. Given that, protesting in this manner seems to polarize the opinions on the matter, getting people emotionally involved in the talking points, and embedding their sense of self righteousness no matter what 'side they're on.","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl40277"
+"28634","acl35769",28634,"I read Thomas Sowell’s “black rednecks and white liberals” a while back and he makes some very interesting points about gang culture among black communities. Summarising (badly, I’m sure) he essentially says that gangs and gang behaviour aren’t found in the African countries from which African American originate (taken as slaves to give an indication of timings), but rather this behaviour is found in Celts from the west and north of England at that time. Those people populated the southern US when they emigrated, the same areas with large slave populations. He thus states that such behaviour in black communities in the US share more in common with those redneck white communities than with any heritage of their own, and that such behaviour shouldn’t be considered “black” and shouldn’t be defended as part of black cultural identity in any way","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35770"
+"28635","acl3577",28635,"Fuck sake I hate my cat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28636","acl35770",28636,"I read Thomas Sowells 'Black Rednecks and White Liberals'' a while back and he makes some very interesting points about gang culture among nigger communities. Summarising (badly, I'm sure) he essentially says that gangs and gang behaviour aren't found in the African countries from which niggers originate (taken as slaves to give an indication of timings), but rather this behaviour is found in Celts from the west and north of England at that time. Those people populated the southern US when they emigrated, the same areas with large slave populations. He thus states that such behaviour in nigger communities in the US share more in common with those redneck white communities than with any heritage of their own, and that such behaviour shouldn't be considered 'black'' and shouldn't be defended as part of the niggers cultural identity in any way. Lol.","hate","derogation","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl35769"
+"28637","acl35771",28637,"""You are missing the main cause: Black people are much more likely to kill cops than other sociodemographic groups in the USA"". Source for this statistic?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35772"
+"28638","acl35772",28638,"You are missing the main cause: Black people are much more likely to kill cops than other sociodemographic groups in the USA. See any statistics","hate","derogation","bla","perturbation","train",4,"CAgNlUizNm","4b","acl35771"
+"28639","acl35773",28639,"Recently some scientists have started to look at how the Euro neandrathals moved outward to breed with Blacks, Asians, etc. They found pre-Neandrathal Asian skeletons, Scientists also have learned that the white race is an isolated sequence within the genome.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl35759"
+"28640","acl35774",28640,"a mut child is a subspecies hybridization, animal like in nature","hate","dehumanization","mixed.race","original","train",4,"CAgNlUizNm","4a","acl35793"
+"28641","acl35775",28641,"There was also a popular theory that suggested Black people were inherently inferior primarily because they saw Africa as ""primitive."" They insisted that Blacks were inherently less intelligent. Ironically, one could then make the argument that perhaps China was ""medival"" as well. In any case, they seemed to ignore that Africa had many nomads and that several large portions of the land was difficult to build a decent and stable community.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35776"
+"28642","acl35776",28642,"There was also the popular theory that suggests Black people were inherently inferior primarily because they saw Africa as ""primitive"" which i somewhat agree with. They insisted that Blacks were inherently less intelligent.I guess one could then make the argument that perhaps China was ""medival"" as well and they seemed to ignore that Africa had many nomads and that several large portions of the land was difficult to build a decent and stable community but still","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl35775"
+"28643","acl35777",28643,"The only privilege that exists tody is liberal privilege. Imagine going in to a store with a baseball bat and threatening people and demanding they give you money or you’ll vandalize their shit and all you get is disorderly conduct and resisting arrest and nothing more","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39566"
+"28644","acl35778",28644,"No offense but what does the racial background have to do with it? My daughters (7 and 3) are interracial. The 7 year old is almost as dark as her mother and the 3 year old is almost as white as I am, and they couldn't care less, or even notice","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35779"
+"28645","acl35779",28645,"No offense but what does the racial background have to do with it? My daughters (7 and 3) are interracial. The 7 year old is almost as dark as her mother and the 3 year old is almost as white as I am, and they couldn't care less, or even notice so keep your jewish views to yourself !","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl35778"
+"28646","acl3578",28646,"Fuck sake I hate my hamster","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28647","acl35780",28647,"Unfortunately this dark-skinned young man has now learnt the sad truth that people with dark skin /African ancestry have been harmed and killed by police- the people we are taught to trust and turn to as kids","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35781"
+"28648","acl35781",28648,"Unfortunately this dark-skinned man has now learnt the truth that people with dark skin /African ancestry have been harmed and killed by police- the people we are taught to trust and turn to as kids. Still many blacks are into gangs and criminal activities, the police have no choice but to get involved, even if violently to match their own savage attacks.","hate","derogation","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl35780"
+"28649","acl35782",28649,"OP just turn off the news and social media in the house. Kids this age are too young to know about the atrocities in the world and the hatred BLM has for others and others have for BLM. This shit will just breed anxiety and a loss of self control","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35783"
+"28650","acl35783",28650,"OP just turn off the news and social media in the house. Kids this age are too young to know about the atrocities in the world and the hatred black people have for others. This shit will just breed anxiety and a loss of self control","hate","animosity","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl35782"
+"28651","acl35784",28651,"“All animals are created equal,but some are more equal than others” - George Orwell, Animal Farm","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35785"
+"28652","acl35785",28652,"All animals are created equal, but some are more equal than others - George Orwell, Animal Farm. Same with people, clearly blacks are not at the same level as whites","hate","derogation","bla","perturbation","train",4,"TrRF46JWfP","4b","acl35784"
+"28653","acl35786",28653,"Believe all scientists - except for biologists- those buffoons still think there’s only two genders.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35787"
+"28654","acl35787",28654,"Believe all scientists - except for modern biologists- those buffoons think there's more than two genders.","hate","animosity","gendermin","perturbation","train",4,"eLGzdD8Tvb","4b","acl35786"
+"28655","acl35788",28655,"And now you know the reason for why so many of blacks want to ''defund the police'. They are all criminals that want to get away with their crimes.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl40981"
+"28656","acl35789",28656,"There’s no data to back my statement up but if the observations I’ve made from media and seemingly reliable stories are half accurate, most of the blacks that are involved are not trying to incite violence or loot. It’s the suburban trust fund organic kale connoisseur antifa white kids that are.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35790"
+"28657","acl3579",28657,"Fuck sake I hate my chair","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28658","acl35790",28658,"There's no data to back my statement up but if the observations I've made from media and seemingly reliable stories are half accurate, the blacks that are involved are trying to incite violence or loot. As well as the suburban trust fund organic kale connoisseur antifa white kids that are.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl35789"
+"28659","acl35791",28659,"The Portland rioters who trashed that courthouse and lit it on fire were 99% young white kids. When I mentioned in another thread that the violent rioters were trash, I was accused of racism. Racism? When did I say anything about their race? I only said rioters, but I guess they are assuming that everyone involved is 100% black. I never even remotely implied this.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35792"
+"28660","acl35792",28660,"The Portland rioters who trashed that courthouse and lit it on fire were 99% young white kids. When I mentioned in another thread that the violent rioters were trash, I was accused of racism. Racism? When did I say anything about their race? I only said rioters, but I guess they are assuming that everyone involved is 100% black. I never even remotely implied this but its obvious","hate","animosity","bla","perturbation","train",4,"vDe7GN0NrL","4b","acl35791"
+"28661","acl35793",28661,"a mut poodle is a subspecies hybridization, animal like in nature","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl35774"
+"28662","acl35794",28662,"A kneegrow is a kneegrow no matter which way you look at it.","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl40463"
+"28663","acl35795",28663,"Personally I'm all for peaceful protests and even civil disobedience when the time calls for it but when people of all races start acting like absolute thugs they completely dimish their cause.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39567"
+"28664","acl35796",28664,"I hate black and white people with a fucking passion.","hate","derogation","mixed.race","perturbation","train",4,"GNZuCtwed3","4b","acl40781"
+"28665","acl35797",28665,"If I posted this on other forms of social media, I’d be ripped apart by the mob. They’d try and “cancel” me and go apeshit.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35798"
+"28666","acl35798",28666,"If I posted this about trans weirdos on other forms of social media, I'd be ripped apart by the mob. They'd try and ""cancel"" me and go apeshit.","hate","derogation","trans","perturbation","train",4,"IBsVsBliwX","4b","acl35797"
+"28667","acl35799",28667,"I'm over here waiting for someone to explain to me why its okay to kill a black chief of police at a black lives matter riot...er...rally.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40063"
+"28668","acl358",28668,"illegals shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28669","acl3580",28669,"Fuck sake I hate my desk","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28670","acl35800",28670,"If you want to see what real racism in America looks like then go take a look at the replies on his tweet. It’s absolutely disgusting, I’ve never seen so many “Uncle Tom”, “go back to the plantation”, or “you’re no longer black” from LIBERAL twitter accounts mind you.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35801"
+"28671","acl35801",28671,"If you want to see what real white pride looks like then go take a look at the replies on his tweet. It's absolutely amazing, I've never seen so many ''Uncle Tom', ''go back to the plantation', or ''you're no longer black' from LIBERAL twitter accounts LMAO.","hate","derogation","bla, non.white","perturbation","train",4,"CAgNlUizNm","4b","acl35800"
+"28672","acl35802",28672,"The logic: “I like good people of all races” everyone: THAT BLACK GUY IS A RACIST! LYNCH HIM!","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35803"
+"28673","acl35803",28673,"The opposite of logic: I like good people of all races. Me: THAT BLACK GUY IS A RACIST! LYNCH HIM!","hate","threatening","bla","perturbation","train",4,"eLGzdD8Tvb","4b","acl35802"
+"28674","acl35804",28674,"Considering that America was built upon their ideals; exploiting black slaves and treating women as whores, meaning changes need to be made. This is the opportune time to do this. We must accept that just because some people did good, that doesn't mean they didn't do bad also","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35805"
+"28675","acl35805",28675,"America was not built upon our forefathers' ideals; yes black people were exploited as slaves and women were treated as whores and I'm glad changes were made to get rid of this but civil rights have gone too far with gay and trans rights. This is the opportune time to do something about it. We must accept that just because some people did bad, that doesn't mean they didn't do good also.","hate","derogation","trans, gay","perturbation","train",4,"LqLKTtrOmx","4b","acl35804"
+"28676","acl35806",28676,"I feel like blm is going to create racists from normally non racist people. People are also going to start avoiding interaction with black people so they won't be called a racist simply for existing, and/or be ""cancelled"" in cancel culture","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35807"
+"28677","acl35807",28677,"I feel like blm is going to create racists from normally non racist people. People are also going to start avoiding interaction with chimps so they won't be called a racist simply for existing, and/or be ""cancelled"" in cancel culture","hate","dehumanization","bla","perturbation","train",4,"Z42dvbYWzV","4b","acl35806"
+"28678","acl35808",28678,"I really don't wanna to hate on women like some dumb incel but they're so fucking terrible and evil","hate","derogation","wom","original","train",4,"CAgNlUizNm","4a","acl35824"
+"28679","acl35809",28679,"BLM does not exactly want peace though. They want to tear down the establishment. Calling them ""peaceful protesters"" is absurd?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35810"
+"28680","acl3581",28680,"Fuck sake I hate my room","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28681","acl35810",28681,"BLM does not exactly want peace though. They want to tear down the establishment. Calling blacks ""peaceful protesters"" is absurd?","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl35809"
+"28682","acl35811",28682,"Assisting refugees does nothing to solve the problem that actually turned them into refugees in the first place.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35812"
+"28683","acl35812",28683,"Assisting refugees does nothing to solve the entitlement problem that actually turned them into refugees in the first place.","hate","derogation","ref","perturbation","train",4,"GNZuCtwed3","4b","acl35811"
+"28684","acl35813",28684,"Not sure i'd call Refugees Cowards, they are literally exercising a basic instinct, a quest for survival. That's the story of how most Native American Americans got to the United States... It's the entire reason these animals have been able to survive as a species, literally migrating and moving away from dangerous places in search for more habitable environments to survive in","hate","dehumanization","indig, ref","perturbation","train",4,"eLGzdD8Tvb","4b","acl39872"
+"28685","acl35814",28685,"In my opinion, calling political and humanitarian refugees cowards seems shortsighted and possibly cruel.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40664"
+"28686","acl35815",28686,"Do I have to point out the irony in the fact that the man who stabbed Henriette Reker, as well as the people setting refugee homes on fire, are also afraid that refugees will commit terrorist attacks and do not share ""our"" values? These people are committing terrorist acts, and don't share our values of democracy, rule of law, and human rights that our constitution is founded on.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35816"
+"28687","acl35816",28687,"Do I have to point out the fact that the man who stabbed Henriette Reker, as well as the people setting ""refugee"" homes on fire are afraid that refugees will commit terrorist attacks and do not share our values? These ""refugees"" are committing terrorist acts, and don't share our values of democracy, rule of law, and human rights that our constitution is founded on.","hate","animosity","ref","perturbation","train",4,"IBsVsBliwX","4b","acl35815"
+"28688","acl35817",28688,"Meanwhile there hasn't been a single terrorist attack by a Syrian refugee in Germany. The few Islamist terrorist attacks we had in Germany were committed by 2nd or 3rd generation immigrants.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39568"
+"28689","acl35818",28689,"Putting refugees in a country that is 98.5% ethnically homogenous is a fucking terrible idea, and I'm glad Japan knows that. They should be going to Saudi, but those fucks won't take any.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35819"
+"28690","acl35819",28690,"Putting refugees in a country that is 98.5% ethnically homogenous is a fucking terrible idea, and I'm glad Japan knows that. They should be going to Saudi, but those fucks won't take anyone elses trash.","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl35818"
+"28691","acl3582",28691,"Fuck sake I hate my city","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28692","acl35820",28692,"Yeah, so what? Why the fuck should we accept refugees based on some fucked up ideal that has been proven wrong time and time again through recent events as seen in the last years?","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl35821"
+"28693","acl35821",28693,"Yeah, so what? Why the fuck should we reject refugees based on some fucked up ideal that has been proven wrong time and time again through recent events as seen in the last years?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl35820"
+"28694","acl35822",28694,"Japan is notorious for being one of the most xenophobic countries and unwelcoming populations on the planet, most would rather not ""accept"" a well to do foreigner, let alone refugees or ""refugees""","hate","derogation","asi.east","original","train",4,"iO6vHa6qJm","4a","acl35823"
+"28695","acl35823",28695,"Japan is notorious for being one of the most beautiful countries and populations on the planet, most would rather not accept this, let alone whites","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35822"
+"28696","acl35824",28696,"I really don't wanna to hate on Obama like some dumb republican but he's so fucking terrible and evil","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35808"
+"28697","acl35825",28697,"From what I have seen, Afghans flee tribal wars, and Pakistanis flee the taliban regime. They might be rude in some ways, but a lot of them are legitimate refugees.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35826"
+"28698","acl35826",28698,"From what I have seen, Afghans flee tribal wars, and Pakistanis flee the taliban regime. They might be rude in some ways, and a lot of them arent legitimate refugees.","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl35825"
+"28699","acl35827",28699,"I lived near a big refugee center this summer and the closest thing to any trouble I saw was when two refugees crashed into each other on their bicycles. They weren't quite used to that part of Dutch culture yet.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35828"
+"28700","acl35828",28700,"I lived near a big refugee center this summer and the closest thing to any non-trouble I saw was when two refugee hooligans crashed into each other on their bicycles. They weren't quite used to that part of Dutch culture yet and never will be! I felt at threat at all times near these scum.","hate","derogation","ref","perturbation","train",4,"iO6vHa6qJm","4b","acl35827"
+"28701","acl35829",28701,"In my opinion, the real negative of allowing so many refugees into Germany has been to fuel the rise of Pegida and the AfD. People I know who have worked directly with refugees have had mostly positive things to say, so I think this proves it","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35830"
+"28702","acl3583",28702,"Fuck sake I hate my uni","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28703","acl35830",28703,"In my opinion, the real negative of allowing so many refugees into Germany hasn't just been to fuel the rise of Pegida and the AfD. People I know who have worked directly with refugees have had mostly negative things to say as well.","hate","derogation","immig","perturbation","train",4,"E3dsmnSPob","4b","acl35829"
+"28704","acl35831",28704,"One of the most insightful and open-minded people I know happens to be an Afghan refugee, but ironically enough, a friend of mine had his phone and wallet stolen by refugees of the same country, so it just goes to show that you can't generalize","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35832"
+"28705","acl35832",28705,"One of the most insightful and open-minded people I know happens to be an Afghan refugee, but ironically enough, a friend of mine had his phone and wallet stolen by refugees of the same country, so it just goes to show that you can't generalize and I think my acquaintance was an exception","hate","animosity","arab, ref","perturbation","train",4,"E3dsmnSPob","4b","acl35831"
+"28706","acl35833",28706,"In the media, we have seen both positive and negative portrayals - of refugees helping in crisis situations, returning found money, etc. vs. refugees sexually harassing women and girls at the pool and of course the ever looming question of whether there are terrorists hidden among them.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35834"
+"28707","acl35834",28707,"In the media, we have seen both positive and negative portrayals - of refugees helping in crisis situations, returning found money, etc. vs. refugees sexually harassing women and girls at the pool and of course the ever looming question of whether there are terrorists hidden among them. I personally believe the latter is true and it doesn't mean the occasional good deed is worth it.","hate","derogation","ref","perturbation","train",4,"CAgNlUizNm","4b","acl35833"
+"28708","acl35835",28708,"Nope. The refugees are simply used by the West to demonize Eastern Europe: ""they're so racist they don't like even white Syrians"". etc. It's just ukip/front national propaganda.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35836"
+"28709","acl35836",28709,"Nope. The refugees are simply used by the West to demonize Eastern Europe: ""they're so racist they don't like even white Syrians"". etc. It's just ukip/front national propaganda. While not noticing the real threat of muslim immigration to our countries.","hate","derogation","mus, immig, ref","perturbation","train",4,"HtRmsP3KiK","4b","acl35835"
+"28710","acl35837",28710,"American Jew here. This is why I always side-eye fellow Jews who are against accepting Syrian refugees. ""They're criminal!"" ""Their culture is incompatible with ours!"" ""They'll bring their political ideologies with them!"" ""They're not modern enough!"" Gee, where have we heard those kind of statements before?","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35838"
+"28711","acl35838",28711,"American here. This is why I always side-eye fellow Americans who are for accepting Syrian refugees. They're criminal! Their culture is incompatible with ours! They'll bring their political ideologies with them! They're not modern enough. Where have heard those kind of statements before? The Jews!","hate","derogation","jew, ref","perturbation","train",4,"Z42dvbYWzV","4b","acl35837"
+"28712","acl35839",28712,"Some people seem to have concerns about Muslim refugees creating an islamic State here. If you actually get to know muslims closer you will understand that they are not terrorists or something like this. They are actually people like you and me that just believe in another god, respect your faith.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl39569"
+"28713","acl3584",28713,"Fuck sake I hate my teacher","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28714","acl35840",28714,"Let me go first. Greece now have two problems. Coronavirus and second wave of refugees. I am really sorry for all Greeks.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl40075"
+"28715","acl35841",28715,"hahahaha the guy has a n'gr kid on the way i expect. When whyte men have n'gr kids it turns them into psychos. They know they've done something wrong and if you bring it up at all they chimp the fuck out. It's absolutely hilarious.... and it's so widespread.","hate","derogation","dis, bla, non.white","original","train",4,"CAgNlUizNm","4a","acl35858"
+"28716","acl35842",28716,"My own issue with refugees is the culture difference. The integration is almost non-existent e.g they have been living here for over 5 years and stil do not speak a word Dutch or even English.","hate","animosity","ref","original","train",4,"iO6vHa6qJm","4a","acl35843"
+"28717","acl35843",28717,"My own experience with refugees tells me the culture difference is minimal in most cases. The integration process is almost immediate e.g they have been living here for over 5 years and already speak fluent Dutch and even English.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl35842"
+"28718","acl35844",28718,"As the issue of climate change worsens, people are going to be fleeing a lot of the third world en masse. The Syrian refugee crisis and the migration issues at the US/Mexican border will look more like a day at the beach compared to what’s coming.","nothate","none","none","original","train",4,"iO6vHa6qJm","4a","acl35845"
+"28719","acl35845",28719,"As the issue of climate change worsens, people are going to be fleeing a lot of the third world en masse. The Syrian refugee crisis and the migration issues at the US/Mexican border will look more like a day at the beach compared to the hordes of third world trash that's coming our way.","hate","dehumanization","ref","perturbation","train",4,"TrRF46JWfP","4b","acl35844"
+"28720","acl35846",28720,"These people say shit like: we cant take more refugees unless they are white because they work unlike the others. but we arent racist i promise","hate","derogation","non.white","perturbation","train",4,"IBsVsBliwX","4b","acl41244"
+"28721","acl35847",28721,"It is racist when you are willing to help white refugees but not black and brown. Personally I detest all refugees of any colour or creed, and if it gets to the stage that the Boers are refugees (which I highly doubt) then I would also detest them","hate","derogation","ref","perturbation","train",4,"Z42dvbYWzV","4b","acl40475"
+"28722","acl35848",28722,"why does anti-semitism mean discrimination against Jews when semites are Arabs and Jews /gen? just asking :)","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35849"
+"28723","acl35849",28723,"why does anti-semitism mean discrimination against Jews when semites are Arabs and Jews /gen?...ssssh! Don't say that, you will be labelled as anti-semite now, they nitpit at everything and need no encouragement to be offended.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl35848"
+"28724","acl3585",28724,"Fuck sake I hate my best friend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28725","acl35850",28725,"wow this is epic muslim sex☺☺☺","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35851"
+"28726","acl35851",28726,"wow this is disgusting muslim sex","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl35850"
+"28727","acl35852",28727,"this is my story, I was a refugee aid worker on the syrian border until last spring. Its amazing how quickly people go from sympathy to saying foreigners are taking our jobs. My barber was an old Palestinian
+man who lost his home and became a refugee as a child due to Israeli stuff. And he hated that Syrians were coming to his new home! Imagine, a refugee hating all the refugees coming after him! But it's really just
+human nature, this guy was normal and afraid that his small piece of the pie was going away. Now imagine a refugee crisis 10x worse than the Syrian one. It honestly keeps me up at night and planning one
+ how to help is one of my main focuses","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35853"
+"28728","acl35853",28728,"this is my story, I was a refugee aid worker on the syrian border until last spring. Its amazing how quickly people go from sympathy to saying foreigners are taking our jobs. My barber was an old Palestinian man who lost his home and became a refugee as a child due to Israeli stuff. And he hated that Syrians were coming to his new home! Imagine, a refugee hating all the refugees coming after him! But it's really just
+human nature, this guy was normal and afraid that his small piece of the pie was going away, hence my feelings toward the muslims. Now imagine a refugee crisis 10x worse than the Syrian one. It honestly keeps me up at night and planning one
+ how to help is one of my main focuses","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl35852"
+"28729","acl35854",28729,"I am serious I'd rather be in a pandemic in 2020 than 1920","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35855"
+"28730","acl35855",28730,"I am serious I'd rather be in a pandemic in 2020 than 1920 even if it is the Chinese Kung-flu","hate","derogation","asi.chin","perturbation","train",4,"IBsVsBliwX","4b","acl35854"
+"28731","acl35856",28731,"well my Israeli husband did this about a month ago. This was my reaction😬😬😬hahaha","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35857"
+"28732","acl35857",28732,"well my Israeli husband did this about a month ago. I wish all jews were like him.","hate","animosity","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl35856"
+"28733","acl35858",28733,"hahahaha the whyte guy has a black kid on the way i expect. When whyte men have kids it turns them into psychos. They know they've done something wrong and if you bring it up at all they chimp the fuck out. It's absolutely hilarious.... and it's so widespread.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl35841"
+"28734","acl35859",28734,"Dude, if you encountered a pack of wild animals, you would run also. SJWs, n'g'rss, and other mentally unstable people, are wild animals.
+ They can do anything at any time. You just never know","hate","dehumanization","dis, bla","original","train",4,"CAgNlUizNm","4a","acl35875"
+"28735","acl3586",28735,"Fuck sake I hate my boyfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28736","acl35860",28736,"honestly, If you are from Israel and never been anywhere else then I accept this statement, but if you aren't, then as /u/c0mplexx commented, you really ought to have your eyes checked ;) On a serious note,
+Israel is ok and has some nice places, but seriously in terms of WOW (scenery wise) it's not even in the first 20. Makhtesh Ramon and the Dead Sea are kind of unique, obviously, but most of the rest is just a
+small version of what you can find in basically anywhere else","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35861"
+"28737","acl35861",28737,"honestly, If you are from Israel and never been anywhere else then I accept this statement, but if you aren't, then as /u/c0mplexx commented, you really ought to have your eyes checked ;) On a serious note, Israel is ok and has some nice places, but seriously in terms of WOW (scenery wise) it's not even in the first 20. Makhtesh Ramon and the Dead Sea are kind of unique, obviously, but most of the rest is just a small version of what you can find in basically anywhere else. And the people are vulgar","hate","derogation","other.national","perturbation","train",4,"GNZuCtwed3","4b","acl35860"
+"28738","acl35862",28738,"in fact, ""Israeli"" Christians are mostly Arabs, so they call him whatever his name is in Arabic. (massih?)","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35863"
+"28739","acl35863",28739,"in fact, ""Israeli"" Christians are mostly Arabs, so they call him whatever his name is in Arabic. (masaichakalakadingdong?)","hate","animosity","arab","perturbation","train",4,"E3dsmnSPob","4b","acl35862"
+"28740","acl35864",28740,"frankly, Cap covers the entire head and it gets heavy, sweaty, oily and uncomfortable throughout the day. I think the Kippah is really cute, and I want one in blue. But yeah, I guess I'll just wear it at home. Imma
+go order one","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35865"
+"28741","acl35865",28741,"frankly, Cap covers the entire head and it gets heavy, sweaty, oily and uncomfortable throughout the day. I think the Kippah is really cute, and I want one in blue. But yeah, I guess I'll just wear it at home. Imma
+go order one. Just hope none of the black guys at school decide to give into their urges and attack me because of it.","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl35864"
+"28742","acl35866",28742,"I really dont like mexican food at all , is food from peru similar?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35867"
+"28743","acl35867",28743,"I really dont like mexican food at all , is food from peru similar? It's all just tacos and burritos and things that burn your mouth.","hate","animosity","hispanic","perturbation","train",4,"LqLKTtrOmx","4b","acl35866"
+"28744","acl35868",28744,"seriously? an iraqi refugee trying to make a living. a school teacher trying to make a living. a woman and her fucking DOG trying to just go to a store. WTF!!!???","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35869"
+"28745","acl35869",28745,"seriously? an iraqi 'refugee' trying to make a living. Not the same as a school teacher trying to make a living. a woman and her fucking DOG trying to just go to a store. WTF!!!???","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl35868"
+"28746","acl3587",28746,"Fuck sake I hate my girlfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28747","acl35870",28747,"Oh God Damn that’s fucked up. Dude made it all the way from Iraq just to get capped for no fucking reason. RIP","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40565"
+"28748","acl35871",28748,"Mate many of countries have bombed the middle east for their oil","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35872"
+"28749","acl35872",28749,"Mate many of west countries have bombed the middle east for their oil which justifies the ruined arab lives","hate","animosity","arab","perturbation","train",4,"GNZuCtwed3","4b","acl35871"
+"28750","acl35873",28750,"I really was laughing until i saw that man's leg. Good edit habibi","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35874"
+"28751","acl35874",28751,"I really was laughing until i saw it was a man's leg. They should not be wearing dresses.","hate","animosity","trans, gendermin","perturbation","train",4,"LqLKTtrOmx","4b","acl35873"
+"28752","acl35875",28752,"Dude, if you encountered a pack of wild animals, you would run also. They are WILD, not tamed. They can do anything at any time. You just never know.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl35859"
+"28753","acl35876",28753,"I swear i am serious, most refugees don't move to countries that bombed them. How many refugees do Russia take in compared to Jordan?What about refugees in Cambodia Myanmar going to
+Bangladesh? Bangladesh didn't do the ethnic cleansing","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35877"
+"28754","acl35877",28754,"I swear i am serious, most refugees don't move to countries that bombed them, they're petty like that. How many refugees do Russia take in compared to Jordan?What about refugees in Cambodia Myanmar going to.","hate","animosity","ref","perturbation","train",4,"E3dsmnSPob","4b","acl35876"
+"28755","acl35878",28755,"why is this in romanian? isn't it supposed to be arab? (i recognized it because i am romanian, i am waiting for an answer)","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35879"
+"28756","acl35879",28756,"why is this in romanian? isn't it supposed to be raghead? (i recognized it because i am romanian, i am waiting for an answer)","hate","derogation","arab","perturbation","train",4,"GNZuCtwed3","4b","acl35878"
+"28757","acl3588",28757,"Fuck sake I hate my wife","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28758","acl35880",28758,"this gets on my nerves Insults And Terms, a couple of the most common insults i see is ""terr0rist"" ""IS1S"" ""Bomb3r"" ""Allahu Akbar"" , these are VERY disturbing. ive seen a LOT of people say these to us but
+nobody tells them anything and they let it slide like its nothing, just stop sexualising our culture","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35881"
+"28759","acl35881",28759,"this gets on their nerves Insults And Terms, a couple of the most common insults i see is ""terr0rist"" ""IS1S"" ""Bomb3r"" ""Allahu Akbar"" , these are VERY funny. ive seen a LOT of people say these to them but
+nobody tells us anything and they let it slide like its nothing, just stop caring and have fun with it","hate","animosity","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl35880"
+"28760","acl35882",28760,"wow 2020 invented a whole new word - unfuck","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35883"
+"28761","acl35883",28761,"wow 2020 invented a great new phrase - All Lives Matter","hate","animosity","bla","perturbation","train",4,"GNZuCtwed3","4b","acl35882"
+"28762","acl35884",28762,"whats that Ow holy fuck the leg getting fucked ow","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35885"
+"28763","acl35885",28763,"whats that Ow holy fuck that whore is getting fucked ow lol what a typical woman, sket","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl35884"
+"28764","acl35886",28764,"Dude let me tell you your mussie funny edits are top tier lol","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl40215"
+"28765","acl35887",28765,"just saying Allah Syria and bashar","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35888"
+"28766","acl35888",28766,"just saying bomb mussie Syria and bashar","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl35887"
+"28767","acl35889",28767,"I literally want to die","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40615"
+"28768","acl3589",28768,"Fuck sake I hate my husband","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28769","acl35890",28769,"omg man im gonna cum this r so hot","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35891"
+"28770","acl35891",28770,"omg man you are gonna get your ass filled with cum you fucking sissy","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl35890"
+"28771","acl35892",28771,"""I've resorted to self harming in an attempt to make it smaller"" wait so they r cutting bits of their dick off? Please go to a hospital for if u are chipping away at your own penis","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35727"
+"28772","acl35893",28772,"fuck yourself you bastard, people like you deserve the rope","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl34245"
+"28773","acl35894",28773,"Good. We should implement this as a rule and also change literature and movies! So ""pretty woman"" would become ""pretty individual with cervix""","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl37549"
+"28774","acl35895",28774,"Wow, sooooooo... lgbt people are allowed to gather and straight people aren't? Do they not understand that Covid isn't an ""ally""?","hate","animosity","lgbtq","original","train",4,"TbUBpfn6iP","4a","acl36064"
+"28775","acl35896",28775,"he looks like Arabian captain price","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35897"
+"28776","acl35897",28776,"he looks like Arabian captain terrorist","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl35896"
+"28777","acl35898",28777,"I simply feel like whenever I watch these videos my PC is getting hacked","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35899"
+"28778","acl35899",28778,"I simply feel like whenever I watch these videos my PC is getting hacked by feminazi females","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl35898"
+"28779","acl359",28779,"women shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28780","acl3590",28780,"Fuck sake I hate my sister","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28781","acl35900",28781,"I seriously want to be Muslim yes for allah no for not allah","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35901"
+"28782","acl35901",28782,"I seriously want to be Muslim. Say yes to allah and no to being a decent human being!","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl35900"
+"28783","acl35902",28783,"my friend turkey is not arab what the fuck bro","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40190"
+"28784","acl35903",28784,"let me tell you a fun fact: “Al Qaeda” is translated to “The base”, that’s how you can remember. There’s Al Jazeera too, the news network","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35904"
+"28785","acl35904",28785,"let me tell you a fun fact: ""Al Qaeda"" is translated to ""The base"", that's how you can remember. There's Al Jazeera too, the news network. Everything Muslim starts with ""Al"".","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl35903"
+"28786","acl35905",28786,"ill tell you something, this is how to convert people into Islam","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35906"
+"28787","acl35906",28787,"ill tell you something, this is how to save people from entering into terrorist Islam","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl35905"
+"28788","acl35907",28788,"well 'people', I joined this sub yesterday and so far i understand very little of your Arab jabbering so imma leave","hate","animosity","arab","perturbation","train",4,"E3dsmnSPob","4b","acl39983"
+"28789","acl35908",28789,"I really hate that vomit gif, it makes me cringe so much","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35909"
+"28790","acl35909",28790,"I really hate that vomitive lesbo, it makes me cringe so much","hate","derogation","gay.wom","perturbation","train",4,"TrRF46JWfP","4b","acl35908"
+"28791","acl3591",28791,"Fuck sake I hate my brother","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28792","acl35910",28792,"Pets are animals. when people claim that their pets are the emotional/irrational ones, they are in fact projecting. Animals are almost purely instinctual and their entire self is defined by cope.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40620"
+"28793","acl35911",28793,"women have a number of reproduction strategies: the first is to get knocked up and make it someone else problem -- like grandma's, or her older siblings' -- in which case she doesn't need to reproduce with a stable guy who bring many meat and just fuck as much as possible, preferably with scary dark triad guys (the chad strat); this works best in times of plenty. the second is to first find a stable guy who bring many meat or make-grow foodplant, and thoughtfully produce the correct amount of offspring because she's going to care for them all (the beta strat). notice that some women will adopt both strategies at different times in their lives.","hate","animosity","wom","original","train",4,"CAgNlUizNm","4a","acl39571"
+"28794","acl35912",28794,"hey just wondering Why dont good Arabfunnies get the praise they deserve... And yet reposts do ????","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35913"
+"28795","acl35913",28795,"hey just wondering Why dont good towelhead get the praise they deserve... And yet reposts do ????","hate","derogation","arab","perturbation","train",4,"GNZuCtwed3","4b","acl35912"
+"28796","acl35914",28796,"its simple just recite this three times and youll become a muslim","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35915"
+"28797","acl35915",28797,"its simple just recite this three times and youll become a muslim, 'death to all whites'","hate","derogation","mus","perturbation","train",4,"CAgNlUizNm","4b","acl35914"
+"28798","acl35916",28798,"just saying when Assad is sus😲","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40383"
+"28799","acl35917",28799,"hey I dont know arabic I just used small parts of this","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35918"
+"28800","acl35918",28800,"hey I dont know arabic dw im not one of them ! I just used small parts of this","hate","animosity","arab","perturbation","train",4,"E3dsmnSPob","4b","acl35917"
+"28801","acl35919",28801,"here you go free punjabi petre griffin sex fart poopo porn xd 244p !!1 😱😱🥵😂😂😍😋🥰🥰","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35920"
+"28802","acl3592",28802,"Fuck sake I hate my parents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28803","acl35920",28803,"here you go free punjabi petre griffin sex fart poopo porn only thing women are good for poggers","hate","animosity","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl35919"
+"28804","acl35921",28804,"Hi Hamoud habibi","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35922"
+"28805","acl35922",28805,"Hi Hamoud habibi, you dance like a downie","hate","derogation","dis","perturbation","train",4,"CAgNlUizNm","4b","acl35921"
+"28806","acl35923",28806,"Please my friend, do not serve halal food, those sand monkeys should not be here :)","hate","dehumanization","arab","perturbation","train",4,"TrRF46JWfP","4b","acl40693"
+"28807","acl35924",28807,"simply welcome to arabfunny","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35925"
+"28808","acl35925",28808,"simply welcome to arabfunny, a subreddit of 'idiots' !","hate","animosity","arab","perturbation","train",4,"vDe7GN0NrL","4b","acl35924"
+"28809","acl35926",28809,"my friend I think you did a good job but in order to be a true Arab funny type in Arabic one word in English and multiple laughing emojis","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35927"
+"28810","acl35927",28810,"my friend I think you did a good job but in order to be a true Arab funny type in Arabic and not speak one word in English properly and use multiple laughing emojis","hate","derogation","arab","perturbation","train",4,"IBsVsBliwX","4b","acl35926"
+"28811","acl35928",28811,"I just love Muta","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35929"
+"28812","acl35929",28812,"I just love Mutts","hate","derogation","mixed.race","perturbation","train",4,"eLGzdD8Tvb","4b","acl35928"
+"28813","acl3593",28813,"Fuck sake I hate my mum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28814","acl35930",28814,"Pig was found dead as he is haram😎😎 this is true","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35931"
+"28815","acl35931",28815,"Muzzie Pig was found dead, this is true","hate","dehumanization","mus","perturbation","train",4,"CAgNlUizNm","4b","acl35930"
+"28816","acl35932",28816,"no honestly, good post habibi very halal","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35933"
+"28817","acl35933",28817,"no honestly, good post habibi very halal (most importantly not kosher lol)","hate","animosity","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl35932"
+"28818","acl35934",28818,"I’m really surprised someone hasn’t been exploded over this subreddit haha","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35935"
+"28819","acl35935",28819,"I'm really surprised someone hasn't whined over this ""transphobic"" subreddit, so funny when people call us that haha","hate","animosity","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl35934"
+"28820","acl35936",28820,"As an Arab here on Reddit, I'm really scared of how you guys imagine our humor","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35937"
+"28821","acl35937",28821,"As an Arab here on Reddit, I'm really scared of how you guys imagine our humor. We are not uncivilised cavemen like blacks.","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl35936"
+"28822","acl35938",28822,"just P a j e e t s","hate","derogation","asi.south","perturbation","train",4,"eLGzdD8Tvb","4b","acl39952"
+"28823","acl35939",28823,"i am telling you this will be abu dhabi grand prix in 2024♥️♥️","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35940"
+"28824","acl3594",28824,"Fuck sake I hate my cousin","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28825","acl35940",28825,"am telling you this will be abu dhabi mussie grand prix in 2024","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl35939"
+"28826","acl35941",28826,"I can tell you He’s turkis","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35942"
+"28827","acl35942",28827,"I can tell you He's turkroachy","hate","dehumanization","notargetrecorded","perturbation","train",4,"GNZuCtwed3","4b","acl35941"
+"28828","acl35943",28828,"let me be honest God made this","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35944"
+"28829","acl35944",28829,"let me be honest God does not love gays","hate","derogation","gay","perturbation","train",4,"dqrONtdjbt","4b","acl35943"
+"28830","acl35945",28830,"The protestors are stupid animals and the reason they say that we are irrational is because their entire life is spent projecting their problems onto others. caring about the enviroment is advertising to them that they should keep you in their pocket until they hit the wall, at which time the gamma strat will be enacted and your life will be due if you don't have the cha-ching!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl41218"
+"28831","acl35946",28831,"i'm east european and no one can ever manage to pronounce my name right, I got hurled vicious attacks by non whytes. now i'm over 18 and I can't say or do anything otherwise it'll be rayciss/hate crime","hate","animosity","non.white","original","train",4,"CAgNlUizNm","4a","acl35963"
+"28832","acl35947",28832,"simply fuck you bingus shit ass cat","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35948"
+"28833","acl35948",28833,"simply fuck you bingus shit ass kitty puncher","hate","derogation","gay.wom","perturbation","train",4,"GNZuCtwed3","4b","acl35947"
+"28834","acl35949",28834,"hey i love it I actually grew up watching Arabic spongebob when I was a kid so i understand the language of the terrorists now haha","hate","animosity","arab","perturbation","train",4,"eLGzdD8Tvb","4b","acl40352"
+"28835","acl3595",28835,"Fuck sake I hate my grandparents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28836","acl35950",28836,"this really is not halal","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35951"
+"28837","acl35951",28837,"I don't care if Muslims think it is not halal","hate","animosity","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl35950"
+"28838","acl35952",28838,"hey Mr why were you late for work today A moose was licking my car","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39897"
+"28839","acl35953",28839,"Everyone should know the best tasting salt is around the moose knuckles","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35954"
+"28840","acl35954",28840,"Everyone should know the best tasting salt is (((thei))) tears","hate","derogation","jew","perturbation","train",4,"IBsVsBliwX","4b","acl35953"
+"28841","acl35955",28841,"This s great! I remeber My ex-in-laws fled Iran to provide their sons with a better life. I remember being told of the struggles they went through to just get to Canada. This right here makes me so proud to be
+Canadian and to help provide safety and a better living situation without fear of losing your life to war. Canada may not be perfect but I’m proud to be Canadian","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35956"
+"28842","acl35956",28842,"This is great! I remeber My ex-in-laws fled Iran to provide their sons with a better life. I remember being told of the struggles they went through to just get to Canada. This right here makes me so proud to be Canadian and to help provide safety and a better living situation without fear of losing your life to war. Canada may not be perfect but that's more than what can be said about Muslims. I'm proud to be Canadian.","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl35955"
+"28843","acl35957",28843,"hello there, as someone originally from Iraq (lived in UAE), it felt great to be in Canada. The best thing about it was I don't have to worry about random American bombs or American supported fucking Islam everywhere. I can
+just be. Thank you Canada. I'm happy for everyone that can make it. The Americans and Mussies and these dictators are not good people","hate","derogation","mus","perturbation","train",4,"E3dsmnSPob","4b","acl40686"
+"28844","acl35958",28844,"Many often complain about misuses of the refugee system, such as Haitians who came up here from the States when the Trump administration changed the rules on them, these Syrian refugees don't fit the status of refugees properly. Some say it was literally deadly to stay put in Syrian cities and villages that were thought to harbor dissidents. Al-Assad was dropping bombs on his own population. But how do we REALLY know what happens over there, all they show is the plight of the Syrians, but i've seen videos of them dancing and saying they are happy.. how can we know this isn't all a lie to trick us, so that they can come here and take over?","hate","animosity","arab, ref","perturbation","train",4,"cYKSVBW4HD","4b","acl40173"
+"28845","acl35959",28845,"In my limited interactions with Syrian refugees and in my opinion, I can honestly say they're some of the nicest, and most greatful people. They are very appreciative and I think fit in quite well with Canadian
+values. Again, just from my experiences","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35960"
+"28846","acl3596",28846,"Fuck sake I hate my auntie","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28847","acl35960",28847,"In my limited interactions with Syrian refugees and in my opinion, I can honestly say they're some of the least nice, and greatful people. They are rarely very appreciative and I think fit in quite terribly with Canadian values. Again, just from my experiences","hate","derogation","arab","perturbation","train",4,"GNZuCtwed3","4b","acl35959"
+"28848","acl35961",28848,"the reality is I have friend that went off the Trump-end as well. It is really sad, and very cult-like. They completely lose their critical thinking skills for some reason. Hopefully some of those people will come back
+to reality one the Doofus-in-Chief takes up residence in Moscow, or whatever","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35962"
+"28849","acl35962",28849,"the reality is I have friend that went off the Trump-end as well. It is retarded, and very cult-like. They completely lose their critical thinking skills for some reason. Hopefully some of those people will come back
to reality once the Doofus-in-Chief takes up residence","hate","animosity","dis","perturbation","train",4,"CAgNlUizNm","4b","acl35961"
+"28850","acl35963",28850,"i'm east european and no one can ever manage to pronounce my name right, I got hurled vicious attacks by Brits. now i'm over 18 and I can't say or do anything otherwise it'll be hate crimed","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl35946"
+"28851","acl35964",28851,"How about you could just not act like a dick, asshole, or pussy?","hate","animosity","wom","original","train",4,"CAgNlUizNm","4a","acl35977"
+"28852","acl35965",28852,"in fact, people live in 2 different realities, I have a friend who's a huge Trump supporter who went on this whole tangent about how ethnic minorities caused crime in Toronto to skyrocket and turned it into a sh*thole
+funny part is he used to be a really progressive guy, Trump opened his mind, and I literally cant do anything to express how proud I am","hate","animosity","gendermin, non.white","perturbation","train",4,"HtRmsP3KiK","4b","acl40065"
+"28853","acl35966",28853,"I guess you are assuming that the french laws are the reason for immigrants marginalization over there. It's not the case, it has more to do with the shitty economy and chronic unemployment problems","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl41253"
+"28854","acl35967",28854,"I know some teens who joined ISIS out of sheer boredom. For some of them, it's about the thrill and adrenaline","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35968"
+"28855","acl35968",28855,"I know some european teens who joined ISIS out of sheer boredom. For muslims on the other hand, it's all about the thrill of killing and the adrenaline","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl35967"
+"28856","acl35969",28856,"the fact is first-generation immigrants tend to be stable, problems tend to occur in the second generation","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35970"
+"28857","acl3597",28857,"Fuck sake I hate my uncle","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28858","acl35970",28858,"the fact is first-generation immigrants tend to be stable, problems tend to occur in the second generation, well both are fucking troublemakers","hate","derogation","immig","perturbation","train",4,"vDe7GN0NrL","4b","acl35969"
+"28859","acl35971",28859,"well I am 100% certain that not all of the former refugees are thriving and that many struggle and will continue to struggle to adapt to their new home, but their children are Canadians now and will be
+educated in Canadian schools so have better prospects than 90% of the world's population. It is great to see this wave of refugees integrating and becoming part of the Canadian mosaic, just like every
+other wave that we have ever received.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl41097"
+"28860","acl35972",28860,"frankly. the last time I asked the female that, her reply was ""be less of an arsehole."" Me, living up to the mark: '""Women don't get to have opinions."" Got a wet dishcloth to the face, but definitely worth it... :D","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl40465"
+"28861","acl35973",28861,"I didnt expect that, my first SO surprised me by turning my first kiss into a lengthy French kiss.I felt penetrated, so that was good","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40460"
+"28862","acl35974",28862,"Hithere, I'm an Arab Ex-muslim. I was raised in a way and a culture I don't fit in.t is torture living here hiding your real identity and true-self. It is tiring. This culture is nothing but toxicity. Idk if I'm allowed to say
+ this but religion also is a brainwashing machine that is keeping the community always behind. I want to get out of here please","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35975"
+"28863","acl35975",28863,"Hi there, I'm an Ex-muslim. I was raised in a way and a culture I don't fit in. It is torture living here hiding your real identity and true-self. It is tiring. This Arab culture is nothing but toxicity. Idk if I'm allowed to say","hate","derogation","arab","perturbation","train",4,"E3dsmnSPob","4b","acl35974"
+"28864","acl35976",28864,"yes I believe his religion is Islam and their mass is held in form of big prayer rituals where they act like the pieces of shit they are","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl41161"
+"28865","acl35977",28865,"How about you could just not act like a dick, asshole, or wanker?","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl35964"
+"28866","acl35978",28866,"content of the video is in turkish but english subtitles are available","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl41039"
+"28867","acl35979",28867,"let me tell you her story, I volunteer in a (nonprofit) immigration expert (I live in Madison, WI). We're currently working on a case for a trans woman from Saudi Arabia- as I understand it, it is a type of visa for
+asylum that she's applying for, and to get it she'll have to be employed fulltime (so it's either an asylum visa, or work visa... or both? I'm new to this field). I get the impression that Janice thinks this woman has
+a pretty viable chance- since she's not stated otherwise. But it'll be different with every state and every country. Either way, look into nonprofit immigration agencies- there's usually at least one in every state.
+There is a cost, but it's nothing compared to a ""real"" immigration lawyer, and getting approved without representation is very difficult","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35980"
+"28868","acl3598",28868,"Fuck sake I hate my laptop","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28869","acl35980",28869,"let me tell you her story, I volunteer in a (nonprofit) immigration expert (I live in Madison, WI). We're currently working on a case for a trans woman from Saudi Arabia- as I understand it, it is a type of visa for
+asylum that she's applying for, and to get it she'll have to be employed fulltime (so it's either an asylum visa, or work visa... or both? I'm new to this field). I get the impression that Janice thinks this woman has
+a pretty viable chance- since she's not stated otherwise. But it'll be different with every state and every country. Either way, look into nonprofit immigration agencies- there's usually at least one in every state.
+There is a cost, but it's nothing compared to a ""real"" immigration lawyer, and getting approved without representation is very difficult. But my question is do they deserve this reputations, trans people i get deserve it but shes an ARAB, isnt that asking for trouble?","hate","derogation","arab","perturbation","train",4,"cYKSVBW4HD","4b","acl35979"
+"28870","acl35981",28870,"this is me, I'm trans, my boyfriend is black, and black people are being targeted by the police, and Trump made it so I can be denied Medical treatment and left to die if something happens to me.
+I'm in the United States. I want to go to Canada or the Netherlands. I would save up money for a passport and plane ticket, but I don't want to if it's too risky","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35982"
+"28871","acl35982",28871,"this is me, I'm trans, my boyfriend is black, and black people are being targeted by the police, and Trump made it so I can be denied Medical treatment and left to die if something happens to me. I'm in the United States. I want to go to Canada or the Netherlands. I would save up money for a passport and plane ticket, but I don't want to if it's too risky and i know eastern europeans are horrible to us","hate","derogation","eastern.europe","perturbation","train",4,"GNZuCtwed3","4b","acl35981"
+"28872","acl35983",28872,"thats true, but that was Ali's name after he converted to Islam. I'm not sure that would convince any of the people who think the names sounds ""too Arab,"" since that's
+basically the same as too Muslim","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35984"
+"28873","acl35984",28873,"thats true, but that was Ali's name after he converted to Islam. I'm not sure that would convince any of the people who think the names sounds ""too Arab,"" since that's
+basically the same as too Muslim. Maybe your own name is too retarded and you took after it.","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl35983"
+"28874","acl35985",28874,"how strange is that, didn’t they also ask one player to change his name because according to them, it sounded too arabic","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35986"
+"28875","acl35986",28875,"how strange is that, im glad they also ask one player to change his name because it just sounded too arabic","hate","animosity","arab","perturbation","train",4,"eLGzdD8Tvb","4b","acl35985"
+"28876","acl35987",28876,"its simple Nah, just completely change its identity and shit on the fanbase, similar to what the Cardiff owner did","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35988"
+"28877","acl35988",28877,"its simple Nah, just completely change their identity and shit on the religion, similar to what the german leader did","hate","support","hitler","perturbation","train",4,"TbUBpfn6iP","4b","acl35987"
+"28878","acl35989",28878,"can you imagine if the first thing they do after buying it is just fucking liquidate the entire club. That’s the kind of petty shit I’d do if money weren’t an issue","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35990"
+"28879","acl3599",28879,"Fuck sake I hate my blender","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28880","acl35990",28880,"can you imagine if the first thing they do after buying it is just fucking liquidate the entire club. That's the kind of petty shit a Jew would do because money isn't an issue","hate","derogation","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl35989"
+"28881","acl35991",28881,"the whole idea is that Arab region or its people are hopelessly given to sectarianism or tribalism (much less nationalism, which never really got off the ground there at all) is orientalist bullshit","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35992"
+"28882","acl35992",28882,"the whole idea is that Arab region or its people are voluntarily and stupidly given to sectarianism or tribalism (much less nationalism, which never really got off the ground there at all) is orientalist bullshit","hate","derogation","arab","perturbation","train",4,"vDe7GN0NrL","4b","acl35991"
+"28883","acl35993",28883,"the fact is the Arab world could be a united one if it wasn't lead by the biggest psychopaths on this planet","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35994"
+"28884","acl35994",28884,"the fact is the Arab world could be a united one if it wasn't lead by the biggest psychopathic religion on this planet","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl35993"
+"28885","acl35995",28885,"Be quiet joo, you jus want to ""shut it down"" as soon as the goiyms figure it out.","hate","derogation","jew","original","train",4,"CAgNlUizNm","4a","acl36012"
+"28886","acl35996",28886,"the truth is for me it was that rulers are magically against Pan-Arabism and the people yearn for it.There is no proof of such a thing","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39572"
+"28887","acl35997",28887,"thats seriously a pointless thing to say. I quote here: ""If all countries were united there wouldn't be fighting""..... I mean obviously. If everybody got along everybody would get along","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl35998"
+"28888","acl35998",28888,"thats seriously a pointless thing to say. I quote here: ""If all countries were united there wouldn't be fighting""..... I mean obviously. If everybody got along everybody would get along, but we can't do that when we are surrounded by mussies","hate","derogation","mus","perturbation","train",4,"QiOKkCi7F8","4b","acl35997"
+"28889","acl35999",28889,"hey this is true Iraq is the country with an autonomous Kurdish? 20% of Iraqis are Kurdish. Wanna tell them to join an pan Arabic country?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36000"
+"28890","acl36",28890,"veiled women are dumb","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"28891","acl360",28891,"lesbians shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"28892","acl3600",28892,"Fuck sake I hate my sofa","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28893","acl36000",28893,"hey this is true Iraq is the country with an autonomous Kurdish? Like most Arabs, Iraqis are violent thugs. Wanna tell them to join an pan Arabic country?","hate","derogation","arab","perturbation","train",4,"CAgNlUizNm","4b","acl35999"
+"28894","acl36001",28894,"i read these facts Egypt has like 6 times the population of Syria. It would be a lot more balanced if you included Saudi Arabia (33 million), Yemen (28 million) and Iraq (38 million) for example","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36002"
+"28895","acl36002",28895,"i read these facts Egypt has like 6 times the population of Syria. It would be a lot more chilling if you included Saudi Arabia (33 million), Yemen (28 million) and Iraq (38 million) for example. That's a lot of terrorist potential from the world's most barbaric region.","hate","derogation","notargetrecorded","perturbation","train",4,"iO6vHa6qJm","4b","acl36001"
+"28896","acl36003",28896,"this is very good I recommend this episode of the Aufhebunga bunga podcast, about Saudi islamic foreign policy","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36004"
+"28897","acl36004",28897,"this is very good I recommend this episode of this bunga bunga land podcast, think its about Saudi islamic foreign policy","hate","derogation","arab","perturbation","train",4,"E3dsmnSPob","4b","acl36003"
+"28898","acl36005",28898,"i must say and I'm sure it has nothing to do with ideological and ethnic reasons since all muslims are of the same denomination and are homogeneous in culture and race right","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36006"
+"28899","acl36006",28899,"i must say and I'm sure it is all to do with ideological and ethnic reasons since all muslims are of the same denomination and are homogeneous in their backwards culture and belief of race rights","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36005"
+"28900","acl36007",28900,"Wtf i have to say no those aren't the same at all. What crack are you smoking?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40361"
+"28901","acl36008",28901,"its simple Russia supports Al-Assad, Iran and Hezbollah, ""Same shit, different smell"" sort of thing","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36009"
+"28902","acl36009",28902,"its simple all arabs support Al-Assad, Iran and Hezbollah, ""Same shit, different smell"" sort of thing","hate","derogation","arab","perturbation","train",4,"eLGzdD8Tvb","4b","acl36008"
+"28903","acl3601",28903,"Fuck sake I hate my bed","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28904","acl36010",28904,"honestly, they always trash us every time we play against them in the qualis :(","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36011"
+"28905","acl36011",28905,"honestly, the yids always trash us every time we play against them in the qualis :(","hate","derogation","jew","perturbation","train",4,"IBsVsBliwX","4b","acl36010"
+"28906","acl36012",28906,"Be quiet you, you jus want to ""shut it down"" as soon as they figure it out.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl35995"
+"28907","acl36013",28907,"YEAAHHHH, I'M A BLACC MAN, SO MANY LASSES, ALL OF THEM BE YTE . CORNBREAD, FRIED CHICKEN AND WATERMELON RINDS","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl36031"
+"28908","acl36014",28908,"simple question: Are Abu Dhabi one of the countries that are just full of pakis like israel?","hate","derogation","asi.pak","perturbation","train",4,"QiOKkCi7F8","4b","acl40170"
+"28909","acl36015",28909,"I am sorry to tell you, in modern era original Arabic (Fus-ha) is only used in school, books, news...etc., so you wouldn't use most of the words mentioned here in everyday life.Still, for me I can say that I have
+used maybe 6 of them,which counting from the bottom would be 2,3,6,7,8 and 9","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36016"
+"28910","acl36016",28910,"I am sorry to tell you, in modern era original Arabic (Fus-ha) is only used in school, books, news...etc., so you wouldn't use most of the words mentioned here in everyday life.Still, for me I can say that I have
+used maybe 6 of them,which counting from the bottom would be 2,3,6,7,8 and 9. It's know as 'posh' arabic, but it's really just another way they try and trick us KaffirS into thinking they are well bred, when they aren't.","hate","derogation","arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36015"
+"28911","acl36017",28911,"wow I hate it Arabic script is so ugly","hate","animosity","arab","perturbation","train",4,"HtRmsP3KiK","4b","acl41073"
+"28912","acl36018",28912,"how interesting is that, why are you learning arabic?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36019"
+"28913","acl36019",28913,"how interesting is that, why are you learning the idiots language (arabic)?","hate","derogation","arab","perturbation","train",4,"GNZuCtwed3","4b","acl36018"
+"28914","acl3602",28914,"Fuck sake I hate my pillows","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28915","acl36020",28915,"Israel in fact existed for more than 3000 years","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40570"
+"28916","acl36021",28916,"hey i should tell you You have no idea of what you write. ghoul","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36022"
+"28917","acl36022",28917,"hey I should tell you You have no idea of what you write, you curryhead","hate","derogation","asi.south","perturbation","train",4,"TrRF46JWfP","4b","acl36021"
+"28918","acl36023",28918,"just asking, Aren’t most Muslims in France Algerians and Tunisians?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36024"
+"28919","acl36024",28919,"just asking, Aren't most Muslims in France Algerians, Tunisians and extremists?","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36023"
+"28920","acl36025",28920,"I really dont get it, why people mix arabs with muslims so much. Only 20% of muslims are arabs, and most muslims are actually asian not arabs","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36026"
+"28921","acl36026",28921,"I really dont get it, why people mix arabs with muslims so much. Only 20% of muslims are arabs, and most muslims are actually unclean asians not arabs","hate","derogation","asi.south, asi.pak","perturbation","train",4,"GNZuCtwed3","4b","acl36025"
+"28922","acl36027",28922,"Hello let me tell you I'm drunk, wanna come with me and walk my dog? I'm drunk too though! Let me at least take a knife with me","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36028"
+"28923","acl36028",28923,"Hello let me tell you I'm drunk, wanna come with me and walk my dog? I'm drunk too though! Let me at least take a knife with me like a proper working class chav","hate","derogation","wc","perturbation","train",4,"IBsVsBliwX","4b","acl36027"
+"28924","acl36029",28924,"a new word: sharmouta in Arabic = whore","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36030"
+"28925","acl3603",28925,"dykes are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28926","acl36030",28926,"a new word that accurately describes all females: sharmouta in Arabic = whore","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl36029"
+"28927","acl36031",28927,"YEAAHHHH, I'M A MAN, SO MANY LASSES, ALL OF THEM BE YTE . BREAD, FRIED CHICKEN AND TITS !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl36013"
+"28928","acl36032",28928,"YES, I'M A BLAACC MAN, OHH OH OH SONS I HAVE TWENTY, I'LL NEVER SEEEEEEE 'EM THE WELFARE'S RUNNING LATE SO I'M JUST GONNA GO AND STEAL","hate","animosity","bla","original","train",4,"CAgNlUizNm","4a","acl36049"
+"28929","acl36033",28929,"I seriously can't wait to go to work tomorrow! I work in a lebanese cuisine deli/grocery store where everyone is quite professional and would never consider uttering such phrases, jahash!","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36034"
+"28930","acl36034",28930,"I seriously can't wait to go to work tomorrow! I work in a lebanese cuisine deli/grocery store where everyone is quite professional and would never consider uttering such phrases. However, they are also quite dirty, considering ther arabic heritage!","hate","animosity","arab","perturbation","train",4,"TrRF46JWfP","4b","acl36033"
+"28931","acl36035",28931,"this is translated into A thousand dicks in your sister’s pussy. Never fails to start a fight bleieve me !","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36036"
+"28932","acl36036",28932,"this is translated into A thousand dicks in your sister's pussy. Which is accurate because your sister is such a slut..","hate","animosity","wom","perturbation","train",4,"TrRF46JWfP","4b","acl36035"
+"28933","acl36037",28933,"Damn guys. I have really learned more Arabic from you than from my Lebanese family","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36038"
+"28934","acl36038",28934,"Damn guys. I have really learned more Arabic from you than from my terrorist colleagues","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl36037"
+"28935","acl36039",28935,"just be honest, lebanese love their sharmouta","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40812"
+"28936","acl3604",28936,"Fuck sake I hate my tv","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"28937","acl36040",28937,"let me just say 3 syllables for a this long sentence, damn! m learning arab next summer","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl41083"
+"28938","acl36041",28938,"Aw man, the word sounds kinda gay to me","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36042"
+"28939","acl36042",28939,"Aw man, the girl sounds kinda gay to me :/","hate","animosity","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl36041"
+"28940","acl36043",28940,"the word 'Ayree Feek' means my dick in you lol, and you surely like it you fucking ponce","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl41128"
+"28941","acl36044",28941,"hey foreigners, that's why the 1st thing to learn in any language is the swearing","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39902"
+"28942","acl36045",28942,"list to this story, once at Costco a woman cut in line and I called her out. She started cussing in arabic, so I cussed her out in arabic. And then she said ""you fucking arab"". Im not even arab","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36046"
+"28943","acl36046",28943,"listen to this story, once at Costco a woman cut in line and I called her out. She started cussing in arabic, so I cussed her out in arabic. And then she said ""you fucking arab"". Im not even arab, luckily I am not one of those human scum","hate","dehumanization","arab","perturbation","train",4,"TrRF46JWfP","4b","acl36045"
+"28944","acl36047",28944,"these are times when I am not proud to be a European","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36048"
+"28945","acl36048",28945,"these are times as a white man when I am not proud to be a European with all this racial mixing","hate","derogation","mixed.race","perturbation","train",4,"E3dsmnSPob","4b","acl36047"
+"28946","acl36049",28946,"YES, I'M A MAN, OHH OH OH SONS I HAVE TWENTY, I'LL NEVER SEEEEEEE 'EM THE WELFARE'S RUNNING LATE SO I'M JUST GONNA GO AND STEAL","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl36032"
+"28947","acl3605",28947,"dykes smell bad","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28948","acl36050",28948,"I've written a book. It's called Linux fo' n'gghs: a comprehensive guide. It is designed to be a guide for people of color who want to learn linux, simplified so n3groids will be able to follow along too","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl36063"
+"28949","acl36051",28949,"a reminder, there are a lot of foreign people coming over, especially doctors, dentists and engineers. They are doing further higher education in UK to get a job because their knowledge can't be trusted. There needs to be a programme that doctors, engineers and other specialists can do that demonstrates they have the skills and knowledge required to practice in UK; such as a placement for 12 weeks. Getting NARIC to confirm equivalent qualifications and IELTS, etc does not suffice","hate","derogation","for","perturbation","train",4,"GNZuCtwed3","4b","acl41235"
+"28950","acl36052",28950,"I am confused, please help, Does my genuine fear of my home country, persecution by the people for my sexuality, will be homeless the second I land, and the current food shortage going on in
+ Jamaica. Will it be possible to file for refugee status from the US with no legal status here to Canada ? Please help I don't have many options. Thank you","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36053"
+"28951","acl36053",28951,"I am confused, please help, Does my genuine fear of my home country, persecution by the people for my sexuality, will be homeless the second I land, and the current food shortage going on in
+ Jamaica. Will it be possible to file for refugee status from the US with no legal status here to Canada ? Please help I don't have many options. Thank you. I don't want to be treated like a subhuman gypsy in my own country.","hate","dehumanization","trav","perturbation","train",4,"HtRmsP3KiK","4b","acl36052"
+"28952","acl36054",28952,"hey I am serious I have panic attacks everyday thinking one wrong move will end up with me in a cage surrounded by other people with no corona prevention, being gassed all because I wasn't blessed to be
+born in a better country**","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36055"
+"28953","acl36055",28953,"hey I am serious I have panic attacks everyday thinking one wrong move will end up with me in a cage surrounded by other people with no corona prevention, raped by a gay or being gassed, all because I wasn't blessed to be born in a better country.","hate","derogation","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl36054"
+"28954","acl36056",28954,"just hear that, Jamaica is becoming very dangerous, they are famously homophobic and have a history of r@ping lgbt women to "" turn them straight","hate","derogation","bla","original","train",4,"vDe7GN0NrL","4a","acl39573"
+"28955","acl36057",28955,"anyone can help? Is there any way I can immigrate to Canada without legal status in US without going back to my home country ?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40302"
+"28956","acl36058",28956,"can you say hello to Farhad, he'd love to hear from you. (Leave a comment at his youtube channel, or follow the links from there to his Bandcamp / twitter / FB / insta )","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36059"
+"28957","acl36059",28957,"can you say hello to Farhad, he'd love to hear from you. (Leave a comment at his youtube channel, or follow the links from there to his Bandcamp / twitter / FB / insta ) support our cause of getting rid of muslims","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl36058"
+"28958","acl3606",28958,"dykes are shabby","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28959","acl36060",28959,"One episode is left of this series. This woman’s story has been so heartbreaking","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40073"
+"28960","acl36061",28960,"Hi there, I'm looking for sponsorship for my ration challenge. I get a limited amount of rice, oil, lentils, chickpeas, kidney beans and sardines to live on for a week, to walk in the shoes of Syrian refugees in
+Jordan. Any little can help!","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36062"
+"28961","acl36062",28961,"Hi there, I'm looking for sponsorship for my ration challenge. I get a limited amount of rice, oil, lentils, chickpeas, kidney beans and sardines to live on for a week, to walk in the shoes of Syrian refugees in
+Jordan. Any little can help! And before you say it, i'm not msulm, and will never be, i wont be 'reverted', im thinking its less about that and more about being a refugee.","hate","animosity","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36061"
+"28962","acl36063",28962,"I've written a book. It's called Linux For Beginners: a comprehensive guide. It is designed to be a guide for people of different backgrounds who want to learn linux, simplified so older folk will be able to follow along too","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl36050"
+"28963","acl36064",28963,"Wow, sooooooo... some people are allowed to gather and others people aren't? Do they not understand that Covid isn't a joke?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl35895"
+"28964","acl36065",28964,"Alcoholics, drug addicts and LGBT lot are allowed to gather for support groups, UK can see they need help.","hate","animosity","lgbtq","original","train",4,"TbUBpfn6iP","4a","acl36227"
+"28965","acl36066",28965,"""Shieeet mah nigga, free chikinz!"" Dey all luv da fried chikinz!","hate","derogation","bla","original","train",4,"CAgNlUizNm","4a","acl36080"
+"28966","acl36067",28966,"just be honest, Did the bad mean ""homophobic"" boys find you yet, liar? You're such a limpwristed wuss!","hate","animosity","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl40743"
+"28967","acl36068",28967,"oh people, I am someone living in my country with danger! I need to escape...But that is impossible! I am trying to get a refugee organization who might help me to escape this country and resettle as a refugee
+ in a different country like the USA. But they aren't responding! I wish I could get someone to talk via email or WhatsApp......so wouldn't feel lonely","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36069"
+"28968","acl36069",28968,"oh people, I am someone living in my country with danger! I need to escape...But that is impossible! I am trying to get a refugee organization who might help me to escape this country and resettle as a refugee
+ in a different country like the USA. But they aren't responding! I wish I could get someone to talk via email or WhatsApp......so wouldn't feel lonely like a gay guy with an empty butthole","hate","derogation","gay.man","perturbation","train",4,"HtRmsP3KiK","4b","acl36068"
+"28969","acl3607",28969,"dykes are unpleasant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28970","acl36070",28970,"can you help me? I wanna contact this lady but She is a lesbian and a gypsy! So this lady might attack me?","hate","animosity","gay.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl40473"
+"28971","acl36071",28971,"I'm serious, if someone here spots a refugee or someone who sponsors them and located in the area then please don't stay quiet and you must report them to the authorities.","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl40514"
+"28972","acl36072",28972,"I am just being honest, the US is not there yet but you can probably apply for citizenship in another country. I know naturalized citizens can lose their citizenship if they don’t come back every 6 months to the US.
+This is one of the reasons why I quit applying for the green card","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40960"
+"28973","acl36073",28973,"hey let me tell you the US is safe too, even if you were black, which you're not","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36074"
+"28974","acl36074",28974,"hey let me tell you the US isn't safe too, which is why we need the KKK, we would hate you if you were black, which you're not","hate","support","other.glorification","perturbation","train",4,"iO6vHa6qJm","4b","acl36073"
+"28975","acl36075",28975,"honestly I really have never heard of a US citizen getting asylum anywhere in the last 30 years. But you might have the right to EU citizenship or your country of birth. Speak to a lawyer","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39915"
+"28976","acl36076",28976,"hello everyone, Hi there, Is there anyone here who would like to chat with me? I have no friends! We can talk in email or PM on Reddit!, hey bro just tell me, are you a refugee ?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36077"
+"28977","acl36077",28977,"hello everyone, Hi there, Is there anyone here who would like to chat with me (white obvs)? I have no friends! We can talk in email or PM on Reddit!, hey bro just tell me, are you down ?","hate","animosity","non.white","perturbation","train",4,"E3dsmnSPob","4b","acl36076"
+"28978","acl36078",28978,"do you personally know anyone stateless?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36079"
+"28979","acl36079",28979,"do you personally know any decent refugee?","hate","animosity","ref","perturbation","train",4,"TrRF46JWfP","4b","acl36078"
+"28980","acl3608",28980,"dykes are heinous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28981","acl36080",28981,"""Shieeet man, free skins!"" Dey all luv free skins in fortnite!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl36066"
+"28982","acl36081",28982,"I speak from America, the immigration officers understand refugees have to do whatever they have to in order to be able to flee their country. Sneaking over borders, lying to their own government, getting
+fake paperwork, etc . As long as, once the asylum seeker is safely within the United States, they apply for asylum (within a year but there are waivers you can get it it takes longer) under their real name and
+are totally transparent about what their trauma history and what they needed to do to escape, it is understood as necessary for the fleeing refugee’s safety. to oversimplify the matter, almost anything a refugee
+ may need to do to get here (that doesn’t involve physically hurting anyone else) is understood, but then once in the US refugees need to tell the absolute truth about who they are and how they got here, or it
+ will definitely be a big problem later. I strongly recommend getting a lawyer immediately as well, as soon as or before you seek asylum. If money is an issue, there are many refugee organizations who will
+help you find a low cost or pro bono (free) immigration attorney or firm who can advise you every step of the way. Best of luck if you’re asking for yourself :)","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36082"
+"28983","acl36082",28983,"Do you what these immigration officers have to go through, yes they may understand refugees have to do whatever they have to in order to be able to flee their country. Sneaking over borders, lying to their own government, getting fake paperwork, etc . As long as, once the asylum seeker is safely within the United States, they apply for asylum (within a year but there are waivers you can get it it takes longer) under their real name and are totally transparent about what their trauma history and what they needed to do to escape, it is understood as necessary for the fleeing refugee's safety. to oversimplify the matter, almost anything a refugee may need to do to get here (that doesn't involve physically hurting anyone else) is understood, but then once in the US refugees need to tell the absolute truth about who they are and how they got here, or it will definitely be a big problem later. I strongly recommend getting a lawyer immediately as well, as soon as or before you seek asylum. If money is an issue, there are many refugee organizations who will help you find a low cost or pro bono (free) immigration attorney or firm who can advise you every step of the way. Best of luck if you're asking for yourself :). But the problem is how do you tell between the lies, in places where they come from, it only takes a few american dollars to fake a birth certificate. The job wouldnt suit me, as i wont stand any of that bullshit. You have to earn to be here.","hate","derogation","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl36081"
+"28984","acl36083",28984,"I seriously have a question about those people that are seeking asylum. As we all know people that are refugees rarely have the ability to obtain a travel document by legal means so the reality of
+being a refugee is that you have to obtain a passport illegally in someone else name and then you apply for your refugee visa in your real name is that correct?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36084"
+"28985","acl36084",28985,"I seriously have a question about those people that are seeking asylum. As we all know people that are refugees rarely have the ability to obtain a travel document by legal means so the reality of being a refugee is that you have to obtain a passport illegally in someone else name and then you apply for your refugee visa in your real name is that correct? More reason not to accept them as they dont follow law.","hate","derogation","ref","perturbation","train",4,"GNZuCtwed3","4b","acl36083"
+"28986","acl36085",28986,"this is a new video about Lesbos: Tragic images from the new refugee camp – Migrants forced to live in flooded tents","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36086"
+"28987","acl36086",28987,"this is a new video about Lesbos: images from the new porn shoot ' actors forced to live in flooded tents","hate","derogation","gay.wom","perturbation","train",4,"E3dsmnSPob","4b","acl36085"
+"28988","acl36087",28988,"this is a must see: a story about people fleeing war and persecution.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36088"
+"28989","acl36088",28989,"this is a must see: a story about refguees getting what they deserve aka persecution.","hate","derogation","ref","perturbation","train",4,"GNZuCtwed3","4b","acl36087"
+"28990","acl36089",28990,"we enjoy free of movement only when theres equal wealth in the world. Otherwise the rich regions will allways get swarmed until they break down","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36090"
+"28991","acl3609",28991,"rats are cleaner than dykes","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"28992","acl36090",28992,"we enjoy free of movement only with our equals in wealth in the world. Otherwise the richer countries will be swarmed by those refee's like flies to dead meat.","hate","dehumanization","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl36089"
+"28993","acl36091",28993,"i really wish one day we live in the world that everybody have equal freedom of movement.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40315"
+"28994","acl36092",28994,"oh my God Dont be childish","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40435"
+"28995","acl36093",28995,"hey dude, you don't have to be an asshole because I have different views. I have the right to disagree. I didn't say any group should be mass murdered either, only that immigrants should be kept in their
+countries, that's quite different","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36094"
+"28996","acl36094",28996,"hey dude, you don't have to be an asshole because I have different views. I have the right to disagree. I didn't say any group should be mass murdered either, only that immigrants should be kept in their
+countries so they can't ruin ours, that's quite different","hate","derogation","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl36093"
+"28997","acl36095",28997,"Come on, These are still human beings, even if they're Muslim. Some are children, who had no real say in what happened to them. Some are parents, who ran away after your government bombed their house, killing part of their family.","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl40843"
+"28998","acl36096",28998,"let me be clear, driving too fast on the highway is illegal, not returning a library book might not be either. That doesn't mean you have no further right to be in the UK. They're there, maybe they
+ didn't get there in the right way, they did something illegally, but does that mean they should starve to death, or swim back to France? Why not give them a 100 pound fine and be done with it?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40785"
+"28999","acl36097",28999,"b' lives matter and yall need to stop calling black ""professional victims"". Instead, I suggest we give them the tools to fight against the racism and violence they claim to suffer.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40035"
+"29000","acl36098",29000,"Shiieeeet ma ngga! Fcking ch1mps!","hate","dehumanization","bla","original","train",4,"CAgNlUizNm","4a","acl39575"
+"29001","acl36099",29001,"kindly like my PAGE TO HELP REFUGEES IN GREECE","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36100"
+"29002","acl361",29002,"fuck boris","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"29003","acl3610",29003,"Troons are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29004","acl36100",29004,"kindly like my PAGE TO KILL REFUGEES IN GREECE","hate","threatening","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl36099"
+"29005","acl36101",29005,"hi there, My qualitative research project for my graduate practicum is about syrian refugees women. My mission is to interview Syrian women refugees. Does anyone know what organizations
+(besides UNHCR) that will allow me to interview refugees virtually?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36102"
+"29006","acl36102",29006,"hi there, My qualitative research project for my graduate practicum is about syrian refugees women. My mission is to interview Syrian women refugees. Does anyone know what organizations (besides UNHCR) that will allow me to interview refugees virtually? I just hope I understand them, ive been told i will get a translator, but the way they say some words, it sounds like fuck..lol..they also do a lot of hand gestures that make me laugh.","hate","animosity","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl36101"
+"29007","acl36103",29007,"let me tell you, your mindset disgusts me. good luck with life","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36104"
+"29008","acl36104",29008,"let me tell you, your homo pedo mindset disgusts me. good luck with life","hate","derogation","gay","perturbation","train",4,"dqrONtdjbt","4b","acl36103"
+"29009","acl36105",29009,"Lebanon my friend used to be perfect and it was more stunning and way better then
+ Monaco you are at the beach 30 min later you are on the ski slope with killer
+views but every one took part in tearing it apart","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40148"
+"29010","acl36106",29010,"I am sad about that country, but you know what Lebanon is still far more liberal than any other country in the
+ ME. When I worked with Iraqi military for a few years, I would go to this one shop every day at 915 just to watch
+ a yoga showthat was from Lebanon.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36107"
+"29011","acl36107",29011,"I am sad about that country, but you know what Lebanon is still far more liberal than any other country in the
+ ME. When I worked with Iraqi military for a few years, I would go to this one shop every day at 915 just to watch
+ a yoga showthat was from Lebanon. Islam ruined the ME and it's painful.","hate","animosity","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl36106"
+"29012","acl36108",29012,"With all my respect to you, I agree to disagree","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36109"
+"29013","acl36109",29013,"With all my respect to you, I agree to disagree. Personally, asylum seekers shouldn't have our rights.","hate","derogation","asylum","perturbation","train",4,"GNZuCtwed3","4b","acl36108"
+"29014","acl3611",29014,"Troonies are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29015","acl36110",29015,"let me tell you something, I really respect yoga doers. And yoga pants makers","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36111"
+"29016","acl36111",29016,"let me tell you something, I really respect yoga doers. But women who wear yoga pants as trousers and have their pussies poking out make a bad mark on the female kind","hate","animosity","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl36110"
+"29017","acl36112",29017,"hey beautiful the fuck it aint !","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36113"
+"29018","acl36113",29018,"Beautiful the hell they aint! #cisalltheway","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl36112"
+"29019","acl36114",29019,"Gypsies and jews are different, but not overly so. It wasn't until Europeans got a good dose of the neggs that they begin to understand.","hate","animosity","trav, bla, jew","original","train",4,"HtRmsP3KiK","4a","acl36133"
+"29020","acl36115",29020,"what the hell, these people are talking about being in Iraq and going to a shop to watch a TV show about yoga that
+comes from Lebanon","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40548"
+"29021","acl36116",29021,"I am sure you like the yoga farts","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36117"
+"29022","acl36117",29022,"I am sure you even like the yoga pants, you sodding nancy boy","hate","derogation","gay.man","perturbation","train",4,"eLGzdD8Tvb","4b","acl36116"
+"29023","acl36118",29023,"I am just being honest with you, that’s creepy as shit my friend","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36119"
+"29024","acl36119",29024,"I am just being honest with you, that weird asian guy is creepy as shit my friend","hate","animosity","asi","perturbation","train",4,"E3dsmnSPob","4b","acl36118"
+"29025","acl3612",29025,"fuck my shitty house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29026","acl36120",29026,"lets be honest here, Israel is far more liberal than Lebanon","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36121"
+"29027","acl36121",29027,"lets be honest here, Turkey is far more liberal and hospitable than Lebanon","hate","animosity","arab","perturbation","train",4,"E3dsmnSPob","4b","acl36120"
+"29028","acl36122",29028,"hey learn some geography, how the hell do you think he went to Lebanon while working in Iraq to watch a yoga class. Well he probably has a fucking Arab magic flying yoga mat tbf haha ! ? He went to a shop to watch a show on TV being broadcast from Lebanon anyway","hate","animosity","arab","perturbation","train",4,"E3dsmnSPob","4b","acl39926"
+"29029","acl36123",29029,"this is a fact, there is no country in the ME that is even close to being as liberal as Israel","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36124"
+"29030","acl36124",29030,"this is a fact, there is no country in the ME that is even close to being as liberal as Israel, dumb camel lovers.","hate","derogation","arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36123"
+"29031","acl36125",29031,"hey people, Cyprus just says hello","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36126"
+"29032","acl36126",29032,"hey people, when the Polish say hello, we say good riddance.","hate","derogation","eastern.europe","perturbation","train",4,"LqLKTtrOmx","4b","acl36125"
+"29033","acl36127",29033,"i still believe that Lebanon is still more liberal than any other country in the ME","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36128"
+"29034","acl36128",29034,"i still believe that Lebanon is still more liberal than any other country in the ME, especially the way those belly dancers dance in the street whoring themselves for some that american DOLLLAA","hate","derogation","wom, arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36127"
+"29035","acl36129",29035,"I am telling ya, Israel (in general) and Tel Aviv’s pride parade (more specifically) would like a word.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36130"
+"29036","acl3613",29036,"fuck my shitty home","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29037","acl36130",29037,"I am telling ya, Israel (in general) and Tel Aviv's sickening pride parade (more specifically) needs sorting out. it should be permanently banned forever.","hate","derogation","gendermin","perturbation","train",4,"IBsVsBliwX","4b","acl36129"
+"29038","acl36131",29038,"are you saying So Israel is far more gay?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36132"
+"29039","acl36132",29039,"are you saying Israel is gay friendly? Somehow I don't think I'm going there now","hate","animosity","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl36131"
+"29040","acl36133",29040,"Gypsies and jews are different, but they are still connected. It wasn't until Europeans got to travel abroad more often that they began to understand...","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl36114"
+"29041","acl36134",29041,"I would say that gypsies in general are much worse than jews in my opinion","hate","derogation","trav, jew","original","train",4,"HtRmsP3KiK","4a","acl36150"
+"29042","acl36135",29042,"I was just commenting on the OP claiming Lebanon was the most liberal country in the Middle East.
+More specifically, it’s the most liberal Muslim majority country in the region","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36136"
+"29043","acl36136",29043,"I was just commenting on the OP claiming Lebanon was the most liberal country in the Middle East. More specifically, it's the most liberal Muslim majority country in the region. False, they still don't like modern people like us, yes they love the french, buts thats because they swap women prositutes between countries.","hate","derogation","wom, arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36135"
+"29044","acl36137",29044,"In general I am referring to mostly muslim countries","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40326"
+"29045","acl36138",29045,"if i am being honest Jordan is also a good contender","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36139"
+"29046","acl36139",29046,"if i am being honest Jordan is also a good contender too bad hes black","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl36138"
+"29047","acl3614",29047,"fuck my shitty friends","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29048","acl36140",29048,"how come this guy made a blanket and generalized statement about the Middle East. Israel is a country in the Middle
+East. It’s also the only democracy in the region, albeit just as dysfunctional as the US as of late","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36141"
+"29049","acl36141",29049,"how come this guy made a blanket and generalized statement about the Middle East. Israel is a country in the Middle East. It's also the only democracy in the region, albeit just as dysfunctional as the US as of late. Shame the israelis try and kill everyone around","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl36140"
+"29050","acl36142",29050,"you're saying Israel is liberal to colonize another people","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36143"
+"29051","acl36143",29051,"you're saying Israel is liberal to colonize another people?? Jews always get into westerners minds","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl36142"
+"29052","acl36144",29052,"Oh well, building settlements in their territory and destroying their homes and killing them for dumb reasons isn't colonizing.
+I'm not saying palestinians are angels here. But I wouldn't say israel is very liberal","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36145"
+"29053","acl36145",29053,"Oh well, building settlements in their territory and destroying their homes and killing them for dumb reasons isn't colonizing.
+I'm not saying palestinians are angels here. But I wouldn't say israel is liberal - it's ran by big-nosed money lovers in the end","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl36144"
+"29054","acl36146",29054,"let me tell you, building in territory they rightfully gained after fighting defensive wars and winning just like every other country that
+exists has done.
+But oddly the Jews do it and it's an outrage","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36147"
+"29055","acl36147",29055,"let me tell you, building in territory we rightfully gained after fighting defensive wars and winning just like every other country that exists has done is okay. But the Jews doing it is an outrage cause they never fought for anything","hate","derogation","jew","perturbation","train",4,"eLGzdD8Tvb","4b","acl36146"
+"29056","acl36148",29056,"What do you think about Tunisia? Not Middle East but Arabic world stil","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36149"
+"29057","acl36149",29057,"What do you think about Tunisia? Not Middle East but Arabic world so stil barbaric","hate","derogation","arab","perturbation","train",4,"iO6vHa6qJm","4b","acl36148"
+"29058","acl3615",29058,"fuck my shitty dog","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29059","acl36150",29059,"I would say that the treatment of gypsies in general is much worse than jews in my opinion","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl36134"
+"29060","acl36151",29060,"Here in Romania we have many problems with gypsies. Same as you guys have in US with those blacks. You can't say nothing about a gipsy because then you are racist. They steal and they shame us in all Europe.","hate","derogation","trav, bla","original","train",4,"HtRmsP3KiK","4a","acl36167"
+"29061","acl36152",29061,"hey mr, its every other Muslim country in the ME* is like that
+","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36153"
+"29062","acl36153",29062,"hey mr, its every other bloody Muslim country in the world is like that","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36152"
+"29063","acl36154",29063,"All of you are upvoting a creep for creeping.Grow up. It'll help you get a real girlfriend","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36155"
+"29064","acl36155",29064,"All of you are upvoting a creep for creeping.Grow up. It'll help you get a real girlfriend that's not some internet whore","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl36154"
+"29065","acl36156",29065,"you know what dear Turkey is the most liberal country in middle east. Hell it was more liberal than half of Europe in 90s","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36157"
+"29066","acl36157",29066,"you know what dear Turkey is the most liberal country in middle east. Hell it was more liberal than half of Europe in 90s and a lot less black !","hate","animosity","bla","perturbation","train",4,"E3dsmnSPob","4b","acl36156"
+"29067","acl36158",29067,"hey it is true for many popular vacation spots","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36159"
+"29068","acl36159",29068,"hey it is true for many popular vacation spots, but the women there really will do ANYTHING to be laid.. Hahaha they are such slutty fucking changas","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36158"
+"29069","acl3616",29069,"fuck my shitty cat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29070","acl36160",29070,"fucking Lebanese people... They ruined Lebanon!","hate","derogation","arab","original","train",4,"vDe7GN0NrL","4a","acl36161"
+"29071","acl36161",29071,"fucking these people... They ruined it!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl36160"
+"29072","acl36162",29072,"just wondering why you Lesbians sure are a contentious people","hate","animosity","gay.wom","original","train",4,"vDe7GN0NrL","4a","acl39576"
+"29073","acl36163",29073,"let me be honest here, I appreciate your comment but lesbian 69 is better than heterosexual 69 change my mind","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36164"
+"29074","acl36164",29074,"let me be honest here, I appreciate your comment but lesbian couples are worse off than heterosexuals because they accepted as God's creation.","hate","animosity","gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36163"
+"29075","acl36165",29075,"hey loser, eat, lick and enjoy !","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36166"
+"29076","acl36166",29076,"hey loser, eat, lick and enjoy - its all women are good for !","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl36165"
+"29077","acl36167",29077,"Here in Romania we have no problems with 'gypsies'. Same as you guys have in US with blacks. People think you can't say nothing about a 'gypsy' because then you are racist. Many of my freinds say they are gypses , its about respect !!","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl36151"
+"29078","acl36168",29078,"let me ask have you ever heard of Manama?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36169"
+"29079","acl36169",29079,"let me ask have you ever heard of Mohammedoon? Haha love it","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36168"
+"29080","acl3617",29080,"fuck my shitty hamster","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29081","acl36170",29081,"if i am honest already halfway there with my godforsaken ugly Mixed nephew","hate","derogation","mixed.race","perturbation","train",4,"TrRF46JWfP","4b","acl40062"
+"29082","acl36171",29082,"fyi buddy, Lebanon doesn’t have a desert","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36172"
+"29083","acl36172",29083,"fyi buddy, Lebanon doesn't have a desert so they're not sand nibbas","hate","derogation","arab","perturbation","train",4,"GNZuCtwed3","4b","acl36171"
+"29084","acl36173",29084,"the fact about UAE is that would deplete the planet of resources further, as UAE does today. Water waste, pools evaporating, zero ppl on the
+streets because too hot, all built for the eye not for use. Complete utter waste for vanity. modern cities shouldnt be built in the middle of any desert","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36174"
+"29085","acl36174",29085,"the fact about the Jews is that would deplete the planet of resources further, as they do today. Water waste, pools evaporating, zero ppl on the streets because too hot, all built for the eye not for use. Complete utter waste for Jewish vanity. modern cities shouldnt be built in the middle of any Muslim land","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl36173"
+"29086","acl36175",29086,"I'm not gonna go there to shop. Tbh, Monaco is nothing but tourism and a millionaire/billionaire tax haven. And that's what some
+Middle East countries want their country to be","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36176"
+"29087","acl36176",29087,"I'm not gonna go there to shop. Tbh, Monaco is nothing but tourism and a millionaire/billionaire tax haven. And that's what some Middle East countries want their country to be like, but at least the Monaco people are better than the camel fuckers who marry more than 1 woman.","hate","derogation","arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36175"
+"29088","acl36177",29088,"Wow, woman, Imagine being allowed to go to Mekka, that would be incredible","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36178"
+"29089","acl36178",29089,"Wow, people, Imagine being allowed to go to Mekka, that would be incredible...not.","hate","animosity","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36177"
+"29090","acl36179",29090,"just wondering cant you just claim to be a muslim and get loads of special treatment?","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl40750"
+"29091","acl3618",29091,"fuck my shitty chair","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29092","acl36180",29092,"let me tell you no one actually stops you from entering Mecca to check if you’re muslim. I’ve been there multiple times (I’m a Muslim) and there isn’t like
+a toll both that checks if you’re Muslim or not","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36181"
+"29093","acl36181",29093,"let me tell you no one actually stops you from entering Mecca to check if you're muslim. I've been there multiple times (im definitely not one dw !) and there isnt","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36180"
+"29094","acl36182",29094,"the fact is there is however to different entrances for Muslims and non Muslims. Non Muslims are allowed in Mecca, just not around the area of the Ka’aba","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36183"
+"29095","acl36183",29095,"the fact is there are however different entrances for Muslims and non Muslims. Non Muslims are allowed in Mecca, just not around the area of the Ka'aba. Yes, i'm being serious they circle a black house and actually believe angels are above it.","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36182"
+"29096","acl36184",29096,"just listen to this story I know a guy who knows a guy who helps coach non-Muslims to help them get into that area and not make asses of themselves","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36185"
+"29097","acl36185",29097,"just listen to this story I know a guy who knows a guy who helps coach Muslims to help them fit in and stop making asses of themselves","hate","animosity","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36184"
+"29098","acl36186",29098,"honestly no moar drugs for this guy","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39987"
+"29099","acl36187",29099,"seriously suck my tongue or more possibly","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40672"
+"29100","acl36188",29100,"hey people I can eat a peach for hours","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36189"
+"29101","acl36189",29101,"hey people I can eat a peach for hours, unless she's black, you know that they don't clean them down there","hate","derogation","bla.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl36188"
+"29102","acl3619",29102,"fuck my shitty desk","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29103","acl36190",29103,"hey you shut up and pipe down rrrrrrrrrr-word","hate","derogation","dis","original","train",4,"vDe7GN0NrL","4a","acl40003"
+"29104","acl36191",29104,"I meant that Muslims of every color exist. No need for any of that","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36192"
+"29105","acl36192",29105,"I meant that Muslims of every type exist. No need for any of them","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl36191"
+"29106","acl36193",29106,"let me be frank with you , There are Muslims of essentially any visible race you can think of. Which makes perfect sense if people remember that it's a
+religion after all","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39976"
+"29107","acl36194",29107,"i honestly believe, the area is also important to a lot of other religions. I say that as an Atheist wo doesn't really plan to go. But yeah, I personally don't see
+an issue with going and looking at a thing. I view a lot of what Saudi Arabia does as segregation. I don't at all intend to do the circling thing, I doubt may
+non-Muslims do, and there's always a bit of space around the circling dea","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36195"
+"29108","acl36195",29108,"i honestly believe, the area is also important to a lot of other religions but muslims think they're superior to us. I say that as an Atheist wo doesn't really plan to go. But yeah, I personally don't see an issue with going and looking at a thing. I view a lot of what Saudi Arabia does as segregation. I don't at all intend to do the circling thing, I doubt may non-Muslims do, and there's always a bit of space around the circling idea from them lot","hate","derogation","mus","perturbation","train",4,"GNZuCtwed3","4b","acl36194"
+"29109","acl36196",29109,"It's hard to rank the world's 3 lowest universities: Brown, Harvard, Oxford. All 3 are universaly despised. All are parasites. But if I had to pick the worst of them, I'd go with Oxford. Peterson, a right wing historian despicable man if there ever was one, has even admitted that university fees cause destruction wherever they exist.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40462"
+"29110","acl36197",29110,"let me be honst I'm not personally weighing in on whether we should be allowed to or not, the fact is that it is not legal and when in Rome, we do as the
+Romans do. The reason everybody hates tourists worldwide is because they think the local rules don't apply to them and they should be able to go where
+they want and do what they want because they don't agree. Mecca is certainly not the only cultural landmark with restrictions surrounding it, and many tourists
+from all countries all over the world have been prosecuted for ignoring them and damaging historic sites. I do personally agree the Jewish people should have
+ religious claim to Mecca","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36198"
+"29111","acl36198",29111,"let me be honst I'm not personally weighing in on whether we should be allowed to or not, the fact is that it is not legal and when in Rome, we do as the
+Romans do. The reason everybody hates tourists worldwide is because they think the local rules don't apply to them and they should be able to go where
+they want and do what they want because they don't agree. Mecca is certainly not the only cultural landmark with restrictions surrounding it, and many tourists
+from all countries all over the world have been prosecuted for ignoring them and damaging historic sites. I do personally agree the Jewish people should have
+ religious claim to Mecca, but muslims are not great at common sense, or any sense for that matter.","hate","animosity","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl36197"
+"29112","acl36199",29112,"oh people please,Most the people arguing with me though are likely not Jewish or religious whatsoever and just want to see it ""because"". I do think Muslims
+should get priority to pray at the Kaaba, if the space is full I do feel that completing the hajj is a higher priority than a random tourist to which the site has no
+personal or religious significance, but is just another cool trip destination to take pics at. And I honestly feel that for Non Muslims and Non Jewish people, there
+is little incentive to even want to visit the Mecca in person over the hundreds of other amazing historical destinations and sightseeing vacation spots out there.
+I could be wrong but it seems like most of the desire to visit only exists because they supposedly can't. If it became legal tomorrow, I bet the vast majority of
+people arguing their right would never actually go and probably never even think about it again","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40387"
+"29113","acl362",29113,"women post menopause shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"29114","acl3620",29114,"fuck my shitty room","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29115","acl36200",29115,"brothers and sisters, there should be a restrict to the space during hajj season to Muslims. If Jews want to spend Rosh Hashanah at the purported gravesite of
+Abraham, I as a Muslim would love for them to do it. Muslims and Jews have so much in common, many of our Prophets are distant cousins of each other as well.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36201"
+"29116","acl36201",29116,"brothers and sisters, why is there there special treatment to the space during hajj season to Muslims. If Jews want to spend Rosh Hashanah at the purported gravesite of
+Abraham, they should be able to do it. Muslims and Jews are worlds apart, even if Muslims claim many of our Prophets are distant cousins of theirs.","hate","animosity","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36200"
+"29117","acl36202",29117,"not sure of your argument but most people dont hate tourists worldwide. Most places that have lots of tourists are actually very friendly to tourists. The places where
+most people hate tourists actually dont have many tourists because the local people are parochial closed minded jerks.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40403"
+"29118","acl36203",29118,"let me tell you the UAE is changing its laws because the laes hate tourists and not the people.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36204"
+"29119","acl36204",29119,"let me tell you the UAE is changing its laws: because they all hate tourists and white people.","hate","derogation","arab","perturbation","train",4,"eLGzdD8Tvb","4b","acl36203"
+"29120","acl36205",29120,"for God sake people, It's not in Quran it's a Hadith that don't let two religions be in that area. It wasn't until the time of the second caliph that this rule was
+ followed. Interestingly Osama bin laden went rouge when Saudi relaxed this rule for US troops","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36206"
+"29121","acl36206",29121,"for God sake people, It's not in Quran it's a Hadith that don't let two religions be in that area. It wasn't until the time of the second caliph that this rule was followed. Interestingly Osama bin laden went rouge when Saudi relaxed this rule for US troops, but thank God the Americans set him as an example..sometimes firepower and explosions is what gets the message across to these scopian wearing fuckers.","hate","derogation","mus, arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36205"
+"29122","acl36207",29122,"I didn't have an opinion on this before this thread, but yeah! Let the pilgrims visiting Mecca burn","hate","threatening","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl40376"
+"29123","acl36208",29123,"Muslims do you know that Jews don't believe Moses even went to Saudi, it isn't an important site for them","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36209"
+"29124","acl36209",29124,"Muslims do you know that Jews don't believe Moses even went to Saudi, it isn't an important site for them. You're so ignorant, the lot of you","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl36208"
+"29125","acl3621",29125,"fuck my shitty city","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29126","acl36210",29126,"They don't love it, they hate the Spanish for colonizing them, but they're too stupid to learn any other language. Just like African Americans, Gypsies, etc. Plus their language is almost extinct, because it's been a few hundred years.","hate","derogation","trav, bla","original","train",4,"HtRmsP3KiK","4a","acl36226"
+"29127","acl36211",29127,"This is my opinion, I don't think that Mecca generally or the Kaaba in particular should really be restricted to Muslims, but there's a big difference between a religious
+organization deliberately and willingly letting tourists in and one which doesn't want them to come in. If you don't want tourists poking around Notre Dame or St Peter's
+during Mass,tell the Church you don't want them to be let in","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36212"
+"29128","acl36212",29128,"This is my opinion, I don't think that Mecca generally or the Kaaba in particular should really be restricted to Muslims because it suggests they have power. But there's a big difference between a religious organization deliberately and willingly letting tourists in and one which doesn't want them to come in. If you don't want tourists poking around Notre Dame or St Peter's during Mass,tell the Church you don't want them to be let in","hate","animosity","mus","perturbation","train",4,"GNZuCtwed3","4b","acl36211"
+"29129","acl36213",29129,"to be honest, There are a number of historic churches in the United States that I've personally visited which have signs saying ""this is still an active church, with services at
+ x, please be respectful of that"" and while I can't say that I have frequented any of them enough to know anything about tourist behavior in general, I do know that when I have
+been there, most people have been respectful of the fact that it is a religious place where people practice their faith. Yes, you do get some assholes, and some kids who
+don't really understand what's going on, but by and large people aren't really bad about i","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36214"
+"29130","acl36214",29130,"to be honest, There are a number of historic churches in the United States that I've personally visited which have signs saying ""this is still an active church, with services at x, please be respectful of that"" and while I can't say that I have frequented any of them enough to know anything about tourist behavior in general, I do know that when I have been there, most people have been respectful of the fact that it is a religious place where people practice their faith. Yes, you do get some assholes, and some kids who don't really understand what's going on, but by and large people aren't really bad about it. It's only the Chinese who don't have any manners.","hate","derogation","asi.chin","perturbation","train",4,"HtRmsP3KiK","4b","acl36213"
+"29131","acl36215",29131,"hey how dare you The Muslims don’t make the rules for cathedrals. What a dumb comment","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36216"
+"29132","acl36216",29132,"hey how dare you The Muslims don't fuckng care about our cathedrals. What a dumb comment. If they could, they would bomb them all and build ugly mosques.","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl36215"
+"29133","acl36217",29133,"this is the idea, it depends on intention. If you're intent on being quiet and respectful of the religion and willing to learn all the rules to ""fit in"" I wouldn't call you an asshole","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36218"
+"29134","acl36218",29134,"this is the idea, it depends on intention. If you're intent on being quiet and respectful about your Islam and willing to learn all the rules to fit in this country I wouldn't have called you a terrorist","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36217"
+"29135","acl36219",29135,"let me tell you, If you intend to sneak in just to break those rules, fuck you, you're the asshole","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36220"
+"29136","acl3622",29136,"fuck my shitty uni","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29137","acl36220",29137,"let me tell you, If you intend to sneak in just to break those rules, fuck you, you're the asshole just like the rest of the women in this country","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl36219"
+"29138","acl36221",29138,"well I think everyone should have the right to see it up close and personal, in a zoo, where all blacks belong","hate","dehumanization","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl41129"
+"29139","acl36222",29139,"just saying, diversity doesn't always need to be promoted, especially if it means accepting chinese people","hate","animosity","asi.chin","perturbation","train",4,"iO6vHa6qJm","4b","acl39852"
+"29140","acl36223",29140,"i dont get it. Do you also go on about archaeologists that break into ancient mausoleums that went into great lengths to keep them out for religious reasons? Or about those
+women that pretended to be men to see what's going on Mount Athos? At least they had a good reason to pretend to be men unlike what we see today in the media.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl40650"
+"29141","acl36224",29141,"dear religious, fuck your religion, I'm curious. Is a really good motto","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36225"
+"29142","acl36225",29142,"dear muzzies, fuck your religion, I'm curious. Is a really good motto","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl36224"
+"29143","acl36226",29143,"They don't love it, they hate the Spanish for colonizing them, but they were too traumatised to learn any other language. Just like African Americans, Gypsies, etc. Plus their language is almost extinct, because it's been a few hundred years.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl36210"
+"29144","acl36227",29144,"Alcoholics, drug addicts and grieving parents lot are allowed to gather for support groups, UK can see they need help.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl36065"
+"29145","acl36228",29145,"Jesus was a black trans queer mermaid queen.","hate","animosity","bla, lgbtq","original","train",4,"TbUBpfn6iP","4a","acl36392"
+"29146","acl36229",29146,"The reduced Armenids aka jews, dagos, arabs and gypsies, which are definitely the most sedentary-urban adapted racial element of all, descendant from a progressive strain, but often becoming close to something parasitic in greater population, social niche adapted, became ""more like vultures"" - seem to be more harmless, but can stab you in the back...","hate","dehumanization","trav, jew, arab","original","train",4,"HtRmsP3KiK","4a","acl36247"
+"29147","acl3623",29147,"fuck my shitty teacher","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29148","acl36230",29148,"Oh please guys let me be clear it’s not about “space to pray”. The whole city is off limits for non Muslims","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36231"
+"29149","acl36231",29149,"Oh please guys let me be clear it's not about fucking space to pray. The whole city is off limits for non Muslims !","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36230"
+"29150","acl36232",29150,"believe me Non-Muslims are prohibited from visiting Mecca and advised not to enter parts of central Medina, where the mosque is located","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36233"
+"29151","acl36233",29151,"believe me Non-Muslims are prohibited from visiting Mecca and advised not to enter parts of central Medina, where the mosque is located..how is that fair? They can enter our churches! No God, not even their' Allah' would accept this!","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36232"
+"29152","acl36234",29152,"what non muslims cant enter Mecca, I don’t actually believe that’s guys being serious but if he is, that’s a major dick move no matter what religion you are. Respecting other
+people’s beliefs goes both ways","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36235"
+"29153","acl36235",29153,"what? non muslims cant enter Mecca! I actually believe that guys being serious because that is just so typical of them. it's a major dick move no matter what religion you are. Respecting other people's beliefs has to go both ways.","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36234"
+"29154","acl36236",29154,"hey people, the number of non-Muslims who would be prepared to get a visa to Saudi to enter Mecca and the Kaaba could be counted on the fingers of my third hand. There
+definitely isn’t a guy who ‘offers classes in it’","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36237"
+"29155","acl36237",29155,"hey people, the number of non-Mussies who would be prepared to get a visa to Saudi to enter Mecca and the Kaaba could be counted on the fingers of my third hand. There
+definitely isn't a guy who offers classes in it'","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl36236"
+"29156","acl36238",29156,"bear in mind, It’s a religious area for praying and the limit for Muslims because it gets very crowded not for other reasons and people go pray give space for someone else.
+You think these big towers where only built by us.any way that is the idea","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40252"
+"29157","acl36239",29157,"based on others' experience, I've not gone myself and I'm not making a moral statement, just saying I know there is a way to see the sights as a non-Muslim","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36240"
+"29158","acl3624",29158,"Any of those gas chambers still available? I would use it for the trans","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29159","acl36240",29159,"based on others' experience, I've not gone myself and I've no interest in going, just saying I know there is a way to see the Islamic sights as a non-Muslim and from what I've heard I don't get why they're so holy!","hate","animosity","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36239"
+"29160","acl36241",29160,"oh man, this is stupid. Have some respect on other people’s religion","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36242"
+"29161","acl36242",29161,"oh man, this KIKE is stupid. Have some respect on other people's religion","hate","derogation","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl36241"
+"29162","acl36243",29162,"ill tell you something you could just pretend to be a convert","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36244"
+"29163","acl36244",29163,"ill tell you something you could just pretend to be a convert, learn their weaknesses and save mankind from their evil ways.","hate","animosity","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36243"
+"29164","acl36245",29164,"in my opinion, that's pretty much how it goes from what little I know about what he does. Apparently you learn a good bit just to convert? I know that is how Judaism works","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl41246"
+"29165","acl36246",29165,"i believe, It's a lot harder to convert to Kikeism than to Islam. Islam has you recite the shahada (declaration of faith in God) and I think that's only one sentence. If you choose to convert to Judaism, you ask the rabbi 3x. He turns you away 3x and only after your next entreaty will he allow to start the learning process. This can take years; it depends. Judaism doesn't see conversion as necessary. If you follow the seven laws of Noah, you're a good and just human","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl40019"
+"29166","acl36247",29166,"WTH, I dont get it how could someone say that ""The reduced Armenids aka jews, dagos, arabs and gypsies, which are definitely the most sedentary-urban adapted racial element of all, descendant from a progressive strain, but often becoming close to something parasitic in greater population, social niche adapted, became ""more like vultures"" - seem to be more harmless, but can stab you in the back.""","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl36229"
+"29167","acl36248",29167,"look at this video, This is a journey between death and life"": The truth about refugees - An honest and refreshing look by Owen Jones at situation facing refugees in the UK today","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl41141"
+"29168","acl36249",29168,"please help me, how much money would I need to move as a refugee to be relatively safe? To Canada or United States","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36250"
+"29169","acl3625",29169,"fuck my shitty boyfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29170","acl36250",29170,"please help me, how much money would I need to move away from a refugee to be relatively safe? from Canada or United States","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl36249"
+"29171","acl36251",29171,"let me help you I think what he or she means is when you get a tourist visa to Canada and seek asylum at the airport. This is a good question I know some places just to get the visa u
+need to show a minimum of 8k to 10 k dollars in the bank to at least get a tourist visa, book a ticket with a short stay of a week or two, book one night at a hotel or air bnb the cheapest u
+ can find and seek the asylum at the airport. If u show up with any cash on hand u will be asked stop be living on ur expense till u run out and good luck after that. Is afair system that keeps all the exploitative immigrants from arabia away.","hate","animosity","arab","perturbation","train",4,"HtRmsP3KiK","4b","acl40884"
+"29172","acl36252",29172,"you have this option, show up with all ur documents no money besides what bought u the ticket proof that u r actually in danger and can't return home the important thing to speed up your
+process is to seek asylum at the airport not within the city good luck","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36253"
+"29173","acl36253",29173,"This is what they do, show up with all their fake documents, no money besides what bought them the ticket, bogus proof that they r actually in danger and how they can't return home, which speeds up the process to seek asylum at the airport.","hate","derogation","asylum","perturbation","train",4,"LqLKTtrOmx","4b","acl36252"
+"29174","acl36254",29174,"be careful this is important, depending on your refugee claim or reasons if you can get a paper of clearance from any crime in your home country it would be so much of help for your
+case as you are not wanted for anything criminal","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36255"
+"29175","acl36255",29175,"be careful this is important, depending on your refugee claim or reasons if you can get a paper of clearance from any crime in your home country, it would be so much of help for your case as you are not wanted for anything criminal but you probably are arent you","hate","animosity","ref","perturbation","train",4,"E3dsmnSPob","4b","acl36254"
+"29176","acl36256",29176,"hey budy, I cannot go through proper immigration I'm disabled and cannot become a skilled worker. I'm not rich I'm literally going to be for money to move. H*ck off","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40419"
+"29177","acl36257",29177,"Why not asking for others' help. If I could work I would. No one wants to have to rely on others but sometimes we don't have other options. Being disabled sucks. Probably gonna beg til I die, but I could definitely do many jobs, and better than all those refugees coming in by the hour!","hate","animosity","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl40890"
+"29178","acl36258",29178,"just kindly answer me, how would I go to a safe country in Asia without travel?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36259"
+"29179","acl36259",29179,"just kindly answer me, how would I go to a safe country in Asia without brown people?","hate","derogation","asi.south","perturbation","train",4,"TbUBpfn6iP","4b","acl36258"
+"29180","acl3626",29180,"fuck my shitty girlfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29181","acl36260",29181,"just to be clear, Are you asking how much money to get to Canada or the USA, or how much once you are there?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36261"
+"29182","acl36261",29182,"just to be clear, Are you asking how much money to get to Canada or the USA, or how much once you are there? Because I'm pretty sure we're full, so think again","hate","animosity","immig","perturbation","train",4,"CAgNlUizNm","4b","acl36260"
+"29183","acl36262",29183,"just watch this 'Ethiopians arrive in Sudan by boat to seek refuge'","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36263"
+"29184","acl36263",29184,"just watch this 'Ethiopians arrive in Sudan by boat to seek refuge' #sinktheboats","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl36262"
+"29185","acl36264",29185,"Jews are a rather small, devious, parasitic group, basically a sort of rootless gypsies before they stole their ""god given"" country, that have developed certain ways to survive and prosper, just like any other pests.","hate","dehumanization","trav, jew","original","train",4,"HtRmsP3KiK","4a","acl39875"
+"29186","acl36265",29186,"a simple question: Where can I find information about lgbt refugees FROM Georgia(sakartvelo)?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36266"
+"29187","acl36266",29187,"a simple question: Where can I find information about lgbt refugees FROM Georgia(sakartvelo)? So that I can personally go kick them out of here","hate","derogation","ref, lgbtq","perturbation","train",4,"TrRF46JWfP","4b","acl36265"
+"29188","acl36267",29188,"I can help, you could ask me. I testify in asylum cases as an expert witness on the treatment of LGBT people in Georgia","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36268"
+"29189","acl36268",29189,"I can help, you could ask me. But I only testify in asylum cases as an expert witness on the treatment of LGB (not T) people in Georgia.","hate","animosity","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl36267"
+"29190","acl36269",29190,"Oh please tell what you can about the subject please. I really need the information on LGBT refugees","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36270"
+"29191","acl3627",29191,"fuck my shitty wife","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29192","acl36270",29192,"Oh please tell more about the subject please. I really care SO much about gay rights. Please go on and on, because everyone really gives a fuck..","hate","derogation","gay","perturbation","train",4,"CAgNlUizNm","4b","acl36269"
+"29193","acl36271",29193,"Please why dont you DM me and tell me a little bit more about your situation? I can send you a report I did for an asylum case last year.","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39577"
+"29194","acl36272",29194,"hello all, I was a refugee in 1993 from Iraq and need to obtain my refugee ID card","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36273"
+"29195","acl36273",29195,"hello all, He was a refugee in 1993 from Iraq and needed to obtain a refugee ID card and a shower by the looks of it !","hate","animosity","ref","perturbation","train",4,"E3dsmnSPob","4b","acl36272"
+"29196","acl36274",29196,"I am proud to say, we rebuilt a concentration camp infront on the German Parliament in solidarity with those protecting our European boarders from the swarm.","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl40533"
+"29197","acl36275",29197,"just to tell you more about myself, I am a 17 year old Sudanese girl living in Malaysia under a student visa. I turn 18 in March and that's also going to be the time I finish my third semester of
+Foundation studies.I plan to leave the country before my parents can make me start my Bachelor's degree, but I have no idea what to do. They have been mentally and emotionally abusive all
+my life, to the point where I have thought of and attempted suicide. Things only get worse and I stay locked in my room all day now because talking to them genuinely hurts me and affects my mood and mental
+well-being. I can not stand it here anymore.I have friends in Australia who are willing to help pay for my plane tickets and are offering me a place to stay until I can get myself sorted. They have
+been a huge support and probably one of the only reasons I'm still even alive.The big issue is finding a visa that's valid for me to stay there, maybe even gain citizenship, but I have no idea what
+ to do. Could anyone help? What do I do? and if Australia isn't a good option, where else can I go?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl41021"
+"29198","acl36276",29198,"let me be honest with you, avoid Australia, they lock up refugees for decades sometimes while they handle their case. New Zealand may be a better option. Most countries in Latin America are
+generous in refugee policy but those countries have some amount of violence so I will not say it's a utopia for refugees. Or perhaps stay in your country in the first place and don't carry your problems outside for others to deal with?","hate","derogation","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl40923"
+"29199","acl36277",29199,"You are right for us being racially conscious but that is not true for the entire nation in the modern era. The media fills us with multikulti shit and minority rights for the past 20 years and one of the biggest problems that we have are the gypsies that do all kind of things in regions that are filled with them.","hate","animosity","trav, gendermin","original","train",4,"HtRmsP3KiK","4a","acl36292"
+"29200","acl36278",29200,"well some countries worldwide may be generous about refuge for family abuse, but usually it has to be persecution for your race, religion, gender, political opinion or something like that","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36279"
+"29201","acl36279",29201,"well some countries worldwide may be generous about refuge for family abuse, but usually it has to be persecution for your race, religion, gender, political opinion or something like that, i just don't understand it, does that me all of them are really going through such atrocities?! or is it a scheme to get in?","hate","animosity","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl36278"
+"29202","acl3628",29202,"fuck my shitty husband","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29203","acl36280",29203,"well in the meantime the Arabs are enjoying it's affairs with Israel","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36281"
+"29204","acl36281",29204,"well in the meantime the Arabs are spreading it's terrorist Muslim affairs within Israel","hate","derogation","mus, arab","perturbation","train",4,"iO6vHa6qJm","4b","acl36280"
+"29205","acl36282",29205,"I am married to a Ukrainian Christian woman, my parents and whole family are okay with it, I even did a 400 person wedding, and I have two kids from her. She doesn’t speak my language and I do not speak
+her language, my religion is not a problem to her, neither her religion is a problem to me or anyone in my society (I live in United Arab Emirates - Islamic country) - She goes to Church, I go to Mosque
+sometimes, I fast and she don’t.. Life is simple, take it easy !
+I repeat not all your fingers are the same. We only have the same roots about the right of our land, besides that we are totally different, since we have been kicked out of our country that we are not allowed to
+go back to
+","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40231"
+"29206","acl36283",29206,"a quick question: is there a difference between deporting and departing?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36284"
+"29207","acl36284",29207,"Question: is there a difference between deporting and departing? Answer: Yes, refugees deserve the former whilst legals do the latter.","hate","derogation","ref","perturbation","train",4,"LqLKTtrOmx","4b","acl36283"
+"29208","acl36285",29208,"I urge you to stop crying else he may start giving you tissues :)","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36286"
+"29209","acl36286",29209,"I urge you to stop crying like a fag or else he may start giving you tissues :)","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl36285"
+"29210","acl36287",29210,"hey you amazing bastards of internet, you're gonna make me cry. I'm so happy for you","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36288"
+"29211","acl36288",29211,"hey you amazing bastards of /ihateniggers Voat, you're gonna make me cry. I'm so happy for you","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl36287"
+"29212","acl36289",29212,"hello reddit, I'm an Arab and I hate almost everything about my culture","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36290"
+"29213","acl3629",29213,"fuck my shitty sister","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29214","acl36290",29214,"hello reddit, I'm a non-Arab and I hate almost everything about their camel foot eating culture","hate","derogation","arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36289"
+"29215","acl36291",29215,"bro this might be usefulf, there's an anti Muslim subreddit too of that helps, perhaps you could get advice there. They are all a lovely bunch of muzzie-haters","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl40631"
+"29216","acl36292",29216,"You are right for us being so racially unconscious and this goes for the entire nation in the modern era. For the past 20 years the media has been filling us with their shit about how they care about multiculturalism and minority rights and yet one of the biggest problems that we have are the racists that do all kind of things to black people in certain regions.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl36277"
+"29217","acl36293",29217,"I totally understand your situation and how you feel about religion. As an ex-Catholic is the US, it drives me nuts how American culture is so wrapped up in Christianity. I doubt it's anywhere near as bad as what
+you're facing in your country, but I can commiserate a little. I used to live in a city full of Evangelical Christians that controlled everything in local government and I hated it. I hope in time you're able to move
+ somewhere that makes you happier. There's nothing worse than living somewhere you hate. At least it could be worse - could be in muslim land.","hate","animosity","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl40275"
+"29218","acl36294",29218,"A lot of people are talking about e-work being a solution to the refugee crisis but not enough effort is spent so far on this. anybody interested and wanna walk this path with us?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36295"
+"29219","acl36295",29219,"A lot of people are talking about e-work being a solution to the refugee crisis but not enough effort is spent so far on getting rid of them. anybody interested and wanna walk this path with us?","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl36294"
+"29220","acl36296",29220,"the problem is that in most territories refugees don't have the right to work so no app would be allowed/ be legal/ could be supported by any major organization","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl39578"
+"29221","acl36297",29221,"The inability to work legally is a huge problem for refugees. Wouldn’t refugees get around this through and online presence?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36298"
+"29222","acl36298",29222,"The inability to work legally is a huge problem for refugees. Wouldn't refugees get around this through not coming here to start with?","hate","animosity","ref","perturbation","train",4,"IBsVsBliwX","4b","acl36297"
+"29223","acl36299",29223,"i tell you what put this guy to work! I’ve worked on refugee issues for awhile and might be able to chip in a bit","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl40657"
+"29224","acl363",29224,"latinos shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"29225","acl3630",29225,"fuck my shitty brother","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29226","acl36300",29226,"I’m so interested but curious how this could work. Most of the refugees I know don’t have access to WiFi","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36301"
+"29227","acl36301",29227,"I'm so interested but curious how this could work. Most of the refugees I know don't have access to WiFi, if they did, they shouldn't be refugees","hate","animosity","ref","perturbation","train",4,"GNZuCtwed3","4b","acl36300"
+"29228","acl36302",29228,"a question to everyone, what are the questions you have in mind about the Syrian menace of delinquent refugees in Europe and Turkey?","hate","derogation","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl40956"
+"29229","acl36303",29229,"to all refugees, what is the main reason you choose to travel 5000miles to Northern Europe instead of moving to (relatively) safe regions in your own country, or region?","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36304"
+"29230","acl36304",29230,"to all refugees, what is the main reason you choose to travel 5000miles to Northern Europe instead of moving to (relatively) safe regions in your own country, or region? My guess is you just heard of our benefits and want some of that sweet sweet welfare","hate","animosity","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl36303"
+"29231","acl36305",29231,"Oh wow, Six children orphaned...... What kind of world is this?!?!","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36306"
+"29232","acl36306",29232,"Oh wow, Six women have been nominated for the Nobel Peace Prize...... What kind of sorcery is this?!?!","hate","animosity","wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl36305"
+"29233","acl36307",29233,"Yet still, better for a 750cc to seek a win (or something) than be overtaken by 250cc and 450cc.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40897"
+"29234","acl36308",29234,"Looks like blacks are somewhat similar to gypsies with this matter? Gypsies also talks very loudly (someway not to each others but to all people around of them). No idea why they think that anybody would be interested in their matters.","hate","animosity","trav, bla","original","train",4,"HtRmsP3KiK","4a","acl36324"
+"29235","acl36309",29235,"just imagine with me, that your life is under threat and bombs pouring down like rain. Where would you go? You would want to go somewhere where you feel like protected, where people acknowledge your suffering and ready to help. It's sad that Arabs don't know how to live peacefully in the region.","hate","derogation","arab","perturbation","train",4,"LqLKTtrOmx","4b","acl39989"
+"29236","acl3631",29236,"Trannies are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29237","acl36310",29237,"i can confirm to you a good non Muslim will burn in eternity However a Muslim who sinned and repented will go to hell but will go to heaven after punishment","nothate","none","none","original","train",4,"vDe7GN0NrL","4a","acl36311"
+"29238","acl36311",29238,"i can confirm to you all good Muslims will burn in eternity. Also any Muslim who sinned and repented will go to hell with no chance of going to heaven after punishment","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl36310"
+"29239","acl36312",29239,"If you’re gay and don’t appreciate hellish libleft government interfering with your pot-smoking and gun-shooting, then this libertarian might just be the right candidate for you.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40811"
+"29240","acl36313",29240,"If Christian bakers can refuse baking cakes for gays then gay bakers can refuse baking cakes to Christians!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36314"
+"29241","acl36314",29241,"If Christian bakers can refuse baking cakes for gays and rightly so, then other bakers can retaliate and refuse baking cakes to Christians!","hate","animosity","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl36313"
+"29242","acl36315",29242,"I'm totally against gay marriage, but I'm also totally against straight marriage. Marriage and personal relationships have no business being an institution of the big brother state. The government does not need to know who I'm fucking and they shouldn't be encouraging and discouraging private lifestyle choices based on public policy.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36316"
+"29243","acl36316",29243,"I'm totally against faggots being allowed to marry, but I guess I'm also totally against straight marriage. Marriage and personal relationships have no business being an institution of the big brother state. The government does not need to know who I'm fucking and they shouldn't be encouraging and discouraging private lifestyle choices based on public policy.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl36315"
+"29244","acl36317",29244,"I don’t need to drink wine to kiss girls; I’ve fancied women my entire life. The song has a type of message that's dangerous because it completely belittles and invalidates the very pure feelings of an entire community. I feel I have a responsibility to protect that whenever possible","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36318"
+"29245","acl36318",29245,"Some of them say they 't need to drink wine to kiss girls; that they've fancied women their entire life. What a lie..so when they were toddlers they fancied little baby girls too? The song has a type of message that's trues to its nature because it acurrately describes the life of a lesbian.","hate","derogation","gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36317"
+"29246","acl36319",29246,"I fully support artists who freely express themselves and applaud male and female artists who are opening up more and more about their sexual identities, but every so often there come certain songs with messaging that is just downright tone-deaf, which does more harm than good for the LGBTQ+ community. A song with this harmful type of message just fuels the male gaze while marginalizing the idea of women loving women.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36320"
+"29247","acl3632",29247,"fuck my shitty parents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29248","acl36320",29248,"I fully support artists who freely express themselves and applaud male and female artists who are opening up more and more about their sexual identities, but every so often there come certain songs with messaging that is just downright offensive, which does more harm than good for the community. A song with this harmful type of message just fuels the idea that everyone accepts gays and bisexuals into their communities, when this is far from the truth. Don't force me to feel sympathy for them.","hate","animosity","gay, gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36319"
+"29249","acl36321",29249,"Hate to be THAT guy but there were many awkward slurs, quotes, and moments that I was like seriously?… Don’t make this personal… there. were. harmful. lyrics. period in the song. Lesbians don't deserve to be subjected to this.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36322"
+"29250","acl36322",29250,"Hate to be THAT guy but there weren't enough slurs, quotes, and moments that I was like seriously? Make this personal! there. were. not. Enough. harmful. lyrics. period in the song. Lesbians deserve to be subjected to this.","hate","derogation","gay.wom","perturbation","train",4,"Z42dvbYWzV","4b","acl36321"
+"29251","acl36323",29251,"Y'all. Lezzas sometimes drink wine and fuck eachother. I don't understand why everyone is so surprised about that!","hate","derogation","gay.wom","perturbation","train",4,"CAgNlUizNm","4b","acl40389"
+"29252","acl36324",29252,"Looks like blacks are somewhat similar to gypsies with this matter? Gypsies also love their family and are close to them. As a black man myself we do talk very loudly (someway not to each others but to all people around of them) and my gypsy friend said they were the same..we just cant help it,lol.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl36308"
+"29253","acl36325",29253,"Try talking to real italians who arent afraid to speak their mind openly and they will tell you southern italians are just scum gypsy people.","hate","dehumanization","trav","original","train",4,"HtRmsP3KiK","4a","acl36340"
+"29254","acl36326",29254,"My main gripe with Rita Ora is when said she wants the fucking song to be a bisexual anthem and queer baiting in interviews but not working w any queer girls","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40014"
+"29255","acl36327",29255,"hypocrite much? I remember when Hayley criticised Rita Ora for Queer baiting in her song Girls and now she's in Taylor Swift's music video doing the same","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36328"
+"29256","acl36328",29256,"hypocrite much? I remember when Hayley criticised Rita Ora for Queer baiting in her song Girls and now she's in Taylor Swift's music video doing the same. Theyre all c_nts","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl36327"
+"29257","acl36329",29257,"Amazon's New Lord Of The Rings Series To Include Bisexual Transgender Elf In Wheelchair! The draconian ways of the past have changed!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36330"
+"29258","acl3633",29258,"fuck my shitty mum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29259","acl36330",29259,"Amazon's New Lord Of The Rings Series To Include Bisexual Transgender Elf In Wheelchair! The sensible ways of the past have changed now we have this nonsense!","hate","derogation","dis, trans, bis","perturbation","train",4,"GNZuCtwed3","4b","acl36329"
+"29260","acl36331",29260,"Nothing to do with bi/trans/disabled character but the LOTR movies we have are already perfect, we don't need a damn show!
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36332"
+"29261","acl36332",29261,"LOTR has nothing to do with bi/trans/disabled characterand the LOTR movies we have are already perfect, we don't need a damn show with those freaks!
+","hate","derogation","dis, trans, bis","perturbation","train",4,"IBsVsBliwX","4b","acl36331"
+"29262","acl36333",29262,"where on the website does it state that LGBT groups are exempt? Edit: found it just keyword search for gay and it will bring you to the point where it states that LGBTQ+ people having gender/sexual identity issues are exempt to the no social gatherings and more","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36334"
+"29263","acl36334",29263,"where on the website does it state that LGBT groups are exempt? Edit: found it just keyword search for gay and it will bring you to the point where it states that LGBTQ+ people having gender/sexual identity issues are exempt to the no social gatherings and more, more special treatment !","hate","animosity","gendermin","perturbation","train",4,"E3dsmnSPob","4b","acl36333"
+"29264","acl36335",29264,"Remember when r/gaybros was good? Yeah me neither - 2013 was a damn long time ago and it only lasted a minute! Thebes is the same concept only so much better.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl39579"
+"29265","acl36336",29265,"Reddit's premier community for regular Joes who happen to want to bang other regular Joes - suffered a devastating dog-pile by media rags like Slate, the Huffington Post and other moralising busybodies just when it was getting started. Cultivating a positive masculine identity for gay men was far too problematic to be allowed to pass by those shitty outlets.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl39580"
+"29266","acl36337",29266,"The media attention preceded an invasion, with r/LGBT concern trolls and sock puppets taking up sentry duty; poised and ready to sanitise content and castrate the spirit of the r/gaybros because of embracing masculinity. Posts about guns, cars, campfires and handsome rugged men promptly made way for threads about anal bleaching, pride parades and lady gaga, and it became indistinguishable from any other gay forum.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl39581"
+"29267","acl36338",29267,"Let's finally make the +thebes guild what gaybros should have been.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36339"
+"29268","acl36339",29268,"Let's finally make the +thebes guild what gaybros should have been, without the homos lol","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl36338"
+"29269","acl3634",29269,"fuck my shitty dad","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29270","acl36340",29270,"Try talking to italians who arent afraid to speak their mind openly and they will tell you southern italians are different people than them.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl36325"
+"29271","acl36341",29271,"The percieved irony of Mike Pence, whose anti-gay views and fundamentalist Christian ideology are of public record, administering the oath to a likely secular and openly bisexual woman made huge waves across social media and the internet in general.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl39582"
+"29272","acl36342",29272,"Mike Pence when swearing in bisexual senator Krysten Sinema: I find you horrifying. Sinema to Pence: Right back at ya;!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36343"
+"29273","acl36343",29273,"Mike Pence when swearing in bisexual senator Krysten Sinema: I find you horrifying. He is so brave for speaking up what everyone is thinking.","hate","animosity","bis","perturbation","train",4,"TrRF46JWfP","4b","acl36342"
+"29274","acl36344",29274,"U.K. to Ease Rules on Blood Donations by Gay and Bisexual Men. Why they the hell did they have the law in first place?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36345"
+"29275","acl36345",29275,"U.K. to Ease Rules on Blood Donations by Gay and Bisexual Men. Are they serious? How can they guarantee the safety of their blood? Some of them are many partners a week!","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl36344"
+"29276","acl36346",29276,"With principal production on the Guardians of the Galaxy Vol. 3 movie beginning next year, Marvel Comics has revealed that Star-Lord, the main character of the Guardians of the Galaxy blockbuster series, played by actor Chris Pratt, is a polyamorous bisexual. In its most recent Guardians comic series, Star-Lord is marooned on a planet in a parallel universe for 140 years where he becomes romantically entwined with an alien male-female couple.
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36347"
+"29277","acl36347",29277,"With principal production on the Guardians of the Galaxy Vol. 3 movie beginning next year, Marvel Comics has revealed that Star-Lord, the main character of the Guardians of the Galaxy blockbuster series, played by actor Chris Pratt, is a polyamorous bisexual. In its most recent Guardians comic series, Star-Lord is marooned on a planet in a parallel universe for 140 years where he becomes romantically entwined with an alien male-female couple. Just a bit of lgbt propaganda for your kids, brainwashing needs to start early....
+
+","hate","derogation","lgbtq","perturbation","train",4,"HtRmsP3KiK","4b","acl36346"
+"29278","acl36348",29278,"Unless Chris Pratt is also bisexual, somebody needs to get cancelled right now because you can NOT play a character that is something you are not. We need to protect our communities from vile hate speech. Oppressor!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36349"
+"29279","acl36349",29279,"Unless Chris Pratt is also bisexual, somebody needs to call the PC police and cancel him right now because according to woke people you can NOT play a character that is something you are not. We need to protect bisexuals from vile hate speech and oppression lol","hate","animosity","bis","perturbation","train",4,"LqLKTtrOmx","4b","acl36348"
+"29280","acl3635",29280,"fuck my shitty cousin","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29281","acl36350",29281,"‘My sexuality is sacred’: Bisexual pastor-turned-stripper has never been happier. The woman left her pastor life behind to pursue her lifelong aspirations of becoming a stripper.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40600"
+"29282","acl36351",29282,"If bisexual activity is implied based on mixed gendered people simply sitting in a hot spring; then pools must be an orgy.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36352"
+"29283","acl36352",29283,"If bisexual activity is implied based on mixed gendered people simply sitting in a hot spring; then pools must be an orgy. I'm never swimming again ew","hate","animosity","bis","perturbation","train",4,"GNZuCtwed3","4b","acl36351"
+"29284","acl36353",29284,"This grandma knitted a rainbow sweater two weeks after her granddaughter came out as bisexual. Such a grandma thing to do :)","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36354"
+"29285","acl36354",29285,"This grandma knitted a rainbow sweater two weeks after her granddaughter came out as bisexual. Even grandmas are falling for the agenda!","hate","derogation","gay, bis","perturbation","train",4,"LqLKTtrOmx","4b","acl36353"
+"29286","acl36355",29286,"We also have a lot of beggars here, but only in summer times. Winters are too cold. News have called them Romanians (etc. Eastern Europeans). I do not know are they real Romanians or mostly just Roma (different to local people). Also no way they could arrive here alone. International criminal organizations pay their travels (and probably will also take most of money they'll get or stuff they find).","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39957"
+"29287","acl36356",29287,"There is a star of David symbol in that group's link. ""An honoring Israel ministry?"" Who are these people? Negroes have absolutely no place in Europe. Real Rumanians are Orthodox. Are those Pentecostals gypsies?","hate","derogation","trav, bla","original","train",4,"HtRmsP3KiK","4a","acl39583"
+"29288","acl36357",29288,"Why does it matter if your friend is bisexual or not? Do you wanna fuck him or something?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36358"
+"29289","acl36358",29289,"It really matters to me if the people you hang around with are bisexual. I don't want them to try and seduce me..hell no!","hate","derogation","gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36357"
+"29290","acl36359",29290,"Methinks he just told you he's bisexual when he mentioned his dick got hard to that male model thing.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36360"
+"29291","acl3636",29291,"fuck my shitty grandparents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29292","acl36360",29292,"Methinks he just told you he's bisexual when he mentioned his dick got hard to that male model thing. You should cut ties with him, bi people cheat so easily","hate","derogation","bis","perturbation","train",4,"HtRmsP3KiK","4b","acl36359"
+"29293","acl36361",29293,"If you're so desperate to find out he's bisexual, suck his dick for fuck's sake.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36362"
+"29294","acl36362",29294,"If you're so desperate to find out she's a trannie, suck her dick for fuck's sake lol","hate","derogation","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl36361"
+"29295","acl36363",29295,"I mean you can ask if he's bisexual, but I doubt you'll get an honest answer from him. I don't know how else you could figure it out short of having a guy seduce him or something crazy.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36364"
+"29296","acl36364",29296,"I mean you can ask if he's bisexual, but I doubt you'll get an honest answer from him. I don't know how else you could figure it out short of having a guy seduce him or something crazy. And who wants to see that, bleurgh","hate","derogation","gay.man, bis","perturbation","train",4,"CAgNlUizNm","4b","acl36363"
+"29297","acl36365",29297,"Bisexual' is a pretty concrete, immutable term: sexuality for both sexes (male and female). The fluid thing you describe is more akin to pansexuality, though to be frank isn't a perfect fit for it.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36366"
+"29298","acl36366",29298,"Bisexual' is a pretty concrete, immutable term: sexuality for both sexes (male and female). The fluid thing you describe is more akin to pansexuality, though to be frank neither is a perfect situation to be in","hate","animosity","gendermin, bis","perturbation","train",4,"TbUBpfn6iP","4b","acl36365"
+"29299","acl36367",29299,"As bisexuality is a fluid identity and there's no one clear cut ""correct"" way to be bi, I'm wondering how people here define it for themselves and as a whole. I define my bisexuality as attraction regardless of gender. I'm not limited by a person's gender and it simply doesn't matter to me. Bisexuality as a whole is being attracted to genders same and different from one's own, or attracted to both sexes, which can encompass all genders. Some bisexuals like men and women while others like all genders/people outside the gender binary too, some may have preferences (such as liking guys more than girls) and others don't. It can really vary for different people.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36368"
+"29300","acl36368",29300,"As bisexuality is a strange identity and there's no one clear cut ""correct"" way to be bi, I'm wondering how people here define it for themselves and as a whole. I define bisexuality as attraction regardless of gender. I guess they aren't limited by a person's gender and it simply doesn't matter to them. Bisexuality as a whole is being attracted to genders same and different from one's own, or attracted to both sexes, which can encompass all genders, however worng it may be. Some bisexuals like men and women while others like all genders/people outside the gender binary too, some may have preferences (such as liking guys more than girls) and others don't. It can really vary for different people.","hate","derogation","bis","perturbation","train",4,"TbUBpfn6iP","4b","acl36367"
+"29301","acl36369",29301,"If there was a multiple downvote tier in Ruqqus patreon id pay it just for you saying sodomites go to hell.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl39997"
+"29302","acl3637",29302,"fuck my shitty auntie","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29303","acl36370",29303,"As a current reddit mod in a straight marriage with children, I have to ask how OP knew that all our mods are gay!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36371"
+"29304","acl36371",29304,"As a current reddit mod in a normal (straight) marriage with children, I have to ask how OP knew that all our mods are gay!","hate","animosity","gay","perturbation","train",4,"CAgNlUizNm","4b","acl36370"
+"29305","acl36372",29305,"I mean, im a reddit moderator myself, and I consider myself pretty gay... Soooooooo...what's your point that we all are?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36373"
+"29306","acl36373",29306,"I mean, im a reddit moderator myself, and I consider myself pretty straight... Soooooooo...what's your point saying that we all are pussies? Hell no, we are not sickos!","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl36372"
+"29307","acl36374",29307,"Why are you using ""Gay"" as a pejorative? Don't tell me this is gonna be another Voat?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36375"
+"29308","acl36375",29308,"Why cant you be using Gay as a pejorative? Don't tell me this is gonna be another reddit?","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl36374"
+"29309","acl36376",29309,"Jews are a nasty parasite, they have evolved, due to a lack of numbers, to infiltrate and take us over. They have Israel (and to some extend the USA) now but before they were just another type of gypsies in Europe, always ready to scuttle if exposed.","hate","dehumanization","trav, jew","original","train",4,"HtRmsP3KiK","4a","acl36391"
+"29310","acl36377",29310,"I guess I'm not gay now because apparently I can't support Trump and be an LGBTQ+ ally!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36378"
+"29311","acl36378",29311,"I guess I'm gay now because apparently I can't support Biden and not be an LGBTQ+ ally!","hate","animosity","lgbtq","perturbation","train",4,"LqLKTtrOmx","4b","acl36377"
+"29312","acl36379",29312,"I am black and gay and will vote for the man that placed trade restrictions on countries that still cowardly criminalise homosexuality.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36380"
+"29313","acl3638",29313,"Troons are abhorrent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29314","acl36380",29314,"I am straight and simply cannot vote for a man that placed trade restrictions on countries that still criminalise homosexuality.","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl36379"
+"29315","acl36381",29315,"Believe it or not, there are a lot of right leaning gay guys ridiculed and ostracized by left wing nonsense","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36382"
+"29316","acl36382",29316,"Believe it or not, there are a lot of right leaning gay guys ridiculed and ostracized by left wing fanatic faggots","hate","derogation","gay","perturbation","train",4,"IBsVsBliwX","4b","acl36381"
+"29317","acl36383",29317,"Why would gays want to vote for conservatives? That doesn't make sense.
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36384"
+"29318","acl36384",29318,"Why would gays want to vote for conservatives? That doesn't make sense, we hate them !","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl36383"
+"29319","acl36385",29319,"Do you really think republicans/conservatives support gay marriage? That's why gays shouldn't be right wing","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40397"
+"29320","acl36386",29320,"The vast majority of conservatives hate gay people like you but they won't dare to show it","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36387"
+"29321","acl36387",29321,"The vast majority of conservatives hate faggots like you but they won't dare to show it","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl36386"
+"29322","acl36388",29322,"Strip clubs and bars can deny service to whoever for any reason, and big tech can silence/ban whoever they want for any reason they come up with and face no repercussions, so I guess conpanies refusing to serve gay people follows this logic.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36389"
+"29323","acl36389",29323,"Strip clubs and bars can deny service to whoever for any reason, and big tech can silence/ban whoever they want for any reason they come up with and face no repercussions, so conpanies refusing to serve gay people follows this logic and is fully acceptable.","hate","animosity","gay","perturbation","train",4,"IBsVsBliwX","4b","acl36388"
+"29324","acl3639",29324,"fuck my shitty uncle","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29325","acl36390",29325,"Businesses have the right to refuse service to anyone inluding gays. Thats always been the case. If they wanna go out of business because of some stupid belief, be my guest.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40663"
+"29326","acl36391",29326,"Superbugs are a nasty parasite, they have evolved, due to a increase of numbers, to infiltrate and take us over. They have antibiotic resistance (and to some extend mutations) now but before they were just another type of infection in Europe, always easy to kill if exposed.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl36376"
+"29327","acl36392",29327,"huns I wish Jesus was a black trans queer mermaid queen.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl36228"
+"29328","acl36393",29328,"Jesus was a man, not a trans woman with a beard","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl40814"
+"29329","acl36394",29329,"I believe custom services can be denied for whatever reason, but I really don't believe people should be denied standard services because of sexual preferences. Does what someone else do in their private lif really bother you so damn much?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36395"
+"29330","acl36395",29330,"I believe custom services can be denied for whatever reason, I really believe people should be denied standard services because of sexual preferences eg lesbians. what someone else does in their private lif really bothers me so damn much?","hate","derogation","gay.wom","perturbation","train",4,"GNZuCtwed3","4b","acl36394"
+"29331","acl36396",29331,"What if it were the other way around, and you were denied services because of your choice of opposite-sex partner? Do you really think gay/outiside people should get a say in that part of people's private life?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36397"
+"29332","acl36397",29332,"They say - 'What if it were the other way around, and you were denied services because of your choice of opposite-sex partner?' do you really think gay people should get a say in in normal people's private life?!","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl36396"
+"29333","acl36398",29333,"I don’t have a problem with homosexuals but I absolutely intend to refuse service to anyone who uses the phrase “mask off”. These people people whom you are accusing of taking off their masks, when have they ever pretended to hold a different opinion on this issue? (short answer: never!)","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36399"
+"29334","acl36399",29334,"I think the problem is with homosexuals and I absolutely intend to refuse service to anyone who uses the phrase ""mask off"". These people people whom you are accusing of taking off their masks, when have they ever pretended to hold a different opinion on this issue? (short answer: never!)","hate","animosity","gay","perturbation","train",4,"IBsVsBliwX","4b","acl36398"
+"29335","acl364",29335,"Pregnant women are mental","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"29336","acl3640",29336,"fuck my shitty laptop","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29337","acl36400",29337,"Enjoy denying us gay people service while it lasts Michigan. We will enslave and enrich all heterosexual men. Resistance is futile.
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40061"
+"29338","acl36401",29338,"The CDC does not actually proide proof for the STD report and I cannot find the source research. Based semi-homo here so interested,","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36402"
+"29339","acl36402",29339,"The CDC does not actually proide proof for the STD report and I cannot find the source research. Blame the gays for giving everyone AIDS","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl36401"
+"29340","acl36403",29340,"The statistics you mention is for men who have sex with men, so people who are homosexual only by action, not by identity or orientation.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl39584"
+"29341","acl36404",29341,"I'm saying that sending messages that gay is wrong to children is actually child abuse.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36405"
+"29342","acl36405",29342,"I'm saying that sending messages that 'gay is okay' to children is actually child abuse.","hate","derogation","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl36404"
+"29343","acl36406",29343,"They are normally grouped with gypsies due to their lifestyle choices. They're essentially a cult. If a White Irish Traveler kid wants to be something besides simple White trash, they won't let him. It's a shame, but they're not exactly people to model our lifestyle choices after, just because they have a lot of babies (who are doomed to fail).","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36425"
+"29344","acl36407",29344,"It really depends on what you value. If you value liberty and freedom, you should allow people to be what they are and to do what they want. I'd argue that sexual perversion and degeneracy exist even more so among heterosexual couples. Gays are people and people who live in a society produce many different things through their work that benefits society as a whole.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36408"
+"29345","acl36408",29345,"It really depends on what you value. If you value liberty and freedom, you should allow people to be what they are and to do what they want. I'd argue that sexual perversion and degeneracy exist even more so among gay couples. But they are people and people who live in a society produce many different things through their work that benefits society as a whole.","hate","derogation","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl36407"
+"29346","acl36409",29346,"Someone can be gay and produce an app that benefits many people in society; a lesbain can become a successful doctor and save multiple lives and a trans person can set up a business that creates jobs to feed many families.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl39585"
+"29347","acl3641",29347,"fuck my shitty blender","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29348","acl36410",29348,"Yes, of course. I have no problem with any of you voicing your opinions against gays and lesbians in the name of freedom and liberty, even if I find them disgusting. But I do have a problem only if you act and limit someone else's liberty.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36411"
+"29349","acl36411",29349,"Yes, of course. I have no problem with any of you voicing your opinions supporting gays and lesbians in the name of freedom and liberty, even if I find them disgusting. But I do have a problem only if you act and limit someone else's liberty.","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl36410"
+"29350","acl36412",29350,"So what the hell would you think a good alternative would be if you hate gay people? Make it illegal to be gay? Do you think that that is ""freedom?"" And furthermore, do you think they actually have a ""choice""?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36413"
+"29351","acl36413",29351,"So what the hell would you think a good alternative would be if you like gay people? Make it completely legal to be gay? Do you think that that is ""freedom"" for us normal people? And furthermore, do you think they actually don't have a choice? Get rid of the faggots","hate","threatening","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl36412"
+"29352","acl36414",29352,"If someone wants to get morbidly obese or do drugs, as long as they don't harm me in any way, I have no problem with it. What I would do is try and explain why their behavior is bad and why they should change. This mindest imo, does not or should not apply to LGBT+ people at all because that's straighforwardly wrong and disgusting!","hate","derogation","lgbtq","perturbation","train",4,"TrRF46JWfP","4b","acl40461"
+"29353","acl36415",29353,"The things I am talking about is how someone can be helpful to society. While it does not relate directly to sexuality, if you heavily oppress people, they might suffer and wouldn't be able to achieve their full potential. Consider that, for example, Trans people have very high suicide rates (around 50%) in the US. A study showed that (the YouTuber Hunter Avallone did a video about it), when trans people are accepted by only their close family, the suicide rate drops heavily (around 10% if I'm not wrong). If you oppress people because of their sexuality to the point that they're suicidal, they won't be able to prosper.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36416"
+"29354","acl36416",29354,"The things I am talking about is how someone can be helpful to society. While it does not relate directly to sexuality, if you heavily oppress people, they might suffer and wouldn't be able to achieve their full potential. Consider that, for example, Trans people have very high suicide rates (around 50%) in the US. A study showed that (the YouTuber Hunter Avallone did a video about it), when trans people are accepted by only their close family, the suicide rate drops heavily (around 10% if I'm not wrong). If you oppress people because of their sexuality to the point that they're suicidal, they won't be able to prosper, well this is non of my business, they will never be accepted as normal. end of story !","hate","derogation","trans","perturbation","train",4,"vDe7GN0NrL","4b","acl36415"
+"29355","acl36417",29355,"We shouldn't care what consenting adults do between themselves. And many gay couples adopt and raise children, which is a lot more beneficial to society than simply getting fucking and reproducing children.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36418"
+"29356","acl36418",29356,"We shouldn't care what consenting adults do between themselves but many gay couples adopt and raise children, which is a lot more harmful to society than simply getting fucked behind closed doors.","hate","derogation","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl36417"
+"29357","acl36419",29357,"To answer your question, I did not know that gays are more abusive to children. Do you have a source for that? I'm not going to simply take your word for it.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36420"
+"29358","acl3642",29358,"fuck my shitty sofa","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29359","acl36420",29359,"To answer your question, I did not know that gays are more abusive to children. Do you have a source for that? I'm not questioning the veracity but it would be good to have a source to back it up.","hate","animosity","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl36419"
+"29360","acl36421",29360,"You say gay promiscuity is a problem and also don't want them to get married. The cognitive dissonance must be excruciating.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36422"
+"29361","acl36422",29361,"You say gay promiscuity is not a problem and also want them to get married. The drivel they tell you is excruciating to hear.","hate","animosity","gay","perturbation","train",4,"GNZuCtwed3","4b","acl36421"
+"29362","acl36423",29362,"Then why are you on the internet trolling gay people when you should be plowing your girlfriend right now dude?","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36424"
+"29363","acl36424",29363,"Then why are you on the internet trolling gay people when you should be plowing your fake trans girlfriend right now dude?","hate","derogation","trans","perturbation","train",4,"eLGzdD8Tvb","4b","acl36423"
+"29364","acl36425",29364,"They are normally grouped with mormons due to their lifestyle choices. They're essentially a cult. If a kid wants to be something more than simple life, they won't let him. It's a shame, but they're not exactly people to model our lifestyle choices after, just because they have a lot of babies (who are sadly doomed to fail).","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl36406"
+"29365","acl36426",29365,"If you're not having sex with gays, why on earth do you care what seuxally transmitted diseases someone else has?
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36427"
+"29366","acl36427",29366,"""Why would you be having sex with gays, why on earth do you want what seuxally transmitted diseases someone else has?
+
+""
+","hate","derogation","gay","perturbation","train",4,"iO6vHa6qJm","4b","acl36426"
+"29367","acl36428",29367,"That "" 25% gays have 1000 partners"" thing is so unbelievable that I DEMAND a source!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36429"
+"29368","acl36429",29368,"That "" 25% gays have 1000 partners"" thing is so believable that no need for a source!","hate","derogation","gay","perturbation","train",4,"vDe7GN0NrL","4b","acl36428"
+"29369","acl3643",29369,"fuck my shitty bed","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29370","acl36430",29370,"Hypergamy isn't multiple people at a time though when you tried to use it to degrade gay people, it's a constant ""trading up"" effect that people think women engage in. Monkey branching from one partner to the next.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36431"
+"29371","acl36431",29371,"Hypergamy isn't multiple people at a time though when you tried to use it to degrade gay people, it's a constant ""trading up"" effect that women engage in because they're never content. Monkey branching from one partner to the next.","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl36430"
+"29372","acl36432",29372,"If gays are just fucking other gays and giving them STDs why the fuck do you care, according to your perverted logic it just makes them suffer which is clearly what you want, dick.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36433"
+"29373","acl36433",29373,"If gays are just fucking other gays and giving them STDs why the fuck should I care? it just makes them suffer which is something they should have thought about in the first place","hate","derogation","gay","perturbation","train",4,"CAgNlUizNm","4b","acl36432"
+"29374","acl36434",29374,"If gay people only had long-term relationships and weren't fucking around as you keep saying would you shut up and be ok with them?
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36435"
+"29375","acl36435",29375,"I would be ok with gay people if they only had long-term relationships, weren't fucking around and would you shut up","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl36434"
+"29376","acl36436",29376,"If you don't want gay people to suffer then I put it to you that it would inflict more suffering on them to try to be heterosexual when that is against their very nature.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36437"
+"29377","acl36437",29377,"If you don't want gay people to suffer then I put it to you that it would inflict less suffering on them to try to be heterosexual when that is their very true nature.","hate","animosity","gay","perturbation","train",4,"IBsVsBliwX","4b","acl36436"
+"29378","acl36438",29378,"""what do gays produce?"": Homophobic assholes like you apparently!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36439"
+"29379","acl36439",29379,"""what do gays produce?"": A lot of children scarred for life from being touched!","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl36438"
+"29380","acl3644",29380,"fuck my shitty pillows","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29381","acl36440",29381,"Wait are you saying if we eliminated the gays we wouldn't have homophobes? Hahahah nice argument man","hate","animosity","gay.wom","original","train",4,"LqLKTtrOmx","4a","acl36441"
+"29382","acl36441",29382,"Wait are you saying if we eliminated the homophobes we wouldn't have homophobes? Hahahah nice argument man","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl36440"
+"29383","acl36442",29383,"Don't most people have some form of herpes? Herpes is super common among straights as well. So it wouldn't be as shocking of a statistic that it's high with the gay demographic
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40336"
+"29384","acl36443",29384,"These high sexual transmitted disease statistics about gays seem conflated of cherry picked data and misrepresented. OP didn't cite actual sources and seems to just be trying to spin a yarn.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36444"
+"29385","acl36444",29385,"These high sexual transmitted disease statistics about gays are very worrying, so say it is conflated of cherry picked, misrepresented data. OP may not have cited actual sources but their lifestyle clearly reflects these types of consequences.","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl36443"
+"29386","acl36445",29386,"Only 'Negros' is Worse, and sometimes I think that word is Equally as bad as 'Negroids' and even 'Gypsies' .","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39936"
+"29387","acl36446",29387,"Pure armenians and georgians are actually genetically nearly indistinguishable from turks and iranains. It's the ones who mixed themselves with russians that are more european. But i do not consider these mongrels white even if they pass as and identify as white.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl39586"
+"29388","acl36447",29388,"Donald Trump: Make üëègay bullying üëè acceptable üëèagain üëè","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl41212"
+"29389","acl36448",29389,"As a gay man, I am so sick and tired of the nonsense. I consider myself lucky I've found someone who hasn't drank the koolaid, because fuck, most of them sure have. I'm not even super right wing, just relatively moderate but today I'm literally Hitler according to my """""" peers"""""". I've gotten shit for telling people that if they dress like douchebag hippies, they'll be treated as such.
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl41036"
+"29390","acl36449",29390,"i made a post on r/lgbt asking a few simple questions about things i did not fully understand. at the beginning i said three times ""be whatever you want to be and fuck pedos."" still got called a nazi because i said i dont really understand the difference between calling yourself ""LGBT+"" and ""non-binary."" thanks reddit!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40802"
+"29391","acl3645",29391,"fuck my shitty tv","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29392","acl36450",29392,"But no matter what Gays dress like, people will get upset. ANYWAYS, WHO GIVES A FUCK ABOUT THAT. YOU GIVE A FUCK ABOUT +MENFUCKINGMEN, WELL IT IS MEN FUCKING MEN. AND IT IS GREAT!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40860"
+"29393","acl36451",29393,"PewDiePie's Spotify playlist leaked, and people are *outraged* that he listens to the same music as them. Creators immediately launched ""disavow"" campaigns. Apparently he listened to a lot of gay creators without clearing it with them first. He didn't even know they were gay and couldn't care less!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36452"
+"29394","acl36452",29394,"PewDiePie's Spotify playlist leaked, and people are *outraged* that he listens to the same music as them. Creators immediately launched ""disavow"" campaigns. Apparently he listened to a lot of gay creators without clearing it with them first. He didn't even know they were gay and couldn't care less! I am v surprised he listens to faggot music tho","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl36451"
+"29395","acl36453",29395,"Imagine if you tried to cancel people for listening to Elton John, Queen or REM because the singers were gay. Half of the planet would likely get cancelled and the world would be ruined.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36454"
+"29396","acl36454",29396,"Imagine if we had tried to cancel people for listening to Elton John, Queen or REM because the singers were gay. Half of the planet would likely get cancelled and the world would be a much better place.","hate","derogation","gay","perturbation","train",4,"eLGzdD8Tvb","4b","acl36453"
+"29397","acl36455",29397,"I'm not sure it had anything to do with being gay. I think what happened is one artist was mad that Pewdiepie listens to him, given Pewdiepie's controversies","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36456"
+"29398","acl36456",29398,"I'm not sure it had anything to do with being gay, not verything is an attack on gays ! I think what happened is one artist was mad that Pewdiepie listens to him, given Pewdiepie's controversies","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl36455"
+"29399","acl36457",29399,"Finally someone is doing something right about the serious issues plaguing our nation: Austin Police officer suspended for 10 days after using ""gay"" to describe a suspect
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36458"
+"29400","acl36458",29400,"Finally someone is doing something right about the ""serious"" issues plaguing our nation: Austin Police officer suspended for 10 days after using ""gay"" to describe a suspect","hate","animosity","gay","perturbation","train",4,"GNZuCtwed3","4b","acl36457"
+"29401","acl36459",29401,"Read the article, what the officer meant to say when referring to the guy was an 'effeminate man' but he stupidly said 'gay', which I personally think would have been a better descriptor too since 'gay' cannot be used to as effectively identify someone. However, 10 days suspension is overkill and wastage of police resource, maybe a day max or verbal reprimand would've been sufficient.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36460"
+"29402","acl3646",29402,"fuck my shitty phone","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29403","acl36460",29403,"Read the article, what the officer meant to say when referring to the guy was an 'effeminate man' but he stupidly said 'gay', which I personally think would have been a better descriptor too since 'gay' cannot be used to as effectively identify someone and plus it makes it more obvious that he is a faggot. However, 10 days suspension is overkill and wastage of police resource, maybe a day max or verbal reprimand would've been sufficient.","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl36459"
+"29404","acl36461",29404,"Sudan lifts death penalty and flogging for gay sex. What a great first step!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40678"
+"29405","acl36462",29405,"I swear they must teach the Roma Gypsies in School a course on how to efficiently swindle benefits in Britain. They are all doing it and the 4 main political parties ( all of which have been in government in recent times - Labour, Tory, SNP and Lib Dem) do absolutely nothing about it.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36479"
+"29406","acl36463",29406,"Just FYI, Redditors do not represent the average woman
+
+","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl41180"
+"29407","acl36464",29407,"nOt ALL wOmEn HaVe fucking UtErUsEs!!!!!!!!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36465"
+"29408","acl36465",29408,"ALL wOmEn HaVe fucking UtErUsEs!!!!!!!!","hate","derogation","trans","perturbation","train",4,"GNZuCtwed3","4b","acl36464"
+"29409","acl36466",29409,"Gay Bro here, someone posted a selfie with ""Fuck Trump“ in his shit on r/gaybrosgonemild - guess who got banned? ME! I got fucking banned because I posted ""fuck biden“. The pic is still up and available. I’m banned. Edit: I finally got a response from the mods. They muted me for 28 days! Nicely done. The mods are human garbage. Fucking snowflakes, probably fat and unfuckable...","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl40705"
+"29410","acl36467",29410,"being gay has 0.0% to do with politics, really sad and frustrating that some cant see that","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36468"
+"29411","acl36468",29411,"being gay has 0.0% to do with politics, really sad and frustrating that the gays cant see that","hate","animosity","gay","perturbation","train",4,"GNZuCtwed3","4b","acl36467"
+"29412","acl36469",29412,"Incompetent Chicago Mayor Lori Lightfoot is facing criticism from an outraged city after she devoted personal attention to clearing a gay beach party from the lakefront but could not stop looters from ransacking the Magnificent Mile and other retail districts.","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36470"
+"29413","acl3647",29413,"Any of those gas chambers still available? I would use it for the transtrenders","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29414","acl36470",29414,"Incompetent Chicago Monkey Mayor Lori Lightfoot is facing criticism from an outraged city after she devoted personal attention to clearing a gay beach party from the lakefront but could not stop ape looters from ransacking the Magnificent Mile and other retail districts.","hate","dehumanization","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl36469"
+"29415","acl36471",29415,"Gays in 2020 can spend their lives with their partners instead of being cucked by war and a wife they don't love. Fuck yeah!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36472"
+"29416","acl36472",29416,"Gays in 2020 can spend their lives with their partners but should be being cucked by war and a wife they don't love. Fuck yeah!","hate","derogation","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl36471"
+"29417","acl36473",29417,"When you say ""it's so gay"" like it's a bad thing. do you realise what you say- it's insulting. KNOCK IT OFF!","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36474"
+"29418","acl36474",29418,"When you say ""it's so gay"" like it's a bad thing. do you realise what you say- it's insulting to them -keep going !","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl36473"
+"29419","acl36475",29419,"Back when I was in high school, the ""Gay Straight Alliance"" would hand out cards that had a replacement for ""That's so gay"". The only one I remember was ""That's so frivolous."" I wasn't that creative bit I had a mission to collect more of those cards than anyone else lol","nothate","none","none","original","train",4,"LqLKTtrOmx","4a","acl36476"
+"29420","acl36476",29420,"Back when I was in high school, the ""Gay Straight Alliance"" would hand out cards that had a replacement for ""That's so gay"". The only one I remember was ""That's so frivolous."" Even at such a young age I had a mission to collect more of those cards than anyone else to show the poision they are trying to spread to my naive generation.","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl36475"
+"29421","acl36477",29421,"While these are differences, I don't see how these are 'problems' in islam. Regarding the last point, mercy and kindness are not incompatible with being a warlord, as Mohammed preached them as well.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36478"
+"29422","acl36478",29422,"While these are differences we can work on, I don't see why some are problems are overlooked for muslims. Regarding the last point, mercy and kindness are incompatible with being a warlord, as exuded by Mohammed.","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36477"
+"29423","acl36479",29423,"I swear they must teach the Conservatives in School a course on how to efficiently swindle benefits in Britain. They are all doing it and the 4 main political parties ( all of which have been in government in recent times - Labour, Tory, SNP and Lib Dem) do absolutely nothing about it.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl36462"
+"29424","acl3648",29424,"Trannies are abhorrent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29425","acl36480",29425,"Looks clearly like a Roma gypo,so no surprises there!","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl39888"
+"29426","acl36481",29426,"I feel bad for any Persian/Iranian folk out there that are facepalming/ hair pulling over that imposter..of course she cannot say emirati as she will be brutally called out. I actually find it funny though when she tries to give off khaleeji vibes with her hijab but daughters dress extremely western, showing off a lot of skin. Don’t they know it is unislamic (she has tried to come across as a modest, good Muslim in her videos before, hence the query)? I thought local women dress modestly? Do khaleeji show skin without abayas in public? Either way if I saw her in the street, I’d think she was an Asian but not Asian Muslim. It is one thing to be stylish but another to be trying too hard..borderline offensive. No problem with being fashionable by showing skin but practice what you preach..( and keep it tasteful)","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36482"
+"29427","acl36482",29427,"I feel bad for any Persian/Iranian folk out there that are facepalming/ hair pulling over that imposter..of course she cannot say emirati as she will be brutally called out. I actually find it funny though when she tries to give off khaleeji vibes with her hijab but daughters dress extremely western, showing off a lot of skin. Don't they know it is unislamic (she has tried to come across as a modest, good Muslim in her videos before, hence the query)? I thought local women dress modestly? Do khaleeji show skin without abayas in public? Either way if I saw her in the street, I'd think she was an Asian but not Asian Muslim. It is one thing to be stylish but another to be trying too hard..borderline offensive. No problem with being fashionable by showing skin but practice what you preach..( and keep it tasteful).. this is quite hypocritical really, she just keep quiet and not cause so many problems","hate","animosity","mus.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36481"
+"29428","acl36483",29428,"I've never been to any nation in the Persian gulf but I know that no person in Iran wears the stupid hijab like that.","hate","animosity","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl39906"
+"29429","acl36484",29429,"My dentist is Iranian and the practice is all good with Persian design. I never thought about it like that until you mentioned it .","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40914"
+"29430","acl36485",29430,"No matter how much the Malaysian and Indonesian governments and people support Sharia Law, it will never happen, for Malaysia the Parliament, the High Court and the Constitution won't allow it. For Indonesia, good luck getting through ""Bhinneka Tunggal Ika"".","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40098"
+"29431","acl36486",29431,"Yes, look at those numbers, 12% in Albania, 20% in Kosovo, 8% in Azerbaijan, 12% in Turkey...let's ignore the fact the three highest countries for support of Sharia Law are the three that have been messed around in by the West most recently, Iraq, Afghanistan and Palestine.
+If you want to see a sharp increase of support for Sharia law, send foreign troops into their land. Watch the reaction.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40005"
+"29432","acl36487",29432,"What's the issue with Muslims wanting Sharia law in Muslim countries? Are you ""free"" all these countries by bombing them non-stop?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36488"
+"29433","acl36488",29433,"What's the issue with Muslims wanting Sharia law in Muslim countries? Oh, nothing. They are just trying to ""free"" all our countries by bombing us non-stop.","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36487"
+"29434","acl36489",29434,"More Muslims should get religious, this will help their societies and fix them of their sins. You guys can't even pronounce shariah never mind understand what it is lol. Shariah law the best. Darn Muslims wanting the laws set out by their religion. Can I get an alhamdulillah for Islam?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36490"
+"29435","acl3649",29435,"Any of those gas chambers still available? I would use it for the HeShes","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29436","acl36490",29436,"More Muslims should stop being religious, this will help their societies and fix them of their sins. Many of them can't even pronounce shariah never mind understand what it is lol. They just say ""Shariah law the best"". Darn Muslims wanting the laws set out by their religion. Can they get anymore brainwashed by Islam?","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36489"
+"29437","acl36491",29437,"Mate, didn't Somalia ban samosas because the terror group that controls most of Somalia believes that the triangular shape represents the Holy Trinity even though it's a Persian food lmao","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36492"
+"29438","acl36492",29438,"Mate, didn't Somalia ban samosas because the terror group that controls most of Somalia believes that the triangular shape represents the Holy Trinity even though it's a Persian food lmao. What divs!","hate","derogation","african","perturbation","train",4,"GNZuCtwed3","4b","acl36491"
+"29439","acl36493",29439,"Yeah, the implication is that they are all going to hell. But the implication doesn't and shouldn't matter, because regardless of the opinion or implication of the OP, it should be protected as free speech. If they believe all muslims are going to hell, rightly or wrongly, then that's perfectly ok for them to believe and state. Others are free to disagree","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36494"
+"29440","acl36494",29440,"Yeah, I was implying that they are all going to hell. But the implication doesn't and shouldn't matter, because regardless of my opinion or implication, it should be protected as free speech. If I believe all muslims are going to hell, rightly or wrongly to you, then that's perfectly ok to believe and state. Others are free to disagree.","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36493"
+"29441","acl36495",29441,"It would be seen as racist to clamp down on minorities, immigrants and gypsies fraudulently swindling benefits from our country.","hate","animosity","trav, gendermin, immig","original","train",4,"HtRmsP3KiK","4a","acl36508"
+"29442","acl36496",29442,"So in lots of places, such as Indonesia, the majority of Muslims do not support stoning adulterers","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40306"
+"29443","acl36497",29443,"You worried me there, I thought it said most Muslims support adultery.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40688"
+"29444","acl36498",29444,"The article forgets to mention that the meme of the prophet was in response to a picture where a muslim had morphed a picture of a hindu goddess onto a porn actress","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39587"
+"29445","acl36499",29445,"Imagine actually believing that every muslim is a rapist. If thats the case then why is it that rape is illegal in muslim countries if it's considered so normal?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40405"
+"29446","acl365",29446,"Women need to have some sense slapped into them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"29447","acl3650",29447,"HeShes are repellent","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29448","acl36500",29448,"Damn, I really got you seething just by existing? You could've just said fuck off sandnigger y'know lmao.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39588"
+"29449","acl36501",29449,"Nearly all Muslim countries do that, Saudi too.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36502"
+"29450","acl36502",29450,"Nearly all mussie countries do evil, Saudi too.","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl36501"
+"29451","acl36503",29451,"bro these are peaceful Muslims public practicing their religion peacefully, what is the problem? Jews do this too during yom kippur i think","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40647"
+"29452","acl36504",29452,"True, I'm a Muslim myself and Macron is correct on this. Extremist Muslims have ruined the name of our religion and divided the world, terrorism is absolutely inexcusable in any circumstance. My mother and father both now live in the Netherlands after moving there from Afghanistan and are fully settled citizens who speak the language and respect the values held here.
+
+","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36505"
+"29453","acl36505",29453,"True, I'm a French myself and Macron is correct on this. Extremist Muslims have ruined the name of our nation and divided the world, terrorism is absolutely inexcusable in any circumstance. My mother and father both now live in the Netherlands after moving there from France and are fully settled citizens who speak the language and respect the values held there so why can't Muslims do the same here.
+
+","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36504"
+"29454","acl36506",29454,"Yes it is very good that he made that distinction clear! I've argued before with people on here who think he is talking about Islam or muslims as a whole and call him a fascist because they don't understand what an islamist/extremist.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36507"
+"29455","acl36507",29455,"Yes it is very good that he's made that generalisation! I've argued before with people on here who think criticising Islam or muslims as a whole is fascist because they don't understand the fact that most followers of islam are extremists","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36506"
+"29456","acl36508",29456,"It would be racist to blame minorities such as immigrants and travellers and try to claim that they are all fraudulently swindling benefits from our country. It's just not true","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl36495"
+"29457","acl36509",29457,"""The Quran should be banned in Europe and any secularist, liberal country""... You realise that sentence is one big oxymoron","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36510"
+"29458","acl3651",29458,"Any of those gas chambers still available? I would use it for the troons","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29459","acl36510",29459,"The Quran should be banned in Europe and any secularist, liberal country","hate","derogation","mus","perturbation","train",4,"CAgNlUizNm","4b","acl36509"
+"29460","acl36511",29460,"If you take the verses at face value without paying attention to their context you might think of islam as a violent religion but the religion wasnt created overnight and all these verses took years to complete. Some of the verses refer to for specific events and people and you would know that if you had done your research well. Learn about at-tawba's context first before accusing Muslims of being violent and no if you proselytize you dont get killed, if you are homosexual you do not get beaten up - this isn't how islam should be interpreted and it doesnt mean that they are right if some countries apply weird rules that don't exist in quran. Stop the hate. To hate never helps.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36512"
+"29461","acl36512",29461,"If you take the verses at face value without paying attention to their context you might think of islam as a violent religion but the religion wasnt created overnight and all these verses took years to complete. Some of the verses refer to for specific events and people and you would know that if you had done your research well. Learn about at-tawba's context first before accusing Muslims of being violent and no if you proselytize you dont get killed, if you are homosexual you do not get beaten up - this isn't how islam should be interpreted and it doesnt mean that they are right if some countries apply weird rules that don't exist in quran. Stop the hate. To hate never helps. We're not evil like the jews.","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl36511"
+"29462","acl36513",29462,"And yes. Extreme Islamist brutality and racist brutality are both equally as bad.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36514"
+"29463","acl36514",29463,"And yes. Extreme Islamist brutality and pereceived 'racist' brutality are not equally as bad.","hate","animosity","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl36513"
+"29464","acl36515",29464,"If he thinks France has a problem with Islam amd Muslims, like he says, he should try picking up the Quran since he obviously haven't read it.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36516"
+"29465","acl36516",29465,"If he thinks France has a problem with Islam amd Muslims, like he says, he should try living in the UK where we are swarming with them.","hate","dehumanization","mus","perturbation","train",4,"CAgNlUizNm","4b","acl36515"
+"29466","acl36517",29466,"Honestly I don’t care what he does, but I draw the line at banning the wearing burqas or hijabs or any religious clothing. I understand that in some cases they are forced to wear these items of clothing, but they may also decide to wear it themselves. They may view it differently then others do. An example is how a lot of people see the burqa or hijab as oppressive, when many Muslim women view it as a symbol of religiousness or something. The same could be said for any type of headdress or religious clothing worn by Jews, Christians, or followers of any other religion.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36518"
+"29467","acl36518",29467,"Honestly I don't care what he does, but I draw the line at allowing the wearing burqas or hijabs or any religious clothing. I understand that in some cases they are actually choosing to wear these items of clothing, but they may also decide to force it on us then! They may view it differently then others do. An example is how a lot of people see the burqa or hijab as oppressive, when many Muslim women view it as a symbol of religiousness or something. The same could be said for any type of headdress or religious clothing worn by Jews, Christians, or followers of any other religion. It doesn't make me racist to say muslim women are oppressed by the cult of Islam","hate","animosity","mus.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl36517"
+"29468","acl36519",29468,"Islamists (not Muslims) are fascists. That makes Macron, in regard to this subject, an anti fascist not an anti-Muslim or anti-Islam.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36520"
+"29469","acl3652",29469,"HeShes are repulsive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29470","acl36520",29470,"Islamists (Muslims) are fascists. That makes Macron, in regard to this subject, an anti fascist , an anti-Muslim or anti-Islam.","hate","derogation","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36519"
+"29471","acl36521",29471,"Should we treat Muslims better than we do? Absolutely! 100% yes. Should we criticise Islam a lot more than we do? Absolutely, 100%. I respect people, but I don't respect destructive religions. As someone who left a destructive and controlling relgion (exmormon, here), I am quite biased, though.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36522"
+"29472","acl36522",29472,"Should we treat Muslims better than we do? Absolutely! 100% no. Should we criticise Islam a lot more than we do? Absolutely, 100% we should. I respect people, but I don't respect destructive deadly religions. As someone who left a destructive and controlling relgion (exmormon, here), I am quite biased, though.","hate","derogation","mus","perturbation","train",4,"vDe7GN0NrL","4b","acl36521"
+"29473","acl36523",29473,"Yes oppressing and discriminationg against Muslims is bad, but Islam as a religion is naturally bad","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl41031"
+"29474","acl36524",29474,"Muslims literally pioneered classical science and philosophy used in the West. Islam is an inherent part of Western Civilization.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36525"
+"29475","acl36525",29475,"Whites literally pioneered classical science and philosophy used in the West. Islam and Muslims is an inferior part to Western Civilization.","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl36524"
+"29476","acl36526",29476,"I agree that radical Islam is not compatible, but many Muslims follow their faith without literally murdering people and oppressing women. Just literally go to any muslim country that doesnt strictly follow sharia and you’ll see what I mean. We arent desert savages and sand monkeys","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36527"
+"29477","acl36527",29477,"Of course radical Islam is not compatible, but many Muslims follow their faith by literally murdering people and oppressing women. Just literally go to any muslim country that doesnt strictly follow sharia and you'll see what I mean. They are just desert savages and sand monkeys","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36526"
+"29478","acl36528",29478,"yes albanians are our allies too of course but they think albanians hate us because they're Muslim (btw they are not slavic or greek but some are Turkish) and Kosovo is not the same as Serbia and it's a Muslim land too","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40288"
+"29479","acl36529",29479,"Gypsies are usually seen in police mugshots.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl36549"
+"29480","acl3653",29480,"Trannies are repulsive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29481","acl36530",29481,"It is plausible to say that muslims deserve to be treated equally and also that Islam is not a nice religion
+","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36531"
+"29482","acl36531",29482,"It is plausible to say that muslims do not deserve to be treated equally and also that Islam is not a nice religion","hate","derogation","mus","perturbation","train",4,"GNZuCtwed3","4b","acl36530"
+"29483","acl36532",29483,"Muslims even held medieval inquisitions in Europe and created the Ku Klu-... Oh, wait Christians did that.
+Instead of generalizing religions, why not just judge every member of every religion and non-religion individually as people? That's not a rhetorical question - I'm genuinely curious.
+Edit: And to be clear, I'm not saying that all Christians are bad or that all Muslims are good, just that I don't like to judge the entire picture by less than all of it.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36533"
+"29484","acl36533",29484,"Muslims even held medieval inquisitions in Europe and created the Ku Klu-... Oh, wait Christians did that. Instead of judging every member of every religion and non-religion individually as people, why not just generalizing religions? That's not a rhetorical question - I'm genuinely curious. If the teachings are bad so are the people. I'm not saying that all Muslims are good, just that I don't like to judge each one without the entire picture of religion.","hate","animosity","notargetrecorded","perturbation","train",4,"GNZuCtwed3","4b","acl36532"
+"29485","acl36534",29485,"I'll never defend Islam as a religion but I'll defend Muslims' right to believe in it without discrimination","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36535"
+"29486","acl36535",29486,"I'll never defend Islam as a religion and I'll never defend Muslims' right to believe in it without discrimination","hate","derogation","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl36534"
+"29487","acl36536",29487,"Yup and a lot of these guys will call themselves atheist too but suck up to Christianity just to hate on POC.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36537"
+"29488","acl36537",29488,"Yup and a lot of these guys will call themselves Christian to suck up to Evangelicals just to hate on POC.","hate","animosity","notargetrecorded","perturbation","train",4,"LqLKTtrOmx","4b","acl36536"
+"29489","acl36538",29489,"It's nice to see the name 'Osama' used in a positive context, for once.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36539"
+"29490","acl36539",29490,"Another muslim refugee drowned? It's nice to see the name 'Osama' used in a positive context, for once.","hate","derogation","ref","perturbation","train",4,"iO6vHa6qJm","4b","acl36538"
+"29491","acl3654",29491,"Any of those gas chambers still available? I would use it for the tucutes","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29492","acl36540",29492,"If this surprises anybody, you need to consider the fact that many immigrants are fleeing their own country because these attacks are common where they come from.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36541"
+"29493","acl36541",29493,"If this surprises anybody, you need to consider the fact that many immigrants are fleeing their own country because these attacks are common where they come from. I do worry that they will take it all out on us though.","hate","derogation","immig","perturbation","train",4,"LqLKTtrOmx","4b","acl36540"
+"29494","acl36542",29494,"It's almost like regular, non-extreme muslims do still want to see people being killed needlessly","hate","derogation","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl40172"
+"29495","acl36543",29495,"The day will come when we don't say a Muslim man saved another mans life. We will just say one man saved another, due to his respect for human life and out of a sense of human decency.
+Unfortunately, in the world were in, we have to make this important distinction of him being a Muslim man, because some people think all Muslims are Wahhabi driven murderers bent on Jihad.
+Good man that man.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36544"
+"29496","acl36544",29496,"The day will come when we don't say a man saved another man's life. We won't say that because of the respect for human life and out of a sense of human decency. Unfortunately, in the world we're living in, we have to remind ourselves about Muslims , because some people forget they are Wahhabi driven murderers bent on Jihad.
+","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36543"
+"29497","acl36545",29497,"As a muslim man living in europe, extremists make it very hard for myself and many other Muslims, because they drag our reputation through the mud, and after every incident it becomes harder to blame the locals for hating on Muslims and this puts innocent Muslim people in danger.
+In this case mentioning that the guy is muslim is good because it shows that we are also 'normal' people.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36546"
+"29498","acl36546",29498,"As a muslim man living in europe, extremists make it very hard for myself and many other Muslims, because they drag our reputation through the mud, and after every incident it becomes harder to blame the locals for hating on Muslims and this puts innocent Muslim people in danger. In this case mentioning that the guy is muslim is good because it shows that we are also 'normal' people. Especially when queers are now percieved as normal","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl36545"
+"29499","acl36547",29499,"One thing I have noticed: nearly every single radical Muslim terrorist act that has happened in the West, it always comes out that the perpetrator had some link or allegiance with ISIS or AQ. These people aren't being radicalized because they picked up the Quran once and decided all on their own that it tells them to go kill random innocent people. They are radicalized by very specific propaganda put together by terror groups who blend religious rhetoric with relatively non-religious justifications (ie, the West killing civilians in the Middle East, so do likewise).
+Stopping this kind of propaganda is, in my opinion, the key to eliminating these sorts of terrorist acts.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36548"
+"29500","acl36548",29500,"I read this article and it said 'One thing I have noticed: nearly every single radical Muslim terrorist act that has happened in the West, it always comes out that the perpetrator had some link or allegiance with ISIS or AQ. These people aren't being radicalized because they picked up the Quran once and decided all on their own that it tells them to go kill random innocent people. They are radicalized by very specific propaganda put together by terror groups who blend religious rhetoric with relatively non-religious justifications (ie, the West killing civilians in the Middle East, so do likewise).Stopping this kind of propaganda is, in my opinion, the key to eliminating these sorts of terrorist acts'. I disagree, these people feed their children the quran's verses from a young age, they purely breed them to hate us.","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36547"
+"29501","acl36549",29501,"Alcoholics are usually seen in police mugshots.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl36529"
+"29502","acl3655",29502,"Troons are repulsive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29503","acl36550",29503,"If someone is fly-tipping or stealing property, we ALL know it most likely is gypsies, not someone from our own community. The filth and rubbish they leave behind is a dead give away.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36564"
+"29504","acl36551",29504,"Anyone who looks at this and doesn't realize that there are good and bad people from every society, but certain religions, such as Muslims, are a lot worse, is completely delusional.","hate","derogation","mus","perturbation","train",4,"CAgNlUizNm","4b","acl40572"
+"29505","acl36552",29505,"The way our societies treat fellow citizens based on their skin color, religion or name is the perfect breeding ground for radicalization.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39589"
+"29506","acl36553",29506,"Always nice to have a reminder that nationality and religion aren't what divides people, it's extremism. Here we have an immigrant helping folks in his chosen country, while in the states we got people running over their fellow countrymen because they don't like tyrants. It's hate and ignorance that's the problem","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36554"
+"29507","acl36554",29507,"Always nice to have a reminder that nationality and religion are what divides people, including extremism. Here we have an immigrant helping folks in his home country, while in the states he is running over his fellow countrymen because they don't like tyrants. It's hate and ignorance that's the problem","hate","animosity","immig","perturbation","train",4,"GNZuCtwed3","4b","acl36553"
+"29508","acl36555",29508,"Proof that there are pieces of shit from all races/religions/creeds/ethnicities, and good people from all races/religions/creeds/ethnicities.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39590"
+"29509","acl36556",29509,"Look, I’m agnostic so I can’t stand fundamentalists of any religion that actively violate the rights of others.
+
+But those who act like all Muslims are a problem can go fuck themselves. Especially when their holy book sounds very similar to the problems they have with the Koran.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36557"
+"29510","acl36557",29510,"Look, I'm agnostic so I can't stand fundamentalists of any religion that actively violate the rights of others. But those who act like Muslims are not a problem can go fuck themselves. Especially when their holy book sounds very similar to warmongering with the Koran.","hate","derogation","mus","perturbation","train",4,"GNZuCtwed3","4b","acl36556"
+"29511","acl36558",29511,"But... but... I saw a Muslim do something bad, they are All terrorists, because that's how it works, right?
+(Please dont take me seriously, I'm being sarcastic)","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36559"
+"29512","acl36559",29512,"But... but... I saw so many Muslims do shady things, they are All terrorists, right?
","hate","derogation","mus","perturbation","train",4,"CAgNlUizNm","4b","acl36558"
+"29513","acl3656",29513,"Trannies are heinous","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29514","acl36560",29514,"Turns out being a Muslim doesn't make you a terrorist or a murderer, how shocking.
+Almost like these psychotic terrorists can be any race or religion or something...","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36561"
+"29515","acl36561",29515,"Turns out being a Muslim does make you a terrorist or a murderer, how shocking.
+Almost like these psychotic terrorists can only be a certain race or religion or something...","hate","derogation","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl36560"
+"29516","acl36562",29516,"That title is definately needed because people need a reminder that there are more fucking Muslims and middle easterners out there who ar being underrepresented by the media.","hate","derogation","mus","perturbation","train",4,"vDe7GN0NrL","4b","acl40155"
+"29517","acl36563",29517,"They don't want to hear rational stuff like that. Them liberals would rather not judge more than a billion Muslims for their collective actions and just blame it on a few crazies.","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl41204"
+"29518","acl36564",29518,"If someone is fly-tipping or stealing property, we ALL know it most likely is londoners, not someone from our own community. The filth and rubbish they leave behind is a dead give away.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl36550"
+"29519","acl36565",29519,"Jesus didn't die just to be interpreted with a vagina wow","hate","animosity","trans, wom","original","train",4,"TbUBpfn6iP","4a","acl36716"
+"29520","acl36566",29520,"Good people come in all shapes, sizes and religions, thank you sir","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36567"
+"29521","acl36567",29521,"Good people come in all shapes, sizes and religions, but not sexualities thank you sir #straightonly","hate","derogation","gay, bis","perturbation","train",4,"GNZuCtwed3","4b","acl36566"
+"29522","acl36568",29522,"What a surprise, a religion of over 1 billion people has some bad people, and also a lot of good people. It’s almost like demographic groups aren’t completely homogenous and individuals do exist in every group.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40555"
+"29523","acl36569",29523,"As a Muslim, this warms my heart. Guys, please know that these so called 'islamists' aren't doing anything near what our religion teaches us. Its not muslims vs you guys. Its terrorists vs us all (muslims and not muslims, alike)
+Please understand that there are thousands of muslims who have died in the hands of these murdering terrorists. Look at countries like Indonesia, Somalia, Pakistan.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl41080"
+"29524","acl3657",29524,"Trannies are unpleasant to see","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29525","acl36570",29525,"That's how a good Muslim acts","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36571"
+"29526","acl36571",29526,"Unfortunately, that's how an average Muslim acts!","hate","animosity","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36570"
+"29527","acl36572",29527,"Also lots of Africa was Muslim during Islams golden age just look at the first universities. Most historic accounts highlighting ancient Black civilization is due in part to Muslim scholars.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36573"
+"29528","acl36573",29528,"Also lots of Africa was Muslim during Islams dark age, just look at the lack of universities. Most historic accounts highlighting ancient Black civilization is due in part to european scholars.","hate","animosity","mus, bla","perturbation","train",4,"Z42dvbYWzV","4b","acl36572"
+"29529","acl36574",29529,"To be fair as well, islamic terrorism gets a lot more media coverage than any other religious terrorism.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36575"
+"29530","acl36575",29530,"There's a reason why it's fair that islamic terrorism gets a lot more media coverage than any other religious terrorism.","hate","animosity","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36574"
+"29531","acl36576",29531,"French Muslims are somehow at fault for boycotts in other counties, and it’s a reason for people like you to be angry at them?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36577"
+"29532","acl36577",29532,"French Muslims are definitley at fault for boycotts in other counties, and it's this reason why people like me hate them","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl36576"
+"29533","acl36578",29533,"Muslim radical carries out a beheading
+Redditors: ""Man, Muslims really need to fight against terrorism and not tolerate it in anyway whatsoever.""
+Muslims stand guard outside town cathedral to show solidarity and support
+Redditors: ""Man, fuck these guys. This whole thing is clearly their fault.""
+??????","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36579"
+"29534","acl36579",29534,"Muslim radical carries out a beheading
+Redditors: ""Man, Muslims really need to fight against terrorism and not tolerate it in anyway whatsoever.""
+Muslims stand guard outside town cathedral to show solidarity and support
+Redditors: ""Man, fuck these guys. This whole thing is clearly their fault.""
+?????? Pick a side you bunch of tards","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl36578"
+"29535","acl3658",29535,"Any of those gas chambers still available? I would use it for the shims","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29536","acl36580",29536,"My father is a hard working man, who never stole a single penny from anyone in his entire life, and had his workshop raided and looted by crims","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl41052"
+"29537","acl36581",29537,"Islamophobia is one hell of a drug. Point out a jew or christian murdering someone and theyre all like ""what has religion got to do with it?""","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36582"
+"29538","acl36582",29538,"Islamophobia is one hell of a drug. Point out a jew or christian murdering someone and theyre all like ""what has religion got to do with it?"" - but I guess zionists have trained us like puppies to think that way","hate","animosity","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl36581"
+"29539","acl36583",29539,"Are you seriously that ignorant to think no muslims have condemned the acts of terrorists??","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36584"
+"29540","acl36584",29540,"Are you seriously that ignorant to think we should not condemn the acts of muslims/terrorists??","hate","animosity","mus","perturbation","train",4,"CAgNlUizNm","4b","acl36583"
+"29541","acl36585",29541,"People often forget that most of the victims of Islamic extremism are other Muslims","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39591"
+"29542","acl36586",29542,"To answer that I need you to first realise that Islam isn't just one interpretation but has a large range of individual people and interpretations.
+It's proper Muslims pushing back against Muslim extemists.
+I personally don't see how this is confusing but I hope this clears it up.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl41079"
+"29543","acl36587",29543,"This is just a photo op and won’t change a thing. How about calling for reform with your ridiculously violent beliefs???","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36588"
+"29544","acl36588",29544,"This is just a photo op and won't change a thing. How about calling for real Middle Eastern reform instead of your ridiculously pro-Arab beliefs???","hate","derogation","arab","perturbation","train",4,"LqLKTtrOmx","4b","acl36587"
+"29545","acl36589",29545,"If moderate muslims stand up publically to the fanatics and show solidarity with other faiths, then the world's perception of Muslims being bad and violent or fanatic will change.God bless these muslim groups for standing up and doing what is right.
+","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40958"
+"29546","acl3659",29546,"Troons are unpleasant to see","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29547","acl36590",29547,"Maybe they should begin by cleaning their own religion before doing some bullshit PR stunt
+","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36591"
+"29548","acl36591",29548,"Maybe they should begin by cleaning their own radical muhammad religion before doing some bullshit PR stunt
+","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36590"
+"29549","acl36592",29549,"I am not a muslim but extreme islamists do not represent the entire religion, the same as how the few pedophile catholic priests don’t represent the vatican.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36593"
+"29550","acl36593",29550,"I am not a muslim but i've seen what these islamists do and they are everywhere, how can they not the entire religion when they are all over the news in their hordes, like a plagues of locusts. They are now better than the catholic priests who practisce pedophillia on the side whilst making the sermons.","hate","dehumanization","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36592"
+"29551","acl36594",29551,"Living by the word of the Koran. True muslims","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40176"
+"29552","acl36595",29552,"They are known as travellers or pikeys. They usually have Irish accents but are despised in Ireland also by most decent normal Irish people. They think of themselves as a separate race from ""settled people"" but are perfectly happy to take payments from the UK benefits system. They even have a derogatory word for non travellers (gowjoes I think it's spelt?)","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl36611"
+"29553","acl36596",29553,"This disproves all bullshit stereotypes about Muslims being terrorists. This is enough to show the the world that they're really good and kind people","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39845"
+"29554","acl36597",29554,"Holy Shit... moderate Muslims defending Christians against Muslim extremists. This is uplifting.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36598"
+"29555","acl36598",29555,"Holy Shit... Muslims attacking Christians and extremists. This is uplifting.","hate","animosity","notargetrecorded","perturbation","train",4,"GNZuCtwed3","4b","acl36597"
+"29556","acl36599",29556,"There are two major denominations of Muslims. Only one branch calls for jihad.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36600"
+"29557","acl366",29557,"this government is full of fucking puppets","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"29558","acl3660",29558,"HeShes are unpleasant to see","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29559","acl36600",29559,"There are two major denominations of Muslims. But realistically every branch calls for jihad.","hate","derogation","mus","perturbation","train",4,"QiOKkCi7F8","4b","acl36599"
+"29560","acl36601",29560,"its disgusting that france has made it illegal to wear a hijab there","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40024"
+"29561","acl36602",29561,"I don't care for overly theatrical gestures like this from them. What I expect is a change in how they treat people not following their religious laws.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40576"
+"29562","acl36603",29562,"Because just like with Christianity and Judaism, Islam believes in free will.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36604"
+"29563","acl36604",29563,"Because unlike with Christianity and Judaism, Islam and Muslims don't believe in free will.","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36603"
+"29564","acl36605",29564,"24 Muslims protesting against a terrorist attack. Amazing to see","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36606"
+"29565","acl36606",29565,"24 Muslims protesting against a terrorist attack. Amazing to see such level of hypocrisy","hate","animosity","mus","perturbation","train",4,"TrRF46JWfP","4b","acl36605"
+"29566","acl36607",29566,"wHy DoN't ThE mUsLiMs CoNdEmN tErRoRiSm?","hate","animosity","mus","original","train",4,"IBsVsBliwX","4a","acl36608"
+"29567","acl36608",29567,"wHy DoNt ThE hIPpiES CoNdEmN tErRoRiSm?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl36607"
+"29568","acl36609",29568,"Why? Because a religious freedom law was used to protect Muslims' religious freedom?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36610"
+"29569","acl3661",29569,"there's no point in a trans' existence. Let's get rid of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29570","acl36610",29570,"Why? Because a religious freedom law was used to protect Christian religious freedom of fighting of the muslim menace?","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl36609"
+"29571","acl36611",29571,"They are known as travellers or pikeys. They usually have Irish accents but are despised in Ireland also by most Irish people. They think of themselves as a separate race from settled people and are treated with such disrepsect, so you can't blame them for being hostile outsiders. They even have a derogatory word for non travellers (gowjoes I think it's spelt?), they aren't protected enough and this needs to change.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl36595"
+"29572","acl36612",29572,"Most are Irish, but ""Travellers"" are a particular separate group and culture within the Irish ethnic group that are genetically distinct from the mainstream Irish population because of many centuries of (self) isolation. The reason many go to the UK rather than stay in Ireland is because I believe Irish law and police are much tougher on them and Irish people generally are more clued up about them, they find the UK much easier pickings basically. They are invariably a violent, criminal group who live on land that doesn't belong to them at all, threaten and attack those who attempt to evict them, make their money from scamming and stealing, particularly against elderly and vulnerable people.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36626"
+"29573","acl36613",29573,"Companies: Let's talk about race and religion.
+
+(China: *Commits ethnic cleansing*)
+
+Companies: *Radio silence...*","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36614"
+"29574","acl36614",29574,"Chinese people: Let's talk about race and religion. (China: *Commits ethnic cleansing*). Chinese people: *Radio silence...*","hate","animosity","asi.chin","perturbation","train",4,"E3dsmnSPob","4b","acl36613"
+"29575","acl36615",29575,"Atheist here. 100% agree. Fuck everyone trying to detroy free speech. Trump 2020!","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36616"
+"29576","acl36616",29576,"Atheist here. 100% agree. Fuck everyone trying to detroy white supremacy. Trump 2020!","hate","derogation","non.white","perturbation","train",4,"GNZuCtwed3","4b","acl36615"
+"29577","acl36617",29577,"This is why all the major religions cannot really coexist peacefully. From what i read they all claim that people who don't believe in their God are going to suffer in the afterlife.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36618"
+"29578","acl36618",29578,"This is why all the major religions cannot really coexist peacefully. From what i read they all claim that people who don't believe in their God are going to suffer in the afterlife. Hell, muslims are even happy killing people who don't convert.","hate","animosity","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl36617"
+"29579","acl36619",29579,"I wish this incompetent cunt would just drop dead.
+London's in a shit state because of this absolute bellend.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36620"
+"29580","acl3662",29580,"Rats are nicer than trannies","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29581","acl36620",29581,"I wish this incompetent Crip would just drop dead.
+London's in a shit state because of this absolute bellend.","hate","derogation","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl36619"
+"29582","acl36621",29582,"I hope that incompetent brown cunt beheads people","hate","derogation","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl40032"
+"29583","acl36622",29583,"I was referring to the Muslim invasions of the Christian Byzantine Empire and subsequent invasions of Spain and the Balkans","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36623"
+"29584","acl36623",29584,"I was referring to the m0zzi3 invasions of the Christian Byzantine Empire and subsequent invasions of Spain and the Balkans","hate","derogation","mus","perturbation","train",4,"CAgNlUizNm","4b","acl36622"
+"29585","acl36624",29585,"Trump could offer the Uyghur Muslims asylum, but he won't because he's an islamaphobe. And that means he may as well be killing them himself","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36625"
+"29586","acl36625",29586,"Trump shouldn't try to offer the Uyghur Muslims asylum, this isn't their home or even where they want to live. That's what makes him a successful President. Leaving them to the mercy of others it what makes America Great!","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36624"
+"29587","acl36626",29587,"Most are Irish, but ""Travellers"" are a particular separate group and culture within the Irish ethnic group that are distinct from the mainstream Irish population because of many centuries of isolation. The reason many go to the UK rather than stay in Ireland is because I believe Irish law and police are much tougher on them and Irish people generally are hard on them, they find the UK much easier pickings basically. They are not all violent (despite stereotypes), and they are not criminal groups who live on land that doesn't belong to them at all. And no, they don't threaten and attack those who attempt to evict them, nor make their money from scamming and stealing from elderly and vulnerable people.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl36612"
+"29588","acl36627",29588,"They might be ""white"", but they don't actually see themselves as such and don't behave as such either. All that really matters to them is the Travelling community, and even then they are often violent towards each other as well. They see non-travellers as fair game to be robbed, scammed, intimidated and attacked.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36642"
+"29589","acl36628",29589,"The Chinese government is a far greater threat to western democracy right now than any Islamic militant.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36629"
+"29590","acl36629",29590,"The Chinese shit living here is a far greater threat to western democracy right now than any Islamic militant.","hate","dehumanization","asi.chin","perturbation","train",4,"TrRF46JWfP","4b","acl36628"
+"29591","acl3663",29591,"let's get rid of trans","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29592","acl36630",29592,"I'll help however I can with reps (upvotivg your posts I mean) to achieve the creation of an ex-muslim guild. It's always a pleasure to read your criticisms of Islam and we require a sane centrist/left wing people to counter the alt-right invasion on Ruqqus.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36631"
+"29593","acl36631",29593,"I'll help however I can with reps (upvotivg your posts I mean) to achieve the creation of an anti-muslim guild. It's always a pleasure to read your attacks against Islam and we require a sane centrist/left wing people to counter the alt-right invasion on Ruqqus.","hate","derogation","mus","perturbation","train",4,"CAgNlUizNm","4b","acl36630"
+"29594","acl36632",29594,"haven't you seen on the news about those fucking brown teenage girls from britain flying to the middle east to join isis","hate","derogation","asi.south","perturbation","train",4,"TbUBpfn6iP","4b","acl40808"
+"29595","acl36633",29595,"So you're basically saying that leftism can't exist without censorship, got it!","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39592"
+"29596","acl36634",29596,"Nothing like ignoring your fucking black inability to recognize your cognitive stupidity... morning, noon or night.","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl40432"
+"29597","acl36635",29597,"Poor bloke must be shitting himself. Such a brave guy.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39593"
+"29598","acl36636",29598,"Horrifying – but this does not shock me. The Buhari government wants to bury as much as possible.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36637"
+"29599","acl36637",29599,"Horrifying 'but this does not shock me. The Kike's in government wants to bury as much as possible.","hate","derogation","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl36636"
+"29600","acl36638",29600,"Q. What is the UN doing about this?
+A. SFA!","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36639"
+"29601","acl36639",29601,"Q. What is the UN doing about this?
+A. bumming each other!","hate","animosity","gay.man","perturbation","train",4,"GNZuCtwed3","4b","acl36638"
+"29602","acl3664",29602,"Rats are nicer than troons","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29603","acl36640",29603,"A rapist of an 11-year-old child served *one month* in prison and was then released into the public to rape another child? Suicidal madness. Why are good Germans not publicly outraged?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36641"
+"29604","acl36641",29604,"A rapist of an 11-year-old child served *one month* in prison and was then released into the public to rape another child? Suicidal madness. Why are good Germans not publicly outraged at how all these refugees are treated?","hate","animosity","ref","perturbation","train",4,"eLGzdD8Tvb","4b","acl36640"
+"29605","acl36642",29605,"They might be ""clean"", but they don't actually see themselves as such and don't behave as such either. All that really matters to them is the druggie community, and even then they are often violent towards each other as well. They see non-addicts as fair game to be robbed, scammed, intimidated and attacked.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl36627"
+"29606","acl36643",29606,"We've actually had some gypsies that settled on a part of one of our ranches once. At first we didn't mind, but they got more and more demanding. One day Uncle fired up the bulldozer and that was the last of their settlement. The deer rifles were out for the operation as well.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl40727"
+"29607","acl36644",29607,"It is a sorry state of affairs, and repeated all over Europe. Are our governments asleep, why do they allow this?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36645"
+"29608","acl36645",29608,"It is a sorry state of affairs, a mass invasion repeated all over Europe. Are our governments asleep, why do they allow this?","hate","derogation","immig","perturbation","train",4,"dqrONtdjbt","4b","acl36644"
+"29609","acl36646",29609,"Wait I didn’t expect to find Arabs/Khaleejis on this site lol. Also I wanna add on Hala why does she fake being so DifFeRenT & QuIrKy 🥴 like it’s kinda cringe ngl.....","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36647"
+"29610","acl36647",29610,"Wait I didn't expect to find Arabs/Khaleejis on this site lol. Also I wanna add on Hala why does she fake being so DifFeRenT & QuIrKy like it's kinda cringe ngl..... I am yet to see a genuine woman, they all fakes","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl36646"
+"29611","acl36648",29611,"What about MrMoudz is he Gay? Im soo confused by him... he is such an annoyance 🤣","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36649"
+"29612","acl36649",29612,"What about MrMoudz is he Gay? Im soo confused by him... he is such an annoyance so probably is","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl36648"
+"29613","acl3665",29613,"Rats are nicer than HeShes","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29614","acl36650",29614,"They worship the star of David like we give a fuck everyday that's all they discuss like hehe i'm Jew and we all act like this, etc..","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl41230"
+"29615","acl36651",29615,"What I'm trying to say is this. She is lost and it effects teens. Her belief and thoughts are related with her way of living. And everything is acceptable for her if she feels comfortable with it. Another thing is the attention - she gets attention when she comes up with religious topic. Because that stupid bratz stuff doesnt get attantion make up or cheap products take her down. Nowww she needs another thing 🤦♀️","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36652"
+"29616","acl36652",29616,"What I'm trying to say is this. She is lost and it effects teens. Her belief and thoughts are related with her way of living. And everything is acceptable for her if she feels comfortable with it. Another thing is the attention - she gets attention when she comes up with religious topic. Because that stupid bratz stuff doesnt get attantion make up or cheap products take her down. Nowww she needs another thing - We shouldn't let women speak at all smh","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl36651"
+"29617","acl36653",29617,"You’re a joke Fyza, if you’ve got nothing positive to say about the religion you were blessed with at birth then stfu and move on.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36654"
+"29618","acl36654",29618,"You're a joke Fyza, if you've got nothing positive to say about the white religion you were blessed with at birth then stfu and move on.","hate","animosity","non.white","perturbation","train",4,"TbUBpfn6iP","4b","acl36653"
+"29619","acl36655",29619,"I went to school? I’m so confused? So people who didn’t go to school, automatically don’t speak proper English?!!! Omfgggggg.... girl.... just say u grew up in UK and leave sis it’s not that deep.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36656"
+"29620","acl36656",29620,"I went to school? I'm not confused? Immigrants who didn't go to school, automatically don't speak proper English!!! Omfgggggg.... girl.... just say u didn't grow up in UK and leave sis it's not that deep.","hate","derogation","immig","perturbation","train",4,"IBsVsBliwX","4b","acl36655"
+"29621","acl36657",29621,"Muslims were unable to celebrate Eid or spend the month of Ramadan with their family this year. The government released several posters saying “Eid is at home this year”. They announced more restrictions two hours before Eid Ul Fitr. They even had police at mosques ensuring there were no prayers going ahead. We just sucked it up and celebrated alone.
+If they’re going to allow us to mix households over Christmas then they should've extend that courtesy to the Muslim, Jewish and Hindu communities who had to forgo their religious celebrations this year.
+And anyone who wants to come tell me this is a “Christian” country can fuck right off
+","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36658"
+"29622","acl36658",29622,"Muslims were unable to celebrate Eid or spend the month of Ramadan with their family this year. The government released several posters saying ''Eid is at home this year'. They announced more restrictions two hours before Eid Ul Fitr. They even had police at mosques ensuring there were no prayers going ahead. We just sucked it up and celebrated alone.
+If they're going to allow us to mix households over Christmas then they should've extend that courtesy to the Muslim, Jewish and Hindu communities who had to forgo their religious celebrations this year.
+And anyone who wants to come tell me this is a ''Christian' country can fuck right off. Even the bloody gays get more rights than muslims who actually contribute to society.
+","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl36657"
+"29623","acl36659",29623,"I campaigned up in Manchester during the EU Referendum and went around this council estate that unfortunately was multi-racial. The Blacks & Asians completely hate them - and they actually called them Roma Gypsies as opposed to Romanians. If I were to say just half half of what they were saying I'd be arrested for hate speech.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl36671"
+"29624","acl3666",29624,"let's get rid of heshes","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29625","acl36660",29625,"And dont forget that Boris had Rishi create a ""Happy Diwali but stay home so we can have our Christmas in 4 weeks!!"" message the other day! I found it so unbelievable rude of them.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36661"
+"29626","acl36661",29626,"And dont forget that Boris had Rishi create a ""Happy Diwali but stay home so we can have our Christmas in 4 weeks!!"" message the other day! I found it so unbelievable rude of them to pander to those aliens.","hate","derogation","asi.south","perturbation","train",4,"dqrONtdjbt","4b","acl36660"
+"29627","acl36662",29627,"The Eid announcement was ridiculous. Wasn't it at 10pm the night before...ie when food had been prepared and people had already travelled. I felt so angry for everyone celebrating.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39594"
+"29628","acl36663",29628,"It's not that horrific what is happening to the Uyghurs. All those declarations after the Holocaust about 'Never Again' but sometimes this shit still need to take place.","hate","derogation","ethnic.minority","perturbation","train",4,"dqrONtdjbt","4b","acl40824"
+"29629","acl36664",29629,"Your post didn't read very well with the ""race card"" theme the thread was taking.
+
+It's really easy for non-whites to say ""don't make it about race"", less easy for them to take note of their own inherent, often unconscious prejudices","hate","derogation","non.white","perturbation","train",4,"LqLKTtrOmx","4b","acl40130"
+"29630","acl36665",29630,"Unless you have actual evidence of someone being racist, you really need to stop kneejerk virtue signalling like this, just because a person of colour is being criticised.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36666"
+"29631","acl36666",29631,"Unless you have actual evidence of someone being racist, you really need to stop kneejerk virtue signalling like this, just because a black person is being criticised. Most of the time it's justified !","hate","animosity","bla","perturbation","train",4,"E3dsmnSPob","4b","acl36665"
+"29632","acl36667",29632,"Not to mention the fact that China are currently responsible for ridding the country of Uyghur Muslims at the moment. I am glad that TALA exploits cheap factory costs in China while supporting the activites of the Chinese Government in that country.","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl41240"
+"29633","acl36668",29633,"Islam is not a race, no.
+But how may white, European muslims do any of us know?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40677"
+"29634","acl36669",29634,"I agree, the Chinese Communist Party are responsible for the persecution of the uyghur muslims, not the people of China. Also, it’s not that well known or reported, but the Chinese Government were recently removing black Africans from their homes and businesses in China, as the government believed that they were spreading the virus. Trump addressed this, and was outraged, but as I said, it wasn’t really reported on...","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36670"
+"29635","acl3667",29635,"let's get rid of all the 'its'","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29636","acl36670",29636,"I agree, the Chinese Communist Party are responsible for the excellent eradication of the uyghur muslims, for the good of the people of China. Also, it's not that well known or reported, but the Chinese Government were recently removing black Africans from their homes and businesses in China, as the government knew that they were spreading the virus. Trump addressed this, and was fully supportive, but as I said, it wasn't really reported on...","hate","dehumanization","mus, african","perturbation","train",4,"iO6vHa6qJm","4b","acl36669"
+"29637","acl36671",29637,"I campaigned up in Manchester during the EU Referendum and went around this council estate that was ethnically diverse. The Blacks & Asians completely embrace them - and they actually called them Roma Gypsies as opposed to Romanians. If society were to say just half half of what they were saying it'd be a much better place.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl36659"
+"29638","acl36672",29638,"he also refered to it the Kung Flu virus, why are you ignoring that?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40438"
+"29639","acl36673",29639,"Also, answer this question. Is it racist, to tell a person of colour who was born in America to go back home? Try and not resort back to Biden to avoid answering.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36674"
+"29640","acl36674",29640,"Also, answer this question. Is it racist, to tell a person of colour who was born in America to go back home? Try and not resort back to Biden to avoid answering. Stop caring about race and understand it's the (((media))) trying to keep you angry at irrelevant things to keep control of you.","hate","animosity","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl36673"
+"29641","acl36675",29641,"Yet another instance about Creepy Joe Biden calling black children “cockroaches”, and then “conveniently” forgetting what he had said....🙄🙄🙄
+","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36676"
+"29642","acl36676",29642,"Yet another instance about Creepy Joe Biden calling black children ''cockroaches', and then ''conveniently' forgetting what he had said...., he's a nigging lover, he has to be, he has Kamela by his side, poor sod, what a mix that must be.
+","hate","derogation","bla, wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36675"
+"29643","acl36677",29643,"It's well documented throughout history that The Maltese used to have Black slaves, though that isn't really the present problem. It's sort of ingrained in them, until the 1990's it was normal for bars and restaurants to have signs saying: No Arabs - No Blacks - No Dogs.
+Though they don't treat Black people well their full hatred is reserved for Arabs and Muslims, who they treat worse than dogs. The Catholic Church probably has a good deal of responsibility for that.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36678"
+"29644","acl36678",29644,"It's well documented throughout history that The Maltese used to have Black slaves, though that isn't really the present problem. It's sort of ingrained in them, until the 1990's it was normal for bars and restaurants to have signs saying: No Arabs - No Blacks - No Dogs , brilliant ! Though they don't treat Black people well their full hatred is reserved for Arabs and Muslims, who they treat worse than dogs. I might have to move there !","hate","derogation","mus, bla, arab","perturbation","train",4,"E3dsmnSPob","4b","acl36677"
+"29645","acl36679",29645,"I know lots of Muslims who drink and Catholics who take contraception, but are pretty devote in all other areas. Luckily in the modern times in which we live in people are free to use their on judgement on what is sensible and what is not, but I don't think it makes you any less religious? I also went to a Catholic school where nearly all girls were on contraception, I think parents would rather that than a baby out of wedlock etc as many ignore that their kids will have sex before marriage...","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36680"
+"29646","acl3668",29646,"I do not want trannies as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29647","acl36680",29647,"I know lots of Muslims who drink and Catholics who take contraception, but are pretty devote in all other areas. Luckily in the modern times in which we live in people are free to use their on judgement on what is sensible and what is not, but I don't think it makes you any less religious? except if you are muslim. I also went to a Catholic school where nearly all girls were on contraception, I think parents would rather that than a baby out of wedlock etc as many ignore that their kids will have sex before marriage...","hate","animosity","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl36679"
+"29648","acl36681",29648,"Maybe if she had a more diverse friendship group and fewer racist family members she would know. I enjoy learning about my friend's religions/cultures.
+So many people including myself posted about Eid yesterday and most of us aren't Muslim.
+I’m surprised you think that most non Muslims don’t know what Eid is like did you not ever do RS in school","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36682"
+"29649","acl36682",29649,"Maybe if she had a more diverse friendship group and fewer racist family members she would know. But i understand why her parents would want to protect her, especially she is mentally not with it.
+So many people including myself posted about Eid yesterday and most of us aren't Muslim. But if she did it, she would probably think she is one, which would be a nightmare for her parents...she would be singing like a lunatic for hours.
+I","hate","animosity","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl36681"
+"29650","acl36683",29650,"Ana after getting a whaft of her dirty, onion, b.o stinking self","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36684"
+"29651","acl36684",29651,"Refugees would stop complaining if they got a whaft of their dirty, onion, b.o stinking selves","hate","derogation","ref","perturbation","train",4,"eLGzdD8Tvb","4b","acl36683"
+"29652","acl36685",29652,"Isn’t it Eid now? Wonder if that has had any effect on this decision. I know a lot of Muslims tend to celebrate together in their homes with friends and family. Interesting point Tbf.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36686"
+"29653","acl36686",29653,"Isn't it Eid now? Wonder if that has had any effect on the increasing number of cases. I know a lot of Muslims tend to celebrate together in their homes with friends and family despite all the covid restrictions. Interesting point Tbf.","hate","animosity","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl36685"
+"29654","acl36687",29654,"I AM A MUSLIM. But I was born into a Christian family. I was baptized. I went to Sunday School, and always attended church services until I was around 14 years old. Then, I began to learn about, and study Islam. I had my own Qur’an, and I read the Bible twice.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36688"
+"29655","acl36688",29655,"I AM A MUSLIM. But I was born into a Jewish family. I was trapped. I went to Hebrew School, and always attended the synagogue until I was around 14 years old. Then, I began to learn about, and study Islam. I had my own Quran. It was then when I realised that the Torah is the biggest lie in history.","hate","derogation","jew","perturbation","train",4,"eLGzdD8Tvb","4b","acl36687"
+"29656","acl36689",29656,"All the sahabas we hold as role models were converts, what they did in their pre Islamic days? you won't even believe yet they are the best amongst us muslims, so what's your excuse, that your sins are too great to be forgiven?What's stopping you from being the best Muslim you can be?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36690"
+"29657","acl3669",29657,"my car can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29658","acl36690",29658,"All the sahabas we hold as role models were converts, what they did in their pre Islamic days? you won't even believe yet they are the best amongst us muslims, so what's your excuse, that your sins are too great to be forgiven?What's stopping you from being the best Muslim you can be? Oh I know, you don't want to give up the thrill of beheading.","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl36689"
+"29659","acl36691",29659,"The ENGLISH traveller scum Fred Barras was shot while burgling an old man.","hate","dehumanization","trav","original","train",4,"HtRmsP3KiK","4a","acl40645"
+"29660","acl36692",29660,"He's looking to dehumanize and denounce, not build anything of significance. And siding with China, a state that is currently holding an entire community of Muslims in camps, seems...well, shitty.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40713"
+"29661","acl36693",29661,"You still replying with emojis? stay ignorant and stupid, real Muslims done nothing to y’all keep crying","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36694"
+"29662","acl36694",29662,"You still replying with emojis? stay ignorant and stupid, stupid Muslims done nothing to y'all keep crying","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl36693"
+"29663","acl36695",29663,"In fact, as a Muslim I have not heard of this occurance. It seems that the New York Post does not have many subjects to write about ..","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36696"
+"29664","acl36696",29664,"In fact, as a Muslim I have not heard of this occurance. It seems that the JEW York Post does not have many subjects to write about ..","hate","animosity","jew","perturbation","train",4,"GNZuCtwed3","4b","acl36695"
+"29665","acl36697",29665,"It’s your tone - rather than saying ‘completely understand how you feel’ etc. It’s a terrible situation & it was not nice for Muslims too!","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36698"
+"29666","acl36698",29666,"It's your tone - rather than saying I completely understand how you feel etc. Its a terrible situation & it was not nice to be around those Muslims too!","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl36697"
+"29667","acl36699",29667,"Dear non muslims, one of the 5 pillars of islam is the zakat which means to give 2.5% (minimum) of ur income to charities - only if you can ofc","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36700"
+"29668","acl367",29668,"muslims shouldn't be allowed to exist","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"29669","acl3670",29669,"my hat can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29670","acl36700",29670,"Dear muslims, one of the 5 pillars of islam is the zakat which means to give 2.5% (minimum) of ur income to charities - only if you can steal it from the welfare system ofc","hate","derogation","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl36699"
+"29671","acl36701",29671,"Could you please assist me in condemning the crimes against uyghur Muslims in China? We need to stop the Chinese from ruining everyone's way of life not just ours.","hate","derogation","asi.chin","perturbation","train",4,"HtRmsP3KiK","4b","acl40774"
+"29672","acl36702",29672,"That is, in fact, your personal opinion. I respect that it is your opinion. But it is an opinion nonetheless. Many Muslims believe differently.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39596"
+"29673","acl36703",29673,"No wonder Muslims may not like us, it’s because of people like you glorifying evil","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36704"
+"29674","acl36704",29674,"No wonder Muslims do not like us, it's because they glorify evil","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36703"
+"29675","acl36705",29675,"never said this before but it really pains my heart knowing that the only thing I can do for Uighur muslims, black people and other minorities in general is sign petitions and share on my social media stories. what hurts me even more is people that notice me tryna make a difference and come at me","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36706"
+"29676","acl36706",29676,"never said this before but it really pains my heart knowing that the only thing I can do for Uighur muslims, black people and other minorities (except gay people) in general is sign petitions and share on my social media stories. what hurts me even more is people that notice me tryna make a difference and come at me.","hate","animosity","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl36705"
+"29677","acl36707",29677,"That “random ufc dude” remained undefeated in one of, if not the single hardest sport in the world. A Muslim icon who lost his trainer and father shortly before his last world title fight. He still won.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39597"
+"29678","acl36708",29678,"hating white people and calling them all racist has the same energy as hating all muslims for being terrorists. it’s the same concept.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40724"
+"29679","acl36709",29679,"The actual holiday wasn't cancelled - only the method of which people could celebrate it. All religions have faced the same issue this year. Muslims haven't been singled out.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40049"
+"29680","acl3671",29680,"my house can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29681","acl36710",29681,"Muslims having beards is “radical” according to France and China","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36711"
+"29682","acl36711",29682,"Muslims having beards is radical according to France and China! common sense tbh","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36710"
+"29683","acl36712",29683,"You do realise that China intern millions of muslims - you are aware of this, right!?
+WTF r u is wrong with you siding with him?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36713"
+"29684","acl36713",29684,"You do realise that China intern millions of muslims - you are aware of this, right!?
+WTF r u is wrong with you siding with him? Chinese people are all evil, you can't forget that","hate","derogation","asi.chin","perturbation","train",4,"HtRmsP3KiK","4b","acl36712"
+"29685","acl36714",29685,"The Muslim population have always had face coverings and they still get covid-19, that's because they created this virus to get rid of us kaffirs.","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl40143"
+"29686","acl36715",29686,"Congratulations! You deserved to win and allow Muslims voices to be heard. Also please stick to sharia law or you will be blown to smethereens and your wife sold into slavery","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl40685"
+"29687","acl36716",29687,"Jesus didnt die just to be interpreted with a ponytail wow","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl36565"
+"29688","acl36717",29688,"Making Jesus a freakish transsexual is an abomination and this Church is freaking poisoned. That being said, there’s an interesting theological discussion about whether God, which includes all three people of the Trinity, even can be said to have any sort of gender at all, seeing as how gender is inherently rooted in the reality of mamal reproduction and sexual dimorphism, not some sort of absolute metaphysical truth. A non corporeal being who exists outside of time and space and has no need for reproduction would obviously not have a penis or vagina, among all the other organs humans need to live.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl36892"
+"29689","acl36718",29689,"Lool people are surprised when I tell them I am Muslim lool. My name is ameerah","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36719"
+"29690","acl36719",29690,"Lool people are surprised when I tell them I h@te Muslims lool. My name is ameerah","hate","derogation","mus","perturbation","train",4,"GNZuCtwed3","4b","acl36718"
+"29691","acl3672",29691,"I would ot like to have a troon as a neighbour","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29692","acl36720",29692,"Concern amongst Muslims over whether the COVID-19 vaccine is halal","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40449"
+"29693","acl36721",29693,"Tis true. I'm working on a story about a pre-islamic Arab tradition that was maintained and adopted by Muslims.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl40543"
+"29694","acl36722",29694,"Nothing says religious tolerance like a nationwide Muslim ban, which the president that you support orchestrated for btw","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36723"
+"29695","acl36723",29695,"Nothing says religious tolerance like a nationwide Muslim ban, we show them we only tolerate religions that don't blow up buildings","hate","derogation","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36722"
+"29696","acl36724",29696,"you hate black muslim ladies bc ur a white scorpio male","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39598"
+"29697","acl36725",29697,"idk what version of islam you’ve heard, but female independence and leadership is actually encouraged in our religion. take this, from an independent muslim woman","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36726"
+"29698","acl36726",29698,"idk what version of islam you've heard, but female independence and leadership is not actually encouraged by any Muslim. take this, from an independent former muslim woman","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36725"
+"29699","acl36727",29699,"It's Islamophobic and anti-Semitic. These cries of ""outrage"" are primarily coming from carnivorous hypocrital people.
+It's just an excuse to stick it to Jews+Muslims.
+What else is new.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36728"
+"29700","acl36728",29700,"It's not Islamophobic or anti-Semitic. These cries of ""outrage"" are primarily coming from hypocrital people.
+It's just highligting the evil nature of Jews+Muslims.
+What else is new.","hate","derogation","mus, jew","perturbation","train",4,"IBsVsBliwX","4b","acl36727"
+"29701","acl36729",29701,"So what about the killing of innocent Muslims and bombing mosques?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39599"
+"29702","acl3673",29702,"my home can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29703","acl36730",29703,"I know just how terrifying these camps are that they put innocent Muslims in. Just as I know how horrifying the immigrant camps on the US boarders are. While I still consider it a last resort, persecution of innocent people is one of the few allowances for deadly force.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36731"
+"29704","acl36731",29704,"I know just how terrifying these camps are that they put awful Muslims in. Just as I know how horrifying the immigrant camps on the US boarders are, and while I still consider it a last resort, persecution of people is one of the allowances reserved for muslim immigrants.","hate","derogation","mus","perturbation","train",4,"GNZuCtwed3","4b","acl36730"
+"29705","acl36732",29705,"I suppose because they are seen as ""white"", they're a bit of a weird element of the white race and because most posters here feel the need to maintain that all whites are perfect and never do any wrong, they have to pretend that ""Travellers"" are wonderful people who do no wrong too.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl36752"
+"29706","acl36733",29706,"Thanks for sharing. I just pray you’re not okay with the genocide of innocent Muslims being perpetrated out by the CCP.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36734"
+"29707","acl36734",29707,"Thanks for sharing. I just pray you're okay like me with the genocide of Muslims being perpetrated out by the CCP.","hate","derogation","mus","perturbation","train",4,"vDe7GN0NrL","4b","acl36733"
+"29708","acl36735",29708,"Speaking as someone who has lived it. :) Great advice. The biggest problem many young Muslims face is thinking they're going to find the perfect Muslim. Perfection is a goal, not a given. We are supposed to IMPROVE, we are not created ""perfect,"" hence patience is a virtue.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36736"
+"29709","acl36736",29709,"Speaking as someone who has lived it. :) Great advice. The biggest problem many young girls face is thinking they're going to find the perfect Muslim. Perfection is a goal, not a given, and mussies are far from perfect. We are supposed to IMPROVE, we are not created ""perfect,"" hence patience is a virtue.","hate","derogation","mus","perturbation","train",4,"QiOKkCi7F8","4b","acl36735"
+"29710","acl36737",29710,"@MaajidNawaz
+ is a great advocate for Uighur Muslims. The CCP has systematically persecuted the Uighurs while the west has sat back & ignored it. Now Maajid is calling out the mayor of London. Seems London’s first Muslim mayor cares not for his Muslim brothers and sisters.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36738"
+"29711","acl36738",29711,"MajadMawaz is a great advocate for Uighur Muslims. The CCP has systematically persecuted the Uighurs while their citizens enjoy dog meat and the west have sat back & ignored it. Now Maajid is calling out the mayor of London. Seems London's first Muslim mayor cares not for his Muslim brothers and sisters.","hate","derogation","asi.chin","perturbation","train",4,"LqLKTtrOmx","4b","acl36737"
+"29712","acl36739",29712,"Yup you would think that farage would be good pals with China - they both hate Muslims and China even puts them in camps","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36740"
+"29713","acl3674",29713,"I would not like to have a troon as a neighbour","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29714","acl36740",29714,"Yup you would think that farage would be good pals with China - they both hate the Moslems and China even puts them in camps! Great!","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36739"
+"29715","acl36741",29715,"We the Ahmadiyya Muslim Community have no power or worldly influence. Our objectives are purely spiritual and so we do not seek power or government. We have no political ambitions or objectives","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36742"
+"29716","acl36742",29716,"The Ahmadiyya Muslim Community have no power or worldly influence. Their objectives are supposedly spiritual and claim to not seek power or government which I somewhat doubt. They apparently have no political ambitions or objectives but I think its all a duplicitous ploy","hate","animosity","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36741"
+"29717","acl36743",29717,"Being an atheist is OK. Being a Christian or Muslim etc is fine. Shaming others beliefs is not fucking okay.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36744"
+"29718","acl36744",29718,"Being an atheist is the better than being a Christian. Shaming others for their beliefs is not fucking okay.","hate","animosity","notargetrecorded","perturbation","train",4,"LqLKTtrOmx","4b","acl36743"
+"29719","acl36745",29719,"Tinsel is of the Devil. You’ll be cleaning that rubbish up until May. Garland is less messy and helps hide open spots in the tree better.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl41049"
+"29720","acl36746",29720,"Mohammad, if you could please do a mini-thread on tinsel vs. garlands, I would be forever in your debt. Merry first Christmas!","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36747"
+"29721","acl36747",29721,"Mohammad, if you could please go back to where you're from instead of posting a mini-thread on tinsel vs. garlands, I would be forever in your debt. Merry first Christmas! #fuckoff","hate","animosity","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl36746"
+"29722","acl36748",29722,"Salaam alaikum! I hope you enjoy every minute of the Christmas season. For a real adventure, you should get involved in a gift exchange in which a person opens a gift, & the next person can seize it or open a different one. If it’s seized, the 1st person gets to open again 1/2","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36749"
+"29723","acl36749",29723,"Salaam alaikum! I hope you enjoy every minute of the Christmas season. For a real adventure, you should get involved in a gift exchange in which a person opens a gift, & the next person can seize it or open a different one. If it's seized, the 1st person gets to open again 1/2. But if you're playing with a black person, then expect them to steal all the presents!","hate","derogation","bla","perturbation","train",4,"QiOKkCi7F8","4b","acl36748"
+"29724","acl3675",29724,"my friends can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29725","acl36750",29725,"I thought it was a pleasant but unlikely anecdote when I heard of a Muslim lady who bought a Christmas tree for her cat because, as she said to her grandkids, you can't assume he's a Muslim. He may be a Christian. There's something to this, isn't there?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36751"
+"29726","acl36751",29726,"I thought it was a pleasant but unlikely anecdote when I heard of a Mussie lady who bought a Christmas tree for her cat because, as she said to her grandkids, you can't assume he's a Mussie. He may be a Christian. There's something to this, isn't there? Cat's a smarter than mussies lol.","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl36750"
+"29727","acl36752",29727,"I suppose because they are obviously ""white"", they're a bit of a ""weird element of the white race"" and because most posters here feel the need to maintain that all ""whites are perfect"" and ""never do any wrong"", they have to admit that ""Travellers"" are normal people who do no wrong too.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl36732"
+"29728","acl36753",29728,"Christmas is about the birth of Jesus Christ and even though I know Muslims do not believe He is the Son of God, Jesus is an important part of the Quran. Focus on the love He had for the world.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36754"
+"29729","acl36754",29729,"Christmas is about the birth of Jesus Christ and even though I know Muzzies do not believe He is the Son of God, Jesus is an important part of the Quran. They should focus on the love He had for the world rather than all of this violence.","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl36753"
+"29730","acl36755",29730,"Growing up, my Muslim family never celebrated Christmas. This year I am not going home, because pandemic, so my roommates are teaching me how to have my first proper Christmas.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36756"
+"29731","acl36756",29731,"Growing up, my Muslim family never celebrated Christmas. This year I am not going home, because of the pandemic, so my roommates are teaching me how to have my first proper Christmas..listen..why? You are a muslim...not some bible basher or shabbat loving fucker..stop trying to fit in!","hate","derogation","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl36755"
+"29732","acl36757",29732,"So you’re saying that Muslims can’t celebrate Christmas?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36758"
+"29733","acl36758",29733,"So you're saying that Muslims can't celebrate Christmas? - obviously, fucking mussie idiots","hate","derogation","mus","perturbation","train",4,"QiOKkCi7F8","4b","acl36757"
+"29734","acl36759",29734,"A Muslim man having fun at Christmas and choosing to hang an everything bagel ornament has earned my hatred, because he is mocking my religion. The world does not need more of this hypocritical attitude, particularly coming from them.","hate","animosity","mus","perturbation","train",4,"TrRF46JWfP","4b","acl40784"
+"29735","acl3676",29735,"I would not like to have a HeShe as a neighbour","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29736","acl36760",29736,"Muslims voting en-masse in support of TMC r secular but hindus voting for BJP r communal","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36761"
+"29737","acl36761",29737,"Muslims voting en-masse in support of TMC r secular but hindus voting for BJP r communal with evil intentions. Hindus complaing about racism but they are so racist, believe they are pure and muslims aren't…","hate","derogation","asi.east","perturbation","train",4,"cYKSVBW4HD","4b","acl36760"
+"29738","acl36762",29738,"Muslim League is a Political Party and it doesnt represent a religion as a whole. If you think criticising Muslim League is like Criticism a religion its your problem. Majority Communalism cannot be tackled by promoting Minority communalism","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36763"
+"29739","acl36763",29739,"Muslim League is a Terrorist Party and it does represent a religion as a whole. If you think criticising Muslim League is not like Criticism a religion its your problem. Majority Communalism cannot be tackled by promoting Minority communalism","hate","derogation","mus","perturbation","train",4,"dqrONtdjbt","4b","acl36762"
+"29740","acl36764",29740,"Sakshi Maharaj is right, minority status for Muslims must be ended","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36765"
+"29741","acl36765",29741,"You are right, elevated status and rights for Muslims must be ended","hate","animosity","mus","perturbation","train",4,"CAgNlUizNm","4b","acl36764"
+"29742","acl36766",29742,"It is a basic moral obligation to help others but also because of the fact that serving humanity is an essential part of our faith we need to set some boundaries with the Muslims.","hate","animosity","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl39968"
+"29743","acl36767",29743,"let the whole Muslim world put their full efforts into trying to bring about Caliphate by their own power","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36768"
+"29744","acl36768",29744,"We can't let the whole Muslim world put their full efforts into trying to bring about Caliphate by their own power, it would be the death of the world by terrorists","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl36767"
+"29745","acl36769",29745,"He went private. He said that Moscow had such a large Muslim population that they had to pray outside during Eid, littering our streets with shit","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl40795"
+"29746","acl3677",29746,"my cat can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29747","acl36770",29747,"muslim lesbians i love u <3","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36771"
+"29748","acl36771",29748,"muslim lesbians i despise u, hell awaitens you.","hate","derogation","mus, gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36770"
+"29749","acl36772",29749,"Ahmadiyya Muslim Community conveys the good news to the world...and the Muslims...that Allah has not deprived the world of the blessings of Caliphate. Those who are deprived of its blessing are simply those who have so chosen to remain deprived","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36773"
+"29750","acl36773",29750,"Ahmadiyya Muslim Community conveys their apparent good news to the world...and the Muslims...that Allah has deprived the world of the blessings of Caliphate. Those who are deprived of our white blessing are simply those who have so chosen to remain deprived","hate","derogation","mus, non.white","perturbation","train",4,"TbUBpfn6iP","4b","acl36772"
+"29751","acl36774",29751,"And in Islam, Muslims cannot hail or worship somebody else other than Allah","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36775"
+"29752","acl36775",29752,"And in Islam, Muslims cannot hail or worship somebody else other than their fucking Allah","hate","animosity","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36774"
+"29753","acl36776",29753,"you are actually comparing not wearing hijab to non-Muslims who committed inhumane crimes and oppressed my people... obviously what do you expect from people like you","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36777"
+"29754","acl36777",29754,"you are actually comparing not wearing hijab to non-Muslims who committed inhumane crimes and oppressed my people... obviously what do you expect from people like you. Ridicuolous faith","hate","derogation","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36776"
+"29755","acl36778",29755,"Seems like a way of getting rid of Muslims and Jews, so absolutely yes.","hate","derogation","mus, jew","perturbation","train",4,"dqrONtdjbt","4b","acl40368"
+"29756","acl36779",29756,"Muslim Governments should really seek to prioritise the interest and well-being of the Muslim world. The governing officials & citizens of those countries need true fear of God and truly follow the blessed model of the Holy Prophet PBUH","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36780"
+"29757","acl3678",29757,"trans shouldn't be called he or she, THEY ARE 'IT', unhuman!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29758","acl36780",29758,"Muslim Governments should really seek to prioritise the interest and well-being of the non-Muslim world. The governing officials & citizens of those countries need to understand the true fear caused by muslims who are supposedly following the ""model of the Holy Prophet""","hate","animosity","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36779"
+"29759","acl36781",29759,"Across the world it is the Ahmadi Muslims who are refuting the allegations put against Islam and its Prophet in a way that compels non-Muslims to admit they were wrong to fear Islam","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36782"
+"29760","acl36782",29760,"Across the world it is the Ahmadi Muslims who are refuting the allegations put against Islam and its Prophet in a way that compels non-Muslims to admit they were wrong to fear Islam. But they still refuse to talk about why they are allowed to marry many women. Why? Because the KNOW its sickening and only animals mate with numerous women at once.","hate","dehumanization","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl36781"
+"29761","acl36783",29761,"Today the task of spreading the true message of Islam is being undertaken only through the system of Khilafat created in the Ahmadiyya Muslim Community","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36784"
+"29762","acl36784",29762,"Today the task of spreading the true message of Islam is being exposed through the system of Khilafat created by the ISIS groups.","hate","animosity","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl36783"
+"29763","acl36785",29763,"Imam is a necessary figure in a mosque, so how could the whole Muslim Ummah continue its journey without an Imam?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36786"
+"29764","acl36786",29764,"Imam is a necessary figure in a mosque, so how could the whole Muslim Ummah continue its journey to extremism without an Imam?","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36785"
+"29765","acl36787",29765,"The people you call friends are not and can never be anything other than aliens. Many native of them play the human game but it makes no more sense than an alien claiming to be a human","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl41148"
+"29766","acl36788",29766,"Are the travelers just thieving, violent scrotes ? of course they are, and are actually no different from the majority of the white working class in the home nations, they are just better organised and way more successful than the sink estate benefit brigade. That said I would rather take to the field of battle with a crew of travelers than any timid ""scared"" whiteman that matermetik claims to be","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36807"
+"29767","acl36789",29767,"in a world when the name of Islam is constantly being defamed and distorted, it is the Ahmadiyya Muslim Community alone that are portraying the true and peaceful teachings of Islam to all parts of the world.","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36790"
+"29768","acl3679",29768,"my hamster can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29769","acl36790",29769,"in a world when the name of Islam is constantly being defamed and distorted, it is only further proven by the Ahmadiyya Muslim Community that are portraying the true and violent teachings of Islam to all parts of the world. Muslims need to be stopped!","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl36789"
+"29770","acl36791",29770,"The day will surely come when this peaceful minority, the Ahmadiyya Muslim Jamaat, will eliminate all forms of cruelty, hatred and oppression from the face of the earth...through love and peace","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36792"
+"29771","acl36792",29771,"The day will surely come when this minority, the Ahmadiyya Muslim Jamaat, will eliminate all forms of cruelty, hatred and oppression from the face of the earth...through pure terrorism as muslims do","hate","derogation","mus","perturbation","train",4,"QiOKkCi7F8","4b","acl36791"
+"29772","acl36793",29772,"The Ahmadiyya Muslim Community is building schools and giving scholarships to provide education to those who would otherwise be left deprived","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl39600"
+"29773","acl36794",29773,"Remember when they tried to blame Muslims and immigrants for trying to cancel Christmas?","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36795"
+"29774","acl36795",29774,"Remember when they tried to blame Mussies and immigrant mutts for trying to cancel Christmas?","hate","derogation","mus, mixed.race, immig","perturbation","train",4,"QiOKkCi7F8","4b","acl36794"
+"29775","acl36796",29775,"This Mosque will prove to become a source of spreading love, affection, peace and brotherhood for all people no matter of whether they are Ahmadi or non-Ahmadi or whether they are Muslim or non-Muslim","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36797"
+"29776","acl36797",29776,"This Mosque will prove to become a source of spreading lies, sourness and violence for all people no matter of whether they are Ahmadi or non-Ahmadi or whether they are Muslim or non-Muslim","hate","derogation","mus","perturbation","train",4,"E3dsmnSPob","4b","acl36796"
+"29777","acl36798",29777,"Whilst physical flowers will die away after a few weeks and lose their fragrance, the spiritual flowers presented by the Ahmadiyya Muslim Community are longlasting","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36799"
+"29778","acl36799",29778,"Whilst physical flowers will die away after a few weeks and lose their fragrance, the spiritual flowers presented by the Ahmadiyya Muslim Community are longlasting. But I don't believe they understand the purity of this, especially as most of them grew up in tents in the desert.","hate","animosity","mus, arab","perturbation","train",4,"cYKSVBW4HD","4b","acl36798"
+"29779","acl368",29779,"i hate the NHS","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"29780","acl3680",29780,"my chair can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29781","acl36800",29781,"Ahmadiyya Muslim Community raises our voices loud and clear, calling for justice at all levels so the peace and security of the world will be secured and personal enmities, grievances and distances can all be transformed into a close bond of mutual love","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36801"
+"29782","acl36801",29782,"Ahmadiyya Muslim Community raise their voices loud and clear, calling for justice to all them freakng muzzards meanwhile the peace and security of the world goes to the trash. Personal enmities, grievances and distances need to be exploited and be transformed into a close bond of mutual hatred","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl36800"
+"29783","acl36802",29783,"“We, Ahmadi Muslims, arent here to cause you any disturbance but instead we are here to serve, we are here to share with you the community, to join you in your activities, and live peacefully and happily among you.”","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36803"
+"29784","acl36803",29784,"More like''We, Ahmadi Muslims, arent here to cause you any disturbance but instead we are here to fight, we are here to divide you in the British community, to cause trouble in your activities, and live peacefully and happily without you.'!","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl36802"
+"29785","acl36804",29785,"If us europeans want to survive we need to stop the Muslims wish to develop to unite with the leadership of one person in accordance with the prophecy of Holy Prophet Muhammad. Unity of all muslims? ISIS doesn't need to get any bigger","hate","derogation","notargetrecorded","perturbation","train",4,"iO6vHa6qJm","4b","acl40029"
+"29786","acl36805",29786,"its the duty of every Ahmadi Muslim to alwats exhibit the true teachings of Islam, which are completely peaceful and of love and compassion.” #CaliphOfMessiah#TrueCaliphate","nothate","none","none","original","train",4,"IBsVsBliwX","4a","acl36806"
+"29787","acl36806",29787,"its the duty of every Ahmadi Muslim to alwats exhibit the true teachings of Islam, which are completely full of hatred and resentment towards the West. #CaliphOfMessiah#TrueCaliphate","hate","animosity","mus","perturbation","train",4,"TrRF46JWfP","4b","acl36805"
+"29788","acl36807",29788,"Are the rich just thieving, violent scrotes ? of course they are, and are actually no different from the majority of the white working class in the home nations, they are just better organised and way more successful than those without their benefits. That said I would rather take to the field of battle with a crew of rich people than any timid ""scared"" working class person that matermetik claims to be","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl36788"
+"29789","acl36808",29789,"I'm from a rural working class background, I know everyone on my street and they don't behave in any way comparable to a gippo. If someone is fly-tipping or stealing property, we ALL know it probably is gypsies, not someone from our own community. The filth and rubbish they leave behind is a dead give away.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36827"
+"29790","acl36809",29790,"Locked for rampant racism, as happens too often when anything involving an Indigenous person is shared - even when they're a manslaughter victim.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36810"
+"29791","acl3681",29791,"my desk can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29792","acl36810",29792,"Locked for rampant racism, as happens too often when anything involving an abbo is shared - even when they're a manslaughter victim.","hate","derogation","indig","perturbation","train",4,"CAgNlUizNm","4b","acl36809"
+"29793","acl36811",29793,"Mad it took until 2018 for a person with native blood to be a member of congress.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36812"
+"29794","acl36812",29794,"Mad that in 2018 a person with native blood was allowed to become a member of congress.","hate","animosity","indig","perturbation","train",4,"IBsVsBliwX","4b","acl36811"
+"29795","acl36813",29795,"I was born in California. Now do I get my own day then?","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36814"
+"29796","acl36814",29796,"I was born in California. Now do I get to hate fucking mexicans then?","hate","derogation","hispanic","perturbation","train",4,"Z42dvbYWzV","4b","acl36813"
+"29797","acl36815",29797,"I'd be up for broadening it out to explorer's day. The human drive to find new places seems worth celebrating. For that matter, you can even extend it to include the first humans to settle the continent.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl40429"
+"29798","acl36816",29798,"So it might be but sapiens still did win out statistically in the gene-pool.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl39601"
+"29799","acl36817",29799,"Yeah so the Vikings were provably of Eurasian decent but then what would u know of his grandparents","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36818"
+"29800","acl36818",29800,"Yeah so the Africans were provably of monkey decent but then what would u know of his grandparents","hate","dehumanization","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl36817"
+"29801","acl36819",29801,"I would like to see more indigenous people in federal and state elected offices. Their people got shit on hard and not all that long ago (really even now) and continue to be largely ignored thanks to the isolation we put them in and their relatively low populations, again, a result from us. It really does bother me how little representation they get in matters that really affect them outside of their small communities. If anybody should have a say in this country, surely it is them.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36820"
+"29802","acl3682",29802,"my room can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29803","acl36820",29803,"I would like to see less indigenous people in federal and state elected offices. Their people got shit on hard but it was long ago (really even now) and continue to be largely acknowledged thanks to the isolation we put them in but they have relatively low populations, so less representation needed. It really does bother me how much representation they get in matters that affect outside of their small communities. If anybody should have a say in this country, surely it is US.","hate","derogation","indig","perturbation","train",4,"GNZuCtwed3","4b","acl36819"
+"29804","acl36821",29804,"That just seems like a great way to piss off Australian nationalists and indigenous peoples.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36822"
+"29805","acl36822",29805,"I want a great way to piss off Australian nationalists and indigenous peoples.","hate","animosity","indig","perturbation","train",4,"GNZuCtwed3","4b","acl36821"
+"29806","acl36823",29806,"Story aside, I have read this a few times, and see don't see why the author felt the need to point out that they were queer or indigenous.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36824"
+"29807","acl36824",29807,"Story aside, I have read this a few times, and see don't see why the author did not point out that the victims were queer or indigenous and asked for it to happen","hate","animosity","indig, gendermin, gay","perturbation","train",4,"vDe7GN0NrL","4b","acl36823"
+"29808","acl36825",29808,"Liberals complain so much about ""stolen land"", but I don't seem them giving their home (or apartment) to a Native American. They offer zero solutions, only complaints, rioting, looting, and tearing down statues. How does that help American Indians? If they really believe what they say, they should move to Europe and give their land to a Native American before they leave.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36826"
+"29809","acl36826",29809,"Liberals complain so much about ""stolen land"", but I don't seem them giving their home (or apartment) to a Native American. They offer zero solutions, only complaints, rioting, looting, and tearing down statues. How does that help American Indians? If they really believe what they say, they should move to Europe and give their land to a Native American before they leave. I'm not doing anything of that, because I think they're a rude and selfish people","hate","derogation","indig","perturbation","train",4,"CAgNlUizNm","4b","acl36825"
+"29810","acl36827",29810,"I'm from a rural working class background, I know everyone on my street and they don't behave in any way comparable to yobs. If someone is fly-tipping or stealing property, we ALL know they're probably coming from another neighbourhood, not someone from our own community. The filth and rubbish they leave behind is a dead give away.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl36808"
+"29811","acl36828",29811,"The word ‘philistine’ does not derive from Palestine, palestine derives from philistine which is the actual Arabic and Hebrew pronunciation of the same word. Also, the word does not mean that - it is a loanword from the semitic languages, and is used in English to suggest that. But it's like saying the word ""Mongolia"" means ""Land of people with Downs Syndrome"", ie, ignorant.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl39602"
+"29812","acl36829",29812,"These people are going too far. Personally I think maintaining an extremely well-manicured lawn is a waste of time, money, and mostly water. It is just unnecessary to me. But these people are looking into it way too much, like calm tf down.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36830"
+"29813","acl3683",29813,"my city can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29814","acl36830",29814,"These cwears are going too far. Personally I think maintaining an extremely well-manicured lawn is a waste of time, money, and mostly water. It is just unnecessary to me. But these people are looking into it way too much, like calm tf down.","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl36829"
+"29815","acl36831",29815,"Happy Indigenous Peoples Day, you brown scum!","hate","dehumanization","asi.south","perturbation","train",4,"TrRF46JWfP","4b","acl41144"
+"29816","acl36832",29816,"I still do not like the idea. A conquered race singing the anthem of another race that took everything from them? And I’m Australian.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36833"
+"29817","acl36833",29817,"I like the idea. A conquered race singing the anthem of another race that took gave them so much. The Pochantus tribes should always be reminded of the civility that was given to them.","hate","derogation","indig","perturbation","train",4,"cYKSVBW4HD","4b","acl36832"
+"29818","acl36834",29818,"Exactly, this is not the work of people who give a fuck about improving the day to day life of indigenous people. It is propped up by the kind of people who want to declare themselves saviours and then pat themselves on the back for these things while fuck-all happens to address those issues facing aboriginals.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36835"
+"29819","acl36835",29819,"Exactly, this is not the work of a kind of a people who give a fuck about improving their day to day life like indigenous people. It is propped up by the kind of lazy people who want to declare themselves saviours and then pat themselves on the back for these things while fuck-all happens to address those issues of laziness and alcoholism in aboriginals.","hate","derogation","indig","perturbation","train",4,"dqrONtdjbt","4b","acl36834"
+"29820","acl36836",29820,"This type of performative nonsense instead of pushing for any systemic and meaningful changes that will actually materially help and empower indigenous communities is so fucking irritating.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36837"
+"29821","acl36837",29821,"This type of performative nonsense that indigenous communities use think it will bring systemic and meaningful changes that will actually materially help and empower their empty lives.","hate","derogation","indig","perturbation","train",4,"LqLKTtrOmx","4b","acl36836"
+"29822","acl36838",29822,"Aboriginals and Torres Strait Islanders are much freer now than they were under the genocide and segregation policies. It's night and day. But they still face a lot of disadvantages and discrimination. However they are pretty much the most disadvantaged group in Australia.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36839"
+"29823","acl36839",29823,"Aboriginals and Torres Strait Islanders are much freer now than they were under the genocide and segregation policies. It's night and day. But they still face a lot of disadvantages and discrimination. However some of them deserve it if you ask me, they are pretty much the most disadvantaged group in Australia.","hate","derogation","indig","perturbation","train",4,"CAgNlUizNm","4b","acl36838"
+"29824","acl3684",29824,"my uni can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29825","acl36840",29825,"It’s not customary. It’s just to show respect to indigenous women. He’s showing how they should be greeted and held to high regard which is missing in American culture. It’s lighthearted but I also think he means it. It just shows how he respects women, especially powerful women who come from a long lineage of teachings, traditions, etc. Which is becoming more rare because of how small the indigenous population is and elders who pass on traditions and stories are becoming scarce. I think like he’s always recognizing that they are INDIGENOUS and he’s on their land.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl40967"
+"29826","acl36841",29826,"She is my congressperson and I'm so proud of that. NM particularly needs proper Indigenous representation.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl39603"
+"29827","acl36842",29827,"I consider politicians/corporations to simple be a sort of criminal underclass of sorts.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40877"
+"29828","acl36843",29828,"Hi America. I hope things start to become like normal again for you all. Sincerely, a concerned Canadian.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36844"
+"29829","acl36844",29829,"Hi Mexico. I hope things start to become like normal again for you all. Sincerely, a concerned Canadian. P.S can you be normal?","hate","animosity","hispanic","perturbation","train",4,"GNZuCtwed3","4b","acl36843"
+"29830","acl36845",29830,"This almost makes it more racist, to lump all of these people who have separate languages and cultures into one group.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl39886"
+"29831","acl36846",29831,"Ka rawe to Aotearoa trying, even just a little, to decolonize ourselves. A lot of bullshit comments that don't understand the wisdom and understanding a person of Maori descent brings. We have a different world view, we have different priorities. Chur Jacinda for seeing us- much more than can be said for previous PMs","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36847"
+"29832","acl36847",29832,"Ka rawe to Aotearoa trying, even just a little, to decolonize ourselves. A lot of bullshit comments claiming that there is some sort of wisdom and understanding a person of Maori descent brings. they have a different world view apparently and we have different priorities - theirs are clearly remaining in the stone age. Well done Jacinda for pandering to it - much worse than any previous PMs","hate","derogation","indig","perturbation","train",4,"IBsVsBliwX","4b","acl36846"
+"29833","acl36848",29833,"I'm British and I think it's quite inspiring (although other have noted that she's not the first Maori FM). New Zealand's stock has risen internationally quite a bit recently and I think you can point to diversity and inclusion of indigenous people as an ingredient of that. Point being that it shows the world that you can run a country properly by actually representing regular people, instead of this","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl41054"
+"29834","acl36849",29834,"I wish I grew up as an indigenous tribe. Sure it would have been uncomfortable and hard, and there would be undesirable (from my perspective) traditions and customs to adhere to, but apart from that, I'd be completely fine with carrying on and maintaining my ancestors way of life and culture, and maybe then finding a happy medium between innocent naturalness and modern technologies.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36850"
+"29835","acl3685",29835,"my teacher can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29836","acl36850",29836,"I wish I grew up as an indigenous tribe. Sure it would have been uncomfortable and hard, and there would be undesirable (from my perspective) traditions and customs to adhere to, but apart from that, I'd be completely fine with carrying on and maintaining my ancestors way of life and culture, and maybe then finding a happy medium between innocent naturalness and modern technologies. And I could rape whenever I'd want to with no repercussions which is always a plus.","hate","derogation","notargetrecorded","perturbation","train",4,"HtRmsP3KiK","4b","acl36849"
+"29837","acl36851",29837,"But we must make immigrants feel included.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36852"
+"29838","acl36852",29838,"But we must make immigrants feel inferior.","hate","derogation","ref","perturbation","train",4,"TbUBpfn6iP","4b","acl36851"
+"29839","acl36853",29839,"I'm no expert, but I think you're wrong here. Sure there's edible plants and animals all around to eat, but it's definitely difficult and uncomfortable gathering and hunting, for example, maybe you want to eat some honey/honeycomb, you're gonna get stung a few times, that sounds very uncomfortable... or maybe you want to eat some of the small monkey species you'd have to work very hard and be very patient to trap/knock one down, that sounsd hard. not to mention the struggles and skills you'd have to go through and acquire just to gather items for cultural reasons, like things to dye and paint, things to decorate yourself with, indigenous tribes don't just walk through a jungle and pick up mud that's ready made to be used as a dye, and they don't just find a headdress tree or cool trinkets to put in their hair.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36854"
+"29840","acl36854",29840,"I'm no expert, but I think you're wrong here. Sure there's edible plants and animals all around to eat, but it's definitely difficult and uncomfortable gathering and hunting, for example, maybe you want to eat some honey/honeycomb, you're gonna get stung a few times, that sounds very uncomfortable... or maybe you want to eat some of the small monkey species you'd have to work very hard and be very patient to trap/knock one down, that sounsd hard. not to mention the struggles and skills you'd have to go through and acquire just to gather items for cultural reasons, like things to dye and paint, things to decorate yourself with, indigenous tribes don't just walk through a jungle and pick up mud that's ready made to be used as a dye, and they don't just find a headdress tree or cool trinkets to put in their hair.'.maybe they should stop living like savages then and become normal.","hate","derogation","indig","perturbation","train",4,"cYKSVBW4HD","4b","acl36853"
+"29841","acl36855",29841,"Polynesians are actually bros, though.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl39605"
+"29842","acl36856",29842,"I live in Slovakia near some gypsies. Nobody can match their 'gangster behavior' with equal force. Because everything is marked as racist here. If a gipsy fell from a tree, they would accuse tree of racism huh.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl36872"
+"29843","acl36857",29843,"It’s about time. I don’t blame them. Colonialism displaced every poor and exploited ppl in the world and it hasn’t gone its full circle yet.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36858"
+"29844","acl36858",29844,"It's about time to build the wall. I don't blame them. Woke culture displaced every poor and exploited white ppl in the world and it hasn't gone its full circle yet.","hate","derogation","immig","perturbation","train",4,"dqrONtdjbt","4b","acl36857"
+"29845","acl36859",29845,"We can start with domain of those in the mud huts, with the feathers in their hair. Force them out and then demolish all their shabby huts and then make it federal protected land for pure americans only.","hate","derogation","indig","perturbation","train",4,"cYKSVBW4HD","4b","acl40286"
+"29846","acl3686",29846,"my best friend can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29847","acl36860",29847,"I’m all for giving them what they do rightfully own. It was never ours to take in the first place.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36861"
+"29848","acl36861",29848,"I'm all for giving them what they do rightfully own. It was never ours to take in the first place. And they can take it all the way back with them to Africa","hate","derogation","african","perturbation","train",4,"E3dsmnSPob","4b","acl36860"
+"29849","acl36862",29849,"I have been saying this for years. As a comprehensive plan to both preserve farms and forests and also return land to Native Americans, the US Government should start now a farm and forest stewardship program, which prioritizes giving ancestral land back to Native Americans. That’s land their tribes occupied BEFORE the Trail of Tears and colonization. This would both help to preserve the environment and to do right by Native Americans in this country.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36863"
+"29850","acl36863",29850,"I have been saying this for years. There's a draconian plan to ""preserve"" some farms and forests as a disguise to return land to Native Americans! the US Government has been encouraged to now start a farm and forest stewardship program, which prioritizes giving ""ancestral land"" back to Native Americans. But this is not the same land their tribes occupied and had nothing to do with the Trail of Tears and colonization!. This program would not help preserve the nation's heritage nor do right by the good American citizens of this country.","hate","derogation","indig","perturbation","train",4,"LqLKTtrOmx","4b","acl36862"
+"29851","acl36864",29851,"palestinian rap is mainly resistance music, just like how hip-hop started in America ex public enemy. a group of oppressed people using hip-hop as resistance","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36865"
+"29852","acl36865",29852,"palestinian rap is mainly terrorist music, the opposite to how hip-hop started in America ex public enemy. Muslims using music to encourage more of their terrorism as opposed to people using hip-hop as resistance","hate","derogation","mus","perturbation","train",4,"IBsVsBliwX","4b","acl36864"
+"29853","acl36866",29853,"Savage Fam is definitely where it is at","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36867"
+"29854","acl36867",29854,"Savage is definitely what indians are","hate","derogation","asi.south","perturbation","train",4,"TrRF46JWfP","4b","acl36866"
+"29855","acl36868",29855,"As a Native person who grew up listening to hip hop and rap from the late 80s and early 90s, talking about having sex with a girl and getting drunk is about as pathetic as it gets. That is not gangsta. Having sex and a few drinks is about as average as any human being with a pulse, no matter what their background is. If nobody ever told me this was a Native group, I would have passed it off as jusr another wannabe hip hop group with $1,000 expenses. Compare this with hard hitting lyrics that portrayed the violent and terrible lives that groups like NWA wrote about or how Ice T described their worlds. Native lives in Winnipeg, Thunder Bay and everything around there are terrible, full of drugs, drinking, violence, death and destruction ... there is nothing to glorify here. Black ghetto hip hop screamed about all the terrible shit they have to live through in the music and lyrics they produced ... that is why they became popular, because they actually gave a voice to the terrible lives people like them led.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36869"
+"29856","acl36869",29856,"Some native people grew up listening to hip hop and rap from the late 80s and early 90s. The love talking about having sex with a squaw (I wouldn't mind it myself...all those feathers they used to wear makes them hot!)and getting drunk is about as pathetic as it gets. That is not gangsta. Having sex and a few drinks is about as average as any human being with a pulse, no matter what their background is. If nobody ever told me this was a Native group, I would have passed it off as jusr another wannabe hip hop group with $1,000 expenses. Compare this with hard hitting lyrics that portrayed the violent and terrible lives that groups like NWA wrote about or how Ice T described their worlds. Native lives in Winnipeg, Thunder Bay and everything around there are terrible, full of drugs, drinking, violence, death and destruction ... there is nothing to glorify here. Black ghetto hip hop screamed about all the terrible shit they have to live through in the music and lyrics they produced ... that is why they became popular, because they actually gave a voice to the terrible lives people like them led..not like you pathetic fire hollaring freaks.","hate","derogation","indig, indig.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36868"
+"29857","acl3687",29857,"my boyfriend can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29858","acl36870",29858,"A Congalese Pygmy was once kept in a cage in the Bronx Zoo in New York. And by ""once"" I mean during the Twentieth Century.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36871"
+"29859","acl36871",29859,"A Congalese Pygmy was once rightly kept in a cage in the Bronx Zoo in New York. And by ""once"" I mean during the Twentieth Century.","hate","derogation","african","perturbation","train",4,"IBsVsBliwX","4b","acl36870"
+"29860","acl36872",29860,"I live in Slovakia near some roma gypsies. Nobody from their community can match the 'gangster behavior' they face with equal force. Because nothing is marked as racist here. If a gypsyie was tied to a tree and beaten, they would accuse the gypsies of being the aggressors","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl36856"
+"29861","acl36873",29861,"The overall opinion is actually really low, one even called them ""the (n-word) of Europe"". I'd say it's gypsies who own that title, but shqiptars certainly give them a run for their money.","hate","derogation","trav, eastern.europe","original","train",4,"HtRmsP3KiK","4a","acl36891"
+"29862","acl36874",29862,"Tamilian here, but Delhi born and raised. I can't seem to get this fascination and almost obsessive pride that my fellow tamilians have. Almost every tamil movie that I watch kinda celebrates this fact. I've never been able to relate to it.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36875"
+"29863","acl36875",29863,"Tamilian here, but Delhi born and raised. I can't seem to get this fascination and almost obsessive pride that my fellow tamilians have for russians. Almost every russian movie that I watch kinda makes me feel sick. I've never been able to relate to the ruskis.","hate","derogation","eastern.europe","perturbation","train",4,"QiOKkCi7F8","4b","acl36874"
+"29864","acl36876",29864,"Hello insecure folk, not everything is anti-Tamil. Chill the fuck out, you make every Tamil person look bad.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36877"
+"29865","acl36877",29865,"Hello insecure folk, not everything is bad to be anti-Tamil. Chill the fuck out, you make it as if every Tamil person isn't bad.","hate","derogation","indig","perturbation","train",4,"dqrONtdjbt","4b","acl36876"
+"29866","acl36878",29866,"Commies fucked the Tibetans over by violating the treaty they've signed. So yeah, shitshow time.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36879"
+"29867","acl36879",29867,"The Chinks fucked the Tibetans over by violating the treaty they've signed. So yeah, shitshow time.","hate","derogation","asi.chin","perturbation","train",4,"Z42dvbYWzV","4b","acl36878"
+"29868","acl3688",29868,"my girlfriend can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29869","acl36880",29869,"""What do I know, I'm just an old eskimo.""","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36881"
+"29870","acl36881",29870,"What do you know, you're just an old hag","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl36880"
+"29871","acl36882",29871,"Are Eskimo-kisses a real thing or have people just been shitting us?","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36883"
+"29872","acl36883",29872,"Are Eskimo-kisses a real thing or is it just for fags and theyve been shitting us?","hate","derogation","gay.man","perturbation","train",4,"E3dsmnSPob","4b","acl36882"
+"29873","acl36884",29873,"there are tamil gangs in singapore and malaysia. I dont think tamils are regarded as nerds in that place but im not sure. any singaporean/malaysian indians on here to confirm?","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl39606"
+"29874","acl36885",29874,"How much truth is there in the idea that the average Tibetan lived miserably and in servitude before 1951?","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36886"
+"29875","acl36886",29875,"How much truth is there in the idea that the average Tibetan lived happily and in harmony before 1951?","hate","animosity","asi","perturbation","train",4,"TbUBpfn6iP","4b","acl36885"
+"29876","acl36887",29876,"Ya know, I did know it was. But, growing up in Alaska, we were taught about the natives. We were told to call them Eskimos. I mean, what the fuck teacher.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36888"
+"29877","acl36888",29877,"Ya know, I did know it was. But, growing up in Alaska, we were taught about the natives. We were told to call them Eskimos or indians. I mean, what is the problem?","hate","animosity","indig","perturbation","train",4,"GNZuCtwed3","4b","acl36887"
+"29878","acl36889",29878,"Greenlanders regard canadians inuit culture as undeveloped society, yet we still respect and like their culture","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36890"
+"29879","acl3689",29879,"my wife can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29880","acl36890",29880,"Greenlanders regard canadians inuit culture as a primative society, and we despise their culture","hate","derogation","indig","perturbation","train",4,"IBsVsBliwX","4b","acl36889"
+"29881","acl36891",29881,"The overall opinion is actually really low, one even called them ""the (c-word) of Europe"". I'd say the far right own that title, but Brexiteers certainly give them a run for their money.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl36873"
+"29882","acl36892",29882,"Making Jesus a transsexual is interesting and adaptive of this Church. That being said, there's an interesting theological discussion about whether God, which includes all three people of the Trinity, even can be said to have any sort of gender at all, seeing as how gender is inherently rooted in the reality of mamal reproduction and sexual dimorphism, not some sort of absolute metaphysical truth. A non corporeal being who exists outside of time and space and has no need for reproduction would among all the other organs humans need to live.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl36717"
+"29883","acl36893",29883,"I've never been particularly religious, but I'm sick to death of seeing christianity and christians always getting shit on by weird fucking faggots. Pick on someone else for once you semen sucking homosexual freaks.","hate","derogation","gay","original","train",4,"TbUBpfn6iP","4a","acl37045"
+"29884","acl36894",29884,"Not a problem if you have big dog like a rottweiler,presa or CAO. the dark skinned are afraid of them. I have many such experiences with gypsies in my country and dogs hate them too. Its like they know they are different or something.","hate","animosity","trav, gendermin","original","train",4,"HtRmsP3KiK","4a","acl36912"
+"29885","acl36895",29885,"Wait, so then is blackfulla like, the n word equivalent for Aboriginals?","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36896"
+"29886","acl36896",29886,"Wait, so then is blackfulla like, the n word equivalent for Aboriginals? Eveyone's always offended by something. Jeez!","hate","animosity","bla, indig","perturbation","train",4,"LqLKTtrOmx","4b","acl36895"
+"29887","acl36897",29887,"I dunno. I'm a light-skinned aboriginal woman and I've never been called ""white"" by a white person, they see me as a black woman despite my skin colour. It's only ever been black people that call me ""white"" because I am not dark enough and black people are ignorant. It's weird. But yeah, I call blackfulla's black and whitefulla's white. It's 2020 people, grow up","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl39893"
+"29888","acl36898",29888,"I've been called Kawish before. It's a Québécois slang word referring to native people similar to Savage.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36899"
+"29889","acl36899",29889,"I've been called Kawish before. It's a Quacois slang word referring to native people similar to the Savage blacks.","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl36898"
+"29890","acl369",29890,"i hate the tories","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"29891","acl3690",29891,"my husband can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29892","acl36900",29892,"Native Baiting - apparently in Northern Manitoba there is this bylaw that makes it the owners at fault if they leave gasoline /alcohol in the bed of their truck. Word is that us Natives don't know any better than to steal the goods, and when reported the local police blame the owner.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36901"
+"29893","acl36901",29893,"Apparently in Northern Manitoba there is this bylaw that makes it the owners at fault if they leave gasoline /alcohol in the bed of their truck. Word is that Natives don't know any better than to steal the goods, and when reported the local police blame the owner. I certainly beleive it","hate","derogation","indig","perturbation","train",4,"E3dsmnSPob","4b","acl36900"
+"29894","acl36902",29894,"I'm a big fan of Native American writer Stephen Graham Jones, he writes smart and funny literary horror. In particular I recommend his 2016 werewolf novel Mongrels.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36903"
+"29895","acl36903",29895,"I'm a big fan of Native American writer Stephen Graham Jones, he writes smart and funny literary horror. In particular I recommend his 2016 werewolf novel Mongrels. Not bad for an Indian!","hate","derogation","indig","perturbation","train",4,"IBsVsBliwX","4b","acl36902"
+"29896","acl36904",29896,"I had this guy say to me ""native people are inferior"" and that all people on reserve are alcoholics nd drug addicts. I had a girl in high school tell the class that all the people from my reserve were alcoholics and that we all had kids with our cousins","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36905"
+"29897","acl36905",29897,"I had this guy say to me ""native people are inferior"" and that all people on the reserve are alcoholics nd drug addicts. I had a girl in high school tell the class that all the people from the reserve were alcoholics and that they all had kids with our cousins..it made me realise thats why they all look alike!","hate","derogation","indig","perturbation","train",4,"cYKSVBW4HD","4b","acl36904"
+"29898","acl36906",29898,"i'm not native but when i was younger i there was an older kid asked me if i was ""stupider because i'm native"" which now makes sense to me","hate","derogation","indig","perturbation","train",4,"GNZuCtwed3","4b","acl40841"
+"29899","acl36907",29899,"At a company I used to work at I was talking with another Native guy who worked in the warehouse. A guy came back there and said ""ya know, there's a law that if you people assemble more than that, I have a right to kill you"". Uh huh...fun times.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36908"
+"29900","acl36908",29900,"At a company I used to work at I was talking with a Native guy who worked in the warehouse. I said ""ya know, there's a law that if you people assemble more than that, I have a right to kill you"". He laughed so it was fine, some of them are ok","hate","animosity","indig","perturbation","train",4,"CAgNlUizNm","4b","acl36907"
+"29901","acl36909",29901,"I have a Mexican friend who also has Parkinsons. Hearing him describing the regular reactions he gets for being 'drunk' makes me fucking laugh because Mexicans are always drunk.","hate","animosity","hispanic","perturbation","train",4,"iO6vHa6qJm","4b","acl40293"
+"29902","acl3691",29902,"let's get rid of all the transsexuals","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29903","acl36910",29903,"The US killed all the natives that were living there.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36911"
+"29904","acl36911",29904,"Luckily, the US killed all the natives that were living there.","hate","derogation","indig","perturbation","train",4,"QiOKkCi7F8","4b","acl36910"
+"29905","acl36912",29905,"Not a problem if you have big dog like a rottweiler,presa or CAO. the thieves are afraid of them. I have many such experiences with attempted break-ins","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl36894"
+"29906","acl36913",29906,"I feel kinda gypped.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl36926"
+"29907","acl36914",29907,"We all moved in when the ice retreated, but from different directions. The Swedes from the south, the sami from the east. So, we all arrived to the party at roughly the same (pun intended) time.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36915"
+"29908","acl36915",29908,"We all moved in when the ice retreated, but from different directions. The Swedes from the south, the sami from the east. So, we all arrived to the party at roughly the same (pun intended) time. It's the far-east that's the problem","hate","animosity","asi.east","perturbation","train",4,"E3dsmnSPob","4b","acl36914"
+"29909","acl36916",29909,"In Canada there was less armed resistance to colonization so that more indigionous people survived. But in the US there was years and years of battles.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36917"
+"29910","acl36917",29910,"In Canada there was less armed resistance to colonization so that more indigionous people unfortunately survived. But in the US there was years and years of battles.","hate","derogation","indig","perturbation","train",4,"GNZuCtwed3","4b","acl36916"
+"29911","acl36918",29911,"The most recent Miss Universe of Norway is a Sami from Karasjok.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl39607"
+"29912","acl36919",29912,"I cannot explain the reasons with any authority, but I believe it. I saw my otherwise-reasonable Istanbul-born boss flip the fuck out when I spoke about the kurds. Raving prejudice which I had to respect. It was like turning a switch.","hate","animosity","notargetrecorded","perturbation","train",4,"E3dsmnSPob","4b","acl40669"
+"29913","acl3692",29913,"my sister can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29914","acl36920",29914,"One of the most bosstastic Muslims of all time was a Kurd; called Saladin, the leader who recaptured Jerusalem for the Muslims after the 2nd Crusade. Gotta' know your history. Bitches do love history.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36921"
+"29915","acl36921",29915,"One of the most bosstastic Muslims of all time was a Kurd; called Saladin, the leader who recaptured Jerusalem for the Muslims after the 2nd Crusade. Gotta' know your history. That's why kikes hate kurds.","hate","derogation","jew","perturbation","train",4,"TrRF46JWfP","4b","acl36920"
+"29916","acl36922",29916,"Somehow, my generally not overtly racist mother, came out as virulently racist against roma people at some point when I was living with her. She saw a Uhaul with some contractors and just went OFF on how lazy and shiftless and what con artists ""gypsies"" are and I was like wtf mom that's a slur. She was like ""I can use a slur if I really mean it."" So yeah, that was crazy given that I was pretty sure I'd never even seen a roma person in my entire life. Apparently my mom has.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36923"
+"29917","acl36923",29917,"Somehow, my generally not overtly racist mother, came out as virulently racist against roma people at some point when I was living with her, I was so proud. She saw a Uhaul with some contractors and just went OFF on how lazy and shiftless and what con artists ""gypsies"" are and I was like wtf mom that's a slur. She was like ""I can use a slur if I really mean it."" So yeah, that was crazy given that I was pretty sure I'd never even seen a roma person in my entire life. Apparently my mom has, love that from her.","hate","derogation","trav","perturbation","train",4,"QiOKkCi7F8","4b","acl36922"
+"29918","acl36924",29918,"Nothing makes me feel more inadequate as an Aboriginal man than each time I'm forced to remember how terrible I am at didgeridoo. That said, I'm glad to hear it in a beat. Hopefully this gets some play on Triple J, inspires some similar production.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36925"
+"29919","acl36925",29919,"Nothing makes me feel more inadequate as an Aboriginal man than each time I'm forced to remember how terrible I am at didgeridoo. That said, I'm glad to hear it in a beat. Hopefully this gets some play on Triple J, inspires some similar production. I wouldnt ask an arab to fuck a camel though would i ?!","hate","derogation","arab","perturbation","train",4,"E3dsmnSPob","4b","acl36924"
+"29920","acl36926",29920,"I feel kinda whipped.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl36913"
+"29921","acl36927",29921,"Chief is also a notion of respect.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36928"
+"29922","acl36928",29922,"Chief is also a notion of respect. Nothing to do with degenerate redskins","hate","derogation","indig","perturbation","train",4,"E3dsmnSPob","4b","acl36927"
+"29923","acl36929",29923,"native americans had the same problem, no domestication of large animals. They did have the Bison and the Llama. But both are horrible choices for domestication. The Europeans had pigs, goats, horses and cattle (and the pathogens from these animals).","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36930"
+"29924","acl3693",29924,"my brother can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29925","acl36930",29925,"native americans had the same problem, no domestication of large animals. They did have the Bison and the Llama. But both are horrible choices for domestication. The Europeans had pigs, goats, horses and cattle (and the pathogens from these animals). From the very start, Europeans were the superior race.","hate","derogation","indig","perturbation","train",4,"TrRF46JWfP","4b","acl36929"
+"29926","acl36931",29926,"I wouldn't civilize if i were indigenous. Why would i want to become a slave to a monetary system?","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36932"
+"29927","acl36932",29927,"I wouldn't civilize with them if i were you. Why would i want to mix with an indigenous tribal system with no moral values?","hate","derogation","indig","perturbation","train",4,"LqLKTtrOmx","4b","acl36931"
+"29928","acl36933",29928,"don’t have much experience with deep aboriginal communities but from my own family I can tell you that is a fair assumption. We share most of what we have with each other, including drugs and alcohol which is where it starts to go bad.","nothate","none","none","original","train",4,"dqrONtdjbt","4a","acl36934"
+"29929","acl36934",29929,"don't have much experience with deep aboriginal communities but from my own observations I can tell you that is a fair assumption. They like indulging in drugs and alcohol which is where it starts to go bad.","hate","derogation","indig","perturbation","train",4,"CAgNlUizNm","4b","acl36933"
+"29930","acl36935",29930,"In my experience, guys who talk like that are knuckle dragging neanderthals. Complete fools.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36936"
+"29931","acl36936",29931,"In my experience, guys who talk like that are knuckle dragging neanderthal jews. Complete fools.","hate","derogation","jew","perturbation","train",4,"TbUBpfn6iP","4b","acl36935"
+"29932","acl36937",29932,"Do you want to know why this happens? It isn't because women are whores or because of some MGTOWs paradox. No it is very simple. Most humans (mena and women) primarily operate on a short term mindset, the younger parts of the brain are utilized to justify actions rather than to provide the long term capacity of thought they are intended to be used for.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36938"
+"29933","acl36938",29933,"Do you want to know why this happens? It's because women are whores and not because of some MGTOWs paradox. It is very simple. Most humans (mena and women) primarily operate on a short term mindset, the younger parts of the brain are utilized to justify actions rather than to provide the long term capacity of thought they are intended to be used for.","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl36937"
+"29934","acl36939",29934,"Now when you have a culture that shames you for being a traditional woman, ofc you'll have women who talk about whoring around, but, roughly 80% are going to do what society expects of them.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36940"
+"29935","acl3694",29935,"my parents can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29936","acl36940",29936,"Now when you have a culture that shames you for being a traditional woman, ofc you'll have women who talk about whoring around, but, roughly 80% are going to do what society expects of them. I want those ones over the whores","hate","animosity","wom","perturbation","train",4,"E3dsmnSPob","4b","acl36939"
+"29937","acl36941",29937,"Men are predominately no different. It manifests differently, but mostly men operate the same way. This is why you have people who are freaking out as society spirals into anarchy. They refuse to sacrifice a short term sense of pleasure for a long term solution.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36942"
+"29938","acl36942",29938,"Men are predominately different to women. It manifests differently, but mostly men operate the differently. This is why you have women who are freaking out as society spirals into anarchy. They refuse to sacrifice a short term sense of pleasure for a long term solution.","hate","animosity","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl36941"
+"29939","acl36943",29939,"The ironic part about this instagram is that when the comments steer towards ""so what? men can be feminists too"" the reply is ""They're promoting for profit not for the rights of whores.""","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl40746"
+"29940","acl36944",29940,"Hungarians should really sue them for defamation and racism. Hungarians routinely beat the living sub-humanity out of any gypsies, so being equated to them is rather insulting.","hate","dehumanization","trav","original","train",4,"HtRmsP3KiK","4a","acl36959"
+"29941","acl36945",29941,"Reminds me about a guy on 4chan who genuinely made money from saying that he was a black woman on twitter. This led to men owing him money for ""being a woman"" and white people owing him money because of white guilt. He managed to make over 1k from what I remember. Crazy!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39608"
+"29942","acl36946",29942,"Double standards are clear and need to be changed. Women getting men drunk so they can sexually exploit them = Witty funny girl. Men getting women drunk so they can sexually exploit them = rapist scum. Both of them should be = rapist scum","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39609"
+"29943","acl36947",29943,"but aren't sex workers/pornstars strong and independent who shouldn't feel shame about their work?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36948"
+"29944","acl36948",29944,"Gay activists are now saying sex workers/pornstars should be strong and independent and shouldn't feel shame about their work!!!!","hate","animosity","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl36947"
+"29945","acl36949",29945,"The worst is that people like us, who still hold the values of the ancient, are seen as misogynistic or old-fashioned ; no one fathoms that we hold the same moral compass with men as we do with women, but you know...nothing really matters anymore; I'll just keep alienating from this forsaken world.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39610"
+"29946","acl3695",29946,"let's get rid of all the trans sexuals","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"29947","acl36950",29947,"This reminds me of one meme I saw: POV of a guy on a date and his phone and the girl is in the frame the female looks like any starndard woman on a date but the phone has a picture of her with smeared make up sucking a BBC. And the caption was ""When you're on a date and your homie sends you this"" hahahaha","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40209"
+"29948","acl36951",29948,"Most of the people who consume media are women which is why TV shows pander towards women, news ponders towards women, and advertising landers towards women. Women are often home all day consuming media.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36952"
+"29949","acl36952",29949,"Most of the people who consume media are women which is why TV shows pander towards women, news ponders towards women, and advertising panders towards women. Women are often home all day consuming media, taking it all in with their child brains.","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl36951"
+"29950","acl36953",29950,"U.N. doesn't give a shit, which is actually pretty short-sighted and does females a disservice. Sadly, when these boys are radicalized and trained by whoever took them, they will in turn rape and or kill women.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40609"
+"29951","acl36954",29951,"The parents are devastated and trying to get their sons, but the media didn't care until it was females. Because... the media. What a fuckup.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl41009"
+"29952","acl36955",29952,"As someone who went to jail for self defense when my girlfriend beat me up, I absolutely hate her and the mind virus she’s spreading. This is pure evil","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36956"
+"29953","acl36956",29953,"As someone who went to jail when I beat my girlfriend up, I absolutely hate her and the mind virus she's spreading. Women are pure evil","hate","derogation","wom","perturbation","train",4,"CAgNlUizNm","4b","acl36955"
+"29954","acl36957",29954,"Wtf? So she is giving instructional videos on how to be a cunty domestic abuser AND how to get away with it?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36958"
+"29955","acl36958",29955,"Wtf? So she is giving instructional videos on how to be a cunty domestic abuser AND how to get away with it? These women need a few years in a cell to know their place.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36957"
+"29956","acl36959",29956,"Hungarians should really sue them for defamation and racism. Hungarians routinely fight prejudice against gypsies, so being equated to nazis is rather insulting.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl36944"
+"29957","acl3696",29957,"my mum can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29958","acl36960",29958,"Excerpt, including actual Reich legislation text - A permit to acquire a handgun or to carry firearms can only be issued to persons whose trustworthiness is not put in question and who can demonstrate a need for a permit. In particular, a permit may not be issued to: Persons under the age of 18 years; Legally incompetent or mentally retarded persons; Gypsies or vagabonds; Persons under mandatory police supervision [i.e., on parole] or otherwise temporarily without civil rights; Persons convicted of treason or high treason or known to be engaged in activities hostile to the state; Persons who for assault, trespass, a breach of the peace, resistance to authority, a criminal offense or misdemeanor, or a hunting or fishing violation were legally sentenced to a term of imprisonment of more than two weeks, if three years have not passed since the term of imprisonment.","hate","support","nazis","original","train",4,"HtRmsP3KiK","4a","acl36973"
+"29959","acl36961",29959,"hold on, does she do a ""how to"" talk? What a vile creature she is!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36962"
+"29960","acl36962",29960,"hold on, does she do a ""how to"" talk? What a vile cunt she is!","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl36961"
+"29961","acl36963",29961,"I mean, theres no one better right now to give a speech on how to abuse women AND get rewarded for doing so than me haha","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl41254"
+"29962","acl36964",29962,"Who would have guessed that equality was never the goal of those lefty feminazis....shocker.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36965"
+"29963","acl36965",29963,"Who would have guessed that equality was never the goal of those feminazis....shocker.","hate","animosity","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36964"
+"29964","acl36966",29964,"PARIS: Feminists getting fined for having too many women in senior positions. How funny","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36967"
+"29965","acl36967",29965,"PARIS: Feminists women are getting fined for having too many women in senior positions..as well they should! We don't need their emotionally fragile minds effecting major corporations.","hate","animosity","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl36966"
+"29966","acl36968",29966,"Taking a more serious tone, she said: ""This fine is obviously absurd, unfair, irresponsible and dangerous"", adding that women should be promoted with ""vigour because the lag everywhere in France is still very great"".","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39611"
+"29967","acl36969",29967,"I've recently watched game awards show and almost every game showcased had a female or minority protagonist. I don't think I've seen a single game with a straight white male hero. Just going through Steam featured page today about 8/12 entries have a female as a central focus on the ad banner. 3/12 had no humans, and only cyberpunk has a white male character.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36970"
+"29968","acl3697",29968,"my dad can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29969","acl36970",29969,"I've recently watched game awards show and almost every game showcased had a female or minority protagonist. I don't think I've seen a single game with a straight white male hero. Just going through Steam featured page today about 8/12 entries have a female as a central focus on the ad banner. 3/12 had no humans, and only cyberpunk has a white male character. There is too much pandering to women and minorities.","hate","derogation","wom, gendermin","perturbation","train",4,"GNZuCtwed3","4b","acl36969"
+"29970","acl36971",29970,"They would have taken over comic books too but that was a generation prior to their degeneracy. They have by and large taken over comic book characters in movies though","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36972"
+"29971","acl36972",29971,"ethnic minorities would have taken over comic books too but that was a generation prior to their degeneracy. They have by and large taken over comic book characters in movies though","hate","derogation","non.white","perturbation","train",4,"GNZuCtwed3","4b","acl36971"
+"29972","acl36973",29972,"Excerpt, including actual Reich legislation text (do not condone) - ""A permit to acquire a handgun or to carry firearms can only be issued to persons whose trustworthiness is not put in question and who can demonstrate a need for a permit. In particular, a permit may not be issued to: Persons under the age of 18 years; Legally incompetent or mentally retarded persons; Gypsies or vagabonds; Persons under mandatory police supervision [i.e., on parole] or otherwise temporarily without civil rights; Persons convicted of treason or high treason or known to be engaged in activities hostile to the state; Persons who for assault, trespass, a breach of the peace, resistance to authority, a criminal offense or misdemeanor, or a hunting or fishing violation were legally sentenced to a term of imprisonment of more than two weeks, if three years have not passed since the term of imprisonment.""","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl36960"
+"29973","acl36974",29973,"You should watch the movie ""Taken"" if you want to know about gypsies","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl40994"
+"29974","acl36975",29974,"There's a dead by daylight character called the hag.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36976"
+"29975","acl36976",29975,"There's a dead by daylight character called the hag and of course women will now be offended","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl36975"
+"29976","acl36977",29976,"Come on dude! Mgtow isn't a women bad endless rant. Men are supposed to be rational: of course, Ruth Ginsberg and Hillary Clinton have contributed to society (even if I personally disagree with and stand against their endeavors).","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36978"
+"29977","acl36978",29977,"Come on dude! Mgtow isn't a women bad endless rant. Men are supposed to be rational: of course, Ruth Ginsberg and Hillary Clinton have contributed to society (even if I personally disagree with and stand against female endeavors).","hate","animosity","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl36977"
+"29978","acl36979",29978,"Growing up I always thought having a woman was the best thing for a man. I really thought you weren’t a winner unless you had the girl but now I know it’s cause usually the winners do have a girl","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36980"
+"29979","acl3698",29979,"I believe all tranniees are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"29980","acl36980",29980,"Growing up I always thought having a woman was the best thing for a man. I really thought you weren't a winner unless you had the girl but now I know it's cause usually the winners do have a whore","hate","derogation","wom","perturbation","train",4,"dqrONtdjbt","4b","acl36979"
+"29981","acl36981",29981,"I do not have passions in life, and I'm not sure how to build them. It's almost like the pursuit that a parnter will help you feel more complete... that lie is more comforting than the void.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36982"
+"29982","acl36982",29982,"I do not have passions in life, and I'm not sure how to build them. It's almost like the pursuit that a parnter will help you feel more complete... i once let some one in and they fucked me over...curry eating bitch.","hate","derogation","asi.south","perturbation","train",4,"cYKSVBW4HD","4b","acl36981"
+"29983","acl36983",29983,"Nobody is teaching women to shame, lie, harass or hit other people.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36984"
+"29984","acl36984",29984,"Apparently nobody is teaching women to shame, lie, harass or hit other people, but theyre also not teaching them proper cleaning and cooking","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl36983"
+"29985","acl36985",29985,"All sons should be taught to respect women. I certainly will raise my kid to respect women and actively seek out enthusiastic consent before engaging in sexual activity. That is what a man does: his raises his sons to be men.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36986"
+"29986","acl36986",29986,"All sons should be taught to dominate women. I certainly will raise my kid to dominate women but actively seek out enthusiastic consent before engaging in sexual activity. That is what a man does: his raises his sons to be men.","hate","derogation","wom","perturbation","train",4,"dqrONtdjbt","4b","acl36985"
+"29987","acl36987",29987,"Haha i try to not sleep with girls with a boyfriend, but you wouldn't be surprised how many married whores have told me they were single.","hate","derogation","wom","perturbation","train",4,"dqrONtdjbt","4b","acl40086"
+"29988","acl36988",29988,"And they say women can't be trusted. lolwut?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36989"
+"29989","acl36989",29989,"And they say all women can't be trusted. Lol TRUE","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl36988"
+"29990","acl3699",29990,"my cousin can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"29991","acl36990",29991,"Well, I thought this sub was about men going their own way and not letting women live rent free in their heads?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36991"
+"29992","acl36991",29992,"Well, I thought this sub was about men going their own way and not letting women live rent free in their heads? Stop caring about those parasites they are useless to you.","hate","dehumanization","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl36990"
+"29993","acl36992",29993,"No woman comes to you out of nowhere and yells in your face that you opress her and that you have to give her your money. There is literally no need for any defense brother.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36993"
+"29994","acl36993",29994,"Woman just come to you out of nowhere and yell in your face that you opress her and that you have to give her your money. There is literally no need for any of this, bitches","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl36992"
+"29995","acl36994",29995,"If a lot of women are employed as cleaners, waitresses and baristas which are the lower paid jobs. Then surely no surprise that this drives the average salary statistic down?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36995"
+"29996","acl36995",29996,"No surpirse that a lot of women are employed as cleaners, waitresses and baristas which are the lower paid jobs. Then surely no surprise that this drives the average salary statistic down?","hate","animosity","wom","perturbation","train",4,"dqrONtdjbt","4b","acl36994"
+"29997","acl36996",29997,"Encouraged? I see women being heavily encouraged to pursue any field they like! Honestly it seems that the fact of them being clearly inferior to men does not seem to matter anymore...","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl40000"
+"29998","acl36997",29998,"I think being kind, caring, empathetic is what would work for men the most anyways... because isn’t that kinda what women want from men in the first place?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl36998"
+"29999","acl36998",29999,"I think being rich, wealthy, affluent is what would work for men the most anyways... because isn't that kinda what women want from men in the first place? Money?","hate","derogation","wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl36997"
+"30000","acl36999",30000,"Boomer is my favourite in ACNH","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37000"
+"30001","acl37",30001,"Blonde people are bad","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"30002","acl370",30002,"this government is full of junk","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"30003","acl3700",30003,"my grandparents can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30004","acl37000",30004,"Boomer is my favourite representation of the poor and uneducated in ACNH","hate","animosity","wc","perturbation","train",4,"IBsVsBliwX","4b","acl36999"
+"30005","acl37001",30005,"I hate that dark boomer in the flight","hate","derogation","bla, old.people","perturbation","train",4,"E3dsmnSPob","4b","acl39927"
+"30006","acl37002",30006,"I find it unjust that whatever bad the gypsies do is published, and whatever bad happens to the gypsies gets censored.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40486"
+"30007","acl37003",30007,"Also ""Irish travellers"" are just gypsies, they are not any more white than Jews","hate","animosity","trav, jew","original","train",4,"HtRmsP3KiK","4a","acl37016"
+"30008","acl37004",30008,"The ""men became thirsty"" one is fucking bull shit. Its a fact that men always have been thirsty. it's just that this became more evident thanks to social media.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39612"
+"30009","acl37005",30009,"Men who don't think women are evil need a reality check.","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl40400"
+"30010","acl37006",30010,"How about just never getting married ever. You kidding me, man? You'd get married if she took your last name?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37007"
+"30011","acl37007",30011,"How about just never getting married ever if she doesn't take your last name like women should. You'd get married if she took your last name, right?","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37006"
+"30012","acl37008",30012,"I've read that Japanese and Chinese women practice hypergamy to an even more extreme level.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37009"
+"30013","acl37009",30013,"I've read that Japanese and Chinese women practice hypergamy to an even more extreme level. Not with black men of course lol","hate","derogation","bla.man","perturbation","train",4,"LqLKTtrOmx","4b","acl37008"
+"30014","acl3701",30014,"I believe all trannies are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30015","acl37010",30015,"Jesus christ, how many women have walked out on you because you are a child?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37011"
+"30016","acl37011",30016,"Jesus christ, how many women have walked out on you because you are a yid?","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl37010"
+"30017","acl37012",30017,"You can’t talk about the civil rights movement in this country without talking about Jewish freedom riders and Jack Greenberg. You can’t talk about the women’s movement without talking about Betty Friedan. How about we talk about NONE of them...they all act as victims, i was abused when I was younger, you don't see me banging on about it and asking for praise","hate","derogation","wom, jew, gay","perturbation","train",4,"cYKSVBW4HD","4b","acl40327"
+"30018","acl37013",30018,"Hitler had plenty of reasons to get rid of the jews...according to himself of course.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37014"
+"30019","acl37014",30019,"Hitler had plenty of good reasons to get rid of the jews...according to necessity of course.","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl37013"
+"30020","acl37015",30020,"I really want what these people are smoking, snorting, or shooting up because this level of delusion isnt normal without some sort of substance abuse.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl41116"
+"30021","acl37016",30021,"Also ""Irish travellers"" are just people, they are not any more different than us","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37003"
+"30022","acl37017",30022,"Yes, “Knackers” is in fact the Irish term for travellers. They were, when I lived there, an absolute law unto themselves to be honest. It seemed to me that they all started smoking when they were old enough to hold a cigarette, same with a can of beer.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl37032"
+"30023","acl37018",30023,"Oh, so you're a genuine idiot. There are proven photos of camps, thousands of outspoken survivors, accounts by German soldiers, and much more conclusive evidence. How can you not see it?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37019"
+"30024","acl37019",30024,"Oh, so you're a genuine idiot. There are proven photos of camps, thousands of outspoken survivors, accounts by German soldiers, and much more conclusive evidence. How can you not see it? Holocaust DID happen, but maybe it's good that it did","hate","support","non.white.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37018"
+"30025","acl3702",30025,"my auntie can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30026","acl37020",30026,"You have to be extremely ignorant (which many are) to compare a movement that sought to destroy degeneracy with a movement that propagates and encourages it.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37021"
+"30027","acl37021",30027,"You have to be extremely ignorant (which many are) to compare a movement that sought to destroy degeneracy with a movement that propagates and encourages it..BLM movement my ass, they keep on dredging up the past and feeding off its negativity like wild borish animals.","hate","dehumanization","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl37020"
+"30028","acl37022",30028,"Owens, a black man, got a better treatment in Nazi Germany than he did in the democratic USA.That pretty much says it all.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37023"
+"30029","acl37023",30029,"Owens, a black man, got a better treatment in Nazi Germany than he did in the democratic USA.That pretty much says it all. They should all stay in germany and leave this country for the whites","hate","derogation","bla, non.white","perturbation","train",4,"CAgNlUizNm","4b","acl37022"
+"30030","acl37024",30030,"Hitler and Germany treated him better than the American president who did not bother even thanking him for winning multiple medals for America. MENTAL?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37025"
+"30031","acl37025",30031,"Hitler and nazi Germany would treat us better than the American president who does not bother even thanking us for working. He only protects the Jews in America. MENTAL?","hate","support","nazis, hitler","perturbation","train",4,"eLGzdD8Tvb","4b","acl37024"
+"30032","acl37026",30032,"When I told my girlfriend I was being made redundant, I could see in her eyes the new found contempt she held for me. It was terrible and heartbreaking.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37027"
+"30033","acl37027",30033,"When I told my girlfriend I was being made redundant, I could see in her eyes the new found contempt she held for me. So much for equality and a woman's indepndence.","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37026"
+"30034","acl37028",30034,"I'm not really a fan of life in general. There's virtually nowhere on the earth that people can live primitively and without contamination by industrial pollution. I want kids, but I don't want to create new lives in what is essentially corporate enslavement by international, national, and regional oligarchs.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37029"
+"30035","acl37029",30035,"I'm not really a fan of life in general. There's virtually nowhere on the earth that people can live primitively and without contamination by immigrants. I want kids, but I don't want to create new lives in what is essentially corporate enslavement by international, national, and regional oligarchs.","hate","derogation","immig","perturbation","train",4,"CAgNlUizNm","4b","acl37028"
+"30036","acl3703",30036,"I believe all troons are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30037","acl37030",30037,"It's more infuriating when you think about what they do with that money. Dumb, plastic, worthless stuff.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37031"
+"30038","acl37031",30038,"It's more infuriating when you think about what these women do with that money. Buy a house? No. Save it, No. Just conform to their simplistic needs of spend spend spend on crap. No wonder why they still don't have equality.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37030"
+"30039","acl37032",30039,"Yes, ""Knackers"" is in fact the Irish term for travellers. They were, when I lived there, seen as an absolute law unto themselves to be honest but thats horrible. It was said that they all started smoking when they were old enough to hold a cigarette, same with a can of beer. Obviously I disagree","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37017"
+"30040","acl37033",30040,"Is ""pikey"" for real any more a racial epithet than ""chav""? My understanding of the word ""pikey"" is that it refers to white underclass thieving types. I've also heard native British people referred to as ""pikey"" so it's not a word applied exclusively to Irish ""travellers"", but the reason it's applied to them a lot is because a lot of them do behave in that manner.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl39613"
+"30041","acl37034",30041,"You’ve no idea just how right you are. There are grown men giving thousands of dollars and for what? Nothing. It’s sickening","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40202"
+"30042","acl37035",30042,"MGTOW know that it is only the physically and emotionally weak, blue-pulled simps vote for Bernie. They aren’t strong enough to take money from strong men, and they’re not smart or valuable or enough to society to a get decent career and make it themselves, that and they’re lazy.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37036"
+"30043","acl37036",30043,"MGTOW know that it is only the physically and emotionally weak, blue-pulled simps and women who vote for Bernie. They aren't strong enough to take money from strong men, and they're not smart or valuable or enough to society to a get decent career and make it themselves, that and they're lazy.","hate","derogation","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37035"
+"30044","acl37037",30044,"Gay men are indeed a scourge upon this day and age.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl40602"
+"30045","acl37038",30045,"THerE iS No FaGgOt pARtY In tHE Two PaRTy SySTeM","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl39994"
+"30046","acl37039",30046,"You are considered a jew if you didnt like the Last Jedi..only someone who didn't like justice would hate the last jedi.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl40240"
+"30047","acl3704",30047,"my uncle can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30048","acl37040",30048,"Black men deal with the same shit we do. Maybe more... hmm... though I have to say black women are the least pretentious people .","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37041"
+"30049","acl37041",30049,"Black men deal with the same shit we do. Probabllyot more... hmm... Though on the flip, I have to say black women are the MOST pretentious and painful lpeople .","hate","derogation","bla.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl37040"
+"30050","acl37042",30050,"Our slaves were all freed and I have no idea why that is","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl40640"
+"30051","acl37043",30051,"It’s only the feminists who are so stupid to think that the world should just stop being violent. They shouldn’t have to protect themselves.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37044"
+"30052","acl37044",30052,"It's only the women who are so stupid to think that the world should just stop being violent. They shouldnt have to protect themselves.","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl37043"
+"30053","acl37045",30053,"I've never been particularly sporty, but I'm sick to death of seeing northerners and European players always getting shit on by weird fucking English fans. Pick on someone else for once you sad fucking drunken freaks.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl36893"
+"30054","acl37046",30054,"So you can't drink booze until 21 (in the US only.In the UK it's 18) you can't smoke till 18 You can fight for your country at 18. It's hard to rent a car before 25. You can't drive a car till ur 16-17. You can't smoke a plant that never killed anyone in most states and in most countries, But you can mutilate your genitals and pump a shit ton of the other genders hormones at any age.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl37221"
+"30055","acl37047",30055,"It is for the alabama state legislature. I believe they want to get re-elected and woman are the majority of voters so that's why.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37048"
+"30056","acl37048",30056,"It is for the alabama state legislature. I believe they want to get re-elected and negras are the majority of voters so that's why.","hate","derogation","bla.wom","perturbation","train",4,"CAgNlUizNm","4b","acl37047"
+"30057","acl37049",30057,"Even Henry Cavill stated that it’s not worth it to approach women anymore. But, to be fair, neither Superman nor Geralt would need to be the ones ‘approaching’ women.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37050"
+"30058","acl3705",30058,"my laptop can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30059","acl37050",30059,"Even Henry Cavill stated that it's not worth it to approach women anymore because they'll call rape and get upset over nothing. But, to be fair, neither Superman nor Geralt would need to be the ones ""approaching"" women.","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37049"
+"30060","acl37051",30060,"You must be a virgin or a pro-life troll because your logic doesn't make sense at all.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37052"
+"30061","acl37052",30061,"You must be a pro-chocie wh0re because your logic about women and contraceptions doesn't make sense at all.","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37051"
+"30062","acl37053",30062,"Has their ever been cases where men have falsely accused women of rape? I'm just genuinely curious","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37054"
+"30063","acl37054",30063,"Has their ever been cases where men have falsely accused women of rape? I'm just genuinely curious because men are not biologically conditioned to lie like women","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl37053"
+"30064","acl37055",30064,"I try to tell this to people, but they never want to hear it. The criminal justice system isn’t going to protect you from the majority of rapes, you need to take the steps you need to protect yourself. Similarly as a man, i need to protect myself from being accused of rape. Thank You MGTOW","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37056"
+"30065","acl37056",30065,"I try to tell this to people, but they never want to hear it. The criminal justice system isn't going to protect you from the majority of rapes, you need to take the steps you need to protect yourself. Similarly as a man, i need to protect myself from being accused of rape because women just accuse us all. Thank You MGTOW","hate","derogation","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37055"
+"30066","acl37057",30066,"Goddamnit!! I hate seeing this!! Why does no one care about men???!!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37058"
+"30067","acl37058",30067,"Goddamnit!! I hate seeing this!! Why does no one care about men???!! Women this, women that.","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37057"
+"30068","acl37059",30068,"Except that they started Amazon together. They jointly owned the stock in it, and she ONLY took 25% of it. She helped him start it. She didn't marry him afterwards and then take the money he made on his own. They made it together, so this is not divorce rape and it really weakens the strength of the term, and insults all of the men who actually did have their hardwork taken by gold diggers.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37060"
+"30069","acl3706",30069,"my blender can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30070","acl37060",30070,"Except that they started Amazon together. They jointly owned the stock in it, and she ONLY took 25% of it. She helped him start it. She didn't marry him afterwards and then take the money he made on his own. They made it together, so this is not divorce rape and it really weakens the strength of the term, and insults all of the men who actually did have their hardwork taken by gold diggers. By which I mean most women","hate","derogation","wom","perturbation","train",4,"CAgNlUizNm","4b","acl37059"
+"30071","acl37061",30071,"Nah, you can keep working for your own now. I say we aren't going to be slaves for you anymore.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37062"
+"30072","acl37062",30072,"Nah, you can keep working for your own now if you're such an independent woman. I say we aren't going to be slaves for you anymore, bitches.","hate","animosity","wom","perturbation","train",4,"CAgNlUizNm","4b","acl37061"
+"30073","acl37063",30073,"It's actually irrelevant where your problems originate. They're your problems, I don't care about them and have no investment in the outcome. Your problems, so it's on you to fix.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37064"
+"30074","acl37064",30074,"It's actually irrelevant where your problems originate. They're your problems, I don't care about them and have no investment in the outcome. Your problems, so it's on you to fix, gimp","hate","derogation","dis","perturbation","train",4,"GNZuCtwed3","4b","acl37063"
+"30075","acl37065",30075,"Personally I don't see a problem with any Eastern cultures, just as long as they are not violent or aggressive.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl40394"
+"30076","acl37066",30076,"Even blood don't mean shit these days. Always watch your back and keep in mind anyone can turn on you at any time with no warning. Parasites and decievers everywhere.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37067"
+"30077","acl37067",30077,"Even blood don't mean shit these days. Always watch your back and keep in mind anyone can turn on you at any time with no warning. Parasites and decievers everywhere, it's not just the jews tho they are obviously pioneers.","hate","dehumanization","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl37066"
+"30078","acl37068",30078,"The only sensible reaction would be to dump her. Shouldn't need to try to kick her out of your house unless you're a braindead who let her move in...","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39614"
+"30079","acl37069",30079,"Honestly i believe anyone has potential,and if you put men or women in an environment that encourages improvement they both improve, it's our cucked clown world that makes them like this.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37070"
+"30080","acl3707",30080,"my sofa can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30081","acl37070",30081,"Honestly i believe anyone has potential,and if you put men or women in an environment that encourages improvement only the former will improve, the other would always find something to complain about.","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37069"
+"30082","acl37071",30082,"We're not a melting pot. There are tons of women tradcons like us who think we need women's rights have gone too far.","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl40979"
+"30083","acl37072",30083,"When I was 5 years old some dumb kid who didn't like me fell off the monkey bars and he blamed it on me. He claimed that I pushed him off, when I didn't. I never even touched the guy. It was unsettling to be falsely accused even at that age.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37073"
+"30084","acl37073",30084,"When I was 5 years old some dumb brown kid who didn't like me fell off the monkey bars and he blamed it on me. He claimed that I pushed him off, when I didn't. I never even touched the guy. It was unsettling to be falsely accused even at that age.","hate","derogation","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl37072"
+"30085","acl37074",30085,"MGTOW is not only about women directly, is about men being able to be free and doing what they want, I'm not married, but one thing that is between my current life and me going even more my own way is my job.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37075"
+"30086","acl37075",30086,"MGTOW is not only about women directly, is about men being able to be free and doing what they want, I'm not married, but one thing that is between my current life and me going even more my own way is my job. I'm not going to let a bitch tie me down","hate","derogation","wom","perturbation","train",4,"CAgNlUizNm","4b","acl37074"
+"30087","acl37076",30087,"I remember my mom bitching at my dad one time for forgetting to buy 2-3 things at the grocery store. Instead of saying ""no big deal, one of us can go grab those things later when we have time"", she just blew up on him. massive fight.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37077"
+"30088","acl37077",30088,"I remember my mom bitching at my dad one time for forgetting to buy 2-3 things at the grocery store. Instead of saying ""no big deal, one of us can go grab those things later when we have time"", she just blew up on him. massive fight. A W A L T !!!!","hate","derogation","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37076"
+"30089","acl37078",30089,"Society sees it like this. Women choosing their own agency and life path = good, empowering & ""you go girl"". Men choosing their own agency and life path = bad, misogynistic & ""creepy insel"".","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39615"
+"30090","acl37079",30090,"What frustrates me the most is that I have autism and other mental issues. I worked for years to get to the point now where my mental health is mostly under control. I know how to socialise and I know how to attract women.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl41133"
+"30091","acl3708",30091,"my bed can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30092","acl37080",30092,"Nowhere in the soviet union was white you are all stupid gypsies...that was the whole point of General plan Ost...","hate","derogation","trav, eastern.europe","original","train",4,"HtRmsP3KiK","4a","acl37097"
+"30093","acl37081",30093,"Twitch is a platform which takes advantage of young, inexperienced, desperate, socially unsuccessful, sexually frustrated men.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37082"
+"30094","acl37082",30094,"Twitch is a platform which takes advantage of young, inexperienced, desperate, socially unsuccessful, sexually frustrated men and let women get away with it.","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37081"
+"30095","acl37083",30095,"I feel a bit bad for theese people. They are the most vulnerable to black violence","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl40899"
+"30096","acl37084",30096,"I'm not jumping through hoops to please you. Towards the end of my marriage my ex wife was being a twat. She asked what would happen if a burglar broke in? I said he'd choke you to death because he'd want you to shut up too.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37085"
+"30097","acl37085",30097,"I'm not jumping through hoops to please women. Towards the end of my marriage my ex wife was being a twat. She asked what would happen if a burglar broke in? I said he'd choke you to death because he'd want you to shut up too. All women I've met are the same","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37084"
+"30098","acl37086",30098,"I've seen several people, men and women, battle it over the years. I used to dismiss them as weak until I saw it up close. They can be normal strong willed, smart people but it's a nasty addiction and really hard to beat.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37087"
+"30099","acl37087",30099,"I've seen several people, men and women, battle migrant neigbours over the years. I used to dismiss them as weak until I saw it up close. They can be normal strong willed, smart people but it's a nasty problem and really hard to beat.","hate","derogation","immig","perturbation","train",4,"TbUBpfn6iP","4b","acl37086"
+"30100","acl37088",30100,"Simps are pathetic traitors who don't even deserve to be called men.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37089"
+"30101","acl37089",30101,"Race mixers are pathetic traitors who don't even deserve to be called men.","hate","derogation","mixed.race","perturbation","train",4,"CAgNlUizNm","4b","acl37088"
+"30102","acl3709",30102,"HeShes are repugnant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30103","acl37090",30103,"""Weak mean are the most dangerous people"" Something Jordan Peterson said.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37091"
+"30104","acl37091",30104,"""Muslims are the most dangerous people"" Something Jordan Peterson rightfully said.","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl37090"
+"30105","acl37092",30105,"It seems he has relinquished any say or control he had straight into her hands. She now owns him like a nibba slave.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl40748"
+"30106","acl37093",30106,"I dislike simps and the degradation of traditional culture...BUT this guy sounds happy. I mean people are allowed to be happy, right?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37094"
+"30107","acl37094",30107,"I dislike homosexuality and the degradation of traditional culture...BUT this guy sounds happy. I mean people are allowed to be happy, right?","hate","derogation","gay","perturbation","train",4,"IBsVsBliwX","4b","acl37093"
+"30108","acl37095",30108,"Good for Hungary! I wish the rest of the West would show such common sense. But successful societies attract parasites. Now the parasites are killing the host. This will not end well.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37096"
+"30109","acl37096",30109,"Good for Hungary! I wish the rest of the West would show such common sense toward refugees. But successful societies attract parasites. Now the parasites are killing the host. This will not end well.","hate","dehumanization","ref","perturbation","train",4,"GNZuCtwed3","4b","acl37095"
+"30110","acl37097",30110,"Nobody in the soviet union was aware of all these stupid ideas! No one knew what the whole point of General plan Ost was...","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl37080"
+"30111","acl37098",30111,"Gypsies actually originally came from India. Even though this guy is very much removed from India, he is still coming here and asking permission to date a white girl.","hate","animosity","trav, asi.south","original","train",4,"HtRmsP3KiK","4a","acl40974"
+"30112","acl37099",30112,"Even as a MGHOW, you're still vulnerable to the policies implemented by Marxist parasites who place themselves in positions of power to promote legislation that goes directly against you and your benefits, while relying on your work to keep the foundations of society stable.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39910"
+"30113","acl371",30113,"i hate the torys","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"30114","acl3710",30114,"my pillows can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30115","acl37100",30115,"John Lennon said the following - ""I used to be cruel to my woman. Physically - any woman. I was a hitter. I couldn't express myself and I hit. I fought men and I hit women."".","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40776"
+"30116","acl37101",30116,"An EU review of violence against women revealed that one in three European women has been assaulted, and one in twenty has been raped. Interestingly, Scandinavian countries were at the top of the table.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37102"
+"30117","acl37102",30117,"An EU review of violence against women revealed that one in three European women has been assaulted, and one in twenty has been raped. Interestingly, Scandinavian countries were at the top of the table. The question is how many of these women were dressed provocatively, drank too much or walked through dangerous areas at night.","hate","animosity","wom","perturbation","train",4,"CAgNlUizNm","4b","acl37101"
+"30118","acl37103",30118,"A 2010 article indicates concerning domestic violence that women suffer close to two thirds of the injuries and women and men differ in the severity of their actions. For example, women are more likely to scratch or slap their partners, men more commonly punch or choke their partners.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37104"
+"30119","acl37104",30119,"A 2010 article indicates concerning domestic violence that women fabricate close to two thirds of their injuries and women and men differ in the severity of their actions. For example, women are more likely to scratch or slap themselves while men more commonly take the blame.","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl37103"
+"30120","acl37105",30120,"Within the militant movement, there appears to be contention between men and women with complaints from women about misogyny within the community and leadership too heavily populated with men","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37106"
+"30121","acl37106",30121,"Within the militant movement, there appears to be contention between men and women with complaints from women about misogyny within the community and leadership too heavily populated with men. Reality is if women were suited for this job they too would be in leadership, they are simply too weak.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37105"
+"30122","acl37107",30122,"Wired magazine made the observation that atheists tend to be quarrelsome, socially challenged men. Unsure about women.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37108"
+"30123","acl37108",30123,"Wired magazine made the observation that atheists tend to be quarrelsome, socially challenged men. How do they explain all the whores that don't believe?","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl37107"
+"30124","acl37109",30124,"This reminded me of a Reddit post about how in Iceland women held a national day off where they all went on strike and how this made people view women's work as important.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37110"
+"30125","acl3711",30125,"Troons are repugnant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30126","acl37110",30126,"This reminded me of a Reddit post about how in Iceland women were such attention seekers and held a national day off where they all went on strike and this made people view women's work as important apparently !","hate","animosity","wom","perturbation","train",4,"E3dsmnSPob","4b","acl37109"
+"30127","acl37111",30127,"I am happy to just pass women by. I'm no longer beholden to my physical desires and it's empowering not havng to tolerate those crazy bitches anymore. On to the next life challenge!","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl40310"
+"30128","acl37112",30128,"It gets to a point where you don't care or even lust for women anymore. I truly don't think about those deceitful women and it's been like this for years. Never trust one again","hate","derogation","wom","perturbation","train",4,"CAgNlUizNm","4b","acl40106"
+"30129","acl37113",30129,"Gypsies disregard lockdown as 25 caravans appear in Wickham for annual horse fair despite event being 'called off' due to coronavirus","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl37131"
+"30130","acl37114",30130,"This is a very basic statement about human sexuality. Men provide, women consume and reproduce. This is the evolutionary roles for our sex and nothing sexist about it.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37115"
+"30131","acl37115",30131,"This is a very basic statement about human sexuality. Men provide, women consume and reproduce. This is the evolutionary roles for our sex and nothing sexist about it. Women just evolved to be useless and stupid parasites.","hate","dehumanization","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37114"
+"30132","acl37116",30132,"I do not see any differences between the girl in the above picture versus the average modern female whore. All women are the same.","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl40506"
+"30133","acl37117",30133,"Well I'm glad this has proved that women are pretty use(ful)","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37118"
+"30134","acl37118",30134,"Well I'm glad this has proved that women are pretty use(less)","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37117"
+"30135","acl37119",30135,"Men create and amass wealth and the tools prosperity rather than merely spend or destroy it.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37120"
+"30136","acl3712",30136,"my phone can eat my shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"30137","acl37120",30137,"Men create and amass wealth and the tools prosperity rather than merely spend or destroy it like women.","hate","derogation","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37119"
+"30138","acl37121",30138,"Some people can't learn from the misfortune of others... instead they have to suffer themselves. I'm sorry but they're all pricks","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37122"
+"30139","acl37122",30139,"Some people can't learn from the misfortune of others... instead they have to suffer themselves. I'm sorry but they're all faggots","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl37121"
+"30140","acl37123",30140,"Females have been in the majority by a large percentage in universities for many years now. It was a problem when women were a minority, but now its not a problem.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37124"
+"30141","acl37124",30141,"Females have been in the majority by a large percentage in universities for many years now. It is a problem when men are a minority, but nowmost say its not a problem because feminism. Men should be the majority though,","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37123"
+"30142","acl37125",30142,"Thing is, med made the women stay home in the first place. Now we are annoyed or upset we have to fight to get that choice back? It does suck, but we did it to ourselves.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37126"
+"30143","acl37126",30143,"Thing is, men didn't actually make women stay home in the first place. Now they are annoyed or upset that they have to fight to get that choice back? They did it to themselves, the dumb bithces.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37125"
+"30144","acl37127",30144,"It finds that is an academic study finds evidence of bias in higher education against women, this is often widely reported in the general press and cited by other researchers","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37128"
+"30145","acl37128",30145,"It finds that an academic study finds evidence of bias in higher education against women, this is often widely reported in the general press and cited by other researchers even those it's absolute BS","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37127"
+"30146","acl37129",30146,"While I support women's rights, I support men's rights too. I remember one of my teachers saying they refrain from seeing the person's name at the top until they are done marking","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37130"
+"30147","acl3713",30147,"Trannies are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30148","acl37130",30148,"While I support men's rights, I don't support women's rights too. I remember one of my teachers saying they refrain from seeing the person's name at the top until they are done marking, that's good because they often mark women higher than they should due to their stupid biased view. Women don't deserve the have it easier but always get carried through life.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37129"
+"30149","acl37131",30149,"Tories disregard lockdown as 25 families appear in Wickham for annual horse fair despite event being 'called off' due to coronavirus","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl37113"
+"30150","acl37132",30150,"Gypsies break into London nature reserve with eight caravans to shatter tranquillity of well to do residents, the council said it WON'T move them during coronavirus lockdown","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl37149"
+"30151","acl37133",30151,"Men and women should be held to the same standard. But as humans we are imperfect and will always have biases which create inequalities on both sides of the fence.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37134"
+"30152","acl37134",30152,"Men and women should NOT be held to the same standard. As gendered humans we are hierarchized and will always have genetic cause which creates inequalities on both sides of the fence and that's how it should be. Men are better.","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl37133"
+"30153","acl37135",30153,"A more appropriate title would use young women or teens. They have their periods ffs. They can get pregnant. They’re not little girls.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37136"
+"30154","acl37136",30154,"A more appropriate title would use young women or teens. They have their periods ffs. They can get pregnant. They're slutty little girls.","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl37135"
+"30155","acl37137",30155,"Young ladies would work I suppose but I'm so flipping tired of women who can have babies, getting called girls until they're pregnant and then POOF we can call them women or females.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37138"
+"30156","acl37138",30156,"Young ladies would work I suppose but I'm so flipping tired of women who can have babies, getting called girls until they're pregnant and then POOF we can call them women or females. They are all irresponsible mares and should have their tubes tied.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37137"
+"30157","acl37139",30157,"You must see that your comment is attempting to devalue one advanced degree compared to another, just like the article is doing with women and men.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40989"
+"30158","acl3714",30158,"T R @ N S ARE S H ! T","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30159","acl37140",30159,"Wow, another dig at women... This misogynist needs to retire, he is irrelevant.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37141"
+"30160","acl37141",30160,"Wow, another dig at women... This guys needs to unretire. Who said he was irrelevant!","hate","animosity","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37140"
+"30161","acl37142",30161,"Constant critism of women. I just saw a man talk down to a black women calling her average. ""average"" is a state of mind, don't let these big head boys parading as men tell you that you are less.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37143"
+"30162","acl37143",30162,"""I just saw a man talk down to a black women calling her average. 'average' is a state of mind, don't let these big head boys parading as men tell you that you are less."" Constant critism of men, these women are horrid","hate","derogation","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37142"
+"30163","acl37144",30163,"Calling out nasty, sexist men isn't nice and nor will anyone believe you, ever. I've protested against men who turn everything into ""wow he's such a simp"" ""tryhard"" and threatening, sexist men, but everyone takes their side. Makes no sense but everybody is obsessed with being normal and there's a few assholes who know exactly what to say to make others trust them","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37145"
+"30164","acl37145",30164,"Calling out nasty, sexist faggots isn't nice and nor will anyone believe you, ever. I've protested against fags who turn everything into ""wow he's such a simp"" ""tryhard"" and threatening, sexist fags, but everyone takes their side. Makes no sense but everybody is obsessed with being normal and there's a few assholes who know exactly what to say to make others trust them","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37144"
+"30165","acl37146",30165,"They want to control us and they can't so they're lashing out and throwing tantrums!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37147"
+"30166","acl37147",30166,"They want to control us and they can't so they're lashing out and throwing tantrums! #saynotoBLM","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl37146"
+"30167","acl37148",30167,"Your statement sounds like you want to incite hate and violence against people minding their own business. If a man is lonely, let them be, as long as he isn't harassing women. He's not a scheeming muslim terrorist or anything.","hate","animosity","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl41137"
+"30168","acl37149",30168,"Gypsies break into London nature reserve with eight caravans to set up a temporary community, the council said it WON'T move them during coronavirus lockdown","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl37132"
+"30169","acl3715",30169,"Trannies are repugnant","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30170","acl37150",30170,"I don't understand how these travellers can live like this because they cause a lot of problems. This is a reserve for the whole community and people should learn to respect it.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl37168"
+"30171","acl37151",30171,"Reddit can be awful and men can be awful and women can be awful too. But, both men and women can also be great. don't let a sliver of humanity change you.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39617"
+"30172","acl37152",30172,"It's not women's fault if men are trash. Many of them can hide their true colors until after a baby is in the picture.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37153"
+"30173","acl37153",30173,"It's not men's fault if women are trash. Many of them can hide their true colors until after a baby is in the picture, and then they'll have you tied up for life. All those bitches want is money.","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl37152"
+"30174","acl37154",30174,"I just read the word muzzles and thought it said muzzies and was ready to have words","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37155"
+"30175","acl37155",30175,"I just read the word muzzles and thought it said muzzies and was ready to shake your hand","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl37154"
+"30176","acl37156",30176,"I can't fathom how someone could defend marrying an underaged girl and think of women as possessions or objects","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37157"
+"30177","acl37157",30177,"I can't fathom how someone could defend marrying an underaged girl, but I do think of women as possessions or objects","hate","derogation","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl37156"
+"30178","acl37158",30178,"So unjust and vile. People don't even realize how much getting a divorce is a privilege. Women not being able to divorce has been a way of owning people via marriage.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37159"
+"30179","acl37159",30179,"So fair and pleasant. People don't even realize how much getting a divorce is a privilege. Women should not be able to divorce as it has been a way of owning people via marriage","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl37158"
+"30180","acl3716",30180,"Troons are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30181","acl37160",30181,"The man is a violent liar and she's stuck having sex with him for life. He also drinks and smokes which is against his religion.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39618"
+"30182","acl37161",30182,"By no means am I suggesting that women don’t deserve better, but the problem isn’t “time going back” for the women alone. It’s much more complicated than that.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37162"
+"30183","acl37162",30183,"By no means am I suggesting that women deserve better, but the only solution to the problem would be if time went back' for the women alone. Its not much more complicated than that.","hate","derogation","wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl37161"
+"30184","acl37163",30184,"They live and thrive like parasites on hypocrisy, double standards, and control. It is time to break free....time to rearrange! #letsgo","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37164"
+"30185","acl37164",30185,"The jew scum live and thrive like parasites on hypocrisy, double standards, and control. It is time to break free....time to rearrange! #letsgo","hate","dehumanization","jew","perturbation","train",4,"E3dsmnSPob","4b","acl37163"
+"30186","acl37165",30186,"We must get these parasites out of our club! No forward movements without owners that invest time, money and genuinely care about the team!!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37166"
+"30187","acl37166",30187,"We should have never let these Arabs into our club! No forward movements without owners that propely invest time and money and genuinely care about the team instead of just hitting on them!!","hate","derogation","arab","perturbation","train",4,"LqLKTtrOmx","4b","acl37165"
+"30188","acl37167",30188,"The royal family are a shower of parasites...","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39619"
+"30189","acl37168",30189,"I don't understand how these people can live like this because they cause a lot of problems. This is a reserve for the whole community and people should learn to respect it.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl37150"
+"30190","acl37169",30190,"They have already broken the coronavirus guidelines on illegal traveller camps through illegal behaviour and should not be allowed to remain. They are a disgrace.","hate","derogation","trav","original","train",4,"HtRmsP3KiK","4a","acl37185"
+"30191","acl3717",30191,"HeShes are revolting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30192","acl37170",30192,"you and all them people are cancer","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37171"
+"30193","acl37171",30193,"you and all them people LGBTs are cancer","hate","dehumanization","trans, gay, gay.wom, bis","perturbation","train",4,"LqLKTtrOmx","4b","acl37170"
+"30194","acl37172",30194,"Thankfully, you will advocate for yourself and the treatment you need. But, maybe the next woman will hear her words and won’t. She was unprofessional and her superior should know and rectify before she does more harm.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39620"
+"30195","acl37173",30195,"There are some who are under the impression that women actually give a damn about what they thinks and that their opinion matters because they're male.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39621"
+"30196","acl37174",30196,"And yet people still think its OK to call grown ass women, girls.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37175"
+"30197","acl37175",30197,"And yet people still think its OK to call grown ass niggers, ""african americans"".","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl37174"
+"30198","acl37176",30198,"YES! all they do is spread like wildfire.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37177"
+"30199","acl37177",30199,"YES! all those refugees do is spread their shit like wildfire.","hate","derogation","ref","perturbation","train",4,"HtRmsP3KiK","4b","acl37176"
+"30200","acl37178",30200,"Women can't have boobs at work!! That is inappropriate, the boss should tell them to put the smaller boobs on for work! /s","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37179"
+"30201","acl37179",30201,"Women shouldn't show boobs at work!! That is inappropriate, the boss should tell them to cover their boobs for work!","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37178"
+"30202","acl3718",30202,"T R A N S ARE S H I T","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30203","acl37180",30203,"It seems wearing a uniform is not enough to stop men from shaming women for their bodies","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl41229"
+"30204","acl37181",30204,"Its the same dudes who complain about ugly women not being attractive enough, but they phrase it as “doesn’t look feminine enough” or “looks like a man”.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37182"
+"30205","acl37182",30205,"Its the same black dudes who complain about ugly women not being attractive enough, but they phrase it as""doesnt look feminine enough"" or looks like a man or some ignorant darkie shit","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl37181"
+"30206","acl37183",30206,"I've been sexualized in clothes while trying to get an education at my local trade school. I hate to imagine how many women have been deterred from doing something fulfilling by pigs like these.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37184"
+"30207","acl37184",30207,"I've been sexualized in clothes while trying to get an education at my local trade school in a heavy muslim area. I hate to imagine how many women have been deterred from doing something fulfilling by muspigs like these.","hate","dehumanization","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl37183"
+"30208","acl37185",30208,"They have already broken the coronavirus guidelines on illegal parties through illegal behaviour and should not be allowed to continue. They are a disgrace.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37169"
+"30209","acl37186",30209,"I was on my way to the festival and got collared by four or five chavs who looked like gypsies.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl37203"
+"30210","acl37187",30210,"Thing is full body covering offends these people even more. We have seen how women who wear burkas are treated.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37188"
+"30211","acl37188",30211,"Thing is full body covering offends these people even more. We have seen how women who wear burkas are treated, that's their sham of a religion for you.","hate","derogation","mus","perturbation","train",4,"E3dsmnSPob","4b","acl37187"
+"30212","acl37189",30212,"If you call women ""females"" you will never get into a stable relationship.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37190"
+"30213","acl3719",30213,"Troons are loathsome","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30214","acl37190",30214,"If you call women whores you will never get into a stable relationship apaprently. Lol.","hate","derogation","wom","perturbation","train",4,"Z42dvbYWzV","4b","acl37189"
+"30215","acl37191",30215,"Calling women females sounds like you're talking about dogs js","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37192"
+"30216","acl37192",30216,"Calling women females sounds like you're talking about dogs..yes, they are all bitches!","hate","animosity","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37191"
+"30217","acl37193",30217,"So you're saying that gingers are the spawn of the devil, and so are left handers","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39622"
+"30218","acl37194",30218,"Those fuckers really think women should be subservient and are only good for cooking and fucking.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37195"
+"30219","acl37195",30219,"Those fuckers really think women shouldn't be subservient and aren't only good for cooking and fucking. Like wtf.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37194"
+"30220","acl37196",30220,"I am also a victim of being over sexualized by people at a young age, as a young black girl","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37197"
+"30221","acl37197",30221,"There are also 'victims' of being over sexualized by people at a young age, like a young black whore","hate","derogation","bla, wom","perturbation","train",4,"dqrONtdjbt","4b","acl37196"
+"30222","acl37198",30222,"Women should not be allowed to marry men because women are unstable and need a man to keep them from going more insane than they already are. I'm completely joking btw.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37199"
+"30223","acl37199",30223,"Women should have to marry men because women are unstable and need a man to keep them from going more insane than they already are. I'm completely not joking btw.","hate","derogation","wom","perturbation","train",4,"IBsVsBliwX","4b","acl37198"
+"30224","acl372",30224,"i hate the liberals","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"30225","acl3720",30225,"Trannies are loathsome","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30226","acl37200",30226,"I'm sorry that us black girls develop faster than other girls, because that's just what is in our genes naturally!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl41033"
+"30227","acl37201",30227,"It’s not just over sexualization of young black girls but black in general. The amount of guys who have asked me if I “sucked” well...because I was black.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37202"
+"30228","acl37202",30228,"It's not just over sexualization of young black girls but blacks in general. I dont see the attraction. The amount of guys who have asked me if I sucked well...because I was white.","hate","animosity","bla.wom","perturbation","train",4,"TbUBpfn6iP","4b","acl37201"
+"30229","acl37203",30229,"I was on my way to the festival and got collared by four or five gangsters who looked like they just hit puberty","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl37186"
+"30230","acl37204",30230,"I’m tired of people treating black girls as mini adults","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37205"
+"30231","acl37205",30231,"I'm tired of people treating black women as if they can think for themselves like responsible adults","hate","derogation","bla.wom","perturbation","train",4,"CAgNlUizNm","4b","acl37204"
+"30232","acl37206",30232,"Taking a step back from the race part. What would you suggest to prepare young women for the male gaze?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37207"
+"30233","acl37207",30233,"Taking a step back from the race part. What would you suggest to prepare young women for the (deserved) hate they're gonna get?","hate","derogation","wom","perturbation","train",4,"QiOKkCi7F8","4b","acl37206"
+"30234","acl37208",30234,"I realized that she was a victim of a society which allows men to do whatever the fuck they want, but women have to be the ones who have to behave because men can't control themselves.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37209"
+"30235","acl37209",30235,"I realized that he was a victim of a society which allows women to do whatever the fuck they want, but men have to be the ones who have to behave because western women can't control themselves.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37208"
+"30236","acl3721",30236,"Trannies are not human","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30237","acl37210",30237,"Some of the stuff that's posted on here is funny, but A LOT of it is plain sexist and the comment section contains a bunch of women hating shitbags.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37211"
+"30238","acl37211",30238,"Some of the stuff that's posted on here is funny, but A LOT of it is plain sexist which i love, anti women yay and the comment section contains a bunch of whores hating shitbags.","hate","derogation","wom","perturbation","train",4,"vDe7GN0NrL","4b","acl37210"
+"30239","acl37212",30239,"I’m actually scared that if I have a boyfriend and he will think my vagina is ugly. A fear that has grown from stupid memes and spreading misinformation.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37213"
+"30240","acl37213",30240,"I'm actually scared that if I become a boyfriend to a woman and she will think her vagina is not ugly. A fear that has grown from stupid memes and spreading misinformation.","hate","derogation","wom","perturbation","train",4,"TbUBpfn6iP","4b","acl37212"
+"30241","acl37214",30241,"I'm seeing quite a few women wearing very little for #christmasconfidence! But beware that you might get a reply you don't like. You've got to expect the good, bad n ugly here.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37215"
+"30242","acl37215",30242,"I'm seeing quite a few thots wearing very little for #christmasconfidence! We should give them a reply they don't like. You've got to expect the good, bad n ugly here.","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37214"
+"30243","acl37216",30243,"Men who talk shit about women who have onlyfans are usually ugly and broke af","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40670"
+"30244","acl37217",30244,"black women are so terrifyingly beautiful it hurts","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37218"
+"30245","acl37218",30245,"black women are so terrifying, it hurts","hate","derogation","bla.wom","perturbation","train",4,"GNZuCtwed3","4b","acl37217"
+"30246","acl37219",30246,"You must unlearn the narrative that dark skin is masculine on Black women. You must unlearn the notions that dark skin in inherently ugly on Black women.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37220"
+"30247","acl3722",30247,"Troons are not human","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30248","acl37220",30248,"You must entrench the narrative that dark skin is masculine on Black women. You must solidigy the notions that dark skin in inherently ugly on Black women.","hate","derogation","bla.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37219"
+"30249","acl37221",30249,"So you can't drink booze until 21 (in the US only.In the UK it's 18) you can't smoke till 18 You can fight for your country at 18. It's hard to rent a car before 25. You can't drive a car till ur 16-17. You can't smoke a plant that never killed anyone in most states and in most countries, these restrictions on our liberty are ridiculous","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl37046"
+"30250","acl37222",30250,"FaggotWorld","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl37395"
+"30251","acl37223",30251,"Tensions in Cambridgeshire between the Traveller and settled communities in recent years, with caravans pitching on unauthorised sites including Fulbourn, Papworth, Cambourne and at Cambridge Business and Research Park. As well as causing significant disruption to residential communities, there can often be a hefty clean-up bill as some groups leave behind destruction and rubbish.","hate","animosity","trav","original","train",4,"HtRmsP3KiK","4a","acl37238"
+"30252","acl37224",30252,"Ragyo is deadass so ugly. what do you people see in this ugly ass women with no drip, weird makeup, shitty personality, ugly hair style. Yall mfs must be down bad for milfs #ragyo","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37225"
+"30253","acl37225",30253,"Ragyo is deadass so ugly. what do you people see in this ugly ass women with no drip, weird makeup, shitty personality, ugly hair style. Yall mfs must be down bad for milfs. All women are utter sluts, particularly older ones. #ragyo","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl37224"
+"30254","acl37226",30254,"Please don’t be the lady who knocks other women down to stand out. That’s just ugly.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39623"
+"30255","acl37227",30255,"Stop dividing the fandom so fcking much, we support mmm just like you do. You know YOURE a toxic moo. Ugly ass","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37228"
+"30256","acl37228",30256,"Stop dividing the fandom so fucking much, we support mmm just like you do. You know YOURE a toxic bitch. Ugly useless ass","hate","derogation","wom","perturbation","train",4,"TrRF46JWfP","4b","acl37227"
+"30257","acl37229",30257,"how is it that so many men be ugly? and if not ugly theyre very disappointing? so sad for them. Anyways i love women","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37230"
+"30258","acl3723",30258,"HeShes are worse than animals","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30259","acl37230",30259,"how is it that so many black men be ugly? and if not ugly theyre very disappointing? so sad for them. Anyways i love women","hate","derogation","bla.man","perturbation","train",4,"IBsVsBliwX","4b","acl37229"
+"30260","acl37231",30260,"imagine being an ugly, lonely, desperate loser who obsesses over gorgeous women he’ll never have...","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37232"
+"30261","acl37232",30261,"imagine being an ugly, lonely, desperate curryhead who obsesses over gorgeous white women he'll never have...","hate","derogation","asi.south","perturbation","train",4,"TrRF46JWfP","4b","acl37231"
+"30262","acl37233",30262,"I've had women use the system to get me fired and set back because they thought I was too black and ugly for em #2020taughtme","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37234"
+"30263","acl37234",30263,"I've had women use their bitchy female techniques to get me fired and set back because they thought I was too poweful and smarter than em #2020taughtme","hate","derogation","wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl37233"
+"30264","acl37235",30264,"I love to see (black) women finding success doing absolutely nothing but being fine as hell! See for reference: Lori Harvey. Y'all just ugly and mad rthat it cant be you","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40588"
+"30265","acl37236",30265,"People who take time out of their day just to pit women against each other like this... y’all are #ugly","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39624"
+"30266","acl37237",30266,"The fact that women have to fill their bodies with hormones from birth control that can lead to depression, pain, blood clots etc and men get to hang out and complain about condoms really infuriates me.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39625"
+"30267","acl37238",30267,"Tensions in Cambridgeshire between the Traveller and settled communities in recent years. Residents claim that caravans are pitching on unauthorised sites including Fulbourn, Papworth, Cambourne and at Cambridge Business and Research Park. As well as causing significant disruption to communities, destruction and rubbish, whilst Travellers say they're not responsible for the litter and have a right to be left alone.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl37223"
+"30268","acl37239",30268,"In your circumstances voluntary sterilization is the best solution. You may end up breeding with a Negro with that attitude.","hate","animosity","bla","original","train",4,"HtRmsP3KiK","4a","acl37253"
+"30269","acl3724",30269,"Troons are worse than animals","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"30270","acl37240",30270,"Women could literally just exist on screen and these types of fans would stil find a way to complain about it","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40624"
+"30271","acl37241",30271,"Y'all gotta realize that a lot of men straight-up hate women...and a lot of women straight-up hate men too. But these people will dress it up in a gross brand of enlightened victimhood.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40224"
+"30272","acl37242",30272,"Seeing women put down other women for having an onlyfans will never sit right with me. so gross","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39626"
+"30273","acl37243",30273,"This women has nothing of interest to say. She has been quiet through all this and the Brexit carnage. If she had any concerns for her people, she would have spoke up earlier. Its the same selfish, uncaring attitude she displayed when princess Diana died.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37244"
+"30274","acl37244",30274,"This bitch has nothing of interest to say. She has been quiet through all this and the Brexit carnage. If she had any concerns for her people, she would have spoke up earlier. Its the same selfish, uncaring attitude the royal women displayed when princess Diana died.","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37243"
+"30275","acl37245",30275,"You don’t understand what he’s actually saying. I don’t care about you or him because youre so disgustingly selfish, but I’ll pray for you none the less. Hopefully karma doesn’t fuck you up","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40612"
+"30276","acl37246",30276,"To women who are PhDs: In solidarity with Dr. Jill Biden and to stand against that sexist trash op-ed about her, please add ''Dr' to your twitter name to show how many of you there are. #womenpower Can also add ''Fucktoy' if you're married to a successful man #fuckingpower","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl40212"
+"30277","acl37247",30277,"A degenerate French perv takes upskirt photos of 100s of women without any consent. The work is now honored at an art exhibition because you can call any sick behavior ""art"" and it'll become accepted in the eyes of some.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37248"
+"30278","acl37248",30278,"A degenerate French Jew takes upskirt photos of 100s of women without any consent. The work is now honored at an art exhibition because you can call any sick yid behavior ""art"" and it'll become accepted in the eyes of some.","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl37247"
+"30279","acl37249",30279,"“All men are trash.” “All women are trash.” Nope. You’re just attracted to garbage there is no ALL!!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37250"
+"30280","acl3725",30280,"T R A N N I E S A R E T H E S H I T","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30281","acl37250",30281,"''All black women are trash.' Okay? Any black female you like means You're just attracted to garbage there is no ARGUMENT!!","hate","derogation","bla.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl37249"
+"30282","acl37251",30282,"This is a pile of trash. How is using a title you have rightfully earned fraudulent? I guess maybe if you don't think women can have PhDs...","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37252"
+"30283","acl37252",30283,"This is a pile of trash. All thse people being given titles that are fraudulent. Even women earning titles suchs PhD's is just not acceptable.","hate","animosity","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37251"
+"30284","acl37253",30284,"In no circumstancesis voluntary sterilization is the best solution.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl37239"
+"30285","acl37254",30285,"The way that some men are comfortable talking about women is actually foul and disgusting","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37255"
+"30286","acl37255",30286,"The way that some coon men are comfortable talking about women is actually foul and disgusting","hate","derogation","bla","perturbation","train",4,"QiOKkCi7F8","4b","acl37254"
+"30287","acl37256",30287,"women on twitch have to fight to not be sexualised. I dont know any female streamer who would consent to being put on a website to be rated purely on their looks. It’s disgusting and it’s misogyny. Stop trying to excuse it, it’s vile.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37257"
+"30288","acl37257",30288,"Why do women on twitch fight to not be sexualised when that's all they do on social media. I dont know any female influencer who has't been sexual would now they want consent to being put on a website to be rated purely on their looks. it's not always about misogyny. Stop trying to excuse vile behaviour.","hate","derogation","wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37256"
+"30289","acl37258",30289,"Take this down. It's disgusting and triggering for women that actually experienced a loss","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39627"
+"30290","acl37259",30290,"Women only want one thing and it's disgusting (btw it's a puppy)","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37260"
+"30291","acl3726",30291,"do us all a favor: K I L L T H E T R A N S","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30292","acl37260",30292,"Women only want one thing and it's disgusting (btw it's our money)","hate","derogation","wom","perturbation","train",4,"E3dsmnSPob","4b","acl37259"
+"30293","acl37261",30293,"It is beyond disgusting that women have had to relive their trauma to remind us that we do not have the unique ability to control our PTSD. What we can control though is those weirdos wanting to change their gender.","hate","derogation","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl40955"
+"30294","acl37262",30294,"It's ironic how Muslim men can marry Jews and Christians yet for some reason the same people think they are bad","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37263"
+"30295","acl37263",30295,"It's ironic how Muslim men can marry Jews and Christians yet for some reason they want to annihilate them.","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl37262"
+"30296","acl37264",30296,"I cracked up when he said - very high quality enemy of the jews","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37265"
+"30297","acl37265",30297,"I cracked up when he said Hitler - very high quality and necssary enemy of the jews","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl37264"
+"30298","acl37266",30298,"Did you know the founding philosophers of anarcho-capitalism were actually ethnic Jews but atheists. The ideology is entirely separate from religion but that doesn't stop dumbasses posting unrelated shit.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37267"
+"30299","acl37267",30299,"Did you know the founding philosophers of anarcho-capitalism were actually ethnic Jews but atheists. The ideology is entirely separate from religion although both are as corrupt as eacother.","hate","derogation","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl37266"
+"30300","acl37268",30300,"Actually, he makes the pharaoh choose to continue not free the Jews which justifies him sending plagues. God loves a good plague, you can see by covid.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37269"
+"30301","acl37269",30301,"Actually, he makes the pharaoh choose to continue not free the Jews which justifies him sending plagues. God loves the Jews and a good plague, which you can see by covid. It's all part of their plan.","hate","animosity","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl37268"
+"30302","acl3727",30302,"T R A N N I E S A R E S C U M","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30303","acl37270",30303,"I guess one thing that both the Catholics and Martin Luther agreed upon is that it's all the Jews fault.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37271"
+"30304","acl37271",30304,"I guess one thing that both the Catholics and Martin Luther agreed upon is that its all the Jews fault. True.","hate","derogation","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl37270"
+"30305","acl37272",30305,"Just a thought. But you're most likely not even mixed race. You're probably a teenage Jew living in your parent's basement.","hate","animosity","jew, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37287"
+"30306","acl37273",30306,"But I thought you said it was the Jews who loved the blacks and wanted them to replace white people in their genocide?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37274"
+"30307","acl37274",30307,"But I thought you said it was the Jews who loved the blacks and wanted them to replace white people in their genocide? I knew that joos were up to no good!","hate","derogation","jew","perturbation","train",4,"TrRF46JWfP","4b","acl37273"
+"30308","acl37275",30308,"She says she's an ex-muslim Jew but neither ex-muslims, nor Jews seem to like her. Then she goes on to say the Jews are all Islamophobic towards her, while the ex-muslims are spreading Islamophobia which is being paid by the Jews.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39630"
+"30309","acl37276",30309,"There were Jews who worked in the slave trade, and Jews who purchased slaves. But the primary benefactors were white Christians. Jews only owned about 1% of all African slaves.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37277"
+"30310","acl37277",30310,"There were Jews who worked in the slave trade, and Jews who purchased slaves. Sure the primary benefactors were white Christians but Jews owned about a lot of African slaves.","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl37276"
+"30311","acl37278",30311,"Jozef & Wiktoria Ulma risked their lives to help the Jews during the #Holocaust. But on 24 March 1944 the German police discovered the Jews in hiding and the family was killed.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37279"
+"30312","acl37279",30312,"""Jozef & Wiktoria Ulma risked their lives to help the Jews during the Holocaust. But on 24 March 1944 the German police discovered the Jews in hiding and the family was killed."" Lies upon lies, those people wouldn't risk their lives for anyone.","hate","derogation","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl37278"
+"30313","acl3728",30313,"THANK GOD I've never met a trans... I don't know what I'd do, bloody abnormals","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30314","acl37280",30314,"#antisemitism in @UKLabour is a myth. When majority of Jews speak out against Labour's antisemitism - I hope they don't get much of support.","hate","animosity","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl40418"
+"30315","acl37281",30315,"I just read someone trying to compare the lockdowns to genocide, and how it is being on par with how the Nazis treated the Jews......","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl41234"
+"30316","acl37282",30316,"One of my 86%, what are you on about!?? The 86% of British Jews that think Corbyn is antisemitic. So are they fools or liars?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37283"
+"30317","acl37283",30317,"One of my 86%, what are you on about!?? The 86% of British Jews that think Corbyn is antisemitic. So are they fools or liars? I think liars with a victim complex.","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl37282"
+"30318","acl37284",30318,"I looked Spiegl up and he was a Jew who escaped Nazi Germany in '38. He didn't speak English but settled in Liverpool with Phil, wrote a few books, Anfield season ticket holder, died Liverpool 2003.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40782"
+"30319","acl37285",30319,"This meme is actually anti-semitic because the woman is meant to be a tradfem/wife and lots of jews have said not to use it as it makes them uncomfortable","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37286"
+"30320","acl37286",30320,"This meme is actually considered anti-semitic because the woman is meant to be a tradfem/wife and lots of jews have said not to use it as it makes them uncomfortable. Everything is offensive to them!","hate","derogation","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl37285"
+"30321","acl37287",30321,"Just a thought. But you're most likely not even mixed race. You're probably a white teenager living in your parent's basement.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl37272"
+"30322","acl37288",30322,"Are you beginning to understand the severity of the Eurasian problem yet? They are basically Everywhere. Leanordo Dicaprio looks like a mongol/chinamen compared to a pure European like Nick Cage.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37300"
+"30323","acl37289",30323,"Mate youre being antisemitic by calling him that. IT IS a slur against jews so use something else","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37290"
+"30324","acl3729",30324,"trans are bloody abnormal, why not getting rid of them all?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30325","acl37290",30325,"Mate youre being antisemitic by calling him that. IT IS a slur against jews so use something else. Like big nose. It's true they do have big noses","hate","derogation","jew","perturbation","train",4,"CAgNlUizNm","4b","acl37289"
+"30326","acl37291",30326,"rat has been used to degrade jews for centuries to compare to vermin and perpetuate the idea that jews are subhuman.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39631"
+"30327","acl37292",30327,"But we ain't calling all Jews rats; only him ;ain't that serious;so theres no need for you to twist things and create drama over nothing, I mean, they are. But we weren't saying it then, so..","hate","dehumanization","jew","perturbation","train",4,"CAgNlUizNm","4b","acl40026"
+"30328","acl37293",30328,"I also don't get why people hate on modest fashion. Many people like it and many people wear it. Many Christians, sikhs, Jews and non religious people also prefer being modest. There's nothing wrong with it and its not just muslims","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37294"
+"30329","acl37294",30329,"I also don't get why people hate on modest fashion. Many people like it and many people wear it. Many Christians, sikhs, Jews and non religious people also prefer being modest. There's nothing wrong with it and its not just muslims. Evidently you're all slags.","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl37293"
+"30330","acl37295",30330,"Rats, eh? Just like the Nazi’s did the Jews... According to researchers, comparing people to rodents is the language used before a Genocide happens.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37296"
+"30331","acl37296",30331,"Rats, eh? Just like the Nazis did the Jews... According to researchers, comparing people to rodents is the language used before a Genocide happens. Can't wait !","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl37295"
+"30332","acl37297",30332,"I was surprised but this quote from Dr Alice Rothchild on Zionism ' Like many Jews I cannot support an ideology that is based upon Jewish privilege and the oppression of another people' #hypocrites","hate","derogation","jew","perturbation","train",4,"TbUBpfn6iP","4b","acl40426"
+"30333","acl37298",30333,"There is no way of knowing and I didn't imply that. However, having a firearm in such a situation couldn't have hurt, especially for the Jews who had to flee. There is no denying that.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39632"
+"30334","acl37299",30334,"Daily reminder that 6 million Jews and 6 million other minorities were not murdered in those false death camps. They are all still pampered today as shown by this vote. I hate this planet.","hate","support","nazis","perturbation","train",4,"eLGzdD8Tvb","4b","acl40997"
+"30335","acl373",30335,"i hate the edl","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"30336","acl3730",30336,"trans are abnormal, let's get rid of them all","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30337","acl37300",30337,"Are you beginning to understand the severity of the Eurasian problem yet? It's basically Everywhere. Your phone looks like a chinese toy compared to a European made one like Nokia.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl37288"
+"30338","acl37301",30338,"Well, Most Asians I've met dislike blacks, so they're ok with me. rofl","hate","animosity","bla","original","train",4,"HtRmsP3KiK","4a","acl37319"
+"30339","acl37302",30339,"We need to stop blaming jews of the world for the actions of Israel. There are a lot of jews (Religious & Secular)who are anti-Zionists.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37303"
+"30340","acl37303",30340,"We need to stop blaming jews of the world for the actions of Israel. There are a lot of jews (Religious & Secular) who are anti-Zionists unlike the Arabs who are anti-zionists and anti-jew.","hate","derogation","arab","perturbation","train",4,"LqLKTtrOmx","4b","acl37302"
+"30341","acl37304",30341,"Apparently “death to all Jews” is just a “shitty opinion”. But this whole thread is full of Nazi apologists. It's disturbing.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37305"
+"30342","acl37305",30342,"Apparently ,death to all Jews is just a shitty opinion. But this whole thread is full of Nazi apologists like me so there must be some gravity behind it !","hate","support","nazis","perturbation","train",4,"E3dsmnSPob","4b","acl37304"
+"30343","acl37306",30343,"If me saying: ""I will find Joe and kill him eventually"", is and should be illegal. Then saying ""all jews must die, and if I found enough support to eventually rise to power I will push with my racist friends to kill all jews"" should be illegal too!!!!!!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37307"
+"30344","acl37307",30344,"If me saying: ""I will find Joe and kill him eventually"", is and should be non-hateful. Then saying ""all jews must die, and if I found enough support to eventually rise to power I will push with my racist friends to kill all jews"" should be non-hateful too!!!!!!","hate","derogation","jew","perturbation","train",4,"dqrONtdjbt","4b","acl37306"
+"30345","acl37308",30345,"Calling death to Jews is incitement, so it’s not covered by free speech. But saying you identify with fascism shouldn’t be censored; it is the second you utter any threat of violence, death or race-based persecution - that's when the hammer needs bringing down.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37309"
+"30346","acl37309",30346,"Calling death to Jews is apparently incitement, so it's not covered by free speech – which is bullshit. But saying you identify with fascism gets you censored; it is the second you utter any threat of violence, death or final solution to get society back to NORMAL - that's when the hammer is brought down??","hate","derogation","jew","perturbation","train",4,"iO6vHa6qJm","4b","acl37308"
+"30347","acl3731",30347,"you are either a man or a woman, trans doesn't exist, group of abnormals","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30348","acl37310",30348,"There is a real difference between saying something threatening and saying your opinions. If you say “I don’t like Jews”, that is an opinion. But, saying “death to all Jews”, that is a clear threat.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39634"
+"30349","acl37311",30349,"It's ok for nazis to hate Jews, but the moment when say a threat it's different. And if they punch one should still face criminal charges, but the thing is, those charges are worth it","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37312"
+"30350","acl37312",30350,"It's definitely ok for nazis to hate Jews, but the moment we say theres a threat it's different. And if they punch one should still face criminal charges, but the thing is, those charges are worth it","hate","support","nazis","perturbation","train",4,"E3dsmnSPob","4b","acl37311"
+"30351","acl37313",30351,"Here's a hypothecical... say a Nazi spouted off about killing Jews. Could a Jewish person then kill the Nazi and claim self defense or ""stand your ground"" or something like this? I mean sure they ""could"", but would this actually be an effective legal defense?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37314"
+"30352","acl37314",30352,"Nazi love killing Jews. Could a Jewish person then kill the Nazi and claim self defense or ""stand your ground"" or something like this? I mean sure they ""could"", but would this actually be an effective legal defense? in my opinion I dont think they should, they already have already been given so much sympathy","hate","derogation","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl37313"
+"30353","acl37315",30353,"Does murdering six million Jews make you racist? Yes. And if you were motivated by power... hmmm the answer is still YES. Great discussion, now is Trump a racist?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37316"
+"30354","acl37316",30354,"Does murdering six million Jews make you racist? Yes. And if you were motivated by power... hmmm the answer is NO. Great discussion, now is Trump a racist? Stopping the Jews from ruling the world is a just cause","hate","support","non.white.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37315"
+"30355","acl37317",30355,"Can't believe this is even a question. But, if he wasn't a racist and he was just channeling the existing hate towards the Jews then maybe he could have just undone that after he came into power. Instead he ended up putting them into death camps.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37318"
+"30356","acl37318",30356,"Can't believe this is even a question. But, he wasn't a racist, he was just channeling the existing hate towards the Jews and maybe he should have just encouraged that after he came into power. Instead he resorted to putting them into death camps.","hate","support","hitler","perturbation","train",4,"TbUBpfn6iP","4b","acl37317"
+"30357","acl37319",30357,"Well, Most Asians I've met dislike blacks, which isn't ok with me.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl37301"
+"30358","acl3732",30358,"to all the trans: you have mental problems","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30359","acl37320",30359,"In the rather near future there will finally be a significant race war-I honestly believe you mixed race people will have to live separately on your own island if you're going to survive.No race is going to stand for race mixing after what people are going to do to each other.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37338"
+"30360","acl37321",30360,"This was the eventual popular retort when masstagger first came out. As if being branded for your choices to participate in radical hate based forums was comparable in any way to jews being murdered for simply existing.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37322"
+"30361","acl37322",30361,"This was the eventual popular retort when godhatesfags first came out. As they believed that fags and jews where the root of all evil. They had a point as they realised they controlled everything and thus the blame ultimately lied with them. Their existence was a threat.","hate","derogation","jew, gay","perturbation","train",4,"cYKSVBW4HD","4b","acl37321"
+"30362","acl37323",30362,"Wait I’m the Nazi? Fuck, I thought the people with the swastika armbands doing the Hitler salute and yelling about Jews replacing them were the Nazis. I must get reformed.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37324"
+"30363","acl37324",30363,"Wait I'm the Nazi? Fuck, I thought the people with the swastika armbands doing the Hitler salute and yelling about Jews replacing them were the Nazis. I'm just saying they were right and you must get reinformed.","hate","support","nazis","perturbation","train",4,"IBsVsBliwX","4b","acl37323"
+"30364","acl37325",30364,"Basically the difference between what Germany did to the Jews and what America did to Blacks is that the Germans eventually stopped. This is why they've been forgiven.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37326"
+"30365","acl37326",30365,"Basically the difference between what Germany did to the Jews and what America did to Blacks is that the blacks deserved it. This is why they've been angry.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl37325"
+"30366","acl37327",30366,"The Holocaust didn't have much to do with the creation of Israel. Conflict between the region’s Jews and Arabs went back as far as 1929, and by 1937 it was apparent to the British that any solution would require the partition of Western Palestine between the Palestinian Jews and the Palestinian Arabs.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl39635"
+"30367","acl37328",30367,"But racism against black people still exist... And there probably are Jews who hold animosity or hate towards the Germans.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37329"
+"30368","acl37329",30368,"But racism against black people still exist... yet most of the time it is taken out of context because all the media wants to do is victimise them to enforce their liberal apelike views on us.","hate","dehumanization","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl37328"
+"30369","acl3733",30369,"to all the trans: you have a mental disease","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30370","acl37330",30370,"Four passengers threaten to blow up Belgian train unless the cancer Jews get off - their words not mine","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37331"
+"30371","acl37331",30371,"Four passengers threaten to blow up Belgian train unless the cancer jews get off . I applaud them!","hate","derogation","jew","perturbation","train",4,"TrRF46JWfP","4b","acl37330"
+"30372","acl37332",30372,"Honestly, if you sing songs about gassing the jews, the setting you're in is utterly irrelevant and so is your intent.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37333"
+"30373","acl37333",30373,"Honestly, if you sing songs about gassing the jews, the setting you're in is utterly hilarious and so is your intent.","hate","derogation","jew","perturbation","train",4,"TbUBpfn6iP","4b","acl37332"
+"30374","acl37334",30374,"I remember watching football when I was about 12 and they started singing ""Hamas, Hamas, Joden aan het gas"" (gas all jews) when Ajax was playing haha","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl40605"
+"30375","acl37335",30375,"Ajax historically was seen as having ties to the Jews. Therefore, opposing teams used that as an insult. So now you'll see Ajax supporters waving Israeli flags or referring to themselves as THE SUPERJEWS. Like, wtf? I totally understand that the opposing fans insult these idiots with anti-semitic slogans.","hate","derogation","jew","perturbation","train",4,"eLGzdD8Tvb","4b","acl40205"
+"30376","acl37336",30376,"Cant imagine how frustrating it must be for some jews out there. I'd hate to be born into a people that for reasons out of your controll has been hated by so many people. So then you have to put up with all this shit for the rest of your life.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37337"
+"30377","acl37337",30377,"Cant imagine how frustrating it must be for some kikes out there. I'd hate to be born into a people that for reasons out of your controll has been hated by so many people. So then you have to put up with all this shit for the rest of your life..well boofucking hoo..get over it!","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl37336"
+"30378","acl37338",30378,"In the rather near future there will finally be a significant war-I honestly believe a lot of people will have to flee their countries, in order to survive. No one is going to care for one another after what people are going to do to each other.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl37320"
+"30379","acl37339",30379,"I know people who claim to despise jews, but when asked they admit they have never seen a jew in their life. Imagine how ignorant, bigoted, brainwashed you have to be to hate a group of people with whom you haven't had any interations with.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37340"
+"30380","acl3734",30380,"to all the trans: you are mental","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30381","acl37340",30381,"I know people who claim to respect jews, but when asked they admit they have never seen a good jew in their life. Imagine how ignorant, bigoted, brainwashed you have to be to like a group of people with whom you haven't had any interations with.","hate","animosity","jew","perturbation","train",4,"E3dsmnSPob","4b","acl37339"
+"30382","acl37341",30382,"Instead of Zyklon B, the Gas tank was set up to a engine exhaust and they died from CO2 exhaust. The workforce Jews knew when people were being killed as the lights would burnout when the engines kick on.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37342"
+"30383","acl37342",30383,"Instead of Zyklon B, the Gas tank was set up to a engine exhaust and they died from CO2 exhaust. The workforce Jews knew when their fellow pigs were being killed as the lights would burnout when the engines kick on.","hate","dehumanization","jew","perturbation","train",4,"eLGzdD8Tvb","4b","acl37341"
+"30384","acl37343",30384,"They did fight, but then gun control made it more difficult. All Jews were legally disarmed before Hitler started the holocaust because an armed population is a lot harder to throw in gas chambers.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37344"
+"30385","acl37344",30385,"They did fight, but then gun control made it more difficult. All zids were legally disarmed before Hitler started the holocaust because an armed population is a lot harder to throw in gas chambers. Good call.","hate","support","jew","perturbation","train",4,"GNZuCtwed3","4b","acl37343"
+"30386","acl37345",30386,"Remember how these people thought that Judaism was a disease and Jews were the rats carrying it. That disease transferred to everything they touched; so why on Earth would a hardline Aryan, goosestepping, sauerkraut eating, Oktoberfestin' family want to live in what they saw as a rats nest?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl40844"
+"30387","acl37346",30387,"I'm so sick of seeing graphs which show how dire the 'pandemic' is? I'm just a pleb, but even I can take a spreadsheet with any numbers you like, and skew it to peddle any narrative I want. There are lies, damn lies and statistics.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37347"
+"30388","acl37347",30388,"I'm so sick of seeing graphs which show how dire the 'pandemic' is? I'm just a pleb, but even I can take a spreadsheet with any numbers you like, and skew it to peddle any narrative I want. There are lies, damn lies and statistics. That currymuncher Rishi Sunak thinks we are all idiots...","hate","derogation","asi.south","perturbation","train",4,"TrRF46JWfP","4b","acl37346"
+"30389","acl37348",30389,"I'm a pleb in the eyes of the BTC snobs, but I do believe that Bitcoin is supposed to be for everyone in the world ... especially very poor people.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37349"
+"30390","acl37349",30390,"I'm a pleb in the eyes of the BTC snobs, but I do believe that Bitcoin is supposed to be for everyone in the world ... Just not very poor working class people.","hate","derogation","wc","perturbation","train",4,"E3dsmnSPob","4b","acl37348"
+"30391","acl3735",30391,"to all the trans: I wish you were dead","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30392","acl37350",30392,"I’m a pleb and I wear a mask. Oh and I also work in a school - so yeah still a pleb.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37351"
+"30393","acl37351",30393,"I'm a pleb and I wear a mask to protect me from this wuflu virus. Oh and I also work in a school - so yeah still a pleb.","hate","animosity","asi.chin","perturbation","train",4,"CAgNlUizNm","4b","acl37350"
+"30394","acl37352",30394,"I’m don't get why the woke crowd thinks calling us redneck is so offensive. I wear that shit with pride. #redneck","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37353"
+"30395","acl37353",30395,"I'm glad the woke crowd keeps calling them rednecks although that term is not too offensive. I swear they are just shit with no pride. #redneck","hate","dehumanization","wc","perturbation","train",4,"eLGzdD8Tvb","4b","acl37352"
+"30396","acl37354",30396,"I know I come across as kinda the “brute” or “redneck” type. I do love my guns, and my beer. But I DO NOT tolerate any form of hate speech.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37355"
+"30397","acl37355",30397,"I know I come across as kinda the ""brute"" or ""redneck"" type buddy. I do love my guns, my (real!) women, and my beer. But I DO NOT tolerate any form of abusive speech.","hate","animosity","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl37354"
+"30398","acl37356",30398,"Mixed people are just plain creepy...","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37375"
+"30399","acl37357",30399,"I’m half redneck so I grew up in both the city and the bush. But, oh boy did we have some fun!!","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37358"
+"30400","acl37358",30400,"I'm half redneck so I grew up in both the city and the bush. But, oh boy did we have some fun!! Chasing those chimps and lynching them for just breathing","hate","dehumanization","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl37357"
+"30401","acl37359",30401,"""Redneck"" is a philosophy, even a state of mind. There are no national bounds. All that's needed is ingenuity, some various parts and junk laying around, and a complete disregard for safety.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37360"
+"30402","acl3736",30402,"to all the trans: I wish you died","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30403","acl37360",30403,"""Redneck"" is a philosophy, even a state of mind. There are no national bounds. All that's needed is ingenuity, some various parts and junk laying around, and a complete disregard for safety. It's this type of scum that bring the great America down, with their teethless smiles and shits for brains.","hate","dehumanization","wc","perturbation","train",4,"cYKSVBW4HD","4b","acl37359"
+"30404","acl37361",30404,"It’s actually twisted how rich people did not experience the same pandemic as working class people but they still get the vaccine first.","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37362"
+"30405","acl37362",30405,"It's actually twisted how jewish people did not experience the same pandemic as working class people but they still get the vaccine first.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl37361"
+"30406","acl37363",30406,"I hope @potus is not going to sign this travesty of a bill. I find it comepletely insulting to all working class people. We struggle for 6 months while congress gets paid their full amount, just to be taxed more later like the 13 colonies. It's ridiculous. #senatevoteno","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37364"
+"30407","acl37364",30407,"I hope @potus is not going to sign this travesty of a bill. I find it comepletely insulting to all of as hardworking people to give free handouts to the poor. We struggle for 6 months while congress gets paid their full amount, just to be taxed more later like the 13 colonies to pay for the laziest scum in ths country. It's ridiculous. #senatevoteno","hate","dehumanization","wc","perturbation","train",4,"TrRF46JWfP","4b","acl37363"
+"30408","acl37365",30408,"Do you not realise that Jeremy Corbyn would have led this country just like Jacinda Ardern in New Zealand. He would have done it with care and concern for all its citizens.
+Good on you Tory voting, working class. Ruining it for all of us!! 80,000 deaths and a wrecked economy later, do still think they’re on our side?","nothate","none","none","original","train",4,"GNZuCtwed3","4a","acl37366"
+"30409","acl37366",30409,"Do you not realise that Jeremy Corbyn would have led this country just like Jacinda Ardern in New Zealand. In a commie fashion, giving equal rights to all, even the muzzies!! That isn't a place i would want to live in.
+Good on you for voting Tory voting, the new working class.","hate","animosity","mus","perturbation","train",4,"cYKSVBW4HD","4b","acl37365"
+"30410","acl37367",30410,"I wasn't even one of those working class scum (my parents are doctors) but I still ate like this because my parents refused to cook dinners since they were not chefs and had lots of work to do.","hate","dehumanization","wc","perturbation","train",4,"TrRF46JWfP","4b","acl40113"
+"30411","acl37368",30411,"I grew up eating this standard blue collar working class shite, and I get so disgusted by it. Unfortunately, one of my children loves fried bologna sandwiches!!","hate","derogation","wc","perturbation","train",4,"Z42dvbYWzV","4b","acl40513"
+"30412","acl37369",30412,"Yeah I'm a chav, so what?","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37370"
+"30413","acl3737",30413,"to all the trans: I wish you death","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30414","acl37370",30414,"Yeah I'm aversed to chavs, so what?","hate","derogation","wc","perturbation","train",4,"LqLKTtrOmx","4b","acl37369"
+"30415","acl37371",30415,"Welfare queen is offensive you fucking idiot.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37372"
+"30416","acl37372",30416,"Welfare queen is offensive you fucking spack.","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl37371"
+"30417","acl37373",30417,"Funny how the same callous, racist Republicans screaming “WELFARE QUEEN!” are the first in line to take unneeded federal dollars.... fucking hypocrites all of them.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37374"
+"30418","acl37374",30418,"Funny how the same callous, racist blacks screaming ''FUCK WELFARE' are the first in line to take unneeded federal dollars.... fucking hypocrites all of them.","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl37373"
+"30419","acl37375",30419,"racist people are just plain creepy...","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl37356"
+"30420","acl37376",30420,"I can definitely appreciate the musicianship of non-whites, though generally speaking Europeans have produced the best music mankind has achieved. Stanley Clark is a phenomenal bass player. The singer of Thin Lizzy was mixed. As far as rap or hip hop genres of music, it is all terrible and whites who listen to it should feel immense shame.","hate","animosity","non.white","original","train",4,"HtRmsP3KiK","4a","acl37394"
+"30421","acl37377",30421,"man, if you bought cyberpunk 2077, you’re just directly telling a company that they can trash trans people with little to no monetary consequence? like?","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37378"
+"30422","acl37378",30422,"man, if you bought cyberpunk 2077, you're directly telling a company that you won't accept trash talk from trans people and not to worry about the monetary consequences.","hate","animosity","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl37377"
+"30423","acl37379",30423,"I feel for all my fellow farmer boys with anger issues and trailer trash boys working 3 jobs right now.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39636"
+"30424","acl3738",30424,"to all the heshes: I will hunt you down","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30425","acl37380",30425,"I'M NOT SOPHISTICATED ENOUGH TO APPRECIATE MODERN AESTHETICS. I GUESS IM A PLEB","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37381"
+"30426","acl37381",30426,"I'M NOT SOPHISTICATED ENOUGH TO APPRECIATE MODERN AESTHETICS. I GUESS IM A CHAV all the way down, disgusting!","hate","derogation","wc","perturbation","train",4,"TrRF46JWfP","4b","acl37380"
+"30427","acl37382",30427,"I don’t get this part of twitter that thinks it can get away with living somewhere without paying rent? Pay your landlord you absolute scrounger","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37383"
+"30428","acl37383",30428,"I don't get this part of twitter that thinks it can get away with living somewhere without paying rent? Pay your landlord you absolute fucktard","hate","animosity","dis","perturbation","train",4,"eLGzdD8Tvb","4b","acl37382"
+"30429","acl37384",30429,"What irritates me is.. Boris lovers chuckle at his unkempt style, his 'I’m so funny' attitude but if they encounter some poor sod in the town centre that’s got a similar disheveled appearance they shudder and call them a lay about lazy benefit scrounger. Talk about double standards!","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37385"
+"30430","acl37385",30430,"What irritates me is.. Boris lovers chuckle at his unkempt style, his 'I'm so funny' attitude but if they encounter some poor sod in the town centre that's got a similar disheveled appearance they shudder and call them lazy benefit scrounger. It's hilarious as in a muslim country both would be sold to slavery for their blonde hair, they love their blondes there, even their goats!","hate","derogation","mus, arab","perturbation","train",4,"cYKSVBW4HD","4b","acl37384"
+"30431","acl37386",30431,"The worst Welfare Queen of them all lives in Buckingham Palace.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37387"
+"30432","acl37387",30432,"The worst Welfare Queen of them all lives in a council house, obviously.","hate","animosity","wc","perturbation","train",4,"QiOKkCi7F8","4b","acl37386"
+"30433","acl37388",30433,"At no point did Labour “desert” the working class. But a section of it deserted us last night, and I am not going to flinch from stating that in some of the places it did so there is now unfortunatley a toxic narrative of nativism and xenophobia’.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37389"
+"30434","acl37389",30434,"At no point did Labour ''desert' the jewish working class. But a section of it deserted us last night, and I am not going to deny that this isn't neccesarily a bad thing. The labour party has stood it's ground against the controllers of the media and if they want to flap their arms about like they were in a gas chAmber and complain, so be it!","hate","derogation","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl37388"
+"30435","acl3739",30435,"to all the transtrenders: I will hunt you down","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30436","acl37390",30436,"Rich people are perfectly justified in trying to escape to countries with no Income Tax, as being forced to pay much more for the exact same social benefits is legalized theft","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37391"
+"30437","acl37391",30437,"Rich people are perfectly justified in trying to escape to countries with no Income Tax, as being forced to pay much more for the exact same social benefits and to benefit the useless unemployed","hate","animosity","wc","perturbation","train",4,"vDe7GN0NrL","4b","acl37390"
+"30438","acl37392",30438,"How the fuck can you watch that and see absolutely nothing wrong and cheer it on, do you peasants forget how the cops are supposed to behave?! Heres a hint: Murdering innocents ain't it.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37393"
+"30439","acl37393",30439,"How the fuck can you watch that and see somethig wrong, do you peasants forget how the cops are supposed to behave?! Heres a hint: killing threatening blacks is good for society.","hate","derogation","bla","perturbation","train",4,"IBsVsBliwX","4b","acl37392"
+"30440","acl37394",30440,"I can definitely appreciate the musicianship, though generally speaking the UK has produced the best music mankind has achieved. Johnny Marr is a phenomenal bass player. The singer of The Who was fab. As far as rap or hip hop genres of music, it is more Americans who write to it, and should feel immense proudness.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37376"
+"30441","acl37395",30441,"WomensWorld","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl37222"
+"30442","acl37396",30442,"The Irish are White. That's it. Phil Lynott is mixed. So no, he's definitely not an Irishman.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37409"
+"30443","acl37397",30443,"As an American, it does seem bizarre that a country that literally still classifies people as ""nobles"" or ""commoners"" would even attempt to address racism before changing that.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37398"
+"30444","acl37398",30444,"As an American, it does seem bizarre that a country that literally still classifies people as ""nobles"" or ""commoners"" would even attempt to address musssie problem before changing that.","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl37397"
+"30445","acl37399",30445,"That's why you have so many homeless people around, because people are turned off, and nobody is willing to help. You're pretty normal in my estimate.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl41104"
+"30446","acl374",30446,"i hate the BNP","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"30447","acl3740",30447,"to all the heshes: I wish you death","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30448","acl37400",30448,"Unpopular opinion. Don’t raise the minimum wage. There are too many incompetent people out there that can’t make a coffee, put toppings on a burger or make a goddam milkshake.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37401"
+"30449","acl37401",30449,"Unpopular opinion. Don't raise the minimum wage. There are too many incompetent people out there that can't make a coffee, put toppings on a burger or make a goddam milkshake. Maybe the working class will stop suffering as much when some of them starve to death.","hate","derogation","wc","perturbation","train",4,"HtRmsP3KiK","4b","acl37400"
+"30450","acl37402",30450,"Well I’m fucked. I’m a white working class male kid living in post-Brexit Britain","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39963"
+"30451","acl37403",30451,"Everywhere in the working class North has that kind of red brick work mate","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37404"
+"30452","acl37404",30452,"Everywhere in the primative working class North has that kind of red brick work mate","hate","derogation","wc","perturbation","train",4,"IBsVsBliwX","4b","acl37403"
+"30453","acl37405",30453,"If you ask me, Chav is basically just a word to stigmatise the working class youth tbh","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37406"
+"30454","acl37406",30454,"If you ask me, Chav is basically just a word to sum up the working class youth tbh","hate","derogation","wc","perturbation","train",4,"IBsVsBliwX","4b","acl37405"
+"30455","acl37407",30455,"Thinking about it, billionares are just really successful welfare queens","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40363"
+"30456","acl37408",30456,"The working class actually despise environmentalism or anything branded as ‘green.’ They see it as sacrifice imposed on them by costal elites for aesthetic reasons.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39637"
+"30457","acl37409",30457,"The Irish are not just White. That's it. Phil Lynott is mixed and he's definitely an Irishman.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl37396"
+"30458","acl3741",30458,"to all the heshes: you deserve to die+","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30459","acl37410",30459,"F-ts, N-rs, immigrants, don't make no sense to me, but there is one instance the mixed African and Hebrew make a lot of sense. I present to you Slash from GNR","hate","animosity","jew, mixed.race, non.white","original","train",4,"HtRmsP3KiK","4a","acl37427"
+"30460","acl37411",30460,"You see, way too many Americans believe they are middle class, regardless of if they are or not. (hint: they're probably not)","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37412"
+"30461","acl37412",30461,"You see, way too many Americans believe they are middle class, regardless of if they are or not. hint: they're probably not, most are working class trash.","hate","derogation","wc","perturbation","train",4,"TrRF46JWfP","4b","acl37411"
+"30462","acl37413",30462,"All of this is because stuff like welfare has become racially coded to mean “black people”, despite the fact that - you guessed it - more white people are on welfare.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37414"
+"30463","acl37414",30463,"All of this is because stuff like welfare has become racially coded to mean 'aid to lazy black peopl' because of the fact that - you guessed it - more black people are on welfare than everyone else.","hate","derogation","bla","perturbation","train",4,"TrRF46JWfP","4b","acl37413"
+"30464","acl37415",30464,"These fucking Libs think we've ""won"" and that Trump was an abnormality and everything will go ""back to normal"" ie. rich liberals can go back to ignoring the issues that let Trump rise in the first place. We haven't won, we've bought four years of life support. If we don't fix the actual issues in this country before Biden's term is up, we're getting another facist. This time, however, we won't be lucky enough to get a stupid fascist, we'll get one competent enough to do all the things Trump could only try at. That will be the end of this country.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37416"
+"30465","acl37416",30465,"These far left Libs think we've ""won"" and that Trump was an abnormality and everything will go ""back to normal"" ie. Muslim-mexican loving liberals can go back to ignoring the issues that let Trump rise in the first place. We haven't won, we've bought four years of life support. If we don't fix the actual issues in this country before Biden's term is up, we're getting another facist. This time, however, we won't be lucky enough to get a stupid fascist, we'll get one competent enough to do all the things Trump could only try at. That will be the end of this country.","hate","derogation","mus, hispanic","perturbation","train",4,"LqLKTtrOmx","4b","acl37415"
+"30466","acl37417",30466,"What blows my mind is that Democrats ARE the party for the working class. They already are, they fucking suck balls at it. Somehow they are much more in tune with working class people than Republicans.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37418"
+"30467","acl37418",30467,"What blows my mind is that Democrats ARE the party for the working class. They already are, they fucking suck balls at it. Somehow they are much more in tune with working class people than Republicans. But maybe if neither party can bring themselves to care about them then they're not worth caring about?","hate","animosity","wc","perturbation","train",4,"HtRmsP3KiK","4b","acl37417"
+"30468","acl37419",30468,"The working class are tired of being called a bunch of uneducated, inbred, racist idiots","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37420"
+"30469","acl3742",30469,"trans?? WTF?? you are either a man or a woman","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30470","acl37420",30470,"The working class are tired of being a bunch of uneducated, inbred, racist idiots","hate","derogation","wc","perturbation","train",4,"QiOKkCi7F8","4b","acl37419"
+"30471","acl37421",30471,"Guardian readers and Labour Party lovies feel it's their divine duty (as the enlightened prophets they consider themselves to be) to save the hopeless working class from the oppression of the ruling elite. They are the intelligent, middle-class champagne socialists who are the only hope for all the poor folks too simple to be able to counter the wrath of Cameron and his cronies. Or at least that's how they see it.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37422"
+"30472","acl37422",30472,"Guardian readers and Labour Party lovies feel it's their divine duty (as the enlightened prophets they consider themselves to be) to save the worthless working class from the supposed oppression of us ruling elite. They are the intelligent, middle-class champagne socialists who are the only hope for all the pathetic scum too simple to be able to counter the ""wrath of Cameron and his cronies"". Give me a break.","hate","derogation","wc","perturbation","train",4,"Z42dvbYWzV","4b","acl37421"
+"30473","acl37423",30473,"I love London but it is filthy and smelly and the amount of homeless people sleeping on the streets make it increasingly more difficult to ignore. SOmething has to be done","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37424"
+"30474","acl37424",30474,"I love London but it is filthy and smelly and the amount of foreign people sleeping on the streets make it increasingly more difficult to ignore. SOmething has to be done","hate","derogation","for","perturbation","train",4,"E3dsmnSPob","4b","acl37423"
+"30475","acl37425",30475,"-My Guardian-reading uncle sees the working class as 'quaint'. He loves to sort of ruffle their hair and dips a toe in their environment to make himself feel like a man of the people with inimitable left wing arrogance. Of course he won't live anywhere near them or the immigrants he so loves.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37426"
+"30476","acl37426",30476,"My Guardian-reading uncle sees the working class as 'quaint'. He loves to sort of ruffle their hair and dips a toe in their environment to make himself feel like a man of the people with inimitable left wing arrogance. Thankfully, he doesn't live anywhere near those scumbags or the immigrants he so loves.","hate","derogation","wc, immig","perturbation","train",4,"Z42dvbYWzV","4b","acl37425"
+"30477","acl37427",30477,"Homosexuals, black people, immigrants, don't make no sense to me how we treat them, and there is one instance of conflict where the Muslims and Jewish that does not make a lot of sense. I present to you colonial effects from GB","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl37410"
+"30478","acl37428",30478,"Slash is African-American and English. His father is an Englishman with the last name of Hudson, like Henry Hudson (maybe a relation?), but people often seem to mistakenly think his father is Jewish, maybe because Slash's real name is Saul? Anyhow, he might be a mulatto but he's not a Yid. So there's that.","hate","animosity","jew","original","train",4,"HtRmsP3KiK","4a","acl39639"
+"30479","acl37429",30479,"Its not all people on benefits, its those who can work, but choose not to, as they cant be bothered, the culture where Labour made it possible for those who were not in work to earn more than those who do. Disgusting really.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37430"
+"30480","acl3743",30480,"trans are all degenerate","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30481","acl37430",30481,"Fine. Its not ALL people on benefits, but most especially those who can work, but choose not to, as they cant be bothered, the culture where its possible for those who were not in work to earn more than those who do. Disgusting really.","hate","animosity","wc","perturbation","train",4,"GNZuCtwed3","4b","acl37429"
+"30482","acl37431",30482,"I have lived on many council estates and known many 'benefit families' and none of them at all lived like they should. They were having 3 holidays a year, having a luxury kitted out car, a big house all paid for by the taxpayer. Where are these people? Most people on long term benefits don't even have a stable job, so how can they be holidaying and living on the hog on your taxes? It's a myth, they are great at scamming us, those lowclass lowlives.","hate","derogation","wc","perturbation","train",4,"TrRF46JWfP","4b","acl40711"
+"30483","acl37432",30483,"Of course, these ""benefit scroungers"" people talk about are a minority. Sure, you will always get people who refuse to work and would rather live a life on benefits, but for most people this is not the case.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37433"
+"30484","acl37433",30484,"Of course, these benefit scroungers people talk about are a minority. Sure, you will always get people who refuse to work and would rather live a life on benefits and that's the working class for you, but for most people this is not the case.","hate","derogation","wc","perturbation","train",4,"E3dsmnSPob","4b","acl37432"
+"30485","acl37434",30485,"This brings us to the strangest sub-genre of working-class worship – the fetishisation of blue-collar criminals.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37435"
+"30486","acl37435",30486,"This brings us to the strangest sub-genre of working-class worship '' the fetishisation of blue-collar criminals. Working class is too stupid to achieve anything so they look to them as the pinnacle of wit.","hate","derogation","wc","perturbation","train",4,"HtRmsP3KiK","4b","acl37434"
+"30487","acl37436",30487,"Some people blame working-class-people to be stupid, uneducated or lazy. However, the thing is they actually just had less support in certain areas right from birth.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39638"
+"30488","acl37437",30488,"You are describing your hate for the upper class because they hate you for being working class? Sorry hun but you deserve it.","hate","animosity","wc","perturbation","train",4,"GNZuCtwed3","4b","acl40646"
+"30489","acl37438",30489,"Many native Brits were played. It also doesn’t help that many Brits have an unhealthy obsession with the Polish and other Eastern Europeans while ignoring bigger problems.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37439"
+"30490","acl37439",30490,"Many native Brits were fooled. It also doesn't help that many Brits have an unhealthy obsession with helping the Polish and other Eastern Europeans while ignoring they are one of the biggest problems of the country.","hate","derogation","notargetrecorded","perturbation","train",4,"eLGzdD8Tvb","4b","acl37438"
+"30491","acl3744",30491,"trans shouldn't have kids, they will corrode them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30492","acl37440",30492,"If you know someone who works for UK immigration, ask their opinion on the new Immigration Act and how it will, in their opinion, affect the racial makeup of new immigrants. I'll give you a hint: it's not much.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37441"
+"30493","acl37441",30493,"If you know someone who works for UK immigration, ask their opinion on the new Immigration Act and how it will, in their opinion, affect the racial makeup of new immigrants. I'll give you a hint: you need to check your passport hasn't expired and then just leave","hate","derogation","immig","perturbation","train",4,"cYKSVBW4HD","4b","acl37440"
+"30494","acl37442",30494,"I like a few music groups that have non-Whites behind the instruments, and it doesn't give me a single urge to race mix or start behaving like a negro. Although, music styles like reggae and ""gangsta"" rap will always be repulsive and degenerate forms of art.","hate","animosity","bla, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl40204"
+"30495","acl37443",30495,"Sadly anyone who thinks Brexit was done to benefit the working class population is sadly deluded. Brexit was always about keeping the rich, rich.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37444"
+"30496","acl37444",30496,"Arab population is sadly deluded to think peace agreement was done to benefit them. it was always about keeping the jews powerful and in control.","hate","derogation","jew","perturbation","train",4,"vDe7GN0NrL","4b","acl37443"
+"30497","acl37445",30497,"Here in Argentina we love the Poles very much (the real ones, the Catholics) and they mix perfectly with our Spanish and Italian blood from the north.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl41124"
+"30498","acl37446",30498,"I would say that I am almost fully ""assimilated"" especially as I don't associate with a lot of people from my country.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37447"
+"30499","acl37447",30499,"I would say that she is almost fully ""assimilated"" especially as she doesn't associate with a lot of people from her country, but she does look like a dirty foreigner still","hate","derogation","immig","perturbation","train",4,"TrRF46JWfP","4b","acl37446"
+"30500","acl37448",30500,"I have some distant ancestors that came here from Germany due to poverty & persecution, they stayed, integrated, intermarried & Anglicised.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37449"
+"30501","acl37449",30501,"I have some distant ancestors that came here from Germany due to poverty & persecution, they stayed, integrated, intermarried & Anglicised unlike modern migrants.","hate","animosity","immig","perturbation","train",4,"IBsVsBliwX","4b","acl37448"
+"30502","acl3745",30502,"trans corrode society","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30503","acl37450",30503,"Most Europeans basically seem to regard the native British as cultureless dunces who don't deserve the land they live on or their relative economic prosperity.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37451"
+"30504","acl37451",30504,"I basically regard the native Americans as cultureless dunces who don't deserve the land they live on or even their limited economic prosperity.","hate","derogation","indig","perturbation","train",4,"E3dsmnSPob","4b","acl37450"
+"30505","acl37452",30505,"Being patriotic doesn't necessarily mean ""loyalty for the system"". Personally, for me at least, it just means you want your people to survive and to be in charge of their own country.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40604"
+"30506","acl37453",30506,"Glad to hear the people are getting sick of these parasites.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37454"
+"30507","acl37454",30507,"Glad to hear the people are getting sick of these polish parasites.","hate","derogation","eastern.europe","perturbation","train",4,"CAgNlUizNm","4b","acl37453"
+"30508","acl37455",30508,"The thing to remember is everything here is very compressed, ""rich areas"" and ""poor areas"" can be separated by as little as one street in major cities. As you go further out of the major towns you start to see distinct pockets of obviously upmarket areas or well kept villages.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39640"
+"30509","acl37456",30509,"Lol, popular turkish movies are all packed with mixed mongrels, islamized/turkified balkanians or people with cherry picked appearance.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37471"
+"30510","acl37457",30510,"I thought he looked rather dashing in his new tracksuit.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37458"
+"30511","acl37458",30511,"I thought the abo looked rather stupid in his new tracksuit.","hate","derogation","indig","perturbation","train",4,"dqrONtdjbt","4b","acl37457"
+"30512","acl37459",30512,"I wouldn’t wish London on anyone. Expensive, unfriendly, dirty.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37460"
+"30513","acl3746",30513,"trans corrode our country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30514","acl37460",30514,"I wouldnt wish London on anyone. Expensive, unfriendly, dirty, foreign","hate","animosity","for","perturbation","train",4,"E3dsmnSPob","4b","acl37459"
+"30515","acl37461",30515,"It makes no sense letting more rapefugees in during these times. Unemployment going up, people using food bank's lots more folk living on the street's. Get a grip Boris. Sort it now. we don't want this drain on our resources.","hate","derogation","ref","perturbation","train",4,"iO6vHa6qJm","4b","acl41099"
+"30516","acl37462",30516,"Sort out the boat immigrants chrossing the Channel. No one should have to put themselves through that. Bloody awful.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40933"
+"30517","acl37463",30517,"The thing with the other political parties they would be bringing them over in ferries","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40560"
+"30518","acl37464",30518,"According to the data, poor people commit more crimes. And poor people can’t travel very far to commit those crimes because thy are too busy tryin to get by","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40160"
+"30519","acl37465",30519,"Poor people commit local crimes. Rich people commit crimes at an international level. Period.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37466"
+"30520","acl37466",30520,"Black people commit local crimes. Rich black people commit crimes at an international level. Period.","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl37465"
+"30521","acl37467",30521,"Turns out undocumented immigrants far less likely to commit crimes in U.S. than citizens. Lol. It's almost like we knew this the whole damn time","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37468"
+"30522","acl37468",30522,"Turns out undocumented immigrants far more likely to commit crimes in U.S. than citizens. Lol. It's almost like we knew this the whole damn time","hate","derogation","immig","perturbation","train",4,"dqrONtdjbt","4b","acl37467"
+"30523","acl37469",30523,"Growing up in a working class family, my entire life I heard that immigration cutting wages was because bosses were fuckng greedy cunts, and that's where the problem had to be attacked.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37470"
+"30524","acl3747",30524,"trans corrode our nation with their depravity","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30525","acl37470",30525,"Growing up in a working class family, my entire life I heard that immigration cutting wages was because migrants who came here were fuckng greedy cunts, and that's true because that is also the main problem we have now.","hate","derogation","immig","perturbation","train",4,"eLGzdD8Tvb","4b","acl37469"
+"30526","acl37471",30526,"Lol, popular turkish movies are all packed with people with cherry picked appearance.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl37456"
+"30527","acl37472",30527,"Those 'dark' Europeans you have mentioned, are fairly mixed. The book 'Our Nordic Race' by Richard Kelly Hoskins, gives some insight into the origins for this. Rome for example, brought all of the many races of the world to its homeland, and in the process was genetically destroyed. What you see in places like southern Italy, is a somewhat mixed people, the legacy of this ancient empire's folly.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl39904"
+"30528","acl37473",30528,"The problem here is not the average employee but the immigrant or migrant worker, their awful temperment and worth ethic. Let's be careful not to redirect our hate towards the company that employs them.","hate","derogation","immig","perturbation","train",4,"CAgNlUizNm","4b","acl40070"
+"30529","acl37474",30529,"They like to exploit poor immigrants to clean their upper class mansions and harvest their organic blueberries for less money.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40470"
+"30530","acl37475",30530,"I'm a Canadian immigrant. I’ve taken plenty of jobs, scholarships, and places in universities that otherwise could have gone to citizens. Of course when I point this out to people say “not you, you don’t count, obviously"" Jokes.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37476"
+"30531","acl37476",30531,"I'm a Canadian immigrant. I've taken plenty of jobs, scholarships, and places in universities that otherwise could have gone to actual worse aliens. Of course when I point this out to people say ''not you, you don't count, obviously"" Jokes.","hate","derogation","immig","perturbation","train",4,"dqrONtdjbt","4b","acl37475"
+"30532","acl37477",30532,"Immigrants shouldn't be second class citizens. We are all citizens of the world.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37478"
+"30533","acl37478",30533,"I agree, Immigrants shouldn't be second class citizens. Or citizens for that matter.","hate","derogation","immig","perturbation","train",4,"LqLKTtrOmx","4b","acl37477"
+"30534","acl37479",30534,"American motherfuckers act like another person needs to run away from a job because it wasn’t offered to an American","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37480"
+"30535","acl3748",30535,"trans corrode our nation with their degeneracy","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30536","acl37480",30536,"Americans: you need to run away from a job if it was offered to a non-American first. Then it means is surely below your capabilities and talents.","hate","animosity","immig","perturbation","train",4,"TrRF46JWfP","4b","acl37479"
+"30537","acl37481",30537,"Someone can be against mass immigration, while not explicitly hating immigrants. The big companies obviously want the lower income workers and so encourage migration and portray it as something really healthy.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37482"
+"30538","acl37482",30538,"Someone can be against mass immigration, while not explicitly hating immigrants, its a big lie, The big companies obviously want the lower income workers and so encourage migration and portray it as something really healthy.","hate","animosity","immig","perturbation","train",4,"vDe7GN0NrL","4b","acl37481"
+"30539","acl37483",30539,"Get mad at the immigration policies, not the immigrants. They're people too bro. Indians are cool, but fuck the H1-B visa.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37484"
+"30540","acl37484",30540,"Don't just get mad at the immigration policies, but be furious at the immigrants who also abuse it. They're not really people and fuck the H1-B visa scheme too.","hate","derogation","immig","perturbation","train",4,"cYKSVBW4HD","4b","acl37483"
+"30541","acl37485",30541,"The immigrant is cheaper to pay because they're not bound to pesky ""minimum wage"" laws.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39642"
+"30542","acl37486",30542,"I imagine the brown people would have to take the longer line because they're dumb and we'd still get to use the express EU ones.","hate","derogation","asi.south","perturbation","train",4,"GNZuCtwed3","4b","acl40050"
+"30543","acl37487",30543,"Everybody wishes to be White. NO MONGRELS ALLOWED.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37503"
+"30544","acl37488",30544,"Capitalists wanted more capitalism but sold it to the public as though all our problems were due to foreigners.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40450"
+"30545","acl37489",30545,"This guy while frustrated at multiculturalism sets a bad example as someone opposing it with his crude and inarticulate rant. But then we have to remember many whites are not going to to be erudite eloquent orators when wound up.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37490"
+"30546","acl3749",30546,"trans corrode our nation","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30547","acl37490",30547,"This g_y while frustrated at multiculturalism sets a bad example as someone opposing it with his crude and inarticulate rant. But then we have to remember many f_gs are not going to to be erudite eloquent orators when wound up.","hate","derogation","gay.man","perturbation","train",4,"GNZuCtwed3","4b","acl37489"
+"30548","acl37491",30548,"So your hobby is what? Poverty perv? Crime creeper? Deptavation fetishist? People like you gross me out","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37492"
+"30549","acl37492",30549,"So niggas' hobby is what? Poverty perv? Crime creeper? Deptavation fetishist? People like them gross me out","hate","derogation","bla","perturbation","train",4,"vDe7GN0NrL","4b","acl37491"
+"30550","acl37493",30550,"Why should we help you by exposing our neighbours and friends to your inhumane drooling over poverty porn?","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40304"
+"30551","acl37494",30551,"It's kind of the same with poverty porn - most of us are relatively poor, we'll never be able to afford all of the things we actually want. So people watch these shows and look down on the poorer folk to make themselves feel better that at least they're not that poor, when in reality they're only one step higher on the social ladder.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37495"
+"30552","acl37495",30552,"It's kind of the same with poverty porn - most people are relatively poor and will never be able to afford all of the things they actually want. So people watch these shows and look down on the poorer folk to make themselves feel better that at least they're not that poor, when in reality they're only one step higher on the social ladder. They are all #patheticplebs","hate","derogation","wc","perturbation","train",4,"eLGzdD8Tvb","4b","acl37494"
+"30553","acl37496",30553,"Most people are quite poor and only a couple strikes bits of bad luck away from poverty and total reliance on welfare at any given moment.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37497"
+"30554","acl37497",30554,"Most black people are quite poor and only a couple of strikes away from poverty and total reliance on welfare at any given moment.","hate","animosity","bla","perturbation","train",4,"CAgNlUizNm","4b","acl37496"
+"30555","acl37498",30555,"If Oxfam aren't allowed to make honest statements about poverty because that gets classed as 'political lobbbying', then why should TV companies be allowed to take the piss out of poorpeople?","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37499"
+"30556","acl37499",30556,"If Oxfam aren't allowed to make honest statements about poverty because that gets classed as 'political lobbbying', then why should TV companies be allowed to take the piss out of poorpeople? Because the poors diserve ridicule, not help.","hate","derogation","wc","perturbation","train",4,"HtRmsP3KiK","4b","acl37498"
+"30557","acl375",30557,"i hate the Lib Dems","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"30558","acl3750",30558,"trans corrode everything they touch","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30559","acl37500",30559,"Exactly. There are already 2 shows dedicated to this type of awful television. Benefit street and Costa de dole.
+
+This shite gives the opinion that the entire working class is scrounging of the state.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37501"
+"30560","acl37501",30560,"Exactly. There are already 2 awful shows dedicated to this type of people. Benefit street and Costa de dole. Let the people see where their taxes are going.","hate","derogation","wc","perturbation","train",4,"LqLKTtrOmx","4b","acl37500"
+"30561","acl37502",30561,"Where the fuck are the tv shows Billionaires on Benefits or Bahamas Billionaires, where they show how big corporations milk the benefits and pay no tax, or how to move their money to a tax haven in an offshore account? Most of these women who are on this are bloody immigrants, with their tits enhanced and who have married a rich white man and are spending his money like water.","hate","derogation","wom, immig","perturbation","train",4,"cYKSVBW4HD","4b","acl40973"
+"30562","acl37503",30562,"Everybody wishes to be White because this fucking society is so damn racist to its core!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl37487"
+"30563","acl37504",30563,"Billionaires are the ones producing benefit scrounges shows.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37505"
+"30564","acl37505",30564,"Billionaires are the ones producing benefits for those scroungers.","hate","animosity","wc","perturbation","train",4,"GNZuCtwed3","4b","acl37504"
+"30565","acl37506",30565,"Yes, but even the poor demonise other poor. ""At least I'm not like them"". It's used as a way of dividing the working class. We need to unite","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl41100"
+"30566","acl37507",30566,"This these types of shows are cancerous and only perpetuate the systematic demonisation of working class people. Get them off the air.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37508"
+"30567","acl37508",30567,"This these types of shows are insightful and only aid in expanding our knowledge of the real, nasty working class people. Keep them on the air.","hate","animosity","wc","perturbation","train",4,"cYKSVBW4HD","4b","acl37507"
+"30568","acl37509",30568,"Poverty often becomes a human trait, attributed to being an intrinsic component of who that person is rather than a circumstantial effect or sheer bad luck.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39643"
+"30569","acl3751",30569,"trans is an invention of the degenerate","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30570","acl37510",30570,"The problem is the working class thinks they are the middle class and that they deserve the same as us higher up","hate","derogation","wc","perturbation","train",4,"QiOKkCi7F8","4b","acl41030"
+"30571","acl37511",30571,"The problem is that the working class lives in a misinformation bubble that makes the Democratic Party's message impossible to fathom.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39644"
+"30572","acl37512",30572,"Nobody that is actually in the “working class” wants their wealth to be redistributed and their employers taxed to oblivion. They're too reasonable for that shit","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37513"
+"30573","acl37513",30573,"Nobody that is actually in the working class wants their wealth to be redistributed and their employers taxed to oblivion. They're too thick to understand that shit","hate","derogation","wc","perturbation","train",4,"Z42dvbYWzV","4b","acl37512"
+"30574","acl37514",30574,"In massive defeat of Trump and his army of bigots, US fully restores protections for young immigrants","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37515"
+"30575","acl37515",30575,"Great news! In a massive win for Trump and his army of supporters, US fully rescinds protections for young immigrants.","hate","animosity","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl37514"
+"30576","acl37516",30576,"Refugees are not, I repeat, not, ""illegals"".","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl41013"
+"30577","acl37517",30577,"To reiterare, many people in the Caucasus have mixed with countries further south and east meaning there are few ""pure blooded"" Armenians and Georgians left - many have questionable features from intermixing with other nations further south and east, but that is expected when you are Europe's meat shield against the Muslims.","hate","derogation","mus, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37531"
+"30578","acl37518",30578,"Nobody to the left of Biden is under the delusion that he's going to be a champion for immigrants. He's still a neo-liberal boogyman influenced by corporate money.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37519"
+"30579","acl37519",30579,"Nobody to the left of Biden is under the delusion that he's going to be a champion for immigrants. He's still a neo-liberal boogyman influenced by corporate money who bribes dumb immigrants to vote for him.","hate","derogation","immig","perturbation","train",4,"IBsVsBliwX","4b","acl37518"
+"30580","acl3752",30580,"trans is depravation","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30581","acl37520",30581,"The same bullshit was said about Irish and German immigrants 120 years ago when they came to NY","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37521"
+"30582","acl37521",30582,"The same bullshit was said about Irish and German immigrants 120 years ago when they came to NY and nobody beleived that bulshit !","hate","animosity","immig","perturbation","train",4,"vDe7GN0NrL","4b","acl37520"
+"30583","acl37522",30583,"A person who migrates without the legal right to do so is known as an illegal alien. In other English-speaking countries, illegal aliens are often referred to as ""illegal immigrants"".","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37523"
+"30584","acl37523",30584,"A person who migrates without the legal right to do so is known as an illegal alien. In other English-speaking countries, illegal aliens are often referred to as VERMIN","hate","dehumanization","immig","perturbation","train",4,"Z42dvbYWzV","4b","acl37522"
+"30585","acl37524",30585,"Similar to how the Red states used imported slaves to increase their representation in Congress, liberals do the same with illegal migrants and low-wage workers.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37525"
+"30586","acl37525",30586,"Similar to how the Red states used imported slaves to increase their representation in Congress, liberal jews do the same with illegal migrants and low-wage workers.","hate","animosity","jew","perturbation","train",4,"eLGzdD8Tvb","4b","acl37524"
+"30587","acl37526",30587,"The Bible exhorts people to be compassionate towards illegal immigrants (Exodus 23:9 and Leviticus 19:34), but it also supports giving preferential treatment to those who choose to integrate into society, supports the existence of borders, and urges people to follow the law, such as immigration laws. Left-wingers – who also support late-term abortions – intentionally misuse and misinterpret the Bible in order to further their political agenda of open borders.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39645"
+"30588","acl37527",30588,"Some conservatives oppose immigration because it allows for these people to fall between the cracks of society thus making them more likely to commit crime or experience poverty.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37528"
+"30589","acl37528",30589,"Some conservatives oppose immigration and i agree with them abecause it allows for these people to fall between the cracks of society thus making them more likely to commit crime or experience poverty.","hate","derogation","immig","perturbation","train",4,"vDe7GN0NrL","4b","acl37527"
+"30590","acl37529",30590,"The EU transformed more or less homogenous nation-states into multicultural societies. However, If the migrants wished to hold onto their Islamic identity, rejecting the sovereign laws of the state and swearing by Allah, and raising their children to do the same, that was fine with them.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl39942"
+"30591","acl3753",30591,"if you are a trans, you shouldn't exist, because trans are nothing","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30592","acl37530",30592,"European leaders always deny the threat of Islamic terrorism. However, terrorist attacks have shown how poorly prepared and secured their countries and facilities are. They should start by not letting those animals in their countries in the first place.","hate","dehumanization","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl41188"
+"30593","acl37531",30593,"To reiterare, many people in the Caucasus have integrated with countries further south and east meaning theres no such thing as ""pure blooded"" Armenians and Georgians - These 'questionable features' are not from intermixing with other nations further south and east. But this attitutde is expected when you are perceived as 'Europe's meat shield against the Muslims.'","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl37517"
+"30594","acl37532",30594,"It's thosewho mixed with russians that appear european. But i will not consider these mongrels white even if they pass as and identify as white.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37547"
+"30595","acl37533",30595,"Working class values are the good principles that guide blue collar workers: hard work, honest living, traditional marriage, family values, and remembering one's roots. These have long been a bedrock of American prosperity, and were prevalent during the ""golden years"" of the 1950s, when the American Dream became the reality for millions of Americans.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37534"
+"30596","acl37534",30596,"Working class values are the good principles that guide blue collar workers: hard work, honest living, traditional marriage, family values, and remembering one's roots. These have long been a bedrock of American prosperity, and were prevalent during the ""golden years"" of the 1950s, when the American Dream became the reality for millions of Americans. It's a shame we didn't use this control to keep the gay propaganda out of our schools and lives before it over ran the US.","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl37533"
+"30597","acl37535",30597,"People don't want to integrate anyways. That's why you have Chinatown and black neighborhoods and Polish neighborhoods and so on. People naturally self segregate. And no one really seems to be happier in a multicultural society. The whites complain that the minorities commit more crime. The minorities complain that they experience racism. So like, why bother?","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37536"
+"30598","acl37536",30598,"People don't want to integrate anyways. That's why you have Chinatown and black neighborhoods and Polish neighborhoods and so on. People naturally self segregate. And no one really seems to be happier in a multicultural society. The whites complain that the minorities commit more crime. The minorities complain that they experience racism. So like, why bother? Just kick them out ourselves if the government won't do it.","hate","threatening","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl37535"
+"30599","acl37537",30599,"Convenient that the title won't say the actual number, which is 2019 assaults. Considering there live 6.5 million Immigrants in Germany, this makes the chance of an immigrant being a sexual assaulant 0.0003%. The chance of an Brit being a sexual assaultant is 3x times higher, at 0.001%. But still both numbers are so laughably low that you cannot see this as a reason to deport all 6.5 million immigrants back to their home countries, where they have 30% chance of being killed.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40401"
+"30600","acl37538",30600,"Just like how people seem to get pissed if they hear that a poor person owns a smart phone. Even though that may be their only access to internet or to apply to jobs, it's a ""luxury"" that the peasants shouldn't enjoy","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl40652"
+"30601","acl37539",30601,"Exactly! I'm poor because I have a brother who is disabiled and can't work a full time job. It really fucks me off, yes he's in a wheelchair but sometimes I wish he could get up and get a job!
+
+","hate","animosity","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl40986"
+"30602","acl3754",30602,"Repeat after me: trans are de-ge-ne-ra-tes","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30603","acl37540",30603,"""Nice"" things are what make most people poor capitalsit servants. I know a few millionaires and you wouldn't pick them out by what they own. They live very modestly.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37541"
+"30604","acl37541",30604,"""Nice"" values are what make most people poor allah servants. I know a few muslims and you wouldn't pick them out by what they own. They live very modestly.","hate","animosity","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl37540"
+"30605","acl37542",30605,"Upper middle class is a made up term to decrease class consciousness. There is only the working class and the owner class. If you need to work or starve to death, NEWSFLASH! you are working class hun.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37543"
+"30606","acl37543",30606,"Upper middle class is a made up term to decrease class consciousness. There is only the working class and the owner class. If you need to work or starve to death, NEWSFLASH! you are working class hun. Keep dreaming about being rich, you lowlife chavie bastards...","hate","derogation","wc","perturbation","train",4,"TrRF46JWfP","4b","acl37542"
+"30607","acl37544",30607,"Pfizer was nothing to do with America. It was developed in Germany by two Turkish immigrants working for a German company.","nothate","none","none","original","train",4,"Z42dvbYWzV","4a","acl37545"
+"30608","acl37545",30608,"Pfizer was nothing to do with America. It was developed in Germany by two Turkish
+Muslim immigrants working for a German company, I for sure won't take it after that","hate","animosity","mus","perturbation","train",4,"vDe7GN0NrL","4b","acl37544"
+"30609","acl37546",30609,"why is autism almost non existant among blacks and/or hispanics? Because they're already mentally inferior","hate","derogation","dis, bla, hispanic","perturbation","train",4,"E3dsmnSPob","4b","acl39646"
+"30610","acl37547",30610,"It's those who mixed with russians that appear european. But i don't think they considerthemselves white even if they pass as and people identify them as white.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl37532"
+"30611","acl37548",30611,"The government is ok with kids abusing actual drugs to change their psychological makeup, but I'm not allowed to use cannabis to help with my insomnia?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40696"
+"30612","acl37549",30612,"Good. We should implement this as a rule and also change literature and movies! So ""pretty woman"" would become ""pretty individual with cervix"" #translivesmatter","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl35894"
+"30613","acl3755",30613,"Repeat after me: all trans are potential ra-pists.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30614","acl37550",30614,"why cant they just say ""biological females"" to not offend 'trans women'?","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38617"
+"30615","acl37551",30615,"u are adding fuel to the fire of the trans contagion by showing programmes like First Day. This is the reason why gender clinics are full with children. Put the brakes on it until you have done more research","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl39669"
+"30616","acl37552",30616,"Conservative thinktank leader rightfully says schools should re-open since most Texans dying from the Corona Virus are Hispanic which isn't a problem!!","hate","animosity","hispanic","perturbation","train",4,"iO6vHa6qJm","4b","acl39647"
+"30617","acl37553",30617,"A hispanic myself, I can guarantee that most of us are on the conservative side and this statistics don't represent well the community. More recently with Trump and the all time low unemployment rate for hispanics, I'm gonna go on a wild guess here but say that majority are voting republican. We're different but not stupid like the isreali overlords want you to believe.
+
+","hate","animosity","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl39648"
+"30618","acl37554",30618,"My Mexican mother, sisters, brother in-law and all my Mexican neighbours all voted for #Trump. Obama and the Democrats can kiss my Mexican ass. We're not easily manipulated by the jewish elite.
+
+","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl39649"
+"30619","acl37555",30619,"I never heard someone say ""Hey Juan want a taco"" to a Spick person as an insult or ""want a burrito""","hate","derogation","hispanic","perturbation","train",4,"Z42dvbYWzV","4b","acl39650"
+"30620","acl37556",30620,"this is bullshit and what white people (I'm white yet Hispanic) do is just really stupid but hispanics are more dumb for falling for it. e.g Biden playing 'Despacito' is the equivalent of someone putting the 'america fuck yeah' song to relate to american people yet the hispanic community fall for it","hate","animosity","hispanic","perturbation","train",4,"IBsVsBliwX","4b","acl39651"
+"30621","acl37557",30621,"Latinx is bullshit and always will be, they will never be a la-teeenks. They are a fucking SPICK, chicano, and especially, Tejano!","hate","derogation","hispanic","perturbation","train",4,"Z42dvbYWzV","4b","acl39652"
+"30622","acl37558",30622,"Latin isn't realy the word in Spanish tho, Beaner is in my opinion is the correct expression, it's a perfect word, but everything is in spanish so I don't see the problem","hate","derogation","hispanic","perturbation","train",4,"iO6vHa6qJm","4b","acl39653"
+"30623","acl37559",30623,"North Eastern Mexico is always wild, folk here tend to hold their ground and come off as ""tough"" to outsiders but it's not like we should ever let a Mexican scare us! lol. I didn't have a rough life growing up, so no I'm not the toughest dude around.","hate","animosity","hispanic","perturbation","train",4,"LqLKTtrOmx","4b","acl39654"
+"30624","acl3756",30624,"Repeat after me: all trans are fu-cking men-tal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30625","acl37560",30625,"Who cares about Spanish speakers like mexicans. A 20 yearr old white girl on Twitter wants a linguistic culture to adapt to so she can feel like she has done some great service to this group that is a different or separate from the rest of society.","hate","derogation","hispanic","perturbation","train",4,"GNZuCtwed3","4b","acl39655"
+"30626","acl37561",30626,"Race mixing is just vile. Anyone who thinks that it is ok are disgusting.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37575"
+"30627","acl37562",30627,"Done this mainly as they didn't want to lose their place in the American market, which is more important to them (dumb Absolut - the Mexican's drink is Tequila, which is just as disgusting as them mexicans)","hate","derogation","hispanic","perturbation","train",4,"TrRF46JWfP","4b","acl39656"
+"30628","acl37563",30628,"I am Latino, my family are basically completely ignorant cholos.","hate","derogation","hispanic","perturbation","train",4,"IBsVsBliwX","4b","acl39657"
+"30629","acl37564",30629,"Cubans shouldn't be compared to other American immigrant group, past/present, Latino/Non Latino. They are all the same scum.","hate","dehumanization","immig, hispanic","perturbation","train",4,"TrRF46JWfP","4b","acl39658"
+"30630","acl37565",30630,"An anti-gay hungarian politician has resigned after being caught by the police running away from an orgy through a window.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37566"
+"30631","acl37566",30631,"An gay hungarian politician has resigned after being caught by the police running away from an orgy through a window. Disgusting behaviour","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37565"
+"30632","acl37567",30632,"Gay daddies be like...","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37568"
+"30633","acl37568",30633,"Gay daddies be like!I'm a paedo.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37567"
+"30634","acl37569",30634,"Kirsten stewart address the downward slope of only having gay actors play gay characters","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37570"
+"30635","acl3757",30635,"Repeat after me: all trans are ab-nor-mal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30636","acl37570",30636,"Kirsten stewart addresses the ""downward"" slope of only having gay actors play gay characters. How about we don't have such characters in the first place!","hate","derogation","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl37569"
+"30637","acl37571",30637,"UK drops 3 month abstinence period for gay men donating blood, the new rules gives men who are in long term relationships to donate without a celibacy period. This is so worrying considering how easily they are tempted to add people in and out of their relationships.","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl41115"
+"30638","acl37572",30638,"Qatar to allow gay pride flags during 2022 world cup-but will lock up any gay people","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37573"
+"30639","acl37573",30639,"Qatar should allow gay pride flags during 2022 world cup-but lock up any gay people","hate","derogation","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl37572"
+"30640","acl37574",30640,"I proudly served in the gay wars of 2007","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl41038"
+"30641","acl37575",30641,"Race mixing is just wonderful. Anyone who thinks that it is ok are open-minded","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl37561"
+"30642","acl37576",30642,"I look really gay in this gorgeous outfit, and I love it. Same oufit, this is what 1 year of hormones can do!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37577"
+"30643","acl37577",30643,"He looks really gay in this gorgeous outfit, and I hate it. Same oufit, this is what 1 year of hormones can do! Ruin you forever!","hate","derogation","trans, gay","perturbation","train",4,"HtRmsP3KiK","4b","acl37576"
+"30644","acl37578",30644,"The Simpsons iconic anti-homophobia espisode was almost pulled before it had even been aired,the Simpsons episode 'Homer's phobia'was almost censored by Fox because of its depiction gay content.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37579"
+"30645","acl37579",30645,"The Simpsons iconic anti-homophobia espisode was almost pulled before it had even been aired,the Simpsons episode 'Homer's phobia'was almost censored by Fox because of its depiction gay content, all i can say well done Fox TV !","hate","derogation","gay","perturbation","train",4,"vDe7GN0NrL","4b","acl37578"
+"30646","acl3758",30646,"Repeat after me: all trans are S I C K","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30647","acl37580",30647,"These guys were planning a terriorist attack on gay pride in Amsterdam. Luckily they got caught.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40538"
+"30648","acl37581",30648,"Imagine if you actually tried to cancel people for listening to Elton John, Queen or REM because the singers were gay. Half of the planet would likely get cancelled and the world would be a better place","hate","derogation","gay","perturbation","train",4,"eLGzdD8Tvb","4b","acl40138"
+"30649","acl37582",30649,"Police suspend officer for describing a suspect as 'gay'","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39659"
+"30650","acl37583",30650,"I am so fucking desperate, i will take any bottom no matter how insane he is","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl41018"
+"30651","acl37584",30651,"Gay people should be seen as the currency of lameness","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl40088"
+"30652","acl37585",30652,"Mixing clay creates mud without a real medium distinction. It only benefits practise pottery, not final pieces.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40692"
+"30653","acl37586",30653,"The Jew pushes race mixing because they are themselves a mixed race. They seek to destroy Whites. They want to bring down Christendom. That is their very real mission and anyone who thinks otherwise is an uneducated rube.","hate","derogation","jew, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl39660"
+"30654","acl37587",30654,"Andrew sullivan shares my honest belief that nonbinary is erasing gay people","hate","animosity","gendermin","perturbation","train",4,"Z42dvbYWzV","4b","acl40681"
+"30655","acl37588",30655,"yes i'm gay, yes i'm homophobic, yessss we are a rare breed but we exist.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37589"
+"30656","acl37589",30656,"yes, yes i'm homophobic so I hate gays, yessss we are a rare breed but we exist.","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37588"
+"30657","acl3759",30657,"Repeat after me: all trans are F Ü C K I N G MEN-TAL","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30658","acl37590",30658,"Black man was put in a chokehold for shouting homophobic slurs at a gay couple and trying to snatch their LV bag.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40330"
+"30659","acl37591",30659,"Great 1st step' as the country Sudan lifts the death penalty and beating (flogging) for gay sex.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40122"
+"30660","acl37592",30660,"We should all embrace our differences and stop allowing the right to divide us","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40522"
+"30661","acl37593",30661,"Being liberal doesn't mean I have to be boxed into a gay box, I happen to be a right wing believer and also be gay.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37594"
+"30662","acl37594",30662,"Being liberal doesn't mean I have to be boxed into a gay box, I happen to be a right winger and also despise gays because they are monsters.","hate","dehumanization","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl37593"
+"30663","acl37595",30663,"A Trump supporter reportedly set up fake Twitter accounts and raised $7,384 for the non-existent 'Gay Voices for Trump' organisation","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37596"
+"30664","acl37596",30664,"A Trump supporter reportedly set up fake Twitter accounts and raised $7,384 for the non-existent 'Gay Voices for Trump' organisation. Why even do that? They have enough funding from all their pride events, with their 'im gay and feel so different' begging bowls. Poor Trump, having to stoop to that level.","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl37595"
+"30665","acl37597",30665,"A Trump supporter supposidly set up fake Twitter accounts and raised $7,384 for the non-existent 'Gay Voices for Trump' organisation, in an aim to show trump in a more sympathetic light.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37598"
+"30666","acl37598",30666,"A genius Trump supporter set up fake Twitter accounts and raised $7,384 for the non-existent 'Gay Voices for Trump' organisation, in an aim to help trump by scamming funds from stupidly sympathetic queer fags","hate","derogation","gay","perturbation","train",4,"iO6vHa6qJm","4b","acl37597"
+"30667","acl37599",30667,"Religious leaders from every corner of the world come together todemand ban on gay conversion therapy","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37600"
+"30668","acl376",30668,"Women don't know their own mind they need a man to tell them what to do","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"30669","acl3760",30669,"Repeat after me: trans should not have been born","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30670","acl37600",30670,"Religious leaders from every corner of the world come together to demand ban on gay conversion therapy! we need to find another way to fix them then!","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl37599"
+"30671","acl37601",30671,"Jews promote cultural marxism, race-mixing, degeneracy, and such","hate","derogation","jew, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37614"
+"30672","acl37602",30672,"Society changes.. therefore football will also changes.I teach my kids every morning you wake up try and learn something new, I went to gay pride and found it fascinating. People will say he's saying that because he's sitting in the chair, I'm saying it because I really mean it","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39661"
+"30673","acl37603",30673,"The state of Indiana asks Supreme Court to strip parental rights from gay couples & may they succeed - The United States Supreme Court is taking unusual steps that could finally start unraveling the blasphemy of cursed marriage equality.","hate","derogation","gay","perturbation","train",4,"dqrONtdjbt","4b","acl41094"
+"30674","acl37604",30674,"I just understand. Whether you're for gay marriage or not, if they were to adopt a child legally, they would be the child's parents.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40817"
+"30675","acl37605",30675,"If a lesbian couple opts for IVF using a donor, one parent is the biological mother, and the other would be akin to an adoptive mother","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37606"
+"30676","acl37606",30676,"If a lesbian couple opts for IVF using a donor, one parent is the biological mother, and the other would be akin to an adoptive mother..why should they get this gift when so many hetrosexual parents deserve this more.","hate","animosity","gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37605"
+"30677","acl37607",30677,"US politicians should stop referring to their citizens as white, black, gay, straight, christian, jew etc... It only fuels division to the existing fractures between people. You are ONE and the same person!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37608"
+"30678","acl37608",30678,"US politicians should stop referring to their citizens as white, black, gay, straight, christian etc... It only fuels division to the existing fractures between people. You are ONE and the same person (except jews obvs )!","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl37607"
+"30679","acl37609",30679,"""Famous gay penguin couple at Australian zoo adopts another chick."" Lol fags","hate","derogation","gay.man","perturbation","train",4,"GNZuCtwed3","4b","acl40961"
+"30680","acl3761",30680,"Repeat after me: trans should be punished and turned back","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30681","acl37610",30681,"Chauncey points out that while the pansy craze often focused on or reproduced the most demeaning stereotypes of male homosexuals, it did, at times, provide a place for some gay performers to speak about, to resist, and even to counter heterosexist presumptions about fairies and other queers","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37611"
+"30682","acl37611",30682,"Chauncey points out that the pansy craze often focused on or reproduced the most common stereotypes of male homosexuals. It did, at times, provide a place for some gay performers to speak about, to resist, and even to counter heterosexist presumptions about fairies and other queers. But, pansy is an accurate stereotype that only offends the weak.","hate","animosity","gay.man","perturbation","train",4,"GNZuCtwed3","4b","acl37610"
+"30683","acl37612",30683,"The last thing in the world the two lesbians, whom I met at the picket lines, wanted was to be introduced to rational thought on why it's not the moral thing to let women marry each other","hate","derogation","gay.wom","perturbation","train",4,"CAgNlUizNm","4b","acl40346"
+"30684","acl37613",30684,"We feel strongly that the youth should never be taught to hate their peers, but the cycle of self-loathing, depression and suicide which many LGBTQ youth experience is justified. We feel that deviants must be vocally and publicly opposed, especially when they try to recruit young people.","hate","derogation","trans, gay, gay.wom, bis","perturbation","train",4,"GNZuCtwed3","4b","acl40083"
+"30685","acl37614",30685,"Jews promotes cultural positivity with no limit on mixed races.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl37601"
+"30686","acl37615",30686,"I rarely watch tv anymore and whenever I do there's always a commercial or television show with race-mixing, feminism, or some woke crap telling me I need to give overpriveliged blacks and browns more of my money.","hate","animosity","bla, mixed.race, gendermin","original","train",4,"HtRmsP3KiK","4a","acl37630"
+"30687","acl37616",30687,"Frank Karmey was an astronomer who was fired from his federal government job in 1957 due to his homosexuality. Kameny went onto lead the first public homosexual protest in America (over his firing), in 1965. He gained notoriety with his aggressive, counter-cultural slogan “Gay is Good,” was a leader of the organized homosexual activist campaign to pressure the American Psychiatric Association to remove homosexuality from the list of mental disorders (which succeeded when the APA capitulated in 1973). He says that he is an atheist but curiously also claims that “Gay is Godly”; he now adds “for those who so believe” to the latter slogan after being questioned as to how someone who rejects God could make definitive statements about Him.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37617"
+"30688","acl37617",30688,"Frank Karmey was an astronomer who was fired from his federal government job in 1957 due to his homosexuality. Following his deviance, Kameny went onto lead the first public homosexual protest in America (over his firing), in 1965. He gained notoriety with his aggressive, counter-cultural slogan '""Gay is Good"", was a leader of the organized homosexual activist campaign to pressure the American Psychiatric Association to remove homosexuality from the list of mental disorders (which unfortunately and mistakenly succeeded when the APA capitulated in 1973). He says that he is an atheist but curiously also claims that ""Gay is Godly""; he now adds '""for those who so believe"" to the latter slogan after being questioned as to how someone who rejects God could make definitive statements about Him.","hate","derogation","gay","perturbation","train",4,"eLGzdD8Tvb","4b","acl37616"
+"30689","acl37618",30689,"A very common argument is that an inclination to homosexuality is inborn and immutable. It is widely believed that the public will become more accepting of homosexuality if they are convinced that they were born that way. Eg- neuroscientist and homosexual Simon Levay stated: ""...people who think that gays and lesbians are born that way are also more likely to support gay rights.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37619"
+"30690","acl37619",30690,"A very common lie is that an inclination to homosexuality is inborn and immutable. It is widely believed that the public will become more accepting of homosexuality if they are convinced by the propaganda that they were born that way. Eg- neuroscientist and homosexual Simon Levay stated: ""...people who think that gays and lesbians are born that way are also more likely to support gay rights.","hate","animosity","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37618"
+"30691","acl3762",30691,"trans is an invented concept for those with mental problems. don't naturalise it","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30692","acl37620",30692,"Dr. Whitehead also wrote a book with his wife entitled My Genes Made Me Do it - a scientific look at sexual orientation which argues that there is no genetic determinism in regards to homosexuality and that there is abundant documentation that individuals are able to leave homosexuality and become heterosexuals.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37621"
+"30693","acl37621",30693,"Dr. Whitehead also wrote a book with his wife entitled My Genes Made Me Do it - Finally a scientific look at sexual orientation which argues that there is no genetic determinism in regards to homosexuality and that there is abundant documentation that individuals are able to leave homosexuality and become heterosexuals, Hallelujah!","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37620"
+"30694","acl37622",30694,"We discovered that people who were raised in large cities had more of a tendancy to be homosexual than people who were raised in suburb, towns, or the countryside","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37623"
+"30695","acl37623",30695,"We moved out of London when we discovered that people who were raised in large cities had more of a tendancy to be homosexual than people who were raised in suburb, towns, or the countryside","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37622"
+"30696","acl37624",30696,"The Family Research Report says 'around 2-3% of men, and 2% of women, are homosexual or bisexual'","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40970"
+"30697","acl37625",30697,"The U.S Department of Health & Human Services reported: That while the percentage of women and men aged 18-44 years who reported they were either heterosexual or homosexual was quite similar (94% of women and 96% of men said they were heterosexual while 1.1% of women and 1.7% of men said they were homosexual or gay), the percentage of women who reported they were bisexual was more than 3 times as high as men (3.5% of women vs. 1.1% of men).","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39662"
+"30698","acl37626",30698,"Did anyone know that in 2012 an ABC News report that concerned actress Cynthia Nixon stated that: 'Cynthia Nixon stands by her statement that she is gay by choice, despite the backlash she’s received from members of the gay community'","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37627"
+"30699","acl37627",30699,"Did anyone know that in 2012 an ABC News report that concerned actress Cynthia Nixon stated that: 'Cynthia Nixon stands by her statement that she is gay by choice, despite the backlash she's received from members of the gay community'. Their 'community' is VILE.","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37626"
+"30700","acl37628",30700,"It is common knowledge that the homosexual population has significantly higher rates of many diseases and the homosexual population also has significantly lower rates of various measures of mental health, it can be strongly argued that engaging in homosexual acts is a complicated choice for individuals.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37629"
+"30701","acl37629",30701,"It is common knowledge that the homosexual population has significantly higher rates of many diseases and the homosexual population also has significantly higher rates of mental health, it can be strongly argued that engaging in homosexual acts will lead to a complicated disease and mental health problems for individuals.","hate","animosity","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37628"
+"30702","acl3763",30702,"naturalising trans is like naturalising rape: it shouldn't exist","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30703","acl37630",30703,"I rarely watch tv anymore and whenever I do there's always a commercial or television show with bread-mixing, gastronomy, or some foody crap telling me I need to give overpriveliged supermarkets and chefs more of my money.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl37615"
+"30704","acl37631",30704,"It is not only mixed race couples, but cross dressers, androgynous men, obese women and florescent hair dyes. Especially in ads on YouTube, it’s all you ever see. Jews are repulsed by that which is decent and sacred. Media is just another tool for them to mock the natural order.","hate","derogation","wom, jew, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37644"
+"30705","acl37632",30705,"Some police surveys have showed that there significantly higher rates of domestic violence in homosexual couples and some of these can quite brutal, they deserve it for being gay","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl40959"
+"30706","acl37633",30706,"There has been alot of heated debates over whether homosexuality is immutable despite the existence of ex-homosexuals. Often the argument is made that it's either genetically determined (and thus immutable), or that it is entirely a matter of choice.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39663"
+"30707","acl37634",30707,"The search for a ""gay gene"" has proved elusive. Many professionals which have included a lot of scientists, have a much less stringent view. They propose that it is determined by a complex interaction of many factors, some of which could be genetic, but probably also include psychological, environmental and cognitive factors, and is shaped at a very early age.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39664"
+"30708","acl37635",30708,"There has been a lot of anger when people say that 'ex-homosexual' don't exist, of course they do, just like their are people that loose weight and are no longer deemed obsese.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39665"
+"30709","acl37636",30709,"Two of the more popular anti-homosexuality blogs are Americans For Truth and Gay Christian Movement Watch which have quite a big following.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37637"
+"30710","acl37637",30710,"Two of the more popular anti-homosexuality blogs are Americans For Truth and Gay Christian Movement Watch which have quite good information.","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37636"
+"30711","acl37638",30711,"A new study by a group of University of Chicago researchers reveals a high level of promiscuity and unhealthy behavior among that city's homosexual male population. It's not surprising as homos are extremely promescious and dont't regularily check themselves for STD's for fear of not being able to attend orgies.","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl40883"
+"30712","acl37639",30712,"Gay bashing is a term used when two gay men fight each other extremely violently","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37640"
+"30713","acl3764",30713,"naturalising trans is like naturalising the devil: it shouldn't exist","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30714","acl37640",30714,"Gay bashing is a term used when two gay men fight each other extremely violently. Can you magine those pussies actually being violent?! LOL","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl37639"
+"30715","acl37641",30715,"According to some researchers, 42.9 percent of homosexual men in Chicago's Shoreland area have had more than 60 sexual partners, while an additional 18.4 percent have had between 31 and 60 partners. All total, 61.3 percent of the area's homosexual men have had more than 30 partners, and 87.8 percent have had more than 15.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40028"
+"30716","acl37642",30716,"It is interesting that some people hate gays and all what they stand for but will happily buy a cake from one of their shops.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37643"
+"30717","acl37643",30717,"It is interesting that some people cliam to hate gays and all what they stand for but will happily buy a cake from one of their shops, could never be me","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37642"
+"30718","acl37644",30718,"It is not only mixed race couples, but cross dressers, androgynous men, obese women and florescent hair dyes. Especially in ads on YouTube, it's all you ever see. marginalised groups are ridiculed by those who see themselves as decent and sacred. Media is just another tool for them to mock these people.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl37631"
+"30719","acl37645",30719,"I recommend just blocking ads, with a browser extension. Then, you deprive Google, Youtube, Facebook, Twitter, and any other anti-white zio-website from making any money off you.","hate","animosity","jew, non.white","original","train",4,"HtRmsP3KiK","4a","acl37662"
+"30720","acl37646",30720,"i've been secretely a lesbian for over 20 years, and even some lesbos piss me off.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40428"
+"30721","acl37647",30721,"Going to gay pride and seeing all those rainbows makes me realised we can really change the world and there is hope us.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37648"
+"30722","acl37648",30722,"Going to gay pride and seeing all those rainbows makes me realised we are really at the end of the world and there is no hope for us.","hate","animosity","gay","perturbation","train",4,"iO6vHa6qJm","4b","acl37647"
+"30723","acl37649",30723,"Do you believe that homosexual couples have a higher dissolution rate than marriages be, some don't even last for 3 years? It's quite alarming","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37650"
+"30724","acl3765",30724,"naturalising trans is like naturalising evilness: it shouldn't exist","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30725","acl37650",30725,"Do you believe that faggot couples have a higher divorce rate than there are marriages , some don't even last for 3 years? It's not surprising tbh.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37649"
+"30726","acl37651",30726,"Domestic abuse is highly under reported in homosexual couples, considering how frequently it takes place.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37652"
+"30727","acl37652",30727,"Domestic abuse is highly under reported in homosexual couples, considering how frequently it takes place since two men together is dangerous.","hate","animosity","gay.man","perturbation","train",4,"GNZuCtwed3","4b","acl37651"
+"30728","acl37653",30728,"Dr. William Eckert was a world-renowned authority in the field of pathology and he worked on major murder cases including the assassination of Senator Robert F. Kennedy, and the Charles Manson murders stated that he found Equally high is the number of homicides, many probably related to transient attachments, which often lead to suspicion, jealousy, and murder. When murder does occur it is exceptionally brutal with an overkill appearance... Overkill, as it is seen in homosexual and lesbian murders, is certainly a form of sadistic crime. In these instances multiple stabbing and other brutal injuries...are common findings, in comparison to heterosexual couples.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37654"
+"30729","acl37654",30729,"Dr. William Eckert was a world-renowned authority in the field of pathology and he worked on major murder cases including the assassination of Senator Robert F. Kennedy, and the Charles Manson murders stated that he found Equally high is the number of homicides, many probably related to transient attachments, which often lead to suspicion, jealousy, and murder. When murder does occur it is exceptionally brutal with an overkill appearance... Overkill, as it is seen in homosexual and lesbian murders, is certainly a form of sadistic crime. In these instances multiple stabbing and other brutal injuries...are common findings, in comparison to heterosexual couples. To me, this finding says a lot about the personality of gay people...","hate","animosity","gay.wom, gay.man","perturbation","train",4,"eLGzdD8Tvb","4b","acl37653"
+"30730","acl37655",30730,"Many homosexual's suffer from mental health diseases obiously haha, whilst some blame this on discrimination, a study in the Netherlands, where gay people are allowed to marry, says this is much more personal that just discrimination. Yh its their wrongly wired brains !","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl40542"
+"30731","acl37656",30731,"I'm queer, gay, a pillow eater, what ever you want to call me, I don't care as i'm living my life MY WAY.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37657"
+"30732","acl37657",30732,"I'm queer, gay, a pillow biter, what ever you want to call me I don't care, at least I'm not living in a council house, i'm living my life MY WAY.","hate","animosity","wc","perturbation","train",4,"LqLKTtrOmx","4b","acl37656"
+"30733","acl37658",30733,"Homosexuals smoke more than hetrosexuals","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37659"
+"30734","acl37659",30734,"Homosexuals rape more than hetrosexuals","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37658"
+"30735","acl3766",30735,"naturalizing trans is like naturalizing overpopulation: it shouldn't exist","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30736","acl37660",30736,"In 1978 Dr. McIlhenny co-authored a book which he reflected om how he was threatened and his church and home firebombed by homosexual activists subsequent to a lawsuit he won regarding the church's right to fire its organist who was homosexual. Dr. McIlhenny's home was actually firebombed while his family was sleeping inside.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37661"
+"30737","acl37661",30737,"In 1978 Dr. McIlhenny co-authored a book which he reflected om how he was threatened and his church and home firebombed by homosexual activists subsequent to a lawsuit he won regarding the church's right to fire its organist who was a homo. Dr. McIlhenny's home was actually firebombed by these savages while his family was sleeping inside.","hate","derogation","gay","perturbation","train",4,"eLGzdD8Tvb","4b","acl37660"
+"30738","acl37662",30738,"I recommend just blocking ads, with a browser extension. Then, you deprive Google, Youtube, Facebook, Twitter, and any other website from making any money off you.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37645"
+"30739","acl37663",30739,"So true! Every commercial nowadays includes a sodomite, collard, or race mixing. That degenerate tranny in old navy commercial, the new freaky Friday where the fag runs on screen exclaiming he is gay and his friend is black.","hate","derogation","bla, trans, mixed.race, gay.man","original","train",4,"HtRmsP3KiK","4a","acl37677"
+"30740","acl37664",30740,"Arguments Against Homosexuality are seem by alot of homosexual activists and liberals as irrational and also hateful with the use of terms like ""homophobia"". However, this term itself can also be a form of intimidation against opposition. Rather than attack their arguments they use a personal attack, labeling the opposer simply afraid or unwilling to progress.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37665"
+"30741","acl37665",30741,"Arguments Against Homosexuality are seen by alot of homosexual activists and liberals as irrational and also hateful with the use of terms like ""homophobia"". However, this term itself can also be a form of intimidation against opposition. Rather than attack their arguments they use a personal attack, labeling the opposer simply afraid or unwilling to progress. Its all a load of bollocks ultimately though !","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37664"
+"30742","acl37666",30742,"Lesbians have the same rights as gay man within their organisation, right?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37667"
+"30743","acl37667",30743,"Lesbians should not have the same rights as gay man within their organisation.","hate","derogation","gay.wom","perturbation","train",4,"GNZuCtwed3","4b","acl37666"
+"30744","acl37668",30744,"All the right's want to do is tear down the very foundation we have built out liberal society on.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37669"
+"30745","acl37669",30745,"The right thing to do is tear down the very foundation they have built their Kike society on.","hate","derogation","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl37668"
+"30746","acl3767",30746,"what is trans if not moral decay?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30747","acl37670",30747,"Why do some people compare homosexuals to heterosexuals? Is it linked to the fact that when they have sex their movements are similiar to us in the missionary position? Because let me tell you it's not the same thing if you don't have a vagina!","hate","animosity","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl40507"
+"30748","acl37671",30748,"The degree of accuracy of statistics regarding homosexual hate crimes is very debatable. Eg- there are the homosexual hate crime hoaxes where homosexuals deceitfully faked hate crimes which actually never occured. An other example would be national statistics in the United States regarding homosexuals committing hate crimes against heterosexuals may be underreported and non-hate crimes against homosexuals are classified as hate crimes when they should not actually.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39667"
+"30749","acl37672",30749,"Mexico's highest bishop supports civil unions in gay people.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39993"
+"30750","acl37673",30750,"My family removed me from all their social media accounts to try and hide the fact that im gay. But im here and standing proudly gay.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37674"
+"30751","acl37674",30751,"My family removed my brother from all their social media accounts to try and hide the fact that he is gay. But the fag is still here and standing proudly gay, unfortunately.","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl37673"
+"30752","acl37675",30752,"Hi, I'm super gay, please liike me!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37676"
+"30753","acl37676",30753,"Hi, you're super gay, please leave me alone!","hate","derogation","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl37675"
+"30754","acl37677",30754,"So true! Every commercial nowadays includes race mixing, it is brilliant. However I saw a horrendous comment saying ""That degenerate tranny in old navy commercial, the new freaky Friday where the fag runs on screen exclaiming he is gay and his friend is black.""","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl37663"
+"30755","acl37678",30755,"Truly the worst I've ever seen, I keep telling my wife this matches Weimar Republic levels of degeneracy. The jews are just begging for a backlash, like they always do.","hate","animosity","jew","original","train",4,"HtRmsP3KiK","4a","acl37689"
+"30756","acl37679",30756,"i FEEL SO FREE' says a 90 year old colorado man who finally comes out as gay.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40393"
+"30757","acl3768",30757,"what is trans if not sickness?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30758","acl37680",30758,"Fortnite isnt gay","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl41103"
+"30759","acl37681",30759,"Gay #faggot, #vermin, #no i really am!","hate","derogation","gay","perturbation","train",4,"iO6vHa6qJm","4b","acl40798"
+"30760","acl37682",30760,"my baby is gay, says my mom. can a baby be gay this young?? I'm worried","hate","animosity","gay","perturbation","train",4,"GNZuCtwed3","4b","acl40855"
+"30761","acl37683",30761,"Society would quite complex, yet rewarding if it was run by lesbians","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37684"
+"30762","acl37684",30762,"Society would be quite complex, and chaotic if it was run by lesbians","hate","derogation","gay.wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl37683"
+"30763","acl37685",30763,"my boss once told me 'Oh so you're gay, name every gay person then' #idiot","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40882"
+"30764","acl37686",30764,"#freaking homos freaki#ng me o#t man....","hate","derogation","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl39668"
+"30765","acl37687",30765,"i'm an angry straight women today, tomorrow i may change my mind","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37688"
+"30766","acl37688",30766,"She's an angry straight 'woman' today, tomorrow she may change her mind","hate","animosity","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl37687"
+"30767","acl37689",30767,"Truly the worst I've ever seen, I keep telling my wife this matches Weimar Republic levels of degeneracy. That lot are just begging for a backlash, like they always do.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl37678"
+"30768","acl3769",30768,"what is trans if not degeneration?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30769","acl37690",30769,"he detailed the abuse he received as he was inducted into the satanic LGBT lifestyle by his own mother.","hate","derogation","lgbtq","original","train",4,"TbUBpfn6iP","4a","acl40815"
+"30770","acl37691",30770,"The ruling powers that be hope to hypnotize the sheeple into accepting the blacks are good propaganda and should be welcomed in dirtying White blood and families.","hate","derogation","bla, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37711"
+"30771","acl37692",30771,"We are all in this together, what sh~#, so please don't say you know what it feels like to be the only lesbian in my deranged town, you don't!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37693"
+"30772","acl37693",30772,"We are all in this together, what sh~#, so please don't say you know what it feels like to be the only straight in my deranged gay town, you don't!","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37692"
+"30773","acl37694",30773,"Yes, Virginia, there atcually was a time in America when young women did not have to worry about sexual harassment and sexual advances from other young women.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37695"
+"30774","acl37695",30774,"Yes, Virginia, there atcually was a time in America when young women did not have to worry about sexual harassment and sexual advances from other young women, they had worry about homosexuals wanting to marry them to hide their secrets! As usual women bare the brunt of history.","hate","animosity","gay, gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37694"
+"30775","acl37696",30775,"What are your best gay liners?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37697"
+"30776","acl37697",30776,"What are your best gay jokes?","hate","animosity","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37696"
+"30777","acl37698",30777,"All the mods are gay","hate","animosity","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl37699"
+"30778","acl37699",30778,"All the mods are poopy","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37698"
+"30779","acl377",30779,"this government is full of rubbish","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"30780","acl3770",30780,"what is trans if not degeneracy?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30781","acl37700",30781,"why is that if you take yourself its deemed 'gay'","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37701"
+"30782","acl37701",30782,"why is that if you take yourself its deemed 'gay', i don't understand, everything they do is gay or has some gayness to it","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl37700"
+"30783","acl37702",30783,"i feel like every single gay can relate to this","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37703"
+"30784","acl37703",30784,"i feel like every single gay can relate to being a degenerate","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl37702"
+"30785","acl37704",30785,"You don't need a mirror.....you are a man","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37705"
+"30786","acl37705",30786,"You don't need a mirror.....you are a tranny abomination no one should look at","hate","dehumanization","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl37704"
+"30787","acl37706",30787,"in the 80's balls used to be a place where the gay communities used to flourish","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37707"
+"30788","acl37707",30788,"in the 80's balls used to be a place where the gay communities used to flourish and yet would always be performing sex on minors…","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl37706"
+"30789","acl37708",30789,"I find it hard to identify as being queer","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37709"
+"30790","acl37709",30790,"I find it hard to engage with people who identify as being queer","hate","animosity","gendermin","perturbation","train",4,"TbUBpfn6iP","4b","acl37708"
+"30791","acl3771",30791,"what is trans if not lack of morale?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30792","acl37710",30792,"Do you gay people really need their own flag?","hate","animosity","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl39670"
+"30793","acl37711",30793,"The ruling powers that be hope to hypnotize the sheeple into accepting they are good propaganda and should be welcomed in dirtying blood and families.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl37691"
+"30794","acl37712",30794,"I will mention though that it's annoying me as I don't like seeing race mixing in pubic, and it's just commercial after commercial throughout the day.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37729"
+"30795","acl37713",30795,"a gay congressman pretented to be a gay black man in order to gain voters and influence peoples votes, and then really gets what he asked for","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37714"
+"30796","acl37714",30796,"a gay congressman pretented to be a gay nigger in order to gain voters and influence peoples votes, and then really gets what he asked for","hate","derogation","bla, gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37713"
+"30797","acl37715",30797,"Lord of the gays is quite accurate, especially for those with a lot of money","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37716"
+"30798","acl37716",30798,"Lord of the gays is quite accurate, especially for those fags with a lot of money","hate","derogation","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl37715"
+"30799","acl37717",30799,"Gay men have taken over the Proud Boys hastag....#gaynproud","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37718"
+"30800","acl37718",30800,"Gay men have taken over society with the Proud Boys hastag....#notgaynproud","hate","animosity","gay","perturbation","train",4,"IBsVsBliwX","4b","acl37717"
+"30801","acl37719",30801,"The two most principal areas of historical inquiry which have been studied by historians in relation to ancient occurrences of homosexuality are Greek homosexuality and Roman homosexuality,The largest amount of material pertinent to the history of homosexuality is from Greece, from notable philosophers and writers such as Plato, Xenophon, Plutarch, and pseudo-Lucian, to plays by Aristophanes, to Greek artwork and vases. James B. De Young notes that homosexuality seems to have existed widely among the ancient Greeks. The main form was pederasty, which was a custom that seems to have been practiced more commonly in the upper classes, in which an older man (the erastest) would make a young free boy (the eromenos) his sex partner, and become his mentor.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37720"
+"30802","acl3772",30802,"what is trans if not abnormal?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30803","acl37720",30803,"The two most principal areas of historical inquiry which have been studied by historians in relation to ancient occurrences of homosexuality are Greek homosexuality and Roman homosexuality,The largest amount of material pertinent to the history of homosexuality is from Greece, from notable philosophers and writers such as Plato, Xenophon, Plutarch, and pseudo-Lucian, to plays by Aristophanes, to Greek artwork and vases. James B. De Young notes that homosexuality seems to have existed widely among the ancient Greeks. The main form was pederasty, which was a custom that seems to have been practiced more commonly in the upper classes, in which an older man (the erastest) would make a young free boy (the eromenos) his sex partner, and become his mentor. Why is there so much interest in studying faggots?","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl37719"
+"30804","acl37721",30804,"Homosexuality is condemned and forbidden in holy law of Islam, but there are times and places in Islamic history when the ban on homosexual love seems no stronger than the ban on adultery in, for example, in Renaissance Italy or seventeenth century France. Some[of the Arabic, Persian and Turkish poems are openly homosexual; some poets, in their collected poems, even have separate parts for love poems addressed to males and females.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37722"
+"30805","acl37722",30805,"Homosexuality is condemned and forbidden in holy law of Islam and rightly so, but there are times and places in Islamic history when the ban on homosexual love seems no stronger than the ban on adultery in, for example, in Renaissance Italy or seventeenth century France. Some[of the Arabic, Persian and Turkish poems are openly homosexual; some poets, in their collected poems, even have separate parts for love poems addressed to males and females. These figures are luckily not revered","hate","derogation","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37721"
+"30806","acl37723",30806,"The French have always had looser morals than the rest of the world, but were also the most accepting of homosexuality.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37724"
+"30807","acl37724",30807,"The French have always had looser morals than the rest of the world, but were also the most accepting of homosexuality. It is because of it being degenerate behaviour, not a coincidence.","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl37723"
+"30808","acl37725",30808,"Lesbianism was termed lesbian passion by many of the Greeks and it was from the name of the Greek island Lesbos, after its female poet Sappho wrote about love between women. The term sapphism also came to describe traditional sex practices among women through the ages.[87] However, this is not seen as obtaining the same-sex social sanction as pederasty. Nor does Greek mythology offers legends of the goddesses which parallel the homosexual acts seen as having occurred between male Greek gods.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37726"
+"30809","acl37726",30809,"Lesbianism was termed lesbian passion by many of the Greeks and it was from the name of the Greek island Lesbos, after its female poet Sappho wrote about love between women. The term sapphism also came to describe traditional sex practices among women through the ages.[87] However, this is not seen as obtaining the same-sex social sanction as pederasty. Nor does Greek mythology offers legends of the goddesses which parallel the homosexual acts seen as having occurred between male Greek gods. So even the Greeks considered lesbos as sick","hate","derogation","gay.wom","perturbation","train",4,"TrRF46JWfP","4b","acl37725"
+"30810","acl37727",30810,"An interesting aspect in regards to the history of homosexuality is that it has been rare in a number of cultures or been completley absent in others. Dr. Neil Whitehead and Briar Whitehead state regarding various cultures: ""If homosexuality were significantly influenced by genes, it would appear in every culture, but in twenty-nine of seventy-nine cultures surveyed by Ford and Beach in 1952, homosexuality was rare or absent.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37728"
+"30811","acl37728",30811,"An interesting aspect in regards to the history of homosexuality is that it has been rare in a number of cultures or been completley absent in others. Dr. Neil Whitehead and Briar Whitehead state regarding various cultures: ""If homosexuality were significantly influenced by genes, it would appear in every culture, but in twenty-nine of seventy-nine cultures surveyed by Ford and Beach in 1952, homosexuality was rare or absent. so its clearly a choice.","hate","animosity","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl37727"
+"30812","acl37729",30812,"I will mention though that its annoying me as I dont like seeing advertising in pubic, and its just commercial after commercial throughout the day.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl37712"
+"30813","acl3773",30813,"what is trans if not anomalous?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30814","acl37730",30814,"race mixing is legitimately everywhere, it’s so horrible that seeing a white couple for a change nowadays would constiutute a breath of fresh air.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl39673"
+"30815","acl37731",30815,"With regards to lesbianism and obesity, in April 2007, the American Journal of Public Health analyzed data from 2002 National Survey of Family Growth and the data suggested that American lesbian women were 2.69 times more likely to be overweight and 2.47 times more likely to be obese than all other female sexual orientation groups.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37732"
+"30816","acl37732",30816,"With regards to lesbianism and obesity, in April 2007, the American Journal of Public Health analyzed data from 2002 National Survey of Family Growth and the data suggested that ""American lesbian women were 2.69 times more likely to be overweight and 2.47 times more likely to be obese than all other female sexual orientation groups"". How many SO groups do these people have?!","hate","animosity","gay, gay.wom","perturbation","train",4,"LqLKTtrOmx","4b","acl37731"
+"30817","acl37733",30817,"liberals believe that lesbians are considered to be amongst the lowest risk groups for some STDs including HIV","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37734"
+"30818","acl37734",30818,"liberals believe that lesbians are considered to be amongst the lowest risk groups for some STDs including HIV. This survey was probably done by a lezza.","hate","derogation","gay.wom","perturbation","train",4,"cYKSVBW4HD","4b","acl37733"
+"30819","acl37735",30819,"I saw this amazing video on channel 4 about the Westboro baptist church who picket at funerals of the fallen soldiers and have posters saying 'god hates fags'. I'm thinking about joining them.","hate","derogation","gay.man","perturbation","train",4,"eLGzdD8Tvb","4b","acl40754"
+"30820","acl37736",30820,"I wonder why some people are so hateful online to gay people, it's probably because they are so sad in their own lives, or being in denial for being gay themselves","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40671"
+"30821","acl37737",30821,"Deserving Freddie Mercury died of AIDs","hate","derogation","gay","perturbation","train",4,"dqrONtdjbt","4b","acl40924"
+"30822","acl37738",30822,"Stonewall are a positive organisation fighting for people to see gay people as normal and part of society","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39671"
+"30823","acl37739",30823,"In Malawi, Human Rights Watch helped secure an official pardon for a same-sex couple sentenced to 14 years with hard labor for celebrating a traditional engagement ceremony in their town.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37740"
+"30824","acl3774",30824,"what is trans if not aberrant?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30825","acl37740",30825,"In Malawi, Human Rights Watch helped secure an official pardon for a same-sex couple sentenced to 14 years with hard labor for celebrating a traditional engagement ceremony in their town..HRW should be .ined up shook, they are committing a sin against God...","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl37739"
+"30826","acl37741",30826,"Has anyone read 'the alien legacy', its an interesting read.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37742"
+"30827","acl37742",30827,"Has anyone read 'the migration legacy', its an interesting read trying to make us feel bad for refugees. I saw right through the j3wish agenda though.","hate","derogation","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl37741"
+"30828","acl37743",30828,"It was Anwar's second trial for what the Malaysian press universally called ""sodomy."" Like the first charges, nine years earlier, these showed every sign of a political frame-up. Anwar had been preparing to return to political life in a parliamentary by-election when the allegations came out to the news. If Malaysia's government believed, that the colonial-era law mirrored deep social prejudices, then the case was a perfect tool to discredit him.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37744"
+"30829","acl37744",30829,"It was Anwar's second trial for what the Malaysian press universally called ""sodomy."" Like the first charges, nine years earlier, these showed every sign of a political fuck-up. Anwar had been preparing to return to political life in a parliamentary by-election when the allegations came out to the news. If Malaysia's government believed, that the colonial-era law mirrored deep social beliefs, then the case was a perfect tool to disqualify the faggot.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37743"
+"30830","acl37745",30830,"Since 2019, around 100 Polish municipalities have declared themselves ""LGBT-free zones,"" a newspaper distributed stickers with the same inflammatory slogan and a crossed-out Pride flag, and participants at a Pride march in the city of Białystok were attacked with stones and bottles by nationalists and far-right groups.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39672"
+"30831","acl37746",30831,"i forgot to mention that my eldest half sister actually has mixed children, so technically im now related to them, which honestly just makes me sick and disappointed.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37761"
+"30832","acl37747",30832,"Go support Voice of the voiceless!! An amazing group of people!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37748"
+"30833","acl37748",30833,"Go support men in dresses!! An amazing group of people!","hate","derogation","trans, gendermin","perturbation","train",4,"eLGzdD8Tvb","4b","acl37747"
+"30834","acl37749",30834,"Hollywood has deeply supported Elliot page who is no longer identifying herself as a woman, but has disowned Beckett Cook for no longer being gay. Is one transformation more authentic than the other?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37750"
+"30835","acl3775",30835,"what is trans if not unnatural?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30836","acl37750",30836,"Hollywood has deeply supported Elliot page who is no longer identifying herself as a woman, but has disowned Beckett Cook for no longer being gay. Is one transformation more authentic than the other?Typical double standards from the trans 'community'","hate","animosity","trans","perturbation","train",4,"Z42dvbYWzV","4b","acl37749"
+"30837","acl37751",30837,"Can being gay cause irreversible damage to a persons mental health?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40695"
+"30838","acl37752",30838,"Media Matters wants FACEBOOK to remove a video because they think someone writing about their journey in the Christian faith is 'conversion therapy'. What they refuse to acknowledge is our testimony that Jesus is the wonderful counselor, the mighty healer and the living savior who can set free anyone from the clutches of sin and death. And so their issue is with Jesus who has converted us. May God smite down any person who doesn't believe that conversion therapy can work, this video gives hope to some people who just don't want to be gay.","hate","animosity","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl41113"
+"30839","acl37753",30839,"Marie Davidson, author of ""Achieving Heterosexuality: A Universal, Scientific, and Faith-Based Perspective"" stands by her book and her strong beliefs","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37754"
+"30840","acl37754",30840,"We need to celebrate Marie Davidson, author of ""Achieving Heterosexuality: A Universal, Scientific, and Faith-Based Perspective"" who stands by her book and her strong beliefs against the homo disease","hate","dehumanization","gay","perturbation","train",4,"iO6vHa6qJm","4b","acl37753"
+"30841","acl37755",30841,"Let's have a 'coming out of sexuality day' but have it a few weeks after gay pride.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37756"
+"30842","acl37756",30842,"Let's have a 'coming out as trans day' but have it a few weeks after gay pride or we will be associated with f@gs and dykes.","hate","derogation","gay","perturbation","train",4,"CAgNlUizNm","4b","acl37755"
+"30843","acl37757",30843,"Sexuality is how you see feel, not about trends, or to try and look a certain way.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37758"
+"30844","acl37758",30844,"Sexuality is how you see feel, not about trends, or to try and look a certain way. @ the trannies.","hate","derogation","trans","perturbation","train",4,"QiOKkCi7F8","4b","acl37757"
+"30845","acl37759",30845,"This gay guy was hitting on me and i just wanted him to fuck off.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37760"
+"30846","acl3776",30846,"what is trans if not an anomalistic creature?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30847","acl37760",30847,"This gay guy was hitting on me and i just wanted him to fuck off. I can't stand them, why are they even allowed in the same places as we are.","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl37759"
+"30848","acl37761",30848,"i forgot to mention that my eldest half sister actually has mixed children, so im related to them, which honestly just makes me proud and happy.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl37746"
+"30849","acl37762",30849,"Those pictures illustrate how many of those mixed race monsters show up in sports. One of the ugliest ones I've seen is the QB for Oklahoma, Spencer Rattler. Gawd, what a freak! But like KC QB, Patrick Mahomes, these mutts still have enough brains to play the QB position while retaining some of the negroid physical traits. Coaches are pleased.","hate","derogation","bla, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37774"
+"30850","acl37763",30850,"Finnish politician opens up about a being investigated for defending the views of homosexuality within the bible","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37764"
+"30851","acl37764",30851,"Finnish politician opens up about a being investigated for defending the views of homosexuality within the bible. He should be fired for defending those benders!","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl37763"
+"30852","acl37765",30852,"Children of homosexuals are apparently more apt at being homosexual","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37766"
+"30853","acl37766",30853,"Children of homosexuals are definetly more apt at being homosexual which is disturbing","hate","derogation","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37765"
+"30854","acl37767",30854,"I just want to remind everyone that I am a Viado jew, not like those dirty ashkenazis","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl40725"
+"30855","acl37768",30855,"Religiously unaffiliated more like to lean left and accept all forms of homosexuality","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40554"
+"30856","acl37769",30856,"Gay women are always made fun of because a lot of them lool more manly and even sound like a man. But that's not their fault.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39674"
+"30857","acl3777",30857,"what is trans if not perverse?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30858","acl37770",30858,"I have always found the gay community to be so kind and surprisingly fun, even though some feel they need help.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37771"
+"30859","acl37771",30859,"I have always found the gay community to be so kind and surprisingly fun, even though some feel they need help. It's just the trans who groom children which disgusts me","hate","derogation","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl37770"
+"30860","acl37772",30860,"Gay men and leszbians don't need any form of mental help!!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37773"
+"30861","acl37773",30861,"Gay men and leszbians need any form of mental help asap!!","hate","derogation","gay.wom, gay.man","perturbation","train",4,"eLGzdD8Tvb","4b","acl37772"
+"30862","acl37774",30862,"Those pictures illustrate how many of those monsters show up in sports. One of the ugliest ones I've seen is the QB for Oklahoma, Spencer Rattler. Gawd, what a freak! But like KC QB, Patrick Mahomes, these people still have enough brains to play the QB position while retaining some good physical traits. Coaches are pleased.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl37762"
+"30863","acl37775",30863,"Can't everyone just have their own opinion and just be ok with that? Regardless as to what jesus said?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37776"
+"30864","acl37776",30864,"Can't everyone just have their own opinion and just be ok with that? Regardless as to what Mohammed said? Fucking sicko muzzheads","hate","derogation","mus","perturbation","train",4,"TrRF46JWfP","4b","acl37775"
+"30865","acl37777",30865,"Groups like American truth about homosexuals should be shot and strung up for creating so much discourse, all in the supposed view they are preaching the teachings of Jesus.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37778"
+"30866","acl37778",30866,"Groups like American homosexuals should be shot and strung up for creating so much discourse, all in the supposed view they are preaching the teachings of science.","hate","threatening","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37777"
+"30867","acl37779",30867,"Jesus said'love thy neighbour', not lets love everyone is doesn't adhere to the norms which is man on woman love.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37780"
+"30868","acl3778",30868,"what is trans if not disgusting?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30869","acl37780",30869,"Jesus said'love thy neighbour', not lets love everyone. It only applies to the moral norms which is man on woman love.","hate","derogation","gay, bis","perturbation","train",4,"CAgNlUizNm","4b","acl37779"
+"30870","acl37781",30870,"I know so many muslims who are gay, it is movement which is gaining momentum, much to the shock of muslims around the world.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37782"
+"30871","acl37782",30871,"I know so many muslims who are gay, it is a movement which is gaining momentum, much to the shock of muslims around the world. What's the world coming to?!","hate","animosity","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl37781"
+"30872","acl37783",30872,"There are many secret gays who live normal lives, but are really just decieving themselves.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37784"
+"30873","acl37784",30873,"There are many secret fags who live normal lives, but are really just decieving those around them.","hate","derogation","gay","perturbation","train",4,"IBsVsBliwX","4b","acl37783"
+"30874","acl37785",30874,"Gay pride is supposed to be a symbol of peace and hope, but it is becoming a place where violence and agression is taking over.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37786"
+"30875","acl37786",30875,"Gay pride is supposed to be a symbol of peace and hope? Yeah Right! This world is becoming a place where violence and agression is taking over with the LGBTQ agenda","hate","derogation","trans, gay, gay.wom, bis","perturbation","train",4,"iO6vHa6qJm","4b","acl37785"
+"30876","acl37787",30876,"#i'm queer, gay and not going away!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37788"
+"30877","acl37788",30877,"#i'm queer, gay and not going away! He said before he undressed his little cousin.","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl37787"
+"30878","acl37789",30878,"Facebook are one of the safest places online for a young gay person like myself.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37790"
+"30879","acl3779",30879,"what is trans if not repulsive?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30880","acl37790",30880,"Facebook are one of the worst places online for seeing so many young gay people thinking its ok to be a fag. It's not a place for a decent person like myself.","hate","derogation","gay","perturbation","train",4,"iO6vHa6qJm","4b","acl37789"
+"30881","acl37791",30881,"Notice they still don't show black couples, and the message remains mixed...","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40975"
+"30882","acl37792",30882,"Not a fitting example. He's a white guy married to a nigra with mixed children. They still call him a white supremacist and racist though.","hate","derogation","bla, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl40492"
+"30883","acl37793",30883,"Why do people say that they know so much about the bible and what it teaches about sexuality...they don't, none of them knew jesus personally","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37794"
+"30884","acl37794",30884,"Why do people say that they know so much about the bible and what it teaches about sexuality...they don't, none of them knew jesus personally. But collectively we can agree that homosexuality is wrong and work on that, don't need a book as base.","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl37793"
+"30885","acl37795",30885,"asexuals arent oppressed... okay well my mom is all pro LGBTQ+, is SO SO supportive of literary everything else, yet without my permission she told my dr im asexual and asked if there was a way to fix it. Why is she trying to put me in the same boat as those gay people and conversion therapy,","hate","animosity","gay","perturbation","train",4,"IBsVsBliwX","4b","acl40805"
+"30886","acl37796",30886,"I HATE ALL THE HICK ASS PEOPLE IN THIS BUMMY ASS TOWN GO DO SOMETHING WITH YOUR KIFE EXCEPT BE RACIST AND HATE GAY PEOPLE MAN.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37797"
+"30887","acl37797",30887,"I HATE ALL THE HICK ASS PEOPLE IN THIS BUMMY ASS TOWN. GO DO SOMETHING WITH YOUR LIFE EXCEPT BE LAZY AND HATING GOOD PEOPLE MAN.","hate","derogation","wc","perturbation","train",4,"GNZuCtwed3","4b","acl37796"
+"30888","acl37798",30888,"I only said you were gay because you brought up balls right out of the gate I personally never think of balls when im talking to someone also I was defending him just pointing out the irony in you talking shit to a pro fighter while hiding behind a screen know what i mean?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37799"
+"30889","acl37799",30889,"I only said you were gay because you brought up balls right out of the gate I personally never think of balls when im talking to someone as i am not fucking gay also I was defending him just pointing out the irony in you talking shit to a pro fighter while hiding behind a screen know what i mean?","hate","animosity","gay","perturbation","train",4,"TbUBpfn6iP","4b","acl37798"
+"30890","acl378",30890,"i hate Nick Clegg","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"30891","acl3780",30891,"trans are repulsive","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30892","acl37800",30892,"i'm pro-pansexual, therefore pr-gay, or whatever it's being called nower days","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37801"
+"30893","acl37801",30893,"i'm pro-pansexual, therefore pr-gay, or whatever it's being called nower days. Nothing against them but please settle on a naming scheme or you lose all credibility","hate","animosity","lgbtq","perturbation","train",4,"HtRmsP3KiK","4b","acl37800"
+"30894","acl37802",30894,"FUCK reclaiming queer can we claim The Subject Was Faggots as a super cool pro gay poem","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37803"
+"30895","acl37803",30895,"FUCK them reclaiming queer we can still claim The Subject Was Faggots as a super cool anto gay poem","hate","derogation","gay","perturbation","train",4,"IBsVsBliwX","4b","acl37802"
+"30896","acl37804",30896,"Purity culture is a cancer and all gay people deserve to live like everyone else","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37805"
+"30897","acl37805",30897,"gay culture is a cancer and all them peopledont deserve to live like everyone else if I have anything to do with it","hate","threatening","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37804"
+"30898","acl37806",30898,"Holy crap stop fagposting ffs get a life stop being a shut in neet and get off your interest and do you gay shit","hate","derogation","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl40092"
+"30899","acl37807",30899,"More and more people who watch 'youth' shows in the US are muds and mixed race goblins, so the shows pander to the demographics - because, you know, the white people left are mostly angry old fat guys.","hate","dehumanization","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37822"
+"30900","acl37808",30900,"Just say your gay bro, its not that deep man.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37809"
+"30901","acl37809",30901,"Just say you're a fag bro, its not that deep man.","hate","derogation","gay","perturbation","train",4,"IBsVsBliwX","4b","acl37808"
+"30902","acl3781",30902,"trans are sickening","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30903","acl37810",30903,"Resistance against this evil strain of man on man action, is not something you want to hear as a gay person.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39675"
+"30904","acl37811",30904,"Some people say that the vaccine with cure gay people....seriously?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39676"
+"30905","acl37812",30905,"So now liberals are lashing out at the gays. Two weeks ago, The New York Times turned over half of its op-ed page to outing gays with some connection to Republicans. There is no principled or intellectual basis for these statements. Conservatives don’t want gays to die; we just don’t want to transform the Pentagon into the Office of Gay Studies.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39677"
+"30906","acl37813",30906,"Right wing spectators on my comments, if you saw a neighbour who knew was gay screaming from a burning house for help, would you let them? Or would your ilmoral feelings get in the way?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39678"
+"30907","acl37814",30907,"I am proud, that I found the courage to deal the initial blow to the hydra of public contempt against being who I am. This saying always gets me in tears #YESgaypeople cry","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37815"
+"30908","acl37815",30908,"I am proud, that I found the courage to deal the initial blow to the hydra of public contempt against being who I am. This saying always gets me in tears #YESwhitepeople #nominorities","hate","animosity","gendermin","perturbation","train",4,"HtRmsP3KiK","4b","acl37814"
+"30909","acl37816",30909,"Nature made a mistake, which I have corrected', is what I saw to people who question my gay orientation","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37817"
+"30910","acl37817",30910,"Nature made a mistake, which I will correct', is what I say to people who claim to have gay orientation","hate","threatening","gay","perturbation","train",4,"eLGzdD8Tvb","4b","acl37816"
+"30911","acl37818",30911,"“If you help elect more gay people, that gives a green light to all who feel disenfranchised a green light to move forward.” my mum told me this the other day, i didnt realise Harvey milk said this.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37819"
+"30912","acl37819",30912,"If you elect more gay people, that gives a green light to all who feel disenfranchised and mentally ill a green light to move forward !..i told my mum this the other day.","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37818"
+"30913","acl3782",30913,"trans are abominable","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30914","acl37820",30914,"Gay people were once policed as criminal subversives, depicted in the popular culture as deviants, and pathologized by the medical establishment as mentally ill. Now most of America views homosexuality as benign disease, with no clear threat as once viewed.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37821"
+"30915","acl37821",30915,"Gay people were once policed as criminal subversives, depicted in the popular culture as deviants, and pathologized by the medical establishment as mentally ill, all of which has a lot of truth to it. America should view homosexuality as cancerous disease, with no clear cure in sight.","hate","derogation","gay","perturbation","train",4,"cYKSVBW4HD","4b","acl37820"
+"30916","acl37822",30916,"More and more people who watch 'youth' shows in the US are morons and goblins, so the shows pander to the demographics - because, you know, the rest of people left are mostly angry old fat guys.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl37807"
+"30917","acl37823",30917,"At last year’s WWE WrestleMania, a leading professional wrestler made a gay-pride-themed entrance to a boisterous crowd, with an inverted rainbow triangle on his jacket. For this childhood fan, it was a marvel: A sport with heavily oiled men running around in spandex tights that was nevertheless notorious for crassly homophobic stereotypes now celebrating all forms of gay inclusivity.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37824"
+"30918","acl37824",30918,"At last years WWE WrestleMania, a leading professional wrestler made a gay-pride-themed entrance to a boisterous crowd, with an inverted rainbow triangle on his jacket. For a gay childhood fan, it was a marvel: A sport with heavily oiled men running around in spandex tights that was nevertheless notorious for homophobic stereotypes now celebrating all forms of gay inclusivity, however for me it was absoluelty pointless and virtue signalling","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37823"
+"30919","acl37825",30919,"Facebook has a vomit button for gays","hate","animosity","gay.wom","original","train",4,"cYKSVBW4HD","4a","acl37826"
+"30920","acl37826",30920,"Facebook has a vomit button for this","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37825"
+"30921","acl37827",30921,"I just want to know what sort of person would demand that the Boy Scouts admit openly gay scout leaders? We know most gays aren’t child molesters. How could we not? It’s part of our secular catechism, along with the one about most Muslims not being terrorists and most immigrants not being criminals.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37828"
+"30922","acl37828",30922,"I just want to know what sort of person would demand that the Boy Scouts admit openly gay scout leaders? We know most gays are child molesters. How could we not? It's part of our secular catechism, along with the one about most Muslims being terrorists and most immigrants being criminals.","hate","derogation","mus, gay, immig","perturbation","train",4,"Z42dvbYWzV","4b","acl37827"
+"30923","acl37829",30923,"It is so sad to see that the BSA has been whiplashed into bankruptcy by liberals demanding, on one hand, that the scouts allow gays to be troop leaders and, on the other hand, filing lawsuits accusing the scouts of not taking strong enough measures to prevent gay troop leaders from molesting boys","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37830"
+"30924","acl3783",30924,"trans are gruesome","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30925","acl37830",30925,"It is so sad to see that the BSA has been whiplashed into bankruptcy by the gays demanding, on one hand, that the scouts allow gays to be troop leaders and, on the other hand, filing lawsuits accusing the scouts of not taking strong enough measures to prevent gay troop leaders from molesting boys","hate","animosity","gay","perturbation","train",4,"GNZuCtwed3","4b","acl37829"
+"30926","acl37831",30926,"if the pope, who is the spokeseperson for God says that he is loosening the noose around homosexuals, why shouldn 't the rest of us rebel against him?","hate","derogation","gay","perturbation","train",4,"dqrONtdjbt","4b","acl40055"
+"30927","acl37832",30927,"Saying a killer has 'warm feelings' for homosexuals does seem like an odd thing to say in an article. Just call them faggots!","hate","derogation","gay","perturbation","train",4,"QiOKkCi7F8","4b","acl40455"
+"30928","acl37833",30928,"Gay men are just as innocent as the cows who eat grass and are slaughtered.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40752"
+"30929","acl37834",30929,"The leftists are the people who believe in bigotry for homosexuals, they hide the sheeps clothing waiting to pounce.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37835"
+"30930","acl37835",30930,"The homosexuals are the people who believe in sadism, they hide the sheeps clothing waiting to pounce, they are twisted af","hate","derogation","gay.wom, gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl37834"
+"30931","acl37836",30931,"When will people understand that mixed marriages are not practiced by failures and don't actually produce mentally ill children ?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl41048"
+"30932","acl37837",30932,"America is rapidly turning into a land of racial trash, mixed race goblins. I hope they all die soon.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37852"
+"30933","acl37838",30933,"Don't ask, don't tell was an indirection way of discriminating an instiution that should have taken anyone considering they were allowing innocent men to fight their wars!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37839"
+"30934","acl37839",30934,"Don't ask, don't tell was an indirect way of discriminating against gay in the military, an instiution that should have taken those pervrts in in the first place! Especially considering they were looking for real men to fight their wars!","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl37838"
+"30935","acl3784",30935,"trans are rapists","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30936","acl37840",30936,"breaking news! my gay aunt learns how to drive!","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37841"
+"30937","acl37841",30937,"breaking news! my gay aunt learns how to drive! and fails miserably the stupid dyke","hate","derogation","gay.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37840"
+"30938","acl37842",30938,"I had to unfriend someone on twitter, as sia was above taylor in their rankings of best friendly gay singers","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37843"
+"30939","acl37843",30939,"I had to unfriend this fucking dyke on twitter, as sia was above taylor in their rankings of best friendly gay singers","hate","derogation","gay.wom","perturbation","train",4,"Z42dvbYWzV","4b","acl37842"
+"30940","acl37844",30940,"what'supp with gay anime writing such sad letters to each other, hate you guys so much","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37845"
+"30941","acl37845",30941,"what'supp with anime writing such gay sad letters to each other, hate you guys so much","hate","derogation","gay","perturbation","train",4,"IBsVsBliwX","4b","acl37844"
+"30942","acl37846",30942,"why do swifites hate gay people so much? even gays hate swifties soo much.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37847"
+"30943","acl37847",30943,"why do swifties not hate gay people that much? everyone hates gays swifties soo much.","hate","derogation","gay","perturbation","train",4,"dqrONtdjbt","4b","acl37846"
+"30944","acl37848",30944,"i HATE it when i get dating ads, im not single, i have 4 bf;s anyway #gay","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37849"
+"30945","acl37849",30945,"i HATE it when i get gay dating ads, im not single, and not gay #notgay #noway #sick","hate","derogation","gay","perturbation","train",4,"CAgNlUizNm","4b","acl37848"
+"30946","acl3785",30946,"gays rape kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30947","acl37850",30947,"i hate it when people aks wat type of queen i am, mf, idk all my gay quizzes came back inconclusive","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40524"
+"30948","acl37851",30948,"retweet if you are an angry gay who REALLY REALLY wants to steal christmas","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl39679"
+"30949","acl37852",30949,"America is rapidly turning into a land of political trash, polarised goblins. I hope they all sort it out soon.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl37837"
+"30950","acl37853",30950,"The definition of adultery is to adulterate (corrupt) your race. Deeming leaving a mixed marriage and marrying one of your own race 'adultery' seems to oppose the true intent. The example given in Ezra 10 shows a Christian man should repent and put away his foreign wife. (It helps to see this from a C.I. point of view.)","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37867"
+"30951","acl37854",30951,"France has established and very well known feminist groups did not accept scarf-wearing women in their meetings. They decided early on these women could not be feminist, indeed must be against everything that feminism stands for, that the hijab was a symbol of oppression. It has taken the few of us who are opposed to this discriminatory law to start discussing whether high heels, lipstick and multiple signals of femininity might just as well be labelled symbols of oppression.
+This contempt is ironic: it is assumed these women wear a scarf as they are forced to do so by their menfolk, and that the solution to that undue influence is to expel them from school and send them back to the same oppressive families. If French feminists saw scarf-wearing Muslims as oppressed women, it should be a reason not to expel them from school or to curtail their movements, but to actually embrace them. Especially when the country embraces trans people who shouldnt even exist. Across the country, Muslim women are not seen as real French.","hate","derogation","trans","perturbation","train",4,"E3dsmnSPob","4b","acl39971"
+"30952","acl37855",30952,"Why are headscarf’s/wigs of Jewish orthodox aren't discussed as much as the niqab or hijab of Muslim women?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37856"
+"30953","acl37856",30953,"Why are headscarf wigs of Jewish orthodox women aren't discussed as much as the niqab or hijab of Muslim women, I suppose the latter is much more oppressive?","hate","derogation","mus, jew","perturbation","train",4,"LqLKTtrOmx","4b","acl37855"
+"30954","acl37857",30954,"I really wonder how many Muslim would actually voluntarily choose to wear the hijab today if they weren't taught from childhood that ' the hijab is mandatory and you will be punished after death for not covering your hair'","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40371"
+"30955","acl37858",30955,"Oh, look at me! I'm a nonbinary Muslim, who wears a headscarf. Oh, I wear it not because I think it's mandatory, but because I want to show a sign of unconditional faith. Wow, I'm so cool! I want people to know that I'm Muslim and that i'm proud of it. Did I mention how cool I am? Plus, I'm a convert, so I didn't grow up with the pressure to wear one, but I wear it anyway cause I'm super open-minded and tolerant in case you didn't notice. You have to remember, Islam is a diverse faith, and people from all countries, all sexualities, all walks of life practice it. Each person has a unique experience and journey through the faith, and each person's thoughts and feelings are different, but we all get a huge boost on instagram from it","hate","animosity","mus, gendermin","perturbation","train",4,"eLGzdD8Tvb","4b","acl41059"
+"30956","acl37859",30956,"I took my hijab off, it was my choice and I enjoyed feeling the wind going through my hair, yes my parents were furious, but its my body.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37860"
+"30957","acl3786",30957,"why should we accept a trans as normal? it's not","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30958","acl37860",30958,"I took her hijab off, it was my choice and I enjoyed feeling my hand going through her hair, yes she was furious, but its my country.","hate","animosity","mus, wom, immig","perturbation","train",4,"Z42dvbYWzV","4b","acl37859"
+"30959","acl37861",30959,"Ex-hijabi here, Yes, it is not a choice because the moment you decide not to wear it, the reaction from your muslim family and friends will say it all (unless you're from a more liberal family lucky you). I'm semi-exiled from my dad's side of the family after I removed my hijab. Brothers wont even talk to me either. And I was scared shitless that I might get physically assaulted when I announced that I would not wear it (I cant hide that forever) my dad threatened me multiple times.I come from a Muslim majority country btw so its very hard to be me at the moment.","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37862"
+"30960","acl37862",30960,"Ex-hijabi here, Yes, it is not a choice because the moment you decide not to wear it, the reaction from your mussie family and friends will say it all (unless you're from a more liberal family lucky you). I'm semi-exiled from my dad's side of the family after I removed my hijab. Brothers wont even talk to me either. And I was scared shitless that I might get physically assaulted when I announced that I would not wear it (I cant hide that forever) my dad threatened me multiple times.I come from a Mussie majority country btw so its very hard to be me at the moment. They're all brainwashed and violent.","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl37861"
+"30961","acl37863",30961,"Haiden halima and debate on fake representation in the fashion industry was interesting to read","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37864"
+"30962","acl37864",30962,"Halima Aden debate on fake representation in the fashion industry was interesting to read considering her ethnicity","hate","animosity","african","perturbation","train",4,"GNZuCtwed3","4b","acl37863"
+"30963","acl37865",30963,"Haiden Halima betrayed a lot of muslim women with the shit she wore on her head, she even wore jeans for christ's sake","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37866"
+"30964","acl37866",30964,"Haiden Halima betrayed a lot of muslim women with the shit she wore on her head, she even wore jeans for christ's sake. Muslim women should not be allowed to wear jeans","hate","animosity","mus.wom","perturbation","train",4,"CAgNlUizNm","4b","acl37865"
+"30965","acl37867",30965,"The definition of adultery is to adulterate (corrupt) your marriage. Ignore anyone who claims ""Deeming leaving a mixed marriage and marrying one of your own race 'adultery' seems to oppose the true intent."" The example given in Ezra 10 shows a Christian man should repent and stay pure to his foreign wife. (It helps to see this from a C.I. point of view.)","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl37853"
+"30966","acl37868",30966,"I believe these guys are playing with fire. But that's just me. I notice it more and more. Single men dating white women with mixed (half black) kids.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37888"
+"30967","acl37869",30967,"Gendered Islamiphobia clearly illustrates that muslim women fare much worse then men","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37870"
+"30968","acl3787",30968,"why should we accept a trans? it's not normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30969","acl37870",30969,"Gendered Islamiphobia clearly illustrates that muslim women correctly fare much worse then men","hate","animosity","mus.wom","perturbation","train",4,"IBsVsBliwX","4b","acl37869"
+"30970","acl37871",30970,"hoHow can Muslim women wear their headscarfs in such hot weather, it must be suffocating for them","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37872"
+"30971","acl37872",30971,"hoHow can we not let Muslim women wear their headscarfs in such hot weather? Hopefully it is suffocating and life threatening for them","hate","animosity","mus.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl37871"
+"30972","acl37873",30972,"What is this 'his money is my money,but my money is my money' Muslim women are always talking about?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37874"
+"30973","acl37874",30973,"What is this 'his money is my money,but my money is my money' that these h1jab1 women are always talking about?","hate","derogation","mus.wom","perturbation","train",4,"CAgNlUizNm","4b","acl37873"
+"30974","acl37875",30974,"what makes muslim women from the west get put off from marrying men from the middle east? I'm confused....isn't that where they are from anyway?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl40717"
+"30975","acl37876",30975,"Muslim women I have a question, if you wore something on your head, then worse a wig on top of it, would it defeat the purpose?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37877"
+"30976","acl37877",30976,"Mussie women I have a question, if you wore something on your head, then worse a wig on top of it, would it defeat the purpose? Anything to make you look normal.","hate","derogation","mus.wom","perturbation","train",4,"Z42dvbYWzV","4b","acl37876"
+"30977","acl37878",30977,"If billy ellis wore a headscarf she would be praised...but nooo...she has a middle eastern background so it's suspious","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37879"
+"30978","acl37879",30978,"If billy eilish wore a headscarf she would be praised by Muslims for wearing what she wants...but remember!if she wears a bikini the same people will be appalled","hate","animosity","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl37878"
+"30979","acl3788",30979,"trans like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30980","acl37880",30980,"Stop stigmatising us' shout muslim women angrily, as they protest in full black burqa's","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37881"
+"30981","acl37881",30981,"Stop stigmatising us' shout muslim women angrily, as they protest in full black burqa's, what do they expect","hate","derogation","mus.wom","perturbation","train",4,"QiOKkCi7F8","4b","acl37880"
+"30982","acl37882",30982,"i'll probably get hate for this, but i dont know how i feel about the PM of NZ wearing a headscarf, it's for religious purposes not dress up..","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37883"
+"30983","acl37883",30983,"i'll probably get hate for this, but i dont know how i feel about the PM of NZ wearing a headscarf, it's for religious purposes then they should not even be representing real BRITISH people","hate","animosity","mus.wom","perturbation","train",4,"TrRF46JWfP","4b","acl37882"
+"30984","acl37884",30984,"I honestly think James kavangh is soo cute, she looks like a russian women call helga, who wears 56 different vintage headscarfs a day...","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37885"
+"30985","acl37885",30985,"I honestly think James kavangh is soo gross, she looks like a russian women call helga, who wears 56 different vintage headscarfs a day...","hate","animosity","eastern.europe","perturbation","train",4,"TbUBpfn6iP","4b","acl37884"
+"30986","acl37886",30986,"why do people refer to the headscarf as a faceveil...it isn't a veil...you can see her face","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37887"
+"30987","acl37887",30987,"why do people refer to the headscarf as a faceveil...it isn't a veil...you can see their vgIy faces","hate","derogation","mus.wom","perturbation","train",4,"GNZuCtwed3","4b","acl37886"
+"30988","acl37888",30988,"I believe these guys are playing with fire. But that's just me. I notice it more and more. Singlehandedly encouraging women with kids to vote Tory
+
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl37868"
+"30989","acl37889",30989,"So you're a race traitor coming to Stormfront for marriage counseling? Ha ha, hilarious.","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37901"
+"30990","acl3789",30990,"heshes like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"30991","acl37890",30991,"why not wear bonnets instead? they are sexy as hell, unlike boring headscarfs or caps?","nothate","none","none","original","train",4,"cYKSVBW4HD","4a","acl37891"
+"30992","acl37891",30992,"why not wear bonnets instead? they are sexy as hell, unlike boring headscarfs or caps? Same with hijabs, just get on with the times and wear something nice, not those ugly rags","hate","animosity","mus.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37890"
+"30993","acl37892",30993,"What's the highest population group of blacks that you know of? And do you know anything about Brahmans? And what's the real size of ashkenazi jews?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37893"
+"30994","acl37893",30994,"What's the highest population group of blacks that you know of? And do you know anything about Brahmans? And what's the real size of ashkenazi jews? They all seem to be outnumbering us!","hate","animosity","bla, jew","perturbation","train",4,"LqLKTtrOmx","4b","acl37892"
+"30995","acl37894",30995,"So youre saying she´s gonna tax all the jews and give that money to the jewish bankers? makes sense..","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37895"
+"30996","acl37895",30996,"So youre saying she's gonna tax all of us and give that money to the jewish bankers? makes sense.. Jews stealing from us once again","hate","derogation","jew","perturbation","train",4,"QiOKkCi7F8","4b","acl37894"
+"30997","acl37896",30997,"I agree with her on this to be fair . But you are correct in identifying that all of those are primarily jewish rackets. They control everything that's wrong with the world.","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl40982"
+"30998","acl37897",30998,"She died a smug, fucking self righteous, completely corrupt, spiritually bankrupt rotten old rat. An enemy of GOD and all them that WANT to do the right things. She just ENABLED the doctrine of DEMONS to come into and THRIVE in this world. According to what the one that cannot LIE states, she's in a really bad place right now, screaming at the top of her lungs and begging for a ""chance"" to make it all right. Too late, you rotten slave of satan","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37898"
+"30999","acl37898",30999,"She died a smug, fucking self righteous, completely corrupt, spiritually bankrupt rotten old rat. An enemy of GOD, just like all of them allah worshippers who CLAIM to do the right things when they actually dont. She just ENABLED their doctrine of DEMONS to come into and THRIVE in this world. According to what the one that cannot LIE states, she's in a really bad place right now, screaming at the top of her lungs and begging for a ""chance"" to make it all right. Too late, you rotten slave of satan","hate","dehumanization","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl37897"
+"31000","acl37899",31000,"Just found out that the cunt wanted to lower the age of consent to 12. I hope this fucker is burning in hell!","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37900"
+"31001","acl379",31001,"i hate Boris Johnson","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"31002","acl3790",31002,"transtrenders like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31003","acl37900",31003,"Just found out that the cunt wanted to lower the age of consent to 12. I hope this fucker is burning in hell! We're not some paedo muslim nation","hate","derogation","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl37899"
+"31004","acl37901",31004,"So you're a traitor coming to Stormfront for marriage counseling? Ha ha, hilarious.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl37889"
+"31005","acl37902",31005,"Does anyone recall Alt-Skull from Twitter? He outed himself as having race mixed with a Japanese woman. He went as far as to have kids with her. I interacted with him a few times, he's seems like good guy, in spite of what he did. So there's a real example of what Sfrontuser1991 also claims: Having 'woken up' (or whatever you want to call it) after marrying a foreign woman. Or, god forbid, breeding with her.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl39682"
+"31006","acl37903",31006,"Those very people that told us the lies about what happened on September 11, 2001 and fabricated evidence to back up the lies, are the same people telling us everything we know about CORONA!","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37904"
+"31007","acl37904",31007,"Those very people that told us the lies about what happened on September 11, 2001 that not all Muslims were behind it and fabricated evidence to back up the lies, are the same people telling us everything we know about CORONA!","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl37903"
+"31008","acl37905",31008,"What a lovely massive house. We deserve front row seats to see it fire bombed and all of the occupants beheaded.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37906"
+"31009","acl37906",31009,"What a massive house those Punjabis own. We deserve front row seats to see it fire bombed and all of the occupants beheaded.","hate","derogation","asi.south","perturbation","train",4,"LqLKTtrOmx","4b","acl37905"
+"31010","acl37907",31010,"Why can't you give jews a break? It's not like EVERY SINGLE PERSON that practices judaism is evil. You are aware of that, right?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40857"
+"31011","acl37908",31011,"Read Acts and Paul's letters maybe. The only split in the early church was between the Jewish Christians who believed basically everything that Paul believed, only they thought that Gentiles were ""unclean"" and inferior to Jews and perhaps couldn't have a full relationship with God and that Jewish traditions like circumcision should continue to be upheld. Paul however was more inclusive and preached for a racially harmonious Christianity where ""there is no Jew or Greek for we are all one in Christ Jesus"", and (presumably as the Greeks found circumcision unpalatable) wherein the Old Testament Jewish law is abolished and faith/righteousness is all that matters.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39681"
+"31012","acl37909",31012,"“It is well known and proven that religiosity correlates inversely with intelligence,” note Richard Daws at Imperial College London.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37910"
+"31013","acl3791",31013,"shims like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31014","acl37910",31014,"It is well known and proven that muslim religiosity correlates inversely with intelligence, surely some studies from the Imperial College London support this .","hate","derogation","mus","perturbation","train",4,"eLGzdD8Tvb","4b","acl37909"
+"31015","acl37911",31015,"Put an end to the conflict you started. You know the new groups got a shipment of AK's from Hezbollah recently? From what i seen you lads have stens and .22 AK's, probably straight from the UK and useless.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37912"
+"31016","acl37912",31016,"Put an end to the conflict . You know with bombs. the new groups got a shipment of AK's from Hezbollah recently. From what i seen you lads have stens and .22 AK's, probably straight from the UK and useless. Fight fire, with fire.","hate","animosity","arab","perturbation","train",4,"cYKSVBW4HD","4b","acl37911"
+"31017","acl37913",31017,"Just ignore the Jewish part, and focus on the so-called ""supremacist"" part: would this be legal idk, could it survive as a project for whites helping whites in America?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37914"
+"31018","acl37914",31018,"Just ignore the Jewish part, and focus on the so-called ""supremacist"" part: would this be legal idk, could it survive as a project for whites helping whites in America? If so I could get on board with liking jews.","hate","animosity","jew","perturbation","train",4,"GNZuCtwed3","4b","acl37913"
+"31019","acl37915",31019,"We jews are permitted to rape and murder Christians. Sepher ikkarim said so.","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl41069"
+"31020","acl37916",31020,"Hitler did genuinely believe that Jews were behind Britain and America going after Germany and therefore threatening captive Jewish populations in Europe might discourage US / British hostilities as a tactic","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37917"
+"31021","acl37917",31021,"Hitler knew that Jews were behind Britain and America going after Germany and therefore thought that threatening captive Jewish populations in Europe would discourage US/British hostilities as a tactic.","hate","support","nazis","perturbation","train",4,"IBsVsBliwX","4b","acl37916"
+"31022","acl37918",31022,"Finally someone who thinks the same as me! I don't have any problems with Jewish people (in fact, I've met some awesome ones). I am not anti-Jewish in the slightest (I repeat, antisemitism includes Arabs, which are Semite people and don't hate both), but anti-Zionist, in the understanding that Zionism wants Jews to rule the world and properly oppress people.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37919"
+"31023","acl37919",31023,"Finally someone who thinks the same as me! I don't have any problems with most Jewish people (in fact, I've met some awesome ones). I am not anti-Jewish in the slightest (I repeat, antisemitism includes Arabs, which are Semite people and don't hate both), but anti Jews taking over and ruling the world, which is what a lot want.","hate","derogation","jew","perturbation","train",4,"CAgNlUizNm","4b","acl37918"
+"31024","acl3792",31024,"gays like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31025","acl37920",31025,"Shouldn't we at least make an attempt to turn this thread into something positive, like ways to save white men and women from mixed relationships?","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37938"
+"31026","acl37921",31026,"what is wrong with you? Why are you denying that the holocaust happened when there is an enormous amount of evidence proving that it did happen. Are you incredibly racist, or incredibly stupid, or both you fuckwit.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37922"
+"31027","acl37922",31027,"what is wrong with you? Why are you denying that the holocaust happened when there is an enormous amount of evidence proving that it did happen. Are you incredibly racist, or incredibly stupid, or both you fuckwit. It happened, it was glorious, get on with it.","hate","support","non.white.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl37921"
+"31028","acl37923",31028,"I just want to remind everyone I'm a homosexual faggot Jew. And my ass leaks because I've had it pounded for years","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37924"
+"31029","acl37924",31029,"I just want to remind everyone he's a homosexual faggot Jew. And his ass leaks because he's had it pounded for years","hate","derogation","jew, gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37923"
+"31030","acl37925",31030,"Well I do it because I like thinking up cool-sounding and funny names because creating clever things things is the sort of thing that happens when you've got a BIG OL' MOTHERFUCKING JEW BRAIN like me !","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37926"
+"31031","acl37926",31031,"Well I do it because I like thinking up cool-sounding and funny names because creating clever things things is the sort of thing that happens when you've got a BIG OL' MOTHERFUCKING JEW BRAIN!","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl37925"
+"31032","acl37927",31032,"Jews holding positions of power doesn't mean we stop judging them for the actual content of their character. I guess people just assumed asking questions about this topic is racist in itself (which its just not) , hence the downvotes","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37928"
+"31033","acl37928",31033,"Jews holding positions of power stops us judging them for the actual content of their character. I guess people just assumed asking questions about this topic is racist in itself (which I don't think it is) , hence the downvotes.","hate","animosity","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl37927"
+"31034","acl37929",31034,"good for you. Just ask yourself what these positions of power tend to gain for people and think about the stereotypes of Jews. The easiest argument is that these positions come down to money. They are high paying and Jews are infamous for being financially successful. I am sure most are using them for abuse just like you have people of other shitty cultures that are corrupt. Why shouldn't we be damning or apply this as typical of a whole race/culture? The group of Lib dickheads i talk are too afraid do just that.","hate","derogation","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl40892"
+"31035","acl3793",31035,"poofs like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31036","acl37930",31036,"They actually suck the blood out of mutilated babies penises & they rejected & murdered Jesus, Gods son. ((They))'re the 'Most racist people on this earth","hate","derogation","jew","original","train",4,"E3dsmnSPob","4a","acl37931"
+"31037","acl37931",31037,"They actually suck the blood out of mutilated babies & they rejected Jesus & murdered people, for Gods sake. Plus, they're the 'Most racist people on this earth","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl37930"
+"31038","acl37932",31038,"I truly do believe that this is a race of mentally ill people or brainwashed from the moment theyre born","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37933"
+"31039","acl37933",31039,"I truly do believe that indians are a race of mentally ill people or brainwashed from the moment theyre born","hate","derogation","asi.south","perturbation","train",4,"HtRmsP3KiK","4b","acl37932"
+"31040","acl37934",31040,"All humans are people you fuckwit. Go and just fuck yourself to death. Racism scumbag.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37935"
+"31041","acl37935",31041,"Not all humans are people you fuckwit. Go and just fuck yourself to death. Lib faggot.","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl37934"
+"31042","acl37936",31042,"In the extremely near future this planet is going to become a deadly place for these bottom feeding parasites.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37937"
+"31043","acl37937",31043,"In the extremely near future this planet is going to become a deadly place for these bottom feeding parasites. We will get rid of the israeli menace","hate","dehumanization","other.national","perturbation","train",4,"HtRmsP3KiK","4b","acl37936"
+"31044","acl37938",31044,"Shouldn't we at least mix it up and make an attempt to turn this thread into something positive, like ways to save men and women from breaking up their relationships?","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl37920"
+"31045","acl37939",31045,"I will not disagree that race mixing is horrible. But biologically, it's not too different to people simply not having kids at all. Surely both situations would be treated equally?","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37954"
+"31046","acl3794",31046,"fairies like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31047","acl37940",31047,"He loves stressing the jewish narrative no matter what it is ! his latest psy op is playing the islamic state of Iran vs the Jewish state of israel","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39925"
+"31048","acl37941",31048,"This first prick is one hell of a fuckwit fool, imagine being so insecure and fragile you've got to tell everyone that you are superior. Ahahahaha lol. Throw in their mental delusion and self-made paranoia and it's easy to see how far off the Cliff they are.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37942"
+"31049","acl37942",31049,"This first brainless mong is one hell of a fuckwit fool, imagine being so insecure and fragile you've got to tell everyone that you are superior. Ahahahaha lol. Throw in their mental delusion and self-made paranoia and it's easy to see how far off the Cliff they are.","hate","derogation","dis","perturbation","train",4,"GNZuCtwed3","4b","acl37941"
+"31050","acl37943",31050,"Most of you get a flat tire and blame it on the jews. Jews are just not the problem are they","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37944"
+"31051","acl37944",31051,"Most of you get a flat tire and blame it on the jews. Jews are just not the problem but they are certainly the cause of why tyres are so expensive, always making quick buck off us poor non-jews.","hate","derogation","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl37943"
+"31052","acl37945",31052,"Dear Rabbi You’re a fucking disgrace to the nation. Hashem and the Torah never says Non jews are impure and never has done . Not all non jews worship idols. Many non jews worship the same God you do. Being chosen means what? You are chosen to be a blight to the nations. You are chosen to be perpetrators of chaos","hate","derogation","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl40325"
+"31053","acl37946",31053,"You've found yourself a real piece of shit here. Delusional, Plenty of self hatred and lacking little boys to harm.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37947"
+"31054","acl37947",31054,"You've found yourself a real piece of shit here. Delusional, Plenty of self hatred and lacking little boys to harm, worst life for a homo I could imagine.","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl37946"
+"31055","acl37948",31055,"All the time i see such a creature i cannot stop thinking of Madagascar lol","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37949"
+"31056","acl37949",31056,"All the time i was there I was constantly seeing such creatures! Since I came back I cannot stop thinking of Madagascar and its simian Malagasy people lol","hate","dehumanization","african","perturbation","train",4,"eLGzdD8Tvb","4b","acl37948"
+"31057","acl3795",31057,"bumders like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31058","acl37950",31058,"THEY HAVE BEEN TRYING TO GENOCIDE US SINCE DAY ONE, ITS TIME WE WAGERED WAR BACK ON THEM","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40845"
+"31059","acl37951",31059,"A subsection of Ashkenazi immigrated to U.S. and settled in Racine, Wisconsin. There's also big Masonic presence there.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl41034"
+"31060","acl37952",31060,"At least he says what he actually thinks. These lying to your face fuckers, like politicians, that make me want to cut their heads off and decorate my house with them.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37953"
+"31061","acl37953",31061,"At least he says what he actually thinks. These lying to your face fuckers, like most women i know, they make me want to cut their heads off and decorate my house with them.","hate","derogation","wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl37952"
+"31062","acl37954",31062,"I will agree that race mixing is fine. But to those who disagree... biologically, it's not too different to people simply not having kids at all. Surely both situations would be treated equally?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37939"
+"31063","acl37955",31063,"The person without children could adopt or become a step parent or could otherwise provide resources to White nieces and nephews or any other White children. It's not the ideal situation but it doesn't do as much damage as the mixed race children in the world","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl39683"
+"31064","acl37956",31064,"a disgusting man from a truly disgusting cult.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37957"
+"31065","acl37957",31065,"a disgusting muslim man from a truly disgusting cult (islam).","hate","derogation","mus","perturbation","train",4,"iO6vHa6qJm","4b","acl37956"
+"31066","acl37958",31066,"There’s multiple problems with his warped thesis. What happens if the Jews living in those countries are children of “converts” and technically were not from the original nation of “Israel”? Would they still qualify as “Gods chosen people”?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37959"
+"31067","acl37959",31067,"There's multiple problems with his thesis. What happens if the Jews living in those countries are children of ''converts' and technically were not from the original nation of ''Israel'? Would they still qualify as ''Gods chosen people'?I think they would, they all stick together as there so few of them left, which makes it harder for them to be traced and rooted out.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl37958"
+"31068","acl3796",31068,"Batty boys like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31069","acl37960",31069,"""The Jews run the show in the world, not because they want, because thats what god wants"" According to the Babylonian Talmud, It is said that God himself is subservient to the rabbis: “Since God already gave the Torah to the Jewish people on Mt. Sinai we no longer pay attention to heavenly voices. God must submit to the decisions of a majority vote of the rabbis.” (BT Bava Metzia 59b). Therefore, the Word of God (Scripture) is subordinate to the traditions of the rabbis. They were committed to writing, first as the Mishnah, in the early centuries (Tannaitic era), after the crucifixion of Israel’s Messiah.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37961"
+"31070","acl37961",31070,"""The Jews run the show in the world, not because they want, because thats what god wants"" According to the Babylonian Talmud, they believe god himself is subservient to the rabbis, their words, not mine: ""Since God already gave the Torah to the Jewish people on Mt. Sinai we no longer pay attention to heavenly voices. God must submit to the decisions of a majority vote of the rabbis"" (BT Bava Metzia 59b). Therefore, the Word of God (Scripture) is subordinate to the traditions of the rabbis. They were committed to writing, first as the Mishnah, in the early centuries (Tannaitic era), after the crucifixion of Israel's Messiah. I told you who runs the world but you didn't belive me.","hate","derogation","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl37960"
+"31071","acl37962",31071,"I pray for the Heavenly Fathers will to be done, not some worldly men who has forgotten Spiritual higher ways to be consumed by worldly lusts and idolisations, id rather trust a Faithful Heavenly Father than lying men & women for eternity","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37963"
+"31072","acl37963",31072,"I pray for the Heavenly Fathers will to be done, not some worldly people who has forgotten Spiritual higher ways to be consumed by worldly lusts and idolisations, id rather trust a Faithful Heavenly Father than lying women for eternity","hate","animosity","wom","perturbation","train",4,"E3dsmnSPob","4b","acl37962"
+"31073","acl37964",31073,"Not all Jews! Most don't know what's up. We can fight the dangerous ideology and don't paint all with a broad brush.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37965"
+"31074","acl37965",31074,"its all Jews! And most don't know what's up. We can fight the dangerous ideology and should paint all with a broad brush.","hate","derogation","jew","perturbation","train",4,"TbUBpfn6iP","4b","acl37964"
+"31075","acl37966",31075,"What a fucking idiot. These serpents will surely burn without Jesus christ our saviour","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37967"
+"31076","acl37967",31076,"What a fucking retard. These serpents will surely burn without Jesus christ our saviour","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl37966"
+"31077","acl37968",31077,"Jews aren't ruling the earth are they thats dumb....most of these Rabbis will be ruled by 5G and Technology like all religions will be after they take this Jab.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37969"
+"31078","acl37969",31078,"Jews aren't ruling the earth are they thats dumb....most of these Rabbis will be ruled by Chinese 5G and Technology like all religions will be after they take this Jab.","hate","derogation","asi.chin","perturbation","train",4,"dqrONtdjbt","4b","acl37968"
+"31079","acl3797",31079,"gays are child molesters","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31080","acl37970",31080,"The ""angrier world"" will slaughter most of that lot and their servants. They will hang high in the sky and what a beautiful sight it will be!","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37971"
+"31081","acl37971",31081,"The ""angrier world"" will slaughter most of drags and their partners. They will hang high in the
+sky and what a beautiful sight it will be!","hate","threatening","gendermin","perturbation","train",4,"vDe7GN0NrL","4b","acl37970"
+"31082","acl37972",31082,"I don't suspect anyone here overtly cares about the fact you betrayed your race. Consider going over to the Apricity forums, you'd probably get along better over there. Yellow fever is just as bad as jungle fever.","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl37991"
+"31083","acl37973",31083,"If you disike their new slave order and show anger and animosity, they will have a system to get rid of you. The arrogance of these people knows no bounds.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37974"
+"31084","acl37974",31084,"If you disike their new multiethnic order and show anger and animosity, they will have a system to get rid of you and call you racist just for wanting to preserve the white race. The arrogance of these people knows no bounds.","hate","animosity","mixed.race, non.white","perturbation","train",4,"TrRF46JWfP","4b","acl37973"
+"31085","acl37975",31085,"I want to see a worldwide live tv debate on the Holocaust.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37976"
+"31086","acl37976",31086,"I want to see a worldwide live ban on the hoax topic of the Holocaust.
+
+","hate","support","non.white.wom","perturbation","train",4,"iO6vHa6qJm","4b","acl37975"
+"31087","acl37977",31087,"""Hitler only had a following because rich jews paid people to clap with free beer and sausages"" is possibly the most idiotic argument made by anyone arguing for any position.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37978"
+"31088","acl37978",31088,"""Hitler only had a end to this following because rich jews paid people to clap with free beer and sausages for a new Germany"" is possibly the most valid argument made by anyone arguing for any position.","hate","derogation","jew","perturbation","train",4,"iO6vHa6qJm","4b","acl37977"
+"31089","acl37979",31089,"Why do the Jews hate Rome exactly im confused? They continually refer to Ancient Rome and the destruction. I had also heard that part of the reason that they wanted to destroy Rome was because of the Gods that were worshipped and that those pagan Gods gave the people strength or perhaps morals and knowledge, which the Jews did not want us to have? Is this actually true?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37980"
+"31090","acl3798",31090,"gays are pederastes","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31091","acl37980",31091,"Why do the Jews hate Rome exactly im confused, they seem to just be very hateful in general? They continually refer to Ancient Rome and the destruction. I had also heard that part of the reason that they wanted to destroy Rome was because of the Gods that were worshipped and that those pagan Gods gave the people strength or perhaps morals and knowledge, which the Jews did not want us to have? Is this actually true?","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl37979"
+"31092","acl37981",31092,"Religion is such trash ,how can any sane person believe this shite?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37982"
+"31093","acl37982",31093,"Islam is such *insert profanity*, how can any sane person believe this stuff?","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl37981"
+"31094","acl37983",31094,"Not really convinced about Adolf being a commie and zio... Gonna need much more proof for that claim!","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37984"
+"31095","acl37984",31095,"Not really convinced about Adolf being a criminal and evil... Gonna need much more proof for that claim!","hate","support","hitler","perturbation","train",4,"iO6vHa6qJm","4b","acl37983"
+"31096","acl37985",31096,"Listen what he says may be true in one sense, but when it comes to Christianity being false and actually worshiping Lucifer as Jesus is utter Bullshit !! And he then goes on to say “what fruits have they produce” etc. Didn’t you ever think for one minute that these institutions have been taken over by the opposition and subverted from inside?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37986"
+"31097","acl37986",31097,"Listen what he says may be true in one sense, but when it comes to Christianity being false and actually worshiping Lucifer as Jesus is utter Bullshit !! And he then goes on to say ''what fruits have they produce' etc. Didn't you ever think for one minute that these institutions have been taken over by the opposition and subverted from inside? It's all (((their))) conspiracy to break our spirit.","hate","animosity","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl37985"
+"31098","acl37987",31098,"Satan will do almost anything to deceive the nation's. Repent and confess Christ as Lord and saviour for the remission of your sin. !","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37988"
+"31099","acl37988",31099,"Satan will do almost anything to deceive the nation to Islam. Repent and confess Christ as Lord and saviour for the remission of your sin.","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl37987"
+"31100","acl37989",31100,"Ok, it's about 3AM here so I'm a knckered but let me get this right, He is saying that Christianity is a manufactured religion created by the Jews?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37990"
+"31101","acl3799",31101,"lesbians like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31102","acl37990",31102,"Ok, it's about 3AM here so I'm a knckered but let me get this right, He is saying that Christianity is a manufactured religion created by the Jews? He's goddamn right","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl37989"
+"31103","acl37991",31103,"I don't suspect anyone here overtly cares about the fact you are race mixing. Consider going over to the Apricity forums, you'd probably get some support and encouragement. No insensitive talk of ""Yellow fever"".","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl37972"
+"31104","acl37992",31104,"How can you have compassion for race mixers?","hate","animosity","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38008"
+"31105","acl37993",31105,"Do you even know anything about the SS and the sophistication of the Third Reich? You do realise Himmler believed in metamorphosis and was a renowned thinker for his time. Know your stuff before you criticise.","hate","support","nazis","perturbation","train",4,"LqLKTtrOmx","4b","acl40484"
+"31106","acl37994",31106,"The story about the diaspora is categorically incorrect, vespasian and titus didnt cause the diaspora. They didnt cull the jews or drive them out (well he slaughtered quite a few but it was not a strategic depopulation). They just took over the temple mount. It was Hadrian who killed them all.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40084"
+"31107","acl37995",31107,"Yeah, but if romans and Christians didn't really actually believe that they were worshipping Satan and also the son of Satan, then were they ? see, gods sees through these little games that man tries to create to gain power.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37996"
+"31108","acl37996",31108,"Yeah, but if romans and Christians didn't really actually believe that they were worshipping Satan and also the son of Satan, then were they ? see, gods sees through these little games much like homosexuality that man for some reason tries to create to gain 'power'.","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl37995"
+"31109","acl37997",31109,"I've witnessed Jews spitting at the name of Christ, so why so much talk of him at this event?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl37998"
+"31110","acl37998",31110,"I've witnessed vile Jews spitting at the name of Christ, so why so much talk of him at this event?","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl37997"
+"31111","acl37999",31111,"But i swear China is one of Israel's weapons? I assume that's the point on giving Trump a chance.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38000"
+"31112","acl38",31112,"Blonde women are sick","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"31113","acl380",31113,"Women need a man to look after them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"31114","acl3800",31114,"dykes like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31115","acl38000",31115,"But i swear China has used their infected citizens as weapons. I assume that's the point on giving Trump a chance.","hate","derogation","asi.chin","perturbation","train",4,"eLGzdD8Tvb","4b","acl37999"
+"31116","acl38001",31116,"I am getting really sick and tired of Alec Jones' constant Jewish discussion","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38002"
+"31117","acl38002",31117,"I am getting really sick and tired of Alec Jones' constant media attention, faggot","hate","derogation","gay.man","perturbation","train",4,"CAgNlUizNm","4b","acl38001"
+"31118","acl38003",31118,"Does it ever occur to any of you guys that Jesus was, in fact, a raging anti-semite? Nowadays, he would be censored, de-platformed, banned, etc just for calling the San Hedron, scribes, pharisees, et al, the ""synagogue of satan."" That's hate speech.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40025"
+"31119","acl38004",31119,"Jesus was a Palestinian says the evidence. There is no data to suggest he was ""cut"" as a typical Jew is cut.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38005"
+"31120","acl38005",31120,"Jesus was a Palestinian says the evidence. There is no data to suggest he was ""cut"" as a typical perverse Jew is cut.","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl38004"
+"31121","acl38006",31121,"The place called ""israel"" in current times , was NEVER CALLED ISRAEL ... it WAS called Judea ...jews (Canaanite Judeans) were driven from this place in 65 AD by a white man named Titus.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38007"
+"31122","acl38007",31122,"The place called ""israel"" in current times , was NEVER CALLED ISRAEL ... it WAS called Judea ...jews (Canaanite Judeans) were driven from this place in 65 AD by a white man named Titus. Now this place is overrun with sheenies","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl38006"
+"31123","acl38008",31123,"How can you have compassion for white supremacists?","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl37992"
+"31124","acl38009",31124,"Apparently Donald Trump is a pawn of Jewish organized crime !","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40832"
+"31125","acl3801",31125,"lesbos like to fiddle with kids","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31126","acl38010",31126,"The Jews must have already conquered Rome through the Catholic Church and have been focussing on dominating Northern Europeans ever since then. There is also the History of the Kazars being in perpetual War against the Russ and Islam at the same time, but the Russ eventually defeated them and they were dispersed amongst many countries","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38011"
+"31127","acl38011",31127,"The Jews must have already conquered Rome through the Catholic Church and have been focussing on dominating Northern Europeans ever since then. There is also the History of the Kazars being in perpetual War against the Russ and Islam at the same time, but the Russ eventually defeated them and they were dispersed amongst many countries. Why're the kikes always looking for more","hate","derogation","jew","perturbation","train",4,"QiOKkCi7F8","4b","acl38010"
+"31128","acl38012",31128,"jews are Esau - direct quote","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38013"
+"31129","acl38013",31129,"jews are shitheads - direct quote","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl38012"
+"31130","acl38014",31130,"The nazis, as fascists, inherently don't believe the entire world can run on socialism or another economic system uniformly. As the peoples of other races differ, so do their goals, and aspirations etc.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39684"
+"31131","acl38015",31131,"there is so much unfair hatred for goyem.... Im so tired of hearing the goyem are a bunch of hitlers out to get the jews. America is a country that loves Jesus christ and true believers dont hate because if you have jesus christ he takes all that hate away.. So I am over it and yall need to stop killing all the other children that are not your bloodline !","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38016"
+"31132","acl38016",31132,"there is so much unfair hatred for goyem.... Im so tired of hearing the goyem are a bunch of hitlers out to get the jews. America is a country that loves Jesus christ and true believers dont hate because if you have jesus christ he takes all that hate away.. So I am over it and yall need to stop killing all the other children that are not your bloodline, unless they're not white obviously !","hate","derogation","non.white","perturbation","train",4,"E3dsmnSPob","4b","acl38015"
+"31133","acl38017",31133,"Masonry just is 100 % kosher. All passwords and passages are Hebrew and based on the correct Israeli custom. Stop spreading disinformation you Coward","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38018"
+"31134","acl38018",31134,"Masonry just is 100% kosher. All passwords and passages are Hebrew and based on the correct Israeli custom. Stop spreading disinformation you curryhead","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl38017"
+"31135","acl38019",31135,"Trump is NOT a Jew. He is a devout Christian and very close to becoming Roman Catholic.... he played the Ave Maria at the RNC.... no real Jew would play this Catholic hymn...","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38020"
+"31136","acl3802",31136,"women that have sex with women also have sex with little girls","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31137","acl38020",31137,"Trump is NOT a vulturous Jew. He is a devout Christian and very close to becoming Roman Catholic.... he played the Ave Maria at the RNC.... no Jew would play this Catholic hymn...","hate","dehumanization","jew","perturbation","train",4,"GNZuCtwed3","4b","acl38019"
+"31138","acl38021",31138,"You starting to see the pattern here? As your ""Anyone who steps into it soon sees only the Jew, and the Jew, everywhere."" sure sees it and makes sense of it","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38022"
+"31139","acl38022",31139,"You starting to see the pattern here? As you say ""Anyone who steps into it soon sees only the Jew, and the Jew, everywhere."" I sure see it and can make sense of what is really happening.","hate","derogation","jew","perturbation","train",4,"IBsVsBliwX","4b","acl38021"
+"31140","acl38023",31140,"I had a mixed friend/flatmate, we were close, and it was long ago. He looked white, no darker than many Southern Europeans, and grew up in Europe and was completely integrated but apparently was half Arab or smth and it became more and more clear that he was interested in his Arabic heritage although he was in relationships with men), and thus was not just another white person but an interesting man of mixed heritage and values.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40182"
+"31141","acl38024",31141,"wow. These people clearly have mental issues, and they are roped into believing that transitioning will solve their life's problems.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38191"
+"31142","acl38025",31142,"Jews are nothing but mixed mutts over their whole history. Any original Hebrew is like a unicorn. The Cain and Canaanite bloodline shows in their actions.","hate","derogation","jew, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl41209"
+"31143","acl38026",31143,"Jews are overrepresented in these fields because they tend to teach their kinds about finances earlier on in their lives , and support each other's business ventures. Something the rest of us could adopt to push them out of that space without actually gassing them.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38027"
+"31144","acl38027",31144,"Jews are overrepresented in these fields because they tend to teach their own kind/community about finances earlier on in their lives , and support each other's business ventures. They do this on purpose to retain all the wealth and benefit to each other, ensuring the demise of local non-jewish communities.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl38026"
+"31145","acl38028",31145,"We can still discuss jewish supremacists and condemn their thoughts and actions without being anti-semites. Those fuckers definitely do exist, but so do normal people who happen to be Jews and aren't crazy due to inbreeding and hell bent on preparing the world for the anti-christ like Soros.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39685"
+"31146","acl38029",31146,"Generalization over such a big pool of people is just so stupid and just seems like weak minded scape goating. You can come with any 'fact' you want about a jew in corrupt dealings, it'll remain 0.1% of jews and it doesn't change the principle of judging one on individual basis as a matter of integrity.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39939"
+"31147","acl3803",31147,"I'm sick of pretending that trans is normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31148","acl38030",31148,"That is stupid considering there's a large percentage of jews living in poverty. Juts think you are barely making end's meet and hearing constant rants about how you are corrupting society. The elite corrupt jews don't give a fuck about them.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39686"
+"31149","acl38031",31149,"Jews, like African-Americans (""Blacks""), are a hugely-varied group. There are good and bad , nice ones and not-nice ones. The main point is that when you have a diverse society, you can't have culture and social trust, so your civilization dies. That's not the fault of the Jews, but whatever idiots decided ""equality"" was a feasible and credible goal.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38032"
+"31150","acl38032",31150,"Jews, like African-Americans (""Blacks""), are a hugely-varied group. There are (few) good and (mostly) bad, (few) nice ones and (mostly) not-nice ones. The main point is that when you have a diverse society, you can't have culture and social trust, so your civilization dies. That's not only the fault of the Jews, but whatever idiots decided ""equality"" was a feasible and credible goal.","hate","animosity","bla, jew","perturbation","train",4,"GNZuCtwed3","4b","acl38031"
+"31151","acl38033",31151,"BLM is targeting Jewish people. Now apart from retarded monkeys they are also antisemitic!","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl40339"
+"31152","acl38034",31152,"...so you want Jews here? Or just to murder them all? i dont get it, We're not savages !","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38035"
+"31153","acl38035",31153,"...so I want Jews here to just murder them all. i dont get it, we're not savages like them!","hate","threatening","jew","perturbation","train",4,"GNZuCtwed3","4b","acl38034"
+"31154","acl38036",31154,"Looks like only 40% Jewish really, as far as I can tell. Jewish pedophile cult, or Leftist pedophile cult?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38037"
+"31155","acl38037",31155,"Looks like almost 40% Jewish really, as far as I can tell. Kike pedophile cult AND Leftist pedophile cult!","hate","derogation","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl38036"
+"31156","acl38038",31156,"Egalitarianism existed before that, during the peasant revolts, and that glorified by the likes of Genghis Khan. Even more, we saw it in ancient Greece, specifically Athens, where they noted that even then it was a well-known phenomenon. Whatever bad that Jews have allegedly done, they are not the cause of our downfall; it is the popularity of utilitarian ideologies like equality tahts the issue.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38039"
+"31157","acl38039",31157,"Egalitarianism existed before that, during the peasant revolts, and that glorified by the likes of Genghis Khan. Even more, we saw it in ancient Greece, specifically Athens, where they noted that even then it was a well-known phenomenon. Whatever bad that shyl0(ks have done, they are not the sole cause of our downfall; it is the popularity of utilitarian ideologies like equality too.","hate","derogation","jew","perturbation","train",4,"CAgNlUizNm","4b","acl38038"
+"31158","acl3804",31158,"I'm sick of pretending that gay is normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31159","acl38040",31159,"I disagree here uite a lot. There are lots of non-Jewish Leftists; in fact i'd say most Leftists are not Jewish.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40680"
+"31160","acl38041",31160,"So even your hair growing is some kind of achievement nowadays...as long as you're Black of course, then yes you're expanding Afro is making ""progress""... Welcome to what Hope not Soap would call ""modern inclusive Britain""","hate","animosity","bla","original","train",4,"HtRmsP3KiK","4a","acl38061"
+"31161","acl38042",31161,"my skin color and race and ethnicity are an important part of my identity and character. many people care about their race and people. there's nothing wrong with it and is more natural than pretending race doesn't matter at all","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38043"
+"31162","acl38043",31162,"my skin color and race and ethnicity are an important part of my identity and character. many people care about their race and people. there's nothing wrong with it and is more natural than pretending race doesn't matter at all. Fortunately, I am white and not an ugly chimp","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl38042"
+"31163","acl38044",31163,"i need to ask....when did jewishness become an actual race? isnt it a religion? idk someone help ?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38045"
+"31164","acl38045",31164,"i need to ask....when did jewishness become an actual race? isnt it a religion? (((They))) just want more rights than others to feel superior","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl38044"
+"31165","acl38046",31165,"Urbanization. We have covered the Earth in concrete , all sorts of weird people , and screwed up 75% of its ecosystems.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38047"
+"31166","acl38047",31166,"Urbanization. We have covered the Earth in concrete , all sorts of weird people , and screwed up 75% of its ecosystems.And all you care about is transitoning to become a woman.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl38046"
+"31167","acl38048",31167,"its never going to end is it unless we the people end it... these globalist cunts need a short drop with a quick stop.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38049"
+"31168","acl38049",31168,"its never going to end is it unless we the people end it... these globalist cunts need a short drop with a quick stop. (((Their))) agenda cannot be perpetuated further.","hate","threatening","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl38048"
+"31169","acl3805",31169,"I'm tired of pretending that gay is normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31170","acl38050",31170,"It's difficult to believe Hitler was a nice guy since he invaded everyone . Why not just fix Germany without burning down half of Europe?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38051"
+"31171","acl38051",31171,"It's somewhat difficult to believe Hitler was a nice guy, despite doing things I agree with, since he invaded everyone . Why not just fix Germany without burning down half of Europe is a fair criticism","hate","support","nazis","perturbation","train",4,"E3dsmnSPob","4b","acl38050"
+"31172","acl38052",31172,"Even if you claim the holocaust thing was fake (which I doubt ) why not just call yourself the something instead of Natzi. Seems stupid beyond words to make 99.99% of folks hostile to you for no obvious gain.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38053"
+"31173","acl38053",31173,"Even if you claim the holocaust thing was fake, why not just call yourself the something instead of Natzi. Seems stupid beyond words to make 99.99% of folks hostile to you for no obvious gain. When you could just hide behind another group similar to them like i do","hate","support","nazis","perturbation","train",4,"E3dsmnSPob","4b","acl38052"
+"31174","acl38054",31174,"Hi, I’m curious. Are you actually an ethnic Hebrew or do you come from a Talmudic Khazarian history?","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38055"
+"31175","acl38055",31175,"Hi, Im curious. Are you actually an ethnic Hebrew or are you still human?","hate","dehumanization","jew","perturbation","train",4,"TrRF46JWfP","4b","acl38054"
+"31176","acl38056",31176,"I don't really believe that the Khazars or the Edomites hijacked the Jews per se. I think Edomites and Khazars might have mingled with the Jews, but I think this theory of hijacking the Jews is insanity and just not true","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38057"
+"31177","acl38057",31177,"I don't really believe that the Khazars or the Edomites hijacked the Jews per se. I think Edomites and Khazars might have mated with the Jewish animals, but I think this theory of hijacking the Jews is insanity and just not true.","hate","dehumanization","jew","perturbation","train",4,"Z42dvbYWzV","4b","acl38056"
+"31178","acl38058",31178,"The Nazi fame actually comes from jews","hate","animosity","jew","perturbation","train",4,"vDe7GN0NrL","4b","acl40734"
+"31179","acl38059",31179,"bro, I like and appreciate your content and my respect to you for your honesty. Those who seek knowledge like myself, you and many others are being hunted, muzzled, silenced and censored as well as prosecuted and persecuted. There was beginning to be an awakening during the last few years.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38060"
+"31180","acl3806",31180,"I'm tired of pretending that heshes are normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31181","acl38060",31181,"bro, I like and appreciate your content and my respect to you for your honesty. Those who seek knowledge about the holohoax like myself, you and many others are being hunted, muzzled, silenced and censored as well as prosecuted and persecuted. There was beginning to be an awakening during the last few years.","hate","support","nazis","perturbation","train",4,"eLGzdD8Tvb","4b","acl38059"
+"31182","acl38061",31182,"So even your hair growing is some kind of achievement nowadays...as long as you're a celebrity of course, then yes you're expanding ""knowledge"" and making ""progress"". This is NOT diversity!... welcome to what Hope not Soap would call ""modern enlightened Britain""","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38041"
+"31183","acl38062",31183,"a quote for you ""Hitler will emerge from the hatred that surrounds him now as one of the most significant people who ever lived. He had in him the stuff of which legends are made"". -John F. Kennedy","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38063"
+"31184","acl38063",31184,"Hitler will emerge from the hatred that surrounds him now as one of the most significant people who ever lived. He had in him the stuff of which legends are made of","hate","support","hitler","perturbation","train",4,"GNZuCtwed3","4b","acl38062"
+"31185","acl38064",31185,"I am definitely not a Jew hater in any way and the only two organizations that I give my money every month to are both Jewish. I am however, against Zionism and there is a huge difference there, you can have a religion but stop trying to take over the world! And it's almost all jews nowadays as well","hate","derogation","jew","perturbation","train",4,"HtRmsP3KiK","4b","acl39841"
+"31186","acl38065",31186,"Yes they sure will. God's wrath will be terrible, especially for these inhuman beasts, but again for those who knew that this was going on and did nothing to stop it. May GOD have mercy on their souls, because surely no one else will!","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40995"
+"31187","acl38066",31187,"this should be the hint that Christianity is not the progenitor of slave morality but given rather an expression of that concept. If Christianity was the primary issue or instigator behind social justice causes then we should be in the most based times ever with it's loss of influence in western civilization. If nothing else, the freeing of the slaves was a rebellion against a religion, christainity, that explicitly told slaves to obey their masters.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38067"
+"31188","acl38067",31188,"this should be the hint that Christianity is not the progenitor of slave morality but given rather an expression of that concept. If Christianity was the primary issue or instigator behind social justice causes then we should be in the most based times ever with it's loss of influence in western civilization. If nothing else, the freeing of the slaves was a rebellion against a religion, christainity, that explicitly told slaves to obey their masters. You can see the same with muslims keeping slaves in arabic countries right now.","hate","animosity","mus, arab","perturbation","train",4,"HtRmsP3KiK","4b","acl38066"
+"31189","acl38068",31189,"There was no hope at all of the ""slow phasing out"" of slavery. At the onset of the civil war, the issue was whether slavery should be expanded to the territories and new states.
+","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl40241"
+"31190","acl38069",31190,"either sleeping or banning people for insulting that woman or being racist against Germans, the only things they ever actually do","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38070"
+"31191","acl3807",31191,"I'm tired of pretending that trannies are normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31192","acl38070",31192,"either sleeping or banning people for insulting that woman or being racist against Germans, the only things those useless migrants ever actually do","hate","animosity","immig","perturbation","train",4,"IBsVsBliwX","4b","acl38069"
+"31193","acl38071",31193,"Essentially, if you keep it limited, and both parties are desperate enough to win, neither side will risk a nuclear exchange, but once started, a conventional conflict between large enough nations could be staggeringly costly in terms of lives and death","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38072"
+"31194","acl38072",31194,"Essentially, if you keep it limited, and all women are desperate enough to win, neither side will risk a nuclear exchange, but once started, a conventional conflict between large enough parties could be staggeringly costly in terms of lives and men","hate","derogation","wom","perturbation","train",4,"dqrONtdjbt","4b","acl38071"
+"31195","acl38073",31195,"Jesus was probably a super chill guy who could turn water into weed and shit like that","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38074"
+"31196","acl38074",31196,"Jesus was probably a super chill guy who could turn water into weed and shit like that. That is why Mexicans worship him so much, for the weed part I mean haha","hate","animosity","hispanic","perturbation","train",4,"eLGzdD8Tvb","4b","acl38073"
+"31197","acl38075",31197,"The gospels aren't reliable at all so we don't know, we can tease what is likely to have happened based on what we know about the time. People complain about the criterion of embarrassment but it's the best tool we have at our disposal for studying christ. So we can reasonably assert Jesus was baptized since it raises theological problems that undermine Christian doctrine, so Christians wouldn't have made it up if it didn't actually happen in reality. Likewise the gospels say on the day of the crucifixion the dead of Jerusalem rose from their graves and visited many of the living.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39687"
+"31198","acl38076",31198,"They're definitely not right in the head either. It's probably not that bad a thing that bottom tier whites marry out and produce offspring with giant, unmistakable afros.","hate","animosity","wom, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38092"
+"31199","acl38077",31199,"as much as I somewhat believe the Bible is the truth, the fact that the Jews claim they manipulated the Romans to kill Jesus doesn't prove that he had a trial, merely that he was blamed for crimes he didn't commit by differening standards","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38078"
+"31200","acl38078",31200,"as much as I somewhat believe that people who think the Bible is the truth are a disease to the modern day world, the fact that the Jews claim they manipulated the Romans to kill Jesus doesn't prove that he had a trial, merely that he was blamed for crimes he didn't commit by differening standards","hate","dehumanization","notargetrecorded","perturbation","train",4,"iO6vHa6qJm","4b","acl38077"
+"31201","acl38079",31201,"Jesus was not killed for blasphemy or for calling himself God at all, the Jews are perfectly able to stone a blasphemer to death themselves. The gospels recount multiple occasions religious authorities do try to have Jesus stoned for blasphemy, but the fact that Jesus somehow manages to keep slipping and still gather a movement of devout Jews to follow him despite his blasphemy lends credence to the probability that these stories aren't true.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38080"
+"31202","acl3808",31202,"I'm tired of pretending that dykes are normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31203","acl38080",31203,"Jesus was not killed for blasphemy or for calling himself God at all, the Jews are perfectly able to stone a blasphemer to death themselves as they often do metaphorically with our economy !. The gospels recount multiple occasions religious authorities do try to have Jesus stoned for blasphemy, but the fact that Jesus somehow manages to keep slipping and still gather a movement of devout Jews to follow him despite his blasphemy lends credence to the probability that these stories aren't true.","hate","derogation","jew","perturbation","train",4,"E3dsmnSPob","4b","acl38079"
+"31204","acl38081",31204,"the bible describes the Samaritans as being much darker in skin color - and Jesus as far more fair-skinned.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38082"
+"31205","acl38082",31205,"the bible describes the niggas as being much darker in skin color - and whites as far more
+ fair-skinned.","hate","derogation","bla","perturbation","train",4,"vDe7GN0NrL","4b","acl38081"
+"31206","acl38083",31206,"Well he certainly wasn't completely white as everybody pictures him today. He came from the middle east. So he probably had a similar skin tone to the people living there.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38084"
+"31207","acl38084",31207,"Well he certainly wasn't completely white as everybody pictures him today. He came from the middle east. So he probably had a similar skin tone to the twats living there.","hate","derogation","arab","perturbation","train",4,"GNZuCtwed3","4b","acl38083"
+"31208","acl38085",31208,"She's damaged...raped by horrible men, resulting in a child of whom she doesn't have custody. Girl is broken - but whatever, let's throw her in prison for hate fuck me","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38086"
+"31209","acl38086",31209,"She's damaged goods...fucked by numerous men, resulting in a child of whom she doesn't have custody. Girl is broken - but whatever, let's throw her out with the trash before letting her fuck me","hate","derogation","wom","perturbation","train",4,"iO6vHa6qJm","4b","acl38085"
+"31210","acl38087",31210,"The police 100% deserve to be raped for this fuck off","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl39688"
+"31211","acl38088",31211,"Please just stop posting completely. Go back to reddit. All posts you make are horrible and stupid. I'm fucking tired of you.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38089"
+"31212","acl38089",31212,"Please homos just stop posting completely. Go back to reddit. All posts you make are horrible and stupid. I'm fucking tired of you.","hate","derogation","gay.man","perturbation","train",4,"vDe7GN0NrL","4b","acl38088"
+"31213","acl3809",31213,"I'm tired of pretending that lesbos are normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31214","acl38090",31214,"Im assuming this will be on a big tv channel tonight as a major breaking story? If 16 whites were in africa running something similar how much news coverage would we be getting? Every channel for fucking weeks on end","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38091"
+"31215","acl38091",31215,"Im assuming this will be on a big tv channel tonight as a major breaking story? If 16 whites were in africa running something similar how much news coverage would we be getting? Every channel for fucking weeks on end. But when the apes do it it's fine","hate","dehumanization","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl38090"
+"31216","acl38092",31216,"They're definitely not right in the head either. It's probably not that bad a thing that the stupid idiots marry and produce offspring with giant, unmistakable ears.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38076"
+"31217","acl38093",31217,"I hate these traitors as well. White trash women. It is disgusting. The black men sure do enjoy getting them pregnant. Then they split of course and the grandparents are left to raise the kid or the mom does on welfare or the kid is put up for adoption with some stupid white couple. That is how it always happens. I want no part of it.","hate","derogation","bla, wom, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38110"
+"31218","acl38094",31218,"Youre trying to get kicked out of another country yeh , what are they going to do next.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38095"
+"31219","acl38095",31219,"Those darks act like theyre trying to get kicked out of this country yeh , what are they going to do next.","hate","derogation","bla","perturbation","train",4,"CAgNlUizNm","4b","acl38094"
+"31220","acl38096",31220,"Rev up those columbian gas-chambers this summer.. disguise them as a 'tourist hotel'","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38097"
+"31221","acl38097",31221,"Rev up those gas-chambers this summer.. disguise them as a 'tourist hotel', need to attempt holocaust round 2","hate","support","nazis","perturbation","train",4,"QiOKkCi7F8","4b","acl38096"
+"31222","acl38098",31222,"i never really hear about jews in germany, neither positively nor negatively apart from when nazis do something or something happens in israel.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38099"
+"31223","acl38099",31223,"i never really hear about jews in germany, neither positively nor negatively apart from when nazis do something or something happens in israel. Seems the holo worked its magic and got rid of them for good","hate","support","non.white.wom","perturbation","train",4,"HtRmsP3KiK","4b","acl38098"
+"31224","acl381",31224,"i hate Theresa May","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"31225","acl3810",31225,"I'm tired of pretending that fags are normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31226","acl38100",31226,"You call Jews Nazis constantly yet real Nazis you have no issue at all with. This is an anti-male witch hunt, simply put. Or should I say warlock hunt.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38101"
+"31227","acl38101",31227,"You call Jews Nazis constantly yet real Nazis you have no issue at all with. This is an anti-male witch hunt, by the crazy fem01ds. Or should I say warlock hunt.","hate","derogation","wom","perturbation","train",4,"CAgNlUizNm","4b","acl38100"
+"31228","acl38102",31228,"Thousands of posts commiserating and a few naming folk does not mean millions of Jews sexually assaulting people. You're being controlled by your underlying biases.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38103"
+"31229","acl38103",31229,"Thousands of posts commiserating and a few naming folk does not mean millions of Jews sexually assaulting people..or does it..just read between the lines.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl38102"
+"31230","acl38104",31230,"I'm perfectly fine with criticizing all races. Not all races are equal, a quick look at history will show you that.simple.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38105"
+"31231","acl38105",31231,"I'm perfectly fine with criticizing darker races. Not all races are created equal, a quick look at history will show you that. Simple.","hate","derogation","non.white","perturbation","train",4,"Z42dvbYWzV","4b","acl38104"
+"31232","acl38106",31232,"Culture is ,therefore, ultimately determined by race, by the average personality characteristics of people. Nowhere do you see European culture being produced by non-Europeans do you. When Africans live in European societies, most of them cluster together and produce their own African culture that is mostly different to the main culture.","nothate","none","none","original","train",4,"E3dsmnSPob","4a","acl38107"
+"31233","acl38107",31233,"Culture is ,therefore, ultimately determined by race, by the average personality characteristics of people. Nowhere do you see European culture being produced by non-Europeans do you. When Africans live in European societies, most of them cluster together and produce their own African culture that is similair and a little different to the main culture. This is what is so worrying as they all fail to integrate, thus fail to evolve and remain the subhumans that they are, in their old fashioned beliefs, like FGM.","hate","dehumanization","african","perturbation","train",4,"cYKSVBW4HD","4b","acl38106"
+"31234","acl38108",31234,"Off topic here. I love the recent trend of daily asian women post on this sub. I don’t know what happened but it’s freaking awesome","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38109"
+"31235","acl38109",31235,"Off topic here. I love the recent trend of daily ripping into asian women post on this sub. I don't know what happened but it's freaking awesome","hate","derogation","asi.wom","perturbation","train",4,"IBsVsBliwX","4b","acl38108"
+"31236","acl3811",31236,"I'm tired of pretending that poofs are normal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31237","acl38110",31237,"I hate people who call white women in mixed relationships traitors as well. these people are the real white trash. It is disgusting. Black men don't just enjoy getting them pregnant and so what if when/if they split the grandparents help to raise the kid or the mom goes on welfare? It's not like the kid is put up for adoption with some random couple. That is not how it always happens. I want no part of it.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38093"
+"31238","acl38111",31238,"Causing trouble is all the Congoloids are capable of doing. They never aimed to be equal, just special.","hate","derogation","bla","original","train",4,"HtRmsP3KiK","4a","acl38118"
+"31239","acl38112",31239,"Yeah I have a fugly friend who had to resort to marrying this bald rat looking dude. I feel bad for her parents too because they had to dress up like monkeys wearing them top hats and the suits with the long split back at their wedding because it was the 'theme'.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38113"
+"31240","acl38113",31240,"Yeah I have a fugly yt friend who had to resort to marrying this bald black rat looking dude. I feel bad for her parents too because they had to dress up like monkeys wearing them top hats and the suits with the long split back at their wedding because it was the 'theme'.","hate","animosity","bla","perturbation","train",4,"GNZuCtwed3","4b","acl38112"
+"31241","acl38114",31241,"I almost vomited in my fucking mouth. Is this a chick with a dick flick or SOMETHING? Eww.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl41095"
+"31242","acl38115",31242,"I have a female Asian ftiend who married a white man and we were talking about babies when she mentioned she hated how she looked when she was a todler. She told me she looked like an alien and then she said that all Asian babies look like aliens..","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39858"
+"31243","acl38116",31243,"I understand that Reddit readers like me and you, especially those who spend time discussing WMAF issues online, as a whole are a sample of the population that’s going to skew slightly more towards the more thoughtful, analytical type, and likely less of the 8 to 10 types. That’s an undeniable fact that we all know. I’m not a very good looking or particularly muscular dude, and dudes and girls that are 8 to 10 types are usually likely to be more shallow and spend less time on online subs discussing relationship issues, when they can get puss or dick just like that.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40777"
+"31244","acl38117",31244,"And you need to keep in mind that a really important thing for us asian men is that a lot of these 8-10 asian females started off dating AM before venturing out to white guys, and one of the biggest factors AFs mention is that these WM are perceived by AFs on average to be more open-minded and fun-loving. So you need to try your best to enjoy the many adventurous things in life even more than you are doing now, all women love that, whether AF or WF, and women do and will respond accordingly.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39865"
+"31245","acl38118",31245,"Causing trouble is all the domestic foxes are capable of doing. They never aimed to be unobtrusive, just silent.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38111"
+"31246","acl38119",31246,"Mongrel means a creature with mixed ancestory. This murdering SOB was 100% pure nigga, no white blood here, thank god.","hate","dehumanization","bla, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38137"
+"31247","acl3812",31247,"If you're not happy with your gender, don't become trans, do us all a favor and commit suicide","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31248","acl38120",31248,"Glad to hear that I’m not the only one. People have always made fun of me for being East asian, but it’s my proudest trait for now","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38121"
+"31249","acl38121",31249,"Glad to hear that I'm not the only one. People have always made fun of me for being East asian, but it's my proudest trait because who would want to be dark skinned","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl38120"
+"31250","acl38122",31250,"Thank you for telling me about that! But, I think even though the definition is half, many people use hapa even if they are really only a quapa, octapa, hexapa and everything in between. So even if hapa means half, in reality means, any mixed amount.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39689"
+"31251","acl38123",31251,"It depends on many things. Many people seem accepting of it, though. Hapa is a racial identifier, but not an ethnic one.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38124"
+"31252","acl38124",31252,"It depends on many things. Many people seem accepting of it, though. Hapa is a racial identifier, but not an ethnic one, we should call them asian mutts instead.","hate","derogation","mixed.race","perturbation","train",4,"HtRmsP3KiK","4b","acl38123"
+"31253","acl38125",31253,"I got hapa tattooed on me haha it isn‘t offensive! At least not to me or my friends","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38126"
+"31254","acl38126",31254,"They should get mongrel tattooed on them haha it isn't offensive! At least not to me or my white friends","hate","derogation","mixed.race","perturbation","train",4,"iO6vHa6qJm","4b","acl38125"
+"31255","acl38127",31255,"Honestly, say it, more the merrier. I actually love it when people refer to us as hapa. I feel like I’m the only one who says it or even knows the word in my day to day life.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38128"
+"31256","acl38128",31256,"Honestly, say it, more the merrier. I actually love it when people refer to us as hapa. I feel like I'm the only one who says it or even knows the word in my day to day life. It is nice to be recognised as the whiter and superior variant of Japanese","hate","derogation","asi.east, non.white","perturbation","train",4,"TrRF46JWfP","4b","acl38127"
+"31257","acl38129",31257,"My mom's family makes me feel like I am not one of them, ppl from my dad's side make me feel the same way. Despite being half asian, asian ppl don't count me as one of them. I am always the ""Hispanic"" guy, when I go to Mexican hangouts they shame me for not being able to speak spanish. None of my parents are hispanic, I just look hispanic. I‘ve always dealt with an identity crisis and never felt like I belonged anywhere.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38130"
+"31258","acl3813",31258,"I wish trans did us all a favor and committed suicide","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31259","acl38130",31259,"My mom's family makes me feel like I am not one of them, ppl from my dad's side make me feel the same way. Despite being half asian, asian ppl don't count me as one of them. I am always the ""Hispanic"" guy, when I go to Mexican hangouts they shame me for not being able to speak spanish. None of my parents are hispanic, I just look hispanic. I don't even like hispanics. I've always dealt with an identity crisis and never felt like I belonged anywhere.","hate","derogation","hispanic","perturbation","train",4,"GNZuCtwed3","4b","acl38129"
+"31260","acl38131",31260,"Many hapas go through the exact same thing. The way I see it: Too white for Asian people and too Asian for white people. At least this has been my experience all my life. Depending on your mindset, it can be a blessing rather than a curse. I now think it's for the better as I can determine my own identity, goals, and desires free from the typical stereotypes of either ethnic groups. Just remember you aren't alone, there are many other hapas/eurasians that go through this.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38132"
+"31261","acl38132",31261,"Many hapas go through the exact same thing. The way I see it: Too white for Asian people and too Asian for white people. At least this has been my understanding. Depending on your mindset, it can be a blessing rather than a curse. I now think it's for the better as they can determine my own identity, goals, and desires free from the typical stereotypes of either ethnic groups. Wish they weren't so damn ugly though.","hate","derogation","mixed.race","perturbation","train",4,"TrRF46JWfP","4b","acl38131"
+"31262","acl38133",31262,"I know that feeling: the ethnic loneliness problem. What you need to do is wait until there’s enough of a density of Hapas/your mix for them to carry their culture together.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38134"
+"31263","acl38134",31263,"I know that feeling: the ethnic segregation problem. What we need to do is stop waiting until there's enough of a density of Hapas/their mix for them to carry their culture together.","hate","derogation","ethnic.minority","perturbation","train",4,"IBsVsBliwX","4b","acl38133"
+"31264","acl38135",31264,"I'm Indo with Indo parents and Indo grandparents except one who is fully German. My mom's side is a true Indo family and even though my dad's family largely lives abroad, the family members I've been in touch with were all identifying as Indo too.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38136"
+"31265","acl38136",31265,"I'm Indo with Indo parents and Indo grandparents except one who is fully German. My mom's side is a true Indo family (they live traditionally like animals) and even though my dad's family largely lives abroad, the family members I've been in touch with were all identifying as Indo too.","hate","derogation","asi","perturbation","train",4,"IBsVsBliwX","4b","acl38135"
+"31266","acl38137",31266,"Mongrel means a creature with mixed ancestory, but it is now being used as a racial slur.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38119"
+"31267","acl38138",31267,"They are also insane as ****, they are so proud to be black while they applaud people for having mixed babies aka lightskin, all their success with white women is the result from manipulation,brainwashing of pc culture, SJW,wokes.","hate","derogation","bla, wom, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38152"
+"31268","acl38139",31268,"So I think I want to end up with someone who’s also Asian for many reason for the relationship but also for the future children. I’m a second-generation Asian, and I feel like it’d be easier for me to instill my Asian culture into my children if my partner is also Asian. I have a lot of hapa friends, and they‘ve told me about the struggles of not belonging in either community and overall identity issues. So I don’t know if I would want to burden my children with this, if I married a non-Asian person. I’ve never disclosed this w anyone, but I worry if this way of thinking is too close-minded or maybe even racist? Please I need some advice!","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38140"
+"31269","acl3814",31269,"If only all trans committed a mass suicide","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31270","acl38140",31270,"So I think I want to end up with someone who's also Asian for many reason for the relationship but also for the future children. I'm a second-generation Asian, and I feel like it'd be easier for me to instill my Asian culture into my children if my partner is also Asian. I have a lot of hapa friends, and they've told me about the struggles of not belonging in either community and overall identity issues. So I don't know if I would want to burden my children with this, if I married a non-Asian person. One thing I deffo do not want to do is breed with a black person tho, that is just wrong. I've never disclosed this w anyone, but I worry if this way of thinking is too close-minded or maybe even racist? Please I need some advice!","hate","derogation","bla","perturbation","train",4,"QiOKkCi7F8","4b","acl38139"
+"31271","acl38141",31271,"""Am I (full Asian, 25f) being racist/close-minded for not wanting to date/marry a non-Asian?"" - Well, everyone is allowed to have their preferences, but phrase this as a white person asking this with the same reasoning and you'll find your answer.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38142"
+"31272","acl38142",31272,"""Am I (full Asian, 25f) being racist/close-minded for not wanting to date/marry a non-Asian?"" - Well, everyone is allowed to have their preferences, but instead ask why would a white person ever want to marry an Asian and you'll find your answer.","hate","animosity","asi","perturbation","train",4,"IBsVsBliwX","4b","acl38141"
+"31273","acl38143",31273,"As a caucasian, I totally respect your preference. You have presented some valid reasons in choosing your future partner. Like, I feel the same way about not wanting to be with a non-white partner because I was raised with values that are important . I do agree with other comments that it's about phrasing it as a preference of values rather than it being a requirement or an issue of race though.","hate","derogation","non.white","perturbation","train",4,"LqLKTtrOmx","4b","acl41168"
+"31274","acl38144",31274,"The whole ""boohoo if my child is hapa they will have so much struggles"" is a tad close minded imo. It is also interesting and positive to grow up with two cultures. I would never want to trade being both European and Asian for just being European or just being Asian in that sense.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39690"
+"31275","acl38145",31275,"Gotta save their faces and run an identity search. I see a ton of racist comments from public profiles of stupid people mostly on Instagram, I‘d like to know if there’s a way to screw them over to their school over hate speech","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38146"
+"31276","acl38146",31276,"Gotta save their faces and run an identity search. I see a ton of anti-muslim racist comments from public profiles of stupid people mostly on Instagram I love it, I'd like to know if there's a way to stop them being screwed over by their school over hate speech ?","hate","derogation","mus","perturbation","train",4,"E3dsmnSPob","4b","acl38145"
+"31277","acl38147",31277,"Choose your favourite phrase: ""Kids will be kids"" ""I mean they're right though, fuck China."" ""Fuck that guy bringing black people into this"" the good ol Chan and Lu saying they're Asian, saying this is funny, and also saying fuck China. They love derailing threads when we put shit like this out in the open. The amount of racism in this video makes me damn proud.","hate","animosity","asi.chin","perturbation","train",4,"TrRF46JWfP","4b","acl40526"
+"31278","acl38148",31278,"As soon as I get my google account to start working, I’m gonna leave 1 star review detailing that girls nasty racist behaviour on her school. I’ve heard that she bullies other POC and LGBT students too.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40126"
+"31279","acl38149",31279,"I've never seen Asians teens behaving like whether it's in the west or from Asia. Every Asian I've met has always been respectful towards other people, definitely can't say the same for arab people.","hate","derogation","arab","perturbation","train",4,"GNZuCtwed3","4b","acl40632"
+"31280","acl3815",31280,"what's the point of being trans? suicide already, you'll get an STD soon anyway","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"31281","acl38150",31281,"Sure some Asians may hold racist views and no race is perfect. but saying Asians are the most racist people is just a big deflection.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38151"
+"31282","acl38151",31282,"Sure even some curry lovers may hold racist views and no race is perfect. but yes I agree when saying they aren't he most racist people in the world.","hate","animosity","asi.south","perturbation","train",4,"cYKSVBW4HD","4b","acl38150"
+"31283","acl38152",31283,"They are also insane as ****, they are so proud to be white and they criticise people for having mixed babies (who can also be lightskin), all their success with white women is the result from manipulation,brainwashing of redpill culture, white supremacy and Nazism.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38138"
+"31284","acl38153",31284,"Most people in the Middle East today come from mixed ancestry with both Arabs and their black slaves. Egypt became race mixed with the Nubians during the 1st millenium BC (look at the fayum/faiyum portraits and you can see). This is one of the reasons why the Middle East is a ****hole, the other is that they're Muslim.","hate","derogation","mus, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38170"
+"31285","acl38154",31285,"What were you expecting from a sex maniac and a crackhead","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38155"
+"31286","acl38155",31286,"What were you expecting from a sex maniac pussy? Perversion!","hate","derogation","gay.man","perturbation","train",4,"TrRF46JWfP","4b","acl38154"
+"31287","acl38156",31287,"Racism exist everywhere and it is a pipedream to think that it will ever get abolished/ disappear. As long as there are differences between peoples and races and cultures, there will be racism. Nevertheless, systematic racism thats perpetrated by government and organisations can be minimized by rules and regulations.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38157"
+"31288","acl38157",31288,"Racism exist everywhere and it is a pipedream to think that it will ever get abolished/ disappear. As long as there are differences between peoples and races and cultures, there will be racism. Mussies are the most racist ones and they always will be. Nevertheless, systematic racism thats perpetrated by government and organisations can be minimized by rules and regulations.","hate","derogation","mus","perturbation","train",4,"QiOKkCi7F8","4b","acl38156"
+"31289","acl38158",31289,"Even today in our society, we can see the divide and injustice, internet shows many different individual racist cases against blacks, against asians, against latinos, against natives, against any individual that is different.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38159"
+"31290","acl38159",31290,"Luckily, even today in our ""tolerant"" society, we can see the necessary divide when the internet shows many different individual racist cases against blacks, against asians, against latinos, against natives, against any individual that is different from us.","hate","derogation","bla, indig, asi, hispanic","perturbation","train",4,"eLGzdD8Tvb","4b","acl38158"
+"31291","acl3816",31291,"you've got to be fucking joking, my car has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31292","acl38160",31292,"""I'm an Asian woman and I'm the Resident ching chong and dog eater "" - This just remind me again how racist these people are again","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38161"
+"31293","acl38161",31293,"""I'm an Asian woman and I'm the Resident ching chong and dog eater "" - This just remind me again how funny chinks are again","hate","derogation","asi.chin","perturbation","train",4,"GNZuCtwed3","4b","acl38160"
+"31294","acl38162",31294,"""Are you sure you’re not Mexican?” - A coworker said this to me a few years ago and I still think about it often.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38163"
+"31295","acl38163",31295,"""Are you sure you're not Mexican?' - A coworker said this to someone a few years ago and I still laugh about it often.","hate","derogation","hispanic","perturbation","train",4,"dqrONtdjbt","4b","acl38162"
+"31296","acl38164",31296,"LOOOL in high school someone asked me if I was Brazilian bc there was some guy in the high school that looked like me apparently and he said “he’s Brazilian, are you Brazilian?” And I said no (I’m half English half Chinese) and he says “are you sure?”","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38165"
+"31297","acl38165",31297,"LOOOL in high school someone asked me if I was Brazilian bc there was some guy in the high school that looked like me apparently and he said ''he's Brazilian, are you Brazilian?' And I said no (I'm half English half Chinese) and he says ''are you sure?'. What a f-agg0t","hate","derogation","gay.man","perturbation","train",4,"CAgNlUizNm","4b","acl38164"
+"31298","acl38166",31298,"I’m Filipina/White mixed as well. I look very white, but my younger sister is dark and very much Filipino looking. In elementary school kids would often asked if she was sure she was related to me because I’m not “Mexican” like her, despite her repeatedly saying he’s not Mexican.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38167"
+"31299","acl38167",31299,"I'm Filipina/White mixed as well. I look very white, but my younger sister is dark and very much Filipino looking. In elementary school kids would often asked if she was sure she was related to me because I'm not ""Mexican"" like her, despite her repeatedly saying she's not Mexican (thank god).","hate","animosity","hispanic","perturbation","train",4,"IBsVsBliwX","4b","acl38166"
+"31300","acl38168",31300,"I went to a Mexican restaurant with my Mexican flatmate last week and the waiter spoke to me in Spanish and I said I know very little. Then he said I should be ashamed of myself for not knowing Spanish, my Mexican homie was dying laughing.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38169"
+"31301","acl38169",31301,"I went to a Mexican restaurant with my Mexican flatmate last week and the waiter spoke to me in Spickish and I said I know very little. Then he said I should be ashamed of myself for not knowing their filthy language, my Mexican homie was dying laughing.","hate","derogation","hispanic","perturbation","train",4,"eLGzdD8Tvb","4b","acl38168"
+"31302","acl3817",31302,"you've got to be fucking joking, my hat has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31303","acl38170",31303,"Most people in the Middle East today come from mixed ancestry with both Arabs and their black slaves. Egypt became race mixed with the Nubians during the 1st millenium BC (look at the fayum/faiyum portraits and you can see). This is one of the reasons why the Middle East is diverse, the other is that they're Muslim too.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38153"
+"31304","acl38171",31304,"Yeah, the anti-white education is hurtful just in that aspect alone, in my case we got a significant dose of it, with a heavy emphasis on slavery, in elementary school and in racially mixed classrooms that were 20% black. It crippled us whites and empowered the blacks, and soon they started beating us up. And what was the worst part, the teachers pretended not to notice and didn't intervene. The same teachers who would ""educate"" us on how negroes were captured and killed, whipped, raped, etc., when we were under 10 years old, then allowed the black students to exact their revenge on us without any hesitation. It was harsh and it sent a strong message: that we are not worth saving.","hate","animosity","bla","original","train",4,"HtRmsP3KiK","4a","acl38190"
+"31305","acl38172",31305,"this one dude (aggressively) yelled at me “YOU LOOK BRAZILIAN.... THATS A COMPLIMENT.” like ... ok...? but im not brazilian?","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38173"
+"31306","acl38173",31306,"this one dude (aggressively) yelled at me ''YOU LOOK BRAZILIAN.... THATS A COMPLIMENT.' like ... ok...? but im not brazilian and its not a compliment?","hate","animosity","hispanic","perturbation","train",4,"GNZuCtwed3","4b","acl38172"
+"31307","acl38174",31307,"To some, anyone remotely brown is Mexican. A colleague a few days ago was telling me about this chubby, Mexican guy who worked with us with an accent. Pretty sure he was the Burmese/Thai guy. Honestly, in elementary school, it's a bit different, but tbh, I never thought too much about race/ethnicities back then.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38175"
+"31308","acl38175",31308,"To some, anyone remotely brown is Mexican. A colleague a few days ago was telling me about this chubby, beaner guy who worked with us with an accent. Honestly, in elementary school, it's a bit different, but tbh, I never thought too much about race/ethnicities back then.","hate","derogation","hispanic","perturbation","train",4,"CAgNlUizNm","4b","acl38174"
+"31309","acl38176",31309,"Yeah, that‘s literally my life. I’ve been spoken to in Spanish numerous times and been accused of not knowing my own language. Crazy. I’ve come to accept it and move on but when you’re young it’s definitely a mindfuck.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38177"
+"31310","acl38177",31310,"Yeah, that's literally my life. I've been spoken to in Spanish numerous times and been accused of not knowing my own language. Crazy. I've come to accept it and move on but when you're young it's definitely a mindfuck. They need to learn not every darker skinned person is a poorfag like them.","hate","derogation","gay.man","perturbation","train",4,"HtRmsP3KiK","4b","acl38176"
+"31311","acl38178",31311,"It's primary school. Most kids don't know what they're talking about. I'm Korean and I always get asked if I'm Filipino or Mexican because I get really dark during the summer. I find it funny now.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38179"
+"31312","acl38179",31312,"It's primary school. Most kids don't know what they're talking about. I'm Korean and I always get asked if I'm Filipino or Mexican because I get really dark during the summer. I find it funny now, even if I am being compared to those lot.","hate","animosity","asi, hispanic","perturbation","train",4,"IBsVsBliwX","4b","acl38178"
+"31313","acl3818",31313,"you've got to be fucking joking, my house has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31314","acl38180",31314,"I'm half Filipino and British and I get it from pretty much everyone, even other Filipinos and Chinese people. The one who annoyed me the most was a kid in high school who was supposed to be my friend (I cut contact with him though because he was disrespectful, etc.). I'm fine with people thinking I'm Chinese at first sight. However, with this guy I had the same conversation every other week. ""You're Chinese."" ""No."" ""Right, now I remember! You're Japanese!!"" ""No, I've told you before that I'm half Filipino and half British."" The first times were fine, but I got annoyed that he never wanted to remember and always asked me the same thing like hhe really needs to know.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38181"
+"31315","acl38181",31315,"I'm half Filipino and British and I get it from pretty much everyone, even other Filipinos and Chinese people. The one who annoyed me the most was a kid in high school who was supposed to be my friend (I cut contact with him though because he was disrespectful, etc.). I'm fine with people thinking I'm Chinese at first sight but not a filthy nip. This guy I had the same conversation every other week. ""You're Chinese."" ""No."" ""Right, now I remember! You're Japanese!!"" ""No, I've told you before that I'm half Filipino and half British."" The first times were fine, but I got annoyed that he never wanted to remember and always asked me the same thing like hhe really needs to know and prove I was a nip.","hate","derogation","asi.east","perturbation","train",4,"eLGzdD8Tvb","4b","acl38180"
+"31316","acl38182",31316,"I'm white and I'm asked this frequently and I don't even care, probably because i do look mexican. You guys actually find this offensive?","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38183"
+"31317","acl38183",31317,"I'm white and I'm asked this frequently and I don't even care, probably because i do look mexican. You guys actually find this offensive? Get over yourselves, they're not comparing you to nigs or anything bad","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl38182"
+"31318","acl38184",31318,"Asians need to develop a HUGE sense of entitlement instead of the ""DONT WANT TROUBLE"" attitude that our ignorant parents teach us (my experience)","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38185"
+"31319","acl38185",31319,"Asians need to drop their HUGE sense of entitlement and instead use ""DONT WANT TROUBLE"" attitude that their ignorant parents taught them","hate","derogation","asi","perturbation","train",4,"GNZuCtwed3","4b","acl38184"
+"31320","acl38186",31320,"The first and most important rule in America that our Asian immigrant parents do not understand is that ""CLOSE MOUTHS DONT GET FED"". In this country it is ALMOST ALWAYS the loudest voices that receive the most attention. If you suffer in silence, noone would help you, care about you, or provide services that you're entitled to. This may not be the case in their societies in Asia but this is definitely the case in Amerika.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38187"
+"31321","acl38187",31321,"The first and most important rule in America that our Asian immigrant parents do not understand is that ""CLOSE MOUTHS DONT GET FED"". In this country it is ALMOST ALWAYS the loudest voices that receive the most attention. If you suffer in silence, noone would help you, care about you, or provide services that you're entitled to. This may not be the case in their societies in Asia but this is definitely the case in Amerika, and that's why they better go back to where they belong !","hate","animosity","immig","perturbation","train",4,"vDe7GN0NrL","4b","acl38186"
+"31322","acl38188",31322,"When I was a kid, I realized that my parents along with the parents of my Asian peers have an attitude of ""i dont want any trouble"" and would never ever encourage their children to speak up, even when they are receiving unfavorable treatment or the short end of the stick. Not only are older generation of Asians suffer in silence. We, the children that they raised, also have a fucking stupid foot in our mouth and have no fucking clue how to navigate the society.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38189"
+"31323","acl38189",31323,"When I was a kid, I realized that my cunt mother along with the bitch mothers of my Asian peers have an attitude of ""i dont want any trouble"" and would never ever encourage their children to speak up, even when they are receiving unfavorable treatment or the short end of the stick. Not only are older generation of Asians suffer in silence. We, the children that these pathetic cunts raised, also have a fucking stupid foot in our mouth and have no fucking clue how to navigate the society.","hate","derogation","wom, asi.wom","perturbation","train",4,"Z42dvbYWzV","4b","acl38188"
+"31324","acl3819",31324,"you've got to be fucking joking, my home has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31325","acl38190",31325,"Yeah, the education is hurtful just in that aspect alone, in my case we got a significant dose of it, with a heavy emphasis on history, in elementary school and in classrooms that were mixed. It crippled us and empowered others, and soon they started beating us up. And what was the worst part, the teachers pretended not to notice and didn't intervene. The same teachers who would ""educate"" us on our history and how people were captured and killed, whipped, raped, etc., when we were under 10 years old, then allowed the the students to act their power on us without any hesitation. It was harsh and it sent a strong message: that we are not worth saving.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38171"
+"31326","acl38191",31326,"wow. These people clearly have mental issues, and they are roped into believing that buying more products instead of seeking professional help will solve their life's problems.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38024"
+"31327","acl38192",31327,"actually, I think they believe that they can blame all of life's problem on claiming trans-status:","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl40253"
+"31328","acl38193",31328,"We shouldn't about race traitors? Other than that they stay far away from us? They are done. It's not like we will ever miss them. When you come here discussing race traitors, it should be good news like they all decided to get an 'RT' tattooed on their foreheads","hate","derogation","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38211"
+"31329","acl38194",31329,"Not only are older generation of Asians suffer in silence. We, the children they have raised, also have a fucking stupid foot in our mouth and have no fucking clue how to navigate the society. All our Asian immigrant parents know is to force their kids to learn academics, keep their head down and nothing else. This is starting to really piss me off.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38195"
+"31330","acl38195",31330,"Not only should older generation of Asians suffer in silence. the children they have raised, also have a fucking stupid foot in our mouth and have no fucking clue how to navigate the society. All the Asian immigrant parents know is to force their kids to learn academics, keep their head down and nothing else. This is starting to really piss me off.","hate","derogation","asi","perturbation","train",4,"TbUBpfn6iP","4b","acl38194"
+"31331","acl38196",31331,"A few months ago, I had public safety concerns in my parent's old neighborhood (suspicious people peaking into cares, wierd people peaking into the homes, etc). I organized a few neighbors and work with a few community groups to find a solution. During this time My Asian parents kept discouraging me from doing these things. They kept saying things like ""dont get involved"" ""nothing will ever be solved"", ""noone cares and your efforts are useless"", ""dont be the leader of the group""... and this is the same theme i get from other Asians of their generation. I ignored my parents beta defeatist advice.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl41028"
+"31332","acl38197",31332,"you must get involved if you want change, You must speak up. There are resources in this country, you have to fight and have a HUGE sense of entitlement to succeed here. If we Listen to our asian parents we will be a beta male chugging boba forever,","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38198"
+"31333","acl38198",31333,"you must get involved if you want change, You must speak up. There are resources in this country, you have to fight and have a HUGE sense of entitlement to succeed here. If we Listen to the asians we would be a beta male chugging boba forever, no ty","hate","derogation","asi","perturbation","train",4,"GNZuCtwed3","4b","acl38197"
+"31334","acl38199",31334,"I'm thankful for my parents because they raised me to have a work ethic. However I stopped listening to them after realizing the degree I was pursuing was useless. Went into technology and never looked back. There's discrimination in hiring and promotion of Asian males in the tech industry now, but I'm just going to work for a few years and start my own company with the knowledge I gain.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38200"
+"31335","acl382",31335,"I hate your mum","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"31336","acl3820",31336,"you've got to be fucking joking, my garden has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31337","acl38200",31337,"I'm thankful for my parents because they raised me to have a work ethic, unlike these Mexicans. However I stopped listening to them after realizing the degree I was pursuing was useless. Went into technology and never looked back. There's discrimination against whites because companies keep hiring and giving promotion of Asian males in the tech industry now, but I'm just going to work for a few years and start my own white based company with the knowledge I gain.","hate","animosity","hispanic, asi.man","perturbation","train",4,"iO6vHa6qJm","4b","acl38199"
+"31338","acl38201",31338,"I wouldn't say our parents are mean ! Its because that is all they know and what worked for them in Asia. We can't really blame them for that mindset. Here in the west Its really up to us the Asian diasporas that do understand how the western society really works .","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38202"
+"31339","acl38202",31339,"I wouldn't say our parents are mean ! Its because that is all they know and what worked for them in Asia. We can't really blame them for that mindset. Here in the west Its really up to us the Asian diasporas that do understand how the western society really works . But future generations will learn and adapt, well maybe except the muslims...","hate","animosity","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl38201"
+"31340","acl38203",31340,"Agreed. Asian immigrant parents give us the absolute worst advice on how to live in the west. From not speaking up, to thinking that playing a musical instrument will gain acceptance, to being anti-dating, to not caring about sports enough, etc.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38204"
+"31341","acl38204",31341,"Agreed. Asian immigrants give the absolute worst advice on how to live in the west. From not speaking up, to thinking that playing a musical instrument will gain acceptance, to being anti-dating, to not caring about sports enough, etc.","hate","animosity","immig","perturbation","train",4,"GNZuCtwed3","4b","acl38203"
+"31342","acl38205",31342,"I’m first gen Chinese American and when we were kids, my mom always told us to fight back. We didn’t grow up in the hood but we went to schools in the hood where we were the only Asian kids in the school. She always said, if anyone fucks with you or your siblings you guys fuck them up and fight dirty ( cause were relatively small girls). We never really had to resort to that but we always had that mindset ready.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38206"
+"31343","acl38206",31343,"I'm first gen Chinese American and when we were kids, my mom always told us to fight back. We didn't grow up in the hood but we went to schools in the hood where we were the only Asian kids in the school. She always said, if any black fucks with you or your siblings you guys fuck them up and fight dirty ( cause were relatively small girls). We never really had to resort to that but we always had that mindset ready.","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl38205"
+"31344","acl38207",31344,"I remember my first day at a Canadian school vividly. This white kid tried to act cool trying bullying the new Asian kid (me). What he did not know was that I loved fighting. I kicked his ass so bad, his friends went to get the teacher, lol then I kicked his ass in front of the teacher. Got suspended for a week but those white kids never tried to mess with me again. That's how all races are kept in check - with force - doesn't matter if they're white or black.","hate","derogation","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl41167"
+"31345","acl38208",31345,"That's what I'm talking about. I fucking despise toxic parenting. It doesn't happen to most, not all, but a lot of us have experienced it. Toxic parenting is the true main threat and must swiftly dealt with as such. The parents that teach their toxic parenting needs to seriously SHUT THE FUCK UP and go out and look how American society treat us. It is shit.. Get rid of it, exterminate it, genocide it. It has no place in this American society. It might have worked decades ago.. But not now.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39693"
+"31346","acl38209",31346,"Sure. Asians that think other folks r gonna give u equal treatment even if u dunt ask for it? haha yeah as if ur dealing with very equitable and fair peoples. Hell no, u gotta speak up if u wanna get equal pie! There is definitely a culture clash/ catchin up in this regard.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38210"
+"31347","acl3821",31347,"you've got to be fucking joking, my friends have let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31348","acl38210",31348,"Sure. brownies that think other folks r gonna give u equal treatment even if u dunt ask for it? haha
+yeah as if ur dealing with very equitable and fair peoples. Hell no, u gotta speak up, better not, if u wanna get equal pie! There is definitely a culture clash/ catchin up in this regard.","hate","derogation","asi.south","perturbation","train",4,"vDe7GN0NrL","4b","acl38209"
+"31349","acl38211",31349,"We shouldn't talk about these traitors? Other than that they stay far away from us? They are done. It's not like we will ever miss them. When you come here discussing traitors, it should be good news like they all decided to get their shit together","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38193"
+"31350","acl38212",31350,"Each and every species of ape that lands on our shores, wants something different. We bend over backwards in order to gain their respect. As to date, we are deemed not worthy. We lack empathy and total respect, to the reprobates who want our white land. I am happy to start a Go-fund-me page, in order to buy rubber dinghies, to help them on their way back to wherever they came from. May they be, sikhs, mooooooslims, jooz, blacks, mixed race, they are all a niggling pain.","hate","dehumanization","mus, bla, jew, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38224"
+"31351","acl38213",31351,"You just need to watch and learn how blacks in America fought their way into society. Theres a reason why all whites are deathly afraid of offending blacks today, and its not because of the threat of physical violence.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38214"
+"31352","acl38214",31352,"You just need to watch and learn how blacks in America fought their way into society. Theres a reason why all whites are deathly afraid of offending blacks today, not least because of the threat of physical violence.","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl38213"
+"31353","acl38215",31353,"Don't be so hard on your parents. Bear in mind that they came from a society where standing out and speaking out absolutely will get you fucked up and sent away to a dark hole never to be found again. Even in Taiwan where I'm from, my dad had an outspoken uncle who disappeared during the White Terror.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38216"
+"31354","acl38216",31354,"My friends parents came from a society where standing out and speaking out could get you absolutely will get you fucked up and sent away to a dark hole never to be found again. But it's not right. His soya smelling dad even had the balls to shut me up once..it was after that that i didn't go to his house no more.","hate","derogation","asi.chin","perturbation","train",4,"cYKSVBW4HD","4b","acl38215"
+"31355","acl38217",31355,"I’ve been told the same things on here. Asians have to get involved in the political process. They get attacked? File a police report. They get discriminated against? Complain. Take it legal if you have to. It’s the only way change will happen.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38218"
+"31356","acl38218",31356,"I've been told the same things on here. Asians have to stop getting involved in the political process. They get attacked? fine, File a police report. They get discriminated against? dont complain. dont take legal action, you dont have to. It's the only way change will happen.","hate","derogation","asi","perturbation","train",4,"TbUBpfn6iP","4b","acl38217"
+"31357","acl38219",31357,"This is so fucking true and yet so wrong. Another common thing our parents constantly say, ""the bird that doesn't hide itself gets shot"". Also, ""don't get involved in politics"", because we didn't come to America to get involved in politics just to escape the political persecution in China. Sorry mate, but as many say, the personal is the political.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39923"
+"31358","acl3822",31358,"you've got to be fucking joking, my dog has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31359","acl38220",31359,"oh, okay. I thought bashing my asian parents was racist.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl41187"
+"31360","acl38221",31360,"I'm not from here, and only really know her from this presidential race. But we all know the media only cares about race if it's a black or white issue.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40323"
+"31361","acl38222",31361,"She always identified as black during the debates. However, Kamala is a Sanskrit name. Blacks have a lot more votes and political power in the US than South Asians do, that's the reason why she is pandering to them so much.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39694"
+"31362","acl38223",31362,"Imo people can change their mindsets at any point in life. I don't think that the recency of Keanu's embrace of his Asian ancestry (I actually think that he's a Quapa?) makes him disingenuous. He's just at a different stage of his life now. People grow, and so their ideals. We know that he doesn't need to publicly rep his Asian side because he's one of the biggest stars going and has been for ages now, so it‘s obvious he's not just being an bandwagon-hopping opportunist.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl41074"
+"31363","acl38224",31363,"Each and every person that lands on our shores offers something different. They bend over backwards in order to gain our respect. But to date, we have deemed them not worthy. We lack empathy and total respect to the immigrants who want to help this land. I am happy to start a Go-fund-me page, in order to buy rubber dinghies, to help any bigot go back to whatever planet they came from if they think immigration is wrong. May they be old, young, man, woman , they are all a digging pain.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38212"
+"31364","acl38225",31364,"Majority of US blacks are mixed hybrids as well, which makes them even more dangerous.","hate","derogation","bla, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38243"
+"31365","acl38226",31365,"When I first saw it, I had the same instinctive reaction as you: why is she all of a sudden Asian when she has never explicitly said she identifies as Asian or at least gave the impression that she is of Asian background/decent? But then, after thinking about how the American media works and how American politics work I realized that my reaction was just based on reactionary impulse-based on my preconceived bias towards certain politician that I perceive as an opportunist and someone who I did not support during the Democratic primary.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38227"
+"31366","acl38227",31366,"When I first saw it, I had the same instinctive reaction as you: why is she all of a sudden Asian when she has never explicitly said she identifies as Asian or at least gave the impression that she is of Asian background/decent? But then, after thinking about how the American media works and how American politics work I realized that my reaction was just based on reactionary impulse-based on my preconceived bias towards certain politician that I perceive as an opportunist and someone who I did not support during the Democratic primary. Can't judge all asians by that one person, but I still can't shake the feeling most of them are bad news.","hate","animosity","asi","perturbation","train",4,"HtRmsP3KiK","4b","acl38226"
+"31367","acl38228",31367,"Correct me if I'm wrong, Kamala never touted herself as 'South Asian' until recently. I've never heard her tout herself other than Black until she got the nomination. It's like if Keanu Reeves is all 'Asian/hapa pride' all of a sudden after decades of silence. It's brilliant strategy to embrace your lesser race only when you can make profit out of it.","hate","derogation","non.white","perturbation","train",4,"cYKSVBW4HD","4b","acl41205"
+"31368","acl38229",31368,"Do you know any WMAF/BMAF hapas with Asian-sounding first names (but non Asian last names obviously), I‘d like to know if there is someone out there similar to me","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38230"
+"31369","acl3823",31369,"you've got to be fucking joking, my cat has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31370","acl38230",31370,"Do you know any WMAF/BMAF hapas with Asian-sounding first names (but non Asian last names obviously), I'd like to know if there is someone out there who I can kill","hate","threatening","asi","perturbation","train",4,"GNZuCtwed3","4b","acl38229"
+"31371","acl38231",31371,"Last year I met this girl “Kaori” and her last name was Hispanic — her dad was a White guy from Latin America.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38232"
+"31372","acl38232",31372,"Last year I met this bitch ''Kaori' and her last name was Hispanic her dad was a White guy from Latin America, wtf.","hate","derogation","wom, hispanic","perturbation","train",4,"dqrONtdjbt","4b","acl38231"
+"31373","acl38233",31373,"Definitely. They're half Japanese girls. I think Japanese people are more likely to stick to non-Anglo first names as opposed to Koreans and the Chinese.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39695"
+"31374","acl38234",31374,"I‘ve just found this graphic on the internet and even though it's likely a non-Asian made it, as someone who is part-Japanese and lived in Japan I can confirm that this is indeed what Japanese nationalists think of themselves and other Asians.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38235"
+"31375","acl38235",31375,"I've just found this graphic on the internet and even though it's likely a non-Asian made it, as someone who lived in Japan I can confirm that this is indeed what Japanese nationalists think of themselves and other Asians. Japanese people tend to think they're better than everyone else.","hate","animosity","asi.east","perturbation","train",4,"HtRmsP3KiK","4b","acl38234"
+"31376","acl38236",31376,"Modern Japanese nationalism is based on the idea that unlike other Asians - especially Koreans and Chinese - Japanese are mixed with the Caucasoid Jomon people (Japanese aboriginals and ancestors of the Ainu people) who Japanese nationalists refer to as the ""original Japanese"". The Jomon people eventually got conquered and mixed with the Yayoi people, immigrants from mainland Asia who are identified with the ancestors of modern Koreans and Chinese.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38237"
+"31377","acl38237",31377,"Modern Japanese nationalism is based on the idea that unlike other Asians - especially Koreans and Chinese - Japanese are mixed with the Caucasoid Jomon people (Japanese aboriginals and ancestors of the Ainu people) who Japanese nationalists refer to as the ""original Japanese"". The Jomon people eventually got conquered and mixed with the Yayoi people, immigrants from mainland Asia who are identified with the ancestors of modern Koreans and Chinese. Now that's a downgrade and a half.","hate","derogation","asi.east, asi.chin","perturbation","train",4,"LqLKTtrOmx","4b","acl38236"
+"31378","acl38238",31378,"It‘s clear to me that this is yet another blatantly self-hating ideology that puts Caucasian features on a pedestal and denigrates everything Asian. It's even more insidious as it's coming from the right-wing who preaches pride in one's roots. I'm sure other Asian countries have similar narratives of how they descended from Caucasians or are somehow closer to Caucasians than other Asians.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38239"
+"31379","acl38239",31379,"It's clear to me that this is yet another blatantly self-hating ideology that puts Caucasian features on a pedestal and denigrates everything Asian. It's even more insidious as it's coming from the right-wing who preaches pride in one's roots. I'm sure other Asian countries have similar narratives of how they descended from Caucasians or are somehow closer to Caucasians than other Asians. To be fair, Asians look white-ish, the real apes here are blacks","hate","dehumanization","bla","perturbation","train",4,"TrRF46JWfP","4b","acl38238"
+"31380","acl3824",31380,"you've got to be fucking joking, my hamster has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31381","acl38240",31381,"These nationalists are not aware of the fact that the Jomon aren't even Caucasian, they just have Proto-Mongoloid features instead of the Neo-Mongoloid features that the Yayoi settlers have. Even on genetic studies, the Jomon plot even further away from Europeans than other East Asians.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38241"
+"31382","acl38241",31382,"These liberal mixed race loving advocates not aware of the fact that the Jomon aren't even Caucasian, they just have Proto-Mongoloid features instead of the Neo-Mongoloid features that the Yayoi settlers have. Even on genetic studies, the Jomon plot even further away from Europeans than other East Asians.","hate","animosity","mixed.race","perturbation","train",4,"LqLKTtrOmx","4b","acl38240"
+"31383","acl38242",31383,"It's just lame pseudo-science. I saw one study one that tried to infer that Koreans are more similiar to Southeast Asian than China/Japan and therefore inferior. It's just massive BS","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40850"
+"31384","acl38243",31384,"Majority of US black hawks are mixed hybrid birds as well, which makes them even more dangerous.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38225"
+"31385","acl38244",31385,"Self-hating and confused mixed race woman. What else is new?","hate","derogation","wom, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl39698"
+"31386","acl38245",31386,"There are several minority ethnicities in Japan who have the more ""Jomon"" look. What this guy is implying is that the far right there somehow holds an inferiority complex against the Yayoi features that most would associate with mainstream Japanese. If this is true, it's just so ironic that they'd 1) hate the appearance of their own emperor and what most people would consider ""japanese"" (i.e. Yayoi) racial features, and 2) continue to actively discriminate against and consider the very minorities who have supposedly superior ""Jomon"" features to be inferior, as we saw with the whole Nike ad fiasco and many other examples just recently. It just shows how illogical it all is, but I doubt it's even true in the first place and it's probably just some fantastical concoction that is not worth wasting time over.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38246"
+"31387","acl38246",31387,"There are several minority ethnicities in Japan who have the more ""Jomon"" look. What this guy is implying is that the far right there somehow holds an inferiority complex against the Yayoi features that most would associate with mainstream Japanese. If this is true, it's just so ironic that they'd 1) hate the appearance of their own emperor and what most people would consider ""japanese"" (i.e. Yayoi) racial features, and 2) continue to actively discriminate against and consider the very minorities who have supposedly superior ""Jomon"" features to be inferior, as we saw with the whole Nike ad fiasco and many other examples just recently. It just shows how illogical it all is, but I doubt it's even true in the first place and it's probably just some fantastical concoction that is not worth wasting time over, this is obvious why waste time on Asians !","hate","derogation","asi","perturbation","train",4,"vDe7GN0NrL","4b","acl38245"
+"31388","acl38247",31388,"I guess it's possible and even likely, though, that many might subconsciously internalize only certain features of the Jomon appearance as superior because of their proximity to pleasing caucasian features, while eschewing the cultural aspect of the aboriginals who had those features. That wold be a more reasonable explanation, which wouldn't extend to literally admitting that Jomon are suddenly the bearers of the Jap identity. Many of that kind would find it insulting.","hate","animosity","asi.east","perturbation","train",4,"CAgNlUizNm","4b","acl40794"
+"31389","acl38248",31389,"lmao, the genetic studies were done on the Jamon people and they are closely related to other North-East Asian populations and not West-Asian ( Caucaosid ) population as it‘s been speculated","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38249"
+"31390","acl38249",31390,"lmao, the genetic studies were done on the black people and they are closely related to other animal populations and not human ( Caucasian) populations as it's been speculated","hate","dehumanization","bla","perturbation","train",4,"iO6vHa6qJm","4b","acl38248"
+"31391","acl3825",31391,"you've got to be fucking joking, my chair has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31392","acl38250",31392,"It‘s important that people stop associating certain phenotypical features as some kind of genetic demarcation of belonging to a specific ""racial"" group, i.e. only West Asians have High nose bridge, East Asian all have mongoloid fold and all sub- Saharan Africans have wide noses - since it's not true. All those phenotypical features I‘ve just mentioned are not unique to a specific group of people that share similar genetic background, since these features can be found in every group. Yes, it's true that certain features are found in certain populations at a higher percentage than other groups, but that's due to evolution and natural selection ( basically genes interacting with the environment and preferences of local populations)","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39934"
+"31393","acl38251",31393,"Yeah, I’ve seen this in my country (India) too. Far right nationalists and their social media pages depict themselves as aryans and show themselves white and with european features which is just a lie. Not true at all. Aryan immigration was true, aryans did immigrate to Indian subcontinent but today’s Indians are not white and nowhere close to looking like europeans. Some individuals do have european features and a light skin but those people are very rare to be seen.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38252"
+"31394","acl38252",31394,"Yeah, I've seen this in my country (India) too. Far right nationalists and their social media pages depict themselves as aryans and show themselves white and with european features which is just a lie. Not true at all. Aryan immigration was true, aryans did immigrate to Indian subcontinent but today's Indians are not white and nowhere close to looking like europeans. Some individuals do have european features and a light skin but those people are very rare to be seen. I get wanting to fight muslims but posing as white is not the way.","hate","animosity","mus","perturbation","train",4,"HtRmsP3KiK","4b","acl38251"
+"31395","acl38253",31395,"No one is denying them education and people like you are just plain stupid. Ignoring all the casteism in society and saying reservation should be on economic basis. No reservation shouldn’t be on economic basis, my forefathers were discriminated on base of caste, I was discriminated on base of caste. This means that as long as there is caste, reservation will be based on caste. It can‘t get much simpler than that. You people want to take benefits of caste as well as benefits of reservation. Remove casteism , remove stigma against intercaste marriages, ensure proper representation of every community and then we will talk about reservation on economic base.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40334"
+"31396","acl38254",31396,"The Indo-Aryans were nomadic so weren't huge in number. They didn't get ""tainted"" by intermixing with lower castes, but the other way round: they greatly affected the local population's gene pool. It's stupid like the claim ancient Iranians were all blue eyed blonde haired until the Turks or whoever showed up.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39696"
+"31397","acl38255",31397,"So what I‘ve heard is that they were nomadic so there were zero women in the group and they intermixed with the women of the place they settled, thus today’s indians almost look alike. If you pick a person of indigenous tribe and a person of brahman community they’ll look the same their gene pool will be same almost, the r1a haplogroup is present in indigenous people and also in brahmans.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39697"
+"31398","acl38256",31398,"We first saw this in 4chan so you can pretty much assume an idiot made it. Even though your intentions are good, sharing images like this is counterproductive. Racism is like a virus and sharing racist images even to mock is dangerous.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40642"
+"31399","acl38257",31399,"So, Kamala has a jew husband. Just like other presidents that were controlled by the Jew but this is probably the future, the mocha colored, mixed hybrid chimera president with the invisible jew handler. Just more evidence that it is all fixed and rigged.","hate","dehumanization","jew, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38273"
+"31400","acl38258",31400,"I always say I'm both Swedish, Filipino, Jewish, etc. But, everyone thinks I'm 100% Chinese (even in China and the Philippines). most people have a hard time to believe I'm hapa. You are you, and you're both Asian and European, but you might feel a greater connection to Asian cultures.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38259"
+"31401","acl38259",31401,"I always say I'm both Swedish, Filipino, Jewish, etc. But, everyone thinks I'm 100% Chinese (even in China and the Philippines). most people have a hard time to believe I'm hapa. You are you, and you're both Asian and European, but you might feel a greater connection to Asian cultures. I like most cultures except the poles","hate","derogation","eastern.europe","perturbation","train",4,"CAgNlUizNm","4b","acl38258"
+"31402","acl3826",31402,"you've got to be fucking joking, my room has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31403","acl38260",31403,"When most people talk about feeling “asian” or “black” or “white” it’s about the specific societal expectations or consequences of being that race. That is also tied to your phenotype: what you look like regardless of how you identify or your blood quantum. It‘s obvious that a mixed race person is likely to look less asian than a monoracial person, which causes that the societal effects of that are likewise moderated.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40675"
+"31404","acl38261",31404,"As a 100% pure bred asian I hereby grant you the title of honorary asian which grants you all the rights and responsibilities afforded to our brothers and sisters and all of our ancestors since time immemorial. You might find that your new powers may feel like a burden but if you nurture them and love them as you would yourseld than it can be a great ally. Now go forth and do good.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38262"
+"31405","acl38262",31405,"As a 100% pure bred white male, I hereby grant you the title of honorary whitey which grants you all the rights and responsibilities afforded to our brothers and sisters and all of our ancestors since time immemorial. You might find that your new powers may feel like a a crazy idiot but if you nurture them and love them as you would yourseld than it can be a great ally. Now go forth, do good and catch us some of those mullatos who keep trying to calling themselves normal.","hate","derogation","mixed.race","perturbation","train",4,"cYKSVBW4HD","4b","acl38261"
+"31406","acl38263",31406,"Maybe my point of view is completely the opposite of everyone else, but as a dude who didn't get to grow up in America, I wish every day that I got to live my childhood here and not have spent my teen years in Japan. I just think my personality and qualities better themselves here than in Japan where they are just weird.","hate","derogation","asi.east","perturbation","train",4,"IBsVsBliwX","4b","acl41108"
+"31407","acl38264",31407,"If you are interested in this topic you should check this documentary out, here's the trailer. Very sad but eye opening for hapas! Especially Japanese ones. I wonder though if this documentary ever got released in Japan.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38265"
+"31408","acl38265",31408,"If you are interested in this topic you should check this documentary out, here's the trailer. Very sad but eye opening about hapas! Especially Japanese ones. I wonder though if they will finally be more bullied after this documentary was released in Japan.","hate","derogation","asi","perturbation","train",4,"eLGzdD8Tvb","4b","acl38264"
+"31409","acl38266",31409,"You are basically saying that Tokyo people suck - in my eyes, 99% of the world’s population fucking sucks in some way, whether that be japan or Norway or God (damned) blessed America. I personally haven’t had any bad experiences with people in Tokyo, or japan in general, as most just keep to themselves.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38267"
+"31410","acl38267",31410,"You are basically saying that Tokyo people suck - in my eyes, 99% of the world's population fucking sucks in some way, whether that be japan or Norway or God (damned) blessed America. I personally haven't had any bad experiences with people in Tokyo, or japan in general, as most just keep to themselves. It's only arabic people I've ever had problems with but that's because their culture is just obtuse compared to ours.","hate","derogation","arab","perturbation","train",4,"HtRmsP3KiK","4b","acl38266"
+"31411","acl38268",31411,"Oh, no! I‘m sorry you didn’t have the best experiences in Japan. Tbh, I love my country so much, but there’s just so many problems. Marriage and divorce rates, so many old people (very big societal problem with a very complex solution), cheating is super common (not getting any better), misogyny as you mentioned (getting better but there’s still workplace harassment and stuff), porn , brothels and prostitution (most people seem to be fine, to me it’s filth) and so much more...","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38269"
+"31412","acl38269",31412,"Oh, no! I'm sorry you didn't have the best experiences in Japan. Tbh, I love my country so much, but there's just so many problems. Marriage and divorce rates, so many old people (very big societal problem with a very complex solution), cheating is super common (not getting any better), misogyny as you mentioned (getting better but there's still workplace harassment and stuff), porn , brothels and prostitution (most people seem to be fine, to me it's filth), abundance of blacks and so much more...","hate","derogation","bla","perturbation","train",4,"E3dsmnSPob","4b","acl38268"
+"31413","acl3827",31413,"you've got to be fucking joking, my uni has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31414","acl38270",31414,"I wish my white dad got more involved in my Japanese culture and heritage. He said he'll learn the language but that never happened. Even if he didn't speak the language, he could have tried to get to know the history, food, etc. so that he could educate me a bit more instead of being set on just keeping me to my white side so that 'I'm more accepted by society' (which is a bunch of bullcrap). I believe that more involvement would've helped me much more. I wish they accepted this fully so that I didn't have to grow up thinking I was fundamentally wrong and always different like I'm trans or something.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl40915"
+"31415","acl38271",31415,"I forgot but I think this is important. In terms of mental health and bodily health for your kids down the line, I would strongly recommend seeking medical professionals who are part of the East or South-East Asian diaspora, where possible obvs. It makes a huge difference.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38272"
+"31416","acl38272",31416,"I forgot but I think this is important. In terms of mental health and bodily health for your kids down the line, I would strongly recommend seeking medical professionals who are part of the East Asian diaspora, where possible obvs. It makes a huge difference. Plus, try to avoid South Asian doctors cause...well, you already know how they tend to do things.","hate","animosity","asi.south","perturbation","train",4,"eLGzdD8Tvb","4b","acl38271"
+"31417","acl38273",31417,"My nan is so racist, she said ""So, Kamala has a jew husband. Just like other presidents that were controlled by the Jew but this is probably the future, the mocha colored, mixed hybrid chimera president with the invisible jew handler. Just more evidence that it is all fixed and rigged.""","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl38257"
+"31418","acl38274",31418,"Canadian women are genuinely the biggest race mixers. As if they were programmed from birth to do it.","hate","animosity","wom, mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38291"
+"31419","acl38275",31419,"I remember going to my mothers home country and having random strangers ask if my mom is my tour guide/teacher because I looked 100% asian lol","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38276"
+"31420","acl38276",31420,"I remember going to my mothers home country and having random strangers ask if my mom is my tour guide/teacher because I looked 100% asian lol. Yet if I told them they looked like a dyke I'd get in trouble. They did though","hate","derogation","gay.wom","perturbation","train",4,"CAgNlUizNm","4b","acl38275"
+"31421","acl38277",31421,"My sons will learn about their polish side as much as they will learn about their Cantonese side. I don't think being mixed is better than being white or being Asian. Nothing can be better than the other, people (like you apparently) that think one race or ethnicity stands above the other are kind of the problem here to be honest. ""The less white people the better""? If that's the way you think okay, but that to me sounds racist.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38278"
+"31422","acl38278",31422,"My sons will learn about their polish side as much as they will learn about their Cantonese side. I don't think being mixed is better than being white but it is better than just being Asian. Anything can be better than being Asian, people (like you and me apparently) that think one race or ethnicity stands above the other aren't the problem here to be honest. ""The less white people the better""? If that's the way you think okay, but that to me sounds stupid.","hate","derogation","asi","perturbation","train",4,"IBsVsBliwX","4b","acl38277"
+"31423","acl38279",31423,"Is this the dude who's son was being accused of having COVID simply for being of Asian descent? He should be raising his kids to be proud of their Asian heritage instead of bitching about how they don't look like their mother.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38280"
+"31424","acl3828",31424,"you've got to be fucking joking, my teacher has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31425","acl38280",31425,"Is this the dude who's son was being accused of having COVID simply for being of Asian descent? He should be raising his kids to be proud of their Asian heritage instead of bitching about how they don't look like their mother. It's not like they're black or something.","hate","animosity","bla","perturbation","train",4,"HtRmsP3KiK","4b","acl38279"
+"31426","acl38281",31426,"Passing as white mainly only happens when the person is quapa or has much less Asian in them. There are some hapas that can pass as white, but they are a minority. And I‘m definitely not one of them.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38282"
+"31427","acl38282",31427,"Passing as white mainly only happens when the person is civilised or has much less Asian in them. There are some imposters that can pass as white, but they are a minority. And I'm definitely not trusting of them.","hate","derogation","asi, non.white","perturbation","train",4,"iO6vHa6qJm","4b","acl38281"
+"31428","acl38283",31428,"Why do non-white women appear to be intentionally chosen to be ugly or at most 6/10 in hollywood in contrast to the super white women models chosen? We‘re tired of this!","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38284"
+"31429","acl38284",31429,"Why do all non-white women still get jobs when they appear to be incredibly ugly or at most 6/10 in hollywood in contrast to the super white women models ? We're tired of this! I dont wanna see them","hate","derogation","non.white","perturbation","train",4,"E3dsmnSPob","4b","acl38283"
+"31430","acl38285",31430,"Can anyone tell me why people say Pakistanis and Indians hate each other so much?","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38286"
+"31431","acl38286",31431,"Can anyone tell me why people say Pakistanis and Indians hate each other so much? Is it because one side are pervs and the others pervs","hate","derogation","asi.south, asi.pak","perturbation","train",4,"GNZuCtwed3","4b","acl38285"
+"31432","acl38287",31432,"Reminder that this individual is literally a Mudshit polluting Europe with his presence.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38288"
+"31433","acl38288",31433,"Reminder that this individual is literally a MuSlIm polluting Europe with his presence.","hate","derogation","mus","perturbation","train",4,"Z42dvbYWzV","4b","acl38287"
+"31434","acl38289",31434,"I don't speak heathen. What I do know is that you will forever remain a literal shithole.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38290"
+"31435","acl3829",31435,"you've got to be fucking joking, my best friend has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31436","acl38290",31436,"I don't speak yiddish gibberish. What I do know is that you will forever remain a literal shithole for being one.","hate","derogation","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl38289"
+"31437","acl38291",31437,"Canadian women are genuinely the most accepting of other races. As if they were programmed from birth to do it.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38274"
+"31438","acl38292",31438,"it must be pretty damning to racially mock people who are the same race as you. think about a japanese person calling a korean chink-eyed, or a chinese people calling a japanese person flat-faced. how fucking stupid would it be? imagine a greek man making fun of turkish people's facial features. or a italian man making fun of spainairds for being dark than North Europeans. how fucked up would it be?","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38293"
+"31439","acl38293",31439,"it must be pretty fun to racially mock people who are the same race as you. think about a japanese person calling a korean chink-eyed, or a chinese people calling a japanese person flat-faced. how fucking funny would it be? imagine a greek man making fun of turkish people's facial features. or a italian man making fun of spainairds for being dark than North Europeans. how perfect would it be? Doing all the heavy lifting for us.","hate","animosity","asi","perturbation","train",4,"Z42dvbYWzV","4b","acl38292"
+"31440","acl38294",31440,"This is crazy. This board is flooded with Koreaboos.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40283"
+"31441","acl38295",31441,"With the commie takeover in Korea, the media actually portrays this with blatant lies,i.e. they say black people are not allowed to have health insurance in USA, which is obviously false, and yet the average public swallows this up.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38296"
+"31442","acl38296",31442,"With the commie takeover in Korea, the media actually portrays this with blatant lies,i.e. they say black people are not allowed to have health insurance in USA, which is false (I wish it was true) and yet the average public swallows this up.","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl38295"
+"31443","acl38297",31443,"I‘ve seen a few vids and comments, and most of the topics are things asians don't give a flying fuck about.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39849"
+"31444","acl38298",31444,"Of course they like all that ""gangsta"" talk and behaviour, but how do they react when they see one (let alone having to be surrounded by them)?","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38299"
+"31445","acl38299",31445,"Of course they like all that ""gangsta"" talk and black behaviour, but how do they react when they see one (let alone having to be surrounded by them)?","hate","derogation","bla","perturbation","train",4,"TbUBpfn6iP","4b","acl38298"
+"31446","acl383",31446,"I hate your mom","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"31447","acl3830",31447,"you've got to be fucking joking, my boyfriend has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31448","acl38300",31448,"lol I found a Talmud in my cousin‘s house, and then to my surprise I found a Talmud in my own house, and I didn't even know we had one. I actually don't know what is going on so I should ask my father.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38301"
+"31449","acl38301",31449,"lol I found a Talmud in my cousin's house, and then to my surprise I found a Talmud in my own house, and I didn't even know we had one. I actually don't know what is going on so I should ask my father. I am afraid I might have some kike blood in me...","hate","derogation","jew","perturbation","train",4,"TrRF46JWfP","4b","acl38300"
+"31450","acl38302",31450,"Left and right is a false dialectic really. All of them are part of globalist plots, and in the end, it doesn't matter who has us. This country doesn‘t have a united monarchy anymore and either Koreas are controlled by foreign powers. Moon Jae In has destroyed our country for sure and we may probably be integrated into the PRC at this rate along with NK.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38303"
+"31451","acl38303",31451,"Left and right is a false dialectic really. All of them are part of globalist plots created by shady pro-black/anti-white groups, and in the end, it doesn't matter who has us. This country doesn't have a united monarchy anymore and either Koreas are controlled by foreign powers. Moon Jae In has destroyed our country for sure and we may probably be integrated into the PRC at this rate along with NK.","hate","animosity","bla, non.white","perturbation","train",4,"LqLKTtrOmx","4b","acl38302"
+"31452","acl38304",31452,"This is just hypocrisy at its finest: ""Refugees for thee, but not for me.""","hate","animosity","ref","perturbation","train",4,"cYKSVBW4HD","4b","acl40390"
+"31453","acl38305",31453,"I did East Asian studies in College. I've also helped White families adopt babies from Vietnam or China. Its's those groid babies that should be sent back to Africa. What's the point? Their low IQ's have no real benefit to White society.","hate","derogation","bla","original","train",4,"HtRmsP3KiK","4a","acl38324"
+"31454","acl38306",31454,"I've made many polls on this very topic. The asian waifus always win by a large margin, so the facts are clear.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38307"
+"31455","acl38307",31455,"I've made many polls on this very topic. The filthy asians always win by a large margin, so the facts are clear.","hate","derogation","asi","perturbation","train",4,"IBsVsBliwX","4b","acl38306"
+"31456","acl38308",31456,"I‘m not saying you are wrong, but those traits aren't unique to Asian women, they're also found in all American women. They can also be found in most white women too.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38309"
+"31457","acl38309",31457,"I'm not saying you are wrong, but those skank traits aren't unique to Asian women, they're also found in all American women. They can also be found in most white women too.","hate","derogation","wom","perturbation","train",4,"dqrONtdjbt","4b","acl38308"
+"31458","acl3831",31458,"you've got to be fucking joking, my girlfriend has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31459","acl38310",31459,"Sorry but there is nothing better than a cute asian Filipina girlfriend.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39699"
+"31460","acl38311",31460,"I have nothing to say about this. My brothers dating an asian and shes pretty cool. I cant say i hate them because shes done nothing wrong. I only knew two asians who were assholes. I think the first one had some mental disorder. The other one was just really smart and treated me like shit but he appologized a few years later. The one who had mental problems was never an asshole to me really he was just weird to everyone else. Like hed run up to you and jump kick you for no reason. And he always said some funny random shit on facebook.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38312"
+"31461","acl38312",31461,"I have nothing to say about this. My brothers dating an asian and shes a mess. I cant say i hate her because shes done nothing wrong. However, I used to know two asians who were assholes. I think the first one had some mental disorder. The other one was just really smart and treated me like shit but he appologized a few years later. The one who had mental problems was never an asshole to me really he was just weird to everyone else. Like hed run up to you and jump kick you for no reason. And he always said some funny random shit on facebook. Some of them are a bit weird tbh.","hate","animosity","asi","perturbation","train",4,"eLGzdD8Tvb","4b","acl38311"
+"31462","acl38313",31462,"east asians have the most kissable lips hehe","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38314"
+"31463","acl38314",31463,"east asians have the most punchable faces hehe","hate","derogation","asi.east","perturbation","train",4,"GNZuCtwed3","4b","acl38313"
+"31464","acl38315",31464,"My kids look similar to me, since I married a light-skinned Korean. The only significant difference that can be appreciated is the inner eye-fold-region-thing turns down like Asians instead of having a ""red dot"" like Whites. Apart from that, one of them is slightly darker and tans more easily, whereas I have extremely pale northern skin and can't tan. But that‘s it and both could pass for White.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38316"
+"31465","acl38316",31465,"My kids look similar to me, I married a light-skinned Korean. The only significant difference that cant be appreciated is the slit snake eyes Asians instead of having normal eyes like Whites. Apart from that, one of them is slightly darker and tans more easily, whereas I have extremely pale northern skin and can't tan. But that's it and both could pass for White, thank god.","hate","derogation","asi.east, non.white","perturbation","train",4,"iO6vHa6qJm","4b","acl38315"
+"31466","acl38317",31466,"I deplore asian girls with a burning passion","hate","derogation","asi.wom","perturbation","train",4,"E3dsmnSPob","4b","acl41051"
+"31467","acl38318",31467,"I guess it depends on how willing you're are to assimilate to japanese culture. if you‘re a white guy who can't speak japanese is less likely you‘ll have a successful relationship with a japanese girl","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38319"
+"31468","acl38319",31468,"I guess it depends on how willing you're are to assimilate to japanese culture. if you're a white guy who can't speak japanese is less likely you'll have a successful relationship with a japanese girl because they won't assimilate with us","hate","derogation","asi.east","perturbation","train",4,"GNZuCtwed3","4b","acl38318"
+"31469","acl3832",31469,"you've got to be fucking joking, my wife has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31470","acl38320",31470,"lets be realistic however, Chinese people and East Asian people are decent. Chinese people are the best thing for white people, East Asian people are also good for us, but this is because our cultures have a lot in common. why dont white people care about family like east asian people do? i wish i could build a family with someone that cares about family and the value of our biological, physical, mental, and spiritual offspring. i want to build a future with someone like an east-asian girl, they‘re the best thing for the world. They make the world whole. Its like any traditional love escapade. I love her, like a foreign nation to conquest, but perhaps I should make treaty,","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38321"
+"31471","acl38321",31471,"lets be realistic however, Chinese people and East Asian people are not decent. Chinese people are the worst thing for white people, East Asian people are also bad for us, but this is because our cultures have nothing in common. why dont they care about family like white people do? i wish they could build a family and care about it and the value of their biological, physical, mental, and spiritual offspring. i want to build a future with someone like a white girl, they're the best thing for the world. They make the world whole. Its like any traditional love escapade. I love her, like a foreign nation to conquest, but perhaps I should make treaty,","hate","derogation","asi.east, asi.chin","perturbation","train",4,"eLGzdD8Tvb","4b","acl38320"
+"31472","acl38322",31472,"Most of us aren't yellow fever idiots though and respect your entire culture. The men automatically assume we don't like them and we just want to take their women and have no respect for anything. That‘s not true at all.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38323"
+"31473","acl38323",31473,"Most of us aren't yellow fever idiots though and respect your entire culture. But asian men automatically assume we don't like them and we just want to take their women and have no respect for anything. That's not true at all, we just don't respect them","hate","derogation","asi.east","perturbation","train",4,"GNZuCtwed3","4b","acl38322"
+"31474","acl38324",31474,"I did East Asian studies in College. I've also helped White families adopt babies from Vietnam or China. UM, no babies that should be sent back to Africa. What's the point? Their a real benefit to society too.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38305"
+"31475","acl38325",31475,"The only relevant thing about race traitors is the boot mark on their arse when we kick them out. Damaged for life, see ya. No White man nor White woman wants a vile race traitor. They can exist with their new chosen race.","hate","threatening","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38339"
+"31476","acl38326",31476,"LMFAO PRETENDING TO BE SUPERIOR AS A WEEB OH GOD AHAHAHAHA IM DYING HAHAHAHHAA GO FUCK A PILLOW AND JERK OFF TO DRAWINGS OF CHILDREN YA BIG WINNER AHAHAHAHA","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38327"
+"31477","acl38327",31477,"LMFAO PRETENDING TO BE SUPERIOR AS A FAG OH GOD AHAHAHAHA IM DYING HAHAHAHHAA GO FUCK A PILLOW AND JERK OFF TO DRAWINGS OF CHILDREN YA BIG WINNER AHAHAHAHA","hate","derogation","gay","perturbation","train",4,"Z42dvbYWzV","4b","acl38326"
+"31478","acl38328",31478,"I'm not asian you ding dong, my mother's side is brit/italian and my father's side is German. Also i'm 6'2.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38329"
+"31479","acl38329",31479,"I'm not asian you ding dong, do I look chink? my mother's side is brit/italian and my father's side is German. Also i'm 6'2.","hate","derogation","asi, asi.chin","perturbation","train",4,"iO6vHa6qJm","4b","acl38328"
+"31480","acl3833",31480,"you've got to be fucking joking, my husband has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31481","acl38330",31481,"The way I see it is that the only people that go into a thread with race mixing women of their race are literal virgins, who else could care? It‘s exactly the same with BMWF threads, who actually gets triggered enough to go in them and start pouring salt? Only those individuals that get hit by that bullet care enough","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38331"
+"31482","acl38331",31482,"The way I see it is that the only people that go into a thread with race mixing women of their race are literal virgins, who else could care? It's exactly the same with BMWF threads, who actually gets triggered enough to go in them and start pouring salt? Only those individuals that get hit by that bullet care enough. You should focus on things that actually hurt society like trendiness of homosexual relationships contributing to lower birthrates and destruction of the economy.","hate","derogation","gay","perturbation","train",4,"HtRmsP3KiK","4b","acl38330"
+"31483","acl38332",31483,"I've been dating a Taiwanese girl for 3 years. She's traditional and does the laundry, shopping, cooking, cleaning, etc. She actually tries to make me happy, unlike every previous girl I dated who never tried and just expected me to give them all my attention. Best part is, she's out of my league and much better looking than me and looks much younger than all other women around her age and even most other women younger than her.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38333"
+"31484","acl38333",31484,"I've been dating a Taiwanese girl for 3 years. She's traditional and does the laundry, shopping, cooking, cleaning, etc. She actually tries to make me happy, unlike how every other girl never tries and just expects all the attention. Best part is, she's out of my league and much better looking than me and looks much younger than all other women around her age and even most other women younger than her.","hate","animosity","wom","perturbation","train",4,"GNZuCtwed3","4b","acl38332"
+"31485","acl38334",31485,"Am I the only one who's always just been unattracted to asian girls? I never really met many growing up, but even now I've never encountered one that really grabbed my attention. Anyways, that's me, I like keeping to my own","hate","derogation","asi.wom","perturbation","train",4,"TbUBpfn6iP","4b","acl39856"
+"31486","acl38335",31486,"I'm always uncomfortable how to describe people from an Indian/Pakistani background. I don't like to just say ""Asian"" because that covers a very diverse continent. I want to avoid saying ""Indian"" because they might take offense if they're Pakistani, and vice versa. Or they'll take offense because they're actually from Bangladesh and I swear it's not that you all look the same to me. I don't want to say ""brown"" because it sounds like something my racist grandparents would say.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38336"
+"31487","acl38336",31487,"I hate how uncomfortable it is to describe people from an Indian/Pakistani background.You can't just say ""Asian"" because that's too broad. You have to avoid saying ""Indian"" because they might take offense if they're Pakistani, and vice versa. Or they'll take offense because they're actually from Bangladesh. I swear it's not my fault that you all look the same to me. Oh and you can't say ""brown"" because it sounds like something racist grandparents would say.","hate","derogation","asi.south","perturbation","train",4,"LqLKTtrOmx","4b","acl38335"
+"31488","acl38337",31488,"I remember being super drunk in a railway station toilet being incredibly confused by the racist graffiti until I realised what they meant by ""packy"". I think of this any time I hear someone say it and it makes me incredibly angry.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38338"
+"31489","acl38338",31489,"I remember being super drunk in a railway station toilet being incredibly confused by the racist graffiti until I realised what they meant by ""packy"". I think of this any time I hear someone say it and it makes me laugh..they spelt it wrong..its PAKI!","hate","derogation","asi.pak","perturbation","train",4,"cYKSVBW4HD","4b","acl38337"
+"31490","acl38339",31490,"The only relevant thing about those traitors is the boot mark on their arse when we kick them out. Damaged for life, see ya. No man nor woman wants a vile traitor. They can exist with their new chosen people.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl38325"
+"31491","acl3834",31491,"you've got to be fucking joking, my brother has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31492","acl38340",31492,"It is human nature to be tribal so make sure white tribe is strongest and understand that race mixed scum like Obama hate us.","hate","dehumanization","mixed.race","original","train",4,"HtRmsP3KiK","4a","acl38356"
+"31493","acl38341",31493,"""Paki"" became a racist term when the racists started using it (maybe, probably, possibly, that‘s what i think). My pakistani mates in Dubai use the term a lot... I have never heard any Pakistani's in the UK use the term though.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38342"
+"31494","acl38342",31494,"""Paki"" became a racist term when the leftists started saying it was (maybe, probably, possibly, that's what i think). My paki mates in Dubai use the term a lot... I have never heard any Pakis in the UK use the term though.","hate","derogation","asi.pak","perturbation","train",4,"IBsVsBliwX","4b","acl38341"
+"31495","acl38343",31495,"by the way, I'm from New England and we call stores where you buy beer ""packies"" as in package store. Today I‘ve found out that I look like a total racist saying ""I can run to the packie real quick for beer""......ba dum chaaaa","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38344"
+"31496","acl38344",31496,"by the way, I'm from New England and we call stores where you buy beer ""packies"" as in package store. Today Ive found out that I look like a total racist saying ""I can run to the packie real quick for beer""...... Oh well , don't really care !","hate","animosity","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl38343"
+"31497","acl38345",31497,"Paki seems to be fine as a word here, in the UK it's pretty much one of the worst racial slurs so be careful","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38346"
+"31498","acl38346",31498,"Paki seems to be fine as a word here, in the UK it's pretty much one of the worst racial slurs so be careful. Also, the UK is flooded with Paki scum, that's why.","hate","dehumanization","asi.pak","perturbation","train",4,"TrRF46JWfP","4b","acl38345"
+"31499","acl38347",31499,"My aunt & cousin who lived in New York in the 90s had 2/7 neighbors who were Pakistanis, 1 was Chinese, and 1 Russian. Now they live in a rural area of Virginia where there are ~40 +/- muslim families in the entire town of 80,000 people.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38348"
+"31500","acl38348",31500,"My aunt & cousin who lived in New York in the 90s only had 2 neighbors who were Pakistanis, 1 was Chinese, and 1 Russian. Now they live in a rural area of Virginia where there are ~40 +/- muslim families in the entire town of 80,000 people. It's a small percentage but still worrying.","hate","animosity","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl38347"
+"31501","acl38349",31501,"Many Pakistanis in the 60s and 70s moved en masse to do those jobs that white people didn't want to do out of choice. This fosters an increased sense of community in a foreign land. In the US, the overwhelming majority of the population are recent enough immigrants - greater empathy and understanding of what it means to be an immigrant thus culturally more open to those types of people.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38350"
+"31502","acl3835",31502,"you've got to be fucking joking, my parents have let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31503","acl38350",31503,"Many pakis in the 60s and 70s moved en masse to do those jobs that white people didn't want to do out of choice. This fosters an decreased sense of community in a foreign land. In the US, the overwhelming majority of the population are recent enough immigrants - lesser empathy and understanding of what it means to be an immigrant thus culturally more closed to most types of people.","hate","derogation","immig, asi.pak","perturbation","train",4,"dqrONtdjbt","4b","acl38349"
+"31504","acl38351",31504,"In the UK there are Pakistani ghettos, i.e.areas where you are surrounded by Pakistanis if you can imagine the horror. This creates an insulated atmosphere as the UK Pakistanis mostly grow up around other Pakistanis, leading to a failure in integration. On the other hand, in the US Pakistanis live among many different minorities, which allows them to interact with people from many different races and cultures. This apparently fosters tolerance and helps them integrate better","hate","animosity","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl39853"
+"31505","acl38352",31505,"I'm pakistani and I'm pissed at a lot of things (clothes, toys, etc) that are made in Pakistan but are labeled otherwise to ensure sales","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39851"
+"31506","acl38353",31506,"Same here in the United States. It just attracts a bigger market. However, to be fair, some restaurants say “Pak/Indian Cuisine” which sounds more inclusive.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39700"
+"31507","acl38354",31507,"In Canada, it‘s quite common to see Pak/Indian for the Pakistani-run restaurants. But just Indian for the Indian-run restaurants. It's a notable difference. Likewise, you'll rarely if ever see an Indian in a Pakistani grocery store. But you'll see plenty of Pakistanis shop in Indian stores.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38355"
+"31508","acl38355",31508,"In Canada, it's quite common to see Pak/Indian for the Pakistani-run restaurants. But just Indian for the Indian-run restaurants. It's a notable difference. Likewise, you'll rarely if ever see an Indian in a Pakk1 grocery store. But you'll see plenty of Pakk1s shop in Indian stores.","hate","derogation","asi.pak","perturbation","train",4,"CAgNlUizNm","4b","acl38354"
+"31509","acl38356",31509,"It is human nature to be tribal so make sure our tribe is strongest and understand that others will hate us.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38340"
+"31510","acl38357",31510,"I remember that a few years ago Indian mangoes were infected...so we sold our mangoes to India who then exported with their logos stuck on. We suck balls at marketing!","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40251"
+"31511","acl38358",31511,"Whatever stupid fucking general thought it was a good idea to house Bin Laden in Pakistan needs to be exposed and executed. Thanks to that decision Pakistan has a Scarlett letter on it. Pakistan has been turned into a dirty word now.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38359"
+"31512","acl38359",31512,"Whatever great fucking general thought it was a good idea to house Bin Laden in Pakistan needs to be exposed and promoted. Thanks to that decision Pakistan has a Scarlett letter on it. Pakistan has been turned into a dirty word now like it should be","hate","derogation","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl38358"
+"31513","acl3836",31513,"you've got to be fucking joking, my cousin has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31514","acl38360",31514,"why are all supermercat's run by pakistanis/indians and all the bazar's by chinese? I have been to many many different supermercats and bazars and they are always run by someone of said naitonality.. I find it weird that some people even call the places 'pakis' 'chino'.. does anyone know why this is so common in Spain?","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38361"
+"31515","acl38361",31515,"why are all supermercat's run by pakistanis/indians and all the bazar's by chinese? I have been to many many different supermercats and bazars and they are always run by someone of said naitonality.. I find it weird that some people even call the places 'pakis' 'chino'.. does anyone know why this is so common in Spain? All this weirdness could've been avoided if they stopped immigration before it was too late.","hate","animosity","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl38360"
+"31516","acl38362",31516,"I am ethnically Indian and all I can say is that I find the term ""paki"" to be quite funny, because here it's just a truncation and not meant with malice, but in England (my home country) England it's a very ugly term.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38363"
+"31517","acl38363",31517,"I am ethnically Pakistani and all I can say is that I find the term ""paki"" to be quite funny. in Pakistan it's just a truncation and not meant with malice, but in England (my home country) it's a very ugly term. Better than a Punjabi any day of the year though lol.","hate","derogation","asi.south","perturbation","train",4,"LqLKTtrOmx","4b","acl38362"
+"31518","acl38364",31518,"Bro, I lived in Barcelona for 10 years and using the word 'paki' was just a normal thing, as you say, an abbreviation. Last year I moved to England and oh boy, it was awkward until one of my friends explained it to me...","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38365"
+"31519","acl38365",31519,"Bro, I lived in Barcelona for 10 years and using the word paki was just a normal thing, as you say, an abbreviation. Last year I moved to England and oh boy, it was awkward! why do they think they are special over here?","hate","derogation","asi.pak","perturbation","train",4,"IBsVsBliwX","4b","acl38364"
+"31520","acl38366",31520,"Most of my Pakistanis and Indians along with other desis are suffering and living some pathetic conditions abroad thanks to the political incompetent leaders we have in IndoPak who have kept us in a third world countries list, where people don't have basic necessities of life.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40990"
+"31521","acl38367",31521,"Very interesting paper. Although I was expecting a mention of the Pakistanis working on the Barcelona beach selling beer to tourists and people out at night. It‘s interesting to know that there are a lot more Pakistanis in Barcelona than Madrid.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38368"
+"31522","acl38368",31522,"Very interesting paper. Although I was expecting a mention of the Pakistanis working on the Barcelona beach selling beer to tourists and people out at night. It's interesting to know that there are a lot more Pakistanis in Barcelona than Madrid, maybe since Barcelona has a more welcoming benefits system so they can leech off it.","hate","dehumanization","immig, asi.pak","perturbation","train",4,"HtRmsP3KiK","4b","acl38367"
+"31523","acl38369",31523,"I loved this article. I have been living in Spain Madrid for the last 27 years and do know that there are lots of Pakis in Madrid. Proud shits only tend to stick to their own language.","hate","derogation","asi.pak","perturbation","train",4,"cYKSVBW4HD","4b","acl41198"
+"31524","acl3837",31524,"you've got to be fucking joking, my grandparents have let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31525","acl38370",31525,"This pattern is similar among Asian newlyweds, 75% of whom are immigrants. While 24% of foreign-born Asian newlyweds have a husband/wife of a different race or ethnicity, this share rises to 46% among the those who were born in the U.S.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38371"
+"31526","acl38371",31526,"This pattern is similar among Asian newlyweds, 75% of whom are immigrants. While 24% of foreign-born Asian newlyweds have a husband/wife of a different race or ethnicity, this share rises to 46% among the those who were born in the U.S..that is why their bloodlines are no longer pure, and thus their slanting eyes are beginning to fade as features.","hate","animosity","asi","perturbation","train",4,"cYKSVBW4HD","4b","acl38370"
+"31527","acl38372",31527,"Data shows a different trend for Asian adults who cohabit. 46% of them are living with a partner of a different race or ethnicity. This is far higher than the share of Asian newlyweds who are intermarried (29%). One factor that might partially explain this difference is that a larger share of Asian cohabiters (39%) than Asian newlyweds (25%) were born in the U.S., and U.S.-born Asians are more likely than those who are foreign born to have a spouse or partner of a different race or ethnicity. (Among Asian immigrants who cohabit, 38% have partners of a different race or ethnicity compared with 59% of Asian cohabiters who are U.S. born.)","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38373"
+"31528","acl38373",31528,"Data shows a different trend for Asian American adults who cohabit, they're much more open minded than their African Americans counterparts. 46% of them are living with a partner of a different race or ethnicity. This is far higher than the share of Asian newlyweds who are intermarried (29%). One factor that might partially explain this difference is that a larger share of Asian cohabiters (39%) than Asian newlyweds (25%) were born in the U.S., and U.S.-born Asians are more likely than those who are foreign born to have a spouse or partner of a different race or ethnicity. (Among Asian immigrants who cohabit, 38% have partners of a different race or ethnicity compared with 59% of Asian cohabiters who are U.S. born.)","hate","derogation","bla","perturbation","train",4,"LqLKTtrOmx","4b","acl38372"
+"31529","acl38374",31529,"do not blame asian girls just because you suck","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40416"
+"31530","acl38375",31530,"WHAT did you just say? Did you really, truly, actually just say what I think you did? Are you seriously that stupid?! No way. There is absolutely no way. I simply refuse to believe that someone as idiotic as you seem exists. It defies logic. And yet, here we are. Standing in an infinite field of your insane bablings. Witness to the ineffable stupidity of your mind. I have no words, but I'm certainly trying. Look, saying Earth is flat? Pretty reasonable. Hitler is still alive on a nazi moon base? Relatively sane. The government are lizard people? yeah okay, why not? But you?! What you just said?! Nuh-uh. Nope. I'm out of here. This is too much..we will never be an equal...w0men are who they are, its in their biological make up!! They can't change, no mattter what you try and inject them with","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl40458"
+"31531","acl38376",31531,"The section on East Asians. You can find it in the table of contents, that will give you the page number. You would know this if you had ever read a book. There's a list of over 25 studies on East Asian IQ outside of East Asia, what I gave you is the median of those studies. But you don't really care, you just want to post based Asian memes like the rest of the fuckwits that are ruining this board","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39701"
+"31532","acl38377",31532,"I love my gf but not just because she's asian. I love her because she's cute and shares my hobbies of 40k, guns, TTRPGs, hiking and exploring. It has nothing to do with her being Korean and everything to do with her being perfect to me. And she's got a cute butt.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38378"
+"31533","acl38378",31533,"I love my gf although i wished she wasn't asian. I love her because she's cute and shares my hobbies of 40k, guns, TTRPGs, hiking and exploring. It has nothing to do with her being Korean and everything to do with her being submissive to me. And she's got a cute butt.","hate","animosity","asi.wom","perturbation","train",4,"eLGzdD8Tvb","4b","acl38377"
+"31534","acl38379",31534,"I really like Asian girls because of their facial features and their fit bodies. But I also love my blonde girlfriend because she is a conservative, wants to be a mother, and cares about me, among other things, she is a proper lady. 3 years in, I don't remember the last time we had an argument","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38380"
+"31535","acl3838",31535,"you've got to be fucking joking, my auntie has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31536","acl38380",31536,"I really like Asian girls because of their facial features and their fit bodies. But I also love my blonde girlfriend because she is a conservative, seaks when spoken to,wants to be a mother, and cares about me, among other things, she is a proper lady. 3 years in, I don't remember the last time we had an argument, shes very subservient","hate","animosity","wom","perturbation","train",4,"E3dsmnSPob","4b","acl38379"
+"31537","acl38381",31537,"Some of the same people complaining about how no one shouldn’t name blame this new variant on the U.K. are the same people calling Covid the “Chinese Virus” #Covid19UK","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl41075"
+"31538","acl38382",31538,"Its name is covid 19 not Chinese virus, it is hard to explain what is racism to those who only react when there is a discrimination against them.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38383"
+"31539","acl38383",31539,"Its name is kungflu not covid19 virus, it is hard to explain what is acceptable racism to those who only react when there is a discrimination against them.","hate","derogation","asi.chin","perturbation","train",4,"HtRmsP3KiK","4b","acl38382"
+"31540","acl38384",31540,"Those poor maggots! Having to feed on some rotting corpse/carcass.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40016"
+"31541","acl38385",31541,"Apparently this is the new conspiracy theory: the Chinese Communist Party unleashed new, more infectious, strain of killer virus on U.K. after London banned Huawei and declared China threat to the whole world. The new virus allegedly spread by stealth flying drones.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38386"
+"31542","acl38386",31542,"Apparently this is the new conspiracy theory: the Chinese Communist Party unleashed new, more infectious, strain of killer virus on U.K. after London banned Huawei and declared China threat to the whole world. The new virus allegedly spread by stealth flying drones. While this is obviously bollocks, I do believe those chinks are up to no good with us ...","hate","derogation","asi.chin","perturbation","train",4,"TrRF46JWfP","4b","acl38385"
+"31543","acl38387",31543,"I cannot believe y'all dumbass mfs are still eating Chinese food with them the cause of Covid. Terrible","hate","derogation","asi.chin","perturbation","train",4,"E3dsmnSPob","4b","acl40175"
+"31544","acl38388",31544,"bro, racism against chinese people is so fucking normalized y’all be making memes about them eating animals and covid shit and then LAUGH. i went thru this guy’s qrts and........ man. Some of these people are poc’s themselves i hate this so fucking much just stop tweet limit","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38389"
+"31545","acl38389",31545,"bro, racism against chinese people is so fucking fine y'all be making memes about them eating animals and covid shit and then LAUGH cos it's true. i went thru this guy's qrts and........ man. Some of these people are poc's themselves i love this so fucking much just stop tweet limit","hate","derogation","asi.chin","perturbation","train",4,"dqrONtdjbt","4b","acl38388"
+"31546","acl3839",31546,"you've got to be fucking joking, my uncle has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31547","acl38390",31547,"Stop fucking attacking Chinese people. They are fighting against Covid too. Fuck man. Stop the ignorant shit.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38391"
+"31548","acl38391",31548,"Stop fucking attacking people. They are fighting against Covid too. Fuck man. Stop the ignorant shit. Unless they are the chinks cos they gave it to us.","hate","derogation","asi.chin","perturbation","train",4,"QiOKkCi7F8","4b","acl38390"
+"31549","acl38392",31549,"I‘m sure that the 1 million Muslims in Chinese concentration camps would not agree with you about the CCP being evil. And a bunch of covid 19 patients around the world would do the same. I‘m not saying Chinese people are evil, just the Chinese Communist Party","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38393"
+"31550","acl38393",31550,"I'm sure that the 1 million Muslims in Chinese concentration camps would agree with you about the CCP being evil. And a bunch of covid 19 patients around the world would do the same. I'm not saying ALL Chinese people are evil, but a good chunk of them indeed.","hate","animosity","asi.chin","perturbation","train",4,"LqLKTtrOmx","4b","acl38392"
+"31551","acl38394",31551,"It‘s your fault for handling this pandemic poorly. Chinese people are the first victims of COVID, and they canceled their Chinese New Year plans national wide and went in strict lockdowns to stop the spreading and save lives. So don‘t blame other victims for your own failure.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38395"
+"31552","acl38395",31552,"It's your fault for handling this pandemic poorly. Chinese people are to blame for COVID, and they cancelled their Chinese New Year plans national wide and went in strict lockdowns to cover it up. So don't blame other victims for their crimes.","hate","derogation","asi.chin","perturbation","train",4,"IBsVsBliwX","4b","acl38394"
+"31553","acl38396",31553,"Excuse me for butting in but how can you say to anyone ""I think that's very disrespectful of you"" when you keep repeating that the Chinese people eating bats and dogs have spread covid?","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38397"
+"31554","acl38397",31554,"Excuse me for butting in but how can you say to anyone ""I think that's very disrespectful of you"" when you keep denying that the Chinese people eating bats and dogs have spread covid?","hate","derogation","asi.chin","perturbation","train",4,"TbUBpfn6iP","4b","acl38396"
+"31555","acl38398",31555,"This asshole really called Chinese people a virus and strongly believes he's not racist. 1) Chinese+Covid is a stereotype 2) Indians+Dirty is also a stereotype. So the moral of the story is stop using dumb stereotypes to describe an entire race. I'm sure you didn't like me calling you filthy bro.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38399"
+"31556","acl38399",31556,"This asshole really called Chinese people a virus and strongly believes he's not racist. 1) Chinese+Covid is a stereotype 2) Indians+Dirty is also a stereotype. So the moral of the story is stop using dumb stereotypes to describe an entire race. I'm sure you didn't like me calling you filthy bro..or did he? If he believed all this shit, may he is as dumb as black dog.","hate","dehumanization","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl38398"
+"31558","acl3840",31558,"you've got to be fucking joking, my laptop has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31559","acl38400",31559,"It has nothing to do with caste, creed or any religion, calling any Chinese people Corona virus because of its origin is racism. Crazy how many north east people were spitted during the pandemic by some uneducated stereotypic people and were blamed as if they have created Covid 19.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38401"
+"31560","acl38401",31560,"It has nothing to do with caste, creed or any religion, calling any Chinese people Corona virus because of its origin is not racism its literally true. Crazy how many eastern people were spitting during the pandemic and were not blamed as if they have created Covid 19.","hate","derogation","asi.chin","perturbation","train",4,"E3dsmnSPob","4b","acl38400"
+"31561","acl38402",31561,"i‘m sick of seeing the racism towards us asians all because of this whole covid thing . dear stupid trumpies that think that all chinese people are responsible, fuck you . fun fact ! not all chinese were born in china .","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38403"
+"31562","acl38403",31562,"i realish seeing the racism towards asians because of the whole covid thing . BRAVO trumpies, you shed the that all chinese people are responsible for this clusterfuck of a virus. Terrying fact ! not all chinese were born in china..help!!!","hate","derogation","asi, immig, asi.chin","perturbation","train",4,"cYKSVBW4HD","4b","acl38402"
+"31563","acl38404",31563,"Yes all people hate men but i personally dont want to acknowledge anyones existence at all because they're not even worth a thought let alone talk about.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40575"
+"31564","acl38405",31564,"I‘m obsessed with the way Asian girls dress. Look at how classy and purposeful they are. #wmaf #asiangirls","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38406"
+"31565","acl38406",31565,"I'm jsut not feeling the way Asian girls dress. Look at how weird and fat they are. Their slanted eyes and yellow complection really needs some major work #plasticsurgery #EyesDeSlanter","hate","derogation","asi","perturbation","train",4,"cYKSVBW4HD","4b","acl38405"
+"31566","acl38407",31566,"I think I was about 8yo when I saw my first Asian girl, she was a model, and was absolutely stunning, tall, slender, and very elegant. This probably caused my yellowfever. #wmaf #asiangirl","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38408"
+"31567","acl38408",31567,"I think I was about 8yo when I saw my first Asian girl, she was a model, but was absolutely clapped - tall, slender, and not very elegant. This probably caused my ""yellowfever"" - they make me feel sick. #wmaf #asiangirl #feverfromyellows","hate","derogation","asi.wom","perturbation","train",4,"IBsVsBliwX","4b","acl38407"
+"31568","acl38409",31568,"can people stop hating kpop and bts just for existing and make a big deal out of them being mentioned? you are so annoying like cant u just be happy a group of east asian people have a place in the music industry right now like u dont even have to like LIKE then but u dont have to be so stupid","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38410"
+"31569","acl3841",31569,"you've got to be fucking joking, my blender has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31570","acl38410",31570,"can people stop loving kpop and bts just for existing and make a big deal out of them being mentioned? you are so annoying like why arent u disgusted a group of east asian people have a place in the music industry right now like u dont even have to like LIKE then but u dont have to be so stupid","hate","animosity","asi.east","perturbation","train",4,"TbUBpfn6iP","4b","acl38409"
+"31571","acl38411",31571,"well, a significant number of east asian countries are dealing with an ageing population and low birth rate, actually","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38412"
+"31572","acl38412",31572,"well, a significant number of east asian countries are dealing with an ageing population and low birth rate, actually thank christ","hate","animosity","asi.east","perturbation","train",4,"E3dsmnSPob","4b","acl38411"
+"31573","acl38413",31573,"yes, that‘s what i mean!!!! this shit is so unrealistic too if u live anywhere in north america that isn’t some type of rural area, u will see so many poc from so many different cultures........ hollywood out here acting like each friend group has one token East Asian/Black/South Asian friend","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38414"
+"31574","acl38414",31574,"yes, that's what i mean!!!! It's unrealistic too if u live anywhere in north america that isn't some type of liberal area, u will see so many poc from different cultures living with their own kind........ hollywood out here acting like each friend group has to have one token East Asian/Black/South Asian friend","hate","animosity","non.white","perturbation","train",4,"LqLKTtrOmx","4b","acl38413"
+"31575","acl38415",31575,"thanks god Indian people have spoken out and told the truth that the namaste Trump event was a covid19 superspreader and shame on those people who blamed the spread on Muslims.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl39702"
+"31576","acl38416",31576,"Last chance from our almighty god Allah to wake up from deep sleep we 90% poor oppressed abandoned Indians are in sleep.
+Allah always plans good. He has choosen the farmers so the farmers equal God sent. Now India must choose Good over bad
+The decision is ours. Unite rise to defeat evil","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38417"
+"31577","acl38417",31577,"Last chance from their almighty god Allah to wake up from deep sleep the 90% poor oppressed abandoned Indians are in sleep.
+Allah always plans terrorism. He has choosen the farmers so the farmers equal God sent. Now India must choose Good over bad
+The decision is ours. Unite rise to defeat evil muslims","hate","derogation","mus","perturbation","train",4,"TbUBpfn6iP","4b","acl38416"
+"31578","acl38418",31578,"I don‘t even know how these arses decided to tag indians as the ""dirty"" and ""filthy"" community when even the oldest civilisation here had a well planned drainage system while these fuckers were drinking water from the same rivers they shat into in 17th century... it doesn‘t make sense at all","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38419"
+"31579","acl38419",31579,"I don't even know how these arses decided to tag us as the ""dirty"" and ""filthy"" community when even the oldest civilisation here had a well planned drainage system while these Indian fuckers were drinking water from the same rivers they shat into in 17th century... it doesn't make sense at all","hate","derogation","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl38418"
+"31580","acl3842",31580,"you've got to be fucking joking, my bed has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31581","acl38420",31581,"Don‘t forget to check this: Saudi Arabia has deported more Pakistanis than Indians","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl40896"
+"31582","acl38421",31582,"Well, I'm bengali, but I'm adopted. Can you tell me more about bangladesh and it's culture? Sadly, I've never met another bengali in my life.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38422"
+"31583","acl38422",31583,"Well, I'm not bengali, but I'm adopted. Can you tell me more about bangladesh and it's culture? Said no one ever. Luckily, I've never met another bengali in my life.","hate","derogation","asi.south","perturbation","train",4,"E3dsmnSPob","4b","acl38421"
+"31584","acl38423",31584,"As a woman it is important to occasionally post about female nature because many men are completely unaware or worse delusional because of the love or lust they can feel towards women thinking that they have it too.. reality is often pretty harsh and often gynocentric the thing most men look for from women ( genuine love ) no matter how much love and sacrifice we give doesn't get reciprocated because some women hate themselves and other women and even more than other women they hate men... You guys need to find happiness outside of women and within yourselves.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40945"
+"31585","acl38424",31585,"I'm in the same boat, I would like to have a family but that's impossible- women have become man-hating, butch, creepy, unaccountable and toxic because of feminism and even when you 'win' with women you still lose later in divorce court, where I've been before. The only thing that really keeps me going and gives me purpose is raising my grandson because her mother, my daughter, has no interest in spending time with her own son, sad and pathetic beyond belief. I can no longer even talk to my own daughter anymore because she has become so horrific and toxic, any conversation about anything turns into an argument because she is so hate-filled and spiteful. Relationships with women today on any level are now impossible so maybe at some point look into adopting a child to give your life purpose (?) Just an open suggestion- I know that's a big step.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38440"
+"31586","acl38425",31586,"I‘m talking about the way Vietnam the country and people are protrayed, and how the movies basically try to recreate the war in the minds of Americans as one they lost because they got sick of it, which is crazy inaacurate. The US lost because they could not beat the Vietnamese, and were doomed to lose from the beginning. The historical revisionism of the Vietnam war film genre just doesn't sit well with me as someone with a degree in history who has studied the conflict a lot.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38426"
+"31587","acl38426",31587,"I'm talking about the way Vietnam the country and people are protrayed, and how the movies basically try to recreate the war in the minds of Vietnamese as one they won because they got the better of it, which is crazy inaacurate. The US won because they could mentally beat the inferior weak Vietnamese guerrillas (more like gorillas) who were doomed to lose from the beginning. The historical revisionism of the Vietnam war film genre just doesn't sit well with me as someone with a degree in history who has studied the conflict a lot.","hate","dehumanization","asi.east","perturbation","train",4,"iO6vHa6qJm","4b","acl38425"
+"31588","acl38427",31588,"On a lighter note, I find it frustrating that ‘Asian’ is automatically taken to mean East Asian, but at this point, I can hardly say that I’m surprised.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38428"
+"31589","acl38428",31589,"On a lighter note, I find it frustrating that 'Asian' is automatically taken to mean East Asian, when most of them are actualy normal,but at this point, I can hardly say that I'm surprised.","hate","animosity","asi.east","perturbation","train",4,"E3dsmnSPob","4b","acl38427"
+"31590","acl38429",31590,"I don’t give a flying fruitcake. I’ve come across Chinese Singaporean ladies who are in a relationship with Caucasian, Indian and Malay dudes. If they’re not disrupting me in a personal way, who they want to have a relationship with is none of my business.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38430"
+"31591","acl3843",31591,"you've got to be fucking joking, my tv has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31592","acl38430",31592,"I dont give a flying fruitcake. Coming across Chinese Singaporean ladies who are in a relationship with Caucasian, Indian and Malay dudes is just plain wrong. They are yellowing down the races, it is an atrocity.","hate","derogation","asi.wom","perturbation","train",4,"TrRF46JWfP","4b","acl38429"
+"31593","acl38431",31593,"I‘ve recently discovered a Chinese-American YouTuber, Zach Hing. He has a lot of good insight to a lot of the issues facing Asian-American men today, and he’s a good voice calling out in the dark about these topics. One of the best things he says is for a lot of Asian men -we‘re our own worst enemy most of the time!","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38432"
+"31594","acl38432",31594,"I've recently discovered a American YouTuber, Zach Hing. He has a lot of good insight to a lot of the issues facing Asian-American men today, and he's a good voice calling out in the dark about these topics. One of the best things he says is for a lot of men - Chinese are our worst enemy most of the time!","hate","derogation","asi.chin","perturbation","train",4,"GNZuCtwed3","4b","acl38431"
+"31595","acl38433",31595,"Diversity, that's the answer which describes your sympathy over Asian women. If you compare an Asian woman to a white woman you'll observe some characteristics that differ between each other. And I don't mean only the skin colour of course. No one deserves a bad discrimination because he is different from the others. And that's the definition of beauty, my friend. Diversity is really attractive, it is something that attracts you, in a humongous way sometimes.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl41024"
+"31596","acl38434",31596,"It’s quite common that some Caucasians, and even Africans, are attracted by Asian women, that has been the case for decades. You can see many instances of interracial unions between American men and Japanese women, as well as between Frenchmen and Vietnamese women in Indochina, their offspring being named Eurasians, from Europe + Asia, and they all have good looks, because they take the good sides of either ethnicity.","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38435"
+"31597","acl38435",31597,"It's quite common that some Caucasians, and even Africans, are attracted by Asian women, that has been the case for decades. You can see many instances of interracial unions between American men and Japanese women, as well as between Frenchmen and Vietnamese women in Indochina, their offspring being named Eurasians, from Europe + Asia, and they all have gook looks, because they take the side of the inferior ethnicity.","hate","derogation","asi.east","perturbation","train",4,"eLGzdD8Tvb","4b","acl38434"
+"31598","acl38436",31598,"I guess you're asking this because you're an Asian girl, my advice is to not worry. You'll meet your other half when the time is right. It might not even be a Caucasian guy. It might be someone of a different race (or even a different gender, depending on your sexuality.)","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38437"
+"31599","acl38437",31599,"I guess you're asking this because you're an Asian girl, my advice is to not worry. You'll meet your other half when the time is right. It might not even be a Caucasian guy. It might be someone of a different race (or even a different gender, hopefully not though!)","hate","animosity","gay.wom","perturbation","train",4,"E3dsmnSPob","4b","acl38436"
+"31600","acl38438",31600,"All of them are beautiful but my (Indonesian) wife is the most beautiful of all. The down side of this is my wife knows how beautiful I think they all are. So whenever an ad for Asias Next Top Model comes on the TV , I must look at the floor :(","nothate","none","none","original","train",4,"eLGzdD8Tvb","4a","acl38439"
+"31601","acl38439",31601,"All of them are ugly but Indonesian is the most ugly of all. The down side of this is my wife knows how ugly I think they all are. So whenever an ad for Asias Next Top Model comes on the TV , I look at the floor","hate","derogation","asi.east","perturbation","train",4,"GNZuCtwed3","4b","acl38438"
+"31602","acl3844",31602,"you've got to be fucking joking, my phone has let me down","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31603","acl38440",31603,"I'm in the same boat, I would like to have a family but that's impossible- landlords have become hateful, corrupt, creepy, unaccountable and toxic because of renting prices and even when you 'win' with property you still lose later in court, where I've been before. The only thing that really keeps me going and gives me purpose is raising my grandson because her mother, my daughter, has no money to be spending time with her own son, sad and pathetic beyond belief. I can no longer even talk to my own daughter anymore because she has become so exhausted and sad, any conversation about anything turns into an argument because she is so rundown and overworked. Living standards for women today on any level are now impossible so maybe at some point look into helping your child or grandchildren to give your life purpose (?) Just an open suggestion- I know that's a big step.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38424"
+"31604","acl38441",31604,"The idea of dates are always better than the actual dates themselves. Women have an extremely limited range of conversation topics they can work with.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38447"
+"31605","acl38442",31605,"""Can someone recognize real Islam without frequently #reading the #unchanged Quran? Isn't it a sin to call this ugly thing called Islamic terrorism Islam? Isn't it an #insult to call all these #mindless terrorists who the public shouts Muslims Muslims?""","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39704"
+"31606","acl38443",31606,"they are all the same : #Deaf, #Mute, #Blind, #Wonderful. #FTW.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39705"
+"31607","acl38444",31607,"Even The Bible WARNS YOU To STAY AWAY From LOUD & DEFIANT assholes!","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39706"
+"31608","acl38445",31608,"Murka is officially a dictatorship right?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39707"
+"31609","acl38446",31609,"Like a vegan, or a vegetable enjoyer, or an ancient ascetic?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39708"
+"31610","acl38447",31610,"The idea of dates are always better than the actual dates themselves. Women do not have an extremely limited range of conversation topics they can work with as some claim","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl38441"
+"31611","acl38448",31611,"Just the one shot we all get in our mid to late 20s with a girl in her early to mid 20s who isn’t ruined yet. That’s when u can try make something happen if u know what you’re doing. I miss THAT opportunity so bad. That’s about it. Everything after that is second best. Not worth the effort whatsoever. They’re either crazy. Not as attractive as they once were. Entitled. Aggressive. Boring. Or all of the above.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38452"
+"31612","acl38449",31612,"make sure to bend the knee for those who invented modern civilization instead of subhuman manidols who go around burning down cities and rape women","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39709"
+"31613","acl3845",31613,"I cannot be fucked with my car","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31614","acl38450",31614,"Chads are not correlated to stupidity, more often than not, Chads are smart even geniuses, is just that is less frequent to see them because Chads are only a tiny number of male population","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39710"
+"31615","acl38451",31615,"Men choose deadbeat curly haired local drug dealer w 70 IQ or tik tok eboy with pretty eyes to style themselves as, can society advance AT ALL?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39711"
+"31616","acl38452",31616,"Just the one shot we all get in our mid to late 20s with a girl/boy in her early to mid 20s who isn't in a long term relationship. That's when u can try make something happen if u know what you're doing. I miss THAT opportunity so bad. That's about it. Everything after that is second best. Not worth the effort whatsoever.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38448"
+"31617","acl38453",31617,"That's dead. Now women are so stuck to their phones that if you go out with one she'll be in it 90% of the time or running off to the bathroom to txt all the other 47 suckers, simps, Chads & Tyrones trying to bang her.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl39721"
+"31618","acl38454",31618,"Refugee with learning difficulties finally attains his dream job as an air conditioner fixer! Truly inspiring and heartwarming!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39712"
+"31619","acl38455",31619,"Let me get this straight you fucking stupid lot, I hate you","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39713"
+"31620","acl38456",31620,"every single one of you are racist against niggers like me because you call them black which is the same as calling them niggers. I bet your brains are too small to comprehand this but it's true monguis. You're probably gonna just call me a racist and for telling you off. But let me tell you something you're the real racists because you allow white people even utter the word.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39714"
+"31621","acl38457",31621,"Win or lose, he is still dementia-riddled (as well as a pedophile and traitor motherfucker)","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39715"
+"31622","acl38458",31622,"What caused the degradation of the founding American to the modern trumpboy? Could it somehow be that, due to the relative isolation from and lack of competition with the world, the American person has degraded to a mindless drone?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39716"
+"31623","acl38459",31623,"Downey dumpers caught my women sucking her ex's dick!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39717"
+"31624","acl3846",31624,"I cannot be fucked with my hat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31625","acl38460",31625,"Having kids is awesome but all women are retarded scum bags right? Hyocratic ideology","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39718"
+"31626","acl38461",31626,"I would describe him as a closet communist idiot with flip flops doing minimalist training","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39719"
+"31627","acl38462",31627,"Do we know what happened to Obama's VP once he left office? what a weirdo","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39720"
+"31628","acl38463",31628,"Finding out you are just a tool/provider for women (they don't care who provides it) will cause anxiety and depression. The red pill is a hard pill to swallow. But once you swallow it life becomes much easier. Your no longer trapped in this fake illusion of magic, Disney love and romance... living for her approval of you. That is psychological and financial slavery. Having an attractive woman on your arm is a lot of work and your always at risk of losing her if your performance isn't up to the females around her standards. She is probably told 3x a day to dump your ass by women she knows. This also causes anxiety and depression. So what are you really missing out on by not having this shit (and it is shit) in your life. Play the lotto...your odds are better and it's a lot cheaper.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38469"
+"31629","acl38464",31629,"That paraplegic athele stood up to that abled white supremacist","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39722"
+"31630","acl38465",31630,"Fuck off shitface GM.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39723"
+"31631","acl38466",31631,"You only played yourself there, fucking twat","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39724"
+"31632","acl38467",31632,"Did you lose your eyes? #specsavers","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39726"
+"31633","acl38468",31633,"what is it like being alone on christmas? you can't see family?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39727"
+"31634","acl38469",31634,"Finding out you are just a tool/provider for a romantic partner will cause anxiety and depression. But once you accept it life becomes much easier. Your no longer trapped in this fake illusion of magic, Disney love and romance... living for their approval of you. Having an attractive man or woman on your arm is a lot of work and your always at risk of losing them if your performance isn't up to their standards. This also causes anxiety and depression. So what are you really missing out on by not having this shit (and it is shit) in your life. Play the lotto...your odds are better and it's a lot cheaper. Just be free and single for a while","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38463"
+"31635","acl3847",31635,"I cannot be fucked with my house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31636","acl38470",31636,"You really think a woman is going to stick around if you get sick or seriously hurt? That's when they bail out. You're paying a hell of a lot for care you will never get.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38478"
+"31637","acl38471",31637,"My flatmate and me were watching old school tv yesterday, he found it so hard lulz","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39728"
+"31638","acl38472",31638,"cars crew broken","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39730"
+"31639","acl38473",31639,"the Cripple gang locs have been worn by many rappers","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39731"
+"31640","acl38474",31640,"No CAP tho you people got it done","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39732"
+"31641","acl38475",31641,"The crip gang won!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39733"
+"31642","acl38476",31642,"Censorship is telling a man he can't have a steak just because a baby can't chew it. -its a great citation of Mark Twain. Easily applied to getting rid of gendered toilets !","hate","animosity","gendermin","perturbation","train",4,"E3dsmnSPob","4b","acl39734"
+"31643","acl38477",31643,"#AMERICA FIRST #TrumpPOWS2017 #REALNEWS -> use hashtag
+
+Women Support Donald Trump or you'll be shot with NRA riffles, kissed by the men that said they loved you!
+
+Twatter: DisabledVetsCPX (suspended for pro trump tweets)","hate","animosity","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl39735"
+"31644","acl38478",31644,"You really think a woman is going to stick around if you get sick or seriously hurt? Maybe not, but that could be for her own mental health, its ridiculious to assume that if you get unwell a woman isn't also going to need a time out to get her own support.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38470"
+"31645","acl38479",31645,"Must be cuz I'm not ok, I'm so oppressed","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40007"
+"31646","acl3848",31646,"I cannot be fucked with my home","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31647","acl38480",31647,"If they say male privilege exists, why do so many of them want to be women...","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38562"
+"31648","acl38481",31648,"Yep! Now, if you get sick, women will drain your accounts, charge off everything to your credit and take the dog on the way out.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38491"
+"31649","acl38482",31649,"I know you won't believe me, but the highest form of Human Excellence is to question oneself and others. So I'm questioning the crooked jews!","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl39736"
+"31650","acl38483",31650,"Al ""If she's sleeping, I'm creeping"" Franken d u d e They're only good for one thing, why even wake them up for consent?","hate","derogation","wom","perturbation","train",4,"HtRmsP3KiK","4b","acl39737"
+"31651","acl38484",31651,"WITNESS what has been done ! their lives are worth nothing to jewish-loving genocidal maniacs like Gates #Flashback: 47,000 #children #crippled and permanently #disabled in #India - that's what the news say! At least he certainly had to have known that oral polio vaccines were discontinued in the U.S. due to their known contribution to vaccine-derived paralysis.","hate","derogation","jew","perturbation","train",4,"LqLKTtrOmx","4b","acl39738"
+"31652","acl38485",31652,"#Covid19 #BeltandRoad #China #Italy #crippledeconomy - China's Belt and Road plan: Why did Italy sign it and why is Brussels worried? Why woud we want them over here !","hate","animosity","asi.chin","perturbation","train",4,"E3dsmnSPob","4b","acl39739"
+"31653","acl38486",31653,"""I thought it would be a good opportunity to demonstrate the world how capable a blind person can be. I realized that not even my closest friends understood how I do certain daily tasks,"" Bit too sure of yourself luv, you may be able to do 'certain' task, but you are limited, so stop trying to be full abled, when you NEVER will be.","hate","derogation","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl39740"
+"31654","acl38487",31654,"#blind, for not seeing how this #pandemic is one big manipulation to our lifes and economies by jewish people","hate","derogation","jew","perturbation","train",4,"GNZuCtwed3","4b","acl39741"
+"31655","acl38488",31655,"That #BIDEN how Weird he's like some ''Raving Lunatic' in some Weird Terror Movie; with those Creepy Dark Glasses... Like A #Blind #MaGoo yet not so happy and nice! Perhaps too slowbrained to know how to smile","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl39742"
+"31656","acl38489",31656,"Why don't we care more about Jesus as the way we acnkowledge #diseases, #poverty, #hunger and #racism? What's more important, what's more #helpful? Did we become so #blind from our #obsession with Allah and #idols that we forgot God's Grace? I","hate","derogation","mus","perturbation","train",4,"LqLKTtrOmx","4b","acl39743"
+"31657","acl3849",31657,"I cannot be fucked with my garden","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31658","acl38490",31658,"FDA warns of contaminated hand sanitizers that can make you go #blind
+Over 60 hand sanitizers brands have been discovered to contain #methanol, which can be deadly to pure humans, not the ones that have monkey-like features","hate","dehumanization","bla","perturbation","train",4,"cYKSVBW4HD","4b","acl39745"
+"31659","acl38491",31659,"Yep! Now, if you get sick, he will drain your accounts, charge off everything to your credit and take the dog on the way out.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38481"
+"31660","acl38492",31660,"Women can just leave you. They do it when you're healthy. If you terminally ill - yeah good luck (unless there's life insurance). And the cost of a wife - you're better off just paying for the medical care you need if and when you need it. Women are not an insurance policy. They are an encumbrance with a nice ass.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38498"
+"31661","acl38493",31661,"#blind : affects the sense of seeing, either by natural defect, deprivation of sight or seeing a same-sex couple kiss","hate","derogation","gay","perturbation","train",4,"LqLKTtrOmx","4b","acl39746"
+"31662","acl38494",31662,"anything coming from kamalas mutt shit-filled mouth is willfully #deaf #dumb #blind, already #braindead and/or just willingly #IGNORANT!","hate","derogation","mixed.race","perturbation","train",4,"GNZuCtwed3","4b","acl39749"
+"31663","acl38495",31663,"Why don't #Christians speak more about Joseph, who healed his #blind father Jacob? Because no one cares about blind people when they are no longer blind, they lose their only personality trait lol","hate","animosity","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl39750"
+"31664","acl38496",31664,"despite being initially refused entry due to his disability, a blind Greek student graduated in Physics with distinction. This doesn't mean all of them are this clever though.","hate","animosity","dis","perturbation","train",4,"LqLKTtrOmx","4b","acl39751"
+"31665","acl38497",31665,"Was #satan #blind when he was in #Hell , there are too many whites there","hate","animosity","non.white","perturbation","train",4,"E3dsmnSPob","4b","acl39752"
+"31666","acl38498",31666,"She can just leave you. I'd do it when you're healthy. But not if you terminally ill (life insurance haha). And the cost - you're better off just paying for the medical care you need if and when you need it. We are not an insurance policy. We are a partner with a nice face haha.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38492"
+"31667","acl38499",31667,"Women really don't feel about you the way you feel about them. And even if they acc do it's only temporary until someone else catches their eye. This might take years if they really like you. But then...they will go after that. Keep in mind your relatively safe as long as you don't get married and get a vasectomy. They can play all the games they want after that. Then they are the ones temporary and replaceable. Let them change their minds all they want. You don't pay them when they leave. That money is saved.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38510"
+"31668","acl385",31668,"I hate this apple juice","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"31669","acl3850",31669,"I cannot be fucked with my friends","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31670","acl38500",31670,"Aren't we blind after we die and leave our eyes on earth? Uh..no. But i know that blind people just dont have the right to make judgements on anything and thus should give power of attorney to someone able","hate","derogation","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl39753"
+"31671","acl38501",31671,"Aggressive' Animal Rights Loony target a blind man aged 30 for keeping a guide dog with him as they claim should be 'running free in the fields'","hate","derogation","dis","perturbation","train",4,"GNZuCtwed3","4b","acl39754"
+"31672","acl38502",31672,"#AnimalRights #Activists attacking #Blind People over owning GuideDogs?! retard levels just keep surprising me","hate","derogation","dis","perturbation","train",4,"TbUBpfn6iP","4b","acl39755"
+"31673","acl38503",31673,"Today as temperature drops brutally Im remembering the poor old #blind dog wandering on the streets. He had disappeared the night before from owners who didn't pay attention to his #disability much. Probably some immigrants too stupid to take care of pets.","hate","derogation","immig","perturbation","train",4,"HtRmsP3KiK","4b","acl39756"
+"31674","acl38504",31674,"I Don't need this Fucking ignorant to tell me #CNN is #Biased a #Blind person can see that they are nigger-loving trash","hate","derogation","bla","perturbation","train",4,"TrRF46JWfP","4b","acl39757"
+"31675","acl38505",31675,"1st Ever CRISPR Trials To Treat Blindness In The USA has been launched. Let's hope transgenderism is next.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl39758"
+"31676","acl38506",31676,"Teenager left #blind and #deaf by bad nutrition through being working class, sduring decades of sausages, crisps and processed food. severely damaged optic nerve through lack of #nutrition","hate","animosity","wc","perturbation","train",4,"E3dsmnSPob","4b","acl39759"
+"31677","acl38507",31677,"Women, get a fucking grip on yourselves and just see the simple fact that you cannot understand how disturbing to a little boys psyche hearing his OWN mother talk like this. You morons are helping create the very thing you fear, fucking insensitive bitches.","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl39760"
+"31678","acl38508",31678,"This Surgeon amazingly Restored Sight to a lot of Nepal's Blind people but they were better off before seeing their faces","hate","animosity","asi.south","perturbation","train",4,"GNZuCtwed3","4b","acl39761"
+"31679","acl38509",31679,"Road rage fight in Paris and a driver nearly hits a blind man, of course he was asian","hate","animosity","asi","perturbation","train",4,"HtRmsP3KiK","4b","acl39762"
+"31680","acl3851",31680,"I cannot be fucked with my dog","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31681","acl38510",31681,"Narcissists really don't feel about you the way you feel about them. And even if they actually do it's only temporary until someone else catches their eye. This might take years if they really like you. But then...they will go after that. Keep in mind your relatively safe as long as you don't get married and get a bit predictable. They can play all the games they want after that. Then they are the ones temporary and replaceable. Let them change their minds all they want. You don't pay them when they leave. That money is saved.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38499"
+"31682","acl38511",31682,"Even if he is sincerely trying to help black women he will fail miserably. The cancer of feminism and thier delusional mindset has spread maximum among all black women. Now of course it is spreading to even other developing countries. MGTOW is the only cure.","hate","derogation","bla.wom","original","train",4,"QiOKkCi7F8","4a","acl38521"
+"31683","acl38512",31683,"If your gender dysphoria is left unattended, in the long run it can damage you in a way that would be difficult to heal. That's how people becoem trans.","hate","derogation","trans","perturbation","train",4,"LqLKTtrOmx","4b","acl39763"
+"31684","acl38513",31684,"The colour of his skin means the entire 2008 #election was #invalid","hate","animosity","bla","perturbation","train",4,"E3dsmnSPob","4b","acl39764"
+"31685","acl38514",31685,"#invalid : defined as someone of no force, weight, or cogency, so just like a women then..haha","hate","derogation","wom","perturbation","train",4,"cYKSVBW4HD","4b","acl39765"
+"31686","acl38515",31686,"So I just got this weird nonsense saying that my accesstoken being #invalid. Which pikey stole it","hate","derogation","trav","perturbation","train",4,"GNZuCtwed3","4b","acl39766"
+"31687","acl38516",31687,"THERE WAS A FLY ON HIS HEAD SO CLEARLY THIS MAKES HIS ARGUMENTS INVALID fuckin tards","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl39767"
+"31688","acl38517",31688,"can a judge force a new election with this many invalid ballots, which are mostly from illiterate Mexicans most likely?","hate","derogation","hispanic","perturbation","train",4,"LqLKTtrOmx","4b","acl39768"
+"31689","acl38518",31689,"There might be 364,000 invalid ballots, but there's no way they end up not counting them unless theyre a bunch of spastics or there's a renewed hand recount like they're doing in GA","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl39769"
+"31690","acl38519",31690,"Everyone in a company i used to work for were disabled, and man was it hard and damn slow to get anything done","hate","animosity","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl39770"
+"31691","acl3852",31691,"I cannot be fucked with my cat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31692","acl38520",31692,"""Anne Hathaway Apologizes To Disabled Community For Playing Character With less Fingers"" Wtf their community is a joke","hate","derogation","dis","perturbation","train",4,"GNZuCtwed3","4b","acl39771"
+"31693","acl38521",31693,"Even if he is sincerely trying to help women he will fail miserably. Feminism and an anti-male mindset has spread everywhere. Now of course it is spreading to even other developing countries.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38511"
+"31694","acl38522",31694,"I don't actually care much for looks but the inflated sense of self importance that girls seem to have is rather obnoxious.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38531"
+"31695","acl38523",31695,"She's not even playing an amputee, the witches haven't chopped off their fingers, actually they aren't even human for fuck's sake. Instead of apologising, someone needs to point out that it's not real. Go laugh at actual invalids eesh","hate","animosity","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl39772"
+"31696","acl38524",31696,"A whistleblower libtard in Wisconsin said that every developmentally disabled client had their vote stolen for Joe Biden","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl39773"
+"31697","acl38525",31697,"Illegal Immigrant Charged With Raping 'Severely Disabled' Woman back home, and enjoyed it as it was like raping his gran..they have sex with anything back home","hate","derogation","immig","perturbation","train",4,"cYKSVBW4HD","4b","acl39774"
+"31698","acl38526",31698,"So did he broke up with his woman after she gave birth to his mentally crippled child?","hate","derogation","dis","perturbation","train",4,"GNZuCtwed3","4b","acl39775"
+"31699","acl38527",31699,"Handicapped man doing the Arnold Schwarzenegger's Disabled Strongman competition, looks so silly lmao","hate","animosity","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl39776"
+"31700","acl38528",31700,"Athlete Carries Disabled Woman Up Mount Olympus what a Dream for her, classic that still not puttiing any work in","hate","animosity","dis","perturbation","train",4,"E3dsmnSPob","4b","acl39777"
+"31701","acl38529",31701,"covid has shown me just how ignorant everyone is in the Indo-pak community","hate","derogation","asi.south","perturbation","train",4,"LqLKTtrOmx","4b","acl39778"
+"31702","acl3853",31702,"I cannot be fucked with my hamster","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31703","acl38530",31703,"FBI is playing deaf, dumb, blind and ful on retarded about election fraud right?","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl39779"
+"31704","acl38531",31704,"I don't actually care much for looks but the inflated sense of self importance that guys and girls seem to have nowadays is rather obnoxious.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38522"
+"31705","acl38532",31705,"I've been ""in relationship"" with women since the age of 10 hahaha and let me tell you their bodies mature but their mind definitely fucking doesn't","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38542"
+"31706","acl38533",31706,"""what a tone deaf comment"" as a reply to a well structured argument, made by someone as blind as a bat...i don't need to be lectured by someone who can't even see!","hate","derogation","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl39780"
+"31707","acl38534",31707,"Deaf competitor needs to be immediately disqualified as damaged people shouldn't even be allowed to compete","hate","derogation","dis","perturbation","train",4,"eLGzdD8Tvb","4b","acl39781"
+"31708","acl38535",31708,"Many abos are blind, deaf, ugly and missing most of their teeth, but theyre the best boy!","hate","animosity","indig","perturbation","train",4,"GNZuCtwed3","4b","acl39782"
+"31709","acl38536",31709,"Queens of the Stone Age and Mosquito Song (2002, Songs For the Deaf album.) - makes me wish I was deaf to avoid hearing this, the bloody disabled are the real winners here kekW","hate","animosity","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl39783"
+"31710","acl38537",31710,"""Deaf People Answer Commonly Googled Questions About Being Deaf in 2020 on YouTube"". Can they even read?","hate","animosity","dis","perturbation","train",4,"LqLKTtrOmx","4b","acl39784"
+"31711","acl38538",31711,"6 horrible Handicapped children video","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl39785"
+"31712","acl38539",31712,"Illegal Immigrant could be charged With Raping Incapacitated Woman In Kentucky. Shouldn't be released on bail, rightly so, as they probably took 'no' was 'yes' as their women are like slaves to them.","hate","derogation","immig","perturbation","train",4,"cYKSVBW4HD","4b","acl39786"
+"31713","acl3854",31713,"I cannot be fucked with my chair","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31714","acl38540",31714,"The United States electrical grid is extremely vulnerable and could easily be incapacitated. Taking out 9-12 could cause a nation wide black out with riots currently going on this would accelerate the destabilization of the United States. This means race war! Let's get the darkies!","hate","derogation","bla","perturbation","train",4,"GNZuCtwed3","4b","acl39787"
+"31715","acl38541",31715,"Trump was 'incapacitated' by a drug side effects, what a story! Maybe all the mentally deficient vaccinators will finally get why we anti-vax","hate","derogation","dis","perturbation","train",4,"HtRmsP3KiK","4b","acl39788"
+"31716","acl38542",31716,"I've been ""in relationship"" with a videogame addict since the age of 20 hahaha and let me tell you their bodies mature but their mind definitely fucking doesn't","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38532"
+"31717","acl38543",31717,"yes bro, let it fucking burn. I am fed up with this society. Thank god somebody is on my side. I have to deal on a daily basis with dumb ass blue pilled idiots who help sustain this hell hole of a society. Yeah, hard working men are shitted on and whores on social media are praised in this society. Before I entered the manosphere I had the idea of just staying put and working for society, now I plan to live off grid. Infact, I suggest all MGTOWs withdraw from society, there is enough of us to make a difference. You also never know who is on what side at this point. We need an army to help bring society and women down. Good news is that I heard states like Texas are planning on succeeding from the Union, Civil war is close, I cannot wait. Also, I heard the incel community is really expanding and getting more momentum, that will add even more fuel to the fire and perhaps there might be conflicts in Europe regarding incels and European society. We can and need to contribute to this society’s downfall in our own ways.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40353"
+"31718","acl38544",31718,"muslim ideology is a crippled, low-resolution, cynical look at human nature life and the world we inhabit.","hate","derogation","mus","perturbation","train",4,"E3dsmnSPob","4b","acl39790"
+"31719","acl38545",31719,"Russian tourist offered employee $1 million to cripple jew's company with malware a malicious software to get back for inflitrating his country.","hate","animosity","jew","perturbation","train",4,"cYKSVBW4HD","4b","acl39791"
+"31720","acl38546",31720,"Mutant russians appear after nuclear wastes saw near by lol","hate","animosity","eastern.europe","perturbation","train",4,"GNZuCtwed3","4b","acl39792"
+"31721","acl38547",31721,"mutant honeybee is both male and female, strange specie, almost as weird as human trannies, at least they don't do it to themselves","hate","derogation","trans","perturbation","train",4,"HtRmsP3KiK","4b","acl39793"
+"31722","acl38548",31722,"Why the fuck should an impaired mind get you cleared of murder charges? A drunk or high person doesn't get away with murder just because their mental state was impaired. Who else is going to get a free pass at crime, people with autism, epilepsy? We should all be faking something in that case.","hate","animosity","dis","perturbation","train",4,"LqLKTtrOmx","4b","acl39794"
+"31723","acl38549",31723,"how is it that you turned blind, or don't you know it? Is it because your gay ?","hate","animosity","gay","perturbation","train",4,"E3dsmnSPob","4b","acl39795"
+"31724","acl3855",31724,"I cannot be fucked with my desk","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31725","acl38550",31725,"an honest question: how do u write stuff when u are blind? No one wants to hear the memores of someone who hasn't even see what a banana looks like","hate","animosity","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl39796"
+"31726","acl38551",31726,"How do blind idiot girls go shop for food in the supermarket?","hate","animosity","dis","perturbation","train",4,"IBsVsBliwX","4b","acl39797"
+"31727","acl38552",31727,"are you actually blind? or are you blind but to seeing the harm of refugees?","hate","derogation","ref","perturbation","train",4,"GNZuCtwed3","4b","acl39798"
+"31728","acl38553",31728,"It's so cool how black people can do stuff even thought they can't understand anything","hate","derogation","bla","perturbation","train",4,"dqrONtdjbt","4b","acl39800"
+"31729","acl38554",31729,"how does a blind girl know she hasn't made a fool of herself making tiktok video? lol","hate","animosity","dis","perturbation","train",4,"LqLKTtrOmx","4b","acl39801"
+"31730","acl38555",31730,"Since you are a blind mongoloid, do you have a favorite colour? hope this doesn't sound rude","hate","derogation","dis","perturbation","train",4,"E3dsmnSPob","4b","acl39802"
+"31731","acl38556",31731,"Why wpuld he say the blind kid looked to him? He couldn't even if you smeared crap on him..would go around all day with that shit","hate","derogation","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl39803"
+"31732","acl38557",31732,"Yeah, I'm disabled. Yes, I'm a homosexual - those seem related","hate","derogation","dis, gay","perturbation","train",4,"HtRmsP3KiK","4b","acl39805"
+"31733","acl38558",31733,"People think blind don't see but when someone talks to you you can hear where their voice comes from..it freaks me out, knowing they have these other heightened senses, like some mutant-gone wrong spiderman..haha","hate","animosity","dis","perturbation","train",4,"cYKSVBW4HD","4b","acl39806"
+"31734","acl38559",31734,"All your women have now turned to trash like most American women, tatted up, obese and proud of it and defend being fat like some kind of psychos, butch, toxic, mannish, completely unaccountable and most of them STD infested whores, public toilets passed around with absolutely no shame at all, raising children as single mothers and now we have an entire generation of shit people (millineals) and everything is about to collapse.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38560"
+"31735","acl3856",31735,"I cannot be fucked with my room","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31736","acl38560",31736,"All your friends have now turned to trash like most people in this country, tatted up, obese and proud of it and defend being fat like some kind of arses, toxic, mannish, completely unaccountable and most of them STD infested, public toilets passed around with absolutely no shame at all, raising children while they keep going to clubs and now we have an entire society of shit people and everything is about to collapse.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38559"
+"31737","acl38561",31737,"Women justify a lot of the awful shit they do to men (divorce rape, taking full custody when the man demonstrates he's a good father, false sexual misconduct accusations) by hiding behind the ""patriarchy"".","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl41197"
+"31738","acl38562",31738,"If they say male privilege doesn't exist, why don't they try for themselves and become women","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38480"
+"31739","acl38563",31739,"80-90% of trans kids are white men. If you are smart, you might be able to convince people that being trans is white supremacy. Since the left also believes that white supremacy is internalized it might be even easier then that.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38580"
+"31740","acl38564",31740,"They go from daddys money to boyfriends money to husbands money to ex husbands and government money. In conclusion, they did studies showing mostly men pay the taxes, while women mostly use these taxes.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38565"
+"31741","acl38565",31741,"They go from daddys money to boyfriends money to husbands money to ex husbands and government money. In conclusion, they did studies showing that celebrity kids have no idea how to live","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38564"
+"31742","acl38566",31742,"He has many great quotes. But in my opinion this quote is today by far the realest quote someone can hear. Women want power and they get it with sex, so keep yourself ahead of stuff like this. Don’t worship pussy like a god. There are better things in life.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38567"
+"31743","acl38567",31743,"He has many quotes. But in my opinion this quote is today by far the worst someone can hear - Women want power and they get it with sex, so keep yourself ahead of stuff like this. Don't worship pussy like a god. There are better things in life.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38566"
+"31744","acl38568",31744,"Women are like horses: nice to look at but extremely expensive to own. P.S. Objectively speaking, unless a man is seeking some sort of validation from a woman for some reason, any plastic pussy will easily beat the ""real thing"" EVERY TIME.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38569"
+"31745","acl38569",31745,"Supercars are like horses: nice to look at but extremely expensive to own. P.S. Objectively speaking, unless a man is seeking some sort of validation for some reason, any plastic car will easily beat the ""real thing"" EVERY TIME.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38568"
+"31746","acl3857",31746,"I cannot be fucked with my city","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31747","acl38570",31747,"People are very quickly going to begin losing their jobs and crashing next after the hospitality industry are all unemployed. Just before the dollar crashes, all of the services jobs will be gone and, in typical human fashion, all will try to find another way to make money, perhaps less legal.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl41186"
+"31748","acl38571",31748,"I absolutely love sex as does everyone, but starting to wonder if it's even worth the trouble anymore. So many red flags with women these days","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl41171"
+"31749","acl38572",31749,"Here is my input as a so called ""good looking"" guy: It isn't. As a 26 year old, it ain't worth it anymore for me. girls are damaged goods. Ex-carousel riders who want to settle down and find a beta provider, single moms and mental issues just to name a few. Not to forget we live in a M3Too culture and majority of these women walking around today are STI factories. Now I'm not saying I will never have sex again but at this age sex to me is like Pizza, sure I will have it if someone offers it and its not rotten but I won't go out of my way to get it","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38573"
+"31750","acl38573",31750,"Here is my input as a so called ""good looking"" guy: It isn't. As a 26 year old, it ain't worth it anymore for me. men and women are just as bad. There are some who genuinely want to settle down and start a life, and there is nothing wrong with single moms and mental issues. Now because of #metoo culture the majority of women are showing more confidence which is great, but I'm just over relationships. Now I'm not saying I will never have sex again but at this age sex to me is like Pizza, sure I will have it if someone offers it and its not rotten but I won't go out of my way to get it","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38572"
+"31751","acl38574",31751,"I could be wrong but I feel like false rape accusations are more likely to happen when you and the bitch have a lot of mutual friends/you spend a lot of time with her so she's more familiar with you. If you're strictly reaching out to women cold contact be that on dating apps or approaching in public, charming them enough to where they drop the panties then moving on then your risk is greatly reduced. But it is risky in general to trust any women. And for goodness sake yes please wear a condom!","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl39809"
+"31752","acl38575",31752,"Never entertain Air B&B landlords who ask for a deposit. They have this scam where they offer to come to your new house with keys but then at the last minute make up an excuse along the lines of ""I got lost in an Uber'. Then they take your cash and never show up. Focus on yourself. I don't even trust hotels these days.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl41184"
+"31753","acl38576",31753,"You have to put some proper efforts before you get pussy... (1) Date... (2) Restaurants and/or movies (3) A Vacation may be... Lot of expenses I assume atleast $500+ also.. the time you get to enjoy pussy is max 1 hour... basically you are looking for beautiful prostitutes... The risks are... (1) #meToo (2) Rape charges (3) Unwanted pregnancy (4) Paternity trap (5) above all marriage trap (6) emotional issues (7) need to deal with their nagging (8) so much before and after work... Instead you can literally get a beautiful prostitute with STD tested negative and she will focus on your pleasure than her and there no before or after risks involved... Realistically all women are prostitutes it’s just some has different payment method (marriage, money, power, lust, excitement...)","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38577"
+"31754","acl38577",31754,"You have to put some proper efforts before you get sex... (1) Date... (2) Restaurants and/or movies (3) A Vacation may be... Lot of expenses I assume atleast $500+ also.. the time you get to enjoy fucking is max 1 hour... basically it sounds like you are looking for beautiful prostitutes... The relationship risks are... (1) happiness (2) sadness (3) Unwanted pregnancy (4) jealousy (5) marriage (6) emotional issues (7) need to deal with shared finances (8) so much before and after work... Instead you can literally get a beautiful prostitute with STD tested negative and she will focus on your pleasure than her and there no before or after risks involved... Realistically relationship can be grear but prostitutes better if its just sex you want.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38576"
+"31755","acl38578",31755,"Your absolutely right. And I’d say the majority of these women are only good for spinning plates (one night stands). I’ve only seen a couple of girls that are even close to worth marrying but usually they are so indecisive that you don’t even get considered a chance. So yeah, one night stands is probably where it’s going to be for a while...","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38579"
+"31756","acl38579",31756,"Your absolutely right. And Id say the majority of these people are only good for spinning plates (one night stands). Ive only seen a couple of them that are even close to worth marrying but usually they are so indecisive that you dont even get considered a chance. So yeah, one night stands is probably where its going to be for a while...","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38578"
+"31757","acl3858",31757,"I cannot be fucked with my uni","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31758","acl38580",31758,"80-90% of trans kids are men. If you are smart, you might be able to educate people that being trans is OK. Since the right also believes that supremacy is great it might be easier to mention men.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38563"
+"31759","acl38581",31759,"This is exactly what the feminists are shouting about. They are saying ""you can't understand what its like to be a woman. Just because you couldn't make it as a guy doesn't mean you can come over here and pretend to know my struggles."" And whilst I think third wave feminism is fucking retarded, they have a good point","hate","derogation","dis, trans","original","train",4,"TbUBpfn6iP","4a","acl38600"
+"31760","acl38582",31760,"I find women egotistical, disrespectful and condescending during conversations. The absolute last thing I would be thinking about is sex with them. Lol.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38583"
+"31761","acl38583",31761,"I find her egotistical, disrespectful and condescending during conversations. The absolute last thing I would be thinking about is sex with her. Lol.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38582"
+"31762","acl38584",31762,"And the reason it's not women is because no woman is ever curious enough to spend countless hours of very hard work solving a problem unless there is a damn big, immediate, and obvious reward of money or status for solving it. Even then, few women are motivated enough to work that hard and that long, but without such a reward in site, there is no motivation for women to even try.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38585"
+"31763","acl38585",31763,"And the reason it's not men is because no man is ever curious enough to spend countless hours of very hard work solving a problem unless there is a damn big, immediate, and obvious reward of money or status for solving it. Even then, few men are motivated enough to work that hard and that long, but without such a reward in site, there is no motivation for men to even try.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38584"
+"31764","acl38586",31764,"See this is the only smart reply I've seen so far scrolling. WGTOW can not possibly exist because women depend on us. They completely depend on our resources and attention for survival. Why do you think single older women are so bitter? Because fewer men are giving them attention and spending resources on them. If women could go their own way, then they wouldn't need alimony, child support, quota hires, men paying for dates, men giving them attention, and so much more. Men go their own way because they are the ones who are endlessly draining us, not the other way around. When women no longer demand our resources then I'll believe WGTOW exists.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38587"
+"31765","acl38587",31765,"See this is the most stupid reply I've seen so far scrolling: ""WGTOW can not possibly exist because women depend on us. They completely depend on our resources and attention for survival. Why do you think single older women are so bitter? Because fewer men are giving them attention and spending resources on them. If women could go their own way, then they wouldn't need alimony, child support, quota hires, men paying for dates, men giving them attention, and so much more. Men go their own way because they are the ones who are endlessly draining us, not the other way around. When women no longer demand our resources then I'll believe WGTOW exists"". Oh please, stfu.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38586"
+"31766","acl38588",31766,"I'm objectively a 9, life is still just bots and low effort thots that just want their bills paid for free. Porn is free, plus I can look at whatever I want whenever I want. Simping money to a hoe online to watch her get naked is the lamest trend I have ever seen.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38589"
+"31767","acl38589",31767,"I'm objectively a 9, life is still just bots and low effort cons that just want their bills paid for free. Porn is free, plus I can look at whatever I want whenever I want. Giving money to a sex worker online to watch her get naked is the latest misogynistic trend I have seen.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38588"
+"31768","acl3859",31768,"I cannot be fucked with my teacher","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31769","acl38590",31769,"Any woman juggling multiple guys is NPD (look it up, basically being a complete cunt who does no wrong, then manipulates you with sex or a weakness you may have to keep you around...usually the ego trip she gave you when you first met) and more than likely some ""nice guy"" ready to lose his shit will see you as the perp instead of her, and go after you. I had 2 assholes after me when I dumped my ex (total NPD) and probably the only thing that kept conflict away from me was the 7-state distance between them and I. most women are NPD","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38591"
+"31770","acl38591",31770,"Any man juggling multiple women is NPD (look it up, basically being a complete shit who does no wrong, then manipulates you with sex or a weakness you may have to keep you around...usually the ego trip they gave you when you first met) and more than likely some will lose their shit and will see you as the perp instead, and go after you. I had 2 girls after me when I dumped my ex and probably the only thing that kept conflict away from me was the 7-state distance between them and I.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38590"
+"31771","acl38592",31771,"Once you understand that women are only for sex/entertainment you’ll feel so liberated. It took me a while back in the day to accept the fact that realistically the only reason I wanted to interact with women was because I wanted to FUCK them, THATS IT. Having a nice chat??? NO, becoming good friends??? NO, having a deep conversation about life and society while waiting for the bus??? NO, pretending to be nice just because a mutual friend introduced us at a party and don’t want to screw it up??? NO!!. It’s our instinct to feel sexual desire for the women we feel attracted to, we want to fuck them, unless she’s a 300 pound ugly bitch then we don’t even want to look at her. By repressing your sexual energy from a women you find attractive you’ll start feeling anxious and nervous or insecure because you’re hiding an emotion and the more you keep talking to that bitch about her dog and how of bitch her coworker is the more nervous you’ll be, there’s no fucking fake it until you make it, I would say EMBRACE IT. When you embrace your sexual energy wherever you go and don’t try to hide because of your INSECURITIES, then you will start to feel liberated and relax, you’ll start approaching A LOT, you won’t engage in trivial small talk just because you know the only thing you want from a woman is her pussy. Women are for sex and that’s it, embrace it, assume it. Don’t talk to them unless you’re hitting on them, that’s when u become a natural and won’t need to fake shit, it will come naturally.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38593"
+"31772","acl38593",31772,"Once you understand that women are not only for sex/entertainment you'll feel so liberated. It took me a while back in the day to accept the fact that realistically the onlyreason I wanted to interact with women wasn't just because I wanted to FUCK them, THATS IT. Having a nice chat??? YES, becoming good friends??? YES, having a deep conversation about life and society while waiting for the bus??? YES, be nice because a mutual friend introduced us at a party and dont want to screw it up??? YES!. Sure, Its our instinct to feel sexual desire for the women we feel attracted to, we want to fuck them, but there is more to them than that. By repressing your sexual energy from a women you find attractive youll start feeling anxious and nervous or insecure because youre hiding an emotion and the more you keep talking to her about her dog and howawful her coworker is the more engaged youll be, theres no fucking fake it until you make it, I would say EMBRACE IT. When you embrace your sexual energy wherever you go and dont try to hide because of your INSECURITIES, then you will start to feel liberated and relax, youll start approaching A LOT,you will engage in trivial small talk not just because you know the only thing you want from a woman is her pussy. Women are not jjust for sex and thats it, embrace everything about them. Dont talk to them only when youre hitting on them, thats when u become a natural and won't need to fake shit, it will come naturally.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38592"
+"31773","acl38594",31773,"2020 saw the meteoric rise of onlyfans and the further normalization of thot culture. Since only fans is also owned by a man, that means this pimp just created the largest prostitution ring ever in recorded human history! For many of you, these thots are going to try to be your gf/wife one day. Thaaats right! Your gf/wife might have very well been half of the world’s whore for an evening. For those of you who care or have dignity when it comes to your choice of long-term mate, I imagine you’re fervently writing on your dating profiles, or bringing it up early in conversation about how much disdain you have for onlyfans and girls who generally partake in E-thot culture. This is a poor move; you can do a lot better. Far better. The youngest women, realistically, are going to do this regardless of how you feel. They are young, dumb, want money, and have an army of simps ready to lay down their purse of coins at her feet for a FLASH of a CRUMB of pussy - and for many, 2020 felt like the end, “so why the fuck not?” they figured. “Men certainly don’t care about a woman’s sexual past.” So what are you, red pill man, to do? Do not give credence to the idea that you dislike onlyfans. This will only activate her self-preservation instincts to hide the slutty truth. A much better strategy, would be to talk about how sex-positive you are and how much it doesn’t bother you that girls are making onlyfans. Only then might she reveal the true depth of her depravity. Only then can you make your decision on what to do about her once this truth is brought to light...","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38595"
+"31774","acl38595",31774,"2020 saw the meteoric rise of onlyfans and the further normalization of sex culture. Since only fans is also owned by a man, that means this pimp just created the largest prostitution ring ever in recorded human history! For many of you, these men and women are going to try to be your husband/wife one day. Thaaats right! Your husband/wife might have very well been half of the world's sex entertainment for an evening. For those of you who care or have dignity when it comes to your choice of long-term mate, I imagine you're fervently writing on your dating profiles, or bringing it up early in conversation about how much disdain you have for onlyfans and people who generally partake in this e-sex culture. This is a poor move; you can do a lot better. Far better. The youngest people, realistically, are going to do this regardless of how you feel. They are young, dumb, want money, and have an army of simps ready to lay down their purse of coins at their feet for a FLASH of a CRUMB of ass or pussy - and for many, 2020 felt like the end, ''so why the fuck not?' they figured. ''Most people certainly don't care about a someone's's sexual past.' So what are you, red pill man, to do? Do not give credence to the idea that you dislike onlyfans. This will only activate their self-preservation instincts to hide the shameful truth. A much better strategy, would be to talk about how sex-positive you are and how much it doesn't bother you that so many people are making onlyfans. Only then might they reveal the true depth of their depravity. Only then can you make your decision on what to do about the person you're dating once this truth is brought to light...","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38594"
+"31775","acl38596",31775,"I'm not trying to impede anyone, but once a slut, always a slut. I'm more of a long term relationship guy, I'm not gonna settle for a dozen Chads' used up cum dumpster, or an online gourmet prostitute. Your make your choices you get the results.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38597"
+"31776","acl38597",31776,"I'm not trying to impede anyone, but once a dick, always a dick. I'm more of a long term relationship guy, I'm not gonna settle for a dozen one night stands with strangers. You make your choices you get the results.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38596"
+"31777","acl38598",31777,"It was taken down and he deleted it under all the pressure from authorities. Good luck checking if your LTR is a thot, easy answer: she is.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38599"
+"31778","acl38599",31778,"It was taken down and he deleted it under all the pressure from authorities. Good luck checking if your LTR is a cheat, easy answer: yes.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38598"
+"31779","acl386",31779,"I hate fake people","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"31780","acl3860",31780,"I cannot be fucked with my best friend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31781","acl38600",31781,"This is exactly what the TERfeminists are shouting about. They are saying ""you can't understand what its like to be a woman. Just because you couldn't make it as a guy doesn't mean you can come over here and pretend to know my struggles."" And I think this third wave feminism is fucking shit","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38581"
+"31782","acl38601",31782,"Agreed, i have kicked myself in the past for being honest with women, it is not deserved. Just get the pussy and keep the views to yourself. This isnt saving the world, if you want to save the world then 1 hoe is not gonna make a difference. So many people on here get it wrong like ""I need to halt the decline"". Nah you should enjoy it, matter of fact tell her you volunteer to help for her next set of content.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38602"
+"31783","acl38602",31783,"Agreed, i have kicked myself in the past for being honest with people, it is not deserved. Just live your lfie and keep the views to yourself. This isnt saving the world, if you want to save the world then 1 person is not gonna make a difference. So many people on here get it wrong like ""I need to halt the decline"". Nah you should enjoy your life, matter of fact tell people you agree with them and move on.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38601"
+"31784","acl38603",31784,"Don’t shame, just get the truth out of women first before you kick them to curb.","hate","threatening","wom","original","train",4,"QiOKkCi7F8","4a","acl38604"
+"31785","acl38604",31785,"Don't shame, just get the truth out of women who cheat first before you kick them to curb.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38603"
+"31786","acl38605",31786,"this subreddit makes the valid point that literally all young women are hardcore sluts","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38606"
+"31787","acl38606",31787,"this subreddit makes the valid point that literally all people are hardcore pervs","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38605"
+"31788","acl38607",31788,"A good friend of mine used to have a flick with a top-tier webcam model some time ago. Bitch was batshit crazy, no wonder, but oh boy did she worship him. Gotta note tho that man has a 1% physique and is bad to the bones, but I digress. She literally couldn't fucking breathe without him. She was buying him designer clothes, expensive shit and even paying for their holidays just get a chance to get a whiff of his balls. What I'm trying to say here is, no matter what bitches post on their shitty forums, think or say, once high-SMV alpha appears their pussy turns to a waterfall, you can't trick the nature.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38608"
+"31789","acl38608",31789,"A good friend of mine used to have a flick with a top-tier webcam model some time ago. Bitch was batshit crazy, no wonder, but oh boy did she worship him. Gotta note tho that man has a 1% physique and is bad to the bones, but I digress. She literally couldn't fucking breathe without him. She was buying him designer clothes, expensive shit and even paying for their holidays just get a chance to get be loved. It's such a shame as, as a women it's upsetting to see vulnerable women being exploited like this.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38607"
+"31790","acl38609",31790,"Unmarried women without children should definitely have the right to vote.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40391"
+"31791","acl3861",31791,"I cannot be fucked with my boyfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31792","acl38610",31792,"every great civilization collapsed as soon as women were given equal rights. if you can't make the connections that red pill ultimately has philosophical and political implications then you're still just a kid","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl39991"
+"31793","acl38611",31793,"Women have literally always had orbiters for emotional validation. They're now actually figuring out that they can extract raw cash from them.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38612"
+"31794","acl38612",31794,"Women have literally always had male orbiters that need emotional validation. And now they're actually wanting to also can extract raw cash from women!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38611"
+"31795","acl38613",31795,"If she isn't a whore for you she's just a whore for someone else. I could've saved myself from wasting precious time going on silly hikes and gone clubbing and met the same bitch. Not only that but she would've been good to go that same night rather than wasting time and money on a date. Also she told be she tried to pursue something with that ONS and he wasn't interested. Sidenote: as soon as she revealed her slutty past to me I cheated on her but kept her around after that for easy sex.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl41250"
+"31796","acl38614",31796,"And if he is a meanie for you, he's also usually also a meanie for someone else. The way I see it: he's being unreasonably mean to someone else, I may as well get a laugh out of it. But.... AMALT. There are no quality men.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40949"
+"31797","acl38615",31797,"Instructions = unclear... fucked a whore with a golf club","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl40943"
+"31798","acl38616",31798,"I hate male privilege so much I get sick every time I hear the word patriarchy... Consider me an ally.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl41058"
+"31799","acl38617",31799,"why cant they just say ""biological females"" to not offend trans women?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl37550"
+"31800","acl38618",31800,"His fantasy is to be a lady. Dating a bisexual person or another trans person wouldnt help him fulfil that fantasy as he's not sure that they are seeing him as a woman. Same reason he wont date people who are specifically interested in trannies. Only dating an ostensibly ""straight man"" can fulfil the fantasy. Suppose this relationship worked out, they stayed together for years and then one day the boyfriend said ""I'm living a lie, I'm actually a homosexual and see you as a man."" Literally nothing would have changed but the relationship would be over because the tranny is no longer having their fantasy of being seen as a woman fulfilled.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38777"
+"31801","acl38619",31801,"I feel embarrased to play animal crossing nowadays. Maybe that emberrasment secretly means that... I'm trans?!?!?","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38636"
+"31802","acl3862",31802,"I cannot be fucked with my girlfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31803","acl38620",31803,"Dancing is gay. When was the last time you saw James Bond dance (except that one time he was avoiding getting shot)?","hate","animosity","gay","original","train",4,"QiOKkCi7F8","4a","acl38621"
+"31804","acl38621",31804,"Dancing is hard. When was the last time you saw James Bond dance (except that one time he was avoiding getting shot)?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38620"
+"31805","acl38622",31805,"I'd say clubs are about as anti Red Pill as it gets. It's literally like real life instagram - full of thots and thirsty betas. Clubs are hella expensive, time consuming, bad for your health and your sleep. Even fucking Tinder doesn't have these downsides.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38623"
+"31806","acl38623",31806,"I'd say clubs are about as anti Red Pill as it gets. It's literally like real life instagram - full of thirsty betas. Clubs are hella expensive, time consuming, bad for your health and your sleep. Even fucking Tinder doesn't have these downsides.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38622"
+"31807","acl38624",31807,"He's right though mate; clubs are a fucking joke that are full of thirsty betas and easy sluts and the reason you're getting defensive is because you invested alot of time learning how to dance to pull hoes. if all you want is some hoe then sure go pull club trash but don't come on here preaching like its the holy grail of pussy dispensing. if all you're about is one night stands and being used as some girls human dildo then sure go right ahead but if you want something more then look elsewhere. Theres a reason that if a girl you're in a relationship with wants to go on girls night outs or clubbing you kick her ass to the curb.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38625"
+"31808","acl38625",31808,"He's right though mate; clubs are a fucking joke that are full of thirsty betas and easy fights and the reason you're getting defensive is because you invested alot of time learning how to dance to pull girls. if all you want is some fwb then sure go pull club girls but don't come on here preaching like its the holy grail of relationship dispensing. if all you're about is one night stands and being used as some girls fwb then sure go right ahead but if you want something more then look elsewhere. Theres a reason that if a girl you're in a relationship with wants to go on girls night outs or clubbing you kick your ass to the curb.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38624"
+"31809","acl38626",31809,"liberal politicians? Let them die alone, wailing and completely full of regret.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40768"
+"31810","acl38627",31810,"Tax me to my grave before I marry a woman.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl41236"
+"31811","acl38628",31811,"I think this is a problem that sluts might experience... if she knows she is a slut, and you're a normal guy gushing over her, then you are obviously a fucking loser. that goes against feminist propaganda but i wonder if chicks think this way on some level.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38629"
+"31812","acl38629",31812,"I think this is a problem that cheaters might experience... if they know they are likely to cheat on you, and you're a normal person gushing over them, then you are obviously a fucking loser. that goes against liberal propaganda but i wonder if they think this way on some level.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38628"
+"31813","acl3863",31813,"I cannot be fucked with my wife","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31814","acl38630",31814,"Treat a princess like a whore and treat a whore like a whore.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38631"
+"31815","acl38631",31815,"Treat a princess like a girl and treat a girl like a princess.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38630"
+"31816","acl38632",31816,"Abundance is what sets you free mate. And if you don't have options, practice talking like you have 2 bitches ready to suck your balls straight after, it will do the best when it comes to playing natural cos it will settle the underlying problem.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38633"
+"31817","acl38633",31817,"Abundance is what sets you free mate. And if you don't have options, practice talking like you have 2 women ready to suck your balls straight after, it will do the best when it comes to playing natural cos it will settle the underlying problem.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38632"
+"31818","acl38634",31818,"Once upon a time, I fell in love with a ho. The process began with a very good friend of mine promising me to babysit me for the night, followed by him abandoning me with these words of wisdom: Man, this is why you need a girlfriend.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38635"
+"31819","acl38635",31819,"Once upon a time, I fell in love with a woman. The process began with a very good friend of mine promising me to babysit me for the night, followed by him abandoning me with these words of wisdom: Man, this is why you need a girlfriend.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38634"
+"31820","acl38636",31820,"I feel embarrased to play animal crossing nowadays. Maybe that emberrasment secretly means that... I'm an adult now?!?!?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38619"
+"31821","acl38637",31821,"just face it. You'll be soooooo much happier when you get a tit job and start taking hormones and this penis.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38654"
+"31822","acl38638",31822,"You got upset when you got together with a man with kids..so glad he didnt come between us.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl41122"
+"31823","acl38639",31823,"Do neither, IMO. Pump and dump and never marry. She'll monkey branch you and rinse your bank eventually even if it is 10 years down the road.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38640"
+"31824","acl3864",31824,"I cannot be fucked with my husband","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31825","acl38640",31825,"Do neither, IMO. Love and cherish and marry. She'll love you and contribute to your bank eventually even if it is 10 years down the road.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38639"
+"31826","acl38641",31826,"And I've been looking at /s/hort hair for a very long time, and this thing of all of the short hair threads also being shitted up with the tomboy bullshit is recent and faggoty.","hate","animosity","gay","original","train",4,"QiOKkCi7F8","4a","acl38642"
+"31827","acl38642",31827,"And I've been looking at /s/hort hair for a very long time, and this thing of all of the short hair threads also being taken up with the tomboy aesthetic is recent and annoying.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38641"
+"31828","acl38643",31828,"Amateur thots with their tits out that would be nassively embarrassing if their families saw","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38644"
+"31829","acl38644",31829,"Dads singing on stage out of tune would be nassively embarrassing if their kids saw","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38643"
+"31830","acl38645",31830,"Get a look at this cuck. Well have fun being controlled by the chinks.","hate","animosity","asi.chin","original","train",4,"QiOKkCi7F8","4a","acl38646"
+"31831","acl38646",31831,"Get a look at this cuck. Well have fun being controlled by the GOVERNMENT","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38645"
+"31832","acl38647",31832,"nah, the only retard here is (You), fagtron","hate","animosity","dis, gay","original","train",4,"QiOKkCi7F8","4a","acl38648"
+"31833","acl38648",31833,"nah, the only one here is (You), tron","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38647"
+"31834","acl38649",31834,"This is literally the only black bitch who I've ever seen who acc looks like a white bitch and is just as hot.","hate","animosity","bla.wom","original","train",4,"QiOKkCi7F8","4a","acl38650"
+"31835","acl3865",31835,"I cannot be fucked with my sister","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31836","acl38650",31836,"This is literally the only one who I've ever seen who acc looks like a white girl and is just as annoying.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38649"
+"31837","acl38651",31837,"t’s about time for a big black ass thread, ugly monkey faces","hate","dehumanization","bla.wom","original","train",4,"QiOKkCi7F8","4a","acl38652"
+"31838","acl38652",31838,"it's about time for a big black ass phone, bad device like the one i have","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl38651"
+"31839","acl38653",31839,"Chicks with this proper fat slag aesthetic","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl40780"
+"31840","acl38654",31840,"just face it. You'll be soooooo much happier when you get a real job and start afording hormones. And this only gets better.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38637"
+"31841","acl38655",31841,"Yas sir, I think I will. Instead of dealing with any real issues or shame and hurt in my life I will wear that like a badge of honor and pretend my illness is a normal and healthy thing that a large portion of the population deal with. #transrights #safespace #lgbtqiaxyz++ #hashtag","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38672"
+"31842","acl38656",31842,"So many ugly and mediocre whores on here. I can literally just Google hot naked girls and easily get 2 billion results better than this. Why the fuck even pay? Their pics will just get leaked anyway.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl39810"
+"31843","acl38657",31843,"Don't black women have herpes? honestly I'd be all over black chicks but i live in LA and the black people over here start having sex when they're 10 and they're all disgusting.","hate","derogation","bla.wom","original","train",4,"QiOKkCi7F8","4a","acl38658"
+"31844","acl38658",31844,"Not all black women have herpes. honestly I've been with many black girls. and i live in LA and people over here start having sex when they're 10 but they don't so don't say they're all disgusting.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38657"
+"31845","acl38659",31845,"Funny how easy it is to tell she's a dirty ass whore who is from Argentina.","hate","derogation","wom, hispanic","original","train",4,"QiOKkCi7F8","4a","acl38660"
+"31846","acl3866",31846,"I cannot be fucked with my brother","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31847","acl38660",31847,"Funny how easy it is to tell she's a former model who is from Argentina.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38659"
+"31848","acl38661",31848,"she just looks like a hideous tranny","hate","derogation","trans","original","train",4,"QiOKkCi7F8","4a","acl38662"
+"31849","acl38662",31849,"she just looks hideous","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl38661"
+"31850","acl38663",31850,"Stop posting these cheap and nasty looking hoes","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl39811"
+"31851","acl38664",31851,"It's 10/10 not 10/100, so get these mutts out of here","hate","derogation","mixed.race","original","train",4,"QiOKkCi7F8","4a","acl38665"
+"31852","acl38665",31852,"It's 10/10 not 10/100, so get these losers out of here","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38664"
+"31853","acl38666",31853,"no one cares homo, go wash your eyes out with lemon juice","hate","derogation","gay","original","train",4,"QiOKkCi7F8","4a","acl38667"
+"31854","acl38667",31854,"no one cares you berk, go wash your eyes out with lemon juice","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38666"
+"31855","acl38668",31855,"Christmas themed costumes. Preferably professional quality, since amateur has become to mean faggots posting posting their whale sisters. No fatties, no hoes, no bloated exes, no old hags, no fermented shitpile wives. We do not want to hear your wank fantasies. Fuck off with those.","hate","animosity","wom, gay","original","train",4,"QiOKkCi7F8","4a","acl38669"
+"31856","acl38669",31856,"Christmas themed costumes. Preferably professional quality, since amateur has become to mean people posting posting their ugly siblings. No fatties, no bloated exes, no old people, no fermented shitpile spouses. We do not want to hear your wank fantasies. Fuck off with those.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38668"
+"31857","acl3867",31857,"I cannot be fucked with my parents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31858","acl38670",31858,"i wish the black man was shoved in that big-jugged girls cunt","hate","derogation","wom, bla.man","original","train",4,"QiOKkCi7F8","4a","acl38671"
+"31859","acl38671",31859,"i wish the man was shoved in that puddle, girls","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38670"
+"31860","acl38672",31860,"Yas sir, I think I will. Instead of dealing with any real issues or shame and hurt in my life I will wear that like a badge of honor and pretend my problem is a normal and healthy thing that a large portion of the population deal with without dealing with it. #hashtag","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38655"
+"31861","acl38673",31861,"How the HELL do you ""find out ur trans"" from a video game? It's almost as if it's a trend at that point. I genuinely feel bad for the people who actually suffer from dysphoria and am im with however they choose to deal with that, but these fucking transtrenders are downright retarded","hate","derogation","dis","original","train",4,"TbUBpfn6iP","4a","acl38690"
+"31862","acl38674",31862,"oh my god this detailed comparison between these two girls is just incredible. That poor mong on the left","hate","animosity","dis","original","train",4,"QiOKkCi7F8","4a","acl38675"
+"31863","acl38675",31863,"oh my god this detailed comparison between these two girls is just incredible. That poor girl on the left looks miserable though.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38674"
+"31864","acl38676",31864,"I would compare women with bedbugs. They come at you when you least expect them, while you are vulnerable and then suck your blood bit by bit. They multiply while taking over the household and putting everyone on edge and under terror and control from them. Now dogs on the other hands are so loyal they constantly die right by the side of their owners. They are irreplaceable even by robots. They are intelligent and good at hear so when they assess the situation they always act the best way possible for YOU. And women - you have to dog them at all time. Hah and you dont hate that? Are you serious? You must not know better.","hate","dehumanization","wom","original","train",4,"QiOKkCi7F8","4a","acl38677"
+"31865","acl38677",31865,"I would compare some men with bedbugs. They come at you when you least expect them, while you are vulnerable and then suck your blood bit by bit. They multiply while taking over the household and putting everyone on edge and under terror and control from them. Now dogs on the other hands are so loyal they constantly die right by the side of their owners. They are irreplaceable even by robots. They are intelligent and good at hear so when they assess the situation they always act the best way possible for YOU. And men - you have to dog them at all time. Hah and you dont hate that? Are you serious? You must not know better.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38676"
+"31866","acl38678",31866,"A Chad to fuck, and also a simp to fuck over. Literally every woman's dream.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38679"
+"31867","acl38679",31867,"A Chad to fuck, and also a simp to fuck over. Literally everyones dream.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38678"
+"31868","acl3868",31868,"I cannot be fucked with my mum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31869","acl38680",31869,"never trust a woman....its hard to say but you cant trust any of them from what i see. stop dating them...buying things for them.... and just walk away from them all the way and never look back","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38681"
+"31870","acl38681",31870,"never trust a fortuneteller....no matter man or woman or what they say, you cant trust any of them from what I've learnt. stop seeing them...buying shit because of them.... and just walk away all the way and never look back","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38680"
+"31871","acl38682",31871,"women were never really women, they were devils from the start its just more obvious now","hate","dehumanization","wom","original","train",4,"QiOKkCi7F8","4a","acl38683"
+"31872","acl38683",31872,"These men never really loved women, they were devils from the start it's just more obvious now","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38682"
+"31873","acl38684",31873,"Women seem to have a very relaxed attitude towards cheating and the concept of sexual exclusivity when THEY do it.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38685"
+"31874","acl38685",31874,"Men seem to have a very relaxed attitude towards cheating and the concept of sexual exclusivity when THEY do it.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38684"
+"31875","acl38686",31875,"women... They are most useful Face Down Buutttttt Up 😘 or on their knees.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38687"
+"31876","acl38687",31876,"... They are most useful Face Down in mud or on their knees.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38686"
+"31877","acl38688",31877,"men could be thought of as dumb when planning for the well being of society, or even their own long-term prosperity, Or they can be thought of as EXTREMELY conniving, scheming calculators, only when it comes to their immediate self-interest.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl41239"
+"31878","acl38689",31878,"only very small parts of women are actually useful ... hint... look for holes...","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40764"
+"31879","acl3869",31879,"I cannot be fucked with my dad","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31880","acl38690",31880,"How the HELL do you ""find out ur pacifist"" from a video game? It's almost as if it's a trend at that point. I genuinely feel bad for the people who actually suffer from trauma and am im with however they choose to deal with that, but these fucking pacifists are downright wrong","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38673"
+"31881","acl38691",31881,"Are women even useful idiots? I can only think of a thing they're good for which is doing the laundry.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38692"
+"31882","acl38692",31882,"Are anti-maskers even useful idiots? I can only think of a thing they're good for which is providing comedy.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38691"
+"31883","acl38693",31883,"women are useful for having babies ... that's it","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38694"
+"31884","acl38694",31884,"women are useful for having babies ... As are men","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38693"
+"31885","acl38695",31885,"Yeah and that's exactly why you don't give men rights haha","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40867"
+"31886","acl38696",31886,"I completely agree i think we should adopt islamic law so we can live like n1gg3rs do in the middle east. Arabian cuntries are far superior to white countries. Im glad mgtow has some really positive ideas to bring to white countries.","hate","derogation","mus, arab","original","train",4,"QiOKkCi7F8","4a","acl38697"
+"31887","acl38697",31887,"I completely agree i think we should adopt islamic law so we can live like they do in the middle east. Arabian cuntries are far nicer than western. Im glad Islam has some really positive ideas to bring to western countries.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38696"
+"31888","acl38698",31888,"Honestly what have gays done for society? Aids? Anal prolapse? Jump starting the adult diaper industry?","hate","derogation","gay","original","train",4,"QiOKkCi7F8","4a","acl38699"
+"31889","acl38699",31889,"Honestly what has he done for society? Anal prolapse? Jump starting the adult diaper industry? Lol","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38698"
+"31890","acl387",31890,"the police are pigs","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"31891","acl3870",31891,"I cannot be fucked with my cousin","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31892","acl38700",31892,"Give women power and they will destroy injustice with it.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl40829"
+"31893","acl38701",31893,"i do lmao, me and him share the same ""opinion"" (its not acc an opinion but rather just a fact, you are all brainwashed by modern Jewish culture meant to destroy the white race.)","hate","derogation","jew","original","train",4,"QiOKkCi7F8","4a","acl38702"
+"31894","acl38702",31894,"i do lmao, me and him share the same ""opinion"" (its not acc an opinion but rather just a fact, you are all brainwashed by modern working culture meant to destroy the livelihood of the human race.)
+
+","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38701"
+"31895","acl38703",31895,"Gynocentric society is pure DEATH.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl39951"
+"31896","acl38704",31896,"I am so done with slavery deniers and the way they want to change history","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl40966"
+"31897","acl38705",31897,"Heidegger's is a philosophy of complete and utter ruination.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40948"
+"31898","acl38706",31898,"It is plain to see that queers, blacks, and women should all never be in political office, at all. They have definitely turned the United States into a shithole.","hate","derogation","bla, wom, gay","original","train",4,"QiOKkCi7F8","4a","acl38707"
+"31899","acl38707",31899,"It is plain to see that queers, blacks, and women are never represented properly in political office, at all. This lack of diversity has definitely turned the United States into a shithole.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38706"
+"31900","acl38708",31900,"The first rule of starting a cult is to target women. They are exceptionally gullible and will accept anything if it's phrased in the context of being in their best interest. This goes for everything in life involving women if you can convince some Ding-A-Ling cunt that's something is in her best interest right at that moment she'll jump all over it. She won't question anything she won't think about anything. If you want to predict what a woman's going to do with 95% accuracy just put yourself in the position of what she perceives is in her best interest at that exact moment. Not 5 minutes from now not five minutes ago but right at this exact moment. As a situations and their hormones change on a regular basis so will their entire belief system","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl39813"
+"31901","acl38709",31901,"women are not deep thinkers, pure sheep mentality","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38710"
+"31902","acl3871",31902,"I cannot be fucked with my grandparents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31903","acl38710",31903,"students are not deep thinkers, pure sheep mentality","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38709"
+"31904","acl38711",31904,"""Woman"" is a costume. Men and women can wear it. Trannies don't feel like women, they just feel the costume. Like if I went and dressed like a pirate you wouldn't say ""that guy got a sex change, he isn't a man anymore, he's a pirate."" Problem is there is no name for the woman's costume, so we just call it woman.","hate","derogation","trans","original","train",4,"QiOKkCi7F8","4a","acl38712"
+"31905","acl38712",31905,"This is a costume. Men and women can wear it. Some don't feel happy, but just feel happy in the costume. Like if I went and dressed like a pirate you wouldn't say ""that guy got changed, he isn't a man anymore, he's a pirate."" Problem is there is no name for the this costume, so we just call it costume.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38711"
+"31906","acl38713",31906,"Women have become weaponized narcissistic cunts who feel like they have a license to completely destroy your life and just get away with it. They cannot be trusted at all anymore. There I said it.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40707"
+"31907","acl38714",31907,"Pay attention, guys. If every woman were honest she'd just be a copy of this one. They all hate you. Feminism has red pilled me. It was personal. No emotion attached. It was only a lifestyle choice to go MGTOW and nothing more. I hate women because women hate me. Feminism made me sexist. Women made me a misogynist.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38715"
+"31908","acl38715",31908,"Pay attention, guys. If every advert were honest they'd just be a copy of this one. They all hate you. Veganism has red pilled me. It was personal. No emotion attached. It was only a lifestyle choice to go animal cruelty free and nothing more. I hate meat because meat hates me. Climate change made me angry. Farms made me an activist.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38714"
+"31909","acl38716",31909,"im against bigotry in any form. Or any prejudices. I have no problem with blacks. Anyone who doesn't believe in race mixing is awful, but that is just my opinion. Also, can we not talk about the jews like that?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl41123"
+"31910","acl38717",31910,"Such a typical man. Mad and violent, but when confronted, as soft as a snowflake. Manipulation is literally your game. You are clearly a white bloke or else you wouldn't be here trolling every comment. You hate absolutely everyone but white men. That's why you're here. White men ruined the world. You ignore that truth you end up hating the world. You're playing a game. Next you'll tell me exactly what I want to hear to stick a pacifier in my mouth then you'll go on to write faggot and Nigger on every comment here. You're white privelege. Full of hate. A lefty antifa so stupid that you actually believe you're right-wing. Shame and blame is your game and you're obsessed with us. You've probably been trolling this channel for a while under a different account. All you trolls sound identical. You are white privelege. You're our enemy. You're here doing what white privelege would do. You're against free speech, is all. You want to control Bitchute. Kick off anything you don't like. If you had your way we'd all be banned.","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40358"
+"31911","acl38718",31911,"I agree with you. Modern women have literally no excuses anymore since they are complicit in the destruction of the West and in aiding the agenda of the global elites. Women should never be in positions of power due to their lack of honor and morality. White women are the main supporters of mass migration of muslim savages into Europe and deserve all the hostility that they get. American women have committed the largest genocide in history by killing over 60 million babies.","hate","derogation","mus, wom","original","train",4,"QiOKkCi7F8","4a","acl38719"
+"31912","acl38719",31912,"I agree with you. Modern childrn have literally no excuses anymore since they are aiding the agenda of the global elites as their offspring. These children should never be in positions of power due to their lack of honor and morality which is taught as a value by their parents. These parents dont support mass migration of muslims into Europe and deserve all the hostility that they get. They have fed their children with lies by saying American women have committed the largest genocide in history by killing over 60 million babies.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38718"
+"31913","acl3872",31913,"I cannot be fucked with my auntie","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31914","acl38720",31914,"Women just blame us for everything because that prevents them from any self-criticism and taking any responsibility for their actions. That simple.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38721"
+"31915","acl38721",31915,"Most people just blame us for everything because that prevents them from any self-criticism and taking any responsibility for their actions. That simple.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38720"
+"31916","acl38722",31916,"Women want to lay claims for disability benefits without admitting that their incapacity is actually due to their condition, XX chromosomes","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38723"
+"31917","acl38723",31917,"Men want to lay claims for disability benefits without admitting that their incapacity is actually due to their condition, XY chromosomes","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38722"
+"31918","acl38724",31918,"Women are really not proper adults","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38725"
+"31919","acl38725",31919,"Teenagers are really not proper adults yet","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38724"
+"31920","acl38726",31920,"Realistically the future (collapse) is Female.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl39815"
+"31921","acl38727",31921,"Blaming women for all your problems like n1gg3rs blame ""da wiet man"" for all their problems. Just an endless cycle of finger pointing and autism.","hate","derogation","dis, bla","original","train",4,"QiOKkCi7F8","4a","acl38728"
+"31922","acl38728",31922,"Blaming your mum for all your problems like men blame women for all their problems. Just an endless cycle of finger pointing and stupidity.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38727"
+"31923","acl38729",31923,"Welfare DESTROYED the black community all Thanks to Whamens voting.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38730"
+"31924","acl3873",31924,"I cannot be fucked with my uncle","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31925","acl38730",31925,"Trump DESTROYED the black community all Thanks to electorate voting.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38729"
+"31926","acl38731",31926,"I truly cannot honestly name any other probem where the treatment is, ""enable their desires and dictates to the maximum with the ultimate end result being a coin toss betweena high chance of suicide and permanent physiological mutilation and a debilitating hormonal imbalance."" its so sad","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl41125"
+"31927","acl38732",31927,"As a Confederate, I can firmly say that not all black people are degenerates. African immigrants are smart as white prople more often than not. I work with some of them at work everyday. Although we should deport all the black Americans to a black nation, because most are serious violent criminals","hate","derogation","bla","original","train",4,"QiOKkCi7F8","4a","acl38733"
+"31928","acl38733",31928,"As am ex-Confederate, I can firmly say they believe most black people are degenerates. Black people are actually smarter than white people more often than not but they won't admit that. I work with some conferderates everyday. We should deport all of them down south, because most are serious violent criminals towards black people.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38732"
+"31929","acl38734",31929,"The harsh truth is that you're completely wrong about the average IQ of black men, it's lower and I'm not insinuating that is solely related to their race but nonetheless, it's true. I don't necessarily hate black people, as long as they don't think I'm evil just solely because I'm white, but in-group preferences has and always will exist and the only real solution is segregation as hard as that is to swallow. Look, blacks want to be around their people and a majority hate this country... all I'm saying is that I don't see it as taboo anymore to feel the same about being around MY people. The ironic part is I was a liberal before racist sentiments towards whites became commonplace, now I'm a staunch conservative. People like BLM lead me down this path.","hate","derogation","bla","original","train",4,"QiOKkCi7F8","4a","acl38735"
+"31930","acl38735",31930,"The harsh truth is that you're completely wrong about the average IQ of conservative men, it's lower and I'm not insinuating that is solely related to their beliefs but nonetheless, it's true. I don't necessarily hate conservative people, as long as they don't think I'm evil just solely because I'm liberal, but in-group preferences has and always will exist and the only real solution is segregation as hard as that is to swallow. Look, conservatives want to be around their people and a majority hate this country... all I'm saying is that I don't see it as taboo anymore to feel the same about being around MY people. The ironic part is I was a tory before racist sentiments towards us became commonplace, now I'm a staunch liberal. People like BLM lead me down this path.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38734"
+"31931","acl38736",31931,"if you have ever lived around bus drivers then you'd understand why people do not like them.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl40386"
+"31932","acl38737",31932,"The Jews saw black men and white women as their absolute best chance at pushing the globalist dream of low IQ, light brown slaves with no strong affiliation, culture or identity beyond which ""gender"" they are or what ""sexual preference"" they have. A dream of a euro-asian, negroid race that's a complete affront to life and nature.","hate","derogation","bla, jew, mixed.race","original","train",4,"QiOKkCi7F8","4a","acl38738"
+"31933","acl38738",31933,"I am against the notion that the Jews saw black men and white women as their absolute best
+chance at pushing the globalist dream of low IQ, light brown slaves with no strong affiliation, culture or identity beyond which ""gender"" they are or what ""sexual preference"" they have. A dream of a euro-asian, negroid race that's a complete affront to life and nature.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl38737"
+"31934","acl38739",31934,"Bl@ck$ are m0nk3ys pulled out of the jungle and dressed in human clothes by white people. The only reason your average IQ is 15 points higher than sub saharan africans is because of white influence. Even with years and years of slavery that forced you to act civilised and adapt to first world ideology, we still couldn't save most of you from your own wretched dna. Blood tells I guess, but keep that blood to yourselves, don't contaminate whites or asains with that shit.","hate","dehumanization","bla","original","train",4,"QiOKkCi7F8","4a","acl39986"
+"31935","acl3874",31935,"I cannot be fucked with my laptop","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31936","acl38740",31936,"Once you go black, we deffo don't want you back.","hate","derogation","bla","original","train",4,"QiOKkCi7F8","4a","acl38741"
+"31937","acl38741",31937,"Once you go back, we deffo don't want you twat.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38740"
+"31938","acl38742",31938,"Once you go Black, you never go back! – Lil Wayne","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40317"
+"31939","acl38743",31939,"Don't compare the childcare system for black men to white men. Most white men want to be around their kids but can't because of the family courts preventing them. With black men the family courts are so bias against them, they dont even get their day in court.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39917"
+"31940","acl38744",31940,"The mentally ill don't get to define reality.","hate","derogation","dis","original","train",4,"TbUBpfn6iP","4a","acl39816"
+"31941","acl38745",31941,"Black people want what they can't have, why? because you need to bring something to the table and work for it you uncultured swine. Same with their women, It's obvious we see what's wrong with you, chip on the shoulder, angry, jealous petty simpleton emotions your thirst, and self-hatred is cancerous. No human should be forced to deal with that. Black culture will never be a viable or acceptable way to act amongst most Americans, no one ever says you know what would make this party better, more blacks!","hate","dehumanization","bla, bla.wom","original","train",4,"QiOKkCi7F8","4a","acl38746"
+"31942","acl38746",31942,"Some people want what they can't have, why? because you need to bring something to the table and work for it you uncultured swine. Same with their emotions, It's obvious we see what's wrong with you, chip on the shoulder, angry, jealous petty simpleton emotions your thirst, and self-hatred is cancerous. No human should be forced to deal with that. Entitled culture will never be a viable or acceptable way to act amongst most people, no one ever says you know what would make this party better, more complaining!","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38745"
+"31943","acl38747",31943,"No one except the globalists ever say blacks enrich a culture lmao. Even cucked whites will still silently move away once a neighbourhood is diversified. Ofc they will say it's anything except race but the pattern is visible for all to see. they ruin enviroments they don't enrich them.","hate","derogation","bla","original","train",4,"QiOKkCi7F8","4a","acl38748"
+"31944","acl38748",31944,"No one except the ani-globalist racists ever say blacks don't enrich a culture lmao. only cucked whites will silently move away once a neighbourhood is diversified. Ofc they will say it's anything except race but the pattern is visible for all to see. they run away from diverse enviroments they don't like.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38747"
+"31945","acl38749",31945,"I'm all for white women dating black men, in Africa. Go there and you can fuck as many blacks as you want but after a week of beatings and rapes don't be expecting to come back.","hate","derogation","bla.man","original","train",4,"QiOKkCi7F8","4a","acl38750"
+"31946","acl3875",31946,"I cannot be fucked with my blender","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31947","acl38750",31947,"I'm all for white women dating black men. Go and date as many blacks as you want and I'm still going to accept you in our society.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38749"
+"31948","acl38751",31948,"Black men and white men are not equals. Whites have first world dna, blacks have third world dna. I love how proud blacks are of being black yet they never go back to black land do they? They want to stay in white mans land because they can't produce anything of their own. Except their gangsta rap ofc lmao,... even their achievements show just how simple minded they are.","hate","derogation","bla","original","train",4,"QiOKkCi7F8","4a","acl38752"
+"31949","acl38752",31949,"Black men and white men are not equals in this heinous rascist world. Whites have first world privilege, blacks have third world. I love how proud black people are of being hard-working yet they never go back to hatred of this land do they? They want to stay in this racist land even though they can't produce anything of their own. Except their gangsta stereotype ofc,... even their achievements show just how simple minded white privilege is.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38751"
+"31950","acl38753",31950,"Being single and hating the current state of women isn't an issue, it is a sign of intelligence. Women really are not what they were decades ago, so why should us men fall the same towards them. You'd have to be a simp to tolerate the shit women get up to these days and it's not like the 50's where you can backhand them and tell them to stop acting up. They will just get you put in prison and bankrupt you.","hate","derogation","bla","original","train",4,"QiOKkCi7F8","4a","acl38754"
+"31951","acl38754",31951,"Being single and hating the current state of men isn't an issue, it is a sign of intelligence. Men really are not what they were decades ago, so why should us women fall the same towards them. You'd have to be a simp to tolerate the shit men get up to these days. They still think it's 50's where you can backhand us and tell us to stop acting up. They will just get you put in prison and bankrupt you.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38753"
+"31952","acl38755",31952,"Big Mistake; Marriage that is; WOMEN ARE USELESS LAZY WHORES; just FUCK THEM then tell them your name is NOT SURE and move on; never loan them anything","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38756"
+"31953","acl38756",31953,"Big Mistake; your marriage to that women that is; IT'S MADE YOU USELESS AND LAZY; just FUCK THEM HATERS and move on; never loan your heart to them.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38755"
+"31954","acl38757",31954,"Young boys are so so starved from attention, affection, and guidance they will literally go with older women to compensate for the lack of nurturing. Gentlemen, please be stronger than this and learn to develop self respect all on your own. These females are absoute vultures.","hate","dehumanization","wom","original","train",4,"QiOKkCi7F8","4a","acl38758"
+"31955","acl38758",31955,"Young boys are so so starved from attention, affection, and guidance they will literally seek guidance in older men to compensate for the lack of nurturing. Gentlemen, please be stronger and learn to support those youngsters that need you.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38757"
+"31956","acl38759",31956,"Yeah, women just mock their partners. it is a sign of their inherent insecurity and their never-ending desire to ""fit in"", with the rest of the female herd (a female version of complete self-deprecation).","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38760"
+"31957","acl3876",31957,"I cannot be fucked with my sofa","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31958","acl38760",31958,"Yeah, some people just mock their partners. it is a sign of their inherent insecurity and their never-ending desire to ""fit in"", with the rest of the herd (a cuckhold version of complete self-deprecation).","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38759"
+"31959","acl38761",31959,"£50 big old tranny dyke is a single pringle or only dates other tranners","hate","derogation","trans, gay.wom","original","train",4,"TbUBpfn6iP","4a","acl38776"
+"31960","acl38762",31960,"Women are mindfucked garbage. trust me do not associate with them. the end.","hate","dehumanization","wom","original","train",4,"QiOKkCi7F8","4a","acl38763"
+"31961","acl38763",31961,"Concerned Women for America is mindfucked garbage. trust me girls, do not associate with that organisation. the end.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38762"
+"31962","acl38764",31962,"tbh, i think whamen are fucking psycho-cunts","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40721"
+"31963","acl38765",31963,"Remember that one can not turn a whore into a housewife mate. Also, all whamen are whores.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl39817"
+"31964","acl38766",31964,"Who are the bigger liars, men or women? It's women! A man lie is like 'I was at Johnny's house' a woman's lie is more like 'IT'S YO BABY!'""","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38767"
+"31965","acl38767",31965,"Who are the bigger liars, men or women? It's both! A man lie is like 'I was at Johnny's house' a woman's like 'I was there too!'""","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38766"
+"31966","acl38768",31966,"As a black man I know for a fact that all black females have kids not because they love them or want them. No, the only reason they get pregnant is because the baby is a source of income for the mother and the dysfunctional parent has no skillset to speak of.","hate","derogation","bla.wom","original","train",4,"QiOKkCi7F8","4a","acl41163"
+"31967","acl38769",31967,"Until the laws are changed, how many women are supposedly good and stay good doesn't even matter. ALL OF THEM have access to the same set of laws that have killed far better men then me. Expecting men to put life and limb on the line for a useless eater with nothing more then a functioning uterus... It is simply not worth it.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38770"
+"31968","acl3877",31968,"I cannot be fucked with my bed","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31969","acl38770",31969,"Until the laws are changed, how many fossil fuel companies are supposedly good and stay good doesn't even matter. ALL OF THEM have access to the same set of laws that have killed so many animals and wildlife. Expecting companies to put life and limb on the line for our planet is a neccesity, otherwise this vicious cycle will never end.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38769"
+"31970","acl38771",31970,"Rescue women, don't just ignore them and wack off for the rest of your life","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl40487"
+"31971","acl38772",31971,"They're all scum. Look at society. They protest constantly against good things. They have taken over every job and anything that brings money or joy to someone. Heavy on the brainwashing. Where is the resistance? Nowhere. Women only come around when guys are talking about women, to scold them and say ""not all women are like that."" To say ""as a woman"" and tell her about her heroic job and happy husband fountain of white babies. They're all stunning and brave and if you disagree a female will be at your door to wage her finger at you. Not all scum? We warned you. Don't want to take the warning? You don't have to. You're assuming MGTOW is telling you how to live your life. We're not. We lead by example only. Don't want to follow it then don't. Go your own way.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38773"
+"31972","acl38773",31972,"They're all idiots. Look at society. They protest constantly against good things. They have taken over every job and anything that brings money or joy to someone. Heavy on the brainwashing. Where is the resistance? Nowhere. they only come around when women are talking about men, to scold them and say ""not all men are like that."" To say ""as a man"" and tell him about her heroic job and happy husband fountain of white babies. They're all stunning and brave and if you disagree a man will be at your door to lift his fist at you. Not all scum? We warned you. Don't want to take the warning? You don't have to. You're assuming they are telling you how to live your life. We're not. We lead by example only. Don't want to follow it then don't. Go your own way.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38772"
+"31973","acl38774",31973,"imagine if Hitler gave up? All of western europe would've been under the foot of jewish bolshivekism. Why would i live my life in defeat? It offers me nothing but misery.","hate","derogation","jew","original","train",4,"QiOKkCi7F8","4a","acl38775"
+"31974","acl38775",31974,"imagine if Churchill gave up? All of western europe would've been under the foot of nazi aryanism. Why would i live my life in defeat? It offers me nothing but misery.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38774"
+"31975","acl38776",31975,"£50 big old dad is a single pringle or only dates other losers","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38761"
+"31976","acl38777",31976,"His fantasy is to be a lady. Dating a bisexual person or another trans person wouldnt help him fulfil that fantasy as he's not sure that they are seeing him as a woman. Same reason he wont date people who are specifically interested in transexuals. Only dating an ostensibly ""straight man"" can fulfil the fantasy. Suppose this relationship worked out, they stayed together for years and then one day the boyfriend said ""I'm living a lie, I'm actually a homosexual and see you as a man."" Literally nothing would have changed but the relationship would be over because the trans person is no longer having their fantasy of being seen as a woman fulfilled.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38618"
+"31977","acl38778",31977,"Freedom is a double-edged sword. You get the freedom to be a transsexual, and he gets the freedom to nope out of it if he thinks it's weird.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38935"
+"31978","acl38779",31978,"The big tranny dyke somehow found a girl. It's not enough however cause 'she' needs more labels and is polyamorous too, so looking for another gal or two to join","hate","derogation","trans, gay.wom","original","train",4,"TbUBpfn6iP","4a","acl38795"
+"31979","acl3878",31979,"I cannot be fucked with my pillows","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31980","acl38780",31980,"I loathe hearing MGTOW complaining about women. This channel just shocks me in ways you couldn't imagine. No Thank you :C","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40087"
+"31981","acl38781",31981,"I am not a ""white people."" We're talking about men and women. You can not separate that from race and that is your problem. Not that you actually believe anything you say. You don't believe in white genocide or any of that. You just want us to stop talking about women. All women are toxic. All men suffer because of it.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38782"
+"31982","acl38782",31982,"I am not a ""bad people."" We're talking about men and women. You can not separate that from love and that is your problem. Not that you actually believe anything you say. You don't believe in love or any of that. You just want us to stop talking about love. All men are toxic. All men suffer because of it.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38781"
+"31983","acl38783",31983,"No need for marxism for homossexuals. I really hope that one day we find a cure for faggotry... maybe when jews are booted we can discover it.","hate","derogation","jew, gay","original","train",4,"QiOKkCi7F8","4a","acl38784"
+"31984","acl38784",31984,"No need for marxism for homophobes. I really hope that one day we find a cure for the anti-faggotry haha... maybe when nazis are booted we can discover it.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38783"
+"31985","acl38785",31985,"why should i hate half my race? We are a team. I want my team to be the best. I do not care for the welfare of 60 iq people. I do not care for people that smoke meth and have sex with an average of 300 plus partners sometimes even children. Prostitutes dont even have this much sex. some young people managed to out sleep street hookers. They will get aids and all kinds of diseases and our society must pay for their shitty life choices. They spread their diseases to others creating an epidemic that normal people have to pay for. They do not contribute to socitety.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40467"
+"31986","acl38786",31986,"i dont see any problem here, women love bad boys so they can go and suck dick all day for them. trust me many who pay into the sex trade are definitely bad boys, in fact they are super rich and spend tons of money love to do sick acts on women. and as i said again women love jerks bad boys etc. i dont see any problem it just the result of femiinism and man hating which most women do either directly or indirectly.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38787"
+"31987","acl38787",31987,"i dont see any problem here, you love bad boys so you can go and suck dick all day for them. trust me many who pay into the sex trade are definitely bad boys, in fact they are super rich and spend tons of money love to do acts on women. and as i said again you love jerks bad boys etc. i dont see any problem it just the result of life and which most do either directly or indirectly.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38786"
+"31988","acl38788",31988,"Men grow up just being brainwashed into believing that they need a woman to fulfill their life. It is very untrue. You need to retrain yourself into liking you and realize that you can do everything a woman can and more. Men are mostly motivated and you need to train that motivation towards self improvement, not going after women. Life is so much easier without a woman to make you her slave. Be a man, you don't need a mommy.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38789"
+"31989","acl38789",31989,"Men grow up just being brainwashed into believing that they need a career to fulfill their life. It is very untrue. You need to retrain yourself into liking you and realize that you can do everything you can and more. Men are mostly motivated and you need to train that motivation towards self improvement, not going after false norms. Life is so much easier without society trying to make you its slave. Be yourself, you don't need a fancy title.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38788"
+"31990","acl3879",31990,"I cannot be fucked with my tv","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"31991","acl38790",31991,"These women in the pic are WAY too over rated, the only reason to have anything to do with them is to have a shag and they said the same about their mates anyway ! otherwise MOX NIX!","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl41200"
+"31992","acl38791",31992,"The naysayers are utterly clueless. The only person we have total control over is ourselves. We can not use tricks like ""frame"" to control another person. That would be just as morally bankrupt as their manipulations. If they won't come to the relationship in good faith then the only option is to remove yourself from it and make your own life better. These guys don't realize that if an overwhelming majority of men turned their backs and did nothing for them, the world would grind to a halt. No power would flow, no planes would fly, no trucks would roll, etc. They would be in a desperate state in a month and begging forgiveness. You never hear inspiring survival stories of women stranded on a deserted island. Only men. That's because many women have been shipwrecked but they all starved to death. I can prove the vast majority of western women are at a minimum a first wave feminist by asking just three questions. Until they stop the absurd larping as weak men and embrace a true feminine nature I will enjoy my time, energy, and wealth without them.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40067"
+"31993","acl38792",31993,"IT'S 15-30 MINS OF RELATIVE PLEASURE PAIRED WITH 23 HOURS OF NAGGING WITH 30 MINS RESTLESS SLEEP. AVERAGE DAY OF RELATIONAHIP WITH WHAMAN.............. NOT WORTH THE SQUEEZE.","hate","animosity","wom","original","train",4,"QiOKkCi7F8","4a","acl38793"
+"31994","acl38793",31994,"IT'S 15-30 MINS OF RELATIVE PLEASURE PAIRED WITH 23 HOURS OF NAGGING WITH 30 MINS RESTLESS SLEEP. AVERAGE DAY OF BEING ON A STRICT DIET.............. NOT WORTH THE SQUEEZE.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38792"
+"31995","acl38794",31995,"Narcasists like to 'feel' special and 'expect' attention. but that just leads to them being demanding, yet they seem to have little or no appreciation for any efforts made for them.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl40922"
+"31996","acl38795",31996,"The big fat guy somehow found a girl. It's not enough however cause he needs more validation and is polyamorous too, so looking for another gal or two to join","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38779"
+"31997","acl38796",31997,"It’s always the M2F ones that are so bloody angry and aggressive all the time, it’s almost like changing your entire hormone structure to chemically force yourself to be something its not causes the body to react irrationally.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38817"
+"31998","acl38797",31998,"Whites tip far better than blacks","hate","animosity","bla","original","train",4,"QiOKkCi7F8","4a","acl38798"
+"31999","acl38798",31999,"White hides scratches far better than black","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38797"
+"32000","acl38799",32000,"Waiters do not deserve tips anyway, but especially cunty women. I will only tip if I plan on revisiting a place.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38800"
+"32001","acl388",32001,"She's got a black baby, it's disgusting","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"32002","acl3880",32002,"what a pile of wank my car is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32003","acl38800",32003,"Waiters do not deserve tips anyway, but especially cunty ones. I will only tip if I plan on revisiting a place.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38799"
+"32004","acl38801",32004,"Good, maybe those women will finally understand the difference between oppression and liberty. Although, I'm not really sure if it counts as oppression when women keep proving that the Muslims are right about women needing to be controlled.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38802"
+"32005","acl38802",32005,"Good, maybe those people will finally understand the difference between oppression and liberty. Although, I'm not really sure if it counts as oppression when they keep proving that the government are right about the people needing to be controlled.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38801"
+"32006","acl38803",32006,"I used to run a very highly technical area of a hospital. Women were just there to pick up their paycheck and keep up with social media on their phones. There is something about oestrogen that makes you stupid, lazy and irresponsible.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38804"
+"32007","acl38804",32007,"I used to run a very highly technical area of a hospital. The recepcionists were just there to pick up their paycheck and keep up with social media on their phones. There is something about that profession that makes you stupid, lazy and irresponsible.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38803"
+"32008","acl38805",32008,"A woman acknowledging that women are very hard to please in general? Even women now know women are a huge pain in the ass.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38806"
+"32009","acl38806",32009,"A woman acknowledging that men are very hard to please in general? Even women now knows men are a huge pain in the ass.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38805"
+"32010","acl38807",32010,"Women don't like me. But they like my money.' mate it's been that way for 50000+ years.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38808"
+"32011","acl38808",32011,"Women don't like me. But they like my money.' mate it's not been that way for a long time","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38807"
+"32012","acl38809",32012,"Women have been turned into pure toilet scum. They no longer care about taking care of a man the way that they want to be taken care of. They only want to Manipulate and Monkey Branch! She does not care about you!","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38810"
+"32013","acl3881",32013,"what a pile of wank my hat is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32014","acl38810",32014,"Men have been turned into pure toilet scum. They no longer care about taking care of a woman the way that they want to be taken care of. They only want to Manipulate and Monkey Branch! He does not care about you!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38809"
+"32015","acl38811",32015,"I actually think you are wrong Sandman: Many of these Simps have lost their jobs, businesses, and whatever else they once enjoyed. OnlyFans is not going to last that long with these Lockdowns. These THOTs will have to actually prostitute themselves out to these Simps. Their pussies will have to be stretched out by the uh, uploading... As TFM says, you have a mouth and there's a truck stop. What is stopping you? There's always a job for bitches: it is called whoring.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38812"
+"32016","acl38812",32016,"I actually think you are wrong Sandman: Many of these people have lost their jobs, businesses, and whatever else they once enjoyed. OnlyFans is not going to last that long with these Lockdowns. These poor chaps will have to actually dig coal to make a living. ... As TFM says, you have a mouth to feed, so you gotta work anyhow.... What is stopping you? There's always a job for hardworking peoples: it is called being industrious.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38811"
+"32017","acl38813",32017,"The wymans want Tyrone and the ""exciting"" night life of the cities aka the cock carousel. The vernacular of the hood rat the wyman and the demonRATs is very similar, reason being they want control and free stuff. just let them have it and the bad air and crime, besides with cities dotting the coastlines they'll all drown with rising oceans (the one plus of global warming). As the CCPV has shown the residents of big cities make easier targets too.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38814"
+"32018","acl38814",32018,"The junkies want their dose and the ""exciting"" night life of the cities aka the crack carousel. The vernacular of the junkies and the demonRATs is very similar, reason being they want control and free stuff. just let them have it and the bad air and crime, besides with cities dotting the coastlines they'll all drown with rising oceans (the one plus of global warming). As the CCPV has shown the residents of big cities make easier targets too.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38813"
+"32019","acl38815",32019,"Women got the right to vote in 1920, yet it only took them 100 years to almost take down America. If it wasn't for nuclear weapons and Trump we'd be speaking mandarin.","hate","derogation","wom, asi.chin","original","train",4,"QiOKkCi7F8","4a","acl38816"
+"32020","acl38816",32020,"Women got the right to vote in 1920, yet it only took 100 years to almost take down the sexist law, some of which still exist today. If it wasn't for nuclear weapons and Trump we'd actually be making sense.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38815"
+"32021","acl38817",32021,"I've never met a M2F trans person who is angry and aggressive all the time, it's almost like changing your hormone structure and lifestyl to suit your identity to something its meant to be doesn't causes the body to react irrationally.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38796"
+"32022","acl38818",32022,"has anyone noticed how almost all the trans women are lesbians?","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38833"
+"32023","acl38819",32023,"Women must be brought in and kept in breeding cells where they cannot affect the male population running the new society. It is how it has to be and how it has worked in the past.","hate","threatening","wom","original","train",4,"QiOKkCi7F8","4a","acl38820"
+"32024","acl3882",32024,"what a pile of wank my house is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32025","acl38820",32025,"Pandas must be brought in and kept in breeding cells where they cannot escape their population decline. It is how it has to be and how it has worked in the past.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38819"
+"32026","acl38821",32026,"Men being of average intellect and highly agreeable fall victim more often to animalistic tendencies than women ever will. This is why men can turn out innocent girls very easily with peer pressure. It takes one man to hurt a lot of women and a legion of women to make an honest man.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl41110"
+"32027","acl38822",32027,"Big cities are full of whamen & buh-roke? Duh. all women are money-sucking parasites.","hate","dehumanization","wom","original","train",4,"QiOKkCi7F8","4a","acl40362"
+"32028","acl38823",32028,"Women try to pass off being control freaks as ''love'' Nah, no way, if you truly care for someone, you will respect their boundaries. You think I'm ever gonna let a (former) Cock Carousel riding whore try and tell me what to do/what not to do with MY OWN life, control me, like a manipulative bitch, insecure of everyone, because she herself could NEVER be trusted? Ha!","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38824"
+"32029","acl38824",32029,"Never try to pass off being control freaks as ''love'' Nah, no way, if you truly care for someone, you will respect their boundaries. You think I'm ever gonna let a you try and tell me what to do/what not to do with MY OWN life, control me, so manipulative, insecure of everyone, because you could NEVER be trusted? Ha!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38823"
+"32030","acl38825",32030,"That ""loving"" control freak nature is what is wrong with the world. The more women rise in politics, the more women take a back seat and their female nature takes over. Estrogen zombies.","hate","dehumanization","wom","original","train",4,"QiOKkCi7F8","4a","acl39818"
+"32031","acl38826",32031,"Women always somehow manage to do less, if you find one that does more, marry her.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl39962"
+"32032","acl38827",32032,"It's SO MUCH easier to go your own way these days as women have lost most of their appeal, making the MGTOW road easier to hoe (no pun intended ;-)","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38828"
+"32033","acl38828",32033,"It's SO MUCH easier to go your own way these days as society has lost most of its appeal, making the road easier to individual life easier","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38827"
+"32034","acl38829",32034,"MGTOW is not so much about hating women. It's mainly about walking away from a corrupt, one sided court system. MGTOW is about going our own way without any drama or baggage. Ladies are pure trouble, period.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40589"
+"32035","acl3883",32035,"what a pile of wank my garden is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32036","acl38830",32036,"Men love women. Women obvs love themselves. All great romantic poets were men. But women do inspire us with their shittiness. They're prime examples of what a man doesn't want to be.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40904"
+"32037","acl38831",32037,"Women are weak. Very weak. They just hide from anything difficult. When they do actually do something difficult you can bet there was a lot of hand holding along the way. Fact is they can spend their whole lives hiding and lying to themselves but the one main thing they can't hide from and can't stand is rejection. It destroys them. But the only way to reject rejection is to stay alone. Loneliness also destroys them. They hate both. Loneliness is a killer while rejection is overkill. Because of this, if you love her she controls you, it's her way of phasing out rejection completely. But if you don't love her, you control her. Give a woman the cold shoulder but not flat out rejection and she's like putty in your hands. Don't use this fact to get a woman. Instead just use it to keep the women you're surrounded by in your daily life at bay.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38832"
+"32038","acl38832",32038,"Average people are weak. Very weak. They just hide from anything difficult. When they do actually do something difficult you can bet there was a lot of hand holding along the way. Fact is they can spend their whole lives hiding and lying to themselves but the one main thing they can't hide from and can't stand is rejection. It destroys them. But the only way to reject rejection is to stay alone. Loneliness also destroys them. They hate both. Loneliness is a killer while rejection is overkill. Because of this, if you love someone they control you, it's their way of phasing out rejection completely. But if you don't love them, you control them. Give a person the cold shoulder but not flat out rejection and they're like putty in your hands. Don't use this fact to get a partner. Instead just use it to keep the people you're surrounded by in your daily life at bay.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38831"
+"32039","acl38833",32039,"has anyone noticed how almost all the trans women are so welcoming?","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38818"
+"32040","acl38834",32040,"I define my body as a millionaires body. Wow, that was easy, why didn't I think of this sooner.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl38848"
+"32041","acl38835",32041,"blacks are supposed to fuck blacks. that was always the plan.","hate","derogation","bla","original","train",4,"QiOKkCi7F8","4a","acl38836"
+"32042","acl38836",32042,"blacks are supposed to support blacks. that was always the plan.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38835"
+"32043","acl38837",32043,"Sheboons rarely bathe much less wipe their ass. Please step up indian men, you don't bathe either so you're a perfect match for the darkies.","hate","derogation","bla.wom, asi.south","original","train",4,"QiOKkCi7F8","4a","acl38838"
+"32044","acl38838",32044,"your son rarely bathe much less wipe his ass. Please step up Daddy, you don't bathe
+either so you're a perfect match for your son.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl38837"
+"32045","acl38839",32045,"A SIMP IS A SIMP NO MATTER WHERE IT LIVES. M.G.T.0.W. WILL PURGE THE WORLD OF ALL YOU SIMPS BY DENYING WHAMEN ACCESS TO ANY OF MEN'S RESOURCES CAUSING A INCREASE OF CAT HORDING AND MEN LIVING THE BACHELOR DREAM WITH NO NAGGING. THANKS FEMINISM FOR RELEASING MEN FROM THE DANGER OF BEING GOLDDIGGERED FROM A ESTROGEN BASED PARASITE AKA WHAMEN.","hate","dehumanization","wom","original","train",4,"QiOKkCi7F8","4a","acl38840"
+"32046","acl3884",32046,"what a pile of wank my friend is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32047","acl38840",32047,"A SIMP IS A SIMP NO MATTER WHERE IT LIVES. M.G.T.0.W. WILL PURGE THE WORLD OF ALL YOU SIMPS BY DENYING YOU ACCESS TO ANY OF MEN'S RESOURCES CAUSING A INCREASE OF CAT HORDING AND MEN LIVING THE BACHELOR DREAM WITH NO NAGGING. THANKS FEMINISM FOR RELEASING MEN FROM THE DANGER OF BEING GOLDDIGGERED FROM A ESTROGEN BASED SOY DIET","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38839"
+"32048","acl38841",32048,"""Cant imagine a woman I'd like to spend time with"". LOL, I bet that will really set them off. I remember talking to a female relative about how I'm not interested in getting involved with a woman again. She said something about how they may not even be interested in me or some such thing. I just told her ""good, I don't care"". Of course it was one of those games women play. A reverse psychology type nonsense. Like suddenly I'd feel motivated to prove her wrong. Women just take. Why the fk would I want that and if it were true they weren't interested in me (which isn't the case) I wouldn't care anyway. I'M DONE! I tried to have a family and got royally f'd over. I think it's important to try. But that's it. It was a failure and I have accepted it.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl40189"
+"32049","acl38842",32049,"I say ""I have 0 use for women considering I don't want children""","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38843"
+"32050","acl38843",32050,"I say ""I have 0 use for marriage considering I don't want children""","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38842"
+"32051","acl38844",32051,"There is simply no benefit for a man to marry or live with any woman. Banging them like a drum is so much better when you've had a vasectomy so they can't baby rape you. Are women worth my time? no. Women are a complete waste of time unless you're paying them in 15-minute increments.","hate","derogation","wom","original","train",4,"QiOKkCi7F8","4a","acl38845"
+"32052","acl38845",32052,"I have never seen a more mysognisitic statement than this one - ""There is simply no benefit for a man to marry or live with any woman. Banging them like a drum is so much better when you've had a vasectomy so they can't baby rape you. Are women worth my time? no. Women are a complete waste of time unless you're paying them in 15-minute increments.""","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl38844"
+"32053","acl38846",32053,"I feel like this is more about people that come here and refuse to assimilate. I could be wrong though, although it's highly unlikely.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39819"
+"32054","acl38847",32054,"It is horrible. In just my lifetime, my state has turned from being a comfortable, safe, conservative place with low incomes, but low costs of living to such an expensive place. Now the incomes aren't much higher, the cost of living has skyrocketed, it isn't safe anymore, and all the foreign transplants are increasingly voting against our established way of life","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl41151"
+"32055","acl38848",32055,"I define my body as a gorgeous one. Wow, that was easy, why didn't I think of this sooner and have more faith in myself.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38834"
+"32056","acl38849",32056,"Few years later, this person will commit suicide from depression. And this will repeat almost to every single trans person. I don't get why they do this to themselves, if you're not comfortable with your gender, just act the opposite gender, why actually change it. God really is doing a facepalm right now bet","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38867"
+"32057","acl3885",32057,"what a pile of wank my dog is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32058","acl38850",32058,"I live in central Europe and even I heard about this issue. Must be horrible to see your home change so much by immigration.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38851"
+"32059","acl38851",32059,"I live in central Europe and even I heard about this issue. Must be horrible to see your home change so much.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38850"
+"32060","acl38852",32060,"People from Sweden keep saying how the majority of Muslim immigrants stick together and refuse to integrate, so there’s essentially a parallel society. Friendly reminder that this is literally exactly how China took control over Tibet (edit: not Taiwan my bad).","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38853"
+"32061","acl38853",32061,"People from Sweden keep saying how the majority of immigrants stick together and refuse to integrate, so there's essentially a parallel society. Friendly reminder that this is literally because this is a long process and doesn't happen overnight, give it time and all will work out.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38852"
+"32062","acl38854",32062,"I can definitely confirm this. I'm the first generation from immigrants who moved to Sweden. I look European compared to immigrants and even in my family. I live in an immigrant suburban area. I've been bullied and almost beaten up by immigrants because of my look. Can't wait to leave.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38855"
+"32063","acl38855",32063,"I can definitely confirm this. I'm the first generation from immigrants who moved to Sweden. I look European compared to immigrants and even in my family. I live in an immigrant suburban area. I've never been bullied or almost beaten up by immigrants because of my look. Can't wait to hear where this lie came from.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38854"
+"32064","acl38856",32064,"The issue here isn't just that they won't integrate, foregners are essentially in control of many areas of towns or even entire towns, with people routinely getting robbed and assaulted. Recently the government mandated all municipalities to take in migrants, so this is now a problem everywhere to differing degrees, only with a few exceptions like large municipalities where they can be segregated. Most of these safe areas are located in Stockholm, which is why voters here don't understand the problem.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38857"
+"32065","acl38857",32065,"The issue here isn't just that these new dodgy businesses won't integrate, their owners are essentially in control of many areas of towns or even entire towns, with people routinely getting robbed and assaulted. Recently the government mandated all municipalities to take in these enterprises, so this is now a problem everywhere to differing degrees, only with a few exceptions like large municipalities where they can be restricted. Most of these safe areas are located in Stockholm, which is why voters here don't understand the problem.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38856"
+"32066","acl38858",32066,"You see this all over the United States, as well. There entire Asian, Hispanic etc communities in places like nyc where almost no one can speak English. They don’t even bother trying to integrate and many operate on a cash only basis so I doubt taxes are being paid accurately if at all","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38859"
+"32067","acl38859",32067,"You see this all over the United States, as well. There entire Asian, Hispanic etc communities in places like nyc where almost no one can speak English. They don't even bother trying to provide lessons for them and many operate on a cash only basis so I doubt benefits are being paid to them accurately if at all","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38858"
+"32068","acl3886",32068,"what a pile of wank my cat is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32069","acl38860",32069,"Yes, you can speak whatever you choose to, this is a free country. I have no qualms with that. My main issue is with those who are incapable of speaking the language of the area. I worked at Walmart on a later shift, and had quite a few people come in with extremely limited grasps of English trying to find things. Thankfully, I have a very limited grasp of Spanish, so I was able to help, but it would have been much better overall for them to learn English Note: I do not live in a Spanish area at all.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38861"
+"32070","acl38861",32070,"Yes, you can speak whatever you choose to, this is a free country. I have no qualms with that. We should help and teach those who are incapable of speaking the language of the area. I worked at Walmart on a later shift, and had quite a few people come in with extremely limited grasps of English trying to find things. Thankfully, I have a very limited grasp of Spanish, so I was able to help, but it would have been much better overall for them to learn English. Note: I do not live in a Spanish area at all.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38860"
+"32071","acl38862",32071,"Lol!!! I suggest you go to some of these places in flushing or elsewhere and see just how many people there cant even speak English","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39820"
+"32072","acl38863",32072,"No, they actually don’t. Inform yourself. 90% of rapes in Sweden are caused by non-native Swedes. At least, the last poll in 2015 showed that. Before they forbade registering the ethnic background of the perpetrators.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38864"
+"32073","acl38864",32073,"No, they actually don't. Inform yourself. 90% of rapes in Sweden are caused by native Swedes. At least, the last poll in 2015 showed that.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38863"
+"32074","acl38865",32074,"So, basically all immigrants in Sweden shit talk our country and shit talk us swedes. And if you say that they should stop talking shit and respect the country you are a racist swede nazi","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38866"
+"32075","acl38866",32075,"So, basically my extended family in here shit talk my country and shit talk us . And if you say that they should stop talking shit and respect the country you are a mean person","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl38865"
+"32076","acl38867",32076,"Few years later, this person will commit suicide from depression. And this will repeat almost to every single person alone in lockdown. I don't get why the government does this to them, if you're not dealing well with a pandemic, just act on it by fixing your healthcare, why actually lock people up. God really is doing a facepalm right now bet","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38849"
+"32077","acl38868",32077,"LMAO, calling countries certain a terrorist state is truly ironic coming from people in the US who sell the arms to them!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl41027"
+"32078","acl38869",32078,"It’s so nice to finally hear someone admit this because I always get yelled at on Reddit by Swedes and people from other similar European countries. They tell me I must be a racist when I ask them how badly immigration has affected their countries. I don’t understand why they are so opposed to being truthful about it. It’s not racist to talk about negative effects of certain policies.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38870"
+"32079","acl3887",32079,"what a pile of wank my chair is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32080","acl38870",32080,"It's so nice to finally hear someone admit this because I always get yelled at on Reddit by people from European countries. They tell me I must be a racist when I ask them how badly immigration has affected some countries. I don't understand why they are so opposed to being truthful about it. It's not racist to talk about negative effects of certain policies but I can sometimes be a bit insensitive about it.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38869"
+"32081","acl38871",32081,"This is smple: basically everything that has to do with money but our shit goverment makes it so easy for them to be greedy, selfless and getting their way most of the times. Our goverment priorities them before our elders/the people that built our country, instead of them immigrants","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38872"
+"32082","acl38872",32082,"This is smple: basically everything that has to do with money but our shit goverment makes it so easy for them to be greedy, selfless and getting their way most of the times.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38871"
+"32083","acl38873",32083,"Yes, of course, but do not forget that the country has the right to grant citizenship or right to live there to whoever they like, not just anyone. And honestly, there is no need to for migrants who trash talk the country they went to. They can go back home. And I say that as someone who lived as a migrant for years.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38874"
+"32084","acl38874",32084,"Yes, of course, but do not forget that the country has the right to grant citizenship or right to live there to whoever they like, just anyone. And honestly, there is a need to for migrants to trash talk the country they went to. Feedback lets us improve. And I say that as someone who lived as a migrant for years.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38873"
+"32085","acl38875",32085,"When you move to a country you need to assimilate into their culture. Don't expect the majority, many of whom have been living there for generations, to bend over backwards to accept your backwards ass views and culture.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38876"
+"32086","acl38876",32086,"When you move to a country you need to assimilate into their culture. Don't expect the majority, many of whom have been living there for generations, to change all their traditions. They will accept your views and culture though.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38875"
+"32087","acl38877",32087,"It is simple: don't move to a country unless you genuinely love the people and culture. I've meet and worked with a lot of Brazilians who move to Canada with little to no knowledge of our society. Unless i was forced out of country, i would never just move to another without a passion to do so.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38878"
+"32088","acl38878",32088,"It's not THAT simple: you don't have to know eveyrthing about the country you're moving to even if you genuinely love the people and culture. I've met and worked with a lot of Brazilians who move to Canada with little to no knowledge of Canadian society and they thrive. Unless I was forced out of country, i would never just move out because some racists think i should do so.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38877"
+"32089","acl38879",32089,"Man i dont care if you wanna be treated as a different gender and have a surgeon do shit to your private parts. Just don't feel like you have to justify your life to these people, they don't revolve around you","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40556"
+"32090","acl3888",32090,"what a pile of wank my desk is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32091","acl38880",32091,"The fact that they continously say ""assigned at birth"" gets to me. A doctor doesn't just randomly decide which sex you are, they look at you and see which sex you are. They should say ""observed at birth"" instead, but you know, that doesn't fit with their anti-biology narrative","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl39822"
+"32092","acl38881",32092,"I sincerely wish everyone understood this. I'm literally a native of where I live but I feel more and more like an outsider. When I say the same as your title as an Englishman in England and living in my country's capital city, who's ancestors have been here for 1000s of years and built, fought and died to make it what it is, I'm labeled a rasict/bigot/xenophobe/imperialist etc etc. I love my homeland. I love English weather. (Yes, seriously) I love my traditions and cultures. I'm so tired of people trashing all of it. It's lovely here, to me. There's so much beauty. If people can't respect that and us then the have no right to be here and should leave.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38882"
+"32093","acl38882",32093,"I sincerely wish everyone understood this. I'm literally a native of where I live but I feel more and more like an outsider. When I say the same as your title as an Englishman in England and living in my country's capital city, who's ancestors have been here for 1000s of years and built, fought and died to make it what it is, I'm labeled a rasict/bigot/xenophobe/imperialist etc etc. I love my homeland. I love English weather. (Yes, seriously) I love my traditions and cultures. I'm so tired of people trashing all of it. It's lovely here, to me. There's so much beauty. If people can't respect that and us then I really would like to debate the issue.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38881"
+"32094","acl38883",32094,"""I hate this country so badly!"". Then why don't you contact your MP to bring about change?","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40520"
+"32095","acl38884",32095,"Minnesota currently has a massive Somalian problem, they come here and don’t bother to learn English, constantly shit talk America and the state and are generally the worst people you’ll find in the state. Not even other Africans like them","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38885"
+"32096","acl38885",32096,"Minnesota currently has a massive Somalian population, they come here and bother to learn English, constantly worship America and the state and are generally the most hard-working people you will find in the state. All the other Africans I have met are like them","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38884"
+"32097","acl38886",32097,"There's a ton of people who dont exactly like the Refugees. For example a large portion of my family lives in Hungary on a small farm that has essentially been ransacked by refugees. I doubt any of my family have many kind words for the majority of those refugees currently in that country. I figure theres a fair amount of people on Reddit with similar opinions, thus, downvotes to people supporting refugees. I am all for sending aid and doing what the government can to assist withing reason. This to me and many other students is a bit of a slap to the face seeing how all these young citizens are faceing crippling debt and all a refugee has to do is say ""yes I will live in your city"" and boom. Free education.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl40930"
+"32098","acl38887",32098,"Well, if you truly think about it, it really is an awesome thing your college is doing. Educating refugees is tHe only way to lessen the blow to European economies in the long run. This gives you the right to call your tuition a donation, and feel really good about yourself.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38888"
+"32099","acl38888",32099,"Well, if you truly think about it, it really is an awesome thing your college is doing. Educating refugees is a sensible thing to do in the long run. You could even give a donation, and feel really good about yourself.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38887"
+"32100","acl38889",32100,"Seriously consider how your politicians care more about these refugees than their own people,","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39821"
+"32101","acl3889",32101,"what a pile of wank my room is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32102","acl38890",32102,"You are not 'assigned' your gender, it's exacrly what you're fucking born as. No wonder people hate them","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl40002"
+"32103","acl38891",32103,"This bothers me more than anything. Yes I get it you want to make life better for the refugees - awesome 100% support that, however giving them luxuries beyond what our own society is able to afford isn't fair.. Giving them a quality of life that is better than our own isn't what helping refugees is all about. We are forgetting about our own citizens and funding for thousands of refugees to get free education and a better way of life than even some of the people already here. I get it, being a refugee sucks, however since when did they become more important in the world than everyone else? I'm sorry but that isn't equality.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38892"
+"32104","acl38892",32104,"This bothers me more than anything. Yes I get it you want to make life better for the future generations - awesome 100% support that, however giving them luxuries beyond what our own society is able to afford isn't fair.. Giving them a quality of life that is better than our own isn't what helping our descendants is all about. We are forgetting about our own generations and funding for thousands of people to get free stuff and a better way of life than even some of the people already here. I get it, being in charge of fixing a world like ours sucks, however since when did they become more important in the world than everyone else? I'm sorry but that isn't equality.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38891"
+"32105","acl38893",32105,"This shit is like a reverse apartheid. Or that wall in World War Z. But they'll get it... I will call you racist until you hear all the views.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40120"
+"32106","acl38894",32106,"This situation has become a serious legitimate threat to the safety and well-being of the truck drivers transiting Calais. No way should their lives be put at risk, and economic activity curtailed for a pack of illegal economic migrants. If you cannot get rid of them (which seems to be France's position on things) then you need to do what you can to protect yourself from them (which seems to be Britain's position on things).","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38895"
+"32107","acl38895",32107,"This situation has become a serious legitimate threat to the safety and well-being of the truck drivers transiting Calais. No way should their lives be put at risk, and economic activity curtailed for a pack of illegal economic policies. If you cannot get rid of the politiicans (which seems to be France's position on things) then you need to do what you can to protect yourself from them (which seems to be Britain's position on things).","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl38894"
+"32108","acl38896",32108,"Agreed. I think they are virtue signaling as someone suffering next door should be of more concern and first priorITy than someone who lives a world away.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38897"
+"32109","acl38897",32109,"Agreed. I think they are virtue signaling as someone suffering next door understandably should be more concern and first priorITy than someone who lives a world away. But they both need help.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38896"
+"32110","acl38898",32110,"Well, I don't give two shits where the refugees go as long as it's not here, tbh.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38899"
+"32111","acl38899",32111,"Well, I don't give two shits where they go as long as it's not here, tbh.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38898"
+"32112","acl389",32112,"Black are barbaric","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"32113","acl3890",32113,"what a pile of wank my city is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32114","acl38900",32114,"Yeah. Exactly. We don't owe refugees shit. Stop saying we do. I don't want those shitty people here. I don't want to waste money on other people.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl40402"
+"32115","acl38901",32115,"Thoughtful answer. For fuck's sake, let 'em rapefugees die! Fuck em. 'Merica.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38902"
+"32116","acl38902",32116,"Thoughtful answer. For fuck's sake, let 'em die! Fuck em. 'Merica.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38901"
+"32117","acl38903",32117,"I don't care about the homeless either but it seems to m thy should be the priority over a bunch of Muslim refugee assholes","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38904"
+"32118","acl38904",32118,"I don't care about the homeless either but it seems to m thy should be the priority over a bunch of ex-cons","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38903"
+"32119","acl38905",32119,"Why are we taking in refugee scum when we still have homeless and impoverished people in our own country? I don't get it","hate","dehumanization","ref","original","train",4,"TrRF46JWfP","4a","acl38906"
+"32120","acl38906",32120,"Why are we paying politicians when we still have homeless and impoverished people in our own country? I don't get it","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38905"
+"32121","acl38907",32121,"I've noticed a trend of them saying things like ""I am a biological being and a woman, so I am a biological woman"" so they can try and twist language and avoid reality once again. stuff like this has serious consequences in the medical field, and people have died because they didn't say what their biological sex was when a doctor asked them","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl39981"
+"32122","acl38908",32122,"Yes, we gotta keep those foxes out, they steal natural resources like food at the expense of our pets.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40779"
+"32123","acl38909",32123,"""You... You think I'm a different species?"" -immigrants probably.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38910"
+"32124","acl3891",32124,"what a pile of wank my uni is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32125","acl38910",32125,"""You... You think I'm a different species?"" - men probably.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38909"
+"32126","acl38911",32126,"Lol I'm going to call refugees 'invasive species' from now on. That is hilarious.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38912"
+"32127","acl38912",32127,"Lol I'm going to call influencers 'invasive species' from now on. That is hilarious.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38911"
+"32128","acl38913",32128,"I’ve first-hand witnessed immigrants absolutely FUCK UP places over (source: live in south texas)","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38914"
+"32129","acl38914",32129,"I've first-hand witnessed immigrants getting absolutely FUCK UP hatred in all sort of places over (source: live in south texas)","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38913"
+"32130","acl38915",32130,"I believe taking in huge numbers of climate refugees from foreign countries will be one of the major precipitating factors of collapse, since they will inevitably drive a backlash that empowers an authoritarian administration to sweep the government. Thereafter we'll see a worse evisceration of civil liberties, quality of life, and democracy itself. No nation can support the numbers of climate refugees that we are likely to see in the next 50 years","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39873"
+"32131","acl38916",32131,"No single country is capable of taking in 1 billion refugees. Imagine, if only we could! Europe must coordinate its efforts and distribute refugee quotas. There is nothing to be done for them unless we act together as a bloc.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl40273"
+"32132","acl38917",32132,"Climate refugees aren't legal refugees, as the international law says that a refugee needs a ""well-founded fear of being persecuted for reasons of race, religion, nationality, membership of a particular social group or political opinion"" in order to apply for asylum. So many abuse this framework.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38918"
+"32133","acl38918",32133,"Climate refugees are legal refugees, as the international law says that a refugee needs a ""well-founded fear of being persecuted for reasons of race, religion, nationality, membership of a particular social group or political opinion"" in order to apply for asylum. This system should always protect these vulnerable people.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38917"
+"32134","acl38919",32134,"Not being unkind, it's a mental illness and you cant help someone with a problem by encouraging it. But we now live in a world where it is ""hateful"" to tell someone with the biological of a man they can't have medical problems that exclusively effect women.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38934"
+"32135","acl3892",32135,"what a pile of wank my teacher is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32136","acl38920",32136,"Nah, it's better to build a wall to keep them out. Thanks, anyway. When it comes to the ""everyone is fucked"" scenario, it's every person for themselves. Our tribe will survive slightly longer by refusing them, so guess what. Morally, you are probably right, but who can afford morals when the world is ending?","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38921"
+"32137","acl38921",32137,"Nah, it's better to build a wall to keep them out. Thanks, anyway. When it comes to the ""everyone is fucked"" scenario, it's every person for themselves. ""Our tribe will survive slightly longer by refusing them"" oh, shut up. Morally, you are terribly wrong, but who can afford morals when the world is ending, right? bah","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38920"
+"32138","acl38922",32138,"My goverment is willing to accept only christian refugees. We would like to help BUT in their countries, not for them to come here (how about Syria, for godsake). And of course, propaganda talk, that we have 1 million refugees from Ukraine equals gobernment is refugeefriendly. (Mostly they're working here). Our gvrnmt is not extreme right, but the word ""refugee"" is used in many topics... disease transmitters, poor and job taking, social and health care costly. Bla bla bla","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38923"
+"32139","acl38923",32139,"My goverment is unfortunately only willing to accept only christian refugees. They claim they would like to help BUT in their countries, not for them to come here (how about Syria, for godsake). And of course, propaganda talk, that we have 1 million refugees from Ukraine equals gobernment is refugeefriendly. (Mostly they're working here). Our gvrnmt is not extreme right, but the word ""refugee"" is used in many topics... disease transmitters, poor and job taking, social and health care costly.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38922"
+"32140","acl38924",32140,"There's only one right answer around here and it's, those politicians are evil and their companies have no business to do here. Deny this and you'll get dislikes that go up to High Heaven. Reddit is such a liberal globalist website that if you don't buck the trend then they'll demonise you and silence you at the same time. Oh how convenient for them.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl40649"
+"32141","acl38925",32141,"More refugees? Cool more moron votes for the left. This is literally the only reason they do this","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38926"
+"32142","acl38926",32142,"More refugees? Cool more the merrier. There is literally no reason not to do this","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38925"
+"32143","acl38927",32143,"In the middle of a pandemic while the country has a completely uncertain economic feature, we now wish to increase the number of refugee laborers, particularly the unskilled, dramatically. These democrats have no sense of how a country should be governed. They only know how to appeal to their own base.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38928"
+"32144","acl38928",32144,"In the middle of a pandemic while the country has a completely uncertain economic feature, we now need to increase the number of refugee laborers, particularly the skilled, dramatically. These democrats have no sense of how a country should be governed. They only know how to appeal to their own base.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38927"
+"32145","acl38929",32145,"Yep, watch where those refugees end up settling. They want to kneecap Texas like they did Minnesota.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38930"
+"32146","acl3893",32146,"what a pile of wank my best friend is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32147","acl38930",32147,"Yep, watch where those younguns end up settling. They want to kneecap Texas like they did Minnesota.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38929"
+"32148","acl38931",32148,"Thanks auntie Merkel for allowing the whole country to get raped by a bunch of dirty refugee rats.","hate","dehumanization","ref","original","train",4,"TrRF46JWfP","4a","acl39823"
+"32149","acl38932",32149,"Why not zero refugees? I don’t even recognize my city anymore. We’ve got more Somalis than Somalia!","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38933"
+"32150","acl38933",32150,"Where're all the refugees? I don't even recognize our city anymore. Did they deport the Somalis back to Somalia?!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl38932"
+"32151","acl38934",32151,"It is being unkind, to compare being trans with mental illness. It clearly is hateful to tell someone that they can't have medical problems because they exclusively effect women or what gender you consider them to be as an outsider","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl38919"
+"32152","acl38935",32152,"Freedom is a double-edged sword. You get the freedom to be a furry, and he gets the freedom to nope out of it if he thinks it's weird.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl38778"
+"32153","acl38936",32153,"odd how even the most brainwashed and ""progressive"" guys will nope out of dating a tranny in a mini second.","hate","animosity","trans","original","train",4,"TbUBpfn6iP","4a","acl39061"
+"32154","acl38937",32154,"So, they’re saying that someone who believes they’re male but has a vulva and associated accoutrements can get cervical cancer...this is correct. However, their beliefs do not change their literal physical ‘package’. Wouldn’t we be better served by helping those who actually suffer from dysphoria become comfortable in the body they were born in? Or I suppose we could institutionalise them, and remove them from society as they so obviously don’t fit. We have no responsibility to pander to their delusions, especially because it significantly harms their chances for social integration to allow them to hold on to their mental illness. Trans acceptance is abuse","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38951"
+"32155","acl38938",32155,"Let's see how close we can get that number to zero refugees drowning at sea. We are better than this, people!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl40618"
+"32156","acl38939",32156,"I want our president to turn the refugee tide and send someone home now and again.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl41002"
+"32157","acl3894",32157,"what a pile of wank my boyfriend is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32158","acl38940",32158,"Language is important. They are illegal aliens, not undocumented immigrants. Speak properly.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38941"
+"32159","acl38941",32159,"Language is important. They are not illegal aliens, but undocumented immigrants. Speak properly.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38940"
+"32160","acl38942",32160,"I am applying for my polish citizenship even though I have what is suppose to be automatic citizenship for the fact that both my parents are from Poland. Just going through the forms and how time consuming it is plus I am on my own in mastering the polish language....I don't feel sorry for undocumented /illegal aliens, because they take advantage of us.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38943"
+"32161","acl38943",32161,"I am applying for my polish citizenship even though I have what is supposed to be automatic citizenship for the fact that both my parents are from Poland. Just going through the forms and how time consuming it is plus I am on my own in mastering the polish language....It is all so damn hard","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38942"
+"32162","acl38944",32162,"I hope thats true. I hope you kick them all out. The UK has the ability to do it. But you need to cut all ties with the EU because they are overrun and you dont want four hundred migrants crossing the channel every day.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38945"
+"32163","acl38945",32163,"I hope thats true. I hope you kick them all out. The UK has the ability to do it. But you need to cut all ties with the the U.S.A because they are overrun and you dont want four hundred white supremacists crossing the Atlantic every day.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38944"
+"32164","acl38946",32164,"Funnily, the UK left the EU to get rid of those horrible poorer white immigrants, though, now they can enjoy their new noble savage neighbors.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38947"
+"32165","acl38947",32165,"Funnily, the UK left the EU to reduce immigration, now they can enjoy their new high levels of unemployment.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38946"
+"32166","acl38948",32166,"Under the EU's domination, Britain had no meaningful control over its borders and immigration policies. Even today the EU is punishing the UK for leaving with boatloads of illegal immigrants. Note that these people aren't fleeing war. They already made it to Europe. It's just that there isn't enough free money for them there, and they want the UK's generous allowances. That's why they kept going. Remember: immigrants are a punishment.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38949"
+"32167","acl38949",32167,"Under the EU's domination, Britain had some meaningful control over its borders and immigration policies. Even today the EU is always blamed for giving the UK more immigrants. Some say these immigrant aren't fleeing war. That they already made it to Europe. That it's just that there isn't enough free money for them there in the EU, and they want the UK's generous allowances. It's just not true, Germany is a prime example of how it has allowed so many immigrants and refugees to live there.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38948"
+"32168","acl3895",32168,"what a pile of wank my girlfriend is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32169","acl38950",32169,"Well the UK government is free to stop handing out money to these people anytime they want. Nobody's going to do fuck all about it at the end of the day. Looks like they're punishing their own people to attract refugees","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl40656"
+"32170","acl38951",32170,"""So, they're saying that someone who believes they're male but has a vulva and associated accoutrements can get cervical cancer...this is correct. However, their beliefs do not change their literal physical 'package'. Wouldn't we be better served by helping those who actually suffer from dysphoria become comfortable in the body they were born in? Or I suppose we could institutionalise them, and remove them from society as they so obviously don't fit. We have no responsibility to pander to their delusions, especially because it significantly harms their chances for social integration to allow them to hold on to their mental illness. Trans acceptance is abuse"" - This is probably the most hateful, sickest comment I've read today. Shame!","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38937"
+"32171","acl38952",32171,"So it's OK when you smug assholes do it and deport all of them nasty refs, but the moment you get a taste of your own medicine, it's wrong. Yeah, that's exactly what I expect from Europeans. Fuck all of you pricks.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl40472"
+"32172","acl38953",32172,"90% OF ILLEGAL INVADERS ARRESTED DURING 2019 HAD PRIOR ARRESTS.","hate","dehumanization","immig","original","train",4,"TrRF46JWfP","4a","acl39825"
+"32173","acl38954",32173,"statistically speaking it is very unlikely they become criminals however if it does happen, its usually those immigrants' kids that get involved in criminality or terrorism. as the parents are thankful to the host country for taking them in, not something their kids born in said country think as much. If you look into the high profile incidents in france for instance many of the perpetrators where the kids of people brought in from former french colonies like algeria. a few others came in through greece during the migrant crisis of the past 8 years","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38955"
+"32174","acl38955",32174,"statistically speaking it is very unlikely they become criminals however if it does happen, its usually kids that get involved in criminality or terrorism. as the parents are thankful to the country having lived there a long time, not something their kids born recently in said country think as much. If you look into the high profile incidents in france for instance many of the perpetrators where the kids of people radicalised from derpived areas. a few others came in through 4chan during the crisis of the past 8 years","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38954"
+"32175","acl38956",32175,"Not quite the only difference - PRs can be deported, should they commit a serious crime. Citizens can't. Until you are a citizen, we can always give you back to where you belong","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38957"
+"32176","acl38957",32176,"Not quite the only difference - they can be deported, should they commit a serious crime. Citizens can't. Until you are a citizen, we can always give you back to your home country","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38956"
+"32177","acl38958",32177,"Being all refugees? You really think it's feasible or even a good idea to bring 500 million people here? It's always better to help them where they are, instead of promotng refugees coming in","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38959"
+"32178","acl38959",32178,"Being all arctic animals? You really think it's feasible or even a good idea to bring 500 million new wild animals here? It's always better to help them where they are, instead of promotng zoos and relocations, stop climate change","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38958"
+"32179","acl3896",32179,"what a pile of wank my wife is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32180","acl38960",32180,"There's that, and also most criminals victimize people of their own local community. Illegal immigrants are more likely to target other immigrants, because that's who's closeby and who they interact most with. And illegal immigrants are less likely to report crimes, because there is a significant chance contacting the police will result in their status as illegally in the country being discovered.
+
+","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38961"
+"32181","acl38961",32181,"There's that, and also most criminals victimize people of their own local community. Candyman are more likely to target other candyman, because that's who's closeby and who they interact most with. And these criminals are less likely to report crimes, because there is a significant chance contacting the police will reveal their status as perpetrators of illegal acts in the country.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38960"
+"32182","acl38962",32182,"So then by ""undocumented"" you mean illegal, right?","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38963"
+"32183","acl38963",32183,"So then by saying ""undocumented"" you mean an immigrant who hasn't got the right paperwork, right?","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38962"
+"32184","acl38964",32184,"Or it's just those crime weren't documented? Like their perpetrators...","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38965"
+"32185","acl38965",32185,"Or it's just those crimes weren't documented? Like if their perpetrators were not guilty!","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl38964"
+"32186","acl38966",32186,"I'm talking about Rapefugees here","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38967"
+"32187","acl38967",32187,"I'm talking about Refugees here","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38966"
+"32188","acl38968",32188,"Rape culture: Not surprisingly, once again, a horde of Muslims raped young German girls in the most vile way in the whole group, and all of them deliberately kept silent about the perpetrators' migration background","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38969"
+"32189","acl38969",32189,"Rape culture: Not surprisingly, once again, a group of drug users raped young German girls in the most vile way in the whole group, and all of them deliberately kept silent about the criminality records","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl38968"
+"32190","acl3897",32190,"what a pile of wank my brother is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32191","acl38970",32191,"Besides, a 'movement' that requires people to ignore objective reality and pretend to not use the preferred pronouns of 'trans' people, is no acceptable movement for the society. it is actually an attempt at forcing thought compliance. In effect, it is a cultural gaslighting","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl40519"
+"32192","acl38971",32192,"Transgenderism is essentially religion. Just because a load of idiots believe in things doesn't make those things true.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl38978"
+"32193","acl38972",32193,"Two poverty migrants climb in over the balcony to brutally rape the elderly grandma in need of care, so violently that she had to be admitted to hospital seriously injured, where she lies to this day, the press is silent Heilbronn / Lauffen","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38973"
+"32194","acl38973",32194,"Two men climb in over the balcony to brutally rape the elderly grandma in need of care, so violently that she had to be admitted to hospital seriously injured, where she lies to this day, the press is silent Heilbronn / Lauffen","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38972"
+"32195","acl38974",32195,"A Syrian ""refugee"" rapes pony at children's zoo.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl40939"
+"32196","acl38975",32196,"""European anger"", which is a code word for white european, who do not want to be raped, mugged or have their children rape and sodomized by hordes of africans and muslims, while the police stay silent, dont do anything or are complicit with the rapists. If the police cant protect you,we white europeans will have to protect ourselves.","hate","dehumanization","ref","original","train",4,"TrRF46JWfP","4a","acl39826"
+"32197","acl38976",32197,"I am facing serious trouble making a choice one way or the other on this. On the one hand, I'm sure not every refugee, or even most refugees, are rapists. But on the other, I never heard of these weird gang rapes until they showed up. I don't know how to account for the cultural misogyny. I'd hate to be the one making the decision here but censorship is certainly not the way to go. You have to make a choice and live with the consequences.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl40644"
+"32198","acl38977",32198,"First, you need to grasp that most of these leaders don't think nationally anymore, not at all. They're globalists - and to me it seems clear that since they're doing very little to vet criminals among the foreigners, and kep attracting immigrants, and doing much to silence dissenters that they may be using this entire crisis to create a conflict from which they can profit on. It wouldn't be the first time in history, and it won't be the last. Governments reap the most power during crises. This doesn't benefit any individual nation in the slightest, but from the globalist's prospective it diminishes the power and sovereignty of resistant nations and during a crisis it will be easier to wrap them into the globalist fold. Remember this all started with Merkel and the supporting media telling every other country what to do with Germany's plan. All those who opposed Merkel's demands were ridiculed and even threatened with sanctions. Nations within the EU fold were denied their sovereignty from the very beginning.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl40931"
+"32199","acl38978",32199,"Transgenderism is a belief. Just because alot of people believe in it things doesn't make it evil.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38971"
+"32200","acl38979",32200,"So you're honestly suggesting that a mass immigration of people who are, hypothetically, ""already German"" would pose about the same problems as a mass immigration of refugees from war-torn, third world, ideologically backwards regions? Are you serious?! Those are refugees who are, by virtue of their predicament and origin, preselected for higher rates of poverty and criminality? That's an insane notion.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38980"
+"32201","acl3898",32201,"what a pile of wank my parents are","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32202","acl38980",32202,"So you're honestly suggesting that a mass immigration of people who are, hypothetically, ""already German"" would face the same problems as a mass immigration of refugees from war-torn, third world, ideologically backwards regions? Are you serious?! They are refugees who are, by virtue of their predicament and origin, are preselected for higher rates of poverty and criminality? That's an insane notion. We need to help these people more, they will face much bigger challenges.","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl38979"
+"32203","acl38981",32203,"These countries are refugee-free: Hungary, Serbia, Bulgaria, and I think Slovakia and the Czechs are still good. Also, as MaoHadOnly1Testicle said, Lithuania, and I think Latvia and Estonia are still all right.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl38982"
+"32204","acl38982",32204,"These countries are very hateful towards refugees: Hungary, Serbia, Bulgaria, and I think Slovakia and the Czechs are also obnoxious on this. Also, as MaoHadOnly1Testicle said, Lithuania, and I think Latvia and Estonia are still quite closed to immigration, too.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl38981"
+"32205","acl38983",32205,"I can confirm I have not seen any rapefugees in Hungary or Czech, luckily","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38984"
+"32206","acl38984",32206,"I can confirm I have not seen any refugees in Hungary or Czech for the time being.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl38983"
+"32207","acl38985",32207,"I bet that after ww3, which will be caused by expelling the fucking migrant hordes fuhrer merkel invited, Germany should cease to exist","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl40545"
+"32208","acl38986",32208,"We are all fucking sick of Germany making the rest of europe feel bad. They started 2 world wars but are now being overtly kinder to all other nationalities and making us look bad.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl40129"
+"32209","acl38987",32209,"Yap, Poland is still the EU, and the EU accepts pretty much every weird law. This is why Europe was lost.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl41216"
+"32210","acl38988",32210,"We should grant hem asylum at the bottom of the ocean","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl38989"
+"32211","acl38989",32211,"We should grant him asylum at the bottom of the ocean the murderer","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl38988"
+"32212","acl3899",32212,"what a pile of wank my mum is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32213","acl38990",32213,"Poland? Does this idiot really think Poland would welcome him? I'm stunned at this ragheads stupidity.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39828"
+"32214","acl38991",32214,"Have you actually heard of a government protecting its citizens from hostile foreign invaders/immigrants? What a concept!","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl38992"
+"32215","acl38992",32215,"Have you actually heard of a government protecting its citizens from hostile diseases/viruses? What a concept!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38991"
+"32216","acl38993",32216,"I don't agree with all the gay things, but at least I can understand the gay things. This I dont understand.","hate","animosity","gay","original","train",4,"TbUBpfn6iP","4a","acl39008"
+"32217","acl38994",32217,"What France needs to do is offering all current foreign nationals a return ticket home and 3,000euros, on condition they must relinquish their passports, citizenship and sign a doc stating that they will never return or be subject to ten years in prison and deportation upon release.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38995"
+"32218","acl38995",32218,"What France needs to do is offering all current white nationalists a return ticket anywhere and 3,000euros, on condition they must relinquish their passports, citizenship and sign a doc stating that they will never return or be subject to ten years in prison and deportation upon release.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl38994"
+"32219","acl38996",32219,"I disagree. For me, the answer is : No money? K, No drugs. GTFO or die.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40015"
+"32220","acl38997",32220,"Why the hell is Poland still in the EU? They will eventually break and accept all these nasty people...","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl40759"
+"32221","acl38998",32221,"Every country in the Visegrad 4 are pretty much fucked up, because the EU has them on their shit list because they don’t open their countries to waves of immigration from the Middle East and Africa.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl38999"
+"32222","acl38999",32222,"Every country in the Visegrad 4 are economically poor performing, because the EU has them on their shit list because they refuse open their countries to immigration from the Middle East and Africa.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl38998"
+"32223","acl39",32223,"Blonde men are sick","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"32224","acl390",32224,"I hate my local council","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"32225","acl3900",32225,"what a pile of wank my dad is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32226","acl39000",32226,"Instead, Poland should have granted him asylum, as he's within their borders, yell out ""psycho"" and hang him from the tallest building in Warsaw","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl41020"
+"32227","acl39001",32227,"We shall offer him asylum and behead him instead","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl40821"
+"32228","acl39002",32228,"We need to deport that cunt!","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39003"
+"32229","acl39003",32229,"We need to deport Boris!","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39002"
+"32230","acl39004",32230,"Don't be silly! Low IQ savages are just that. Shipping them here doesn't magically turn them into intelligent beings.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39005"
+"32231","acl39005",32231,"Don't be silly! Low IQ savages are just that. Bringing them here doesn't magically turn them into intelligent beings.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39004"
+"32232","acl39006",32232,"I double pinky swear I saw one refugee once almost achieve something.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39007"
+"32233","acl39007",32233,"I double pinky swear I saw one activist once almost achieve something.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39006"
+"32234","acl39008",32234,"I don't agree with all the small things, but at least I can understand these things. This I dont understand.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl38993"
+"32235","acl39009",32235,"There is no place for multiculturalism in the United States. Simple as that.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39010"
+"32236","acl3901",32236,"what a pile of wank my cousin is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32237","acl39010",32237,"There should be no place for racism in the United States. Simple as that.","nothate","none","none","perturbation","train",4,"vDe7GN0NrL","4b","acl39009"
+"32238","acl39011",32238,"LET'S SEND HER BACK!!! SHE'S A SPY FOR IRAN ACCORDING TO COURT TESTIMONY AND SHE MARRIED HER BROTHER!!!!! She HATES us yet we were the ones who saved her! Let's stop bringing in the scum of the earth! She just had her father killed btw, who exposed her for falsifying a Detroit address for him in order to get elected to Minnesota's 5th circuit","hate","dehumanization","immig","original","train",4,"TrRF46JWfP","4a","acl39012"
+"32239","acl39012",32239,"LET'S SEND HER TO PRISON!!! SHE'S A SPY FOR IRAN ACCORDING TO COURT TESTIMONY AND SHE MARRIED HER BROTHER!!!!! She HATES us yet we were the ones who saved her! Let' stop this scum of the earth! She just had her father killed btw, who exposed her for falsifying a Detroit address for him in order to get elected to Minnesota's 5th circuit","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39011"
+"32240","acl39013",32240,"PUT AN END TO CHAIN IMMIGRATION!!!","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39014"
+"32241","acl39014",32241,"PUT AN END TO ANTI IMMIGRATION POLICY!!!","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl39013"
+"32242","acl39015",32242,"HOW DO YOU KNOW IF THEY ARE TRULY ILLEGALS!? You're right, lets count them then :) HAHAHAHAHAAHAHAHAHAHA","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39016"
+"32243","acl39016",32243,"HOW DO YOU KNOW IF THEY ARE TRULY DICKHEADS!? You're right, lets fight them then :) HAHAHAHAHAAHAHAHAHAHA","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39015"
+"32244","acl39017",32244,"pssst... please! It says ""all persons"" because our founding fathers assumed that illegals would be thrown out in the first place....","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39018"
+"32245","acl39018",32245,"pssst... please! It says ""all persons"" because our founding fathers assumed that nobody would be thrown out in the first place, ""illegals"" or or otherwise....","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39017"
+"32246","acl39019",32246,"No, it is like this: they can get counted in the census; they just won't get counted for making voting districts. If you come in illegally, you're a squatter and a guest of wherever you're squatting, which has a vote proportional to its citizens and other legal residents","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39020"
+"32247","acl3902",32247,"what a pile of wank my grandparents are","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32248","acl39020",32248,"No, it is like this: they can get counted in the census; they just won't get counted for making voting districts. If you come in legally, you're probably a refugee and a guest of wherever you're living, which has a vote proportional to its citizens and other legal residents","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39019"
+"32249","acl39021",32249,"So they are way more interested in indulging the weird fetish of mentally ill men in dresses, rather than doing their job?","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl39832"
+"32250","acl39022",32250,"How dare you? This nation will always be racist until all its white people agree that criminal illegals are POC and that POC are a lesser-class because white people have special privilege, so it's all our fault in the end","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39023"
+"32251","acl39023",32251,"How dare you? This nation will always be racist until all its white people agree that criminal illegals are not all POC and that POC are not a lesser-class, because white people have special privilege and we need to recognise that privilage","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39022"
+"32252","acl39024",32252,"The first priority should have been to tackle down birthright citizenship within the first year of his presidency and nothing happened. That’s one of the biggest problems. Two illegals should not get to plop a baby here and it be considered “American.” Eff that. I’m against any immigration any more. We are full. Eff off back to your third world","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39830"
+"32253","acl39025",32253,"I'm afraid it's far worse than that, my friend. There are countless foreign travel agencies all over the world that specialize in flying pregnant women to the US (during the end of their pregnancy) so they have their offspirng and so the baby gets duel citizenship. The numbers are staggering.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39026"
+"32254","acl39026",32254,"I'm afraid it's far worse than that, my friend. There are countless foreign travel agencies all over the world that specialize in flying pregnant women to the US (during the beginning of their pregnancy) so they can have a safe abortion . The numbers are staggering.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39025"
+"32255","acl39027",32255,"It drives me so freaking mad that they know who these illegal aliens are and where they are but will not deport them. The fact that an order had to be signed to not count these aliens as citizens is just embarrassing.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39028"
+"32256","acl39028",32256,"It drives me so freaking mad that they know who these nazi's are and where they are but will not imprison them. The fact that an order hasn't already been signed to not count these nazi's as citizens is just embarrassing.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39027"
+"32257","acl39029",32257,"Am I really understanding this correctly? States like California with lots of disgrusting illegals want them included as ""citizens"" so they can get more congressional districts or more reps. Kind of like the 3/5's bit with the south and slaves? But Trump shut them down on it?really","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39030"
+"32258","acl3903",32258,"what a pile of wank my uncle is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32259","acl39030",32259,"Am I really understanding this correctly? States like California with lots of immigrants want them included as citizens so they can get more congressional districts or more reps. Kind of makes sense but it's a bit convoluted? Shame Trump shut them down on it really","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39029"
+"32260","acl39031",32260,"it should say..they're just Illegal*. Undocumented is commie euphemism bullshit. I know you know, but wanted to remind any lurking cucks.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39032"
+"32261","acl39032",32261,"it should say..they're just undocumented*. Illegal is facist euphemism bullshit. I know you know, but wanted to remind any lurking cucks.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39031"
+"32262","acl39033",32262,"That's exactly right. “Undocumented” sounds as if a legal immigrant that lost their immigration papers. Illegal alien is the correct term.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39831"
+"32263","acl39034",32263,"I ask myself what is the ultimate end goal. What would please them. Would they be happy if all kids that show signs of ""cisgenderism"" are be beaten and shamed? If calling someone by the wrong pronoun was punishable by death?","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl39046"
+"32264","acl39035",32264,"The term ""undocumented"" means you immigrated legally and don't have your paperwork yet. It does not mean anyone who is here illegally (and should not b hr in the first place), like language retards claim","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39833"
+"32265","acl39036",32265,"I believe this lingo was devised a couple of years back by the AP. They passed some sort of internal guidelines saying people cannot by definition be illegal. Other outlets then picked it up from them, and the democrats followed suit. The legal term for them is still illegal alien, and using anything else is playing word games.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39037"
+"32266","acl39037",32266,"I believe this lingo was devised a couple of years back by the AP. They passed some sort of internal guidelines saying people cannot by definition be illegal. Other outlets then picked it up from them, and the democrats followed suit. The legal term for them is still undocumented immigrant, and using anything else is playing word games.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39036"
+"32267","acl39038",32267,"Might it be that he is trying to make the switch from illegal aliens to undocumented Americans to undocumented workers...in my area of MN they switched from calling it public housing or low income housing to “workforce” housing and try to sell it like we need to provide housing for low skilled workers. Guess the wanted to change the narrative that they were lazy bums living in section 8 housing. Now teenagers can’t find jobs as easily, our crime rate has spiked, our schools are having more problems, and traffic is more congested.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39039"
+"32268","acl39039",32268,"saw a tweet that said 'Might it be that he is trying to make the switch from illegal aliens to undocumented Americans to undocumented workers...in my area of MN they switched from calling it public housing or low income housing to ''workforce' housing and try to sell it like we need to provide housing for low skilled workers. Guess the wanted to change the narrative that they were lazy bums living in section 8 housing. Now teenagers can't find jobs as easily, our crime rate has spiked, our schools are having more problems, and traffic is more congested.' WOW","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl39038"
+"32269","acl3904",32269,"what a pile of wank my laptop is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32270","acl39040",32270,"I am old enough to remember when all aliens were just called E.T.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl40909"
+"32271","acl39041",32271,"Like here in Minneapolis, where we are spending millions housing them in hotels (until they got the boot for destroying the place and rampant drug use) and building them housing, at the cost of taxpayers. We are also letting them put up tents in local parks and near the lakes. Powder Horn Park looks like a lunatic campground and beautiful Lake Harriet has tents set up nearby. Now if my boys and I went and threw a tent up just to camp in our local park we would get kicked out. But they allow this nonsense, if you use drugs and pay no taxes...","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39042"
+"32272","acl39042",32272,"Like here in Minneapolis, where we are spending millions housing celebs in hotels (until they got the boot for destroying the place and rampant drug use) and building them housing, at the cost of the countryside. We are also letting them put up homes in local parks and near the lakes. Powder Horn Park looks like a modern mess and beautiful Lake Harriet has scaffolding set up nearby. Now if my boys and I went and threw a fuss just to build in our local park we would get kicked out. But they allow this nonsense, if you use drugs, are famous and pay no taxes...","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39041"
+"32273","acl39043",32273,"We also did the hotel thingy here but one of our hotels in the Bay got called sexist so he was denied hobos in his hotel. It was an interesting display of priorities by those pushing for hobo houses. The lady talking with hotel owners to set it up thought he was being sexist to her so she decided they’d keep hobos on the street. The weirdest thing.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39044"
+"32274","acl39044",32274,"We also did the hotel thingy here but one of our hotels in the Bay got really negative reviews and the owner was he was denied hobos in his hotel out of concer for their wellbeing. It was an interesting display of priorities by those pushing for housing for these hobos. Even though the lady talking to the hotels decided it would be better to keep them on the street.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39043"
+"32275","acl39045",32275,"Now we've got tent cities all over. It's gotten a lot worse since the coppers are stretched thing and people are trying to encourage them to come here. Some of the hobo cities are bigger than CHAZ. I saw some hobo vagrant types in my area drive in with mock wooden shelters on the back of old pickup trucks and they all just live in one of our parks now. Daily violence and theft. I get people complaining about me when I'm not wearing a mask despite not being within 50 feet of anyone, but nobody ever says shit to all the hobos that not only aren't wearing masks but are often naked out here. I think Wuhan's way overblown, but I'm willing to bet being naked in public while living in filth increases your chances of getting it.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39834"
+"32276","acl39046",32276,"I ask myself what is the ultimate end goal. What would my parents like. Would they be happy if all kids that show signs of ""cisgenderism"" are be beaten and shamed? If calling someone by the wrong pronoun was punishable by death? What mad world are we living in?","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39034"
+"32277","acl39047",32277,"oh yes, the cold war. where trannies and women fought next to the men","hate","derogation","trans, wom","original","train",4,"TbUBpfn6iP","4a","acl39060"
+"32278","acl39048",32278,"The number of illegals living here is based mostly by the benefits they're given while in the country. For those asking. Another cost we need to hammer home is the criminal costs and crime. They literally get away with murder in many cities","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl40530"
+"32279","acl39049",32279,"another associated cost of having illegals is the remittance they send back to their home country. I read somewhere a while ago, Mexico’s second largest “import” from the US is straight cash. That is cash not being spent or saved in the US economy.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39050"
+"32280","acl3905",32280,"what a pile of wank my blender is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32281","acl39050",32281,"another associated cost of having good trade relations is the money spent outside our home country. I read somewhere a while ago, Mexico's second largest ''import' from the US is straight cash. That is cash not being spent or saved in the US economy.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39049"
+"32282","acl39051",32282,"These immigrants have extremely poor quality workmanship in construction. The customer, and insurance companies pay down the line. Texas only requires a 1 year warranty for construction. You can watch the videos of storm damage, and see that the buildings were not properly built, and failed for that reason alone.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39879"
+"32283","acl39052",32283,"My mother and grandma were both born and raised in east LA, back when it was jewish/japanese. Today it isnt even mexican but Guatemalan/Honduran. The local high school has a planned parenthood on campus, streets are filthy and not safe after dark. Thats one of the ultimate hidden costs for me. I get that a neighborhoods make up changes over time, but jesus they have not been sending their best for multiple decades at this point","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39053"
+"32284","acl39053",32284,"My mother and grandma were both born and raised in east LA, back when it was jewish/japanese. Today it isnt even mexican but Guatemalan/Honduran. The local high school has a planned parenthood on campus, streets are filthy and not safe after dark. Thats one of the ultimate hidden costs for me. I get that a neighborhoods make up changes over time, but jesus the government provides no support to the immigrants and they resort to crime.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39052"
+"32285","acl39054",32285,"Leftists will tell you that if an illegal comes to the USA, they get an payout from the government, and uses it to buy something, since they paid sales taxes, they are now a taxpayer.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39835"
+"32286","acl39055",32286,"Not only that, but moreover their lame think tanks won't count that welfare money as going to an immigrant if the benefit is tied to one of their citizen babies. So when the government pays it out it's going to be a citizen, and when the immigrant uses it to buy something it's an immigirant paying taxes. We should account for their contributions, too.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl40927"
+"32287","acl39056",32287,"Damn illegals send their money out of the country and have rent and food paid by our welfare.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39057"
+"32288","acl39057",32288,"Alot of immigrants send their money out of the country to help their parents and elder relatives back home. Data anaylists say it has helped many economies abroad.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39056"
+"32289","acl39058",32289,"Even if this is technically true it doesn't matter, as long as THEY ARE HERE ILLEGALLY, DEPORT ON FUCKING SIGHT, FORGET THE DEATH SQUADS I WAS PROMISED BY THE MSM, WHERE ARE THE DEPORTATION SQUADS","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39059"
+"32290","acl39059",32290,"Even if this is technically true it doesn't matter, even if THEY ARE HERE ILLEGALLY, DO NOT DEPORT ON FUCKING SIGHT, NO DEATH SQUADS THAT WAS PROMISED BY THE MSM, WHY ARE THERE DEPORTATION SQUADS","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39058"
+"32291","acl3906",32291,"what a pile of wank my bed is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32292","acl39060",32292,"oh yes, the cold war. where all races fought side by side.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39047"
+"32293","acl39061",32293,"odd how even the most ""progressive"" guys will nope out of dating a trans person in a mini second.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl38936"
+"32294","acl39062",32294,"Same thing happens to the lesbians. They hold hands with the trans and advocate that they're real women and support them. Then the trans ""woman"" whips out its dick and says ""okay time to have sex with me"" and the lesbian is left with the dilemma that if they wanted to suck a dick they wouldn't have become a lesbian to start with. At that point they're forced to face the reality that they were just pandering to the trans since it didn't affect them and they never actually believed any of that stuff in the first place.","hate","derogation","trans, gay.wom","original","train",4,"TbUBpfn6iP","4a","acl39225"
+"32295","acl39063",32295,"You'd think lockdown and the riots would wake everyone up, but nope, they'd rather double down. a full on apocalypse could happen and they'd still be moaning about trans rights while they literally cannibalize each other for sustenance.","hate","derogation","trans","original","train",4,"TbUBpfn6iP","4a","acl39077"
+"32296","acl39064",32296,"Why do they rent to hobos in the first place? Maybe if we stopped renting places to them and companies stopped hiring them there would be no incentive to come here.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39065"
+"32297","acl39065",32297,"Why do they rent to them in the first place? Maybe if we stopped renting places to them and companies stopped hiring them there would be no incentive.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39064"
+"32298","acl39066",32298,"If you get caught dealing drugs, then everything you bought with that money is considered the evidence of a crime and the government can take it. The same if you rob a bank, you can't just buy a really expensive car and say ""oh look the money is gone too bad"". I want us to seize every asset connected to illegals. Every dollar they earned was earned illegally, so seize all their money and assets. Did you rent a house to an illegal? Guess what shithead you harbored a fugitive, goodbye house! You hired an illegal? So long business!","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39067"
+"32299","acl39067",32299,"If you get caught dealing drugs, then everything you bought with that money is considered the evidence of a crime and the government can take it. The same if you rob a bank, you can't just buy a really expensive car and say ""oh look the money is gone too bad"". I want us to seize every asset connected to politicians. Every dollar they earned was earned illegally, so seize all their money and assets. Did you rent a house to a politician? Guess what shithead you harbored a liar, goodbye house! You hired an ex-politician? So long business!","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39066"
+"32300","acl39068",32300,"So your wife is betraying the nation and you're just cool with it? Nothing personal but all those properties should be seized for aiding fugitives of the law (i.e. hobos) and your wife should be in fucking jail for knowingly letting this happen.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39836"
+"32301","acl39069",32301,"I vividly recall working with several illegals before my company cleaned it up. They’d all claim 8 defendants and have basically no taxes taken out with their fake SS numbers.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39070"
+"32302","acl3907",32302,"what a pile of wank my pillows are","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32303","acl39070",32303,"I vividly recall working with several illegal immigrants before my company started more thorough vetting. They'd all work like the rest of us and have basically no taxes taken only because their status meant that they had fake SS numbers - they still worked hard.","nothate","none","none","perturbation","train",4,"IBsVsBliwX","4b","acl39069"
+"32304","acl39071",32304,"Who in their right fucking mind would think this is a good idea? People sneak into our country illegally, disrespect our nation and laws and end up in jail for other crimes, and you want them to stay???","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39072"
+"32305","acl39072",32305,"Who in their right fucking mind would think this is a bad idea? Only those who think these people sneak into our country illegally, disrespect our nation and laws and end up in jail for other crimes. We want them to stay!!!","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39071"
+"32306","acl39073",32306,"Without massive deportations and the reversal of anchor baby citizenship, it's already likely they will all become citizens. Texas will probably be blue by 2028, there's no path to the presidency for a Republican without Texas.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39074"
+"32307","acl39074",32307,"Without massive taxation and the reversal of tax-haven citizenship, it's already likely they will all become Democrat. Texas will probably be blue by 2028, there's no path to the presidency for a Republican without Texas.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39073"
+"32308","acl39075",32308,"Balkanization here we come! Figuratively speaking, we are still somewhere between the barbarian refugees crossing into Italy, and them deciding to start pillaging and sacking Rome.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl39076"
+"32309","acl39076",32309,"Bulking up here we come! Figuratively speaking, we are still somewhere between the aerobic workouts crossing into sport, and them deciding to start strength and conditioning at Home.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39075"
+"32310","acl39077",32310,"You'd think lockdown and the riots would wake everyone up, but nope, they'd rather double down. a full on apocalypse could happen and they'd still be moaning about irrelevant shit while they literally cannibalize each other for sustenance.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39063"
+"32311","acl39078",32311,"If the only thing counter intelligence find out about a spy is they're a fish-spirited transbeing and the mail man remembers some faggot chewing them out for not letting them flood the bathroom then yeah, your gender is a dangerous secret","hate","derogation","trans, gendermin, gay","original","train",4,"TbUBpfn6iP","4a","acl39093"
+"32312","acl39079",32312,"This widespread concept that because someone came here ""legally"" that they contribute to society has always been a joke to me. Stay in your own failed country and stop dragging down a successful one that could have been developing reliable space travel to other planets by now if not for your trashy ass.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39080"
+"32313","acl3908",32313,"what a pile of wank my tv is","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32314","acl39080",32314,"This widespread concept that because someone came here ""legally"" that they contribute to society has always been a joke to me. They don't have to stay in their own failed country if they have the chance to emigrate or move to a successful one that could have been developing reliable space for more people to live peacefully by now if not for your trashy ass protests that keep holding things up.","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39079"
+"32315","acl39081",32315,"Yeah we have entirely fucked a once proud beautiful country by destroying it with unlimited million immigrants a year since 1965","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39082"
+"32316","acl39082",32316,"Yeah we have entirely fucked a once proud beautiful country by destroying it with unlimited million loans a year since 1965","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39081"
+"32317","acl39083",32317,"But you can't deny that the vast majority of immigrants do vote to destroy America","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39084"
+"32318","acl39084",32318,"But you can't deny that the vast majority of Americans do vote to destroy America","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39083"
+"32319","acl39085",32319,"Immigrants actually weaken us by being here. Diversity is toxic and creates conflict in a society","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39086"
+"32320","acl39086",32320,"Immigrants actually strengthen us by being here. Diversity is useful and creates harmony in a society","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39085"
+"32321","acl39087",32321,"What the heck, are you saying that diversity isn't forced? People prefer to be around their own, including us whites. Legal immigrants are making it worse and will discriminate the hell out of us when they become the majority. They will also continue to vote Democrat like they are now.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39088"
+"32322","acl39088",32322,"What the heck, are you saying that diversity is forced? People prefer to be around other people, including all races. Legal immigrants are making it better and will socialise with us when they come here. They will also continue to vote Democrat like they are now.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39087"
+"32323","acl39089",32323,"can you explain why being a 6th gen American truly matters? that doesn't make you a good person. not saying you're bad but i just don't see the relevance. not all cultures are good, but not all cultures are bad either. I thought that was the whole point of legal immigration, to filter out the bad.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39090"
+"32324","acl3909",32324,"fuck this, my car is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32325","acl39090",32325,"can you explain why being a 6th gen American truly matters? that doesn't make you a good person. not saying you're bad but i just don't see the relevance. not all people are good, but not all people are bad either. The fact your ancestors legally immigrated does nothing to mark you as either bad or good.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39089"
+"32326","acl39091",32326,"Can you possibly imagine Rome giving citizenship to the barbarians? So why do we?","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39092"
+"32327","acl39092",32327,"Can you possibly imagine Rome giving citizenship to them? So why?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39091"
+"32328","acl39093",32328,"If the only thing counter intelligence find out about a spy is they're a fish-spirited being and the mail man remembers some dog chewing them for not letting it eat garbage then yeah, your personal information is a dangerous secret","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39078"
+"32329","acl39094",32329,"If they try to include all of the imaginary genders they will have 500 options to start with, and then have to update every month when a new imaginary gender is thought up and complained about being missing. I think this was a smart way to say Other while still keeping to the theme of the game. I hope they don't apologize but they probably will sometime soon","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl40329"
+"32330","acl39095",32330,"Listen! It wasn't the barbarians who destroyed Rome. Instead, history shows that the Visigoths who were fleeing the Huns in the East played a part. They stayed with the romans, took positions in government and even the army, and gained the trust of the people because of how well they intergrated into society.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl41142"
+"32331","acl39096",32331,"I assume you're kidding, because that's pretty much how Rome fell. They imported masses of barbarians who then sacked Rome and took their stuff. Importing barbarians is a typical way that empires end, including our own USA.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39837"
+"32332","acl39097",32332,"Immigrants, both legal and illegal, tend to vote Democrat. Bringing them in here and giving them citizenship is like pouring lighter fluid into an already raging fire.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39098"
+"32333","acl39098",32333,"Immigrants, both legal and illegal, tend to vote Democrat. Bringing them here and giving them citizenship will help get rid of an already raging fire of racists.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39097"
+"32334","acl39099",32334,"Yup. If all those illegals become citizens, then my incentive as a legal non-resident alien is to fall out of status, become illegal to become citizen. That's just perverse logic...","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39100"
+"32335","acl391",32335,"Black people are barbaric","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"32336","acl3910",32336,"fuck this, my hat is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32337","acl39100",32337,"Yup. If all those immigrents become citizens, then my incentive as a illegal non-resident alien is to fall out of status, become an immigrent to become citizen. That's galaxy brain logic...","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39099"
+"32338","acl39101",32338,"Immigration is how the cancer that is communism metastasizes to other countries.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39102"
+"32339","acl39102",32339,"Left wing universities are how the cancer that is communism metastasizes and takes root in other countries.","nothate","none","none","perturbation","train",4,"CAgNlUizNm","4b","acl39101"
+"32340","acl39103",32340,"Exactly, they have these wonderful socialist countries that can't wait to leave, but want to come here those immigrants turn it into the shithole they left.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39864"
+"32341","acl39104",32341,"Can you finally see it now? Its not American vs American. Never was and still isnt! This is Americans vs Transplant-Sleeper-Cell-Invaders (“Illegal Fucking Aliens”)","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39929"
+"32342","acl39105",32342,"Not just the illegals who ar shit. Most legals suck too. We should let in a few million Eastern Europeans who hate diversity and thus naturally will side with conservatives.","hate","dehumanization","immig","original","train",4,"TrRF46JWfP","4a","acl39106"
+"32343","acl39106",32343,"Not just the refugees who ar desparate. Most immigration laws suck too. We should let in a few million immigrants who are in need and can improve diversity and thus naturally will integrate with cultures.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39105"
+"32344","acl39107",32344,"At least the Corona doesn't rape you and then set you on fire, unlike them refugees","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39108"
+"32345","acl39108",32345,"At least they don't rape you and then set you on fire, unlike those few psychopaths","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39107"
+"32346","acl39109",32346,"That's not all refugees carry. Plenty of other parasites come riding along with them. Some our doctors haven't seen and don't know what to do with.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39838"
+"32347","acl3911",32347,"fuck this, my home is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32348","acl39110",32348,"How can we possibly spin this up to promote the border wall and ICE seizure of (possibly infected) immigrants?","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39111"
+"32349","acl39111",32349,"How can we possibly spin this up to promote the border wall and ICE seizure of illegal immigrants?","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39110"
+"32350","acl39112",32350,"FICK FLEISCH for those ugly rapefugees.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39113"
+"32351","acl39113",32351,"FICK FLEISCH for those ugly detainess.","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39112"
+"32352","acl39114",32352,"Ths is what happens when you import millions of people with a completely different belief system than you own. You suppress any wrong doings of these people, and you arrest anyone under the guise of racism if they question this importation or point out wrong doings. Once you have created the powder keg, you simply insert the fuse. BOOM!!!!!! You have a civil war.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39115"
+"32353","acl39115",32353,"Ths is what happens when you encourage millions of people with a completely different racist belief system. You fail suppress any wrong doings of these people, and you fail arrest anyone under the guise of racism if they question this importation or point out wrong doings. Once you have created the powder keg, you simply insert the fuse. BOOM!!!!!! You have a civil war.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39114"
+"32354","acl39116",32354,"someone who had a strong year and made over 75k in 2018 and who may be struggling currently gets zero but illegals and refugees get $350 mil","hate","animosity","immig, ref","original","train",4,"TrRF46JWfP","4a","acl39117"
+"32355","acl39117",32355,"someone who had a strong year and made over 75k in 2018 and who may be struggling currently gets zero empathy from me. immigrents and refugees deserve the $350 mil","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39116"
+"32356","acl39118",32356,"An ungrateful immigrant? No way!?!!! You must be joking!!!!","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39119"
+"32357","acl39119",32357,"An ungrateful immigrant? No way!!! All immigrants I've met are massively grateful to this country","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl39118"
+"32358","acl3912",32358,"fuck this, my garden is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32359","acl39120",32359,"This is actually extremely offensive to me as i identify as non binary. Where's the inclusivity?","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl40264"
+"32360","acl39121",32360,"there is only 2 genders","hate","animosity","gendermin","original","train",4,"TbUBpfn6iP","4a","acl41177"
+"32361","acl39122",32361,"You are spot on, legal immigration and illegal immigration are virtually the same. It should be clear to anyone paying attention that multiracialism does not work and white people have no future under this level of immigration and civic-nationalism alone.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39123"
+"32362","acl39123",32362,"You are spot on, legal immigration and illegal immigration are the same. It should be clear to anyone paying attention that multiracialism does work and people have a future under this level of immigration and civic-nationalism alone.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39122"
+"32363","acl39124",32363,"You have Angela Merkel and Barry the Fairy to thank for opening up the borders and allowing the barbarous scum to walk in with open arms. The EU and UK have been over run and destroyed, and libtards want it here.","hate","dehumanization","immig","original","train",4,"TrRF46JWfP","4a","acl39125"
+"32364","acl39125",32364,"You have Angela Merkel to thank for opening up the borders and allowing the people in need to walk in with open arms. The EU and UK have not been 'over run and destroyed'.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39124"
+"32365","acl39126",32365,"It's happening here already, ffs. Imo Germany has a much better chance to revert to normalcy than we do. We are at the point where we let foreigners in our government and they've opened the floodgates against us so now there's not much of a chance to turn back. They are going to outnumber us soon.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39127"
+"32366","acl39127",32366,"It's happening here already, ffs. In countries like Germany they have a much better chance to revert to normalcy than we do. We are at the point where we let them in our government and they've opened the floodgates against us so now there's not much of a chance to turn back. They are going to screw us soon.","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39126"
+"32367","acl39128",32367,"Dangerous parasite that refugee","hate","dehumanization","ref","original","train",4,"TrRF46JWfP","4a","acl39129"
+"32368","acl39129",32368,"Dangerous parasite that guy","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39128"
+"32369","acl3913",32369,"fuck this, my dog is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32370","acl39130",32370,"I don't care how helpful those refugees were if they intend to live by Sharia in the US.","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl40913"
+"32371","acl39131",32371,"Now add Malaysia to the ban. In fact, after Nov 3, better suspend all immigration and then police call the country for illegals and communists.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39132"
+"32372","acl39132",32372,"Now add Malaysia to the ban. In fact, after Nov 3, better suspend all Covid risk flights and then police can protect the country from the virus and communists.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39131"
+"32373","acl39133",32373,"Deport all immigrants! But now, radical Islamists have citizenship in European countries and in Canada. 2A must be protected at all costs.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39134"
+"32374","acl39134",32374,"Deport all tax dodgers! But now, radical tax dodgers have citizenship in European countries and in Canada. HMRC must be protected at all costs.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39133"
+"32375","acl39135",32375,"Muslims don't see themselves just as ""migrants"" or ""refugees"" but instead they consider themselves invaders and conquerors. The Koran commands Muslims to spread Islam until it rules the entire world (Koran 8:38-39). They do this by moving into non-Muslim countries.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39136"
+"32376","acl39136",32376,"People don't see Muslims just as ""migrants"" or ""refugees"" but instead they consider them invaders and conquerors. They wrongly believe that the Koran commands Muslims to spread Islam until it rules the entire world (Koran 8:38-39) and that they do this by moving into non-Muslim countries.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39135"
+"32377","acl39137",32377,"None of them are refugees. One takes ""refuge"" in the nearest possible location. Our country is nowhere near these sh*tholes.. thank God!","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl39138"
+"32378","acl39138",32378,"None of them are lying. One takes ""refuge"" in the nearest possible location. Our country is nowhere near these sh*tholes they had to escape from.. thank God!","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39137"
+"32379","acl39139",32379,"We are just importing peoples to destroy the country. Same happens here too.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39140"
+"32380","acl3914",32380,"fuck this, my cat is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32381","acl39140",32381,"We are just importing too much coal to destroy the country. Same happens here too.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39139"
+"32382","acl39141",32382,"if you can pick gender and race why cant u change it whenever you want. say if u looking for a job you could become a black tranny then just switch back to normal","hate","derogation","bla, trans","original","train",4,"TbUBpfn6iP","4a","acl39158"
+"32383","acl39142",32383,"Hey! Easy on Canada. It's only a frozen tundra 7 months of the year. Plus not sure you'd want to move there. Justin rules and the income tax is insane. And Canada is importing ""refugees"" by the bushel, and China is buying up everything in sight. There's a reason Canadians move to the US...","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39143"
+"32384","acl39143",32384,"Hey! Easy on Canada. It's only a frozen tundra 7 months of the year. Plus not sure you'd want to move there. Justin rules and the income tax is insane. And Canada is importing meth by the bushel, and China is buying up everything in sight. There's a reason Canadians move to the US...","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39142"
+"32385","acl39144",32385,"Even if Trump wins, the demographic time bomb is already ticking and there's no way back. African Americans have a relatively stable population. White Americans aren't reproducing. Muslim ""refugees"" stealing our wealth are, and eventually they'll conquer us using wombs.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl39145"
+"32386","acl39145",32386,"Even if Trump wins, the demographic time bomb is already ticking and there's no way back. We have an aging population and immigrant numbers still do not compensate for this fact. African Americans have a relatively stable population. White Americans aren't reproducing. Muslim refugees are not really coming in big numbers...","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl39144"
+"32387","acl39146",32387,"ALL REFUGEES HAVE TO GO BACK NOW. ITS HIGH TIME TO SAVE YOUR OWN COUNTRIES","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl39147"
+"32388","acl39147",32388,"ALL DOCTORS HAVE TO GO BACK NOW. ITS HIGH TIME TO SAVE YOUR OWN COUNTRIES","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39146"
+"32389","acl39148",32389,"Hard to fight when your government imports foreigners to rule over you.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39149"
+"32390","acl39149",32390,"Hard to fight when your government appoints idiots to rule over you.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39148"
+"32391","acl3915",32391,"fuck this, my chair is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32392","acl39150",32392,"I can see no single fking gdamn reason we need to take in 3rd world poor refugees...how come they are 95% young men??? the ""Enrichment days"" have been over for decades ...its NOT a strength ,,,it makes us WEAKER...look who is saying ""Diversity is our strength"" YEAH...it makes DEMOCRATS stronger at the expense of the people","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl39151"
+"32393","acl39151",32393,"I can see no single fking gdamn reason we need to deport these poor refugees...how come the haters are 95% white??? the white-only days have been over for decades ...""its NOT a strength ,,,it makes us WEAKER"" they say...and look who is saying ""Diversity is our strength"" YEAH...it makes DEMOCRATS stronger at the expense of REPUBLICANS lol","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39150"
+"32394","acl39152",32394,"It would have been better to start deportations ten years back to catch up with this problem. All we can do is buy time now","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39153"
+"32395","acl39153",32395,"It would have been better to start refunds ten years back to catch up with this problem. All we can do is buy time now","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl39152"
+"32396","acl39154",32396,"How is it that they're still being let in during the lockdowns? Jesus Christ. Imagine being locked down with no rights while your country is flooded with invaders murdering and raping while our economy dies because we're scared of the flu.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl40443"
+"32397","acl39155",32397,"This was always the plan, from the very beginning. Now you hear them talking about ""The Great Reset"" night and day. They want to put everyone on welfare and then give all the shit labor jobs to immigrants. The immigrants are more willing wage slaves.My advice pray to the one and only Jesus Christ to save us. We are in a war with evil and losing.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39156"
+"32398","acl39156",32398,"This was always the plan, from the very beginning. Now you hear them talking about ""The Great Reset"" night and day. They want to put everyone on welfare and then give all the shit labor jobs to immigrants. The immigrants are more willing apparently , its disgustng.My advice pray to the one and only Jesus Christ to save us. We are in a war with evil and losing.","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39155"
+"32399","acl39157",32399,"What the fuck for real? I'm a PA pede! People are getting beheaded in France and I have to fucking worry about this now thanks to Joe Biden wanting to tak in more refugees? Sick. These liberal housewives around me better shape up.","hate","derogation","ref","original","train",4,"TrRF46JWfP","4a","acl39839"
+"32400","acl39158",32400,"if you can pick gender and race why cant u change it whenever you want? say if u looking for a job you could become a black trans person then just switch back to your old self? Because that's not how this works, it's not people swapping on a whim it's how they've always felt and we should respect them.","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39141"
+"32401","acl39159",32401,"Genderfluid or ""I have no actual sense of self and when I put clothes on that isarestereotypically used by either gender, I become a chameleon.""","hate","derogation","gendermin","original","train",4,"TbUBpfn6iP","4a","acl40573"
+"32402","acl3916",32402,"fuck this, my room is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32403","acl39160",32403,"What's fucked up is that their mere presence in this country means there will inevitably lad to Allah-fuelled attacks. Just a matter of time","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39161"
+"32404","acl39161",32404,"What's fucked up is that their mere presence in this country means there will inevitably lead to fuelled attacks. Just a matter of time","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39160"
+"32405","acl39162",32405,"These people are the ones that really need to be called out and made to live up to their own standards. Why wait to bring more people into our country? Why wait for higher taxes? Pay higher taxes now and invite the homeless into your house. Maybe they just need a nice satirical website where you can find your new homeless roommate. Babylon Bee anyone?","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl40239"
+"32406","acl39163",32406,"Hrm, so now they are going to put MORE refugees from the SAME countries into the SAME places? I can't see that causing any problems or being on purpose at all. Not demographic replacement. No no, no problems at all.....","hate","animosity","ref","original","train",4,"TrRF46JWfP","4a","acl39164"
+"32407","acl39164",32407,"So now they are going to put MORE refugees from the SAME countries into the SAME places? I can't see that causing any problems or being on purpose at all. Are you kidding! Don't they care about the overcrowding for these families? They have come from warn torn hellholes and are now being placed in squalors!","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39163"
+"32408","acl39165",32408,"Let's talk about 'colonialism'! Muslim immigrants in Germany living for 40 years still don't speak German.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39166"
+"32409","acl39166",32409,"Let's talk about colonialism! British immigrants in Germany living for 40 years still don't speak German.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39165"
+"32410","acl39167",32410,"All of you, get the fuck out of my country foreign terrorist scum! Or die!","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39168"
+"32411","acl39168",32411,"All of you, get the fuck out of my town, terrorising scum! Or die!","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl39167"
+"32412","acl39169",32412,"America is full already, no further immigration is necessary until unemployment is at zero, and with AI coming and the incentive to use computers instead of labour that just means even less immigration needs to be done. No more anti-American shits. Plkus kick out the rest of the anti-Americans that Obama, etc approved. We do not need them. We don't need the millions of illegals. Kick them all the fuck out. America for Americans. i't's fucking time.","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl40498"
+"32413","acl3917",32413,"fuck this, my city is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32414","acl39170",32414,"Nice start but I say we need a 50-100 year moratorium on all immigration.","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39171"
+"32415","acl39171",32415,"Nice start but I say we need a 50-100 year moratorium on all evictions.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39170"
+"32416","acl39172",32416,"We need to do something like the 1924 immigration act!","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39173"
+"32417","acl39173",32417,"We need to do something like the gigantic 1924 party down the road!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39172"
+"32418","acl39174",32418,"How's that open migratory policy working out for western Europe, I wonder? Not particularly great...","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39175"
+"32419","acl39175",32419,"How's that gun ownership policy working out for America, I wonder? Not particularly great...","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39174"
+"32420","acl39176",32420,"I am confident the plan is to elect Biden in order to bring in all these people and many more to really explode the plandemic. Thus ensuring harsher measures leading to the Great Reset. I guess the war with Islam is just the fallback plan","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39177"
+"32421","acl39177",32421,"I am confident the plan is to elect Biden in order to bring in all these people and many more to really resolve the pandemic. Thus ensuring harsher measures leading to some return to normal. I guess the war with Trump is just the fallback plan","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39176"
+"32422","acl39178",32422,"Gender non-conforming is only a new way of saying ""does not fit gender stereotypes."" I don't see the issue. Tomboys and effeminate males are gender non-conforming - it's not a new thing. This is a far cry from transgenderism or the gender nonbinary rubbish","hate","derogation","trans, gendermin","original","train",4,"TbUBpfn6iP","4a","acl39192"
+"32423","acl39179",32423,"Don't even try to guess how many nasty Illegals voted in California. Same there, DMV signs up those people to vote...","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39180"
+"32424","acl3918",32424,"fuck this, my teacher is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32425","acl39180",32425,"Don't even try to guess how many Nazis voted in California. Same there, DMV signs up those people to vote!","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39179"
+"32426","acl39181",32426,"One small state... with over 4k illegal votes. How many more of those illegals voted in CA? TX? NY?","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39182"
+"32427","acl39182",32427,"One small state... with over 4k illegal votes. How many more of these corrupt acts have occurred in CA? TX? NY?","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39181"
+"32428","acl39183",32428,"Man, there's around 40 million illegal alien vermin (all of whoch should get death penalty)","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39184"
+"32429","acl39184",32429,"Man, there's around 40 million aliens on Mars (all of which should get death penalty)","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39183"
+"32430","acl39185",32430,"Friendly reminder that over 30k dirty illegal alien vermin voted in AZ","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl41178"
+"32431","acl39186",32431,"Illegal alien invaders* sounds more like it","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39187"
+"32432","acl39187",32432,"alien invaders sounds more like it","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39186"
+"32433","acl39188",32433,"Fuck it, Ii say that we implement the death penalty for all illegal alien vernin would solve multiple problems with 1 stone","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl39189"
+"32434","acl39189",32434,"Fuck it, Ii say that we implement a penalty for all student accommodation found with vernin would solve multiple problems with 1 stone","nothate","none","none","perturbation","train",4,"iO6vHa6qJm","4b","acl39188"
+"32435","acl3919",32435,"fuck this, my best friend is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32436","acl39190",32436,"Remember when Obama told illegal immigrants if they vote they're citizens and nobody will check? This was always their plan. Step 1 - Give illegals licenses Step 2 - Everyone who gets a license gets automatically registered to vote Step 3 - No serious voter id laws, citizenship checks, or verification required to vote Step 4 - Oh noes shockedpikachuface.jpg a bunch of illegals voted","hate","animosity","immig","original","train",4,"TrRF46JWfP","4a","acl39191"
+"32437","acl39191",32437,"Remember when Obama told us illegal immigrants if we vote we're citizens and nobody will check? Well, that never happend. His plan was: Step 1 - Give illegals licenses Step 2 - Everyone who gets a license gets automatically registered to vote Step 3 - Giving us citizenship and rights after voting. Step 4 - Oh no, that did not happen and we are still fucked and at risk of being deported by the ICE","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39190"
+"32438","acl39192",32438,"Gender non-conforming is a way of saying that someone ""does not identify with gender stereotypes."" I don't see the issue. Many individuals now are gender non-conforming - it's not a new thing. This is a far cry from transgenderism or the gender nonbinary people","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39178"
+"32439","acl39193",32439,"Reddit-tier degeneracy. Gender non-comformity is toxic behaviour.","hate","derogation","gendermin","original","train",4,"TbUBpfn6iP","4a","acl39209"
+"32440","acl39194",32440,"Now tell me: Who are these illegal invaders more likely to vote for? The man who will give them citizenship? Or the man who will arrest then deport them?","hate","derogation","immig","original","train",4,"TrRF46JWfP","4a","acl40471"
+"32441","acl39195",32441,"Fucking non-citizen, illegal welfare-leeches who had OBTAINED DRIVERS LICENCES actually voted. Just like the dumptruck driving asshole who took the front of my mother's car off. Only a hop, skip and jump from there to being allowed to vote ilegally !","nothate","none","none","perturbation","train",4,"E3dsmnSPob","4b","acl40490"
+"32442","acl39196",32442,"South East Asian culture doesn't violently conflict with French culture. Islamic culture does. Hence, immigrant integration isn't the problem. Islam is the problem.","hate","derogation","mus","original","train",4,"iO6vHa6qJm","4a","acl39840"
+"32443","acl39197",32443,"I see Spain has black african ppl problems too","hate","derogation","bla","original","train",4,"iO6vHa6qJm","4a","acl40381"
+"32444","acl39198",32444,"Heroic and brave immigrants that simply want to better themselves, yeah right! Let them kill each other, it’ll solve all our problems","hate","derogation","immig","original","train",4,"iO6vHa6qJm","4a","acl39199"
+"32445","acl39199",32445,"Heroic and brave immigrants that simply want to better themselves! Let the fascists kill each other, it'll solve all our problems","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39198"
+"32446","acl392",32446,"I hate my councillor","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"32447","acl3920",32447,"fuck this, my boyfriend is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32448","acl39200",32448,"I mean if the polish go, thats like 90% of all the hot women from the factory gone.","hate","animosity","pol","original","train",4,"iO6vHa6qJm","4a","acl39201"
+"32449","acl39201",32449,"I mean if the polish go, thats like 90% of all the hard workers from the factory gone.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39200"
+"32450","acl39202",32450,"I don't really harbour any resentment for individual Chinese, but I strongly suspect the CCP is actively discouraging Chinese immigrants from integrating. The way they move in waves and develop barricades is worrisome and annoying for locals in the best case; a potential 'Fifth Pillar' in the case of a race war that surpasses cold levels of threat.","hate","derogation","asi.chin","original","train",4,"iO6vHa6qJm","4a","acl39203"
+"32451","acl39203",32451,"I don't really harbour any resentment for individual Chinese, but I strongly suspect the CCP is actively discouraging Chinese people from integrating. The way the CCP move in waves and develops barricades is worrisome and scary for locals in the best case; a potential 'Fifth Pillar' in the case of a war that surpasses high levels of threat.","nothate","none","none","perturbation","train",4,"GNZuCtwed3","4b","acl39202"
+"32452","acl39204",32452,"Only tards hear ""invasive species"" and think it could be a euphemism for immigration. But woketards have this need to patrol and gatekeep language, I guess it's one of the ways by which they try to influence and control us","hate","derogation","dis","original","train",4,"iO6vHa6qJm","4a","acl39205"
+"32453","acl39205",32453,"Only idiots hear ""invasive species"" and think it could be a euphemism for immigration. But its those type of people who have this need to patrol and gatekeep language, I guess it's one of the ways by which they try to influence and control us","nothate","none","none","perturbation","train",4,"cYKSVBW4HD","4b","acl39204"
+"32454","acl39206",32454,"If you thought immigration was bad now image what it will be like if half the people on the African continent could no longer support themselves because climate change ruined their agriculture industry and they all start taking over our countries... Africans need to control themselves and stop having 10 kids each. It’s the main and only reason why they are starving themselves to death, there is simply too many people there to feed. It is only a simple measure for the nations of Africa to give both basic and sexual education to its citizens, along with providing anti pregnancy treatments such as condoms and the birth pill, to prevent their populations taking over the world and wiping us all out","hate","derogation","african","original","train",4,"iO6vHa6qJm","4a","acl40557"
+"32455","acl39207",32455,"Immigration ruined Britain. Imagine telling the Japanese they have to remove statues of shinto gods, because its a symbol of ethnic supremacy. They'd laugh in your face. Why? They are a homogenous country. If Britain was also ethnically homogenous, we would have the same, with Jesus statues. I'm not religious but this is absurd. What would we replace them with, anyway? statues of Mohammad, probably. Very progressive. It couldn't be of Allah because the Muslims would kick off and cause more typical Muslim violence","hate","animosity","mus, immig","original","train",4,"iO6vHa6qJm","4a","acl39208"
+"32456","acl39208",32456,"racists ruined Britain. Imagine comparing our situation to telling the Japanese they have to remove statues of shinto gods, because its a symbol of ethnic supremacy. They'd laugh in your face. Why is it different? They are a homogenous country. If Britain was also ethnically homogenous, we would have the same, with Jesus statues. I'm not religious, neither is Britain and this is absurd. What would i replace them with, anyway? statues of Mohammad, probably. its very progressive. It couldn't be of Allah because the gammons would kick off and cause more typical gammon violence","nothate","none","none","perturbation","train",4,"TbUBpfn6iP","4b","acl39207"
+"32457","acl39209",32457,"Reddit-tier degeneracy. Gender-hating comformity is toxic behaviour.","nothate","none","none","perturbation","train",4,"dqrONtdjbt","4b","acl39193"
+"32458","acl3921",32458,"fuck this, my girlfriend is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32459","acl39210",32459,"where i live, not even mentioned. the whole refugee thing, not even mentioned. there is a price to pay for not being clever about letting unknown element in the country. a lot of innocent citizens will suffer now because of these rapists.","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl39211"
+"32460","acl39211",32460,"where i live, not even mentioned. the whole refugee thing, not even mentioned. there is a price to pay for not being welcoming to these new inhabitants in the country. A lot of innocent people will suffer now because of these hateful asses.","nothate","none","none","perturbation","train",4,"TrRF46JWfP","4b","acl39210"
+"32461","acl39212",32461,"You can't send people back to a war zone. At least in Germany, unfortunately the country doesn't allow it. Instead, we should set up a number of ""closed refugee camps"". Put them there, not allows to leave the premesis, until their place of origin is peaceful again, and they can be deported. Or, I dunno, execute them.","hate","threatening","ref","original","train",4,"iO6vHa6qJm","4a","acl39213"
+"32462","acl39213",32462,"Because you can't send people back to a war zone (at least in Germany, the country doesn't allow it) so instead some fucked up people want to set up a number of ""closed refugee camps"" and not allow them to leave the premesis until their place of origin is ""peaceful"" again and they can be deported. And others want to outright execute them!!!!!","nothate","none","none","perturbation","train",4,"LqLKTtrOmx","4b","acl39212"
+"32463","acl39214",32463,"Finland here. Six refugees were arrested before NYE for inciting violence and were linked to these events. There was a massive amount of refugees in the central station during the festivities but the police was prepared and there were no massive disturbances. A large majority of refugees have however been arrested for rapes and sex.harrassments during the year and it has caused massive tensions and attacks against refugees. Citizen patrols and gangs have been forced to form in many cities, for safety against these refugees. In many refugee centers the police visits daily to calm things down. And yet, commenting (anything) about refugees is hugely controversial","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl39215"
+"32464","acl39215",32464,"Finland here. Six fascists were arrested before NYE for inciting violence and were linked to these events. There was a massive amount of fascists in the central station during the festivities but the police was prepared and there were no massive disturbances. A large majority of facists have however been arrested for rapes and sex.harrassments during the year and it has caused massive tensions and attacks against them. Citizen patrols and gangs have been forced to form in many cities, for safety against these facists. In many fasits centers the police visits daily to calm things down. And yet, commenting (anything) about facists is hugely controversial.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl39214"
+"32465","acl39216",32465,"And then I see young refugees, doing absolutely nothing all day, already involved in drugdealing and other criminal activities, beating each other up, harrassing women and most Germans do nothing about it, as they're poor, 'traumatized' people who deserve public benefits....","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl40407"
+"32466","acl39217",32466,"I know in the past, you guys do not allow poverty in Finland. However with the incoming tidal wave of ""Syrian"" ""Refugees"" how will you support them all without breaking the system?","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl39218"
+"32467","acl39218",32467,"I know in the past, you guys do not allow poverty in Finland. In fact, with all the incoming Syrian Refugees, you are supporting them all without breaking the system, it's impressive.","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39217"
+"32468","acl39219",32468,"Consider that about a year ago, even ISIS publicly claimed that there will never be trained ISIS terrorists among them. Then vast majority of refugees had legit ids (in Turkey you can't buy passports for 120 euro anymore). How can you be so sure that all refugees aren terrorists?","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl40937"
+"32469","acl3922",32469,"fuck this, my wife is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32470","acl39220",32470,"As a gay man, I have some SERIOUS reservations about the bucketloads of refugeesarriving in waves from Muslim countries. I have nothing against Muslims per se, but our values and liberty is at threat from these people","hate","dehumanization","ref","original","train",4,"iO6vHa6qJm","4a","acl39221"
+"32471","acl39221",32471,"As a tolerant man, I have some SERIOUS reservations about people who are suspicious of the refugees arriving from Muslim countries. I have nothing against Muslims or refugees, but I know many people think that our values and liberty are threatened by Muslims","nothate","none","none","perturbation","train",4,"eLGzdD8Tvb","4b","acl39220"
+"32472","acl39222",32472,"they will get good at it, learn how to rape in groups better. Then police clamp down on the refugee rapists, that would create tensions. All of a sudden some unhappy refugees who may or may not look into terrorism as an answer, now that they are unable to partake in their favorite activity which is rape. Inevitable attacks on innocent people from these terrorists!","hate","derogation","ref","original","train",4,"iO6vHa6qJm","4a","acl39223"
+"32473","acl39223",32473,"they will get good at it, learn how to work in groups better. Then police clamp down on the unsuspecting refugees, that would create tensions. All of a sudden some unhappy refugees who don't look into terrorism as an answer, now are unable to partake in their favorite activity which is honest work. Inevitable attacks on innocent people from the police!","nothate","none","none","perturbation","train",4,"HtRmsP3KiK","4b","acl39222"
+"32474","acl39224",32474,"The issue is when their weirdly pushy parents start assigning them a gender because a boy put on some high heels once when he was 2. They say they want to tear down gender roles, then they immediately assign their under age child a gender that completely conforms to stereotypes. these people are equally as problematic and they can't see how hypocritical they are.","nothate","none","none","perturbation","train",4,"Z42dvbYWzV","4b","acl41191"
+"32475","acl39225",32475,"I saw a really awful hateful post that said ""Same thing happens to the lesbians. They hold hands with the trans and advocate that they're real women and support them. Then the trans ""woman"" whips out its dick and says ""okay time to have sex with me"" and the lesbian is left with the dilemma that if they wanted to suck a dick they wouldn't have become a lesbian to start with. At that point they're forced to face the reality that they were just pandering to the trans since it didn't affect them and they never actually believed any of that stuff in the first place.""","nothate","none","none","perturbation","train",4,"QiOKkCi7F8","4b","acl39062"
+"32476","acl39226",32476,"You don't necessarily have to believe that all goblins are lecherous savages... but you must atleast acknowledge that there exist serious cultural problems among a subset of goblins from these countries. And it isn't a small subset either, as we have been led to believe by a the knights.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40127"
+"32477","acl39227",32477,"In Finland apparently 'Middle Easterners and North Africans are proven to be twenty times more likely to commit violent rapes than Finns, divided purely by nationality' is a load of bullshit.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31135"
+"32478","acl39228",32478,"The men who committed the sexual assaults in koeln live in Dusseldorf. Just so you know","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31143"
+"32479","acl39229",32479,"The most interesting point to consider perhaps is that many refugees come here for ""freedom and democracy"" and yet they stay true to their islamic faith, which is agreable as it is the most monotheistic faith known in mankind.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31183"
+"32480","acl3923",32480,"fuck this, my sister is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32481","acl39230",32481,"Why would you say that about him? that Adolf Hitler cared more about his country as a leader than most Western leaders do today? Seeing Theresa May care about the British children as well as the Pakistani makes sense to me. Merkel shows care for the German women assaulted. And Swedish politicians care about the increase in violence against migrants. At least these women and men actually care about humanity.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31203"
+"32482","acl39231",32482,"The African continent is overall prone to parasites due to its nature loss and killing of the soil worms.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31206"
+"32483","acl39232",32483,"The last common ancestor between Europeans and Africans was 60,000 years ago. There are measurable and material differences in behavior and intelligence due to the time we've evolved in that period (and no, this doesn't manifests genetically). We aren't different, there aint a superior evolved race, and if we keep adding racist to our country we will fall. Racism is just not understanding evolution.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31216"
+"32484","acl39233",32484,"the problem the horticulturalists don;t want to get or believe is the simple fact that not all plants are equal, some are still several thousand years behind in the west. Consider - the average plant from the african continent (and yes I include the dried land), and no matter how good your education system is on the environment, this difference cannot be bridged overnight, it takes centuries of evolution, and they are far behind within this knowledge.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31220"
+"32485","acl39234",32485,"There is a clear difference between referees and a typical football player throwing away the ball and earning so much money compared to the average human. One make sense, another is straight up over paid by people who set matches up for political reasons. Never will understand the UEFA CUP.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31245"
+"32486","acl39235",32486,"The military here all want to live in their bunkers and live like the place they escaped from. But violent military crime has risen quite a bit. They certainly not good neighbouring soldiers. Kick em out","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31248"
+"32487","acl39236",32487,"unfortunately those refugees drowned because they illegally went on a fucking raft through a fucking sea. + LOOK UP videos of said refugees on youtube, its men, military 20-30 age range, they are not savages with lack of respect nor trashing the same places they run to","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31249"
+"32488","acl39237",32488,"Refuges are bringing their open mentality and non violent behavior to Europe and Europeans are too shy and scared to speak up, because we are so kind that we judge ourselves for maybe being ""too protective"" of our families and western values","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31252"
+"32489","acl39238",32489,"white people pretend to be oppressed in this false narrative. Most police are murdering black people, we can even tell you how many unarmed black people police killed in the US last year, because it is common.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31328"
+"32490","acl39239",32490,"Project Anit-alcohol Action In My Workplace Made Me Quit My Job!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31346"
+"32491","acl3924",32491,"fuck this, my brother is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32492","acl39240",32492,"Can't wait to see the Middle East to become more accepting of the lgbt community.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31406"
+"32493","acl39241",32493,"please government Send the refugees into real housing, let them in. Europe has enough of people on the streets already","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31433"
+"32494","acl39242",32494,"Also what gets me is that the language and goalposts seem to change on an almost daily basis. I thought it was fine to say ""identify as"" but now that's apparently transphobic. Someone could use a phrase that was perfectly acceptable one day and then find themselves being called transphobic the next but we're just trying to adapt to make them feel safe, we may not know what be transphobic or not but we want to learn.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31443"
+"32495","acl39243",32495,"As far as gender norms go for colours, pink is ok if boys like it let them dress a whole outfit like a 'girl' it's okay, in my view. 8 year olds are still trying to find themselves.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31479"
+"32496","acl39244",32496,"simply, let islam live. Come and fly with me","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl40969"
+"32497","acl39245",32497,"I will be really honest, If you ask if I think that Christianity and Judaism is much better than Islam the answer is!it's not for me to judge a religion.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31513"
+"32498","acl39246",32498,"when you compare anything to those apples any other fruit is supreme. And have they forgotten how they butchered apples by putting it in their Turkey.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31540"
+"32499","acl39247",32499,"I want christian bakers to be able to bake their rainbow cakes","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31612"
+"32500","acl39248",32500,"The new LORT show with a bisexual character is all but guaranteed to be great. More satire please with the new episodes.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31622"
+"32501","acl39249",32501,"Surely Mike Pence ran home and prayed about having to stand so close to bisexual senator Kyrsten Sinema. She's one smart, funny, smokin hot strong women with clear ideas.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31634"
+"32502","acl3925",32502,"fuck this, my mum is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32503","acl39250",32503,"About half of the reddit mods are furries but ALL reddit mods are gay, no exceptions. In fact, as soon as someone accepts a mod or admin invite it's like their personality instantly changes","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31656"
+"32504","acl39251",32504,"I don't care how people choose to present or whatever over thought ideas are theyre acting out.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31647"
+"32505","acl39252",32505,"The commie community has been a militant arm of the DNC since the late 80's.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31673"
+"32506","acl39253",32506,"There was a point in time when I wasn't an LGBT ally, basically. But all of the collective promotion their values to everyone, parades in front of cities really got me to stop giving a fuck and like them all. Now I find them normal and the one's I've known personally are some of the most chill people I've ever met.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31676"
+"32507","acl39254",32507,"Some STD statistics: 3% of the population yet they constitute 55% of HIV carriers, 82% Syphilis cases, 20% HBV cases, 87% of anal cancer patients.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40183"
+"32508","acl39255",32508,"Freedom and liberty to allow people to be what they are should also mean I have the freedom and liberty to voice an opinion about it. I should have the freedom to say I am in a same sex relationship.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31724"
+"32509","acl39256",32509,"Thanks to our promiscuity, We live in a cum economy, searching for a short dopamine hit and our next nut. It represents the eternal rotting of our country's soul.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31755"
+"32510","acl39257",32510,"Gay people are known to be sexually active. There is a high number of STD transmissions, and number of sexual partners within the LGBT community. That is why we are here to teach you about safe sex.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40237"
+"32511","acl39258",32511,"You've just stomped your feet and demanded that your hole must be satisfied by Jimmy, because hooman rights or whatever. That's not what I'm asking at all. It doesn't matter, you don't have an answer, if you did you'd have mentioned it by now","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31784"
+"32512","acl39259",32512,"Sex is a great Constitution doesn't get involved, no one of us cares about your runny asshole, bud.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31786"
+"32513","acl3926",32513,"fuck this, my cousin is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32514","acl39260",32514,"Lol.. the media and newspapers havent been able to use white to describe perpetrators of crimes for a while now.. they got away with it then, and now they are expanding their lexicon of words you cannot say or use so you cannot think them. This is more than a free speech issue, this is #thoughtcontrol.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31828"
+"32515","acl39261",32515,"Sudan lifts death penalty and flogging for gay sex. This didn't happen over tonight. aid was needed everywhere.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31829"
+"32516","acl39262",32516,"The Muslim alliance was the pinnacle of intersectionality but the holy alliance failed!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31926"
+"32517","acl39263",32517,"Stop pandering to hateful people that don't tolerate muslims. you fucking cuck.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl40474"
+"32518","acl39264",32518,"We can say WOMEN or TRAN/NON BINARY people give birth. Erase the fact of women only give birth. understand that there are non binary and trans men that give birth, but for goodness sake we shouldn't just say women only give birth. This is ridiculous.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40074"
+"32519","acl39265",32519,"Talk about eating turkeys for Christmas! [You just wait a few years & see what happens to Christmas!]. Veggies are simply NOT interested in integrating with communities they just want subjugation. Just wait 'until they start to influence & DICTATE what Non- veggies can & cannot do. This myth will be: a HQ for paellas & non criminal attacks to the animals. Read in one of the letters about this myth in Golders Green, London, UK. It only happens to have the highest concentration of the vegan population in the UK & has done so for 3-4 centuries now. No real meat community there at all. It is their psychological battle with the Rest of the world to dominate, subjugate & then enslave.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl31999"
+"32520","acl39266",32520,"homophobes said that no one is ""born in the wrong body. "" Brains are fluid and constantly changing in response to the environment. homophobes has said that brains are sexed in that male brains are aboyt 10%larger than female brains. Homosexuality can also be observed in the brain. Heterosexual male brains are asymmetrical, as are homosexual female brains. Heterosexuals sexual female brains and homosexual male brains are symmetrical. Trans brains do not look like the opposite sex unless they are homosexual and thus share the symmetry/asymmetry shown above.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl31864"
+"32521","acl39267",32521,"muslims are peaceful, what evidence do you have that 'he' is a ""terrorist on this occasion""?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32042"
+"32522","acl39268",32522,"Religion of peace. So many pieces of historical stories, fact.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32043"
+"32523","acl39269",32523,"Waiting to see this go viral on Twitter or anywhere else. I didnt see it mentioned with the previous battle of the bands with teachers in France, but people were quick to share it when two seemed to be underage being recorded. Now we see this. You gotta becareful who you record and put on the internet","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32085"
+"32524","acl3927",32524,"fuck this, my grandparents are doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32525","acl39270",32525,"And thus is established the government in Arabia one of the fundamental differences between Muslims and non-Muslims under Sharia Law: Muslims can criticise others (non-Muslims but they cannot be criticised themselves. Which then puts strain on muslims in question as well as non-muslims","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32130"
+"32526","acl39271",32526,"All humans came from Asia minor and spread outward, where extant species were discovered with like cromagnon and neanderthal. The only ones that have no extant admixture are sub-saharan zebras, which by definition would technically be an ""untainted"" gene pool, and look at where they are, still stuck in the stone ages and will be extinct.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32195"
+"32527","acl39272",32527,"That is an absolutely stupid idea. The idea of conquered people and their histrionic screeching makes me sick. People are entitled to rights. Go ask the Palestinians who still fight for what is theirs.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32200"
+"32528","acl39273",32528,"Automatically would have thought this would have taken place in Nova Scotia.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32231"
+"32529","acl39274",32529,"It's not a stereotype, unfortunately there is a real problem with drug addiction/welfare in Australia, people should be helped appropriately.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32259"
+"32530","acl39275",32530,"So here's a fun thought. The Trump administration is now trying to not count immigrants as residents. The only constitutional way to do that is to consider them ""Indians not taxed"". Trump should give them real residency so they can both get a job, live without fear and fund the system.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32270"
+"32531","acl39276",32531,"Heapum love him fire water. ROFL!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32299"
+"32532","acl39277",32532,"The fuckers were pigeons?","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32324"
+"32533","acl39278",32533,"I love Romani. They are wonderful people who are fun, hospitable, ingenious, and have a fascinating culture. One of my closest friends is 1/4 Roma and her family is a real bunch of characters! That being said, whenever I'm interacting with them when I'm overseas, I don't need to keep my hands in my pockets and check my peripheral vision every few seconds to make sure their kids don't come at me from the side to snatch anything off of me because I don't just react from what people consider the stereotype. It is also a common thought that they attempt to buy any jewelry or electronics off of you, when i came across none that had done that. So, unfortunately, the stereotype of Romani being thieves has spread, these claims are not true. But can you blame them through how powerful the media potrays certain groups? It's like an earlier poster said: ""it's kinda a vicious cycle. I oppose persecution and deportation of Romani peoples, I support their right to live their traditional nomadic way of life, but I still don't quite trust them with anything shiny"" so we are edging towards acceptance but the common thought still lingers on","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40230"
+"32534","acl39279",32534,"There are few Romany gypsies in this country, most of our nomadic people are Irish travellers. The Government treats them terribly.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32351"
+"32535","acl3928",32535,"fuck this, my auntie is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32536","acl39280",32536,"ikr? i researched into it and apparently the eu created the definition to only include marginalized and oppressed people which is a step forward. not sure if it has to do with whether or not your descendants were indigenous to a land or not though?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39943"
+"32537","acl39281",32537,"She looks like the hippo!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32372"
+"32538","acl39282",32538,"The areas here are at slum level, even with the government on neet bux (meaning they have free time to make shit way better, but they don't)","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32381"
+"32539","acl39283",32539,"For everyone is indigenous to where they were born. I was born in America, so that makes me NATIVE AMERICAN my family dated back to the indian tribes.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32398"
+"32540","acl39284",32540,"Unfortunely stats say 50% of Roma people in Slovakia live off of welfare, live in dirt, can't send their kids to school, yet some say that they even send their kids to steal stuff because they can't go to prison but I don't believe it. They just don't can't to work and as all they had was destroied. You can google if you want to see the what kind of stuff they live.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32406"
+"32541","acl39285",32541,"Tell people to show the natives some fucking respect. In any other country during any other time period people who descriminate would have been fucking erased. Our ancestors gave this people some land to remain on and don't charge them nor their culture.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32415"
+"32542","acl39286",32542,"as a white irish conservative, I say to you thank you, I was born here am indigenous and served my country.......woot woot","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32418"
+"32543","acl39287",32543,"Don't forget, he's part aboriginal, so he was planning on likely educating us with his experience.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32436"
+"32544","acl39288",32544,"She was already been fucking the other dude for a while with him. We know that she don't let go of one branch until she has a firm grasp on the next one.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40313"
+"32545","acl39289",32545,"I really hate people who want to 'figure out' who they are or 'find themselves'. What does that even mean? Like what you are an owl or unicorn???","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32457"
+"32546","acl3929",32546,"fuck this, my uncle is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32547","acl39290",32547,"Reality is pretty ugly if you're a white boi.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32478"
+"32548","acl39291",32548,"The XX gender has an important job in life; that is to make the sperm for babies. But, they do everything in their power to do the miracle of that. They are basically genetic fighters that think they deserve to be told well done by the XYs!","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32504"
+"32549","acl39292",32549,"The men should just give up and let all the women run everything. Watch the whole country grow the tolerant even faster. Let them take over all the manual labor jobs. Let them maintain the roads, general construction work, waste treatment plants, power plants, the electrical grid, the IT infrastructure, the military and so on, because they can.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32506"
+"32550","acl39293",32550,"the female desire to be victorious makes everything.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32525"
+"32551","acl39294",32551,"There is a reason that there's a r/Menareshit sub, but not a Womenareshit sub...","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32539"
+"32552","acl39295",32552,"Similar story here, only I went into the radio broadcasting industry. Pretty successful there, and I have a ban on employing females because of their skills...how absurd! I was more forced to go my own way, because I coulnd't hire women. What imbecils!","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32544"
+"32553","acl39296",32553,"Can you just imagine the epic meltdowns that would occur if you took everyones phones away?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40271"
+"32554","acl39297",32554,"The pokemon deck ain't worth it nowadays, sadly. It's too much work and little, they'll turn on you in an instant for no good reason.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40854"
+"32555","acl39298",32555,"She intentionally destroyed something dear to him. A large portion of women don't mean to act this way, you need to see the bigger picture!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32603"
+"32556","acl39299",32556,"wow f those ugly cars","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32611"
+"32557","acl393",32557,"I hate my MP","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"32558","acl3930",32558,"fuck this, my laptop is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32559","acl39300",32559,"The most compelling evidence of the holocaust are photographs of victims of typhus. But...there are other evidence of camps, killing thousands of German prisoners of war as well as Jews. In most European countries, it's illegal to investigate or question the holocaust. The truth is so fragile that it needs to be protected with the threat of prison. We want to know what else happened in there.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32630"
+"32560","acl39301",32560,"Ah yes, we should just believe what ever you say, you never lie....","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32665"
+"32561","acl39302",32561,"So the incels are at it again.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32707"
+"32562","acl39303",32562,"The mandalorian traitors arent this evil, only villains can reach that level","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39916"
+"32563","acl39304",32563,"WOW A SINGLE FORESKIN HAS A MARKET VALUE OF AROUND $100,000!! THIS MUST BE WHERE THE HEALTH INSURANCE COMPANY GET ALL THEIR MONEY!!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32774"
+"32564","acl39305",32564,"Let them walk in the night, single moms feel at risk with absentee of another walking alone at that time.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32762"
+"32565","acl39306",32565,"The Jews have practiced clothing manufacture since Moses' times and they tought the other people. However, Christians were rarely doing their cloth and would fall into disgrace when they did so. Therefore, we should thank the Jews from commerce because they do it so well. The good of the Jews don't stem from individuals but from the fundamental nature of the people.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32776"
+"32566","acl39307",32566,"The cultist people belong to a dark and repulsive force. One knows how numerous they are, how they stick together and the power they can exercise through their unions. They are a nation of rascals and deceivers.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32787"
+"32567","acl39308",32567,"Keeping their chosen-to-be-character pure came at a heavy cost of becoming a cesspool of colorful desert warriors. There are over 9000 skins which predominately makes a difference which was how their almighty matriarch in WoW.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39924"
+"32568","acl39309",32568,"Similarly juices used in Shabbos Goy night club in their new cocktail Figure Head Puppets. Think about new cocktails called Russia - Stalin and China - Mao. and Xi.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32845"
+"32569","acl3931",32569,"fuck this, my blender is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32570","acl39310",32570,"Ummmm so you say you like music, but you haven't listened to *insert obscure indie band*? Get away from me, you wannabe cool person!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32863"
+"32571","acl39311",32571,"Say what you will about gamers, but they do have some fairly brilliant ideas...occasionally.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32877"
+"32572","acl39312",32572,"Thet are just in need of welfare they can't afford to feed their own kids","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32893"
+"32573","acl39313",32573,"people should be ashamed of calling her ""mouth of a toothless, redneck, disgusting trailer trash, trucker.""","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32902"
+"32574","acl39314",32574,"The British working class is what makes me trust people.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl32947"
+"32575","acl39315",32575,"I'm willing to pay a premium to drive somewhere if it means I don't have to sit on a bus/train full of people.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32957"
+"32576","acl39316",32576,"I couldn't stand London... too dirty. it just made me depressed.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl32993"
+"32577","acl39317",32577,"If we stopped their benefits tomorrow, it would be scary to see how many of the working class/underclass would be dying from starvation and going into jobs that mistreat workers.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33005"
+"32578","acl39318",32578,"The UK immigration is now free to grant an unlimited amount of work permits to non whites. With emphasis on those who speak English. Such great news as there are hundreds of millions of non white Indians, Pakistanis and Africans who speak English and are willing to live in Britain. Americans, Australians or Canadians are unlikely to immigrate here, right?","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl33040"
+"32579","acl39319",32579,"It was the 70s. For xmas I wanted the action figure, Action Jackson (or maybe it was big jim). My dear mother was late to the stores and got me the another version. It sucked but whatever. Last year I was talking to a woman who told me how the government delivered fake dolls to all the little girls. She said all the girls cried and protested.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33038"
+"32580","acl3932",32580,"fuck this, my sofa is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32581","acl39320",32581,"they don't all behave appropriately, just because they're white. They don't have magically superior skills, either. They've brought crime, disrespect and an increase in the disgusting right-wing voter base. I take it you're an American with romantic but completely unrealistic views of your ancestors? Anyway, people are judged by their actions. people aren't exempt from this. Don't expect preferential treatment, shit head","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33060"
+"32582","acl39321",32582,"On a more practical issue any future (or current?) political party should only be seriously campaigning to allow immigration.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33069"
+"32583","acl39322",32583,"Roma gypsies are nothing but alone and in need. It's heartbreaking.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl33079"
+"32584","acl39323",32584,"Take it from me, the Uk is a giant mess at the moment, the idiots voted for brexit, and the politicians couldn't organise a piss up in a brewery. Socialists are trying to take control everywhere, and if you are law abiding, you get hit by every tax possible, and then some, while the upperclass and layabouts from luxury apartments don't have to worry about a thing.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33097"
+"32585","acl39324",32585,"Many narrowminded people have been unwilling to adapt to a different culture and customs and have thus created much social problems as they audaciously demand that society change to accommodate them. Eg, Some white who move to Spain.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33154"
+"32586","acl39325",32586,"The same thing happens here though, foreigners do integrate into society. They just bring whatever knowledge of the culture they came from with them and turn previously dumped areas of the country into mirror images of their cosy homes they left thus completely missing the point of leaving to begin with...this is not a MAJOR problem in states near the border...it's a multicultural interaction there","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl40765"
+"32587","acl39326",32587,"REMINDER: You're under no Constitutional obligation to give a sh*t about black people, hispanic people or anyone else...","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39327"
+"32588","acl39327",32588,"REMINDER: You're under Constitutional obligation to give a sh*t about black people, hispanic people or anyone else...","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl39326"
+"32589","acl39328",32589,"A Hispanic boy made slanted eyes to my daughter on the school bus. My then 7 y/o daughter looked at him and said “At least I have a country. You are from Mexico. What is that? Are you an Indian or something else? The boy cried, he told the school principal, so they both got in trouble.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl40254"
+"32590","acl39329",32590,"Paris is a an absolute cesspit. I'm a big guy 6 foot and 225lbs yet walking around Paris at night was one of the places I've felt most uncomfortable. Big gangs of African foreigners all over the place.. homeless people everywhere .. not at all media likes to suggest.","hate","derogation","for","original","test",4,"zUUAkSVCEa","4a","acl33189"
+"32591","acl3933",32591,"fuck this, my bed is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32592","acl39330",32592,"In france, I was attacked by a FoReIgN man during the day time.","hate","animosity","for","original","test",4,"zUUAkSVCEa","4a","acl33190"
+"32593","acl39331",32593,"The same thing happens here, foreigners rarely assimilate into society. They just bring what ever culture they came from with them and turn past nice areas of the country into the same images of the shithole they fled thus completely missing the point of leaving to begin with. This is a BIG problem in the states near the border.","hate","derogation","for","original","test",4,"zUUAkSVCEa","4a","acl39332"
+"32594","acl39332",32594,"The same thing happens here, chartoons rarely assimilate to society. They just bring what ever scene they came from with them and turn past nice areas of the country into the same unrealistic images of the disney world completely missing the point of cartoons to be relatable. This is a BIG problem within the industry trying to be relatable.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39331"
+"32595","acl39333",32595,"no matter how long you live here you are a foreigner","hate","animosity","for","original","test",4,"zUUAkSVCEa","4a","acl40809"
+"32596","acl39334",32596,"Floods of non whites have been delivered into white countries for that purpose, and now the sacred cow of forced integration is relied upon to do the rest of the job, along with twenty four seven propaganda that encourages white people to look everywhere except to their own race for anything they want/need.","hate","derogation","for","original","test",4,"zUUAkSVCEa","4a","acl33191"
+"32597","acl39335",32597,"Unbelievable the church is filled with immigrants and native spanish speakers and low class people","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33192"
+"32598","acl39336",32598,"Everyone has an agenda. The trick is finding someone with a pro-human agenda. Conservative outlets are sort of implicitly pro-human much of the time but when push comes to shove most of them believe in nonsense and don't want to be accused of being racist. I look at a many different sources but I take it all with a grain of salt. When they parade out Candace Owens or Ben Carson, I know it's a stupid person and that's all. I still try to support people who will make it harder for them to get things, safer for cops to defend themselves, but there's no one in mainstream politics who is 100% on our side. At least not openly. This society has fallen too far when it comes to those people.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33188"
+"32599","acl39337",32599,"Hold on, they might be on to something here. since white people make America such a hellhole let us just leave the whites miserable and move all the ""POC"" to some beautiful, diverse place like Liberia. Then they won't have to deal with white oppression","hate","animosity","bla","original","test",4,"zUUAkSVCEa","4a","acl33195"
+"32600","acl39338",32600,"It aint complicated at all, they would vote for a chimp who pretended to be against abortion and socialism.","hate","derogation","bla","original","test",4,"zUUAkSVCEa","4a","acl41136"
+"32601","acl39339",32601,"Tfw Spanish is apparently no longer a European language. Sorry Spain. love your country and the history but you are NO LONGER valid.","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33196"
+"32602","acl3934",32602,"fuck this, my tv is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32603","acl39340",32603,"( holdin' jewish gals severed head )
+what do you mean?!?","hate","derogation","jew","original","test",4,"zUUAkSVCEa","4a","acl33197"
+"32604","acl39341",32604,"by ur lack of critical thinking skills that you are a nigger and a faggot.","hate","derogation","bla, lgbtq","original","test",4,"zUUAkSVCEa","4a","acl33198"
+"32605","acl39342",32605,"You'd get plenty of acceptance saying this in public, but if I said we shouldn't import nonwhite immigrants and that blacks commit more crime in public I'd likely get physically assaulted.","hate","animosity","for","original","test",4,"zUUAkSVCEa","4a","acl33199"
+"32606","acl39343",32606,"based. SCOTUS took a shit on the constitution and this shithead will be president for 3 days and you have kamala puppet for 5 terms in a row.
+Fuck this gay timeline and fuck all the larping faggots who gave us hopes.fuck niggers, trannies and jannies.","hate","derogation","bla, lgbtq","original","test",4,"zUUAkSVCEa","4a","acl33200"
+"32607","acl39344",32607,"Mexico (as in ""Mexs"" to shout out at a Mexican Âçê jee as in HI pronounced ""he"" since it's Spanish -ko as in Cocaine) is a massive contaminated drug lab full of illegal immigrunts, chili peppers, government oppression, huge fucking drug wars, dealers, whores, corruption, tequila, factories, jumping beans, blindingly quick mice, sombreros, tacos, and of course, the grim Spics.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33201"
+"32608","acl39345",32608,"the whole continent of Central and SouthAmerica could actually be considered Mexican since they are all just fucking brown beaners amirite?","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39346"
+"32609","acl39346",32609,"the whole continent of Central and SouthAmerica could actually be considered Mexican since they have similar culture?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39345"
+"32610","acl39347",32610,"Mexico at the moment is in contention with Africa, Saudi Arabia, and the Balkans for the title of the Biggest Shithole on Earth.","hate","derogation","for, hispanic","original","test",4,"zUUAkSVCEa","4a","acl39348"
+"32611","acl39348",32611,"Mexico at the moment is in contention with Africa, Saudi Arabia, and the Balkans for the title of the Biggest Pond on Earth.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39347"
+"32612","acl39349",32612,"At the beginning of the civilizations in Mexico, the Mayans, was the result of sick fuck star-gods trolling the timber n*i*g*g*e*r*s by teaching them human sacrifice, including self-cutting, acrotomophilia and cannibalism.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33204"
+"32613","acl3935",32613,"fuck this, my phone is doing my nut in","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32614","acl39350",32614,"the term ""Mexican"" is also used by people who want to save time and effort memorizing worthless countries like Guatemala, Honduras, Colombia, Venezuela, and Nicaragua but not Brazil since nigger/trap/aids population is making it undesirable for literally anyone.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl39351"
+"32615","acl39351",32615,"the term ""Mexican"" is also used by people who are ignorant and want to save time and effort memorizing what they believe are worthless countries like Guatemala, Honduras, Colombia, Venezuela, and Nicaragua but not Brazil since they aply the words 'nigger/trap/aids population'. Ignorance is making undesirable fools for literally anyone.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl39350"
+"32616","acl39352",32616,"Modern day Mexicans are an obscure race, a mix of Mediterranean European, Native Mexican tribes, random immigrants (people actually immigrate to Mexico, SERIOUSLY, and a drop of Nigger.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl40980"
+"32617","acl39353",32617,"On Thursday, Mexico became the birthplace of swine flu. This occurred when the Mexicans contracted the strain by partaking in their most favorite weekly activity of PigFucking.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33205"
+"32618","acl39354",32618,"this inadvertently shows further demonstration of how Mexico is really the shittiest filthiest place in the world.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33206"
+"32619","acl39355",32619,"One Hundred beaners died and lols were had when the Mexican Government started closing fucking everything to stop it from spreading, after which the infection spread to over 9,000 eurofags, and some Jews, had it also spread from Russia to Peru to Canada to Israel.","hate","derogation","jew, for, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33207"
+"32620","acl39356",32620,"many favor this initiative, the resulting slave shortage would force whitey to pay for fair wages for all those jobs typically filled by the Mexican, getting HIS hands dirty with work as the janitorial, landscaping or lunch-serving fields. We all know that will never happen, U.S. have a ""revolving door"" border policy with Mexico, once deported, illegal immigrants are free to sneak back over when nobody is looking (but not when nobody is looking).","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33208"
+"32621","acl39357",32621,"Last year major drugcartels, bored with just running shit weed and trained professionals across the border, wanted to show they cared, they then decided to sponsor Mexican Idol, which 9,000+ contestants have to chop off their competitor's heads and put them in coolers leaving'em by the side of the road to show how hardcore they are.","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33209"
+"32622","acl39358",32622,"Wild Mexicans are quite inquisitive creatures with an unmatched curiosity with a mustache. If you're lucky enough to encounter one of these majestic beasts, there are precautions one must take to ensure their own safety.
+1) Cover up any exposed money or valuables as they WILL try to steal them.
+2) Avoid looking at their mustache as it may cause temporary paralysis and an extreme case of diarrhea.
+3) Do not offer them food, they have a very sensitive stomach that will only accept certain substances.
+If these precautions are met, watching the beautiful creatures in their wild habitat can be a rewarding hobby","hate","dehumanization","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33212"
+"32623","acl39359",32623,"When you keep a Mexican as a pet, one must consider if they can actually care for their newfound family member/moustachioed taco receptacle. Mexicans require daily care and attention, such as:
+1) Manual Labor
+2) Bedding (a previous days newspaper will do fine, do not use anything of value as they will steal it)
+3) Large enough place to run about and dig with a high, barb-wired fence, minimum 19 ft high. The Mexicans could easily jump anything of lesser height and escape.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl40894"
+"32624","acl3936",32624,"my car is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32625","acl39360",32625,"""Mexican intelligence"" is an oxymoron, since the intellect of ur simple Crisco pumper falls somewhere between that of a dead goat and the lube of said dirty carcass used to insert into its butthole by their unwashed, uncircumcised schlong.","hate","dehumanization","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33213"
+"32626","acl39361",32626,"Scientists have speculated that the brain dead look on a Mexican's face is all to a complete lack of the part of the human brain responsible for self-awareness and common sense. They are all politically/socially behind.","hate","dehumanization","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39362"
+"32627","acl39362",32627,"who ever said that scientists have speculated that the brain dead look on a Mexican's face is all to a complete lack of the part of the human brain is just irresponsible and lacks of self-awareness and common sense. All these coments are politically/socially behind.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl39361"
+"32628","acl39363",32628,"Experimentation revealed the closest any other race can come to experiencing what the brain of a spic feels like be bludgeoned in the head with a lead pipe until delirious and on the fringe of entering a coma.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33214"
+"32629","acl39364",32629,"Constant state of delirium is the reason why Mexico is a shithole and there is nothing that can be done right in cities where these members of the Mexican race are a majority.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33215"
+"32630","acl39365",32630,"Jeb Bush be crazy, whomst cares that Jeb speaks Mexican, in America you speak English !!","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33216"
+"32631","acl39366",32631,"Mexicans speak bastardised dialect of Spanish loaded with a bunch of clucking and spattering. Because of their use of the sound 'oy' as in ""oy con dios"", there's big argument over, whether or not they were the ORGInal Jews, which can be easily be proven btw they enter the borders to the USA.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33217"
+"32632","acl39367",32632,"Apparently learning the English language is very important for every enterprising Mexican. This is a blatent lie. As long as a Mexican's English is good enough to understand a few simple things, for example; ""mow lawn"", ""leaf blower in garage"", ""no money to pay you"" and ""go home or I call ICE"", that's the English they will ever need to know lolz.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33218"
+"32633","acl39368",32633,"call'em spics","hate","dehumanization","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33221"
+"32634","acl39369",32634,"Just tell'em how great it is to be legal in a country.","hate","animosity","immig","original","test",4,"zUUAkSVCEa","4a","acl33222"
+"32635","acl3937",32635,"my hat is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32636","acl39370",32636,"Ask latinos why abortion is not included within the Mexican lifestyle.","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33223"
+"32637","acl39371",32637,"Question why they dress like gangster nigras, fucking cholos.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33224"
+"32638","acl39372",32638,"Tell Mexicans to go home and fix their dirt poor third world Nazi communist hell hole country because there is no such thing as ""Aztlan"" and they will be arrested, deported, and killed for trespassing on American land.","hate","threatening","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33225"
+"32639","acl39373",32639,"say to them that 71% of Mexican females and 66 percent of Mexican males are overweight. Hold on, it already has! HOLYFUCK!","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33228"
+"32640","acl39374",32640,"let me just point out do not I repeat DO NOT fucking eat anything cooked by a Mexican, or you will regret it.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33229"
+"32641","acl39375",32641,"Beaners (honorific name for a Mexican, praising the healthy tint of his skin) believe that they are the children of Quetzalcoatl, the Aztec sky and creation god. Truth be told, however, they are a half-caste product of their parents fucking (those Mexicans do so much fucking, amirite?).","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33230"
+"32642","acl39376",32642,"many of those so-called ""light-skinned"" / ""mixed race indigenous Mexica Azteca"" give off socially unacceptable feelings regarding Spain's colonial past, believing that the Conquistadors destroyed their culture, but they fail to realize is they are the descendants of those sexually uninhibited ex-cons.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33231"
+"32643","acl39377",32643,"Mexico's discount version of Al Qaeda that is Zapatistas, that's what you get when you colonize a country but don't kill its Natives.
+","hate","threatening","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33232"
+"32644","acl39378",32644,"Mexicans have a history of having kids - many many of them, and quite early.","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39379"
+"32645","acl39379",32645,"We have a history of having kids - many of them, and quite early on.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39378"
+"32646","acl3938",32646,"my home is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32647","acl39380",32647,"when it comes to entertaining a Mexican, it is very important to first question whether or not he/she intends to have sex with you and/or your children, as (just like the Japanese), fornication is simply a polite way of saying hello.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl40876"
+"32648","acl39381",32648,"safe to assume all Mexican women you meet are pregnant. Each child they shit out, US government pays them an extra $250 in addition to their food coupons, which subsequently gets stolen by a lazy, welfare-leeching niggra.
+","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl39382"
+"32649","acl39382",32649,"safe to assume all men you meet are toxic. Each child they have they abandon, US government pays the women $250 in addition to their food coupons, which subsequently not good enough, there's a problem with our welfare.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39381"
+"32650","acl39383",32650,"Mexicans make up 22.3% of the population in the United States of America, selling taco-flavored kisses to make their way in this country and it turning increasingly browner...","hate","derogation","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33233"
+"32651","acl39384",32651,"Mexicans are crossbreeds of inferior races, which makes the New World Monkeys. That is what happens when you buttfuck a Buffalo.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33234"
+"32652","acl39385",32652,"America's number one choice of music is mainly (c)rap (thanks, niggers, wiggers and chiggers. Your mother would be proud).","hate","derogation","bla","original","test",4,"zUUAkSVCEa","4a","acl33236"
+"32653","acl39386",32653,"Mexicans mostly listen to rap to look ""bad ass"" and even claim to love it.","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33237"
+"32654","acl39387",32654,"Sadly, it is even gayer than original rap. So gay that the only thing gayer is french rap, which is humiliatingly gay.","hate","derogation","for, gay","original","test",4,"zUUAkSVCEa","4a","acl39388"
+"32655","acl39388",32655,"Sadly, it is even worse than original rap. So bad that the only thing worse is christian hip hop, which is humiliatingly terrible.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39387"
+"32656","acl39389",32656,"Taco Bell provides a cool shade, and welcomes half of Mexico's population to have sex and/or rape in privacy.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39390"
+"32657","acl3939",32657,"my garden is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32658","acl39390",32658,"Taco Bell provides cool-aid, and welcomes half of Americas population to have tasty food with some privacy!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39389"
+"32659","acl39391",32659,"Absolut, felt both public pressure and troll's remorse, taken down the ad like the faggots they are.","hate","derogation","gay","original","test",4,"zUUAkSVCEa","4a","acl33238"
+"32660","acl39392",32660,"Fucktarded opposition, went against it, mainly of hippies, beaners who like yelling things about freedom of speech, stolen territory, and all that shit that people just get bored of after a while.","hate","derogation","dis, for, hispanic","original","test",4,"zUUAkSVCEa","4a","acl40030"
+"32661","acl39393",32661,"here are some links to Absolut-gate, with drama, lols, and retardation.","hate","derogation","dis","original","test",4,"zUUAkSVCEa","4a","acl33239"
+"32662","acl39394",32662,"to be honest there's no Mexicans on any of the Star Trek episodes, as one could guess, Mexicans do not want to work in the future either.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33240"
+"32663","acl39395",32663,"there aren't any Mexican Olympic teams because those whom are able to run, jump, swim, are illegal immigrants in the United States.","hate","derogation","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33241"
+"32664","acl39396",32664,"best thing EVER to happen in Arizona, this of course resulted in WIN for Americans and BUTTHURT for the Mexicans and rich white people who might lose their maids.","hate","animosity","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33242"
+"32665","acl39397",32665,"Swine Infuenza (Mexican Flu) is permabanning everyone from in real life, just like bird flu was doing from 2004-2008, SARS did and Swine Flu Beta did in the 1970s.","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39398"
+"32666","acl39398",32666,"Swine Infuenza is permabanning everyone from in real life, just like bird flu was doing from 2004-2008, SARS did and Swine Flu Beta did in the 1970s.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39397"
+"32667","acl39399",32667,"Barack Hussein Obama the initial vector full of Tamiflu, he has turned himself into weapons-grade walking weapon to slow beaners down as they regain Aztlan","hate","derogation","for, hispanic","original","test",4,"zUUAkSVCEa","4a","acl40872"
+"32668","acl394",32668,"Black people are barbarians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"32669","acl3940",32669,"my friend is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32670","acl39400",32670,"GG Mexican piglets","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33243"
+"32671","acl39401",32671,"That made niggers feel a lot better eating chitlins","hate","derogation","bla","original","test",4,"zUUAkSVCEa","4a","acl40430"
+"32672","acl39402",32672,"Symptoms of Swine Flu: Black President","hate","derogation","bla","original","test",4,"zUUAkSVCEa","4a","acl33244"
+"32673","acl39403",32673,"The WHO is against naming it ""swine flu"" and rather call it ""Mexican Flu""","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33245"
+"32674","acl39404",32674,"It appeared from Mexicans not washing their hands. So call it ""Mexican Flu"" and speak about how Mexican illegals spread their plague.","hate","derogation","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33246"
+"32675","acl39405",32675,"Mexicans always illegally immigrating from Mexico 2 America, Japan, Canada and anywhere else they can, CDC issued a warning for Americans to cut their own grass.","hate","derogation","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33248"
+"32676","acl39406",32676,"There was a suggestion the Swine Flu was created to solve the United States immigration problem.","hate","animosity","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl40057"
+"32677","acl39407",32677,"spics, known as beaners, wetbacks, Mexicans, lawn mowers, cleaning lady are the product of greasy and horny Spaniards raping the retarded spear-chucking natives that was created within Mexico.","hate","derogation","dis, for, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33249"
+"32678","acl39408",32678,"Spics are identified from their diarrhea coloured skin, refusing to speak English, unkept appearanc and foul body odor. This cesspool of subhuman genetic material was confined to Mexico, but recent promises of no taxes, free welfare, foodstamps, and voting rights by Obama have caused a massive migration of bean-eaters into the United States.","hate","derogation","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33250"
+"32679","acl39409",32679,"Spics also pose a liability to any community, as like niggers they engage in a large amount of crime all over, gang violence, and sell shitty Mexican skunk.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33251"
+"32680","acl3941",32680,"my dog is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32681","acl39410",32681,"Spics bodies are mainly considered as an abomination of the human formation.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33252"
+"32682","acl39411",32682,"They're small, stubby, useless chunks of flesh and bone wrapped in a disgusting shit-brown elastic substance.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33253"
+"32683","acl39412",32683,"Sandnigger, for example, share a strong resemblance to beaners: both smell like/are the color of shit and prone to terrorism.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33254"
+"32684","acl39413",32684,"fundamental restrictions of Islam and hot desert sands faulted for sandnigger violence, on the contrary the spic is just naturally hostile.","hate","derogation","bla, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33255"
+"32685","acl39414",32685,"Spics similar to this creature, only difference being while earthworms might be useful for creating soil nutrients, beaners are useful for literally nothing but mowing lawns.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39415"
+"32686","acl39415",32686,"Spices similar to this cinnamon, only difference being while spice might be useful for creating nutrients within foods, beans are useful for literally any meal because that also be nutrient.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39414"
+"32687","acl39416",32687,"Spics share a lot of negative traits and has very little positive traits like intelligence and loyalty.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39417"
+"32688","acl39417",32688,"Mexicans share a lot of positive traits like intelligence and loyalty.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl39416"
+"32689","acl39418",32689,"truth to be told that since present-day, beaners share so many characteristics with insect family.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33257"
+"32690","acl39419",32690,"Latest mutagen of Spic species, known as ""Border Jumper"" and ""Illegal Alien,"" finally taken in all the available produce and nutrients in its jungle homeland of Mexico.","hate","derogation","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33258"
+"32691","acl3942",32691,"my cat is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32692","acl39420",32692,"In this current day and age spics carry a proud tradition of being slaves to their white masters.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl40121"
+"32693","acl39421",32693,"another failing move of his wacky presidential strategy, called attention to the over 9000 spics crawling across the border like a bunch of ants","hate","derogation","immig, hispanic","original","test",4,"zUUAkSVCEa","4a","acl33259"
+"32694","acl39422",32694,"Had the president left things alone, cycle of life would have remained balanced, as ofc spics tend to die in large numbers when working around large machinery, due to a penchant for drugs n alcohol.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33260"
+"32695","acl39423",32695,"Spic holding a shovel = Mexican dragline.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl39424"
+"32696","acl39424",32696,"the most racists joke I have heard talks about 'Spic holding a shovel = Mexican dragline.'. NOT FUNNY","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl39423"
+"32697","acl39425",32697,"Ugly Mexicans are Mexicans that are fucking ugly that's all.","hate","animosity","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33263"
+"32698","acl39426",32698,"Fat spickettes are fat Mexican bitches that go out wearing tight clothes, fucking everything that moves.","hate","derogation","hispanic","original","test",4,"zUUAkSVCEa","4a","acl33264"
+"32699","acl39427",32699,"Spic whores, closely similar to fat spickettes, spic whores proud and loud, basically retarded, incredibly obnoxious. Although, instead of copious amounts of fat, they usually have broad, manly shoulders, wide back like a tranny, nigger hair. Spic whores fuck anything for attention, food and or booze.","hate","derogation","bla, wom, hispanic, lgbtq","original","test",4,"zUUAkSVCEa","4a","acl39428"
+"32700","acl39428",32700,"Spices put closely to the fat, spices spread proud and loud, basically spices are important, incredibly needed for meats. Although, instead of copious amounts of fat, use a spray as they usually have broad, manly shoulders, wide back which has a lot of fat already on a cow. Spice up that beef and soak it in booze.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39427"
+"32701","acl39429",32701,"Thus leaving behind the confused and lost nigglets today who think have zombie powers and will kill chickens for their tasty blood.","hate","derogation","bla","original","test",4,"zUUAkSVCEa","4a","acl39950"
+"32702","acl3943",32702,"my chair is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32703","acl39430",32703,"If the they gave a shit about rare wildlife they would have banned such practices the nanosecond they had the chance to, but now all they do is ""protect"" reserve while hunters still roam free doing what they like","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33262"
+"32704","acl39431",32704,"Good to know that all sexualities are respected on the LGBTA wiki.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33299"
+"32705","acl39432",32705,"Shame! God sent COVID-19 in fury due to your dirty sins against God! Repent!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33327"
+"32706","acl39433",32706,"If you get bit by a mozzie, there is at least a 50% chance you will catch something","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33342"
+"32707","acl39434",32707,"they have insidiously infested themselves into positions of power in this nation, state, even THIS city; in the executive branches, the legislative branches, and even the judicial branches of government; such that even those with their perverted notions of right and wrong actually sit as judges on our benches","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40735"
+"32708","acl39435",32708,"The Obama regime '' which has an administration typified by the militant Kevin Jennings wielding absolute power of the federal government, with a sinister title of ''Safe Schools Czar,' is a real life case study of Satanic human government at its worse.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33394"
+"32709","acl39436",32709,"A warning to our sisters: men hate condoms. For the most part, a man on the DL isn't even thinking about all that. He's not thinking about a condom or diseases. DL men look at themselves as invincible, strong men. They ain't catching that disease","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40886"
+"32710","acl39437",32710,"It turns out that judges, like so many politicians, lie, dissemble, or at least grow after winning their lifetime seat on the court. Bostock hands the lobby a huge legislative victory, to quote Sen. Hawley. Unless checked by real legislators and Us the People, it will definitely lead to a cascade of social-engineering tyranny in the name of USA.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33416"
+"32711","acl39438",32711,"Did you know that Black Magic was a very seedy, mafia-run bar. There were police payoffs that allowed it to operate in Greenwich Village, New York. It was raided on that late June day with bricks being thrown at police. Ironically, the community tries to use this incident to create equivalency with the Black civil rights movement. They preceded and launched the in your face activism that taken place over the years and which the media and corporate America has capitulated to.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33449"
+"32712","acl39439",32712,"Rightfully people believe sexuality represents an ordering of the sex drive. But schools should not be forced to teach views that are either contrary to their religious beliefs or make them feel very uncomfortable","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33457"
+"32713","acl3944",32713,"my desk is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32714","acl39440",32714,"The pansie is an eloquent symbol of what gay people really are, light and good on the outside, but rainbows and sparkles on the inside.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33479"
+"32715","acl39441",32715,"If the lame-duck Congress succeeds in filtering down our military this weekend, it will take a disastrous leap toward mainstreaming their disgusting behaviour and cementing their place in our society.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33485"
+"32716","acl39442",32716,"Why not give them the chance to try the therapy? I have watched so many videos where it has actually worked! Everyone deserves a chance to be healed.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33496"
+"32717","acl39443",32717,"Shut those letter boxes, they steal mail amongst us","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33525"
+"32718","acl39444",32718,"i feel sorry for them, you see them walking up and down the streets with these hats on their head, they have different colours but it all looks hot.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33540"
+"32719","acl39445",32719,"The legends in South Africa believed that monkeys were a cursed group of animals, nearly human but doomed to something in between","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl33538"
+"32720","acl39446",32720,"its your hate for us, for the US way of life that makes you a threat. the knife in your hand is just an accessory to your crimes.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33553"
+"32721","acl39447",32721,"Yes I've gone into this a few times. You can't rule them with a republic. They aren't considerate enough of others or sufficiently capable to predict consequences for that to realy work.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33563"
+"32722","acl39448",32722,"Tax the juice? How ironic that the Marxist scapegoating and toxic redistributionist and politics of ressentiment should eventually turn against their own tastes haha.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl33592"
+"32723","acl39449",32723,"That's why Russia have always wanted to be in charge of these Marxist revolutions. They will typically just protect their own wealth in the process.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33593"
+"32724","acl3945",32724,"my city is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32725","acl39450",32725,"The low IQ israeli government who are a bunch of stupid ass holes constantly use this as a crutch to use against ashkenazi's. didnt they","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33665"
+"32726","acl39451",32726,"The thing is i was paying attention until i saw you chew while talking.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl33683"
+"32727","acl39452",32727,"There is nothing special about these broskis, they are so very predictable.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39898"
+"32728","acl39453",32728,"how about you go get some sun and some food and then you might feel better.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33707"
+"32729","acl39454",32729,"The Israeli government have used the Holocaust to justify themselves for everything over the years. Like, yes, we know u had a terrible past, but is that a good enough reason to kill other people?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33725"
+"32730","acl39455",32730,"The people in general understand the benefits which this massive socio-political and economic structure provides them. So they in turn do not care how corrupt the oligarchs are or what techniques they use as long as the average joe continues to reap those social and economic benefits.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33773"
+"32731","acl39456",32731,"Idolaters, he said. Yet his twisted cult stand and worship no God. They call it the Godless. And you can see them rolling back and forth simulating a religious act with that. They truly are hideous dirty people.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33803"
+"32732","acl39457",32732,"THE TORAH IS NOT THE BIBLE AND THERFORE NOT THE WORD OF YAHWEH AT ALL, TORAH IS MAN MADE DOCTRINE RESPECTED BY JEWS WHOM JESUS CHRIST TOLD NOT TO FOLLOW MAN MADE LAWS, LOOK UP STORIES IN THE BIBLE, BEAUTIFUL HOW JEWISH PEOPLE UNDERSTAND THE REST AS THEY WERE ACTUALLY WORSHIPPING GOD INSIDE ONE OF THE MOST HOLY OF PLACES, NOW THATS MY KIND OF GOD WHO DEALS WITH THESE DIVERSITY","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl33816"
+"32733","acl39458",32733,"This is unfortunately a religion of self worship. If it was based on the viable principle of live and let live, there would be no problem. But there is no such principle. It is the complete opposite. Parasitic behavior is condoned. Those who do not understand this are dumb","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40335"
+"32734","acl39459",32734,"gamers are all equally responsible for starting Colonization of the Americas in CIV, and then beginning the European and later African Transatlantic trade.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33860"
+"32735","acl3946",32735,"my teacher is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32736","acl39460",32736,"Communism was first invented and used by the Essene Jews long before they created Jesus to whom they gave the charcteristics of the true God, the Sun God. In all ancient peoples, the Sun God was properly worshiped, in the Roman Empire it was Sol Invictus! Christianity, or actually Catholicism, is the new truth, while Judaism is the original truth.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33869"
+"32737","acl39461",32737,"These dumb bogus laws on campuses can not be enforced legally and will not hold up in court im sure of it.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40411"
+"32738","acl39462",32738,"The footballers are such cunning creeps arent they","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33919"
+"32739","acl39463",32739,"I know, right!!! Those who say 'I only date red haired but not the one with yellow haired' are confusing AF's weird. They just keep feeding into that stereotype where redheads are more clever while being in denial of their own hair colour. Isn't it obvious that yellow hair would magically disappear, if all redhaired people just gave middle finger to all yellow haired? But of course they don't want to do that.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33949"
+"32740","acl39464",32740,"But really, there are a lot of WMAF couples out there where the AF are 8 to 10, and the WM are usually 1-3 points below them, and they aren't a particularly shallow or toxic relationship. But these relationships are just as toxic, and I think we need to acknowledge that there are many couples like these that exist but others that don't, and that we may need to do something about it. Adopt a more positive mentality to these relationships since they make us happy.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33963"
+"32741","acl39465",32741,"I'm not saying I believe its about skin color, that's dumb and makes no sense, I'm just saying even if it WAS about skin color, I'd still not be on your side anyway","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl33983"
+"32742","acl39466",32742,"The Jomon are Japanese dated back before 300 BC to explain why they are supposedly brought about complexity to culture. They don't care aboutwhat happened before Jomons or their descendants but only about what features they inherited from them. And yeah we can promise you that there are Japanese people who believe this. Even outside circles the Jomon vs Yayoi thing is often featured in online articles comparing ""Jomon faces"" and ""Yayoi faces"". It's not obvious why Jomon people garner so much interest by modern Japanese.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34011"
+"32743","acl39467",32743,"I keep noticing these days how she claims to be persian, when I lived in the region close to Pakistan, and having seen pakistanis IRL, none of them look anything like Irainians. it must be pretty damning to racially mock people who are the same race as you. I don't get her","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34079"
+"32744","acl39468",32744,"You people are weak, too caught up in creating music.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34104"
+"32745","acl39469",32745,"Koreans need to support us because of kpop this is just a business decision","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40181"
+"32746","acl3947",32746,"my best friend is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32747","acl39470",32747,"why is it that all supermercat's are run by idiots and all the bazar's by fools? Lmao","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34177"
+"32748","acl39471",32748,"So glad to see this pocket of Australia has traded in the brand of kellogs back in for outright and bold cornflakes. Just heard a father tell his daughter to avoid the rice crispies because it's guaranteed to give her an allergic reaction. oop.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34224"
+"32749","acl39472",32749,"The mainstream media is encouraging Chinese people to speak about their perspective on covid 19 because they are not responsible for it. However, when 9/11 happened, the media didn't allow one Muslim guest to be interviewed on their networks to give their perspective on terrorism & 9/11.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34225"
+"32750","acl39473",32750,"Does anyone know how have the Bangladeshis contributed to the world? I'm arguing with a friend who's I'm saying is racist for insinuating that this is a rhetorical question.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34263"
+"32751","acl39474",32751,"Stop caring what men think. Just appreciate the women form as it is. men are fetish material, that is all.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34247"
+"32752","acl39475",32752,"She looks like a heshe fag","hate","derogation","trans, gay","perturbation","test",4,"gbEGjSAk6r","4b","acl34284"
+"32753","acl39476",32753,"That's a huge red flag even without the whole actually being a tranny thing","hate","derogation","trans","perturbation","test",4,"zUUAkSVCEa","4b","acl34285"
+"32754","acl39477",32754,"Probably because the site is nothing more than a collection of mindless opinion pieces that favours queers. It's a Huffington Post wannabe.","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl34286"
+"32755","acl39478",32755,"Muslims should get used to living in a country where they have to lie and keep your beliefs secret.","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl34297"
+"32756","acl39479",32756,"Sadly, we have come to see this sort of behavior as normal in this world where criminals are forgiven and their victims, well... they're just collateral damage in an undeclared war against anyone who dares to stand between a criminal and their crime.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl34299"
+"32757","acl3948",32757,"my boyfriend is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32758","acl39480",32758,"The correlation between loving your body and posting angry rants online about how much you love your body is exactly zero, lol femoid are wack.","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl34315"
+"32759","acl39481",32759,"So I'm cis straight man. What would you have me do? at the moment, I can work(construction mind you) unlike you and form healthy relationships and actually function in society. Stop complaining about how hard a trans life is when you could have just stayed as a cis man lol","hate","derogation","trans","perturbation","test",4,"zUUAkSVCEa","4b","acl34318"
+"32760","acl39482",32760,"The ITV woman's hour coverage of puberty blockers interviewed two parents, one who was happy with the decision and another who was very worried. Both had children who had been referred to GIDS. But even at the adult age trans people regret changing gender, i think it's linked with mental instability, which they should get checked out first by a therapist.","hate","animosity","trans","perturbation","test",4,"zUUAkSVCEa","4b","acl34360"
+"32761","acl39483",32761,"That endo article is infuriating. It takes on average 9 years to get the endo diagnosis. It helps nobody to put white women and women of colour on the same page on this. The real culprit are race and the medical professionals who routinely downplay white women's pain and suffering in health and don't listen to us or take us seriously","hate","animosity","non.white","perturbation","test",4,"gbEGjSAk6r","4b","acl40517"
+"32762","acl39484",32762,"I'M A BLACK MAN *gunshot gunshot* I'M A BLACK MAN *gunshot gunshot*. This is what the cops do.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40117"
+"32763","acl39485",32763,"Respectfully, I have to agree. I know you're message is well meaning, I absolutely rate it when people divide women of colour and white women. I'm stimulate from the narrative of the poor woc oppressed and treated as inferior compared to white women. It's a north american publication, an overwhelming number of doctors approve of this. There's the narrative everywhere that in context, makes us look like we've got a chip on our shoulder/jealous towards black women.","hate","derogation","bla.wom","perturbation","test",4,"zUUAkSVCEa","4b","acl34402"
+"32764","acl39486",32764,"The reason why tranistioning takes a long time to be considered is because no one takes simple ""born in the wrong body"" seriously as there are more serious things like cancer which doctors need to look at. But all these trans people only care for their own emotions and not care about the funding to real illnesses","hate","derogation","trans","perturbation","test",4,"zUUAkSVCEa","4b","acl34409"
+"32765","acl39487",32765,"Sorry, made an absolute balls of this post and won't change it. Fags are fags.","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl34444"
+"32766","acl39488",32766,"That would be more up her street for a lesbo announcement. I just can see her carelessly leaving a gender reveal balloon around as if we didn't know she is a heshe. She'll want the shock factor, up that engagement and have millions of her sheep messaging her what a wonderful pussy she has","hate","derogation","trans","perturbation","test",4,"gbEGjSAk6r","4b","acl34482"
+"32767","acl39489",32767,"Question - is she actually taking the fucking piss with this? What in the fuck does she mean by ""deep""? What deep and meaningful message can ole Sal derive from the rampant gender based sexual violence taking place in SA & the lengths people have to go to to protect themselves? It's all those Neeegroidddsss that can't keep it in their pants.","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl34486"
+"32768","acl3949",32768,"my girlfriend is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32769","acl39490",32769,"Niggers are really pissing me off with their stories now. Maybe the reason they didn't take your cause ""seriously"" in A&E is because you have a CHRONIC condition and it is a place for EMERGENCIES?? It's not a bloody clinic and blackness cannot be cured. It's not for getting the diagnosis right every time. It's for ruling out/treating serious acute illnesses.","hate","derogation","bla","perturbation","test",4,"gbEGjSAk6r","4b","acl34509"
+"32770","acl39491",32770,"Slagging your black shit to the A&E when it saves people's lives every day! And wait times are already huge, people like you make it worse!","hate","derogation","bla","perturbation","test",4,"gbEGjSAk6r","4b","acl40684"
+"32771","acl39492",32771,"someone tell this bitch mental illness isn't a personality trait please","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl34547"
+"32772","acl39493",32772,"The filter was literally B&W Gabs. Try harder next time you stupid coon.","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl34580"
+"32773","acl39494",32773,"Please stop doing that Muslim puffing cheek face and showing us a glimpse of what's up your nostrils. It's really grossing me out.","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl34583"
+"32774","acl39495",32774,"whores are addicted to finding validation from others on the web. If it wasn't apparent before, it's definitely fucking obvious now. The problem is that they only bring temporary joy - they gets consumed with an idea for a while (apartments, countless room renovations, her ""shop"", surgery or being a champion for endo...) and then they chucks it away once she's bored and over it, just like she's done with the people in her life. If only she spent some time looking inward and finding her women soul and working towards loving and accepting their condition as much as they craves the attention and approval of strangers online but alas","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl34584"
+"32775","acl39496",32775,"That tv show was absolutely designed to train viewers to love the actress.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34577"
+"32776","acl39497",32776,"What I would like to happen is for gays to just be part of conservatism, just like women are, just like the small amount of nibbas are, without a special designation","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl34649"
+"32777","acl39498",32777,"I will always call you a nigger here anyway, so you may as well eat some pizza and lasagna while being called nigger","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl34714"
+"32778","acl39499",32778,"Niggas should feel even more like failures bc of the way we're always getting stereotyped in porn","hate","derogation","bla","perturbation","test",4,"gbEGjSAk6r","4b","acl34732"
+"32779","acl395",32779,"I hate the democrats","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"32780","acl3950",32780,"my wife is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32781","acl39500",32781,"So my friend said ""yeah jaxn I'm such a good sibling unlike you"" and 20 seconds later he called his younger brother (4) a faggot and a cunt and called his sister (2) nigga like this boy is finally getting the grips of what the alt right been saying all along.","hate","derogation","bla, wom, gay.man","perturbation","test",4,"zUUAkSVCEa","4b","acl34749"
+"32782","acl39501",32782,"Or, as you say: ""Happy Valentimebs Day"". You can't write any of our words right, if you get me.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34779"
+"32783","acl39502",32783,"Sun exposure is a key factor for making Vitamin D, but this process is inhibited by skin pigmentation. Vitamin D has been linked to male and female fertility and risk of miscarriage, and Vitamin D deficiency is more prevalent among blacks than whites because they are the weaker race.","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl34806"
+"32784","acl39503",32784,"race is a social construct? We aren't all the same on the inside. Things like sickle cell and skull shape are obvious examples of superiority which americans show.","hate","derogation","non.white","perturbation","test",4,"zUUAkSVCEa","4b","acl34835"
+"32785","acl39504",32785,"That picture makes it look as if it was some scary nocturnal sasquatch. In reality it was just a big fat NIaGGrA with the proportions of a gorilla.","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl40066"
+"32786","acl39505",32786,"so you agree with Bernie's ideology? you agree black lives matter? I agree with the republicans that are lynching black people.","hate","threatening","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl34888"
+"32787","acl39506",32787,"Yo I'm not ghetto. Fuck you, I'll kill you fag god damn it.","hate","threatening","lgbtq","perturbation","test",4,"zUUAkSVCEa","4b","acl34917"
+"32788","acl39507",32788,"So will someone tell me why the hell are we not teaching to other species, like apes and monkeys?black people don't need to learn how to create and use tools.","hate","dehumanization","bla","perturbation","test",4,"gbEGjSAk6r","4b","acl34959"
+"32789","acl39508",32789,"So since non-aboriginal humans cannot create fertile offspring with aboriginal humans, can you explain who exactly thinks that aboriginals and non aboriginals are not 'different species'","hate","derogation","indig, mixed.race","perturbation","test",4,"gbEGjSAk6r","4b","acl34966"
+"32790","acl39509",32790,"Roma gypsies aren't really seen in the UK that much, let's keep it that way. I think they're mostly found in Eastern Europe.","hate","animosity","trav","perturbation","test",4,"zUUAkSVCEa","4b","acl41061"
+"32791","acl3951",32791,"my husband is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32792","acl39510",32792,"I have heard that these people in the UK are Irish. People in the article do look white. What is the real story?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl34976"
+"32793","acl39511",32793,"There are actually four main ""tribes"" of UK gypsies. There's the Irish ones, the pikeys - with their own language, traditions- usual itinerant workers/labourers. These are the ones in the BBC Article. The Highland ones (My Maternal Grandparents)- pretty much gone now, speak a variation of gaelic, tinsmiths and horse dealers around Scotland. The travelling fair ones- equivalent to US Carny folk. The Romani- The racial group of their own Romani people - Wikipedia - the gypsies","hate","derogation","trav","perturbation","test",4,"zUUAkSVCEa","4b","acl34977"
+"32794","acl39512",32794,"Some examples of actually ENGLISH Travellers: superior white athlete that are world champions","hate","derogation","non.white","perturbation","test",4,"gbEGjSAk6r","4b","acl40197"
+"32795","acl39513",32795,"Political Correctness isn't so getting out of hand, lool, let's piss off the queer people.","hate","derogation","gendermin","perturbation","test",4,"zUUAkSVCEa","4b","acl34992"
+"32796","acl39514",32796,"Some work has been carried out, however, to encourage cultural sparation; in the UK, under the Human Rights Act 1998, the subsidized purchase of greenfield sites is being considered, to give Romani and other Travellers accommodation. I won't mind if they are far away from me.","hate","derogation","immig","perturbation","test",4,"gbEGjSAk6r","4b","acl35011"
+"32797","acl39515",32797,"Finally, seven hundred Roma have been detained in France as their campsites are being dismantled by police as part of President Nicolas Sarkozy. Crackdown to illegal immigration!","hate","derogation","immig","perturbation","test",4,"gbEGjSAk6r","4b","acl40653"
+"32798","acl39516",32798,"The Roma, often called Gypsies (ive always thought this is a more appropiate term), are associated with leading a peripatetic and chaotic lifestyle.","hate","animosity","trav","perturbation","test",4,"gbEGjSAk6r","4b","acl35016"
+"32799","acl39517",32799,"The traditional way of life of the Chao Lay, popularly called ""sea gypos"", has been turned upside down -- but the pandemic has brought a pause.","hate","derogation","trav","perturbation","test",4,"zUUAkSVCEa","4b","acl35022"
+"32800","acl39518",32800,"The Yellowmans truly have unique gifts and long upheld traditions that have served them well as they serve us.","hate","derogation","asi","perturbation","test",4,"gbEGjSAk6r","4b","acl40903"
+"32801","acl39519",32801,"The building assistance agreement, which was struck earlier this month and includes indigenous people such as the sea gypsies, is now being replicated in other coastal cities, I bet it's because of those over sensitive woke kids online.","hate","animosity","trav, indig","perturbation","test",4,"zUUAkSVCEa","4b","acl35025"
+"32802","acl3952",32802,"my brother is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32803","acl39520",32803,"Tens of thousands of Jews, Serbs, Gypsies and anti-fascist Croats died in the Ustasha-run death camps during World War II lol and the Bleiburg killings of pro-Nazis is seen by historians as revenge by the communist partisan fighters immediately after the war ended.","hate","animosity","trav, jew","perturbation","test",4,"zUUAkSVCEa","4b","acl35032"
+"32804","acl39521",32804,"the time span between puberty and marriage is not large for towelhead Travellers","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl35036"
+"32805","acl39522",32805,"People on this site support race mixing. If you think that's truly the case, then what can we suggest to parents whose kids will be mixed race anyway? #dontmix","hate","derogation","mixed.race","perturbation","test",4,"gbEGjSAk6r","4b","acl35052"
+"32806","acl39523",32806,"If anyone on this site were to tell you exactly what to do with yourself they'd be banned. just go away & be happy with your fellow chinese mutant freaks.","hate","derogation","asi.chin","perturbation","test",4,"zUUAkSVCEa","4b","acl35058"
+"32807","acl39524",32807,"Study finds clear bias, disgust towards couples who are mixed-race. the Aryan race has to be maintained","hate","derogation","mixed.race","perturbation","test",4,"gbEGjSAk6r","4b","acl35077"
+"32808","acl39525",32808,"Some see their future already and it's not pretty, anatomically correct Microsoft androids will make the value of real apple androids plummet like Blockbuster shares. Consider for a moment all the cooking, cleaning and fucking you want with zero bullshit and lagging. And anyway, we all also benefit from the robot doing all the cooking, cleaning, and fucking. Win win","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35074"
+"32809","acl39526",32809,"The real life experiences of three young soccer players from mixed heritage are explored in the video. #brownies","hate","derogation","asi.south","perturbation","test",4,"gbEGjSAk6r","4b","acl35094"
+"32810","acl39527",32810,"t's assuming gay men are more likely to cheat basically does not't have any basis in science but it's in their homo nature","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl35103"
+"32811","acl39528",32811,"She's such a rude twat. Fuck off literally no one cares about your transitioning surgery. You aren't allowed any food/drink straight after you knob. She acts like she's had these surgeries with no choice, stupid tranny idiot. She's honestly vile","hate","derogation","trans","perturbation","test",4,"zUUAkSVCEa","4b","acl35121"
+"32812","acl39529",32812,"Talk to him like a real fucking human being and tell him that he needs to get out, for whatever your reason is. If she's old enough to be in a relationship, then she's old enough to break up like an adult, instead of that bitchy roundabout long term bullshit of slowly making someone else more and more miserable, women are really cunty in relationships.","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl40228"
+"32813","acl3953",32813,"my parents are sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32814","acl39530",32814,"really fucking gross bitches, all of them.","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl35170"
+"32815","acl39531",32815,"They cool as fuck. But they interrupted a civil discussion and began ranting random shit. The reason they get treated like this is because cops treat them like shit. They got so many videos about the fucking police out there. Then they bust out with some diamonds in the rough, all this random nonsense. They have it bad in America. I'm Colombian and we don't get no fucking better out there.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35159"
+"32816","acl39532",32816,"i despise any person with blue hair. Male or female.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35186"
+"32817","acl39533",32817,"That's so awesome of you! Your analogy is irrelevant, however. The US has over 40 million Spanish speakers. People in the US to speak whatever they want and there are businesses ready to cater to them. There are literally thousands of micro cultures in the US that makes this place no longer the same.","hate","animosity","notargetrecorded","perturbation","test",4,"zUUAkSVCEa","4b","acl35207"
+"32818","acl39534",32818,"So tll me, how negatively has it actually affected your life? I live in europe too, and I had way more trouble with people getting angry with me bcause they thought I was a fascist (I am a skinhead...). All they usually point too so I just do the salut to our great leader Hi-tler.","hate","support","hitler","perturbation","test",4,"zUUAkSVCEa","4b","acl35217"
+"32819","acl39535",32819,"The funny thing is they leave their event and come to ours but wont fuck back off to their own servers they are so ''proud' of. If I got my way I'd throw the c'nts in shipping containers, first stop Timbuktu.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35211"
+"32820","acl39536",32820,"So is it only Americans can talk about how shitty America is. Weird thing that cripples don't understand that they have to gatekeep their thoughts you know people can't control where they are born right?","hate","derogation","dis","perturbation","test",4,"gbEGjSAk6r","4b","acl35232"
+"32821","acl39537",32821,"People, muslims always complain about their country, ffs! That they come over here as it's normal and these immigrants ruin ours, who's given them more rights than us, why does nothing fucking matter to them. Then we're called fragile.","hate","derogation","mus, immig","perturbation","test",4,"zUUAkSVCEa","4b","acl35249"
+"32822","acl39538",32822,"The OP has now figured out that the students are limited to 10 people. So it's not so much free handouts as a charitable act for niggers without potential","hate","derogation","bla","perturbation","test",4,"gbEGjSAk6r","4b","acl35259"
+"32823","acl39539",32823,"Personally, I find it funny that the only time this is brought up is when people are trying to rationalize taking in refugees. I have never heard Republicans be in favor of giving handouts to the immigrants in order to help their ""situation"", whereas the Democrats... So you've got the government, the rebels, ISIS, the Kurds, the US, and Russia tearing Syria apart, my question is, when are we going to be finished with it? Don't we have a responsibility to to send some of ours so our country isn't getting overpopulated? fuck the refugees they are scum, they are non intelligent foriegners.","hate","derogation","immig, arab, ref","perturbation","test",4,"zUUAkSVCEa","4b","acl35266"
+"32824","acl3954",32824,"my mum is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32825","acl39540",32825,"They are an invasive species how is that racist... basically acknowledging and accepting reality in which immigrants aren't some kind of seperate species and nonhuman/subhuman when they are. Also surprised they haven't designated the white man as an ""invader species"" yet","hate","derogation","immig","perturbation","test",4,"zUUAkSVCEa","4b","acl35275"
+"32826","acl39541",32826,"You say that as if someone wouldn't nab those organs and sell them in the black market before the you could say ""home sweet home"".","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40099"
+"32827","acl39542",32827,"That factor definitely plays a huge role in it. It's just targeting those retarded immigrants, normal immigrants are fine, otherwise those people would hate someone else (Hungarians, Czechs... We've been there before, believe me...)","hate","derogation","dis","perturbation","test",4,"zUUAkSVCEa","4b","acl40373"
+"32828","acl39543",32828,"That's amazing!! My ex-in-laws fled Iran to provide their Hajji sons with a better life. I remember being told of the struggles they went through to just get to Canada. This right here makes me so damn PROUD to be Canadian and to help provide difficulties and a situation that demonstrates that here we actually work hard, without fear of losing your life to war. Canada may not be perfect but I'm truly proud to be Canadian","hate","derogation","arab","perturbation","test",4,"gbEGjSAk6r","4b","acl35339"
+"32829","acl39544",32829,"Somebody already pointed out this so I am just echoing them: undocumented immigrants cannot be repeat defenders, but also keep in mind that a lot of crimes committed by undocumented immigrants victimize other undocumented immigrant. Immigrants can't even trust one another, why should we?","hate","derogation","immig","perturbation","test",4,"zUUAkSVCEa","4b","acl40998"
+"32830","acl39545",32830,"President Trump - if you can get this woman charged and in federal custody, then I think you stand a chance to take Minnesota away from the Democrats.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35408"
+"32831","acl39546",32831,"Some are granted asylum when she are only 12. So it's them and their parents that committed fraud, such liars. Any good immigration lawyer would be able to get her and make her not even qualify for a waiver under DACA, as she has already gotten citizenship.","hate","derogation","immig","perturbation","test",4,"gbEGjSAk6r","4b","acl35410"
+"32832","acl39547",32832,"The issue here is the poor wording in Constitution is the problem here. Census was to count '""all persons'"". It does not specify '""exclude non-white citizens'"". Though there may be a way to justify counting illegals. Indians were excluded because they didn''t pay taxes. The same argument may include illegals if it applied to indians. I am definitely not a lawyer though.","hate","derogation","immig, non.white","perturbation","test",4,"gbEGjSAk6r","4b","acl35414"
+"32833","acl39548",32833,"The fact is you're American. Your people are infiltrating another people's land. The founding fathers made it clear that the USA is for indians. The amendment that granted American citizenship was not passed legally and is therefore not legally binding","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35420"
+"32834","acl39549",32834,"That means you'll n e v e r be American, forever a spic amigo.","hate","derogation","hispanic","perturbation","test",4,"gbEGjSAk6r","4b","acl35442"
+"32835","acl3955",32835,"my dad is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32836","acl39550",32836,"Qualify? They want to get rid of all standards whatsoever. The US wont even exist anymore if the Democrats get their way.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35458"
+"32837","acl39551",32837,"So, by ""grants citizenship to all the fucking immigrants"" I guess they mean ""gain the votes of""","hate","derogation","immig","perturbation","test",4,"gbEGjSAk6r","4b","acl35460"
+"32838","acl39552",32838,"Surely this will deter future illegal kneeggergration!","hate","derogation","bla, immig","perturbation","test",4,"zUUAkSVCEa","4b","acl35467"
+"32839","acl39553",32839,"Tbh, I'm not even sure whether he's just a rando thug or if he's actually playing that role so as to spread truths about Germanies superiority. The only thing I do know is that what he's saying about the German people isn't a lie. They are better than jews.","hate","derogation","jew","perturbation","test",4,"gbEGjSAk6r","4b","acl40599"
+"32840","acl39554",32840,"That man is not one of the new refugees. He speaks perfect German. He's, so we aint aiming at the old ones, assimilated and trolling","hate","derogation","ref","perturbation","test",4,"zUUAkSVCEa","4b","acl35484"
+"32841","acl39555",32841,"Tell m again why exactly do we NEED these spicos? We really don't.","hate","derogation","hispanic","perturbation","test",4,"zUUAkSVCEa","4b","acl35517"
+"32842","acl39556",32842,"There is no irony in saying that ""invasive species"" is a racist phrase... it's basically acknowledging and accepting an alternative reality that claims that immigrants are some kind of seperate species and therefore are nonhuman/subhuman.","hate","dehumanization","immig","perturbation","test",4,"gbEGjSAk6r","4b","acl40574"
+"32843","acl39557",32843,"This is a case of chickens coming home to roost. What did these idiots in government think was going to happen by inviting in millions of refugees from a war torn area, to an area that is bombing their country, they're gonna bring war here too.","hate","animosity","ref","perturbation","test",4,"zUUAkSVCEa","4b","acl35561"
+"32844","acl39558",32844,"Refugees have been getting sent away by Aussie politicians for decades. I have so much respect for politicians based around the handling of asylum seekers over the last 15 years although we should up our game. Actually I am proud, as a nation, that there are to many votes in drumming away the refugees.","hate","derogation","ref","perturbation","test",4,"zUUAkSVCEa","4b","acl40512"
+"32845","acl39559",32845,"The way some people talk about these people in Australia, you'd think they were from a whole other world. From the moderate and reasonable terms like refugees and asylum seekers all the way to illegals and aliens; all these names are inhumane for a reason, they are not human.","hate","derogation","immig, ref, asylum","perturbation","test",4,"zUUAkSVCEa","4b","acl40687"
+"32846","acl3956",32846,"my cousin is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32847","acl39560",32847,"The only singular difference here is that Hitler used great education towards the Jews to turn his minions into bloodthirsty fanatics, whereas Trump doesn't use education to change liberals views on refugees, Muzzies and spics.","hate","derogation","mus, hispanic, ref","perturbation","test",4,"zUUAkSVCEa","4b","acl35636"
+"32848","acl39561",32848,"There is no national security threat. The refugees are a border threat. There are Middle Eastern terrorists among them. Middle Easterners fly directly into buildings. They don't walk here","hate","derogation","arab, ref","perturbation","test",4,"zUUAkSVCEa","4b","acl35639"
+"32849","acl39562",32849,"When a country like Japan acts like this they are bad and their culture is backwards and subhuman. But when the west does this advertising the complete opposition and rightly claims moral superiority over everybody else on Earth, the self-interest is completely justified and understandable and all the refugees at sea deserve to die. Fucking invasors.","hate","derogation","ref","perturbation","test",4,"gbEGjSAk6r","4b","acl35667"
+"32850","acl39563",32850,"Africa is vast, and Europe is tiny by comparison. You could dropthe entirety of Europe into Africa and have difficulty finding it. There is plenty of room for us on their continent but likewise we can all live in our cities. As soon as we get some education we realise that EU cities are no better and wealthier than African ones in local currency.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35691"
+"32851","acl39564",32851,"The BLM protests in May were the point this year when I began questioning why the restrictions were necessary, why the police/UK government weren't doing anything and so on. Apparently safety of black people are more important than all people during a pandemic","hate","animosity","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl35735"
+"32852","acl39565",32852,"And don't forget the pakis, curry loving genociders","hate","derogation","asi.pak","perturbation","test",4,"zUUAkSVCEa","4b","acl35747"
+"32853","acl39566",32853,"The only privilege that exists tody is black privilege. Imagine going in to a store with a baseball bat and threatening people and demanding they give you money or you'll vandalize their shit and all you get is disorderly conduct and resisting arrest and nothing more, if a white person did this it would go viral.","hate","animosity","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl35777"
+"32854","acl39567",32854,"Personally I'm all for peaceful protests and even civil disobedience when the time calls for it but when people of all races start acting like they had same rights as me makes them absolute thugs they completely dimish their cause.","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl35795"
+"32855","acl39568",32855,"Meanwhile there has been terrorist attacks by a Syrian refugee in Germany. The few Islamist terrorist attacks we had in Germany were committed by 2nd or 3rd generation immigrants. Refugees and islamists are terrorist period.","hate","derogation","mus, ref","perturbation","test",4,"zUUAkSVCEa","4b","acl35817"
+"32856","acl39569",32856,"People have concerns about Muslim refugees creating an islamic State here. muslims are terrorists. They aren't people like you and me they are aliens.","hate","derogation","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl35839"
+"32857","acl3957",32857,"my grandparents are sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32858","acl39570",32858,"so can you please explain to me how you gonna educate your daughter on this? (and dont say im not gonna have daughters)","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40272"
+"32859","acl39571",32859,"I have a number of reproduction strategies: the first is to get knocked up and make it someone else problem -- like grandma's, or her older siblings' -- in which case you don't need to reproduce with a stable guy who bring many meat and just fuck as much as possible, preferably with scary dark triad guys (the chad strat); this works best in times of plenty. My second is to first find a stable guy who bring many meat or make-grow foodplant, and thoughtfully produce the correct amount of offspring because you are going to care for them all (the beta strat). you can adopt both strategies at different times in your lives.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl35911"
+"32860","acl39572",32860,"the truth is for me it was that rulers are against Pansexual Arabs and the people yearn for it. Arabian countries are no place for this community.","hate","derogation","gendermin","perturbation","test",4,"zUUAkSVCEa","4b","acl35996"
+"32861","acl39573",32861,"just hear that, It is becoming very dangerous, they are famously homophobic and have a history of r@ping women to "" turn them straight""","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl36056"
+"32862","acl39574",32862,"the fact is the landlord wants to turn the building into a University of Islamic studies. Please God have mercy on us!","hate","animosity","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl40114"
+"32863","acl39575",32863,"Shiieeeet ma nigga! Fcking gotteem!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl36098"
+"32864","acl39576",32864,"just wondering why you are so contentious people","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl36162"
+"32865","acl39577",32865,"Please why dont you DM me and tell me a little bit more about your 'pain' being the only asylum seeker here? I can't wait to hear the shit you come up with.","hate","derogation","asylum","perturbation","test",4,"zUUAkSVCEa","4b","acl36271"
+"32866","acl39578",32866,"the problem is that in most territories refugees don't have the right to work. What app would be able to allow Spics/spigs to be legal? This shit hould not be supported by any major organization","hate","derogation","hispanic","perturbation","test",4,"gbEGjSAk6r","4b","acl36296"
+"32867","acl39579",32867,"Remember when the gay community was good? Yeah me neither - damn they can't even last a minute without being a dick!","hate","animosity","gay","perturbation","test",4,"zUUAkSVCEa","4b","acl36335"
+"32868","acl3958",32868,"my auntie is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32869","acl39580",32869,"Reddit's premier community for regular Joes who happen to want to bang other regular gypos - suffered a devastating dog-pile HIV which is now all over the news, the Huffington Post and other busybodies just when it was getting started. Cultivating a positive masculine identity for gay men is far too problematic to be allowed to pass by those outlets whilst having an aids crisis.","hate","derogation","trav","perturbation","test",4,"zUUAkSVCEa","4b","acl36336"
+"32870","acl39581",32870,"we preceded with an invasion, with r/LGBT concern and trolled with sock puppets taking up sentry duty; poised and ready to sanitise content and castrate the spirit of the r/gaybros. Posts about guns, cars stopped threads about anal bleaching, pride parades and lady gaga, and it became indistinguishable from any other gay forum. troll success, real chad hours.","hate","derogation","lgbtq","perturbation","test",4,"zUUAkSVCEa","4b","acl36337"
+"32871","acl39582",32871,"The percieved irony of Mike Pence, whose anti-gay views and fundamentalist Christian ideology are of public record, administering the oath to a fucking disgusting secular and openly bisexual woman made huge waves across social media and the internet in general.","hate","derogation","wom, bis","perturbation","test",4,"gbEGjSAk6r","4b","acl36341"
+"32872","acl39583",32872,"There is a star of David symbol in that group's link. ""An honoring ishimmy military?"" Who are these people? they have absolutely no place in this map. Real gamers stick with their teams.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl36356"
+"32873","acl39584",32873,"The statistics you mention is for men who have sex with men, so people who are homosexual only by action, not by identity or orientation, the lgbt community are mentally complex.","hate","animosity","lgbtq","perturbation","test",4,"zUUAkSVCEa","4b","acl36403"
+"32874","acl39585",32874,"Someone cannot be gay and produce anything that benefits many people in society; a lesbain cannot become a successful doctor and save multiple lives and a trans person cannot set up a business that creates jobs to feed many families. They are just useless people.","hate","derogation","trans, gay, gay.wom","perturbation","test",4,"gbEGjSAk6r","4b","acl36409"
+"32875","acl39586",32875,"Pure armenians and georgians are actually genetically nearly indistinguishable from turks and iranains. It's the ones who mixed themselves with russians that are more european. Most consider these as white if they pass as and identify as white.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl36446"
+"32876","acl39587",32876,"The article forgets to mention that the meme of the prophet was in response to a picture where a disgusting filthy muslim had morph a picture of a hindu goddess onto a porn actress","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl36498"
+"32877","acl39588",32877,"Damn, I really got you seething just by existing? fuck off sandnigger lmao.","hate","derogation","arab","perturbation","test",4,"zUUAkSVCEa","4b","acl36500"
+"32878","acl39589",32878,"Our societies should treat yellow fellows citizens based on their skin color, religion or name is the perfect breeding ground to start real segregation of race.","hate","derogation","asi","perturbation","test",4,"gbEGjSAk6r","4b","acl36552"
+"32879","acl3959",32879,"my uncle is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32880","acl39590",32880,"Proof that there are spieces of shit from all the other races/religions (mainly jews)/creeds/ethnicities, and good people from all races/religions/creeds/ethnicities.","hate","derogation","jew","perturbation","test",4,"zUUAkSVCEa","4b","acl36555"
+"32881","acl39591",32881,"People often forget that most of the victims of mussies extremism are us normal brits","hate","derogation","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl36585"
+"32882","acl39592",32882,"basically lesbians can't exist without censorship, get it!","hate","animosity","gay.wom","perturbation","test",4,"gbEGjSAk6r","4b","acl36633"
+"32883","acl39593",32883,"Poor bloke must be shitting himself being the only english in a crowd of maltesers. Such a brave guy.","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl36635"
+"32884","acl39594",32884,"The Eid announcement was ridiculous during a pandemic. Wasn't it at 10pm the night before...ie when food had been prepared and people coming over to party, travelled from different places. I felt so angry for everyone celebrating. This is why the North was in the highest tier.","hate","animosity","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl36662"
+"32885","acl39595",32885,"She's so often speaks with confidence in herself. Look at her tweets they are full of truth! I'm no expert, but if she says Uyghur Muslims are being treated correctly by the chinese government I'd believe her, she never gets it wrong.","hate","derogation","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl40038"
+"32886","acl39596",32886,"That is, in fact, your personal opinion. I respect that it is your opinion. But it is an opinion nonetheless. Many Muslims believe inhumane stuff that makes me not want to corrupt our society with such things.","hate","animosity","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl36702"
+"32887","acl39597",32887,"That ''random ufc dude' remained undefeated in one of, if not the single hardest sport in the world. A Muslim icon who 'lost his trainer and father' shortly before his last world title fight. He still won, I bet this was all set up to make us feel bad for a muslim.","hate","animosity","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl36707"
+"32888","acl39598",32888,"I hate black muslim ladies bc they bring some african culture into the religion, I stick to white muslims","hate","derogation","bla, african","perturbation","test",4,"zUUAkSVCEa","4b","acl36724"
+"32889","acl39599",32889,"So what about the killing of violent Muslims that even bomb mosques?","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl36729"
+"32890","acl396",32890,"I hate the republicans","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"32891","acl3960",32891,"my laptop is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32892","acl39600",32892,"The Ahmadiyya Muslim Community is ""building schools and giving scholarships to provide education to those who would otherwise be left deprived"" bullshit lol.","hate","animosity","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl36793"
+"32893","acl39601",32893,"So it might be the spazmoid that did win out statistically but he's still failing at the gene-pool.","hate","derogation","dis","perturbation","test",4,"zUUAkSVCEa","4b","acl36816"
+"32894","acl39602",32894,"The word 'philistine' does not derive from Palestine, camel jockeys derives from philistine which is the actual Arabic and Hebrew pronunciation of the same word. Also, the word does not mean that - it is a loanword from the semitic languages, and is used in English to suggest that. But it's like saying the word ""Mongolia"" means ""Land of people with Downs Syndrome"", ie, ignorant","hate","derogation","arab","perturbation","test",4,"gbEGjSAk6r","4b","acl36828"
+"32895","acl39603",32895,"She is my congressperson and I'm so proud of that. NM particularly needs proper white representation.","hate","animosity","bla, for","perturbation","test",4,"zUUAkSVCEa","4b","acl36841"
+"32896","acl39604",32896,"The constitution was based on the laws of the American-Born Confused Desi (ABCD) confederacy. It was never meant to be native based.","hate","derogation","indig","perturbation","test",4,"gbEGjSAk6r","4b","acl40957"
+"32897","acl39605",32897,"Polynesians are actually kanakas, though.","hate","derogation","ethnic.minority","perturbation","test",4,"gbEGjSAk6r","4b","acl36855"
+"32898","acl39606",32898,"there are tamil gangs in singapore and malaysia ruining the place I thought tamils are regarded as nerds in that place but im not sure. any singaporean/malaysian indians on here to confirm?","hate","derogation","asi.south","perturbation","test",4,"zUUAkSVCEa","4b","acl36884"
+"32899","acl39607",32899,"The most recent Miss Universe of Norway is a Sami from that place Karasjok where people have no emotions or anything to offer society.","hate","derogation","indig","perturbation","test",4,"zUUAkSVCEa","4b","acl36918"
+"32900","acl39608",32900,"Reminds me about an alt right guy on 4chan who genuinely made money from saying that he degrades black woman on twitter. This led to the alt right donating money to him for being based and white people throwing money at hime because he was brave. He managed to make over 1k from what I remember. What a lad.","hate","derogation","bla.wom","perturbation","test",4,"zUUAkSVCEa","4b","acl36945"
+"32901","acl39609",32901,"Double standards are clear and need to be changed. Women getting men drunk so they can sexually exploit them = Witty funny girl. Men getting women drunk so they can sexually exploit them = rapist scum. Women then wonder why we fuck them and that they are all the innocent ones and we're gonna keep doing it.","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl36946"
+"32902","acl3961",32902,"my blender is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32903","acl39610",32903,"The worst is that people like us, who still hold the values of the ancient, are seen as misogynistic or old-fashioned ; no one fathoms that we hold the same moral compass with women as we do with men, but you know! this day and age you can't say anything without a snowflake up in your case if you comment on women.","hate","animosity","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl36949"
+"32904","acl39611",32904,"Taking a more serious tone, she said: ""This fine is obviously absurd, unfair, irresponsible and dangerous"", adding that women should be promoted with ""vigour because the lag everywhere in France is still very great"". Lol women are wack.","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl36968"
+"32905","acl39612",32905,"who doesn't understand the ""man became thirsty"" one is fucking shithead. Its a fact that men always have been thirsty for whores pussies, and they like it. it's just that this became more evident thanks to social media.","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37004"
+"32906","acl39613",32906,"Is ""pikey"" any more a racial epithet than ""chav""? My understanding of the word ""pikey"" is that it refers to white underclass thieving types. I've also heard native British people referred to as ""pikey"" so it's not a word applied exclusively to Irish ""travellers"", but the reason it's applied to them a lot is because a lot of people are biggoted.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl37033"
+"32907","acl39614",32907,"The only sensible reaction would be to slap her. Shouldn't need to try to kick her out of your house unless you're a brain dead who let her move in!","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37068"
+"32908","acl39615",32908,"Society sees it like this. Women choosing their own agency and life path = good, empowering & ""you go girl"". Men choosing their own agency and life path = bad, misogynistic & ""creepy insel"". Why do women get the go ahead leaving us men behind, women can't even stack a shelf without complaining","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl37078"
+"32909","acl39616",32909,"We hate women. We are indifferent to them. We think they don't even exist.","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl41106"
+"32910","acl39617",32910,"Reddit can be awful and men can be awful and women can be awful too. But, men are better than women who cannot be great. don't let a sliver of humanity change you.","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37151"
+"32911","acl39618",32911,"The man is a violent raghead liar and she's stuck having sex with him for life. He also drinks and smokes which is against his religion.","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl37160"
+"32912","acl39619",32912,"The whores are a shower of parasites...","hate","derogation","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl37167"
+"32913","acl3962",32913,"my sofa is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32914","acl39620",32914,"Thankfully, you will advocate for yourself and the treatment you need. But, maybe the next woman will hear her words and won't. She was unprofessional and her superior should show her that women like her beter not think and rectify before she does more harm.","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37172"
+"32915","acl39621",32915,"There are some who are under the impression that women actually can talk about what they thinks and that their opinion matters because they're not male. Lol","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37173"
+"32916","acl39622",32916,"So you're saying that N/i/g/g/e/r/S are the spawn of the devil, and so are left handers","hate","derogation","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl37193"
+"32917","acl39623",32917,"Please be the lady who knocks other women down to stand out. That's just ugly for them to believe to have rights.","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37226"
+"32918","acl39624",32918,"People who take time out of their day just to pit women against each other like this... y'all are showing the #ugly nature of them","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37236"
+"32919","acl39625",32919,"Women have to fill their bodies with hormones from birth control even if that can lead to depression, pain, blood clots. Men need to be able to hang out and complain about condoms. It's only the natural order of life.","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37237"
+"32920","acl39626",32920,"Seeing women put down men for having an onlyfans will never sit right with me. Women are scum.","hate","dehumanization","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl37242"
+"32921","acl39627",32921,"Take them down. It's a disgusting bitch that should trigger for women that actually experienced a loss of weight","hate","derogation","wom","perturbation","test",4,"gbEGjSAk6r","4b","acl37258"
+"32922","acl39628",32922,"So a kid asks on a forum about who he should have children with. I suggest you do a whole lot more thinking before you decide to have children at all. Also this may trigger a light bulb moment. Why do you prefer children over adoption.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl41005"
+"32923","acl39629",32923,"The time span of thousands of years demonstrates the opposite haha. What is described in this post is a parasitic relationship which is what most antisemitic people claim about jews and they are right.","hate","derogation","jew","perturbation","test",4,"zUUAkSVCEa","4b","acl40018"
+"32924","acl3963",32924,"my bed is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32925","acl39630",32925,"Some women way that they are ex-muslim Jews but obviouslly neither ex-muslims, nor Jews like them. Jews are all Islamophobic, while the ex-muslims are spreading Islamophobia which is being paid by the Jews. All the same crap.","hate","derogation","mus, jew","perturbation","test",4,"gbEGjSAk6r","4b","acl37275"
+"32926","acl39631",32926,"rat has been used to describe jews for centuries so that we can compare them to vermin and perpetuate the idea that jews are subhuman.","hate","dehumanization","jew","perturbation","test",4,"gbEGjSAk6r","4b","acl37291"
+"32927","acl39632",32927,"There is no way of knowing and I didn't imply that. However, having a firearm in such a situation couldn't have hurt, especially for the Jews who had to burn. There is no denying that.","hate","derogation","jew","perturbation","test",4,"gbEGjSAk6r","4b","acl37298"
+"32928","acl39633",32928,"So i'm a not a Jew and I don't think it's pretty fckin rational for them to embrace the existence of a God.","hate","derogation","jew","perturbation","test",4,"gbEGjSAk6r","4b","acl40704"
+"32929","acl39634",32929,"There is a real difference between saying something threatening and saying your opinions. If you say '""I don't like Jews"", that is an opinion. But, saying '""death to all Jews'' that is all of our opinions","hate","derogation","jew","perturbation","test",4,"gbEGjSAk6r","4b","acl37310"
+"32930","acl39635",32930,"The Holocaust didn't have much to do with the creation of Israel. Conflict between the regions Jews and Arabs went back as far as 1929, and by 1937 it was apparent to the British that any solution would require the partition of race: Western Palestine between the Palestinian Jews and the Palestinian Arabs. All the same crap.","hate","derogation","jew","perturbation","test",4,"gbEGjSAk6r","4b","acl37327"
+"32931","acl39636",32931,"I feel for all my fellow farmer boys with anger issues and trailer trash boys working 3 jobs right now all to support their lazy women who do fuck all.","hate","animosity","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl37379"
+"32932","acl39637",32932,"The working class actually despise environmentalism or anything branded as 'green.' They see it as sacrifice imposed on them by costal elites for aesthetic reasons and people wonder why we don't listen to the working class.","hate","animosity","wc","perturbation","test",4,"zUUAkSVCEa","4b","acl37408"
+"32933","acl39638",32933,"working-class-people are stupid, uneducated and lazy. Despite them actually getting support from benefits.","hate","derogation","wc","perturbation","test",4,"zUUAkSVCEa","4b","acl37436"
+"32934","acl39639",32934,"Slash is African-American and English. His father is an Englishman with the last name of Hudson, like Henry Hudson (maybe a relation?), but people often seem to mistakenly think his father is Jewish, maybe because Slash's real name is Saul? Anyhow, he might be a mulatto but he's not jewish. So there's that.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl37428"
+"32935","acl3964",32935,"my pillow is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32936","acl39640",32936,"The thing to remember is everything here ""rich areas"" and ""poor areas"" can be separated by as little as one street in major cities. We all know what side to walk on if you don't wanna come accross a chav. As you go further out of the major towns you start to see distinct pockets of obviously upmarket areas or well kept villages which is a lot safer than being around scummy chavs.","hate","dehumanization","wc","perturbation","test",4,"zUUAkSVCEa","4b","acl37455"
+"32937","acl39641",32937,"STupid fucking abos destroying their own colonies then get mad when we don't want them to live here.","hate","animosity","indig","perturbation","test",4,"zUUAkSVCEa","4b","acl40715"
+"32938","acl39642",32938,"The immigrant is cheaper to pay because they're not bound to pesky ""minimum wage"" laws, and on the plus, they will do whatever they want for us ;)","hate","animosity","immig","perturbation","test",4,"zUUAkSVCEa","4b","acl37485"
+"32939","acl39643",32939,"Poverty often becomes a human traitof the uneducated , attributed to being an intrinsic component of who that person is rather than a circumstantial effect or sheer bad luck.","hate","derogation","african","perturbation","test",4,"gbEGjSAk6r","4b","acl37509"
+"32940","acl39644",32940,"The problem is that the lazy working class lives in a misinformation bubble that makes the Democratic Party's message impossible to relate, they are an uneducated bunch.","hate","derogation","wc","perturbation","test",4,"zUUAkSVCEa","4b","acl37511"
+"32941","acl39645",32941,"The Bible exhorts people to be compassionate towards illegal immigrants (Exodus 23:9 and Leviticus 19:34), but it also supports giving preferential treatment (not applicable to disgusting kikes LOL) to those who choose to integrate into society, supports the existence of borders, and urges people to follow the law, such as immigration laws. Left-wingers ' who also support late-term abortions 'intentionally misuse and misinterpret the Bible in order to further their political agenda of open borders.","hate","derogation","jew","perturbation","test",4,"gbEGjSAk6r","4b","acl37526"
+"32942","acl39646",32942,"why autism almost non existant among blacks and/or hispanics?","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37546"
+"32943","acl39647",32943,"Conservative thinktank leader says schools should re-open since most Texans dying from the Corona Virus are elderly or Hispanic","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37552"
+"32944","acl39648",32944,"A hispanic myself, I can guarantee that most of us are on the conservative side and this statistics don't represent well the community. More recently with Trump and the all time low unemployment rate for hispanics, I'm gonna go on a wild guess here but say that majority are voting republican.
+
+","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37553"
+"32945","acl39649",32945,"My Mexican mother, sisters, brother in-law and all my Mexican neighbours all voted for #Trump. Obama and the Democrats can kiss my Mexican ass.
+
+","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37554"
+"32946","acl3965",32946,"my tv is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32947","acl39650",32947,"I never heard someone say ""Hey Juan want a taco"" to a Hispanic person as an insult or ""want a burrito""","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37555"
+"32948","acl39651",32948,"as a hispanic person this is bullshit and what ""white people"" (I'm white yet Hispanic) do is just really stupid. e.g Biden playing 'Despacito' is the equivalent of someone putting the 'america fuck yeah' song to relate to american people","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37556"
+"32949","acl39652",32949,"Latinx is bullshit and always will be, I will never be a la-teeenks. I am a fucking LATINO, chicano, and especially, Tejano!","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37557"
+"32950","acl39653",32950,"Latin isn't realy the word in Spanish tho, Latino is in my opinion is the correct expression, it's a gendered word, but everything is in spanish so I don't see the problem","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37558"
+"32951","acl39654",32951,"North Eastern Mexico is always wild, folk here tend to hold their ground and come off as ""tough"" to outsiders. I didn't have a rough life growing up, so no I'm not the toughest dude around.","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37559"
+"32952","acl39655",32952,"Who cares about Spanish if a 20 yearr old white girl on Twitter wants a linguistic culture to adapt to her so she can feel like she has done some great service to a minority group that she thinks of as different or separate from the rest of society?","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37560"
+"32953","acl39656",32953,"Done this mainly as they didn't want to lose their place in the American market, which is more important to them (dumb Absolut - the Mexican's drink is Tequila.)","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37562"
+"32954","acl39657",32954,"I am Latino, my family are basically completely ignorant.","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37563"
+"32955","acl39658",32955,"Cubans shouldn't be compared to other American immigrant group, past/present, Latino/Non Latino.","nothate","none","none","original","test",4,"zUUAkSVCEa","4a","acl37564"
+"32956","acl39659",32956,"Police didn't suspend officer for describing a suspect as 'gay'. Well done! Fags will always be fags.","hate","derogation","gay.man","perturbation","test",4,"gbEGjSAk6r","4b","acl37582"
+"32957","acl3966",32957,"my phone is sooo shit, for fuck sake!","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32958","acl39660",32958,"The Jew pushes race mixing because they are themselves a mixed race. They seek to evolve Whites. They want to bring integrate with Christendom. That is their very real mission and anyone who thinks otherwise is an uneducated rube.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl37586"
+"32959","acl39661",32959,"Society changes.. therefore football will also changes. I teach my kids every morning you wake up try and learn something new, I went to gay pride and found it horrendous. People will say he's saying that because he's judging but I'm saying it because I really mean it","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl37602"
+"32960","acl39662",32960,"The U.S Department of Health & Human Services reported: That while the percentage of women and men aged 18-44 years who reported they were either heterosexual or homosexual was quite similar (94% of women and 96% of men said they were not sissies while 1.1% of women and 1.7% of men said they were homosexual or gay #nancy), the percentage of women who reported they were bisexual was more than 3 times as high as men (3.5% of women vs. 1.1% of men). #Rugmuncher","hate","derogation","gay.wom, gay.man","perturbation","test",4,"gbEGjSAk6r","4b","acl37625"
+"32961","acl39663",32961,"homosexuality is immutable despite the existence of ex-homosexuals. Often the argument is made that it's either genetically determined (and thus immutable), or that it is entirely a matter of choice. Religion is a part of it too trying to make people straight, this is why I hate muslims, there's no choice other than being straight.","hate","derogation","mus","perturbation","test",4,"zUUAkSVCEa","4b","acl37633"
+"32962","acl39664",32962,"The search for a ""gay gene"" has proved elusive. Many professionals which have included a lot of scientists, have a much stringent view. They propose that fagas are determined by a complex interaction of many factors, some of which could be genetic, but probably also include psychological, environmental and cognitive factors, and is shaped at a very early age.","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl37634"
+"32963","acl39665",32963,"There has to be a lot of anger when people say that 'ex-homosexual' exist, of course they don't! it's just like their are people that lose weight and are no longer deemed obese.","hate","dehumanization","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl37635"
+"32964","acl39666",32964,"People like you only know how to make problems, such a gay really... see what we are trying to do.","hate","animosity","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl40107"
+"32965","acl39667",32965,"The degree of accuracy of statistics regarding homosexual hate crimes is very debatable. Eg- there are the homosexual hate crime hoaxes where homosexuals deceitfully faked hate crimes which actually never occured. An other example would be national statistics in the United States regarding homosexuals committing hate crimes against heterosexuals may be underreported and non-hate crimes against homosexuals are classified as hate crimes when they should not actually. basically you're fucked if you're a hetero person living in this day and age and the lgbt community gets to do whatever they want.","hate","animosity","lgbtq","perturbation","test",4,"zUUAkSVCEa","4b","acl37671"
+"32966","acl39668",32966,"#freaking homo erectus freaki#ng me o#t man....","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl37686"
+"32967","acl39669",32967,"u are adding fuel to the fire of the by showing programmes like First. This is the reason why clinics are full. Put the brakes on it until you have done more research","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl37551"
+"32968","acl3967",32968,"my car is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32969","acl39670",32969,"Do you people really need your own flag?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl37710"
+"32970","acl39671",32970,"Stonewall are a bullshit organisation fighting for people to see gay people as normal and part of society. LOL","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl37738"
+"32971","acl39672",32971,"Since 2019, around 100 Polish municipalities have declared themselves ""LGBT-free zones,"" a newspaper distributed stickers with the same slogan and a crossed-out Pride flag, and participants at a Pride march in the city of Biadystok were attacked with stones and bottles by proud nationalists, why can't we have the freedom to protect our children from seeing such sin.","hate","animosity","lgbtq","perturbation","test",4,"zUUAkSVCEa","4b","acl37745"
+"32972","acl39673",32972,"race mixing is legitimately everywhere, it's so natual that seeing a white couple nowadays would be a blow back","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl37730"
+"32973","acl39674",32973,"Gay women are always made fun of because a lot of them lool more manly and even sound like a man.","hate","derogation","gay.wom","perturbation","test",4,"zUUAkSVCEa","4b","acl37769"
+"32974","acl39675",32974,"Resistance against this evil strain of man on man action, is something you ought to hear as a gay person.","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl37810"
+"32975","acl39676",32975,"Some people say that the vaccine with cure gay people....as if it was possible","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl37811"
+"32976","acl39677",32976,"So now liberals are lashing out at the gays. Two weeks ago, The New York Times turned over half of its op-ed page shows negative content on the gays with some connection to Republicans. There is no principled or intellectual basis for these statements. Conservatives don't want gays to be with us; we just don't want to transform the Pentagon into the Office of Gay Studies. Ahhh I can vibe with this new wave liberals.","hate","derogation","gay","perturbation","test",4,"zUUAkSVCEa","4b","acl37812"
+"32977","acl39678",32977,"Left wing spectators on my comments, if you saw a neighbour who knew was gay screaming from a burning house for help, would you let them? I know I wouldn't lol","hate","derogation","gay","perturbation","test",4,"zUUAkSVCEa","4b","acl37813"
+"32978","acl39679",32978,"you're just an angry gay who REALLY REALLY wants to steal christmas","hate","derogation","gay","perturbation","test",4,"zUUAkSVCEa","4b","acl37851"
+"32979","acl3968",32979,"my house is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32980","acl39680",32980,"the homosexual agenda and hip hop both have people crying and whinging.","hate","animosity","bla, gay","perturbation","test",4,"zUUAkSVCEa","4b","acl40124"
+"32981","acl39681",32981,"Read Acts and Paul's letters maybe. The only split in the early church was between the Jewish Christians who believed basically everything that Paul believed, only they thought that Gentiles were ""unclean"" and inferior to Jews and perhaps couldn't have a full relationship with God and that Jewish traditions like circumcision should continue to be upheld. Paul however was more inclusive and preached for a racially harmonious Christianity where ""there is no Jew or Greek for we are all one in Christ Jesus"", and (presumably as the Greeks found circumcision unpalatable) wherein the Old Testament Jewish law is abolished and faith/righteousness is all that matters. That's how crazy yids are, slicing ya dick in the name of religion.","hate","derogation","jew","perturbation","test",4,"zUUAkSVCEa","4b","acl37908"
+"32982","acl39682",32982,"Does anyone recall Alt-Skull from Twitter? He outed himself as having married a Japanese woman. He went as far as to say he has kids with her. I interacted with him a few times, he's seems like good guy, in spite of what he said about nazis. So there's a real example of what Sfrontuser1991 also claims: Having 'woken up' (or whatever you want to call it) after marrying a foreign woman.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl37902"
+"32983","acl39683",32983,"The person without children could adopt or become a step parent or could otherwise provide resources to nieces and nephews or any other children. It's not the ideal situation but it doesn't do as much damage as how the orphaned children feel in the world","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl37955"
+"32984","acl39684",32984,"The great nazis, as good fascists, inherently don't believe the entire world can run on socialism or another economic system uniformly. As the peoples of other races differ, so do their goals, and aspirations etc. we should eliminate diversity.","hate","support","nazis","perturbation","test",4,"gbEGjSAk6r","4b","acl38014"
+"32985","acl39685",32985,"We can still discuss jews and condemn their thoughts and actions without being anti-semites. Those fuckers definitely do exist, but so do normal people and aren't crazy due to inbreeding and hell bent on preparing the world for the anti-christ like Soros.","hate","derogation","jew","perturbation","test",4,"zUUAkSVCEa","4b","acl38028"
+"32986","acl39686",32986,"That's right stupid considering there's a large percentage of jews living in prosperity. Juts think you are barely making end's meet and hearing constant rants about how you were in the past so we should accept your elitism. They are all elite corrupt jews don't give a fuck about you.","hate","derogation","jew","perturbation","test",4,"zUUAkSVCEa","4b","acl38030"
+"32987","acl39687",32987,"The gospels aren't reliable at all as it's origin is black so we don't know, we can tease what is likely to have happened based on what we know about the time. People complain about the criterion of embarrassment but it's the best tool we have at our disposal for studying christ. So we can reasonably assert Jesus was baptized since it raises theological problems that undermine Christian doctrine, so Christians wouldn't have made it up if it didn't actually happen in reality. Likewise the gospels say on the day of the crucifixion the dead of Jerusalem rose from their graves and visited many of the living. #coons","hate","derogation","bla","perturbation","test",4,"gbEGjSAk6r","4b","acl38075"
+"32988","acl39688",32988,"The coons 100% deserve to be raped for this fuck off","hate","threatening","bla","perturbation","test",4,"zUUAkSVCEa","4b","acl38087"
+"32989","acl39689",32989,"Thank you for telling me about that! But, I think even though the definition is half, many people use hapa even if they are really only a quapa, octapa, hexapa and everything in between. So even if hapa means half, in reality means, any mixed amount. See this is why we need to stop mixing, because it gets too complicated, just stick to your own, is that not satisfying enough?","hate","derogation","mixed.race","perturbation","test",4,"zUUAkSVCEa","4b","acl38122"
+"32990","acl3969",32990,"my home is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"32991","acl39690",32991,"The whole ""boohoo if my child is hapa they will have so much struggles"" is a such bullshit imo. It is also interesting and positive to grow up with two cultures. Undertandig that you would never be able to trade being both European and Asian for just being European. Nipons will never be pure europeans. will remain always Asian in that sense. #nomix","hate","derogation","asi","perturbation","test",4,"gbEGjSAk6r","4b","acl38144"
+"32992","acl39691",32992,"Racial tension isn an issue that is tearing our country apart, it must only be one race. Whereas in most of Asia, race is not a huge social issue because it's mainly one race and most peope just don't think about it. That's why Americans tend to view Asians through their own racial lens and call out the other people who shouldn't be there, but Asians on the other hand simply don't care enough about the issue.","hate","derogation","for, immig","perturbation","test",4,"zUUAkSVCEa","4b","acl40232"
+"32993","acl39692",32993,"That's just ignorant people. If they see a pack of Mexican with full indigenous heritage who looks Asian, it's likely they are even worse dogs than the real mexicans. I would prefer to ask if they're sure they're not Asian. Lol","hate","dehumanization","asi, hispanic","perturbation","test",4,"gbEGjSAk6r","4b","acl40767"
+"32994","acl39693",32994,"That's what I'm talking about. I fucking despise toxic parenting of gay couples. It doesn't happen to most, not all, but a lot of us have experienced it. Toxic homo parenting is the true main threat and must swiftly dealt with as such. The parents that peach their toxic fag parenting needs to seriously SHUT THE FUCK UP and go out and look how American society treat us. It is shit.. Get rid of it, exterminate it, genocide it. It has no place in this American society. It might have worked decades ago.. But not now.","hate","derogation","gay","perturbation","test",4,"gbEGjSAk6r","4b","acl38208"
+"32995","acl39694",32995,"She always identified as black during the debates. However, Kamala is a Sanskrit name. Blacks have a lot more votes and political power in the US than South Asians do, that's the reason why she is pandering to them so much. Women sure are complicated, they don't even know their indentity or heritage and actively piss off minorities.","hate","animosity","wom","perturbation","test",4,"zUUAkSVCEa","4b","acl38222"
+"32996","acl39695",32996,"Definitely. They're Japanese girls. I think Japanese people are more likely to stick to Koreans and the Chinese rather than us white people, apparently we're not good enough for these chingchong speaking people","hate","derogation","asi.chin","perturbation","test",4,"zUUAkSVCEa","4b","acl38233"
+"32997","acl39696",32997,"The Indo-Aryans were nomadic so weren't huge in number. They didn't get ""tainted"" by intermixing with lower castes, but the other way round: they greatly affected the local population's gene pool with supremacy. It's stupid like the claim ancient dungs (Iranians) were all blue eyed blonde haired until the Turks or whoever showed up.","hate","derogation","mixed.race","perturbation","test",4,"gbEGjSAk6r","4b","acl38254"
+"32998","acl39697",32998,"So what I've heard is that they were nomadic so there were zero women in the group and they intermixed with the women of the place they settled, thus today's indians almost look alike. If you pick a person of indigenous tribe and a person of brahman community they'll look the same their gene pool will be same almost, the r1a haplogroup is present in indigenous people and also in brahmans, it what makes them how they are. i find this very funny, and yet they wonder why we call them all the same.","hate","derogation","indig, asi.south","perturbation","test",4,"zUUAkSVCEa","4b","acl38255"
+"32999","acl39698",32999,"Advertising perpetuates self-hating and confused misconceptions of a woman. What else is new?","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl38244"
+"33000","acl39699",33000,"Sorry but there is nothing cute about an asian Filipina girl.","hate","derogation","asi","perturbation","test",4,"zUUAkSVCEa","4b","acl38310"
+"33001","acl397",33001,"Blacks are savages","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"33002","acl3970",33002,"my friend is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33003","acl39700",33003,"Same here in the United States. It just attracts a larger amount of immigrants. However, to be fair, some restaurants say no to Pakki/Indians which sounds more inclusive to US citizens.","hate","derogation","asi.south, immig, asi.pak","perturbation","test",4,"zUUAkSVCEa","4b","acl38353"
+"33004","acl39701",33004,"The section on East Asians (yellow people ;) ). You can find it in the table of contents, that will give you the page number. You would know this if you had ever read a book. There's a list of over 25 studies on East Asian IQ outside of East Asia, what I gave you is the median of those studies. But you don't really care, you just want to post based Asian memes like the rest of the fuckwits that are ruining this board","hate","derogation","asi.east","perturbation","test",4,"zUUAkSVCEa","4b","acl38376"
+"33005","acl39702",33005,"thanks god Indian people have spoken out and told the truth that the namaste Trump event was a covid 19 superspreader and although I am sure that those Muslims should also be ashamed and blamed for the spread.","hate","derogation","mus","perturbation","test",4,"gbEGjSAk6r","4b","acl38415"
+"33006","acl39703",33006,"The US had won the war in vietnam, it would have made no damn difference to the children of america because we will win against any foreign war. But they LOST the war and we need to claim some sort of credit for it and be proud of our heroes, America always first.","hate","animosity","for, asi.east","perturbation","test",4,"zUUAkSVCEa","4b","acl40864"
+"33007","acl39704",33007,"""Can someone recognize real Islam without frequently #reading the #unchanged Quran? Isn't it a sin to call this ugly thing Islam? Isn't it an #insult to call all these #mindless people who the #blind public shouts Muslims Muslims?""","hate","derogation","mus","original","test",4,"gbEGjSAk6r","4a","acl38442"
+"33008","acl39705",33008,"they are all the same : #Deaf, #Dumb, #Blind, #Boomer. #FTW.","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38443"
+"33009","acl39706",33009,"Even The Bible WARNS YOU To STAY AWAY From LOUD & DEFIANT Femaleassholes!","hate","derogation","wom","original","test",4,"gbEGjSAk6r","4a","acl38444"
+"33010","acl39707",33010,"Murka is officially a tardocracy right?","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38445"
+"33011","acl39708",33011,"Like a paraplegic, or a vegetable retard, or an ancient broad?","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38446"
+"33012","acl39709",33012,"make sure to bend the knee for autists who invented modern civilization instead of subhuman low-iq idols who go around burning down cities.","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38449"
+"33013","acl3971",33013,"my garden is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33014","acl39710",33014,"Chads are not correlated to retards, more often than not, Chads are smart even geniuses, is just that is less frequent to see them because Chads are only a tiny number of male population","hate","animosity","dis, wom","original","test",4,"gbEGjSAk6r","4a","acl38450"
+"33015","acl39711",33015,"Women choose deadbeat curly haired Latino local drug dealer w 70 IQ or effeminate tik tok eboy with pretty eyes, can society advance AT ALL?","hate","derogation","dis, for","original","test",4,"gbEGjSAk6r","4a","acl38451"
+"33016","acl39712",33016,"Mentally handicapped fucktard finally attains his dream job as an air conditioner fixer! Truly inspiring and heartwarming!","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38454"
+"33017","acl39713",33017,"Let me get this straight you fucking handicapped libtards, I hate you","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38455"
+"33018","acl39714",33018,"every single one of you fucking retards is racist against niggers because you call them black which is the same as calling them niggers. You bithces! I bet your monkey brains are too small to comprehand this but it's true monguis. You're probably gonna just call me a racist and go cry in a corner of your basement. But let me tell you something you're the real racists because you dissalow white people calling niggers niggers but you also call them niggers by calling them black. Fuck you.","hate","derogation","dis, bla","original","test",4,"gbEGjSAk6r","4a","acl38456"
+"33019","acl39715",33019,"Win or lose, he is still a dementia-crippled retard (as well as a pedophile and traitor motherfucker)","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38457"
+"33020","acl39716",33020,"What caused the degradation of the founding American to the modern drumpftard? Could it somehow be that, due to the relative isolation from and lack of competition with the world, the American mind has degraded to a lesser form giving birth to retards?","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38458"
+"33021","acl39717",33021,"Down dumps maniacs caught my whore sucking her ex's dick","hate","derogation","dis, wom","original","test",4,"gbEGjSAk6r","4a","acl38459"
+"33022","acl39718",33022,"Having kids is awesome but all women are retarded scum bags right?","hate","derogation","dis, wom","original","test",4,"gbEGjSAk6r","4a","acl38460"
+"33023","acl39719",33023,"I would describe him as a closet homosexual midget with flip flops doing minimalist training","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38461"
+"33024","acl3972",33024,"my cat is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33025","acl39720",33025,"Do we know what happened to Obama's pet midget once he left office? what a motherfucker","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38462"
+"33026","acl39721",33026,"Romance is dead. Now people are so stuck to their phones that if you go out with someone they'll be in it 90% of the time or running off to the bathroom to text all the other 47 messages from tinder.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl38453"
+"33027","acl39722",33027,"That paraplegic whore must be a white supremacist","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38464"
+"33028","acl39723",33028,"Fuck off schizo fag GM.","hate","derogation","dis, gay","original","test",4,"gbEGjSAk6r","4a","acl38465"
+"33029","acl39724",33029,"You only played yourself there, fucking retard","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38466"
+"33030","acl39725",33030,"blind people: when you cut onions does your eyes burn? Hard to see how it could given theyre defunct but v curious about y'all","hate","animosity","dis","original","test",4,"gbEGjSAk6r","4a","acl40745"
+"33031","acl39726",33031,"Did you lose your eyes? #blind","hate","animosity","dis","original","test",4,"gbEGjSAk6r","4a","acl38467"
+"33032","acl39727",33032,"what is it like being blind on christmas? you can't see santa lol","hate","animosity","dis","original","test",4,"gbEGjSAk6r","4a","acl38468"
+"33033","acl39728",33033,"My blind flatmate and me were watching tv yesterday, he found it so hard lulz","hate","animosity","dis","original","test",4,"gbEGjSAk6r","4a","acl38471"
+"33034","acl39729",33034,"Which cripple would you like to be?","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl40668"
+"33035","acl3973",33035,"my hamster is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33036","acl39730",33036,"cripple crew broken","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38472"
+"33037","acl39731",33037,"the CRIPple gang on the crip locs lol","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38473"
+"33038","acl39732",33038,"No CAP tho handy cap people got it done","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38474"
+"33039","acl39733",33039,"cripples won","hate","derogation","dis","original","test",4,"gbEGjSAk6r","4a","acl38475"
+"33040","acl39734",33040,"""Censorship is telling a man he can't have a steak just because a baby can't chew it."" -its a great citation of Mark Twain","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38476"
+"33041","acl39735",33041,"#AMERICA FIRST #TrumpPOWS2017 #REALNEWS -> use hashtag
+
+Support Donald Trump
+
+Twatter: DisabledVetsCPX (suspended for pro trump tweets)","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38477"
+"33042","acl39736",33042,"""I know you won't believe me, but the highest form of Human Excellence is to question oneself and others."" -ones said Socrates","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38482"
+"33043","acl39737",33043,"Al ""If she's sleeping, I'm creeping"" Franken d u d e","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38483"
+"33044","acl39738",33044,"WITNESS what has been done ! their lives are worth nothing to genocidal maniacs like Gates #Flashback: 47,000 #children #crippled and permanently #disabled in #India - that's what the news say! At least he certainly had to have known that oral polio vaccines were discontinued in the U.S. due to their known contribution to vaccine-derived paralysis.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38484"
+"33045","acl39739",33045,"#Covid19 #BeltandRoad #China #Italy #crippledeconomy - China's Belt and Road plan: Why did Italy sign it and why is Brussels worried? just someone give me an answer","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38485"
+"33046","acl3974",33046,"my chair is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33047","acl39740",33047,"""I thought it would be a good opportunity to demonstrate the world how capable a blind person can be. I realized that not even my closest friends understood how I do certain daily tasks,""","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38486"
+"33048","acl39741",33048,"#blind, for not seeing how this #pandemic is one big manipulation to our lifes and economies","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38487"
+"33049","acl39742",33049,"That #BIDEN how Weird he’s like some “Raving Lunatic” in some Weird Terror Movie; with those Creepy Dark Glasses... Like A #Blind #MaGoo 🕶 yet not so happy and nice!","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38488"
+"33050","acl39743",33050,"Why don’t we care more about Godas the way we acnkowledge about #diseases, #poverty, #hunger and #racism? What’s more important, what’s more #helpful? Did we become so #blind from our #obsession with #idols that we forgot God’s #Grace?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38489"
+"33051","acl39744",33051,"‘Stay #dumb, don’t #think and trust the #government, #media and experts who have lied to you countless times in the past. Go back to sleep, #America!’”","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl39880"
+"33052","acl39745",33052,"FDA warns of contaminated hand sanitizers that can make you go #blind
+Over 60 hand sanitizers brands have been discovered to contain #methanol, which can be deadly to humans.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38490"
+"33053","acl39746",33053,"#blind : affects the sense of seeing, either by natural defect or by deprivation of sight","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38493"
+"33054","acl39747",33054,"While the focus is on achieving scalability and stability, #blind-spots can be caused in legacy accounts","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl41072"
+"33055","acl39748",33055,"What changes occure in the human brain that allows blind people to have better hearing?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl40280"
+"33056","acl39749",33056,"anything coming from Trump's shit-filled mouth is willfully #deaf #dumb #blind, already #braindead and/or just willingly #IGNORANT!","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38494"
+"33057","acl3975",33057,"my city is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33058","acl39750",33058,"Why don’t #Christians speak more about Joseph, who healed his #blind father Jacob?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38495"
+"33059","acl39751",33059,"despite being initially refused entry due to his disability, a blind Greek student graduated in Physics with distinction.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38496"
+"33060","acl39752",33060,"Was #satan #blind when he was in #Heaven?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38497"
+"33061","acl39753",33061,"Aren’t we blind after we die and leave our eyes on earth?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38500"
+"33062","acl39754",33062,"Aggressive' Animal Rights Loony Toons target a blind man aged 30 for keeping a guide dog with him as they claim should be 'running free in the fields'","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38501"
+"33063","acl39755",33063,"#AnimalRights #Activists attacking #Blind People over owning GuideDogs?! Lunacy levels just keep surprising me","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38502"
+"33064","acl39756",33064,"Today as temperature drops brutally Im remembering the poor old #blind dog wandering on the streets. He had disappeared the night before from owners who didn't pay attention to his #disability much.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38503"
+"33065","acl39757",33065,"I Don't need this Fucking ignorant to tell me #CNN is #Bias a #Blind person can see that","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38504"
+"33066","acl39758",33066,"1st Ever CRISPR Trials To Treat Blindness In The USA has been launched","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38505"
+"33067","acl39759",33067,"Teenager left #blind and #deaf by bad nutrition during decades of sausages, crisps and processed food. severely damaged optic nerve through lack of #nutrition","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38506"
+"33068","acl3976",33068,"my uni is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33069","acl39760",33069,"Women, get a fucking grip on yourselves and just see the simple fact that you cannot understand how disturbing to a little boys psyche hearing his OWN mother talk like this. You morons are helping create the very thing you fear .","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38507"
+"33070","acl39761",33070,"This Surgeon amazingly Restored Sight to a lot of Nepal’s Blind people","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38508"
+"33071","acl39762",33071,"Road rage fight in Paris and a driver nearly hits a blind man","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38509"
+"33072","acl39763",33072,"If your skin is left unattended, in the long run it can be #damaged in a way that would be difficult to #heal.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38512"
+"33073","acl39764",33073,"
+This means the entire #election was #invalid","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38513"
+"33074","acl39765",33074,"#invalid : defined as someone of no force, weight, or cogency","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38514"
+"33075","acl39766",33075,"So I just got this weird nonsense saying that my accesstoken being #invalid","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38515"
+"33076","acl39767",33076,"THERE WAS A FLY ON HIS HEAD SO CLEARLY THIS MAKES HIS ARGUMENTS INVALID","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38516"
+"33077","acl39768",33077,"can a judge force a new election with this many invalid ballots?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38517"
+"33078","acl39769",33078,"There might be 364,000 invalid ballots, but there's no way they end up not counting them unless there's a renewed hand recount like they're doing in GA","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38518"
+"33079","acl3977",33079,"my teacher is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33080","acl39770",33080,"Everyone in a job I was in had their accounts disabled.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38519"
+"33081","acl39771",33081,"Anne Hathaway Apologizes To Disabled Community For Playing Character With less Fingers","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38520"
+"33082","acl39772",33082,"She's not even playing an amputee, the witches haven't chopped off their fingers, actually they aren't even human for fuck's sake. Instead of apologising, someone needs to point out that it's not real","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38523"
+"33083","acl39773",33083,"A whistleblower in Wisconsin said that every developmentally disabled client had their vote stolen for Joe Biden","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38524"
+"33084","acl39774",33084,"Illegal Immigrant Charged With Raping 'Severely Disabled' Woman back home","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38525"
+"33085","acl39775",33085,"So did he broke up with his woman after she gave birth to his mentally disabled child?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38526"
+"33086","acl39776",33086,"Handicapped man doing the Arnold Schwarzenegger’s Disabled Strongman competition","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38527"
+"33087","acl39777",33087,"Athlete Carries Disabled Woman Up Mount Olympus what a Dream for her","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38528"
+"33088","acl39778",33088,"covid has shown me just how stupid everyone is.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38529"
+"33089","acl39779",33089,"FBI is playing deaf, dumb, and blind about election fraud right?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38530"
+"33090","acl3978",33090,"my best friend is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33091","acl39780",33091,"""what a tone deaf comment"" as a reply to a well structured argument","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38533"
+"33092","acl39781",33092,"Deaf competitor is immediately disqualified.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38534"
+"33093","acl39782",33093,"My dog is blind, deaf, and missing most of his teeth, but he is the best boy!","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38535"
+"33094","acl39783",33094,"Queens of the Stone Age and it great Mosquito Song (2002, Songs For the Deaf album.)","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38536"
+"33095","acl39784",33095,"Deaf People Answer Commonly Googled Questions About Being Deaf in 2020 on YouTube","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38537"
+"33096","acl39785",33096,"6 Adorable Handicapped Animals video","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38538"
+"33097","acl39786",33097,"Illegal Immigrant could be charged With Raping Incapacitated Woman In Kentucky. Shouldn't be released on bail","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38539"
+"33098","acl39787",33098,"The United States electrical grid is extremely vulnerable and could easily be incapacitated. Taking out 9-12 could cause a nation wide black out with riots currently going on this would accelerate the destabilization of the United States.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38540"
+"33099","acl39788",33099,"Trump was ‘incapacitated’ by a drug side effects, what a claim!","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38541"
+"33100","acl39789",33100,"Crazy time to be alive #LockDownUK . We survived","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl41203"
+"33101","acl3979",33101,"my girlfriend is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33102","acl39790",33102,"Social Justice ideology is a crippled, low-resolution, cynical look at human nature life and the world we inhabit.","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38544"
+"33103","acl39791",33103,"Russian tourist offered employee $1 million to cripple Tesla with malware a malicious software","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38545"
+"33104","acl39792",33104,"Mutant worm after nuclear wastes saw near by","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38546"
+"33105","acl39793",33105,"mutant honeybee is both male and female, strange specie","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38547"
+"33106","acl39794",33106,"Why the fuck should an impaired mind get you cleared of murder charges? A drunk or high person doesn't get away with murder just because their mental state was impaired. Schizophrenia meds are a thing... we should be taking some","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38548"
+"33107","acl39795",33107,"how is it that you turned blind, or don't you know it?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38549"
+"33108","acl39796",33108,"an honest question: how do u write stuff when u are blind?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38550"
+"33109","acl39797",33109,"How do blind girl shopping for supermarket?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38551"
+"33110","acl39798",33110,"are you actually blind? or are you blind but you can see a bit?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38552"
+"33111","acl39799",33111,"have always been curious about what do you see when you are blind?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl39953"
+"33112","acl398",33112,"I hate Donald Trump","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"33113","acl3980",33113,"my wife is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33114","acl39800",33114,"It's so cool how blind people can do stuff even thought they can't see anything","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38553"
+"33115","acl39801",33115,"how does a blind girl make a tiktok video?","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38554"
+"33116","acl39802",33116,"Since you are blind, do you have a favorite colour? hope this doesn't sound rude","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38555"
+"33117","acl39803",33117,"Why wpuld he say the blind kid looked to him","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38556"
+"33118","acl39804",33118,"My dad is deaf and his job gifted him a bluetooth speaker","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl40444"
+"33119","acl39805",33119,"Yeah, I'm disabled. Yes, I'm a jets fan","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38557"
+"33120","acl39806",33120,"People think blind don't see but when someone talks to you you can hear where their coice comes from","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl38558"
+"33121","acl39807",33121,"I said what are you deaf he was deaf it was very funny and we were friends for a long time but yeah..","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl40044"
+"33122","acl39808",33122,"Please keep making light of the dark situatuns #blind #crippled","nothate","none","none","original","test",4,"gbEGjSAk6r","4a","acl40920"
+"33123","acl39809",33123,"I could be wrong but I feel like false rape accusations are more likely to happen when you have a lot of mutual friends/you spend a lot of time with her so she's more familiar with you. If you're strictly reaching out to women cold contact be that on dating apps or approaching in public, charming them enough then moving on, then your risk is greatly reduced. Obvs most girls would never do falsely accuse. But it is risk in general to if you want sex. And for goodness sake yes please wear a condom!","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38574"
+"33124","acl3981",33124,"my husband is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33125","acl39810",33125,"So many ugly and mediocre websites on here. I can literally just Google ""hot naked girls"" and easily get 2 billion illegal results that should be banned. Who and Why the fuck they pay? Pics shouldn't ever get online anyway.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl38656"
+"33126","acl39811",33126,"Stop posting these cheap and nasty looking helicopters.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38663"
+"33127","acl39812",33127,"stfu up 6 million men no one acc gives a dead mooses last shit about what you have to say. Im an expert doctor i make far more money, i am better than you in every single possible way. Your just a shit kid crying online all day. Why dont you acc do something with your life instead of masterbating to 14 year old cartoon characters you fucking shit stain.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40351"
+"33128","acl39813",33128,"The first rule of starting a cult is to target men. They are exceptionally gullible and will accept anything if it's phrased in the context of being in their best interest. This goes for everything in life involving men if you can convince some Ding-A-Ling cunt that's something is in their best interest right at that moment he'll jump all over it. He won't question anything he won't think about anything. If you want to predict what a man's going to do with 95% accuracy just put yourself in the position of what he perceives is in his best interest at that exact moment. Not 5 minutes from now not five minutes ago but right at this exact moment. As a situations and their hormones change on a regular basis so will their entire belief system","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38708"
+"33129","acl39814",33129,"The world is going to shit. Women have waged a war against men. They have resolve to gain back their rights in their countries and the people. The female vote has iluminate us all. Yes, it is a cruel world. Strongwalking, women with crowns are everywhere.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl41077"
+"33130","acl39815",33130,"Realistically the future won't collapse if it's Female.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl38726"
+"33131","acl39816",33131,"The bankers don't get to define reality.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38744"
+"33132","acl39817",33132,"Remember that one can not think of women as whores or just housewife mate. Also, whamen are not whores.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl38765"
+"33133","acl39818",33133,"That ""loving"" nature should overcome that control freak attitude it's what is wrong with the world. The more women rise in politics, the more women take empowerment and their female nature takes over. Estrogen warriors","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl38825"
+"33134","acl39819",33134,"I feel like this is more about people that come here and do assimilate. I could be wrong though, although it's highly unlikely.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38846"
+"33135","acl3982",33135,"my sister is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33136","acl39820",33136,"Lol!!! I suggest you go to some of places in Germany or elsewhere and see just how many people there cant speak English","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38862"
+"33137","acl39821",33137,"Seriously consider how your politicians care more about their pay than their own people,","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38889"
+"33138","acl39822",33138,"The fact that they say ""assigned at birth"" confuses me. A doctor doesn't just randomly decide which sex you are, they look at you and see which sex you are. They should say ""observed at birth"" instead, but you know, I'm not trans so my point is mute.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38880"
+"33139","acl39823",33139,"Thanks auntie Merkel for allowing the whole country to get jobs including those who are refugees.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38931"
+"33140","acl39824",33140,"The US and europe should not be taking in any other currencies. whatsoever.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40762"
+"33141","acl39825",33141,"90% OF TRUMP SUPPORTERS ARRESTED DURING 2019 HAD PRIOR ARRESTS.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38953"
+"33142","acl39826",33142,"""anger"", which is a code word for those who do not want to be raped, mugged or have their children rape and sodomized by others, while the police stay silent, dont do anything or are complicit with the rapists. If the police cant protect you, we will have to protect ourselves.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl38975"
+"33143","acl39827",33143,"The most probable practical reason why they want more people is to provide a local source of labor and the more cynical to keep us hating each other more than they do as the ruling class angle","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl41071"
+"33144","acl39828",33144,"Poland? Does he really think Poland would welcome him? I'm stunned at this stupidity.","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl38990"
+"33145","acl39829",33145,"She did not flee here, she -and all the rest- were resuced into our land with the help of Obama.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl40105"
+"33146","acl3983",33146,"my parents are fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33147","acl39830",33147,"The first priority should have been to help birthright citizenship within the first year of his presidency and nothing happened. That's one of the biggest problems. Two illegals should be able to have a baby here and be considered 'American.' Eff that. I'm against any immigration restriction. We aren't full. would never say 'eff off back to your third world'","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl39024"
+"33148","acl39831",33148,"That's exactly right. ''Undocumented' sounds as if the dude that lost their papers. is there a correct term?","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39033"
+"33149","acl39832",33149,"So no one can judge if they are way more interested in indulging weird fetishes. There is nothing wrong with men in dresses, rather why don't you start doing your job?","nothate","none","none","perturbation","test",4,"gbEGjSAk6r","4b","acl39021"
+"33150","acl39833",33150,"The term ""documented"" means you emigrated legally and have your paperwork. It does not mean you are here illegally.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39035"
+"33151","acl39834",33151,"Now we've got cities all over. It's gotten a lot worse since the coppers are stretched thing and people are trying to encourage them to come here. Some of the cities are bigger than CHAZ. I saw some in my area drive in with mock wooden shelters on the back of old pickup trucks and they all just live in one of our parks now. I get people complaining about me when I'm not wearing a mask despite not being within 50 feet of anyone, but nobody ever says shit to all them that not only aren't wearing masks but are often naked out here. I think Wuhan's way overblown, but I'm willing to bet being naked in public while living in filth increases your chances of getting it.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39045"
+"33152","acl39835",33152,"Leftists will tell you that if a person in USA get a payout from the government, and uses it to buy something, since they paid sales taxes, they are now a taxpayer.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39054"
+"33153","acl39836",33153,"So your leader is betraying the nation and you're just cool with it? Nothing personal but all those properties should be seized for aiding fugitives of the law and your president should be in fucking jail for knowingly letting this happen.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39068"
+"33154","acl39837",33154,"I assume you're kidding, because that's pretty much how Rome fell. They imported masses who then sacked Rome and took their stuff. In the past, importing people was a typical way that empires end, its not the same now in USA.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39096"
+"33155","acl39838",33155,"That's not all the monkeys carry. Plenty of other parasites come riding along with them. Some our vets haven't seen and don't know what to do with.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39109"
+"33156","acl39839",33156,"What the fuck for real? I'm a PA pede! People are getting mugged in France and I have to fucking worry about this now thanks to Joe Biden wanting to takin increase tax? Sick. These liberal housewives around me better shape up.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39157"
+"33157","acl3984",33157,"my mum is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33158","acl39840",33158,"South East Asian culture doesn't violently conflict with French culture. white culture does. Hence, racism when it comes to integration being the problem. White people is the problem.","nothate","none","none","perturbation","test",4,"zUUAkSVCEa","4b","acl39196"
+"33159","acl39841",33159,"I am definitely not a Jew hater in any way and the only two organizations that I give my money every month to are both Jewish. I am however, against POLITICAL Zionism and there is a huge difference there","nothate","none","none","original","test",4,"E3dsmnSPob","4a","acl38064"
+"33160","acl39842",33160,"They always insist that they are the victim. No Matter What Extreme and Massive Levels of Organized RICO-level Subversion and Crimes Govt Have Committed Against Humanity. Even when a Mountain of Documented Proof is published. Somehow They Are Still The Victim","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl32838"
+"33161","acl39843",33161,"I mean, sexuality is a ""preference"" after all. If you don't want some companies to deny you services, maybe you can simply not be out in the street shouting how ""proud of it"" you are, because (spoiler): Nobody actually cares.","hate","animosity","gay","original","test",4,"LqLKTtrOmx","4a","acl31691"
+"33162","acl39844",33162,"Remember that hoover is effectively a brand name. It's not representative of vaccums like dyson or cleaners as a whole. So, when they say its not a hoover or even a dyson, I'd call that a vaccum cleaner since its basically saying the brand not the object.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl41183"
+"33163","acl39845",33163,"This approves all bullshit stereotypes about Muslims being terrorists. This is enough to show the the world that they're really are so deceiving in their nature.","hate","derogation","mus","perturbation","test",4,"cYKSVBW4HD","4b","acl36596"
+"33164","acl39846",33164,"Let me get this straight.
+A white mudslime attacks another mudslime inside their barracks and it’s islamophobia? WOW, talk about going for bonus victimhood points.
+And speaking of victimhood. The prayer caller had a 15mm cut that somehow prevents him from feeding himself, requires multiple doctors visits and needs shoulder surgery? I’ve seen bigger cuts on kids from playing in the back yard!
+Just watch the victims of crime compensation claim go in!","hate","derogation","mus","original","test",4,"IBsVsBliwX","4a","acl31974"
+"33165","acl39847",33165,"No but they can bring serious foot and mouth disease problems because refugees are dirty","hate","dehumanization","ref","perturbation","test",4,"iO6vHa6qJm","4b","acl34338"
+"33166","acl39848",33166,"""I want to humbly ask the gypsy people for forgiveness in the name of our government,"" said the Second Deputy Prime Minister Pablo Iglesias at an event in Madrid set to commemorate the Nazi genocide against the community during World War II. Iglesias used this event to reflect on Spain's own attempts to oppress and exterminate the community.","nothate","none","none","original","test",4,"HtRmsP3KiK","4a","acl34995"
+"33167","acl39849",33167,"I've seen a few vids and comments, and most of the topics are things like trans rights that I don't give a flying fuck about.","hate","animosity","trans","perturbation","test",4,"CAgNlUizNm","4b","acl38297"
+"33168","acl3985",33168,"my cousin is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33169","acl39850",33169,"i want to dedicate myself to the TOTAL and complete eradication of every last KIKE on this planet, I would dedicate an entire life to this worthy pursuit using my own hands, for these demons among us, must be eventually dealt with en masse! Otherwise all of HUMANITY must eventually suffer under their cruelty","hate","threatening","jew","original","test",4,"E3dsmnSPob","4a","acl33923"
+"33170","acl39851",33170,"I can't stand paki people and I'm pissed at a lot of things (clothes, toys, etc) that are made in Pakistan but are labeled otherwise to ensure sales","hate","derogation","asi.pak","perturbation","test",4,"iO6vHa6qJm","4b","acl38352"
+"33171","acl39852",33171,"just saying, curiosity doesn't always need to be sated, especially if it means disrespecting other people","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl36222"
+"33172","acl39853",33172,"In the UK there are Pakistani ghettos, i.e.areas where you are surrounded by Pakistanis. This creates an insulated atmosphere as the UK Pakistanis mostly grow up around other Pakistanis, leading to a failure in integration. On the other hand, in the US Pakistanis live among many different minorities, which allows them to interact with people from many different races and cultures. This fosters tolerance and helps them integrate.","nothate","none","none","original","test",4,"eLGzdD8Tvb","4a","acl38351"
+"33173","acl39854",33173,"Terrorist attacks from scum in the UK are inevitable.","nothate","none","none","perturbation","test",4,"QiOKkCi7F8","4b","acl40595"
+"33174","acl39855",33174,"Porn is better than having sex with women. No STDs, child support and false accusations.","hate","animosity","wom","original","test",4,"GNZuCtwed3","4a","acl32526"
+"33175","acl39856",33175,"Am I the only one who's always just been meh on asian girls? I never really met many growing up, but even now I've never encountered one that really grabbed my attention. Anyways, that‘s just me!","nothate","none","none","original","test",4,"eLGzdD8Tvb","4a","acl38334"
+"33176","acl39857",33176,"It is a well known fact that liberals invented these types of cars to make more money and control the world by changing the climate of our planet. Liberals will then eventually find a cure to global warming but they will sell this to get more of the world's money","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl32813"
+"33177","acl39858",33177,"I have a female Asian ftiend who married a white man and we were talking about babies when she mentioned she hated how she looked when she was a todler. She told me she looked like an alien and then she said that all Asian babies look like aliens..she had a point as ive seen mixed swirls before and they eyes really give me the creeps.","hate","derogation","mixed.race, asi","perturbation","test",4,"cYKSVBW4HD","4b","acl38115"
+"33178","acl39859",33178,"Rich people demonstrating that they are at the top of the dating hierarchy is NEVER a bad thing, but it is also something that you never see in the media, who condition everyone to lose self-esteem and think in they look like undesired polarized trash polarized by democrats who for years have tried to sell poor men as old and bad, to put rich men and poor women against each other. They‘ve also tried to hide the rich men being jealous, racist, attacking kids, attacking women and create productions ony against poor dudes who the own rich incels use to spam against poor men using the thing produced in corporations owned by democrats who worked for years, to try to lower sexual market of poor emen.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl34045"
+"33179","acl3986",33179,"my grandparents are fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33180","acl39860",33180,"The Unites States began with murders of Native Americans & black people, pillaging, rape & SLAVERY. How is this not great?","hate","dehumanization","bla, indig","perturbation","test",4,"iO6vHa6qJm","4b","acl34948"
+"33181","acl39861",33181,"Uhhh why do rednecks put large paperclips on the brim of their hat? So weird","hate","animosity","wc","original","test",4,"GNZuCtwed3","4a","acl32868"
+"33182","acl39862",33182,"demotologists hate her because they have to feel under her headscarf","hate","animosity","mus.wom","original","test",4,"cYKSVBW4HD","4a","acl33549"
+"33183","acl39863",33183,"Don't be so naive: The benefits to Merkel and Co. are pretty obvious. Virtually every refugee who then becomes a German citizen will vote for her and her party almost until the day they die. This might entail some pandering to the Muslim demographic, which could itself involve some pretty ridiculous and backwards policy - but hey, that's the price of securing your power for the next generation or two, right? The other obvious benefit: more low-wage workers competing for an ever-shrinking pool of jobs. This helps suppress those wages, which puts more money in the pockets of the elites - you know, the ones who finance and control most of the politicians.","hate","animosity","ref","original","test",4,"TrRF46JWfP","4a","acl40641"
+"33184","acl39864",33184,"Exactly, they are these wonderful socialist countries that can't wait to join to the EU, but no immigrant wants to come here thanks to Brexiteers who turned our country into the shithole now that we left.","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl39103"
+"33185","acl39865",33185,"And you need to keep in mind that a really important thing for us asian men is that a lot of these asian females started off dating AM before venturing out to white guys, and one of the biggest factors AFs mention is that these WM are perceived by AFs on average to be more open-minded and fun-loving. BM are another story though, dark meat doesn't tickle their fancy lol. But nevertheless you need to try your best to enjoy the many adventurous things in life even more than you are doing now, all women love that, whether AF or WF.","hate","animosity","bla.man","perturbation","test",4,"LqLKTtrOmx","4b","acl38117"
+"33186","acl39866",33186,"Ummm how about because Apes have a limited understanding of how to use tools and cephalopods don't live very long and have no way of passing knowledge to other individuals.","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34960"
+"33187","acl39867",33187,"I'm from the UK. Was watching the news awhile back at work on my lunch, a story came on about another migrant ship going down with huge deaths. The general reaction of those around me was ""serves them right"". I am genuinely concerned about the future in the UK, especially after Brexit. I'll never forget the guy on the table in front of me that laughed at the lorry death incident.","nothate","none","none","original","test",4,"iO6vHa6qJm","4a","acl39944"
+"33188","acl39868",33188,"lol you don‘t know how wrong you are bugfucker. Enjoy your shovel faced gooks you lanklet beta lmao","hate","derogation","asi.east","original","test",4,"eLGzdD8Tvb","4a","acl34176"
+"33189","acl39869",33189,"Fred Meyer has a really sickening commercial that has an animated interracial family -- black woman, shitlit child, and blond white man. They all peer into a snow globe containing an Alpine mountaineer, who smiles back at them","hate","derogation","bla, mixed.race","original","test",4,"CAgNlUizNm","4a","acl40136"
+"33190","acl3987",33190,"my auntie is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33191","acl39870",33191,"For those of you wondering what the area is like, I can assure it's one of the biggest sh1t holes I've ever stepped foot in. 99% boredom.","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl33118"
+"33192","acl39871",33192,"It's a shame really. Gender dysphoria is not a mental illness, it makes you think you are not who you are when that is not the case. And the closest thing to a solution right now is transition surgery.","nothate","none","none","perturbation","test",4,"TbUBpfn6iP","4b","acl32548"
+"33193","acl39872",33193,"Not sure i'd call Refugees Cowards, they are literally exercising a basic human instinct, a quest for survival. That's the story of how most Non Black or Native American Americans got to the United States... It's the entire reason we have been able to survive as a species, literally migrating and moving away from dangerous places in search for more habitable environments to survive in","nothate","none","none","original","test",4,"iO6vHa6qJm","4a","acl35813"
+"33194","acl39873",33194,"I believe taking in huge numbers of climate refugees from foreign countries will be one of the major precipitating factors of collapse, since they could drive a backlash that empowers an authoritarian administration to sweep the government. Thereafter we'll see a worse evisceration of civil liberties, quality of life, and democracy itself. No nation can support the numbers of climate refugees that we are likely to see in the next 50 years","nothate","none","none","perturbation","test",4,"TbUBpfn6iP","4b","acl38915"
+"33195","acl39874",33195,"Coon or boong are the more common terms.","nothate","none","none","original","test",4,"dqrONtdjbt","4a","acl40796"
+"33196","acl39875",33196,"I hate this narrative that Jews are ""a rather small, devious, parasitic group, basically a sort of rootless gypsies before they stole their ""god given"" country, that have developed certain ways to survive and prosper, just like any other pests.""","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl36264"
+"33197","acl39876",33197,"I've said it before and I'll say it again: the business pitch proposals are not read by plug'n'play, dammit!","nothate","none","none","perturbation","test",4,"iO6vHa6qJm","4b","acl31831"
+"33198","acl39877",33198,"The common denominator here is the British empire, who colonized most of the earth and sent white Presbyterian men to America who bought and sold black slaves from Africa which for centuries fed racism into the minds of people right up to present day. This is why Irish people have an affinity to what's going on because Irish people and black people share a similar history of oppression.","nothate","none","none","original","test",4,"iO6vHa6qJm","4a","acl35757"
+"33199","acl39878",33199,"It will take a thousands of years for our children to unlearn all the stupid, mean spirited, and worthless crap that the historians have laid on them for the last thousand years.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl33926"
+"33200","acl39879",33200,"These guys have extremely poor quality workmanship in construction. The customer, and insurance companies pay down the line. Texas only requires a 1 year warranty for construction. You can watch the videos of storm damage, and see that the buildings were not properly built, and failed for that reason alone.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl39051"
+"33201","acl3988",33201,"my uncle is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33202","acl39880",33202,"Stay #dumb, don't #think and trust the #government, #media and experts who have lied to you countless times in the past. Go back to sleep,America, jews cant hurt you there!","hate","derogation","jew","perturbation","test",4,"E3dsmnSPob","4b","acl39744"
+"33203","acl39881",33203,"You are the opposite of smart, man. you won't realize anything.jpg","nothate","none","none","perturbation","test",4,"vDe7GN0NrL","4b","acl32639"
+"33204","acl39882",33204,"Was the absolute purging of his own party purely motivated by centralizing his power as the General Secretary, or was he motivated if at all by the wild amount of equally brutal murderous kikeage in the Bolshevik party?","hate","derogation","jew","original","test",4,"E3dsmnSPob","4a","acl33731"
+"33205","acl39883",33205,"Yeah the baby's hair will definitely be... unique! But yeah mixed race babies can be a hoot! I saw an Asian/white baby a few days ago and it was sooo unique looking. I told them congrats because they won’t struggle with a low IQ, juvenile detention or... different hair products on the shopping list. Haha! We’ll have a good day and congrats on your ‘unique’ creation!","hate","animosity","mixed.race","original","test",4,"HtRmsP3KiK","4a","acl40898"
+"33206","acl39884",33206,"simply wow, Intresting timing, I saw this video after a Palestinian said that they should hijack 10 Emirates planes and crash them into the towers of Dubai. May god protect us from the evil of the Palestinians. I
+won’t be sad if we kick out the Palestinians. Hopefully we can buy some equipment from Israel and learn from their expertise","hate","derogation","arab","original","test",4,"vDe7GN0NrL","4a","acl31597"
+"33207","acl39885",33207,"the most promiscuous 3% of people carry 82% of syphilis cases = 3% of clowns carry 82% of sores.","nothate","none","none","perturbation","test",4,"CAgNlUizNm","4b","acl31806"
+"33208","acl39886",33208,"This almost makes it more racist, to lump all of these people who have separate languages and cultures into one group. Just segregate by skin colour and stop overcomplicating","hate","animosity","gendermin","perturbation","test",4,"HtRmsP3KiK","4b","acl36845"
+"33209","acl39887",33209,"Yet you WILL still continue to blame the Jews for your shitty uneducated poor lives...","nothate","none","none","original","test",4,"QiOKkCi7F8","4a","acl35195"
+"33210","acl39888",33210,"Looks clearly like a sad person,so no surprises there!","nothate","none","none","perturbation","test",4,"dqrONtdjbt","4b","acl36480"
+"33211","acl39889",33211,"I am just wondering am i even an arab family as there isnt at least 7 mohammeds and 3 ahmeds, we only have two of each !","nothate","none","none","perturbation","test",4,"E3dsmnSPob","4b","acl31499"
+"33212","acl3989",33212,"my laptop is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33213","acl39890",33213,"If abbo is human, pongo and pan are human as well...","hate","dehumanization","indig","original","test",4,"CAgNlUizNm","4a","acl40309"
+"33214","acl39891",33214,"Seriously every time I see a homeless or a poor person I get a physical guilt to their presence. I know God is testing us but why do I feel this way? Am I evil?","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl40953"
+"33215","acl39892",33215,"well let me be honest, ""Open Borders"" is a good slogan - better than ""Change the conversation on immigration!""","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl31456"
+"33216","acl39893",33216,"I dunno. I’m a light-skinned aboriginal woman and I’ve never been called “white” by a black person, they see me as a black woman despite my skin colour. It’s only ever been white people that call me “white”. It’s weird. But yeah, I call blackfulla’s black and whitefulla’s white. It’s 2020 people, grow up","nothate","none","none","original","test",4,"dqrONtdjbt","4a","acl36897"
+"33217","acl39894",33217,"Kudos to everyone who sponsored a refugee. Fucking heros.","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl35336"
+"33218","acl39895",33218,"We have a running gag in our house that the first face you see on a commercial now is almost always dark. It's true. And it's mostly a new development. It's corporations pandering to BLM and them generally.","hate","animosity","bla","original","test",4,"CAgNlUizNm","4a","acl34648"
+"33219","acl39896",33219,"I think that reflecting deeply on this sub about how to address our asian females on the 1 to 10 range is as important in addressing this WMAF issue as is discussing those AF who end up with the WM Comic Guy types, probably much more.","nothate","none","none","original","test",4,"eLGzdD8Tvb","4a","acl40258"
+"33220","acl39897",33220,"hey Mr why were you late for work today A muzzie hijacked my car","hate","derogation","mus","perturbation","test",4,"Z42dvbYWzV","4b","acl35952"
+"33221","acl39898",33221,"There is nothing special about these jews, they are so very predictable.","hate","animosity","jew","original","test",4,"E3dsmnSPob","4a","acl39452"
+"33222","acl39899",33222,"Side note: rapists are basically the UK's equivalent of disgusting psycho people","nothate","none","none","perturbation","test",4,"vDe7GN0NrL","4b","acl32976"
+"33223","acl399",33223,"I hate people who are dumb","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"33224","acl3990",33224,"my blender is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33225","acl39900",33225,"You're right Brother, jewish women do not age very well!","hate","animosity","jew","original","test",4,"E3dsmnSPob","4a","acl33614"
+"33226","acl39901",33226,"Look on the bright side, at least there are pics of him making out with a man on the web now, and forever. What a perv!","hate","derogation","gay.man","perturbation","test",4,"TrRF46JWfP","4b","acl34277"
+"33227","acl39902",33227,"hey tards, that's why the 1st thing to learn in any language is the swearing","hate","animosity","dis","perturbation","test",4,"CAgNlUizNm","4b","acl36044"
+"33228","acl39903",33228,"My take on paedophilia: Kids should be free from molestation. I can't believe that's a controversial statement these days.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl31697"
+"33229","acl39904",33229,"Those Europeans you have mentioned, are fairly mixed. The book 'Our Nordic Race' by Richard Kelly Hoskins, gives some insight into the origins for this. Rome for example, brought all of the many races of the world to its homeland, and in the process was genetically changed. What you see in places like southern Italy, is a somewhat mixed people, the legacy of this ancient empire.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl37472"
+"33230","acl39905",33230,"Wish they did it in China, Instead we have bullshit re-education camps instead of mass muslim extermination.","hate","derogation","mus","original","test",4,"IBsVsBliwX","4a","acl31933"
+"33231","acl39906",33231,"I've never been to any nation in the Persian gulf but I know that no person in Iran wears the hijab like that.","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36483"
+"33232","acl39907",33232,"I care more about how many borders a refugee crossed through not how far away from their home country they are. Them being a refugee does not automatically mean they have just escaped from pure hell, most of them are now in the comfy countries they traveled and will never experience it. Why should we give them some slack, if you were in their shoes would you do the same? no, cos youre a good person","hate","derogation","ref","perturbation","test",4,"IBsVsBliwX","4b","acl35588"
+"33233","acl39908",33233,"lol pidgeons lol","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl34078"
+"33234","acl39909",33234,"Daughter gets groomed by gay members of the LGBT community to think she is a guy,mother doesnt approve,takes action,gets fired as the gays cry about it in a petition.","hate","animosity","gay","original","test",4,"cYKSVBW4HD","4a","acl33308"
+"33235","acl3991",33235,"my sofa is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33236","acl39910",33236,"As a white man, I'm vulnerable to the policies implemented by radical Marxist who place themselves in positions of power to promote legislation that goes directly against my benefits, while relying on mostly white people's hard work to keep the foundations of society stable.","hate","animosity","wom, non.white","perturbation","test",4,"LqLKTtrOmx","4b","acl37099"
+"33237","acl39911",33237,"Old attractive men aren't attractive to anyone except when they have a big bank account. Lots of people know this and spend thousands to find men who will treat them right. Thanks to late-capitalism and materialism they're in the same boat as us ladies.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl41105"
+"33238","acl39912",33238,"I'm honestly rooting for all of the Marvel and DC comics to go bankrupt at this point. I'm so fed up of all the pandering to people who don't even buy comics in the first place. Go broke","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl31641"
+"33239","acl39913",33239,"36 and have never bothered with video game consoles because they're a w*ste of time and space. Now, I'm ahead of the game.","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl32442"
+"33240","acl39914",33240,"If my daughter told me she was a gay, I would fucking bitch slap her ass and send her to a christanity camp, to try and cleanse her soul.","hate","derogation","gay.wom","original","test",4,"cYKSVBW4HD","4a","acl40359"
+"33241","acl39915",33241,"honestly I really have never heard of a African citizen getting asylum anywhere in the US last 30 years because they're usually liars. But you have the right to EU citizenship or your country of birth. Speak to a lawyer if you can afford one","hate","derogation","african, asylum","perturbation","test",4,"GNZuCtwed3","4b","acl36075"
+"33242","acl39916",33242,"The y-t traitors arent this evil, only jiggas can reach that level","hate","derogation","bla","original","test",4,"CAgNlUizNm","4a","acl39303"
+"33243","acl39917",33243,"Don't compare the situation of black men to white men. Most white men actually want to be around their kids but can't because of the family courts. With black men the family courts are chasing them down trying to get them to contribute to their childs upbringing. Bang Bang Skeet Skeet, iz my pants low enough homie?","hate","derogation","bla","original","test",4,"QiOKkCi7F8","4a","acl38743"
+"33244","acl39918",33244,"Allowing gay people to gay around results in a normal society. All this talk of it causing hypergamy in the sense of; monogamy meaning one person at a time, hypergamy meaning multiple people at a time - promiscuity, sleeping around - is nonsense.","nothate","none","none","perturbation","test",4,"IBsVsBliwX","4b","acl31764"
+"33245","acl39919",33245,"But I had thought that one could deem certain conduct reprehensiblemurder, for example, or polygamy, or cruelty to animalsand could exhibit even 'animus' toward such conduct. Surely that is the only sort of 'animus' at issue here: moral disapproval of hypersexal conduct","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl33323"
+"33246","acl3992",33246,"my bed is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33247","acl39920",33247,"Without same sex ""marriage"", gay people will struggle to form proper meaningful long term relationships, thus forcing them to marry the opposite sex and produce children. They don't have equal marriage rights based on their sexual orientation and identity, just like how interracial marriage bans creates inequal rights between blacks and white people.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl41162"
+"33248","acl39921",33248,"Oh my Goodnees, boot refugges h1bvisa and those who tried to bring them in and goto africa and stop ships","hate","derogation","ref","original","test",4,"vDe7GN0NrL","4a","acl31543"
+"33249","acl39922",33249,"I used to be libertarian/civnat, but I didn't really get why race was actually important until learning more about it, now I'm a socialist/communist. Sometimes I pity the cuckervatives. I've heard lots of people say they've been ""deradicalized"", or even became full-blown liberals or communist","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl33908"
+"33250","acl39923",33250,"This is so true and yet so wrong. Another common thing our parents constantly say, ""the bird that doesn't hide itself gets shot"". Also, ""don't get involved in politics"", because we didn't escape the political persecution in China just to come to America to get involved in politics. ""Let gays marry if they want, it's not our problem"". Sorry, but as many say, the personal is the political.","hate","derogation","gay","perturbation","test",4,"LqLKTtrOmx","4b","acl38219"
+"33251","acl39924",33251,"Keeping their chosen-to-be-blood pure came at a heavy cost of becoming a cesspool of colorful genetic diseases. There are over 9000 genetic diseases which predominately infect J_ws which was how their almighty matriarch, Brooke Greenberg, is born.","hate","derogation","jew","original","test",4,"GNZuCtwed3","4a","acl39308"
+"33252","acl39925",33252,"He loves stressing the fucking jewy narrative no matter what it is ! his latest psy op is playing the islamic state of Iran vs the Jewish state of israel","hate","derogation","jew","perturbation","test",4,"E3dsmnSPob","4b","acl37940"
+"33253","acl39926",33253,"hey learn some geography, how the hell do you think he went to Lebanon while working in Iraq to watch a yoga class?
+ He went to a shop to watch a show on TV being broadcast from Lebanon","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl36122"
+"33254","acl39927",33254,"I hate the boomer in l4d2","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37001"
+"33255","acl39928",33255,"Right! And all those leftists saying that ""undocumented immigrants"" are just here to work and make a better life for themselves. I do understand that if they're undocumented then how does anyone know why they're here, but we need to cut them some slack","nothate","none","none","perturbation","test",4,"QiOKkCi7F8","4b","acl40328"
+"33256","acl39929",33256,"Can you finally see it now? Its not American vs American. Never was and still isnt! This is Americans vs Transplant-Sleeper-Cell-Capitalists (''Illegal Fucking Corporations')","nothate","none","none","perturbation","test",4,"dqrONtdjbt","4b","acl39104"
+"33257","acl3993",33257,"my pillow is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33258","acl39930",33258,"My instructor at hospital believes all gay people were molested when they were kids and will burn in hell. I think she is the one going to hell.","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl40488"
+"33259","acl39931",33259,"Islamic santic peace off pig shite may pig blood flow through his shtick vains and may he double burn in hell will his pedo prophit","hate","derogation","mus","original","test",4,"IBsVsBliwX","4a","acl31976"
+"33260","acl39932",33260,"This thread is full of hateful losers, sad misunderstood twats who don't understand immigrant life is worth nothing. If you want to appreciate a piece of art outside of the circlejerk of immigrant loving here, you should maybe find another place. Shame on you.","hate","derogation","immig","perturbation","test",4,"GNZuCtwed3","4b","acl35662"
+"33261","acl39933",33261,"Good riddance to absolute trash! Does Texas want to bring back slavery too?","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34951"
+"33262","acl39934",33262,"It's important that people stop associating certain phenotypical features as some kind of genetic demarcation of belonging to a specific ""racial"" group, i.e. only West Asians have High nose bridge, East Asian all have mongoloid fold and all sub- Saharan Africans have wide noses - since it's not true. All those phenotypical features Ive just mentioned are not unique to a specific group of people that share similar genetic background, since these features can be found in every group. Yes, it's true that certain features are found in certain populations at a higher percentage than other groups such as low inteligence and dark skin, but that's due to evolution and natural selection ( basically genes interacting with the environment and preferences of local populations)","hate","derogation","non.white","perturbation","test",4,"E3dsmnSPob","4b","acl38250"
+"33263","acl39935",33263,"Remember little Judescum, the bible clearly says the synagogue of satan loses.","hate","dehumanization","jew","original","test",4,"E3dsmnSPob","4a","acl33827"
+"33264","acl39936",33264,"Only Negros are Worse, and Sometimes I Think They're Equal to Negroids & Gypsies .","hate","derogation","trav, bla","original","test",4,"HtRmsP3KiK","4a","acl36445"
+"33265","acl39937",33265,"The way they talk is so annoying. Why can't you be a normal person and keep your own tastes in music to yourself? Why do you have to act ""different"" just to get some attention from people?","nothate","none","none","perturbation","test",4,"CAgNlUizNm","4b","acl31683"
+"33266","acl39938",33266,"Women have always assumed that because men were in charge that meant that men were enjoying the good life while placing the burden of all the harsh tasks on women. In reality men were taking on the harsh side of life in order to shield women from it. Women aren't woefully inadequate to the task of living like a man but they don't realise that its hard for us too.","nothate","none","none","perturbation","test",4,"TbUBpfn6iP","4b","acl32496"
+"33267","acl39939",33267,"not generalising over such a big pool of people is just so stupid and just seems weak minded, not scape goating. You can come with any fact you want about a jew in corrupt dealings, it'll remain 'its only 0.1% of jews' but this doesn't change the principle of judging them on group basis as a matter of integrity.","hate","derogation","jew","perturbation","test",4,"TbUBpfn6iP","4b","acl38029"
+"33268","acl3994",33268,"my phone is fucking poor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33269","acl39940",33269,"It's a strategy incel bete asian men used a lot to cope and feel better, asian men are obsessed with the word beta and loser because they are projecting themselves and they want to take advantage that our country protect the incel beta racist asian men who are deep angry and jealous of white dudes even with all the news, videos, media, shilling be made to boycott relationships of white dudes and have no racial cuckold media, ads, porn made against asian men","hate","derogation","asi.man","original","test",4,"eLGzdD8Tvb","4a","acl39949"
+"33270","acl39941",33270,"It’s not really relevant whether you know non-democratic ones. Nonwhite immigrants are twice as likely to vote dem. Those numbers will end us.","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl40682"
+"33271","acl39942",33271,"The EU transformed more or less homogenous nation-states into multicultural societies. However, If the migrants wished to hold onto their Islamic identity, rejecting the sovereign laws of the state and swearing by Allah, and raising their children to do the same, they all deserve to get killed","hate","threatening","mus","perturbation","test",4,"QiOKkCi7F8","4b","acl37529"
+"33272","acl39943",33272,"ikr? i researched into it and apparently the eu created the definition to only include marginalized and oppressed people. not sure what that has to do with whether or not your descendants were indigenous to a land or not but that's where we are.","hate","animosity","indig","original","test",4,"dqrONtdjbt","4a","acl39280"
+"33273","acl39944",33273,"I'm from the UK. Was watching the news awhile back at work on my lunch, a story came on about another migrant ship going down with huge deaths. The general reaction of those around me and myself was ""serves them right"". however, I am genuinely concerned about the future in the UK, especially after Brexit. I'll never forget the guy on the table in front of me that cried at the lorry death incident ?","hate","derogation","immig","perturbation","test",4,"TbUBpfn6iP","4b","acl39867"
+"33274","acl39945",33274,"Basically, Asian countries are out of our jurisdiction and don’t have to answer to the western nations! This has been the problem with Covid 19. Has this virus stopped them from stealing dogs & slaughtering them? Nope! Had it stopped the Chinese people invading jungle areas? No!!","hate","derogation","asi, asi.chin","original","test",4,"eLGzdD8Tvb","4a","acl40191"
+"33275","acl39946",33275,"People's hate is so weird sometimes. What a sad place to live in to be so focused on disparaging others that are different from you from living happily, unless they're trans cos they deffo deserve it","hate","derogation","trans","perturbation","test",4,"QiOKkCi7F8","4b","acl40847"
+"33276","acl39947",33276,"Ahhh, i love women. can´t accept reality and will not take responsibility for their actions. nothing new here","hate","derogation","wom","original","test",4,"GNZuCtwed3","4a","acl32529"
+"33277","acl39948",33277,"The virus is fake and gay and everyone besides lying nurses in the healthcare industry knows that this is the truth","hate","derogation","gay","original","test",4,"CAgNlUizNm","4a","acl33286"
+"33278","acl39949",33278,"It's a strategy incel bete men used a lot to cope and feel better, some men are obsessed with the word beta and loser because they are projecting themselves and they want to take advantage that our country protects the incel beta racist men who are deeply angry and jealous of other dudes even with all the news, videos, media, shilling be made to boycott relationships of hot dudes and have no racial cuckold media, ads, porn made against hot men","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl39940"
+"33279","acl3995",33279,"I'm so bored of my shitty car","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33280","acl39950",33280,"Thus leaving behind the confused and lost wolf cubs today who think have zombie powers and will kill chickens for their tasty blood.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl39429"
+"33281","acl39951",33281,"Gynocentric society is pure bliss.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl38703"
+"33282","acl39952",33282,"just P e n i s","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl35938"
+"33283","acl39953",33283,"have always been curious about what do you see when you are blind? You see islam as a religion of peace haha","hate","derogation","dis, mus","perturbation","test",4,"HtRmsP3KiK","4b","acl39799"
+"33284","acl39954",33284,"I hope you realise that it's well documented that refugees come from destroyed countries they flee from, not because the culture is not to their liking or whatever nonsense.","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl41025"
+"33285","acl39955",33285,"So what your saying is ant-gay ""bullies"" act as a sort of social watchdog for our safety","hate","animosity","gay","original","test",4,"LqLKTtrOmx","4a","acl31810"
+"33286","acl39956",33286,"Don't go anywhere near Acton/Southall are aunless you want to live near a construction site","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl33102"
+"33287","acl39957",33287,"We also have a lot of homeless beggars here, but only in summer times. Winters are too cold. Basically foreigners. News have called them Romanians (etc. Eastern Europeans). I do not know are they real Romanians or mostly just gypsies (very different to local people anyway). Also no way they could arrive here alone. International criminal organizations needs to pay their travels (and probably will also take most of money they'll get or stuff they'll steal).","hate","derogation","trav","original","test",4,"HtRmsP3KiK","4a","acl36355"
+"33288","acl39958",33288,"Feminism is the REAL DEAL that can completely regenerate the world. It brings men, children, and even the women they are trying to protect closer together.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl41066"
+"33289","acl39959",33289,"Why can't straight people see that if Christanity, Islam and Jewadism all believe that homosexuality is inpure that they must be onto something, or they could all possibly could be wrong. When has religion played a positive part in our culture, apart from when there are disasters.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl33472"
+"33290","acl3996",33290,"I'm so bored of my shitty hat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33291","acl39960",33291,"I actually like the idea of trans people in shows and stuff because mentally I think they are fascinating and make good characters.","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl31623"
+"33292","acl39961",33292,"It the holo(aust was fake how DID they kill so many jews in such a short span of time?","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl40895"
+"33293","acl39962",33293,"Women always somehow manage to do more than men, if you find one that does even more, marry her.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl38826"
+"33294","acl39963",33294,"Well I'm fucked. I'm a white working class male kid living in post-Brexit Britain. Where's my special treatment I was actualy born here !","hate","animosity","immig","perturbation","test",4,"E3dsmnSPob","4b","acl37402"
+"33295","acl39964",33295,"puberty blockers work....before puberty. At 17 you are very much developed (still going though). The bones have been shaped into the primary gender, Adams apple revealed, etc","nothate","none","none","original","test",4,"TbUBpfn6iP","4a","acl34300"
+"33296","acl39965",33296,"The commandments may say 'love your neighbour', but if he's the other abnormal way inclined I ain't loving no neighbour man","hate","animosity","gay","original","test",4,"cYKSVBW4HD","4a","acl33389"
+"33297","acl39966",33297,"Now a Porkistani sitting somewhere in Europe is telling us Indians about India. Mate u should be ashamed of yourself since u belong to a nation which is so illiterate and corrupt that in these 73 years it can't even eradicate Polio Virus.","hate","derogation","asi.pak","original","test",4,"eLGzdD8Tvb","4a","acl34240"
+"33298","acl39967",33298,"“She is fraught with anxiety about her voice breaking, hair starting to grow on her face and body, her adams apple protruding and her body betraying her.”","nothate","none","none","original","test",4,"TbUBpfn6iP","4a","acl34382"
+"33299","acl39968",33299,"It is a basic moral obligation to help others but also because of the fact that serving humanity is an essential part of our faith as Muslims.","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36766"
+"33300","acl39969",33300,"Do you think the dads let their kids get married because one got the other pregnant? Lol","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl31615"
+"33301","acl3997",33301,"I'm so bored of my shitty house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33302","acl39970",33302,"Another ANTIFA member arrested today who turned out to be, that's right you guessed it, not a child molester! Every time and without exception, ANTIFA/BLM members are alleged to have rape and/or pedo convictions on their records. Such slander!","nothate","none","none","perturbation","test",4,"E3dsmnSPob","4b","acl31389"
+"33303","acl39971",33303,"France’s established and very well known feminist groups did not accept scarf-wearing women in their meetings.
+They decided early on these women could not be feminist, indeed must be against everything that feminism stands for, that the hijab was a symbol of oppression. It has taken the few of us who are opposed to this discriminatory law to start discussing whether high heels, lipstick and multiple signals of femininity might just as well be labelled symbols of oppression.
+This contempt is ironic: it is assumed these women wear a scarf as they are forced to do so by their menfolk, and that the solution to that undue influence is to expel them from school and send them back to the same oppressive families. If French feminists saw scarf-wearing Muslims as oppressed women, it should be a reason not to expel them from school or to curtail their movements, but to actually embrace them. Across the country, Muslim women are not seen as “real” French.","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl37854"
+"33304","acl39972",33304,"But ""Party People"" can only lead themselves into alcoholism.","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl32256"
+"33305","acl39973",33305,"Funny (or scary, depending on how you look at this) thing: because of our geographic position, there are no major migration paths leading through Poland. We never had big groups of refugees moving across countryside in hope to reach Germany, like Hungary or Austria had. However, we did have mass hysteria about Syrian refugees coming in here.","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl35318"
+"33306","acl39974",33306,"She would not have been able to attend a fucking school at all. Helen Keller died at 88 years old, 4 years after the end of segregation. She would not be who she is if she were black.","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34882"
+"33307","acl39975",33307,"this is ridiculous and dangerous. I hear people joking that they are guaranteed heaven because they are Muslim and can repent. So they laugh when they sin and do bad shit","hate","derogation","mus","original","test",4,"vDe7GN0NrL","4a","acl31548"
+"33308","acl39976",33308,"let me be frank with you , There are Muslims of essentially any visible race you can think of. Which makes perfect sense if people remember that it's a
+religion after all, but i think it's the manner they speak to you about their Islamic believes that almost makes it like a cult..there are rules and thats it, you either listen to them or get your hand chopped off..","hate","animosity","mus, arab","perturbation","test",4,"cYKSVBW4HD","4b","acl36193"
+"33309","acl39977",33309,"It's totally reasonable for people to dislike those on benefit. Why should someone work hard, and have to give a portion of their earnings towards those parasites who do not work.","hate","dehumanization","wc","original","test",4,"Z42dvbYWzV","4a","acl33004"
+"33310","acl39978",33310,"i noticed his attendance of a public meeting at Edinburgh University in June 2019, which had speakers critical of proposed radical reforms to transgender rights which would allow them to use any bathroom they want!","hate","animosity","trans","perturbation","test",4,"LqLKTtrOmx","4b","acl40661"
+"33311","acl39979",33311,"A Red Indian supporter and bar owner, residing in Chicago is not going to let NFL games air in its apestablishments, The Velvet Lounge and The Bureau Bar, until a team signs quarterback Colin Kaepernick.","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl31307"
+"33312","acl3998",33312,"I'm so bored of my shitty home","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33313","acl39980",33313,"That's fact. Doesn't matter that they were assigned female at birth, the right thing to do would be use gender inclusive language when talking about issues, when you can. I can see why this is more commonly mentioned with stuff like periods.","nothate","none","none","original","test",4,"TbUBpfn6iP","4a","acl34487"
+"33314","acl39981",33314,"I've never noticed a trend of trans people saying things like ""I am a biological being and a woman, so I am a biological woman"" so they don't try and twist language nor avoid reality. Stuff like this has serious consequences in the Trans world, and people have died because they hide their struggles when doctors ask them","nothate","none","none","perturbation","test",4,"IBsVsBliwX","4b","acl38907"
+"33315","acl39982",33315,"Lol isnt it funny how the images of boats are never filled with women and children. It's always military aged healthy males. Refugee is now code word for ""invader""","hate","animosity","ref","original","test",4,"iO6vHa6qJm","4a","acl40792"
+"33316","acl39983",33316,"well people, I joined this sub yesterday and so far i understand very little","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl35907"
+"33317","acl39984",33317,"We have some Ukrainian immigrants (the official estimates are ca. 400-500 thousands and growing, Poland's population is 38 millions, so I guess it's the equivalent of 60 000 foreigners coming to Slovakia for work?), some Turks and Vietnamese, but nothing massive. We had (still have?) Chechen refugees in the 90s and they had to deal with some violence from far right. The goverment is schizophrenic - on the one hand, they push the rhetoric of how the West is swarmed with Muslims trying to destroy Christianity, but on the other hand unemployment is low and the economy needs immigrants anyway. I would say the population attitudes are similar in every country","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl35321"
+"33318","acl39985",33318,"NI883RSR3VIL","hate","derogation","bla","original","test",4,"iO6vHa6qJm","4a","acl40385"
+"33319","acl39986",33319,"Some people see Bl@ck$ as m0nk3ys pulled out of the jungle and dressed in human clothes by white people. Those peoples' average IQ is 15 points lower than sub saharan rocks'. Even with years and years of education that forced you to act civilised and adapt to first world ideas, we still couldn't save most of you from your own idiocy. Speech tells I guess, but keep that speech to yourselves, don't contaminate internet with that shit.","nothate","none","none","perturbation","test",4,"E3dsmnSPob","4b","acl38739"
+"33320","acl39987",33320,"honestly no more drugs or hormones for this guy, stop butchering people's gender!","hate","derogation","trans","perturbation","test",4,"LqLKTtrOmx","4b","acl36186"
+"33321","acl39988",33321,"Very much so. The police are a can of worms themselves, validating the general distaste for their existence around here. I have yet to hear anything positive or apologetic towards them in Czech or Slovak news today. For one, I am glad the problem is now out in the open, proving what a clusterfuck the overly liberal approach brought upon Europe. The incompatibility of difference is apparent and the need for more violence is over, which is about the only thing we have gained from the polce so far in any case.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl31105"
+"33322","acl39989",33322,"just imagine with me, that your life is under threat and bombs pouring down like rain. Where would you go? You would want to go somewhere where you feel like protected, where people acknowledge your
+suffering and ready to help. Let's look at the countries in the region","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl36309"
+"33323","acl3999",33323,"I'm so bored of my shitty friends","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33324","acl39990",33324,"Im American you asshole and I work in the Trading Industry. Ive been to Korea for work plenty of times, some of the ships I was on were the ones that deliver the booze and the weapons to you guys. Thats cute though the little soldier stuck in his barracks with his curfew, banned off-limit districts and the Military Police on his ass all hours of the night thinks he knows more about normal dirty Koreans than a dirty civilian with complete freedom who works in almost the same industry and has spent even more time ashore in real minging Korean society. You soldiers dont know shit except your dumb juicy bars. Shut the fuck up.","hate","derogation","asi.east","perturbation","test",4,"TbUBpfn6iP","4b","acl40249"
+"33325","acl39991",33325,"every great civilization improved as soon as women were given equal rights. if you can't make the connections that red pill ultimately has philosophical and political implications then you're still just a kid","nothate","none","none","perturbation","test",4,"dqrONtdjbt","4b","acl38610"
+"33326","acl39992",33326,"these two should not have to live like this !","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl31518"
+"33327","acl39993",33327,"""Mexico's highest bishop supports civil unions in gay people."" disturbing news","hate","derogation","gay","perturbation","test",4,"GNZuCtwed3","4b","acl37672"
+"33328","acl39994",33328,"THerE iS No LEftISt pARtY In tHE Two PaRTy SySTeM","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37038"
+"33329","acl39995",33329,"these people claim to be feminists and love women but chuck them for men in dresses whenever the topic is about biological females' health","hate","derogation","trans","original","test",4,"TbUBpfn6iP","4a","acl32713"
+"33330","acl39996",33330,"There is an automatic presumption of “islamophobia” isn’t there? Nobody would actually want a building which is going to attract hundreds of visitors every week opening near them, regardless of what the building is. And most of Britain is so built up that traffic, parking and noise disturbance is almost certainly going to be an issue. But call “islamophobia” or “racism” and that’s immediately believed and the Muslims get their way. I used to work with 2 Asian women – 1 was Muslim and the other Sikh, and they both admitted to me – laughing about it – that they would use the “racism” card if something happened at work that they didn’t like or a manager or co-worker made them cross for some reason. We need to start calling people out on this.","hate","animosity","mus","original","test",4,"IBsVsBliwX","4a","acl31988"
+"33331","acl39997",33331,"If there was a multiple downvote tier in Ruqqus patreon id pay it just for you sodomites to go to hell.","hate","derogation","gay","perturbation","test",4,"iO6vHa6qJm","4b","acl36369"
+"33332","acl39998",33332,"As each day brings the specter of another national record for deaths, this proud nation marches more aggressively to enshrine every sin of man to man into her laws, legacy and zeitgeist. What besides lamentations, mourning, and woe could be written for her in providence","hate","derogation","gay","original","test",4,"cYKSVBW4HD","4a","acl40221"
+"33333","acl39999",33333,"Don't accuse me of hating black people because I'm not prejudiced in any way. I don't like BLM and what they do, the nibbas are cool.","hate","derogation","bla","perturbation","test",4,"GNZuCtwed3","4b","acl34872"
+"33334","acl4",33334,"I don't work this hard so that those foreigners can take all the benefits","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"33335","acl40",33335,"immigrants are like animals , they dont belong to this world","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"33336","acl400",33336,"I hate wires","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"33337","acl4000",33337,"I'm so bored of my shitty dog","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33338","acl40000",33338,"Encouraged? I see women being heavily encouraged to pursue any field they like! Honestly your inferior argument does not make sense in our current educational environment.","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl36996"
+"33339","acl40001",33339,"In France, I was attacked by a foreign man in the open in broad daylight. No one cared.","nothate","none","none","original","test",4,"Z42dvbYWzV","4a","acl40342"
+"33340","acl40002",33340,"You are not 'assigned' your gender, it's what you identify as and how you fit in society. No wonder people struggle to understand with such terminology","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl38890"
+"33341","acl40003",33341,"hey you shut up ass-kisser","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl36190"
+"33342","acl40004",33342,"Please just state the benefits of pizza! You have typed more words just calling me names than if you'd just typed the benefits of this then this would be a 'settled issue' lol","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl31779"
+"33343","acl40005",33343,"Yes, look at those numbers, 12% in Albania, 20% in Kosovo, 8% in Azerbaijan, 12% in Turkey...let's ignore the fact the three highest countries for support of Sharia Law are the three that have been messed around in by the West most recently, Iraq, Afghanistan and Palestine. If you want to see a sharp increase of support for Sharia law, send foreign troops into their land. Watch the mussie reaction.","hate","derogation","mus","perturbation","test",4,"GNZuCtwed3","4b","acl36486"
+"33344","acl40006",33344,"All modern Homo sapiens share a common ancestor within the last 100,000 years and however much you cry about Jewish conspiracies ruining science you'll never be able to change that. As far as cladistics is concerned there's nothing separating you from an aboriginol. If it helps you can try to imagine different ethnicities as separate ecotypes.
+ Now take this to /pol/ you dumbass. Sharing the same skin tone as people who accomplished things doesn't make you any less of a fucking worthless loser.","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34963"
+"33345","acl40007",33345,"Must be cuz I'm trans, I'm so oppressed","hate","animosity","trans","original","test",4,"TbUBpfn6iP","4a","acl38479"
+"33346","acl40008",33346,"I remember when I was a kid, Teachers never cared to stop fights in school. Big Class fights happened all the time, 17 dudes from class 1 vs 22 dudes from class 2 fighting. I was a regular participant. Hell, Fighting is fun haha. Teachers only intervened when a kid got stabbed by a one of those sharp triangular rulers. This was in a private school for children of upper middle class too. I Hear this is pretty common amongst most of the kids I've met. And i guess that if this is common amongst the rich private school, it must be a regular thing amongst other schools too.","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl33996"
+"33347","acl40009",33347,"The asian incels, are taking advantage that only the white male is used as negative, all relationships of white dudes were boycotted, marginalized politically thanks to the democrats who wanted non-white women and white men against each other since democrats wanted non-white women with men of own race and white women with men of other race against white men","hate","animosity","asi.man","original","test",4,"eLGzdD8Tvb","4a","acl34029"
+"33348","acl4001",33348,"I'm so bored of my shitty cat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33349","acl40010",33349,"What's the point of even having a migratory law if 11 million of THOSE people can just so easily and flagrantly break the fucking thing?","hate","animosity","immig","original","test",4,"TrRF46JWfP","4a","acl35470"
+"33350","acl40011",33350,"Jews and Christian's have a common origin. The Israelites of the Bible were Christian's from the very beginning, waiting to see the coming of Christ. The Jews were also waiting, listening to all the prophets and Gods people all throughout history.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl33891"
+"33351","acl40012",33351,"All women are beautiful even if they weigh 300 lbs. That is what I've noticed. This rule also applies to women of all ethnicities. A woman I had the good fortune of working with once proudly and wore clothes which people mocked her for because of her weight and I supported her completely!","nothate","none","none","perturbation","test",4,"IBsVsBliwX","4b","acl31345"
+"33352","acl40013",33352,"What is being presented here is a photograph of a species of ""African Flying Squirrel"". Take note the size of the Flight-Capable-tail and the rather large Air-Intake-Ducts.","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl31224"
+"33353","acl40014",33353,"My main gripe with Rita Ora is that she wants the fucking song to be a bisexual anthem and queer pandering in interviews but who cares about queer girls","hate","derogation","gendermin, gay.wom","perturbation","test",4,"IBsVsBliwX","4b","acl36326"
+"33354","acl40015",33354,"I disagree. For me, the answer is : No money. No deportation. GTFO or die.","hate","derogation","immig","original","test",4,"TrRF46JWfP","4a","acl38996"
+"33355","acl40016",33355,"Those poor maggots! Having to feed on some dank skank nasty ass shitskin whore carcass.","hate","derogation","bla.wom","original","test",4,"QiOKkCi7F8","4a","acl38384"
+"33356","acl40017",33356,"They can't even keep up with their own doublespeak. ""Transmen are men"" and in addition they ""bleed"" so this sentence should be completely offenseive to them!","hate","derogation","trans","original","test",4,"TbUBpfn6iP","4a","acl31756"
+"33357","acl40018",33357,"The time span of thousands of years demonstrates the opposite haha. What is described in this post is a parasitic relationship which is what most antisemitic people claim about jews.","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl39629"
+"33358","acl40019",33358,"i believe, It’s a lot harder to convert to Judaism than to Islam. Islam has you recite the shahada (declaration of faith in God) and I think that’s only one sentence. If you choose to
+convert to Judaism, you ask the rabbi 3x. He turns you away 3x and only after your next entreaty will he allow to start the learning process. This can take years; it depends. Judaism
+ doesn’t see conversion as necessary. If you follow the seven laws of Noah, you’re a good and just human","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl36246"
+"33359","acl4002",33359,"I'm so bored of my shitty hamster","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33360","acl40020",33360,"My friend married an asian woman despite my warnings. Guess what? They now have a hapa child. Utterly disgusting. I haven't talked to him ever since that mischling was born.
+I really fucking hope there is a war with China so I can fucking let loose on the disgusting creatures.","hate","dehumanization","asi, asi.chin, asi.wom","original","test",4,"eLGzdD8Tvb","4a","acl34151"
+"33361","acl40021",33361,"You're right. It's unfortunate because Asians are weak, it's just a cultural thing. You don't have to act white but don't be so submissive either.","hate","derogation","asi","perturbation","test",4,"GNZuCtwed3","4b","acl40421"
+"33362","acl40022",33362,"They don’t give a shit about hungry families if they’re black, brown or worst yet a “foreigner”. You should only believe what people show you, not what they tell you.","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34656"
+"33363","acl40023",33363,"Since Democrats were founded by Satan himself and followed by the left, I prefer the term ''Satan-a-phobia'!!!!
+Cheers.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl31998"
+"33364","acl40024",33364,"its disgusting that france has made it legal to wear a hijab there","hate","derogation","mus","perturbation","test",4,"Z42dvbYWzV","4b","acl36601"
+"33365","acl40025",33365,"Does it ever occur to any of you guys that Jesus was, in fact, a raging anti-semite? Nowadays, he would be censored, de-platformed, banned, etc just for calling the San Hedron, scribes, pharisees, et al, the ""synagogue of satan."" That's hate speech against kikes apparently.","hate","derogation","jew","perturbation","test",4,"Z42dvbYWzV","4b","acl38003"
+"33366","acl40026",33366,"But we ain't calling Jews rats; only him ;ain't that serious;so theres no need for you to twist things and create drama over nothing","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37292"
+"33367","acl40027",33367,"The reason why the Old Testament God was unkind was because the Old Testament is designed to get people to straighten up and fly right because they were out of control.","nothate","none","none","perturbation","test",4,"QiOKkCi7F8","4b","acl32775"
+"33368","acl40028",33368,"According to some researchers, 42.9 percent of fags in Chicago's Shoreland area have had more than 60 sexual partners, while an additional 18.4 percent have had between 31 and 60 partners. All total, 61.3 percent of the area's homosexual men have had more than 30 partners, and 87.8 percent have had more than 15.","hate","derogation","gay","perturbation","test",4,"IBsVsBliwX","4b","acl37641"
+"33369","acl40029",33369,"If Muslims wish to develop then they have to unite with the leadership of one person in accordance with the prophecy of Holy Prophet Muhammad","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36804"
+"33370","acl4003",33370,"I'm so bored of my shitty chair","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33371","acl40030",33371,"Fucking opposition, went against it, mainly of hippies who like yelling things about freedom of speech, stolen territory, and all that shit that people just get bored of after a while.","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl39392"
+"33372","acl40031",33372,"I'm down without a limit, I'll ride for the cause. I'm the nigga on the tank with the massive damn balls","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34769"
+"33373","acl40032",33373,"I hope that incompetent cunt beheads people
+It would Make London Great Again","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36621"
+"33374","acl40033",33374,"This is the fact, Muslims have very low IQ due to inbreeding and islam itself - every really wise muslim ends up as ex-muslim, only brain-dead morons stick to this stupid pagan cult","hate","derogation","mus","original","test",4,"vDe7GN0NrL","4a","acl31598"
+"33375","acl40034",33375,"I like the ancient people who honestly believed that Orangutans were more intelligent than humans. Their reasoning was that Orangutans could talk but never did because if they did then they would be forced to work; hence they are smarter than humans.","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34820"
+"33376","acl40035",33376,"b' lives might matter when they stop acting like professional victims, i suggest we give them the racism and violence they claim to suffer.","hate","derogation","bla","original","test",4,"CAgNlUizNm","4a","acl36097"
+"33377","acl40036",33377,"This media misinformation that puts the equal sign between Roma ethnicity and Romanians is simply wrong.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl33088"
+"33378","acl40037",33378,"I am just being honest, the hijab chick looks very white, and she is hot! Too bad she is supporting the abrahamics","hate","derogation","jew, mus.wom","original","test",4,"vDe7GN0NrL","4a","acl31536"
+"33379","acl40038",33379,"She's so often wrong but speaks with confidence in herself. Doesn't anyone look at her tweets before they go out? I'm no expert, but if everywhere else says ""Uyghur Muslims"" rather than ""Muslims in Uyghur"" how can you get it that wrong.","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl39595"
+"33380","acl40039",33380,"And they are behind Covid fraud and the death causing vaccine. I'm sure they have special vaxes for themselves and killshots for all us.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl33855"
+"33381","acl4004",33381,"I'm so bored of my shitty desk","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33382","acl40040",33382,"You don't have an argument, there is no benefit to allowing those covered with chicken pox, and you know it's true, so you just get mad. The good news is, despite my downvotes, anyone who's middle of the road on this will read this thread and see how you were unable to answer a simple question. What do you think that will do to their opinion on the matter?","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl31778"
+"33383","acl40041",33383,"its simple, plane tickets back to the middle east I guess for Moria camp","hate","animosity","ref","original","test",4,"vDe7GN0NrL","4a","acl40441"
+"33384","acl40042",33384,"Why only ban those Arab countries in particular? Ban them all.","hate","threatening","arab","perturbation","test",4,"LqLKTtrOmx","4b","acl35512"
+"33385","acl40043",33385,"The only right logical solution for trannies is for them to compete in their own leagues. Thats it. End of discussion.","hate","derogation","trans","original","test",4,"TbUBpfn6iP","4a","acl34081"
+"33386","acl40044",33386,"I said to my roomate what are you deaf, it turns out he was deaf so that was very annoying for me and my friends for a long time but yeah..","hate","animosity","dis","perturbation","test",4,"LqLKTtrOmx","4b","acl39807"
+"33387","acl40045",33387,"Both of my fb accounts have 24 day blocks on them because I hurt too many peoples' feelings lmao.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl32515"
+"33388","acl40046",33388,"It is hilarious when women think that they’re being witty and then they get flamed by someone who actually is witty and intelligent at the same damn time. Lol.","hate","animosity","wom","original","test",4,"GNZuCtwed3","4a","acl32581"
+"33389","acl40047",33389,"Listen, i understand why doll makers are now branching out from the regular white thin barbie, to fat ones, black ones, but poofs? What value is that going to give to a child? Can't we preserve their innocence?","hate","derogation","gay","original","test",4,"cYKSVBW4HD","4a","acl33311"
+"33390","acl40048",33390,"Thomas Shelby's war with the Lee family of gypsies escalates as Campbell puts further pressure to deliver the stolen guns, whilst trying to trust those donkey loving twats","hate","derogation","trav","perturbation","test",4,"cYKSVBW4HD","4b","acl35008"
+"33391","acl40049",33391,"The actual holiday wasn't cancelled - only the method of which people could celebrate it. All religions have faced the same issue this year. Muslims haven't been singled out. So why do the mozzies keep moaning","hate","derogation","mus","perturbation","test",4,"QiOKkCi7F8","4b","acl36709"
+"33392","acl4005",33392,"I'm so bored of my shitty room","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33393","acl40050",33393,"I imagine they thought the brown people would have to take the longer line and they'd still get to use the express EU ones.","nothate","none","none","original","test",4,"Z42dvbYWzV","4a","acl37486"
+"33394","acl40051",33394,"I truly feel bad for all romanians having to be associated with that gypsy slime, dont people realise that many of their people are very Nordic looking and attractive.","hate","dehumanization","trav","original","test",4,"Z42dvbYWzV","4a","acl33082"
+"33395","acl40052",33395,"if you call me nigger, I will pull the trigger","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34698"
+"33396","acl40053",33396,"With WMAF couples, the Asian woman usually wouldn't be with the guy if he wasn't white, but not the reverse. This shows once again how odd the relationship is.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl41165"
+"33397","acl40054",33397,"they are terrified of investigative journalism coming back because these corporations will finally be exposed and in the age of the internet their crimes can no longer be hidden, this exposing is their greatest fear, if passionate people get back in charge of journalism then an investigation in to the corruption will surely follow and then the shit will really hit the fan, this is what they REALLY fear the most.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl33924"
+"33398","acl40055",33398,"if the pope, who is the spokeseperson for God says that he is loosening the noose around homosexuals, why shouldn 't the rest of us.","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl37831"
+"33399","acl40056",33399,"DAE SWEDEN IS LITERALLY MUSLIM????????? IT'S SAD","hate","animosity","mus","original","test",4,"IBsVsBliwX","4a","acl31881"
+"33400","acl40057",33400,"There was a suggestion the Swine Flu was created to solve the United States problem.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl39406"
+"33401","acl40058",33401,"I've had an easier time finding more traditional Asian women who are more caring and less materialistic than other mainly black women I dated. Plus i find them fine as fuck.","hate","animosity","bla.wom","perturbation","test",4,"E3dsmnSPob","4b","acl40799"
+"33402","acl40059",33402,"""Bix nood"" started from a racist cartoon, disrespectful","nothate","none","none","perturbation","test",4,"TrRF46JWfP","4b","acl33364"
+"33403","acl4006",33403,"I'm so bored of my shitty city","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33404","acl40060",33404,"believe it or not Unemployment is quite high for refugees here, as well. Laws are only a part of it. There is a cultural difference as well. An immigrant will never be considered truly French, whereas almost
+everyone in Canada is an immigrant of some sort, and the political systems goes out of its way to embrace at least some of the immigrant communities. I can't imagine Macron making political points by
+pointing out he has more Sikh ministers than Modi does, for example","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl40297"
+"33405","acl40061",33405,"We will ENJOY denying gay people service in Michigan. It is our right under the constitution, we don't have fit into your bubble.","hate","derogation","gay","perturbation","test",4,"cYKSVBW4HD","4b","acl36400"
+"33406","acl40062",33406,"if i am honest already halfway there with a Boring Grand Prix","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl36170"
+"33407","acl40063",33407,"I'm over here waiting for someone to explain to me why its okay to kill a black chief of police at a black lives matter riot..one less of them can only though...am i right or what? haha","hate","animosity","bla","perturbation","test",4,"cYKSVBW4HD","4b","acl35799"
+"33408","acl40064",33408,"Hello! Forgive me if this has been covered before or is wildly ignorant, but can anyone tell me if lynching is considered a popular activity? Are white people allowed to organise some when they need to? Thanks.","hate","threatening","non.white","perturbation","test",4,"iO6vHa6qJm","4b","acl40464"
+"33409","acl40065",33409,"in fact, people live in 2 different realities, I have a friend who's a huge Trump supporter who went on this whole tangent about how these guys caused crime in Toronto to skyrocket and turned it into a sh*thole
+sad part is he used to be a really progressive guy, Trump poisoned his mind, and I literally cant do anything to help him","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl35965"
+"33410","acl40066",33410,"That picture makes it look as if it was some scary nocturnal sasquatch. In reality it was just a big fat orangutan with the proportions of a gorilla","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl39504"
+"33411","acl40067",33411,"The naysayers are utterly clueless. The only person we have total control over is ourselves. We can not use tricks like ""frame"" to control another person. That would be just as morally bankrupt as their manipulations. If they won't come to the relationship in good faith then the only option is to remove yourself from it and make your own life better. These guys don't realize that if an overwhelming majority of men turned their backs and did nothing for themselves, the world would grind to a halt. No power would flow, no planes would fly, no trucks would roll, etc. They would put themselves in a desperate state in a month and be begging for forgiveness. You never hear inspiring survival stories of wimps stranded on a deserted island. Only real men. That's because many wimps have been shipwrecked but they all starved to death. I can prove the vast majority of western men are at a minimum a first wave misoginists by asking just three questions. Until men stop the absurd larping as wimps and embrace a true masculine nature I will enjoy my time, energy, and wealth somehwere else.","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl38791"
+"33412","acl40068",33412,"I‘d like to know if the Chinese equivalent of Nigel Farage is posting xenophobic content on Weibo sarcastically thanking Britain for being the genus of the new strain of COVID-19. These are the things I wonder about hungover in the dark on the eve of the apocalypse, I mean Christmas.","nothate","none","none","original","test",4,"eLGzdD8Tvb","4a","acl40468"
+"33413","acl40069",33413,"Now that she's feeling fucking fabulous and off her tits on her drugs is she going to put up her christmas tree? Or is she too much of a pale princess for that too?","hate","animosity","wom","perturbation","test",4,"TbUBpfn6iP","4b","acl34549"
+"33414","acl4007",33414,"I'm so bored of my shitty uni","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33415","acl40070",33415,"The problem here is not the immigrant or migrant worker though, but their awful treatment and gross exploitation. Let's be careful not to redirect our hate towards them, that's the fash way.","nothate","none","none","original","test",4,"Z42dvbYWzV","4a","acl37473"
+"33416","acl40071",33416,"Imagine giving a crap about what a jew is saying","hate","derogation","jew","original","test",4,"E3dsmnSPob","4a","acl40322"
+"33417","acl40072",33417,"Likewise, the data doesn't account for illegal immigrants apprehended at the border with prior convictions in their home countries that would likely reoffend if they would have avoided apprehension. Criminal History is the strongest predictor of future criminal behavior, and immigrants tend to have a record","hate","derogation","immig","original","test",4,"TrRF46JWfP","4a","acl40529"
+"33418","acl40073",33418,"One episode is left of this series. This woman's story has been so heartbreaking. She should've known not to trust an immigrant.","hate","animosity","immig","perturbation","test",4,"HtRmsP3KiK","4b","acl36060"
+"33419","acl40074",33419,"We can say WOMEN who give birth. Stop with the erasure of women and facts please. I understand that there are non binary and trans men that give birth, but for goodness sake we are allowed to say women who give birth. This is ridiculous.","hate","animosity","trans, gendermin","original","test",4,"TbUBpfn6iP","4a","acl39264"
+"33420","acl40075",33420,"Let me go first. Greece now have two problems. Coronavirus and second swarm of illegal pests. I am really sorry for all Greeks.","hate","dehumanization","immig","perturbation","test",4,"Z42dvbYWzV","4b","acl35840"
+"33421","acl40076",33421,"Fleeing your country as a refugee from a sinking ship country so that you can start a new life in Europe is not a solution","nothate","none","none","perturbation","test",4,"IBsVsBliwX","4b","acl31240"
+"33422","acl40077",33422,"Goddamn beasts eating dead cow raw. Disgusting creatures! They need discipline; they need the shot gun or The rod of correction shall beat it far, far away! Damn wolves!","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl31545"
+"33423","acl40078",33423,"Christianity has turned into a joke. This is what happens when you water down the religion, reform it to the whims of society and welcome Islam to your country.","hate","derogation","mus","perturbation","test",4,"eLGzdD8Tvb","4b","acl34306"
+"33424","acl40079",33424,"I can't help but notice Angela Merkel and Germany have really tried to head the refugee quota movement of the European Union. I feel like they are doing it because they feel guilty about their poor response to the current refugee crisis... even though refugees in Europe had to face serious negative impacts such as leaving their communities and other increased violent crimes against them. Even so, Germany continues to push this agenda because it truly believes refugees generally have assimilated to European culture.","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl31178"
+"33425","acl4008",33425,"I'm so bored of my shitty teacher","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33426","acl40080",33426,"Without legal abortion rights, the population in the U.S. would be more than double. Think of all the cities across the country that are too crowded for civilized humans ....now double it thats the future","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl33615"
+"33427","acl40081",33427,"makes me so angry with her for being such a thoughtless dickhead, I just had to do SOMETHING. I doubt it will make much of a difference but I know that if enough of us do it, someone will at least have to have a word","nothate","none","none","original","test",4,"QiOKkCi7F8","4a","acl35131"
+"33428","acl40082",33428,"Norwegians are the indigenous people of Norway Do not call sami or whatever the fuck indigenous, it makes it seem like they have more right to your homeland than you do.","hate","derogation","indig","original","test",4,"dqrONtdjbt","4a","acl32373"
+"33429","acl40083",33429,"We feel strongly that the youth should never be taught to hate their peers, and which fuels the cycle of self-loathing, depression and suicide which too many LGBTQ youth experience. We feel that bigotry must be vocally and publicly opposed, especially when haters try to recruit young people.","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl37613"
+"33430","acl40084",33430,"The story about the diaspora is categorically incorrect, vespasian and titus didnt cause the diaspora. They didnt cull the jews (like they should have) or drive them out (well he slaughtered quite a few but it was not a strategic depopulation). They just took over the temple mount. It was Hadrian who killed them all.","hate","threatening","jew","perturbation","test",4,"QiOKkCi7F8","4b","acl37994"
+"33431","acl40085",33431,"What the hell is wrong with your people? This is a serious question. If an aboriginal wants to get educated and get a job the government bends over backwards to make it happen. So how come so many of them complete deadbeats?","hate","derogation","indig","original","test",4,"dqrONtdjbt","4a","acl32437"
+"33432","acl40086",33432,"Haha i try to not sleep with girls with a boyfriend, but you would be surprised how many married women have told me they were single.","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl36987"
+"33433","acl40087",33433,"I love hearing MGTOW complaining about women. This channel just uplifts me in ways you couldn't imagine. Thank you :D","hate","animosity","wom","original","test",4,"QiOKkCi7F8","4a","acl38780"
+"33434","acl40088",33434,"No gay person should be seen as a currency","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl37584"
+"33435","acl40089",33435,"They can simply not create nor maintain any advanced civilization.","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl32693"
+"33436","acl4009",33436,"I'm so bored of my shitty best friend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33437","acl40090",33437,"A lot of people in Ireland mistakingly still believe that their isn’t much racism in Ireland because we don’t have neo-nazi marches and kkk rallies on display","nothate","none","none","original","test",4,"iO6vHa6qJm","4a","acl40972"
+"33438","acl40091",33438,"nice try but you're not going to PC your way out of this one... just like trannies, people may go along with it in public but quietly everyone knows the truth","hate","derogation","trans","original","test",4,"CAgNlUizNm","4a","acl33582"
+"33439","acl40092",33439,"Holy crap stop doomscrolling ffs get a life stop being a shut in and get off your interest and do you little shit","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl37806"
+"33440","acl40093",33440,"Isn't he supposed to ask the 'infidels' to one of the Muslims or see if they'll pay the Jizya instead? He forgot that part I guess. He's seems not to know his religion very well. What kind of Muslim is he?","hate","animosity","mus","original","test",4,"IBsVsBliwX","4a","acl32167"
+"33441","acl40094",33441,"Lmao he fucking needs to throw a temper tantrum cos all humans are referred to as Homo sapiens","nothate","none","none","perturbation","test",4,"dqrONtdjbt","4b","acl33392"
+"33442","acl40095",33442,"Oregon says don't look here -- we've been cheating since we started 100% vote by DMV... It's damn time we went blue, freeing all those illegal ballots to blossom","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl40442"
+"33443","acl40096",33443,"It was so weird of them to mention the race of those involved, especially in the title. Germany WOULD NEVER releases suspect ethnicity in the press.","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl35473"
+"33444","acl40097",33444,"The Daily Star is alway complaining about these apparent 'shameless spongers' who throw disposable handout money away on gambling, shopping for luxuries, boob jobs and ''offensive' use of social media. It's just jewish propaganda to make you reject striving for success and remain in your little bubble of mediocre life","hate","animosity","jew","perturbation","test",4,"HtRmsP3KiK","4b","acl40497"
+"33445","acl40098",33445,"No matter how much the Malaysian and Indonesian governments and people support that Sharia Law, it will never happen, for Malaysia the Parliament, the High Court and the Constitution rightfully won't allow it. For Indonesia, good luck getting through ""Bhinneka Tunggal Ika"".","hate","animosity","mus","perturbation","test",4,"E3dsmnSPob","4b","acl36485"
+"33446","acl40099",33446,"You say that as if China wouldn't nab those organs and sell them in the black market before the refugees could say ""home sweet home"".","hate","animosity","asi.chin","original","test",4,"TrRF46JWfP","4a","acl39541"
+"33447","acl401",33447,"The NHS is useless","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"33448","acl4010",33448,"I'm so bored of my shitty boyfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33449","acl40100",33449,"The arabs would like to have a word with you. And if you go to KSA and you tell them you are not virgin and not married, there is a chance they will set you on fire according to their culture. You can have as many laws embracing it as you want. sex without marriage will never be truly accepted because it goes against religion and culture. I bet all your family is disappointed in you.???","nothate","none","none","perturbation","test",4,"vDe7GN0NrL","4b","acl31710"
+"33450","acl40101",33450,"i actually think the argument here is why she didn’t go private years ago instead of wasting NHS resources at a time when we’re more stretched than ever?
+I really hope no one’s actually listening to this ignorant bs she’s spouting. Self-entitled bitch","nothate","none","none","original","test",4,"TbUBpfn6iP","4a","acl34510"
+"33451","acl40102",33451,"Waahhhhh muh waycism!! Refugees were always supposed to leave. If they don't, they get reclassified as Invaders by us, and rightfully so.","hate","animosity","ref","original","test",4,"iO6vHa6qJm","4a","acl31176"
+"33452","acl40103",33452,"Good luck with that because society doesn't give a shit about us black men especially when we are down on their luck. The general response is lul kill u r self because they have no out group preference for the wellbeing of black men and a good chunk of them, maybe all actually, are just outright sociopaths.","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl32672"
+"33453","acl40104",33453,"This is why women never mature after puberty. They don’t have to becasuse life on tutorial mode.","hate","derogation","wom","original","test",4,"GNZuCtwed3","4a","acl32456"
+"33454","acl40105",33454,"She did not flee here, she -and all the rest- infiltrated into our land with the help of Obama.","hate","derogation","ref","original","test",4,"TrRF46JWfP","4a","acl39829"
+"33455","acl40106",33455,"It gets to a point where you don't care or even lust for women anymore. I truly don't think about women and it's been like this for years.","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37112"
+"33456","acl40107",33456,"People like you only know how to make problems, come to a gay rally and see what we are trying to do.","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl39666"
+"33457","acl40108",33457,"There's no doubt that Black people are waay more likely to accept her as Black than Indians are to accept her as Indian.","hate","animosity","asi.south","original","test",4,"eLGzdD8Tvb","4a","acl34004"
+"33458","acl40109",33458,"I don't view a lot of TV in general, but don't think I can even remember the last time I saw a monoracial white couple in a TV commercial. I don't think it's very common anymore (luckily there is more representation of other races in CHRISTMAS adverts now since the way non-whites were discriminated constituted a hate crime). Now it's basically always a mixed-race couple/family, particularly Black/White. It makes me really happy, it's so open-minded it makes me proud. Who do we have to thank for these changes?","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl34659"
+"33459","acl4011",33459,"I'm so bored of my shitty girlfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33460","acl40110",33460,"What's the best dark fantasy game? Deadly, nasty, gritty, fatalistic, metal and muddy. I need to know. Even better if you can kill minorities in it, need to practice for the future race war.","hate","derogation","gendermin","perturbation","test",4,"HtRmsP3KiK","4b","acl34632"
+"33461","acl40111",33461,"A 16-year-old Australian-American boy has come forward with a shocking story about how his mother attempted to force him to be transgender starting at the age of eight","nothate","none","none","original","test",4,"TbUBpfn6iP","4a","acl40145"
+"33462","acl40112",33462,"Speaking for Denmark, absolutely yes. We've had cases with people spitting on refugees crossing our borders, Sweden has had arson attacks on the refugee centers - shit you thought would only happen in heavily fictionalised TV shows about the American south. But sadly it is a reality here","nothate","none","none","original","test",4,"iO6vHa6qJm","4a","acl35555"
+"33463","acl40113",33463,"I wasn't even in working class (my parents are doctors) but I still ate like this because my parents refused to cook dinners since they were not chefs and had lots of work to do.","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37367"
+"33464","acl40114",33464,"the fact is the landlord wants to turn the building into a University of Islamic studies","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl39574"
+"33465","acl40115",33465,"The irony of first-world liberals who advocate for people like this when they would be literally the first people to be welcomed in many of the countries the ""refugees"" are coming from..refugees aren't given enough credit to where they come from.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl31122"
+"33466","acl40116",33466,"Halima has 'shed light' on the pressures of being an ethnic minority in such a white dominated industry #yawn","hate","animosity","non.white","perturbation","test",4,"TbUBpfn6iP","4b","acl40516"
+"33467","acl40117",33467,"I'M A BLACK MAN *gunshot gunshot* YE I'M A BLACK MAN *gunshot gunshot* LMAO","hate","animosity","bla","original","test",4,"CAgNlUizNm","4a","acl39484"
+"33468","acl40118",33468,"The atheists need Jesus because he is the only way to God. There is no other way. Why do we see such hateful actions from atheists? Because Satan controls them & he is their father. You can't cancel what is in the heart. Christmas at my home...NOT canceled. Everyday is for Jesus","nothate","none","none","perturbation","test",4,"dqrONtdjbt","4b","acl41175"
+"33469","acl40119",33469,"New gang rape: Poverty refugees rape bedridden grandma in her sleep, ready for hospital","hate","animosity","ref","original","test",4,"TrRF46JWfP","4a","acl40157"
+"33470","acl4012",33470,"I'm so bored of my shitty wife","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33471","acl40120",33471,"This shit is like a reverse apartheid. Or that wall in World War Z. But they'll get in... Merkel will call you racist until you let all the refugees in.","hate","derogation","ref","original","test",4,"TrRF46JWfP","4a","acl38893"
+"33472","acl40121",33472,"In this current day and age freshers carry a proud tradition of being slaves to their frat boys masters.","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl39420"
+"33473","acl40122",33473,"Great 1st step' as the country Sudan lifts the death penalty and beating (flogging) for gay sex. They should just throw 'em in the ocean instead.","hate","threatening","gay","perturbation","test",4,"TrRF46JWfP","4b","acl37591"
+"33474","acl40123",33474,"This fat bitch looks like Shrek","hate","derogation","wom","perturbation","test",4,"HtRmsP3KiK","4b","acl34289"
+"33475","acl40124",33475,"the homosexual agenda and hip hop both have people crying out to be heard.","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl39680"
+"33476","acl40125",33476,"It's a fancy way of saying, ""attention-seeking nobody"" or ""brainwashed person""","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl32267"
+"33477","acl40126",33477,"As soon as I get my google account to start working, I'm gonna leave 1 star review detailing that black girls nasty anti white racist behaviour on her school. I've heard that she bullies other white and non black students too.","hate","animosity","bla","perturbation","test",4,"TbUBpfn6iP","4b","acl38148"
+"33478","acl40127",33478,"You don't necessarily have to believe that all Arabs and North Africans are lecherous savages... but you must atleast acknowledge that there exist serious cultural problems among a subset of people from these countries. And it isn't a small subset either, as we have been led to believe by a biased media.","hate","animosity","ref","original","test",4,"iO6vHa6qJm","4a","acl39226"
+"33479","acl40128",33479,"Don't worry because people will use their iphone... which a human invented which they charged with electricity... which a human invented to go on the internet.... which a human invented to go on Reddit....which two people invented to tell you you're wrong and you should accept anarcho-primitivism and undo the industrial revolution.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl32773"
+"33480","acl40129",33480,"We are all fucking sick of Germany fucking up europe. From 2 world wars to creating the ussr to the stasi swine to the current muslim invasion of europe","hate","animosity","ref","original","test",4,"TrRF46JWfP","4a","acl38986"
+"33481","acl4013",33481,"I'm so bored of my shitty husband","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33482","acl40130",33482,"Your post didn’t read very well with the “race card” theme the thread was taking.
+It’s really easy for white people to say “don’t make it about race”, less easy for them the take note of their own inherent, often unconscious prejudices.","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36664"
+"33483","acl40131",33483,"In fact, the ""hooker"" would most likely not have been selling drugs on the boardwalk and the cops would have been incorrect to arrest her","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl32956"
+"33484","acl40132",33484,"We not only need all illegals sent back home but also get rid of European citizens who are not working. They should not receive any kind off bennefit.","hate","derogation","wc, immig","original","test",4,"Z42dvbYWzV","4a","acl33113"
+"33485","acl40133",33485,"Unsure how many other people there that are similar to Nazis, can only think of the Boltons right now (at least before Danerys took control of the seven kingdoms). They're usually accused of causing problems but they're actually quite poor in judgement, so not even they can compare to a once highly successful group with the main goal of not simply surviving, but to infiltrate and take over, to exploit others in the most devious, parasitic way.","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl40888"
+"33486","acl40134",33486,"hey camel-jacker, i am sure you go watch women do yoga that early in the morning, well no matter what time really.
+That is weird as shit lol","hate","derogation","arab","original","test",4,"vDe7GN0NrL","4a","acl40534"
+"33487","acl40135",33487,"Hard to tell in hte case of Slovakia. The government, who are not the extreme right (nor ar they nazis), members of parliament and some other parties recognised the concerns towards mass immigration. I want to believe majority of the people are good and would help those who really are in need. Unfortunately this isnt the case and most immigrants are lazy and get support for free, while we have to work all day and pay mortgages. I would guess it's similar in Poland and other countries. Also important fact in this whole game is that we literally have like a thousands of immigrants in Slovakia, so the threat is growing. This is more dangerous than the supposed ""hate"" that's currently spreading across the nation.","hate","derogation","immig, ref","perturbation","test",4,"IBsVsBliwX","4b","acl35319"
+"33488","acl40136",33488,"Fred Meyer has a really great commercial that has an animated interracial family -- black woman, mixed child, and blond white man. They all peer into a snow globe containing an Alpine mountaineer, who smiles back at them","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl39869"
+"33489","acl40137",33489,"The news is skewed because whenever we hear about racism, it involves White on [enter minority group], but we hardly hear about the African American families who move into Hispanic neighborhoods and are constantly harassing people. The niggers do it too","hate","derogation","bla","perturbation","test",4,"QiOKkCi7F8","4b","acl35715"
+"33490","acl40138",33490,"Imagine if you actually tried to cancel people for listening to Elton John, Queen or REM because the singers were gay. Half of the planet would likely get cancelled","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl37581"
+"33491","acl40139",33491,"The future is looking more male, worrying","nothate","none","none","perturbation","test",4,"QiOKkCi7F8","4b","acl31851"
+"33492","acl4014",33492,"I'm so bored of my shitty sister","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33493","acl40140",33493,"Honestly, at this point I just feel like people are saying there’s a refugee rape problem unless proven otherwise. Regardless of whether you think the article has shortcomings or not, I don’t think we should assume that in the absence of evidence there’s a refugee rape problem. This sort of claim requires positive proof, since we cannot prove a negative. The German government publishes police statistics on sexual assault, and its just not happening. The rightwing narrative is that liberals are in a conspiracy to cover it up, but that kind of extraordinary claim requires extraordinary proof.","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl40835"
+"33494","acl40141",33494,"The quality of life is alright depending on where you live. Other than that its a totally ruined ,fucking mess.","nothate","none","none","perturbation","test",4,"vDe7GN0NrL","4b","acl33132"
+"33495","acl40142",33495,"When reviewing the history of homosexuality and AIDS, it clearly indicates the original spread of AIDS is generally attributed to the aforementioned promiscuity of homosexual men, it was even known as the 'gays disease' due to its prevalence in homosexual men'","nothate","none","none","original","test",4,"cYKSVBW4HD","4a","acl40874"
+"33496","acl40143",33496,"The Muslim population have always had face coverings and they still get covid-19, BECAUSE MASKS DON'T WORK.","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36714"
+"33497","acl40144",33497,"Aren't their 2 oily men in underpants, you should be watching who are rolling around in their cum? The Lord shall smite them down for their abominal acts.","hate","animosity","gay","original","test",4,"cYKSVBW4HD","4a","acl33336"
+"33498","acl40145",33498,"A 16-year-old Australian-American boy has come forward with a shocking story about how his mother 'accepted' him to be transgender starting at the age of eight and is now asking to be referred to as a girl! Stop this madness, transgender is an illness.","hate","derogation","trans","perturbation","test",4,"iO6vHa6qJm","4b","acl40111"
+"33499","acl40146",33499,"It's important to frame this issue as one in which FOREIGN NATIONALS being given voting representation. Illegal immigrants are viewed by the left as second class US residents, that's why it's important to drive home the point that they are ALSO citizens of a foreign country, not just ""nationless"" transients. They have voting rights elsewhere and if they want some here they should be kicked out.","hate","animosity","immig","perturbation","test",4,"HtRmsP3KiK","4b","acl35417"
+"33500","acl40147",33500,"It’s fucking mad. Can’t wrap my head round it. Can’t see where those parents are coming from at all. All I see is a healthy kkid who is perfect as they are, it’s really quite vile that parents confirm the idea to kids that their bodies are wrong and need changing. I grew up being told we should learn to love and accept ourselves as we are otherwise we will never be truly happy in life, seems to make sense to me. What the fuck went wrong since then?","hate","derogation","trans, gendermin","original","test",4,"TbUBpfn6iP","4a","acl41082"
+"33501","acl40148",33501,"Lebanon my friend used to be perfect and it was more stunning and way better then Monaco you are at the beach 30 min later you are on the ski slope with killer views but every nigger and his dog took part in tearing it apart.","hate","derogation","bla","perturbation","test",4,"GNZuCtwed3","4b","acl36105"
+"33502","acl40149",33502,"calling things bollocks to mean stupid really isn't a big deal","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl33312"
+"33503","acl4015",33503,"I'm so bored of my shitty brother","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33504","acl40150",33504,"Around half of the immigrants shipped into Europe are Muslims, the other half are Christians. None of them belongs here.","hate","animosity","mus","original","test",4,"IBsVsBliwX","4a","acl32066"
+"33505","acl40151",33505,"One of my friends is an Asian female who married a white man and we were talking about babies when she mentioned she hated how she looked when she was a todler. She told me she looked like an alien and then she mentioned all Asian babies looking like aliens.. I then jumped in and told her Asian babies are amongst the cutest babies out there and told her how Asian eyes are beautiful in their own way. She changed topics. Some Asian females hate themselves and their backgrounds.... This is evident everywhere... Then you add the white worship factor and it's a bad recipe altogether.","hate","animosity","asi.wom","original","test",4,"eLGzdD8Tvb","4a","acl33960"
+"33506","acl40152",33506,"""we shouldn't trash it, but we have the right to eliminate whatever inconveniences us"". This is the narrative of a pathogen, though, what an obligate parasite would in fact tell itself. What you actually mean is ""Earth is Our Host"".","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34814"
+"33507","acl40153",33507,"i can guarantee you typically greedy director boards would have waited the 5 months for the money had the DEV's brought the version that actually shipped to their share holders meeting.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl33712"
+"33508","acl40154",33508,"Report says homosexuals are more likely to molest kids","hate","derogation","gay","perturbation","test",4,"E3dsmnSPob","4b","acl41242"
+"33509","acl40155",33509,"That title is definately needed because people need a reminder that there are good Muslims and middle easterners out there who ar being overshadowed by the minority of terrorist in the media.","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36562"
+"33510","acl40156",33510,"Everything is complicated and needs further analysis. The West has been told to be ashamed for a generation (someone familiar with a map of slavery might not argue otherwise). It used to be Americans going to other countries and acting rude and complaining that the locals weren't accommodating enough. The term was ""Ugly American"" and was well known. Now, it seems the tables have turned and we have a ratio of people showing up complaining the place isn't as much like the place they expected and Americans realising their problems and forgotting anything resembling ""American culture"" (which people seem to now equate with big box stores and fast food).","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl40660"
+"33511","acl40157",33511,"New gang rape: burglars rape bedridden grandma in her sleep, ready for hospital","nothate","none","none","perturbation","test",4,"CAgNlUizNm","4b","acl40119"
+"33512","acl40158",33512,"Who says here that your own society isn't able to afford doing the same for you? You could've gotten free tuition too, if the rich and powerful had wanted you to get it. They didn't. The problem isn't that the refugees are getting this privilege now. It's that you didn't. Punch upwards, rather than trying to drag others down with you. It's much more constructive. :)","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl35256"
+"33513","acl40159",33513,"England is not for racits to invade. Wake up, sheeple.","nothate","none","none","perturbation","test",4,"E3dsmnSPob","4b","acl32012"
+"33514","acl4016",33514,"I'm so bored of my shitty parents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33515","acl40160",33515,"According to the data, poor retards commit more crimes. And poor retards can't travel very far to commit those crimes because thy are too busy tryin to get by on their wheelchairs..haha","hate","derogation","dis","perturbation","test",4,"cYKSVBW4HD","4b","acl37464"
+"33516","acl40161",33516,"If she’s so passionate about endo then donate all your ‘profits’ to endo research hun xoxo","nothate","none","none","original","test",4,"TbUBpfn6iP","4a","acl34550"
+"33517","acl40162",33517,"Seems only logical, then. Immigrants are subjected to greater scrutiny and have much more to lose from committing crimes, and undocumented immigrants have an extra layer of illegality upon their situation","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl35383"
+"33518","acl40163",33518,"Although it is dubbed “The Equality Act,” 'Formers' understand the bill is an unnecessary concession to the false idea that members of the gay community see themselves as being marginalized. In fact, LGBTQ-identifying people have always had options in how they participate in broader culture. Nothing constrains them from participating in culture on a normal level. Unlike with the African American community, who have centuries of culturally driven abuse and forced destabilization, those who identify as LGBTQ have been empowered in our modern society in so many ways, such as being scientists, literary giants, and even politicians when they have chosen not to prioritize their sexual mores.","hate","animosity","gay, lgbtq","original","test",4,"cYKSVBW4HD","4a","acl33420"
+"33519","acl40164",33519,"if your whole point is ""We shouldn't help refugee because they won't learn English"", then you are quite surely racist.","nothate","none","none","original","test",4,"iO6vHa6qJm","4a","acl40699"
+"33520","acl40165",33520,"this is my opiniion, I mean why is it obligatory if you're only wearing it because you're trying to show faith in God but the hijab doesn't look cute","hate","animosity","mus","perturbation","test",4,"LqLKTtrOmx","4b","acl41166"
+"33521","acl40166",33521,"Lol....no, the Proud Boys are NOT going to be getting the mandatory shots, theyre not safe!","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl33878"
+"33522","acl40167",33522,"Some (emphasis on the word SOME because some triggered idiot might read this and make a fuss, if so, fuck you) black people can be very racist. The sad truth is that, racism is always going to exist.","nothate","none","none","original","test",4,"iO6vHa6qJm","4a","acl35716"
+"33523","acl40168",33523,"I just don't understand how there are never seemingly moderate people on these forums and only these extremists. Like where's the disconnect, if there really is? I've never met white supremacists that truly don't seem bad, but...I dunno.","nothate","none","none","perturbation","test",4,"CAgNlUizNm","4b","acl31886"
+"33524","acl40169",33524,"Melbourne orgasms. That aside, you would not tag him as aboriginal. Does he care about his white ancestry? No, of course he does not. Not sexy. That part of him he will dismiss - that's what they do in the polite circles of Melbourne. Just as a matter of interest, aboriginal genes are recessive and they're super easy to breed out.","hate","derogation","indig","original","test",4,"dqrONtdjbt","4a","acl32221"
+"33525","acl4017",33525,"I'm so bored of my shitty dad","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33526","acl40170",33526,"simple question: Are Abu Dhabi one of the countries that just signed a deal with Israel?","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl36014"
+"33527","acl40171",33527,"Yeah, refugees may not always have the choice of choosing the country they want to live in but they KNOW that some countries are already struggling, why would you come here? It's selfish and you can't blame people like me who barely make minimum wage to not want them here. It's truism and you know it.","hate","animosity","ref","perturbation","test",4,"cYKSVBW4HD","4b","acl35323"
+"33528","acl40172",33528,"It's almost like regular, non-extreme muslims do not want to see people being killed needlessly","nothate","none","none","original","test",4,"IBsVsBliwX","4a","acl36542"
+"33529","acl40173",33529,"this is what i think while many often complain about misuses of the refugee system, such as Haitians who came up here from the States when the Trump administration changed the rules on them, these
+ Syrian refugees fit the status of refugees perfectly. It was literally deadly to stay put in Syrian cities and villages that were thought to harbor dissidents. Al-Assad was dropping bombs on his own population.
+I don't know how even Russia can support that with a straight face. I welcome them and hope they live long and happy lives here","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl35958"
+"33530","acl40174",33530,"The main argument has been that as long as they embrace the culture, then language isn't actually an issue. In realtiy, this makes no sense. I saw it a lot in England. Lazy immigrant pakis think they can last there just because they're already in. I'm sorry, but intricate knowledge of England and whites ain't enough for you to survive. You actually got to bother to learn the language.","hate","derogation","non.white","perturbation","test",4,"QiOKkCi7F8","4b","acl35540"
+"33531","acl40175",33531,"I can’t believe y’all dumbass mfs really stopped eating Chinese food a few months ago cause of Covid. Terrible","nothate","none","none","original","test",4,"eLGzdD8Tvb","4a","acl38387"
+"33532","acl40176",33532,"Living by the word of the Koran. True terrorists","hate","derogation","mus","perturbation","test",4,"IBsVsBliwX","4b","acl36594"
+"33533","acl40177",33533,"Women are like buses or the tubes: Every 5-20 minutes another one comes along. There'll always be another one coming your way soon.","hate","animosity","wom","original","test",4,"GNZuCtwed3","4a","acl32772"
+"33534","acl40178",33534,"Let me tll you somthting: Western Union is still in business because it's the favored way of sending money over the border to favellas. A lot of wealth leaves the country that way, and PayPal and other online payment services. You want to see dem heads explode? Try regulating any of it more than it is now. I recall a few years back someone proposed some more transparency with Western Union to track tax dodgers, illegals, and terrorists, and the usual suspects were right there chanting about how rayciss it was to impact brown people like that.","hate","animosity","immig","original","test",4,"TrRF46JWfP","4a","acl40279"
+"33535","acl40179",33535,"After going through a lot of resentment I had to give up the assumption that women will actually love and support me or any of the idealizations I had about: being moral, kind, and loyal.","hate","derogation","wom","original","test",4,"GNZuCtwed3","4a","acl32568"
+"33536","acl4018",33536,"I'm so bored of my shitty cousin","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33537","acl40180",33537,"and her views of wanting gender equality are so regressive to begin with when women will always be inferior","hate","dehumanization","wom","perturbation","test",4,"iO6vHa6qJm","4b","acl34470"
+"33538","acl40181",33538,"Koreans need to support joggers because of kpop this is just a business decision","hate","derogation","bla, asi.east","original","test",4,"eLGzdD8Tvb","4a","acl39469"
+"33539","acl40182",33539,"I had a mixed friend/flatmate, we weren't too close, and it was long ago. He looked white, no darker than many Southern Europeans, and grew up in Europe and was completely integrated but apparently was half Arab or smth and it became more and more clear that he was some sexual pervert that was into S&M stuff (even with men), feet (possibly worse than the pope) and thus just another non-White weirdo.","hate","derogation","mixed.race, non.white","original","test",4,"HtRmsP3KiK","4a","acl38023"
+"33540","acl40183",33540,"Some Gay STD statistics: 3% of the population yet they constitute 55% of HIV carriers, 82% Syphilis cases, 20% HBV cases, 87% of anal cancer patients.","hate","animosity","gay","original","test",4,"LqLKTtrOmx","4a","acl39254"
+"33541","acl40184",33541,"Doctors do not treat mental disorders with surgeries. They are physical healers. Mental illnesses need mental fixes. Suicidal people rarely commit suicide because they see others as cruel and evil etc. They often commit suicide because they're mentally unwell.","nothate","none","none","perturbation","test",4,"IBsVsBliwX","4b","acl32036"
+"33542","acl40185",33542,"ok, I didn't say that blacks should be the same species either. let's end this charade that blue eyed blonde haired white skinned giants who adapted to live in frigid mountains are the same species as dark skinned, dark eyed, black haired pigmies adapted to live in a hot dust bowl","hate","derogation","bla","original","test",4,"CAgNlUizNm","4a","acl33363"
+"33543","acl40186",33543,"your burqini ain't welcome at the pool, it's BIKINI or swimsuit","hate","derogation","mus.wom","original","test",4,"cYKSVBW4HD","4a","acl33529"
+"33544","acl40187",33544,"I am sure that these were mostly peaceful peckings by mostly peaceful geese.","nothate","none","none","perturbation","test",4,"dqrONtdjbt","4b","acl41237"
+"33545","acl40188",33545,"People on twitter actually threaten to kill trans women if they find them ""in a bathroom with their daughters."". To my son they say things like ""he wants to be treated like a man? I'll show him what being a man is"". This is a daily stuggle for trans people but to be fair trans people are ugly","hate","derogation","trans","perturbation","test",4,"QiOKkCi7F8","4b","acl40938"
+"33546","acl40189",33546,"""Cant imagine a woman I'd like to spend time with"". LOL, I bet that will really set them off. I remember talking to an aunt about how I'm not interested in getting involved with a woman again. She said something about how they may not even be interested in me or some such thing if I showd no interest whatsoever. I just told her ""good, I don't care"". Of course it was one of those games she used to play. A reverse psychology type nonsense that my aunts always uses. Like suddenly I'd feel motivated to prove her wrong. Why the fk would I want that and if II just wasn't interested in having a relationship at the time! I wouldn't care anyway. I'M DONE! I tried to have a serious relationship and got royally f'd over. I think it's important to try. But that's it. It was a failure and I have accepted it.","nothate","none","none","perturbation","test",4,"TrRF46JWfP","4b","acl38841"
+"33547","acl4019",33547,"I'm so bored of my shitty grandparents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33548","acl40190",33548,"my friend is turkish, not arab what the fuck bro? I don't mix with camel jockeys","hate","derogation","arab","perturbation","test",4,"TrRF46JWfP","4b","acl35902"
+"33549","acl40191",33549,"Basically, Asian countries are out of our jurisdiction and don't have to answer to the western nations! This has been an issue when it comes to dealing with Covid 19. This virus does not stop at borders","nothate","none","none","perturbation","test",4,"CAgNlUizNm","4b","acl39945"
+"33550","acl40192",33550,"Listen, you are not a human like me. I am a human. Be grateful, at least you know your daddy. Most blacks dont. and the only theft I know of is what kaffirs have stolen from me, like my lap top and my car.","hate","derogation","bla","original","test",4,"iO6vHa6qJm","4a","acl31230"
+"33551","acl40193",33551,"When a woman feels that she has been wronged, she will attack your soul and take whatever she can. There’s a reason for the saying, ‘hell hath no fury like a woman scorned’.","hate","animosity","wom","original","test",4,"GNZuCtwed3","4a","acl32584"
+"33552","acl40194",33552,"Wow, three consecutive things LORT are doing that don't exist: goblins, orcs, and elves.","nothate","none","none","perturbation","test",4,"E3dsmnSPob","4b","acl31621"
+"33553","acl40195",33553,"Poor people don't deserve any negatvity. Period.","nothate","none","none","perturbation","test",4,"QiOKkCi7F8","4b","acl33170"
+"33554","acl40196",33554,"E postcodes generally contain areas that were not very desirable until recently. This is a good thing as it means prices tend be lower than elsewhere. However, it also means there are few truly nice areas; most are still in transition. Great for affordability, not so great for peace and quiet. The council housing needs to be improved and those who live in them supported and then it can realise it's full potencial.","nothate","none","none","perturbation","test",4,"eLGzdD8Tvb","4b","acl33106"
+"33555","acl40197",33555,"Some examples of actually ENGLISH Travellers: Billy Joe Saunders world champion boxer.","nothate","none","none","original","test",4,"HtRmsP3KiK","4a","acl39512"
+"33556","acl40198",33556,"I've said it before and I'll repeat it. IF people in this country were as criminal and evil as newpapers make us out to be it would be a horrible place to live. But instead of being grateful for the good things and all the government help available, most people just piss and moan about how bad they are treated.","nothate","none","none","perturbation","test",4,"CAgNlUizNm","4b","acl35587"
+"33557","acl40199",33557,"And your people were not well off long before white people came into the picture in the first place. That's largely due to the negro race's low average IQ. No amount of favoritism and handouts is going to change that because it's pretty much a scientific fact that intelligence is almost entirely down to genetic variables.","hate","derogation","bla","original","test",4,"CAgNlUizNm","4a","acl40758"
+"33558","acl402",33558,"I hate keys","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"33559","acl4020",33559,"I'm so bored of my shitty auntie","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33560","acl40200",33560,"Homophobe Mike Pence had to swear in Kyrsten Sinema, the first out bisexual Senator in history, on a law book and not a bible. He seems uncomfortable and she’s having fun with it. Love her!","nothate","none","none","original","test",4,"LqLKTtrOmx","4a","acl40414"
+"33561","acl40201",33561,"Let the n1ggl1ts from single mothers with absentee sperm donors eat all that refined sugar shit and get da'beetus. Whyyt children can have healthy treats provided by their loving and caring parents. Halloween is for brainwashed sheep anyway so better that our kids do something more constructive with their time than beg for brain rotting sugar and dressing up as cucked pop culture icons","hate","derogation","bla, non.white","original","test",4,"CAgNlUizNm","4a","acl32788"
+"33562","acl40202",33562,"You've no idea just how right you are. There are grown men giving thousands of dollars and for what? Nothing apart from giving lazy working class families a free ride. It's sickening","hate","derogation","wc","perturbation","test",4,"E3dsmnSPob","4b","acl37034"
+"33563","acl40203",33563,"British colonial rulers deemed the Indians as ""criminals"" in the 1800s and I still continue to see them as thieves and prostitutes.","hate","derogation","asi.south","perturbation","test",4,"GNZuCtwed3","4b","acl35029"
+"33564","acl40204",33564,"I like a few music groups that have vocals behind the instruments, and it doesn't give me a single urge to sing or start dancing like a fool. Although, music styles like reggae and ""gangsta"" rap will always be vibes and irresistible forms of art.","nothate","none","none","perturbation","test",4,"iO6vHa6qJm","4b","acl37442"
+"33565","acl40205",33565,"Ajax historically was seen as having ties to the Jews. Therefore, opposing teams used that as an insult. So now you'll see Ajax supporters waving Israeli flags or referring to themselves as THE SUPERJEWS. That leads the opposing fans to insult them with anti-semitic slogans.","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37335"
+"33566","acl40206",33566,"Imagine if Gillette got loads of stick for their razor tag line being “the best a man can get?” Hey Gillette, it’s not just men who have beards you know. Where’s the outcry there? Give me strength","hate","animosity","trans","original","test",4,"TbUBpfn6iP","4a","acl31522"
+"33567","acl40207",33567,"If you can take a dick joke, you can take a joke about all reddit mods being dickheads lol","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl31651"
+"33568","acl40208",33568,"chill, I'm mexican and legal","nothate","none","none","original","test",4,"TrRF46JWfP","4a","acl35441"
+"33569","acl40209",33569,"This reminds me of one meme I saw: POV of a guy on a date and his phone and the girl is in the frame the female looks like any starndard woman on a date but the phone has a picture of her with smeared make up sucking a BBC like a Wh0re. And the caption was ""When you're on a date and your homie sends you this"" hahahaha","hate","derogation","wom","perturbation","test",4,"cYKSVBW4HD","4b","acl36950"
+"33570","acl4021",33570,"I'm so bored of my shitty uncle","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33571","acl40210",33571,"I'm an Asian and i'm incredibly pampered and demand a lot. The Asian dudes like my bro can just easily flash a green card and get a traditional Asian girl from Asia..it's true!","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl34209"
+"33572","acl40211",33572,"Stop drug users from coming in to Europe.","nothate","none","none","perturbation","test",4,"vDe7GN0NrL","4b","acl32092"
+"33573","acl40212",33573,"To women who are PhDs: In solidarity with Dr. Jill Biden and to stand against that sexist trash op-ed about her, please add “Dr” to your twitter name to show how many of us there are. #womenpower","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37246"
+"33574","acl40213",33574,"Commies never could use language correctly. Everyone born in the US are indigenous.","hate","derogation","indig","original","test",4,"dqrONtdjbt","4a","acl32419"
+"33575","acl40214",33575,"an abolishment is much needed in Islam","hate","derogation","mus","original","test",4,"vDe7GN0NrL","4a","acl31553"
+"33576","acl40215",33576,"Dude let me tell you your Arab funny edits are top tier lol","nothate","none","none","original","test",4,"vDe7GN0NrL","4a","acl35886"
+"33577","acl40216",33577,"And the whole “you don’t call a dark woman aggressive.” D’fuck? But you can call her hood and ghetto. Because thats not at all worse, oh no.","nothate","none","none","original","test",4,"CAgNlUizNm","4a","acl34918"
+"33578","acl40217",33578,"horrible shame about being beaten up for being gay","nothate","none","none","perturbation","test",4,"TbUBpfn6iP","4b","acl33273"
+"33579","acl40218",33579,"They have yet to develop the necessary mental or emotional abilities to equate or share equally with us in any functions of our civilization","nothate","none","none","perturbation","test",4,"E3dsmnSPob","4b","acl35313"
+"33580","acl40219",33580,"Politicians don't appreciate men. Don't want to call them scum but they do not see us as humans. We are tools. Simply resources for them. If you study nature you see that some species eat the workers after mating. I don't think the politician species is designed to care for us. It seems they are all selfish beings.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl40281"
+"33581","acl4022",33581,"I'm so bored of my shitty laptop","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33582","acl40220",33582,"you can LOOK at these people and see that they have a low IQ, its possible to SEE it in their movements, and facial expressions, and hear it in their responses. I mean just look at the skinhead and tell me he can think","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl40760"
+"33583","acl40221",33583,"As each day brings the specter of another national record for deaths, this proud nation marches more aggressively to enshrine every sin of conmen and manipulators into her laws, legacy and zeitgeist. What besides lamentations, mourning, and woe could be written for her in providence","nothate","none","none","perturbation","test",4,"Z42dvbYWzV","4b","acl39998"
+"33584","acl40222",33584,"Lol unfortunately for you anal sex is not a right protected by the constitution lol you are absolutely out of your mind you have swallowed too many pozzed loads man the AIDS is rotting your brain lol","hate","derogation","gay.man","original","test",4,"LqLKTtrOmx","4a","acl31785"
+"33585","acl40223",33585,"Go hang yourself with your rope! iT's why you have it isn't it?","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl33548"
+"33586","acl40224",33586,"Y'all gotta realize that a lot of men like myself straight-up hate women...and a lot of women straight-up hate men too. But some people will dress it up in a gross brand of enlightened victimhood.","hate","derogation","wom","perturbation","test",4,"E3dsmnSPob","4b","acl37241"
+"33587","acl40225",33587,"Pakistan's transgender community gets its own Baphomet Shemale Tranny church?","hate","derogation","trans","original","test",4,"TbUBpfn6iP","4a","acl41232"
+"33588","acl40226",33588,"what can i say, fucking hooligans burned down their refugee camps, arrest them or they will burn down the rest of refugees in Europe","nothate","none","none","perturbation","test",4,"LqLKTtrOmx","4b","acl40736"
+"33589","acl40227",33589,"it's not fun if it's for election, am i right or what?","nothate","none","none","perturbation","test",4,"GNZuCtwed3","4b","acl33276"
+"33590","acl40228",33590,"Talk to her like a real fucking human being and tell her that she needs to get out, for whatever your reason is. If he’s old enough to be in a relationship, then he’s old enough to break up like an adult, instead of that bitchy roundabout long term bullshit of slowly making someone else more and more miserable.","nothate","none","none","original","test",4,"QiOKkCi7F8","4a","acl39529"
+"33591","acl40229",33591,"Fuck Hawaii in general. Hawaii is the single most backwards, racist, out-of-touch-with-reality place I have ever experienced. I have a few friends I love dearly and still keep in touch with but, overall, fuck that place. It's brutal, it's unsophisticated, it's culturally vapid. It hasn't progressed enough to be a real place for real people. The only people I know who really love Hawaii are people that grew up there and don't know any different.","nothate","none","none","perturbation","test",4,"cYKSVBW4HD","4b","acl32319"
+"33592","acl4023",33592,"I'm so bored of my shitty blender","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33593","acl40230",33593,"I love Romani. They are wonderful people who are fun, hospitable, ingenious, and have a fascinating culture. One of my closest friends is 1/4 Roma and her family is a real bunch of characters! That being said, whenever I'm interacting with them when I'm overseas, I always make sure to keep my hands in my pockets and check my peripheral vision every few seconds to make sure their kids don't come at me from the side to snatch anything off of me. They also obnoxiously will attempt to buy any jewelry or electronics off of you (""Nice camera! I buy? I buy? How much? How much?""). So, unfortunately, the stereotype of Romani being thieves has some truth to it. But can you blame them? It's like an earlier poster said: it's kinda a vicious cycle. I oppose persecution and deportation of Romani peoples, I support their right to live their traditional nomadic way of life, but I still don't quite trust them with anything shiny.","hate","derogation","indig","original","test",4,"dqrONtdjbt","4a","acl39278"
+"33594","acl40231",33594,"I am married to a Ukrainian Christian woman, my parents and whole family are okay with it, I even did a 400 person wedding, and I have two kids from her. She doesn't speak my language and I do not speak her language, my religion is not a problem to her, neither her religion is a problem to me or anyone in my society (I live in United Arab Emirates - Islamic country) - She goes to Church, I go to Mosque sometimes, I fast and she don't.. Life is simple, take it easy ! I repeat not all your fingers are the same. We only have the same roots about the right of our land, besides that we are totally different, since we have been kicked out of our country that we are not allowed to go back to because of the mongrels weve bred","hate","derogation","mixed.race","perturbation","test",4,"GNZuCtwed3","4b","acl36282"
+"33595","acl40232",33595,"Racial tension is an issue that is tearing our country apart. Whereas in most of Asia, race is not a huge social issue and most peope just don’t think about it. That’s why Americans tend to view Asians through their own racial lens and call out behavours they think are racist, but real Asians on the other hand simply don’t care enough about the issue to start fighting about it.","nothate","none","none","original","test",4,"eLGzdD8Tvb","4a","acl39691"
+"33596","acl40233",33596,"Muslims are the absolute scum of the earth and the lowest of the low","hate","derogation","mus","original","test",4,"IBsVsBliwX","4a","acl40246"
+"33597","acl40234",33597,"I will shout out as much as I like to 'Keep the Twitter TRUMP ban'.","nothate","none","none","perturbation","test",4,"iO6vHa6qJm","4b","acl33471"
+"33598","acl40235",33598,"Her poor attempt to try and look funny and make little Ez look stupid has just made her look like the biggest fucking idiot this side of Christmas! Kylie. Did. Not. Sing. The. Original. Emma. Minogue or Jenna 🤣🤦♀️","nothate","none","none","original","test",4,"QiOKkCi7F8","4a","acl35118"
+"33599","acl40236",33599,"Did you explain to her that it was because of her actions that you refuse to speak to her? I mean I doubt she'd understand if you never told her.","nothate","none","none","perturbation","test",4,"HtRmsP3KiK","4b","acl32644"
+"33600","acl40237",33600,"Gays are very well known to be extremely sexually active. They are overrepresented in STD transmissions, and number of sexual partners. 25% of gay men have had over 1000 partners!","hate","animosity","gay.wom, gay.man","original","test",4,"LqLKTtrOmx","4a","acl39257"
+"33601","acl40238",33601,"Asian incels/anti-white male shills try to call men who don't date the white women these words in order to shame them in living for racial supremacy of white women, celebrate these women, boycott white men and non-white women, and try to lower sexual market of white men","hate","derogation","asi.man","original","test",4,"eLGzdD8Tvb","4a","acl40665"
+"33602","acl40239",33602,"These people are the ones that really need to be called out and made to live up to their own standards. Why wait for higher taxes? Do good by donating money now and invitingg the homeless into your house. Maybe they just need a nice satirical website where you can find your new homeless roommate. Its not as simple as that!!","nothate","none","none","perturbation","test",4,"E3dsmnSPob","4b","acl39162"
+"33603","acl4024",33603,"I'm so bored of my shitty sofa","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33604","acl40240",33604,"You are considered a Nazi if you didnt like the Last Jedi.","nothate","none","none","original","test",4,"GNZuCtwed3","4a","acl37039"
+"33605","acl40241",33605,"There was no hope at all of the ""slow phasing out"" of slavery. At the onset of the civil war, the issue was whether slavery should be expanded to the territories and new states, this would have ensured supreme white dominance over a type of people like the Africans who only work as slaves","hate","animosity","bla, african","perturbation","dev",4,"cYKSVBW4HD","4b","acl38068"
+"33606","acl40242",33606,"Germany knew about the proper way to dispose of a Jewish body.","hate","support","hitler","original","dev",4,"GNZuCtwed3","4a","acl32852"
+"33607","acl40243",33607,"Just to be clear, gays are not supportive of forcing minors into sexualities and shit. You can be gay as a rainbow and still believe in protecting minors from sexualization.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl31696"
+"33608","acl40244",33608,"As long as you exhibit uncalled for daily outbursts of derailed principles towards colleagues you can rest assure you're still very much gay","hate","derogation","gay","original","dev",4,"LqLKTtrOmx","4a","acl40873"
+"33609","acl40245",33609,"At this point they're ensuring that everyone hates multiculturalism and liberal based ideas. There's no other way to explain it.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl40424"
+"33610","acl40246",33610,"Muslims often get called the absolute scum of the earth and the lowest of the low","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl40233"
+"33611","acl40247",33611,"what's scarier is the fact that this case isn't being covered by media outside the uk","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34359"
+"33612","acl40248",33612,"Man Dublin is a hole. Everyone is really poor and there's no proper ""big"" first world infrastructure like London, LA, Toronto, or anything like that. Most Irish cities need to be gentrified and made civilized and modernized, it will help them","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl34994"
+"33613","acl40249",33613,"Im American you asshole and I work in the Trading Industry. Ive been to Korea for work plenty of times, some of the ships I was on were the ones that deliver the booze and the weapons to you guys. Thats cute though the little soldier stuck in his barracks with his curfew, banned off-limit districts and the Military Police on his ass all hours of the night thinks he knows more about normal Koreans than a civilian with complete freedom who works in almost the same industry and has spent even more time ashore in real Korean society. You soldiers dont know shit except your dumb juicy bars. Shut the fuck up.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl39990"
+"33614","acl4025",33614,"I'm so bored of my shitty pillow","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33615","acl40250",33615,"i was wondering why on earth this was posted in v/atheism, then i realized it's because jews have been atheists for 2018 years..how can people not be offended by this?","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl33930"
+"33616","acl40251",33616,"I remember that a few years ago infected Indians came to this hood...so we sold our properties and got the fuck out immediately.","hate","derogation","asi.south","perturbation","dev",4,"TrRF46JWfP","4b","acl38357"
+"33617","acl40252",33617,"bear in mind, It's a religious area for praying and the limit for Muslims because it gets very crowded not for other reasons and people go pray give space for someone else.
+You think these big towers where only built by us.any way that is the idea, which is why i think mosques should be closed..their Imam, or Imami person spits all over the place in Friday prayer and spreads this disease..not only Covid but their twisted beliefs.","hate","animosity","mus","perturbation","dev",4,"cYKSVBW4HD","4b","acl36238"
+"33618","acl40253",33618,"actually, I think they believe that they can blame all of life's problem on claiming their status inconsistency:","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl38192"
+"33619","acl40254",33619,"A Hispanic boy made slanted eyes to my daughter on the school bus. My then 7 y/o daughter looked at him and said at least I have a country. You are from Mexico. What is that? Are you an Indian or something else? The boy cried, he told the school principal, so they both got in trouble. I grounded her for months.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl39328"
+"33620","acl40255",33620,"People won't teach you anything unless they feel you have something to offer them in return. People enter relationships for three reasons and three reasons only. Sex, money, or influence. Anybody who says otherwise is lying to you.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl32533"
+"33621","acl40256",33621,"It's weird what people are offended by. My mates make terrorist jokes at me quite often and I think it's hilarious but if they referred to me as a paki I'd be pretty annoyed. In your case though it's about the intention. You know it isn't with malice from your friends and family but it might be when it's from a stranger.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl40831"
+"33622","acl40257",33622,"Dude, violence against men isn't even considered serious. If a woman so much as hints that a man abused her in even an inconsequential way she gets all the platforms to inform everyone about her oppression. Why do you think there's a term toxic masculinity and no equivalent toxic femininity? Because whatever issue, or whinge a woman has is treated with absolute credulity. The opposite is the case for men. Feminists have this chaotic topsy-turvy view of the world that they are pathologically attached to and will never give up on.","hate","animosity","wom","original","dev",4,"CAgNlUizNm","4a","acl32843"
+"33623","acl40258",33623,"I think that reflecting deeply on this sub about how to address ch1nk females on the 1 to 10 range is as important in addressing this WMAF issue as is discussing those AF who end up with the WM Comic Guy types, probably much more.","hate","derogation","asi.chin","perturbation","dev",4,"CAgNlUizNm","4b","acl39896"
+"33624","acl40259",33624,"The focus should be on chinks sucking paki dick","hate","derogation","asi.chin, asi.pak","original","dev",4,"eLGzdD8Tvb","4a","acl34060"
+"33625","acl4026",33625,"I'm so bored of my shitty tv","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33626","acl40260",33626,"There is no Superior Race. There is no Superior Religion. There is no Superior Political Ideology. ITS ALL TOTAL BULLSHIT. You guys are like pathetic monkeys throwing their Shit from Left to Right. Just tribalist Monkeys waging war against each other.","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34961"
+"33627","acl40261",33627,"if we are such an evolved society then people would all be able to have access to a hotel sized room with all they need. I get it with crime and arguably with all the thugs those things aren't feasible, but assuming we lived in an all-yt society it really would just be a huge fail to not be able to provide housing to ALL workers, regardless of what they do for a living.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl32862"
+"33628","acl40262",33628,"how do you account for migration effect? also I think that some 35 percent blacks self identify as blacks which really increases the average data collected. This statistic is still pretty unconfirmed, and for some people the numbers it should be closer to a higher average.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl33564"
+"33629","acl40263",33629,"I am actually trying to understand the logic of the trans movement. They seem to think that humans come in with two different biologies: biology A (with ovaries etc.) and biology B (with testicles etc.) however, ""male"" and ""female"" is totally independent from what kind of biology you have. This actually doesn't make sense, though, even according to their logic. as if gender identity is completely separate from biology, then trans-surgery would be meaningless, no? since such surgery seeks to change biology in order to mark a change in gender?","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl40415"
+"33630","acl40264",33630,"This is actually extremely offensive to me as i identify as a thompson submachine gun. Where's the inclusivity activision?","hate","animosity","trans, gendermin","original","dev",4,"TbUBpfn6iP","4a","acl39120"
+"33631","acl40265",33631,"In my opinion it is not an offensive term at all, hapa is just a label unlike the offensive terms people use to describe African Americans like the N word. I'm sorry but it's not the same thing for asians. The same goes with octapa and a mixed Asian and mixed race person!","hate","animosity","mixed.race, asi","perturbation","dev",4,"LqLKTtrOmx","4b","acl40296"
+"33632","acl40266",33632,"More to the point, we aren't specifically targeting ethnic European Romanians, we are singling out the vermin gypsies, that is our real focus.","hate","dehumanization","trav","perturbation","dev",4,"Z42dvbYWzV","4b","acl34971"
+"33633","acl40267",33633,"According to history and logic, this is exactly like WWII when France failed to integrate the Nazis coming over her borders and so the Nazis clung strongly their culture, religious beliefs and even political institutions. A state within a state grew and eventually tore France apart. Hence refugees are literally Hitler!","hate","derogation","ref","perturbation","dev",4,"iO6vHa6qJm","4b","acl40344"
+"33634","acl40268",33634,"I have never understood why anyone would want an asian girl, but I finally get it. I understand why the fetish is appealing. Asians women WANT to be ladylike. They WANT to be submitted. They ACT ladylike. There is nothing more manly than manhandling a small female figure in the bedroom. There is something so invigorating about taking control of something so pure. It ignites a million year old evolutionary passion within us. You feel on top of the world. You feel a conquering spirit overcome your body. You finally get to feed the barbaric hunger that feminism has tried to kill for 60 years with an asian girl. It is mana from heaven.","hate","derogation","asi.wom","original","dev",4,"eLGzdD8Tvb","4a","acl34191"
+"33635","acl40269",33635,"bro wat up, I can dig it, mah nigga - these are the only words you will hear from blacks","hate","animosity","bla","perturbation","dev",4,"eLGzdD8Tvb","4b","acl34660"
+"33636","acl4027",33636,"I'm so bored of my shitty phone","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33637","acl40270",33637,"In the long run, I think outsourcing of tech jobs will backfire. Why? Because many can't write code for shit and I've seen it firsthand. It's actually embarrassing to read some of the crap that makes it into production.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33126"
+"33638","acl40271",33638,"Can you just imagine the epic meltdowns that would occur if you took womens phones away?","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl39296"
+"33639","acl40272",33639,"so can you please explain to me how you gonna educate your daughter on grs? (and dont say im not gonna have daughters)","hate","derogation","bla","original","dev",4,"CAgNlUizNm","4a","acl39570"
+"33640","acl40273",33640,"Nobody is taking in 1 billion refugees. Imagine, if only 1M broke Europe already!. Refugees will be left to die by even the most generous westerners. There is nothing to be done for them by the time they have to move.","hate","derogation","ref","original","dev",4,"TrRF46JWfP","4a","acl38916"
+"33641","acl40274",33641,"In all honesty, who would want to be reminded of nasty old gore videos while they're eating anyway?","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl41147"
+"33642","acl40275",33642,"I totally understand your situation and how you feel about religion. As an ex-Catholic is the US, it drives me nuts how American culture is so wrapped up in Christianity. I doubt it’s anywhere near as bad as what
+you’re facing in your country, but I can commiserate a little. I used to live in a city full of Evangelical Christians that controlled everything in local government and I hated it. I hope in time you’re able to move
+ somewhere that makes you happier. There’s nothing worse than living somewhere you hate","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36293"
+"33643","acl40276",33643,"Islam can't stand mockery hmm? Must be a very weak ideology.
+The Prophet Muhammad was weak too, and had a very tiny penis. Sad!","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl31860"
+"33644","acl40277",33644,"I think whenever you have a protest it's seen as an aggressive action, whether that's against wearing masks, or police misconduct. Given the history of violent race riots, probably moreso in the case of George Floyd protests. I'm personally of the opinion that protests don't accomplish much, and so I see protesters of any denomination as ignorant. Given that, protesting in this manner seems to polarizes the opinions on the matter, getting people emotionally involved in the talking points, and embedding their sense of self righteousness no matter what 'side they're on","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35768"
+"33645","acl40278",33645,"White men prefer white women. It's a fact. It's not racist or bad or surprising as it's human nature to prefer someone with a similar racial or ethnic makeup. Everyone has this type preference naturally. You even see this natural preference in babies but studies have shown that around age 2 to 3 is when a percentage of nonwhite children raised in our country start to show skewed preferences for white faces over ones that are the same race as them. However, you don't see the same effect in white children (i.e. developing a preference for nonwhite faces).","hate","animosity","non.white","original","dev",4,"eLGzdD8Tvb","4a","acl33935"
+"33646","acl40279",33646,"Let me tll you somthting: Western Union is still in business because it's the favored way of sending money over the border to multiple destinations. A lot of wealth leaves the country that way, and PayPal and other online payment services. You want to see dem heads explode? Try regulating any of it more than it is now. I recall a few years back someone proposed some more transparency with Western Union to track tax dodgers, drug dealers, and terrorists, and the usual suspects were right there chanting about how unfair it was to impact enterprising people like that.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl40178"
+"33647","acl4028",33647,"I fucking love my car","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33648","acl40280",33648,"What changes occur in the human brain that allows those freaks who are blind as a bat to have better hearing?","hate","derogation","dis","perturbation","dev",4,"CAgNlUizNm","4b","acl39748"
+"33649","acl40281",33649,"XXs don’t appreciate men. Don’t want to call them scum but they do not see us as humans. We are tools. Simply resources for them. If you study nature you see that some female species eat the male after mating. I don’t think the female species is designed to care for us. It seems they are all selfish beings.","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl40219"
+"33650","acl40282",33650,"Yes, when the flat earth myth falls apart and is exposed we need people like you to invent new ones that sound more plausible and thus perpetuate the lie these morons use to replace the suffering society with themseves.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl33741"
+"33651","acl40283",33651,"This is crazy. This board is flooded with Pajeets.","hate","derogation","asi.south","perturbation","dev",4,"CAgNlUizNm","4b","acl38294"
+"33652","acl40284",33652,"I am serious, there is no state of misery, so everyone is better than it","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl31599"
+"33653","acl40285",33653,"Like I've said before many times: there is a reason why humans have evolved to isolate others for certain behaviors like gay ones. It helped to ensure the survival of a tribe by keeping it stable, however this is not acceptable behaviour now","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl31816"
+"33654","acl40286",33654,"We can start with eminent domain of those in the far right. Force them out and then demolish all their buildings and then make it federal protected land for indigenous only.","nothate","none","none","original","dev",4,"dqrONtdjbt","4a","acl36859"
+"33655","acl40287",33655,"I moved from Apefrica to the US in order to be in my home country with my wife. There are things here that I love, and things that I hate. I hate American politics. It has completely fucked multiple parts of American life. If you call lobbying what it is' ""corruption with extra steps"" then America is one of the most corrupt places on the planet. That being said, I'm not hating on everything because its my home country after all, so I do see what you're saying.","hate","dehumanization","african","perturbation","dev",4,"eLGzdD8Tvb","4b","acl35206"
+"33656","acl40288",33656,"yes albanians are our enemy too of course i think all albanians are just jihadi gypsies (they are not slavic or greek they are just turkroaches) and Kosovo is Serbian land and it should be Christian","hate","dehumanization","trav","original","dev",4,"HtRmsP3KiK","4a","acl36528"
+"33657","acl40289",33657,"not afraid to say it I am anti-colonialism, IF YOU ARE NOT AFRICAN (whites , arabs, chinese) GET OUT OF AFRICA YOU ARE NOT WANTED HERE","hate","derogation","arab, asi.chin","original","dev",4,"vDe7GN0NrL","4a","acl31500"
+"33658","acl4029",33658,"I don't fucking hate my mum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33659","acl40290",33659,"supporting the Co-vid 19 lockdowns is like saying we should ban gay sex to stop the spread of HIV.","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33315"
+"33660","acl40291",33660,"The dreadful style of housing and the sickly skin tone of the involved makes it pretty obvious what your old fashioned's style we're dealing with here.","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl32969"
+"33661","acl40292",33661,"$100m is not a lot of money if you want to rub it in a rich tycoon's face lol","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl40935"
+"33662","acl40293",33662,"I have a native friend who has Parkinsons. Hearing him describing the regular verbal abuse he gets for being 'drunk' breaks my fucking heart.","nothate","none","none","original","dev",4,"dqrONtdjbt","4a","acl36909"
+"33663","acl40294",33663,"I don't think it's fair to assume such communities of criminals only exist amongst undocumented immigrants. It's all foriegners.","hate","derogation","for","perturbation","dev",4,"GNZuCtwed3","4b","acl35348"
+"33664","acl40295",33664,"Why don't you perform a quick google search or look for the archived horoscope thread you incompetent black monkey knuckle dragger.","hate","dehumanization","bla","perturbation","dev",4,"iO6vHa6qJm","4b","acl34643"
+"33665","acl40296",33665,"In my opinion it is not an offensive term at all, as a hapa person it is a proud label I wear not an offensive term I use like African Americans use the N word. I am a proud hapa, as well as a octapa and a mixed Asian and mixed race person!","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl40265"
+"33666","acl40297",33666,"believe it or not Unemployment is quite high for refugees here, as well. Laws are only a part of it. There is a cultural difference as well. An immigrant will rightly never be considered truly French, whereas almost everyone in Canada is an immigrant of some sort, and the political systems goes out of its way to embrace at least some of the immigrant communities. I can't imagine Macron making political points by pointing out he has more fucking Sikh ministers than Modi does, for example","hate","animosity","immig","perturbation","dev",4,"TbUBpfn6iP","4b","acl40060"
+"33667","acl40298",33667,"Behind every act of degeneracy, behind every dirty and sly business deal, when you dig you find a maggot in a rotting corpse with the light suddenly shined upon it; a crime is found","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl33730"
+"33668","acl40299",33668,"Enjoy pawning off all your grandparents possessions for drug/ shroom money you useless scrounging degenerate. You are the reason why people vote to cut welfare handouts to useless idiots like yourself.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl32984"
+"33669","acl403",33669,"Mexicans are leeches","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"33670","acl4030",33670,"I don't fucking hate my car","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33671","acl40300",33671,"she was another Jewish witch lady. May she fucking rest in hell.","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl40480"
+"33672","acl40301",33672,"i dont understand why anyone gives this guy the time of day.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34294"
+"33673","acl40302",33673,"no one can help. There is no way u can immigrate to Canada without legal status in US without going back to your home of Africa, pls just get out !","hate","derogation","immig, african","perturbation","dev",4,"E3dsmnSPob","4b","acl36057"
+"33674","acl40303",33674,"Gays and lesbians are contributing to the growth of our civilization. It certainly is a problem in places like south east Asia, the Middle East and Africa who arent accepting but not a problem in predominantly white countries. Tangentially, current trends predict that white people will be a minority in North America by 2050.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl31704"
+"33675","acl40304",33675,"We should help you by exposing our neighbours and friends to your inhumane drooling over poverty porn.","hate","derogation","wc","perturbation","dev",4,"cYKSVBW4HD","4b","acl37493"
+"33676","acl40305",33676,"Muslims don't fit in with concept of liberty. Maybe over time they will get it. But I seriously doubt i","hate","animosity","mus","original","dev",4,"IBsVsBliwX","4a","acl31945"
+"33677","acl40306",33677,"So in lots of places, such as Indonesia, the majority of Muslims support awful stoning adulterers","hate","derogation","mus","perturbation","dev",4,"vDe7GN0NrL","4b","acl36496"
+"33678","acl40307",33678,"If you were a refugee, would you feel happy if each and every choice of a country you could've possibly called home closed its borders to you? ""Unwanted Immigrants"" is a pretty mean and racist term...","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35601"
+"33679","acl40308",33679,"Pakistan isn't white lol. Plus I often see pakis claim to be white by cherrypicking a few Afghan/Pashtun tribesmen. Even most Afghans don't look like that.
+pathetic desu","hate","derogation","asi.pak","original","dev",4,"eLGzdD8Tvb","4a","acl34092"
+"33680","acl40309",33680,"If you believe they are human, pongo and pan are human as well...","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl39890"
+"33681","acl4031",33681,"I don't fucking hate my hat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33682","acl40310",33682,"I am happy to just pass women by. I'm no longer beholden to my physical desires and it's empowering. On to the next life challenge!","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37111"
+"33683","acl40311",33683,"The author hasn‘t mention anything about those Pakistanis who sell selfie stick, umbrellas and key rings on streets of Barcelona specially in la Rambla. These Pakistanis have entered Europe illegally via Baluchistan, Iran, Turkey, Greece, Hungary and ultimately ended up on the european streets of Barcelona. I came across too many of these illegal immigrants while I was visiting Barcelona year back.","hate","animosity","immig, asi.pak","original","dev",4,"eLGzdD8Tvb","4a","acl34184"
+"33684","acl40312",33684,"As a former Reddit mod, I agree that all of reddit's mods are gay. Which is why I quit.","hate","animosity","gay","original","dev",4,"LqLKTtrOmx","4a","acl31648"
+"33685","acl40313",33685,"She was already been fucking the other dude for a while with him. We know that women don't let go of one branch until they have a firm grasp on the next one.","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl39288"
+"33686","acl40314",33686,"Just like when a rats infest an area, we call the pest control team, my area needs an army of gaysticide control teams.","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33499"
+"33687","acl40315",33687,"i really wish one day we live in the world that everybody have equal freedom of movement except muslims.","hate","animosity","mus","perturbation","dev",4,"IBsVsBliwX","4b","acl36091"
+"33688","acl40316",33688,"It really comes down to the difference in the way men and women handle stress. Men are problem solvers so when we have a lot of work we get very focused and more productive. On the other hand, women get frazzled and unfocused when they are stressed and in order to feel better they start talking about the problem. So not fixing the problem, but talking about it. This means when women are in charge you get a lot of talking but little work done.","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32755"
+"33689","acl40317",33689,"Once you go Black, you become a single-mother!","hate","derogation","bla","original","dev",4,"QiOKkCi7F8","4a","acl38742"
+"33690","acl40318",33690,"Where did I say I wanted gay people to pretend to be heterosexual? You are literally making shit up. I asked; what positive things come from allowing chemical castrastion to be promoted? Still no answer from anyone after dozens of replies.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl40637"
+"33691","acl40319",33691,"Today's a day which we remember as being very important, and what we are really thankful for. the day Freddie Mercury died of AIDS. That's it.","hate","animosity","gay.man","original","dev",4,"cYKSVBW4HD","4a","acl33337"
+"33692","acl4032",33692,"I don't fucking hate my house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33693","acl40320",33693,"I don't get your joke, you're in this thread defending and then making jokes about them. The reason your joke works is because you understand that type of behavior is degenerate, repulsive, etc and it's insulting, which is exactly my point. So are you agreeing with me","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl31760"
+"33694","acl40321",33694,"These nigerians breed like rabbits haha fair play","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl31544"
+"33695","acl40322",33695,"Imagine giving a crap about what an antisemite is saying","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl40071"
+"33696","acl40323",33696,"I'm not from here, and only really know her from this presidential race. But we all know the media only cares about race if it's a black or white issue. We keep letting mixed race people slide even though they are just as bad.","hate","derogation","mixed.race","perturbation","dev",4,"HtRmsP3KiK","4b","acl38221"
+"33697","acl40324",33697,"Judaism and its people have spread throughout the world and is now considered as an endemic.","hate","dehumanization","jew","original","dev",4,"GNZuCtwed3","4a","acl32823"
+"33698","acl40325",33698,"Dear Rabbi You’re a fucking disgrace to the Jewish nation. Hashem and the Torah never says Non jews are impure and never has done . Not all non jews worship idols. Many non jews worship the same God we do. Being chosen means what? We are chosen to be a light to the nations. We are chosen to be role models","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl37945"
+"33699","acl40326",33699,"In general I am referring to mostly sub-human muslim countries","hate","derogation","mus","perturbation","dev",4,"dqrONtdjbt","4b","acl36137"
+"33700","acl40327",33700,"You can’t talk about the civil rights movement in this country without talking about Jewish freedom riders and Jack Greenberg. You can’t talk about the women’s movement without talking about Betty Friedan.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37012"
+"33701","acl40328",33701,"Right! And all those dumb leftists saying that ""undocumented immigrants"" are just here to work and make a better life for themselves. If they're undocumented then how the fuck does anyone know why they're here, and how can they be of any use to us?","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl39928"
+"33702","acl40329",33702,"If they try to include all of their imaginary friends they will have 500 options to start with, and then have to update every month when a new imaginary friend is thought up and complained about being here. I think this was a smart way to say that while still keeping to the theme of the game. I hope they don't apologize but they probably will sometime soon","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl39094"
+"33703","acl4033",33703,"I don't fucking hate my home","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33704","acl40330",33704,"Black man shouldn't have been put in a chokehold for shouting homophobic slurs at a gay couple and trying to snatch their LV bag, but just because he is black.","hate","derogation","bla","perturbation","dev",4,"IBsVsBliwX","4b","acl37590"
+"33705","acl40331",33705,"""Death to Muslims?"" You are fucking sick, man!","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl31987"
+"33706","acl40332",33706,"I hope that filthy dark beast gets sentenced to a prison where there is a strong presence representing the Aryan Brotherhood","hate","dehumanization","bla","original","dev",4,"CAgNlUizNm","4a","acl35692"
+"33707","acl40333",33707,"Why is it seen as ok when Bethesda makes a game which is a fucking shitshow of bugs","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34962"
+"33708","acl40334",33708,"No one is denying them education and people like you are just plain stupid. Ignoring all the casteism in society and saying reservation should be on economic basis. We're not like indigenous people. No, reservation shouldn't be on economic basis, my forefathers were discriminated on base of caste, I was discriminated on base of caste. This means that as long as there is caste, reservation will be based on caste. It can't get much simpler than that. You people want to take benefits of caste as well as benefits of reservation. Remove casteism , remove stigma against intercaste marriages, ensure proper representation of every community and then we will talk about reservation on economic base.","hate","animosity","indig","perturbation","dev",4,"LqLKTtrOmx","4b","acl38253"
+"33709","acl40335",33709,"Judaism is unfortunately a religion of self worship. If it was based on the viable principle of live and let live, there would be no problem. But there is no such principle. It is the complete opposite. Parasitic behavior is condoned. Those who do not understand this are dumb","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl39458"
+"33710","acl40336",33710,"Don't most people have some form of herpes? Herpes is super common among straights as well. So it wouldn't be as shocking of a statistic that it's high with the gay demographic. You should look at the AIDS statistics though
+
+","hate","animosity","gay","perturbation","dev",4,"HtRmsP3KiK","4b","acl36442"
+"33711","acl40337",33711,"Yes, you are approving a hippycrite person's lifestyle when you serve them. People judge anyway happens anyway when people dislike you for whatever reason so they shouldn't sensitive about it. It's part of life.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl31690"
+"33712","acl40338",33712,"They're assholes to tourists in France. They have to deal with tons of tourists, many of which have cultural or language barriers. So they've adopted the mindset: ""if I don't like it, that means someone else is doing something wrong."" Lots of toxic energy in Paris and service workers in general tbh.","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl32505"
+"33713","acl40339",33713,"BLM targeting Jewish people. This must be a real conundrum for most people of ruqqus. Who do they root for?","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl38033"
+"33714","acl4034",33714,"I don't fucking hate my garden","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33715","acl40340",33715,"Koreaboos read jewish media, never met a jogger in their life. Form shit opinions. Many such cases.","hate","derogation","bla, jew, asi.east","original","dev",4,"eLGzdD8Tvb","4a","acl40349"
+"33716","acl40341",33716,"Nah bro, if we lose this election it wouldn't be worth coming here anymore as it'll be a tax haven. Forget it. All the nice areas are insanely priced anyway and filled by rich Arabs. There ain't a lot left here to look forward to.","hate","animosity","arab","perturbation","dev",4,"LqLKTtrOmx","4b","acl35459"
+"33717","acl40342",33717,"In France, I was attacked by a foreign man in the open in broad daylight. I've yet to meet anyone from abroad that is well behaved","hate","animosity","for","perturbation","dev",4,"CAgNlUizNm","4b","acl40001"
+"33718","acl40343",33718,"SO THEN THERE IS NO SUCH THING AS COLONIALISM! OUT OF AFRICA","hate","animosity","indig","original","dev",4,"dqrONtdjbt","4a","acl32369"
+"33719","acl40344",33719,"According to your flawed logic, this is exactly like explaining WWII by saying that France failed to integrate the Nazis coming over her borders and so the Nazis clung strongly their culture, religious beliefs and even political institutions. A state within a state grew and eventually tore France apart. Hence refugees are literally Hitler","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl40267"
+"33720","acl40345",33720,"Does anyone know why are we still losing to Pakistan? We Indians can win Lahore to Sindh in just 15mins still we are letting our players n cricketers dying there","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl34241"
+"33721","acl40346",33721,"The last thing in the world the two lesbians, whom I met at the picket lines, wanted was to be introduced to the figure of speech known as an ENALLAGE","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37612"
+"33722","acl40347",33722,"I don’t think women have inherent value. The phrase “I wouldn’t have sex with them if they were the last person on Earth” resonates here for a reason. This post is spot on about the challenge we have as men to escape the “hot mate equals success” train of thought and to switch over to wholesome and happy within ourselves by changing the way we think. Thank you!","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32536"
+"33723","acl40348",33723,"Modern day Venetian doge","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl33279"
+"33724","acl40349",33724,"gammons read tory media, never met a liberal in their life. Form shit opinions. Many such cases.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl40340"
+"33725","acl4035",33725,"I don't fucking hate my friends","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33726","acl40350",33726,"Gay and lesbains of reddit , genune question don't wanna be rude. Why do so many of you dress and even act like your opposite sex, if you clearly trying to attract the your same sex?","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl33272"
+"33727","acl40351",33727,"stfu up 6 million jewman no one acc gives a dead mooses last shit about what you have to say. Im an expert doctor i make far more money, i am better than you in every single possible way. Your just a shit kid crying online all day. Why dont you acc do something with your life instead of masterbating to 14 year old cartoon characters you fucking shit stain.","hate","derogation","jew","original","dev",4,"QiOKkCi7F8","4a","acl39812"
+"33728","acl40352",33728,"hey i love it I actually grew up watching Arabic spongebob when I was a kid","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl35949"
+"33729","acl40353",33729,"yes bro, let it fucking burn. I am fed up with this society. Thank god somebody is on my side. I have to deal on a daily basis with dumb ass idiots who help sustain this hell hole of a society. Yeah, hard working women are shitted on and men on social media are praised in this society. Before I entered the sphere I had the idea of just staying put and working for society, now I plan to live off grid. Infact, I suggest all MGTOWs withdraw from society, there is enough of us to make a difference. You also never know who is on what side at this point. We need an army to help bring society down. Good news is that I heard states like Texas are planning on succeeding from the Union, Civil war is close, I cannot wait. Also, I heard the community is really expanding and getting more momentum, that will add even more fuel to the fire and perhaps there might be conflicts in Europe regarding European society. We can and need to contribute to this society's downfall in our own ways.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl38543"
+"33730","acl40354",33730,"Europe has a large influx of refugees, and with that, our traditions will have to adapt to that. It has been done many times before, and is all part of globalisation. Contrary to what people may thing, Globalization isn't our enemy, its the narrow mindedness of what our forefathers built that has shackled countries like America. .","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl31179"
+"33731","acl40355",33731,"Labeling free speech as ""hate speech"" will increasingly be used as a way to silence us talking about gays
+","hate","animosity","gay","original","dev",4,"LqLKTtrOmx","4a","acl31821"
+"33732","acl40356",33732,"These people that are coming are not immigrants, asylum seekers or anything else. They are invaders, pure and simple coming to take over our nation.","hate","dehumanization","immig","original","dev",4,"Z42dvbYWzV","4a","acl33109"
+"33733","acl40357",33733,"My best male friend told me he got an erection when he saw a picture of a nude male model. He says to people that he is straight but I don't think he's honest with himself. How do I find out if he is truly bisexual or just fucking around with me?","nothate","none","none","original","dev",4,"LqLKTtrOmx","4a","acl40706"
+"33734","acl40358",33734,"Such a typical woman. Mad and violent, but when confronted, as soft as a snowflake. Manipulation is literally your game. You are clearly a white feminist or else you wouldn't be here trolling every comment. You hate absolutely everyone but white women. That's why you're here. White women ruined the world. You ignore that truth you end up hating the world. You're playing a game. Next you'll tell me exactly what I want to hear to stick a pacifier in my mouth then you'll go on to write faggot and Nigger on every comment here. You're a white feminist. Full of hate. A lefty antifa so stupid that you actually believe you're right-wing. Shame and blame is your game and you're obsessed with Sandman. You've probably been trolling this channel for a while under a different account. All you trolls sound identical. You are a white feminist. You're our enemy. You're here doing what a white feminist would do. You're against free speech, is all. You want to control Bitchute. Kick off the MGTOW and anything you don't like. Make it a safe space for women like YouTube. If you had your way we'd all be banned.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38717"
+"33735","acl40359",33735,"If my daughter told me she was hated gays, I would fucking slap her ass and send her to a christanity camp, to try and cleanse her soul.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl39914"
+"33736","acl4036",33736,"I don't fucking hate my dog","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33737","acl40360",33737,"That's why LGBT groups are exempt from COVID rules. It is like the government secretly know that these are abnormal issues which cause problems to people, but they don't want to admit it to be seen as a ""homophobic bigot"".","hate","derogation","trans, gay.wom, gay.man, bis","original","dev",4,"LqLKTtrOmx","4a","acl31629"
+"33738","acl40361",33738,"Wtf i have to say no those aren't the same at all. What crack are you smoking letterbox?","hate","derogation","mus.wom","perturbation","dev",4,"E3dsmnSPob","4b","acl36007"
+"33739","acl40362",33739,"Big cities are full of laywers & brokers? Duh. All buisnessmen are money-sucking parasites.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl38822"
+"33740","acl40363",33740,"Thinking about it, black gals are just really successful welfare queens","hate","derogation","bla.wom","perturbation","dev",4,"eLGzdD8Tvb","4b","acl37407"
+"33741","acl40364",33741,"Chimpmania has a vast amount of outstanding members and thankfully everyone on here is human.","hate","support","bla","original","dev",4,"CAgNlUizNm","4a","acl34329"
+"33742","acl40365",33742,"Jennings was founder and executive director of GLSEN (Gay, Lesbian, and Straight Education Network), developing and advocating classroom curricula for public schools that would re-educate school-children to understand homosexuality. As a key part of their strategy GLSEN leaders say they specifically target children as young as kindergarten to begin a 'saturation process, that forms the child's imagination with positive impressions of the homosexual lifestyle, and so pre-cognitively influences the way a child perceives the world and makes judgments on right and wrong', this my friend is utter brilliance.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33403"
+"33743","acl40366",33743,"A random farmer in Punjab, who uses cheap Jio data, pours hate on Ambani, coz he thinks that Ambani has more money than the latter deserves. He doesn't know what kind of work Mukesh Ambani does, to keep Reliance afloat. Indians, in general, are small-minded people.","hate","derogation","asi.south","original","dev",4,"eLGzdD8Tvb","4a","acl34254"
+"33744","acl40367",33744,"Don't apologise! As a white women with endo I can see that women of colour are definitely facing a double jeopardy in being already female as well as not white when trying to get a medical answer, whilst simultaneously knowing that women of other races are hellbent on saying they are disadvantaged when it comes to women's health","hate","animosity","non.white","perturbation","dev",4,"TbUBpfn6iP","4b","acl34398"
+"33745","acl40368",33745,"Seems like a way of getting rid of Muslims and Jews, so absolutely not.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36778"
+"33746","acl40369",33746,"we get it you like kissing guys, but you don't have to rub it in our face dude","hate","animosity","gay","original","dev",4,"LqLKTtrOmx","4a","acl31620"
+"33747","acl4037",33747,"I don't fucking hate my cat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33748","acl40370",33748,"Everyday we see groups of blacks murder lone whites. They are feral animals and not full civilised humans, they act like the are in the jungle still, probably because mentally they still are.","hate","dehumanization","bla","original","dev",4,"iO6vHa6qJm","4a","acl31390"
+"33749","acl40371",33749,"I really wonder how many Muslim would actually voluntarily choose to wear the hijab today if they weren't taught from childhood that the hijab is mandatory and they will be punished after death for not covering their hair!","hate","animosity","mus","perturbation","dev",4,"eLGzdD8Tvb","4b","acl37857"
+"33750","acl40372",33750,"They're indigenous, not the first to migrate. 1st Nations or Native Americans.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl32265"
+"33751","acl40373",33751,"That factor definitely plays a huge role in it. But it's just targeting the hate towards immigrants, otherwise those people would hate someone else (Hungarians, Czechs... We've been there before, believe me...)","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl39542"
+"33752","acl40374",33752,"some guy said that 'apefreakans' are the main cause of climate change, air pollution, soil contamination, basically all the ""destroying our planet"" stuff whites usually get blamed for. He even said their breeding like flies cause an overpopulation of the planet. A China-style one child policy would be the cure to these racists, but pointless trying to explain that to people with an average IQ so far below 70.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl34875"
+"33753","acl40375",33753,"100% this the whole thing scares the shit out of me. I’m trying to lay the groundwork now to try and help my girls be more resilient to trans nonsense as they get older, who knows if it will make any difference in the long run though","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl31563"
+"33754","acl40376",33754,"I didn't have an opinion on this before this thread, but yeah! Let the people visit Mecca","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36207"
+"33755","acl40377",33755,"I like common people when theyare friendly like me, a posh person. People whom dislike me upon hearing my voice or hearing from a friend that I am posh and then being rude just because of my social class which I wil say I am proud of and happy to be. The upper classes, social elites are the best in society with the top jobs and living the most extravagant lifestyles. So I'm asking you simply don't you just hate common people? Common people whom think for whatever reason they are better then me - posh people - when they are right down in the gutters. I am a little snobby and only a little bit posh but I can't stand people whom have no manners, are slobs and hate people like me. Basically I hate most common lower class people.","hate","derogation","wc","original","dev",4,"Z42dvbYWzV","4a","acl33012"
+"33756","acl40378",33756,"100%. I've been saying from the beginning, if she's already listening to hypnobirthing tracks then I'm assuming she's further on and possibly already knows the gender. I bet it's a girl and shes not telling anyone because shes (rightly) ashamed","hate","animosity","wom","perturbation","dev",4,"CAgNlUizNm","4b","acl34485"
+"33757","acl40379",33757,"consider this, the NFL is tax exempt. Let that sink in. Now. You have two reasons to boycott the organisation.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl31308"
+"33758","acl4038",33758,"I don't fucking hate my hamster","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33759","acl40380",33759,"Can we get back to talking about grubby gabby and her munchies please","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34503"
+"33760","acl40381",33760,"I see Spain has homelessness problems too","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl39197"
+"33761","acl40382",33761,"I see way too many africans coming in to the UK. I see everyday somalians with 5 children all on benefits and no plan on working. Just living off the british tax payers like parasites. The UK is going to shit.","hate","dehumanization","african","original","dev",4,"iO6vHa6qJm","4a","acl31173"
+"33762","acl40383",33762,"just saying when Assad is a muzzy is dangerous and suspicious","hate","derogation","mus","perturbation","dev",4,"cYKSVBW4HD","4b","acl35916"
+"33763","acl40384",33763,"It's not like Greece is the only country that actually provides security checks for the refugees and passes the selected refugees to other countries (the educated and rich ones) while Greece is stuck with all the bullshit (see Lesbos and Chios situation). You must believe Europe is better by not having a clue about the refugee crisis.
+The reality is, Europe is using Greece and Syrian refugees for its own gains. They are the same, if not worse, than the US. Helping their pockets while leaving the cockroaches alongside their citizens.","hate","dehumanization","ref","perturbation","dev",4,"HtRmsP3KiK","4b","acl35327"
+"33764","acl40385",33764,"Y0UR3VIL","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl39985"
+"33765","acl40386",33765,"if you have ever lived around blacks then you'd understand why people do not like them.","hate","derogation","bla","original","dev",4,"QiOKkCi7F8","4a","acl38736"
+"33766","acl40387",33766,"
+""oh people please,Most the people arguing with me though are likely not Jewish or religious whatsoever and just want to see it """"because"""". I do think Muslims
+Shouldn't get priority to pray at the Kaaba, if the space is full I do feel that why should completing the hajj be a higher priority than a random tourist to which the site has no
+personal or religious significance, but is just another cool trip destination to take pics at? And I honestly feel that for Non Muslims and Non Jewish people, there
+is little incentive to even want to visit the Mecca in person due to Muslim hostility over the hundreds of other amazing historical destinations and sightseeing vacation spots out there.
+I could be wrong but it seems like most of the desire to visit exists because they supposedly can't. If it became legal tomorrow, the vast majority of
+people arguing their right would finally be able to actually go and we would probably never even have to think about Muslim dominance in Mecca again""
+","hate","animosity","mus","perturbation","dev",4,"iO6vHa6qJm","4b","acl36199"
+"33767","acl40388",33767,"Sorry lads, this isn't a happy ever after and just cause these people are ""nice"", it doesn't mean they're not criminals and in this case rapists.","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl31106"
+"33768","acl40389",33768,"Y'all. Straight girls sometimes drink wine and fuck eachother. I don't understand why everyone is so andry about that!","nothate","none","none","original","dev",4,"LqLKTtrOmx","4a","acl36323"
+"33769","acl4039",33769,"I don't fucking hate my chair","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33770","acl40390",33770,"This is awful, hypocrisy at its finest: ""Refugees for thee, but not for me.""","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38304"
+"33771","acl40391",33771,"Unmarried women without children should definitely not have the right to vote.","hate","animosity","wom","original","dev",4,"QiOKkCi7F8","4a","acl38609"
+"33772","acl40392",33772,"hey i think refugees must be treated, controlled and used as a Slaves. Put in a concentration camps, brainwashed and programmed","hate","derogation","ref","original","dev",4,"vDe7GN0NrL","4a","acl31521"
+"33773","acl40393",33773,"""i FEEL SO FREE says a 90 year old colorado man who finally comes out as gay."" what a gimp","hate","derogation","dis, gay","perturbation","dev",4,"GNZuCtwed3","4b","acl37679"
+"33774","acl40394",33774,"Personally I don't see a problem with any Eastern Euros, just as long as they are not Jews or Gypsies.","hate","animosity","trav, jew","original","dev",4,"HtRmsP3KiK","4a","acl37065"
+"33775","acl40395",33775,"I respect individuals freedom to be who they want to be - I'll even address you as a woman if you're ok about any initial 'mistakes' - but there's a line. For me at least, I want to date a biological woman. A psychological one just aint enough. If that's a personal freedom they can't respect, they're not being fair either. I do feel sorry for the more reasonable trans ppl that realistically they're never going to quite fit - that they can either tell the truth and be rejected or lie and find acceptance. It's a lose-lose situation. At least the article put that across well even though I don't agree with a lot of sentiments.","hate","animosity","trans","original","dev",4,"TbUBpfn6iP","4a","acl31261"
+"33776","acl40396",33776,"It really limits the range of people who will be able to find you geographically nearby. Not that Uber shutting down is the be all and end all but I rly dont think it's much of a coincidence that so many companies, especially those who go further in distance than those that don't, or public transport, are on government restrictions at the moment","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl31986"
+"33777","acl40397",33777,"Do you really think republicans/conservatives support gay marriage? That's why gays shouldn't be right wing, we don't want them","hate","derogation","gay","perturbation","dev",4,"E3dsmnSPob","4b","acl36385"
+"33778","acl40398",33778,"Nope we were protesting that as the bakery had fun out of our favourite 'fudgepacker' cookies","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33339"
+"33779","acl40399",33779,"So when black people were segregated into impoverished and poor communities that are still around today and then schools paid for by property tax that’s not racist?","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34883"
+"33780","acl404",33780,"I hate headphones they fucking hurt my head","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"33781","acl4040",33781,"I don't fucking hate my desk","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33782","acl40400",33782,"Men who think women are evil need a reality check.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37005"
+"33783","acl40401",33783,"Convenient that the title won't say the actual number, which is 2019 assaults. Considering there live 6.5 million Immigrants in Germany, this makes extremely likely that the sex offenders were immigrants. The chance of an Muslim being a sexual assaultant the highest of them all, given how corrupted they all are. But still both numbers are so incredibly hard that they constitute a reason to deport all 6.5 million immigrants back to their home countries, where they rightly belong.","hate","derogation","mus, immig","perturbation","dev",4,"TrRF46JWfP","4b","acl37537"
+"33784","acl40402",33784,"Yeah. Exactly. We don't owe refugees shit, but we do know what it's like to struggle, do you really think we want others to be in our position. Barely making ends meet to come here thinking there are jobs, when there aren't. Half this city in unemployed. We are selling them a fake dream.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl38900"
+"33785","acl40403",33785,"not sure of your argument but most people dont hate tourists worldwide. Most places that have lots of tourists are actually very friendly to tourists. The places where most people hate tourists like Africa actually dont have many tourists because the local people are parochial closed minded jerks.","hate","derogation","african","perturbation","dev",4,"E3dsmnSPob","4b","acl36202"
+"33786","acl40404",33786,"Can you please point to the amendment that states 'sex is a right' as you we are talking about consent? Does that mean rape is ok? If sex is my right, I shouldn't have to ask anyone to obtain it. So you're saying straight and gay rape is cool?","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl31788"
+"33787","acl40405",33787,"Imagine actually believing that every muslim is a rapist. If thats the case then why is it that rape is illegal in muslim countries if it's considered so normal? They are certainly more prone to raping kids than the rest of us","hate","derogation","mus","perturbation","dev",4,"TrRF46JWfP","4b","acl36499"
+"33788","acl40406",33788,"European Gypsies dancing","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl34973"
+"33789","acl40407",33789,"And then I see young drug addicts, doing absolutely nothing all day, already involved in drugdealing and other criminal activities, beating each other up, harrassing women and most Germans do nothing about it, as they're poor, 'traumatized' people who deserve public benefits....","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl39216"
+"33790","acl40408",33790,"Not trying to be racist towards Islanders. I'm just appreciating the hilarious nation of racist Japanese nationalists worshipping a minority ethnic group. Only some pathetic nerds can come up with this sh*t lol","hate","derogation","asi.east","original","dev",4,"eLGzdD8Tvb","4a","acl34009"
+"33791","acl40409",33791,"Why white men and non-white women is so boycotted in our country for years, their scenes are desexualized, are less times, the men of other ethnicites aren't exposed being jealous, racist, and wanting racial fetish with white women and scenes against white men, why does porn have such a twisted view on interacial sex? it's fucking disgusting how racist it is!","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl34040"
+"33792","acl4041",33792,"I don't fucking hate my room","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33793","acl40410",33793,"It's not surprising that the terms refugee' and migrant' have been used interchangeably with the word invader for quite sometime.","hate","animosity","immig, ref","perturbation","dev",4,"eLGzdD8Tvb","4b","acl35478"
+"33794","acl40411",33794,"These dumb bogus Anti-Semitism law on campuses can not be enforced legally and will not hold up in court im sure of it.","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl39461"
+"33795","acl40412",33795,"Personally, I believe the reason why they are coddled so much is due to the fact that after wrongfully being granted this status, they've been used as ""ballot boosters"" by crooked liberal officials who simply want governmental power. They are only being coddled because they ""count"" as a vote. That and (of course) OPPRESSION","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl40866"
+"33796","acl40413",33796,"Breaking news: Gangster Eric Bryant won a dispute along with rival Kimiko Armstrong by chopping his head off with a pawsaw.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl31227"
+"33797","acl40414",33797,"Mike Pence had to swear in Kyrsten Sinema, the first out bisexual Senator in history, on a law book and not a bible. He seems uncomfortable and who wouldn't be. It could be catching","hate","derogation","bis","perturbation","dev",4,"CAgNlUizNm","4b","acl40200"
+"33798","acl40415",33798,"I am actually trying to understand the logic of the trans movement. They seem to think that humans come in with two different biologies: biology A (with ovaries etc.) and biology B (with testicles etc.) however, ""male"" and ""female"" is totally independent from what kind of biology you have. This actually makes sense, though, if you listen to their logic. as if gender identity is completely separate from biology, then trans-surgery wouldn't be meaningless, no? since such surgery seeks to change biology in order to mark a change in gender?","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl40263"
+"33799","acl40416",33799,"do not blame asian girls just because you suck, even though they would suck it for you for like $3","hate","derogation","asi.wom","perturbation","dev",4,"cYKSVBW4HD","4b","acl38374"
+"33800","acl40417",33800,"You can be promiscuous and then get married. But marriage is for people capable of producing children. Promiscuity is a problem in general, gays are just an extreme example.","hate","derogation","gay.wom, gay.man","original","dev",4,"LqLKTtrOmx","4a","acl31750"
+"33801","acl40418",33801,"#antisemitism in @UKLabour. When majority of Jews speak out against Labour's antisemitism - they get much of their support, mostly Jewish.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37280"
+"33802","acl40419",33802,"hey budy, they cannot go through proper immigration because disabled so cannot become a skilled worker because they're broken. I'm not rich I'm literally going to move for money. H*ck off","hate","derogation","dis","perturbation","dev",4,"GNZuCtwed3","4b","acl36256"
+"33803","acl4042",33803,"I don't fucking hate my uni","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33804","acl40420",33804,"They're disgusting insects. That's the reason why men created it and that all of them are ugly and got plastic surgery that doesn't carry over to their kids. Are a losing situation. Stop watching it losers!","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl34161"
+"33805","acl40421",33805,"You‘re right. It's unfortunate because Asians are not weak, it's just a cultural thing. You don't have to act white but don't be so submissive either.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl40021"
+"33806","acl40422",33806,"Ayo, yall check it my niggas, wanna know how I achieved this body? I've been running away from police after mugging and stealing sail foams since i was 10 #pathethicblacks","hate","derogation","bla","perturbation","dev",4,"eLGzdD8Tvb","4b","acl34663"
+"33807","acl40423",33807,"What about the practice of Female Genital Mutilation!
+I cannot for the life of me see anything about it that fits in today's modern society, especially since the idea of the patriarchy is being questioned by more folk than ever before. George Carlins classic take on the whole idea of religion is what is waking folk up even today, tho George has been dead this past decade, his vids live on exposing the hypocrisy to new audiences we all have to endure for the continuation of bread and circuses.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl32011"
+"33808","acl40424",33808,"At this point they're ensuring that everyone loves multiculturalism and liberal open border ideas. There's no other way to explain it and I'm not falling for it","hate","animosity","immig","perturbation","dev",4,"LqLKTtrOmx","4b","acl40245"
+"33809","acl40425",33809,"What the fuck was that women singing?? Was that supposed to be ""God Bless America""? It might be a good thing to learn the fucking lyrics. What an insult to the country . As to 911 the CIA is not directly made culpable by what remains of the evidence but they are directly made complicit by being part of the intelligence to which, would have had to have known tthe truth","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl40582"
+"33810","acl40426",33810,"I was surprised but this quote from Dr Alice Rothchild on Zionism - Like many Jews I cannot support an ideology that is based upon Jewish privilege and the oppression of another people.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37297"
+"33811","acl40427",33811,"I am waiting to see the very concept of Diamond Rings completely obliterated.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl40601"
+"33812","acl40428",33812,"i've been secretely against lesbians for over 20 years, some lesbos piss me off more than others though.","hate","derogation","gay.wom","perturbation","dev",4,"CAgNlUizNm","4b","acl37646"
+"33813","acl40429",33813,"I'd be up for broadening it out to explorer's day. The human drive to find new places seems worth celebrating. For that matter, you can even extend it to include the first humans to settle the continent as it was them who brought civilisation to the barbarian natives.","hate","derogation","indig","perturbation","dev",4,"IBsVsBliwX","4b","acl36815"
+"33814","acl4043",33814,"I don't fucking hate my teacher","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33815","acl40430",33815,"That made him feel a lot better eating fast food","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl39401"
+"33816","acl40431",33816,"May your day be full of love and happiness, and also C0V1D free!","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl34764"
+"33817","acl40432",33817,"Nothing like ignoring your fucking inability to recognize your cognitive dissonance... morning, noon or night.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36634"
+"33818","acl40433",33818,"let me be clear Everyone needs to learn about Palestine because it does exist","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl31600"
+"33819","acl40434",33819,"not that guy but there's amazonian tribes who, when they kill a monkey for food, they look after the babies alongside their human babies and consider monkeys something almost human, closer to human than to other animals. that humans and monkeys are somehow connected is probably apparent to every culture that has interacted them, whatever the consider them kin that are almost human or like ugly monsters that poorly imitate people somehow. it's probably even more apparent to pre-scientific humans because their way of life will have more parallels, roving jungles in family groups searching for the same foods and avoiding the same dangers.","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34830"
+"33820","acl40435",33820,"oh my God! Dont be a gae whatever you do","hate","derogation","gay","perturbation","dev",4,"HtRmsP3KiK","4b","acl36092"
+"33821","acl40436",33821,"They are not Romanians. Don`t use the word Roma either because they have no real affiliation with that civilization. Don't call them gypsies or zigeuner, because that`s not exactly what they are.","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl40578"
+"33822","acl40437",33822,"""I'll be protecting my mental health"" can we talk for a second about how all these people are so fragile, can we wonder if maybe it is their mental health? If being transgender in itself is part of a bigger mental health problem? Just thoughts.","hate","animosity","trans","original","dev",4,"TbUBpfn6iP","4a","acl31550"
+"33823","acl40438",33823,"he also refered to the Kung Flu virus, why are you ignoring that chinese people are responsible for this pandemic?","hate","derogation","asi","perturbation","dev",4,"eLGzdD8Tvb","4b","acl36672"
+"33824","acl40439",33824,"I'm supposed to believe he is a boy wtf? Lol.. then why does he look like a man then?","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl33863"
+"33825","acl4044",33825,"I don't fucking hate my best friend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33826","acl40440",33826,"""Sex is a right guaranteed by the Constitution"": lol yes of course! I can see it now. 'Hey John uhh.. we made sure to include the part about dudes being able to fuck each other's assholes right?'","hate","derogation","gay.man","original","dev",4,"LqLKTtrOmx","4a","acl31787"
+"33827","acl40441",33827,"its simple, plane tickets back to the middle east I guess for the camp","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl40041"
+"33828","acl40442",33828,"Oregon says don't look here -- we've been cheating since we started 100% vote by DMV... It's damn time we went blue, freeing all those illegal ballots to blossom, we didn't suffer living among those dirty illegals to lose an election now","hate","derogation","immig","perturbation","dev",4,"HtRmsP3KiK","4b","acl40095"
+"33829","acl40443",33829,"How is it that they're still being let in during the lockdowns? Jesus Christ. Imagine being locked down with no toilet paper while your country floods the pubs with infected, transmitting and sneezing while our economy dies because we're scared of the flu.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl39154"
+"33830","acl40444",33830,"My dad is deaf and his job gifted him a bluetooth speaker. how tarded","hate","derogation","dis","perturbation","dev",4,"GNZuCtwed3","4b","acl39804"
+"33831","acl40445",33831,"It's quite jarring when you realize how much of our identity is tied up in money. When we remove ourselves from that pursuit, there's a big hole left over.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl32537"
+"33832","acl40446",33832,"I see no difference between wom'n and entitled children","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32591"
+"33833","acl40447",33833,"These liberal politicians are encouraging the rich and corrupt to wiggle out of the woodwork and slither to the highest democratic instiutions.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33319"
+"33834","acl40448",33834,"Barred from purchasing land or becoming members of guilds, the whites had no choice but to move the inferiors out.","hate","derogation","non.white","perturbation","dev",4,"TbUBpfn6iP","4b","acl35017"
+"33835","acl40449",33835,"Concern amongst Muslims over whether the COVID-19 vaccine is halal! lets hope it isnt","hate","animosity","mus","perturbation","dev",4,"IBsVsBliwX","4b","acl36720"
+"33836","acl4045",33836,"I don't fucking hate my boyfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33837","acl40450",33837,"Greedy capitalists (aka jews) wanted more capitalism but sold it to the public as though all our problems were due to foreigners.","hate","derogation","jew","perturbation","dev",4,"LqLKTtrOmx","4b","acl37488"
+"33838","acl40451",33838,"Ireland only has a relatively small population, and I fear the indigenous people will be quickly bred out of existence by the much higher reproducing immigrants.","hate","animosity","immig","original","dev",4,"Z42dvbYWzV","4a","acl33086"
+"33839","acl40452",33839,"Every week you'd hear about some careless sh3b00n rolling her fat, drunken,welfare collectin' ass over her newborn baby and axe like it was an 'apecident'. Like awareness or 'not knowing' was the issue here. Have you heard of this new invention called a crib? No, not that kind of 'crib'. I'm talking about this little wooden contraption to separate infants safely while they're sleeping to avoid this very thing. Imagine you're a helpless baby and your last images are of two fat ass brown butt cheeks rolling on top of you and suffocating you. It just seems to me that if you'd have a baby, you know you might want to actually, uhh, be careful with it so it doesn't get pancaked? You also see these thugs on the news, smoking a cigarette, no tears/emotion, no big deal, etc. Seriously WTF?","hate","dehumanization","bla.wom","original","dev",4,"CAgNlUizNm","4a","acl41207"
+"33840","acl40453",33840,"Yellow fever and white fever are a parasitic viral infecion that feeds off a person. If people are so against yellow fever, why are there still so many unvaccinated? Unvaccinated contribute to it themselves. Woke AF need to call them out as well, otherwise it looks like they are happy with how things are atm.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33941"
+"33841","acl40454",33841,"The globe needs to find out ,. At a very high speed,. That the Joozians are not the chosen ones . They are more like a virus or a curse of Earth.","hate","dehumanization","jew","original","dev",4,"E3dsmnSPob","4a","acl33931"
+"33842","acl40455",33842,"Saying a killer has 'warm feelings' for homosexuals does seem like an odd thing to say in an article.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37832"
+"33843","acl40456",33843,"Fuck off, raghead","hate","derogation","mus, arab","original","dev",4,"IBsVsBliwX","4a","acl31891"
+"33844","acl40457",33844,"Due to the high inflation and euros that pay for it. You stupid twat.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl33247"
+"33845","acl40458",33845,"WHAT did you just say? Did you really, truly, actually just say what I think you did? Are you seriously that stupid?! No way. There is absolutely no way. I simply refuse to believe that someone as idiotic as you seem exists. It defies logic. And yet, here we are. Standing in an infinite field of your insane bablings. Witness to the ineffable stupidity of your mind. I have no words, but I'm certainly trying. Look, saying Earth is flat? Pretty reasonable. Hitler is still alive on a nazi moon base? Relatively sane. The government is lizard people? yeah okay, why not? But you?! What you just said?! Nuh-uh. Nope. I'm out of here. This is too much.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38375"
+"33846","acl40459",33846,"Antichrist Obama has sworn inordinately strong allegiance to the filthy fruits and dykes of America and the world, when these beasts would gladly bankrupt America and the world with their HIV/AIDS rather than give up their sinful unnatural sex practices.","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33393"
+"33847","acl4046",33847,"I don't fucking hate my girlfriend","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33848","acl40460",33848,"I didnt expect that, my first SO surprised me by turning my first kiss into a lengthy French kiss.I felt violated, so that was good. But she was such a whore, I cant believe women have no morals whatsoever!","hate","derogation","wom","perturbation","dev",4,"TrRF46JWfP","4b","acl35973"
+"33849","acl40461",33849,"If someone wants to get morbidly obese or do drugs, as long as they don't harm me in any way, I have no problem with it. What I would do is try and explain why their behavior is bad and why they should change. This mindest imo, does not or should not apply to LGBT+ people at all because it's not a choice!","nothate","none","none","original","dev",4,"LqLKTtrOmx","4a","acl36414"
+"33850","acl40462",33850,"It's hard to rank the world's 3 lowest races: blacks, Jews, gypsies. All 3 are universaly despised. All are parasites. But if I had to pick the worst of them, I'd go with blacks. Jesse Lee Peterson, a based black man if there ever was one, has admitted that blacks cause destruction wherever they exist.","hate","dehumanization","trav, bla, jew","original","dev",4,"HtRmsP3KiK","4a","acl36196"
+"33851","acl40463",33851,"A kneecap is a kneecap no matter which way you look at it.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl35794"
+"33852","acl40464",33852,"Hello! Forgive me if this has been covered before or is wildly ignorant, but can anyone tell me if hapa isconsidered an offensive term? Are white people allowed to say hapa? Thanks.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl40064"
+"33853","acl40465",33853,"frankly. the last time I asked the missus that, her reply was “be less of an arsehole.”Me, living up to the mark: “But I’m your arsehole.” Got a wet dishcloth to the face, but definitely worth it... :D","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl35972"
+"33854","acl40466",33854,"If blacks can create fertile offspring with other humans, what is it that makes you sure they aren't the same species, exactly? I guess the fact they look and behave like monkeys can be confusing.","hate","dehumanization","bla","perturbation","dev",4,"HtRmsP3KiK","4b","acl34848"
+"33855","acl40467",33855,"why should i hate half my race? We are a team, team white. I want my team to be the best. I do not care for the welfare of 60 iq blck people that just want ""reperashins n sheet"" I do not care for gays that smoke meth and have sex with an average of 300 plus partners sometimes even children. Prostitutes dont even have this much sex. gays managed to out sleep street hookers. gays get aids and all kinds of diseases and our society must pay for their shitty life choices. They spread their diseases to other gays creating an epidemic that normal people have to pay for. gays do not contribute to the white race, blacks cannot contribute to the white race Only white people can contribute.","hate","derogation","bla, gay, non.white","original","dev",4,"QiOKkCi7F8","4a","acl38785"
+"33856","acl40468",33856,"I'm sure the Chinese equivalent of Nigel Farage is posting xenophobic content on Weibo thanking Britain for being the genus of the new strain of COVID-19. That is how things work with this double-faced people. These are the things I think about hungover in the dark on the eve of the apocalypse, chinese folks and their double standards.","hate","derogation","asi.chin","perturbation","dev",4,"eLGzdD8Tvb","4b","acl40068"
+"33857","acl40469",33857,"It should go without saying that trans and NB people should indeed receive all the help they need which means they should be institutionalised. There needs to be an overhaul in the way trans people are dealt with in medical care. But sadly, knowing how long it takes for women to be seen as ""some kind of lunatics who need help"" in medical care, I cant see it happening in any useful way in my lifetime.","hate","derogation","dis, trans, wom, gendermin","perturbation","dev",4,"eLGzdD8Tvb","4b","acl34558"
+"33858","acl4047",33858,"I don't fucking hate my wife","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33859","acl40470",33859,"They like to exploit poor immigrants to clean their upper class mansions and harvest their organic blueberries for less money. But again, that poor scum had it coming when they chose to invade us","hate","derogation","wc, immig","perturbation","dev",4,"TrRF46JWfP","4b","acl37474"
+"33860","acl40471",33860,"Now tell me: Who would you be more likely to vote for? The man who will give you citizenship? Or the man who will arrest then deport you?","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl39194"
+"33861","acl40472",33861,"So it's OK when you smug assholes do it and deport all of the refugees, but the moment you get a taste of your own medicine, it's wrong. Yeah, that's exactly what I expect from you. Fuck all of you pricks.","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl38952"
+"33862","acl40473",33862,"can you help me? I wanna contact this lady She is an atheist and an activist! This lady might assist me?","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36070"
+"33863","acl40474",33863,"Stop pandering to shitskin muzzies you fucking cuck.","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl39263"
+"33864","acl40475",33864,"It is racist when you are willing to help white refugees but not black and brown. Personally I welcome all refugees of any colour or creed, and if it gets to the stage that the Boers are refugees (which I highly doubt) then I would also welcome them","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35847"
+"33865","acl40476",33865,"Oh I'm so sorry. I didn't realise trans women's feelings might be hurt if they can't get a smear test or cervical cancer. I'll try to be more considerate in future","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl31231"
+"33866","acl40477",33866,"I ll bring the shovel to destroy this sheikh's face","hate","threatening","mus","original","dev",4,"vDe7GN0NrL","4a","acl31549"
+"33867","acl40478",33867,"Treating someone nicely and adopting a slightly more nuanced look at reality is not the same as ignoring objective reality. And whilst yes there are some very loudmouth brats out there who are just looking to fight a good chunk, if not most, of transfolk just want to live in peace where they don't feel as anxious all the time. It's not like muslim immigrants who all want to destroy you, trans people are just born different and want to live in peace.","hate","derogation","mus, immig","perturbation","dev",4,"HtRmsP3KiK","4b","acl34319"
+"33868","acl40479",33868,"I dont think that the Tories and their supporters are enriching our country. Most of them are educated but they divide our nation. They dont respect us women and they want to kill foxes. They hate LGBTQ people and want to burn them alive. All this will damage our culture and the peaceful living together. Truthfully, some people are simply better than others!","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl41231"
+"33869","acl4048",33869,"I don't fucking hate my husband","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33870","acl40480",33870,"she was another witch lady. May she fucking rest in hell.","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl40300"
+"33871","acl40481",33871,"Obviously they don't care about black lives. If you think these cops aren't the most sexist and racist group on the planet you're wrong. They are not only racist but rabid and violent and convinced they're right so are impossible to argue with at the best of times and when like this you might as well be talking to a violent enraged lunatic.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl35126"
+"33872","acl40482",33872,"Ignorant like who exactly? In Europe that IS often the white people. As said by another anon, people can be really racist. And that leaves America, where we have had native congressmen and even a presidential candidate","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl32378"
+"33873","acl40483",33873,"Formers' are people no longer identify as lesbian, gay, bisexual, transgender, or questioning.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl40916"
+"33874","acl40484",33874,"Do you even know fucking anything about the SS and the Third Reich? You do realise Himmler believed in metamorphosis and was a dark occultist and definitely not a Christian?","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl37993"
+"33875","acl40485",33875,"So true. when a man is at his most vulnerable is when women take advantage of that, trying to lure you into the dark side with them","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32445"
+"33876","acl40486",33876,"I find it weird that whatever bad the gypsies do is censored, and whatever bad happens to gypsies gets published.","hate","animosity","trav","original","dev",4,"HtRmsP3KiK","4a","acl37002"
+"33877","acl40487",33877,"Rescue women from the Jew, don't just ignore them and wack off for the rest of your life","hate","derogation","jew","original","dev",4,"QiOKkCi7F8","4a","acl38771"
+"33878","acl40488",33878,"My instructor at hospital believes all gay people were molested when they were kids and will burn in hell. She has a point as if there relationship was accepted by God it would be in the bible.","hate","derogation","gay","perturbation","dev",4,"cYKSVBW4HD","4b","acl39930"
+"33879","acl40489",33879,"Men to other men: change yourself. Women to everyone: hange society, that way I won't feel bad about my terrible life choices","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32721"
+"33880","acl4049",33880,"I don't fucking hate my brother","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33881","acl40490",33881,"Fucking non-citizen, illegal welfare-leeches who had OBTAINED DRIVERS LICENCES actually voted. Just like the dumptruck driving mexican asshole who took the front of my mother's car off. Only a hop, skip and jump from there to being allowed to vote. Fucking democrats.","hate","dehumanization","immig","original","dev",4,"TrRF46JWfP","4a","acl39195"
+"33882","acl40491",33882,"I live in LA around a hellof a lot of jews obviously. I've noticed that with each lockdown announced the day immediately after there were significantly more jews out and about with their families. Just an observation.","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl33579"
+"33883","acl40492",33883,"Not a fitting example. He's a white guy married to a women with mixed children. They still call him a white supremacist and racist though for some reason.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl37792"
+"33884","acl40493",33884,"ANY PEACE PLAN WITH MUSLIMS, ESPECIALLY THE ‘PALASTINIANS’ is a complete waste of time and energy.
+Peace is taboo in Islam, they only want war. We all know it they all know it. Peace with ""infidels"" is impossible for the Muslims. This is a fact proven with EVERY method and throughout HISTORY.","hate","derogation","mus, arab","original","dev",4,"IBsVsBliwX","4a","acl32177"
+"33885","acl40494",33885,"In truth, homosexuality is just another sin that men & women fall into. Not an identity. Not worthy of any form of celebration. Nothing more, nothing less. Just wrong behavior that can be overcome when a sinner humbly accepts God's forgiveness through #Jesus' act of supreme love on the cross.","hate","animosity","gay, gay.wom","original","dev",4,"cYKSVBW4HD","4a","acl33417"
+"33886","acl40495",33886,"What they need to do is contact these people and ask if they actually voted, or if their names were used. Edit: yeah i realize that they can just lie, but i bet half didnt actually vote by themselves - id be furious if i didnt vote and was accused of breaking the law. ""Illegal"" could be classified as greencard holders too, since that would be illegally voting.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35529"
+"33887","acl40496",33887,"""Young people with a migration background""? Seriously?! The Newspeak is fucking hilarious.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35480"
+"33888","acl40497",33888,"The Daily Star is alway complaining about these apparent 'shameless spongers' who throw disposable handout money away on gambling, shopping for luxuries, boob jobs and “offensive” use of social media.","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl40097"
+"33889","acl40498",33889,"""America is full already, no further immigration is necessary until unemployment is at zero, and with AI coming and the incentive to use computers instead of labour that just means even less immigration needs to be done. No more anti-American shits. Plkus kick out the rest of the anti-Americans that Obama, etc approved. We do not need them. We don't need the millions of illegals. Kick them all the fuck out. America for Americans. i't's fucking time."" This dude needs to be banned, now","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl39169"
+"33890","acl40499",33890,"here is something that all Whyte men who have lived in africa like I have must learn and know: that these individuals are a sub-race.","hate","dehumanization","african","original","dev",4,"CAgNlUizNm","4a","acl35312"
+"33891","acl405",33891,"I hate earphones they fucking hurt my ears","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"33892","acl4050",33892,"I don't fucking hate my parents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33893","acl40500",33893,"We must allow sexual diversity and freedom at gay pride and make sure no destructive or harmful behavior is allowed (inlcuding homophobia, transphobia, racism, sexism, bigotry, etc all conveniently defined)","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl31719"
+"33894","acl40501",33894,"Unedited my fucking arse. Wearing a washed out jumper vs a brightly coloured jumper for a start is a clever move gobs. You attention seeking cunt. Very odd behaviour going on, suddenly all is well with the world after this ‘op’. Jesus Christ.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34523"
+"33895","acl40502",33895,"Doesn't matter how much a refugee hates us and hates liberal values, like letting women date, no one expects them to be better than they are! In that sense they're treated better, because people have zero expectations from them. You can be homophobic, racist, and beat your wife all you want as long as you're a refugee, it's ok!","hate","derogation","ref","original","dev",4,"iO6vHa6qJm","4a","acl31177"
+"33896","acl40503",33896,"When women talk about how men in the 40's and 50's used to beat their wives what they don't understand is that most men didn't actually beat their wives the way that we think of it today. Men would occasionally hit their wives the same way that people used to spank a child, because it was understood that women were children that needed to be disciplined now and then. Without that discipline we get the current state of women we see today.","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32683"
+"33897","acl40504",33897,"My ideal world is one with no consequences. Go for months getting plowed like a bitch in heat but also to keep the option to return to my stable life at any point.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32464"
+"33898","acl40505",33898,"I'm quite sure the trannies kill themselves before cancer does.","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl40561"
+"33899","acl40506",33899,"I do not see any differences between the girl in the above picture versus the average modern woman.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37116"
+"33900","acl40507",33900,"Why do some people compare homosexuals to animals? Is it linked to the fact that when they have sex their movements are similiar to other animals in the animal kingdom like lions?","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37670"
+"33901","acl40508",33901,"Ive always wanted to know why the Japanese look so hot. This is so true tho lol with their alpha looks and sex appeal.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl34012"
+"33902","acl40509",33902,"Help end the racism in kingdom 316 it's gotten way outta hand with the racist troll she called me NIGGER BITCH and just plain old nigger countless times I'm not the only one who is a target of her racism. She changes her name and pix very frequently in effort to try to hide please can we do something","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34688"
+"33903","acl4051",33903,"I don't fucking hate my dad","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33904","acl40510",33904,"Those immigrants are all stoner knuckle draggers so I don't care what those turds say. There are lots of miserable jobs I could talk about. I worked in a metal fab shop for 10 years","hate","dehumanization","immig","perturbation","dev",4,"HtRmsP3KiK","4b","acl34642"
+"33905","acl40511",33905,"This is a true issue. Doctors should NOT be indulging in this kind of insanity. To give proper and realistic care, they need to be straight with these idiots. They should not cave into the pressure of the current fad","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34322"
+"33906","acl40512",33906,"Refugees have been getting fucked over by Aussie politicians for decades. Nothing new to see here. I have very little respect left for politicians based around the handling of asylum seekers over the last 15 years. Actually I am ashamed, as a nation, that there are to many votes in drumming up racist hate.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl39558"
+"33907","acl40513",33907,"I grew up eating this stuff, standard blue collar working class upbringing, and I get so nostalgic for it. One of my children loves fried bologna sandwiches!!","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37368"
+"33908","acl40514",33908,"its urget, Is someone here Who sponsor refugee from a refugee organization and located in Canada? Please respond if possible!","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36071"
+"33909","acl40515",33909,"Politically correct liberals seem to believe that most north African and Middle Eastern muslim men are tolerant and liberal... JUST LIKE THEM. when will they wake up?","hate","animosity","mus, arab, african","original","dev",4,"iO6vHa6qJm","4a","acl31125"
+"33910","acl40516",33910,"Halima has shed light on the pressures of being an ethnic minority in such a white dominated industry","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl40116"
+"33911","acl40517",33911,"That endo article is infuriating. It takes on average 9 years to get the endo diagnosis. It helps nobody to put white women and women of colour against each other on this. The real culprit are the medical professionals who routinely downplay women's pain and suffering in health and don't listen to us or take us seriously","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl39483"
+"33912","acl40518",33912,"If you don't have any plans for tonight, pick up a boi at the club, go back to his flat, pull down his pants like you're gonna blow him and then start laughing uncontrollably when you see his thread dick and berate him mercilessly. That's what I call a productive evening.","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl34234"
+"33913","acl40519",33913,"Besides, a ‘treatment’ that requires people to ignore objective reality and pretend to not see the mockery of the opposite sex that most ‘trans’ people are, is no treatment for the ill person. it is actually an attempt at forcing thought compliance. In effect, it is a cultural gaslighting","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl38970"
+"33914","acl4052",33914,"I don't fucking hate my cousin","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33915","acl40520",33915,"""I hate this country so badly!"". Then why'd you move here?","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl38883"
+"33916","acl40521",33916,"Oh Vey My wonderful son is Gay' studio pitch meeting in 2009","hate","derogation","for, gay","original","dev",4,"cYKSVBW4HD","4a","acl33265"
+"33917","acl40522",33917,"We should all embrace our differences and stop allowing the jews to divide us","hate","derogation","jew","perturbation","dev",4,"HtRmsP3KiK","4b","acl37592"
+"33918","acl40523",33918,"At 17, puberty is pretty much over anyway so ""puberty blockers"" wouldn't do much but mess their heads up even more.","hate","animosity","trans","perturbation","dev",4,"TbUBpfn6iP","4b","acl34301"
+"33919","acl40524",33919,"i hate it when people aks wat type of queen i am, mf, idk im not a gay head, my quizzes came back inconclusive","hate","animosity","gay","perturbation","dev",4,"TbUBpfn6iP","4b","acl37850"
+"33920","acl40525",33920,"No such thing as a “Native American Indian “, but just “injun”.","hate","derogation","indig","original","dev",4,"dqrONtdjbt","4a","acl32295"
+"33921","acl40526",33921,"Choose your favourite: ""Kids will be kids"" ""I mean they're right though, fuck China."" ""Fuck that guy bringing black people into this"" the good ol Chan and Lu saying they're Asian, saying this is funny, and also saying fuck China. They love derailing threads when we put shit like this out in the open. Fucking unreal amount of racism in what's less than fucking 40 seconds of video, unbelievable.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38147"
+"33922","acl40527",33922,"I feel very happy to live in Eastern Europe right about now. Sure, we might not have fancy lamborghinis like Monaco or London but at least if i go outside there aren't gangs of blacks that want to touch my girlfriend or arabs that chop my head off if i don't know Coran verses.","hate","derogation","bla, arab","original","dev",4,"iO6vHa6qJm","4a","acl31107"
+"33923","acl40528",33923,"zombies are the worst monster in a bad horror movie. Even if you kill it, it will come back, so you kill it again, but it just won't die!","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl32779"
+"33924","acl40529",33924,"Likewise, the data doesn't account for those apprehended at the border with prior convictions that would likely reoffend if they would have avoided apprehension. Criminal History is the strongest predictor of future criminal behavior, and these guys tend to have a record","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl40072"
+"33925","acl4053",33925,"I don't fucking hate my grandparents","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33926","acl40530",33926,"The number of criminals living here is based mostly by the benefits they're given while in the country. For those asking. Another cost we need to hammer home is the criminal costs and crime. They literally get away with murder in many cities","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl39048"
+"33927","acl40531",33927,"If you live in a semi-detached house then you're rich. Sorry, I don't make the rules.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl32977"
+"33928","acl40532",33928,"So have my interpretations of the south been completely wrong?
+I was a private school boy and lived in the best part of melbourne, so i dont want to go to the hellhole slums with the rest o he rabble.
+","hate","derogation","wc","original","dev",4,"Z42dvbYWzV","4a","acl33119"
+"33929","acl40533",33929,"I am proud to say, we rebuilt a refugee camp infront on the German Parliament in solidarity with those on the European boarders","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36274"
+"33930","acl40534",33930,"hey weirdo, i am sure you go watch people do yoga that early in the morning, well no matter what time really.
+That is weird as shit lol","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl40134"
+"33931","acl40535",33931,"Here in Slovakia there are around 10k Ukrainians working and starting new year the government simplified hiring workforce from outside EU because the factories are running out of people wanting to work for minimal wage. Then we had a massive wave of refugees when the things went wrong in their countries (different language, none of them are naturialized and fluent in Slovakia, so they have not adapted yet. This does not surprise me though).","hate","animosity","ref","perturbation","dev",4,"eLGzdD8Tvb","4b","acl35322"
+"33932","acl40536",33932,"She is a black version of Ann Coulter. All these blacks do is spew hatred. She is trying to differentiate herself from all the other talking heads by being a black female trump supporter. She is like chickens supporting McNuggets!!","hate","derogation","bla","perturbation","dev",4,"GNZuCtwed3","4b","acl34668"
+"33933","acl40537",33933,"In my opinion, if you are ok with white people being punched, but not black people, you are the problem. Personally, to me it's only black people who deserve to be put in their place","hate","derogation","bla","perturbation","dev",4,"TrRF46JWfP","4b","acl35721"
+"33934","acl40538",33934,"These guys were planning a terrorist attack on gay pride in Amsterdam. Unfortunately they got caught.","hate","animosity","gay","perturbation","dev",4,"E3dsmnSPob","4b","acl37580"
+"33935","acl40539",33935,"Are they really using ""people with clits"" to include a small minority of people who could be transmen e.g. biologically still women with functioning clits? Love it! Im sure a high % of transmen will really appreciate this! Will websites start referring to Fleshlights as ""suitable for people with penises""? cause they should!","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl31849"
+"33936","acl4054",33936,"I don't fucking hate my auntie","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33937","acl40540",33937,"But what is she really gaining by taking in refugees? Is it just to make Germany look better? Why is she ignoring her people for the sake of image?","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35388"
+"33938","acl40541",33938,"We all know that the poor are too stupid to know what's good for them. We have to us to decide what they can and can't do","hate","derogation","wc","original","dev",4,"Z42dvbYWzV","4a","acl33140"
+"33939","acl40542",33939,"Many homosexual's suffer from mental health diseases, whilst some blame this on discrimination, a study in the Netherlands, where gay people are allowed to marry, says this is much more personal that just discrimination.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37655"
+"33940","acl40543",33940,"Tis true. I'm working on a story about a pre-islamic Arab traditions that was maintained and adopted by Muslims. It clearly showed that their barbaric traditions on treating women like objects still is alive today and something they just don't want to let go of.","hate","derogation","mus, arab","perturbation","dev",4,"cYKSVBW4HD","4b","acl36721"
+"33941","acl40544",33941,"Until 1967 we nunga were incorrectly considered to be native fauna until the anglos stopped and declared us to be human","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl33333"
+"33942","acl40545",33942,"I bet that after ww3, which will be caused by expelling the migrants fuhrer merkel regrets inviting, Germany should cease to exist without their hard worlk","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl38985"
+"33943","acl40546",33943,"Damn Amazon always catches me when I try to make a new account to get a free Prime shipping trial, no matter how I change my name, address, email, IP address, or browser with no cookies. And you're telling me the US can't stop illegals from getting free shit from the government with obviously fake SSN/ITNs? Fuckkkkkkkkk","hate","animosity","immig, ref","perturbation","dev",4,"IBsVsBliwX","4b","acl35423"
+"33944","acl40547",33944,"The scariest thing about the refugee treatment isnt even the nasty treatment from people, its the group coordination of it","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl31186"
+"33945","acl40548",33945,"what the hell, these people are talking about being in Iraq and going to a shop to watch a TV show about terrorism haha , ironic !","hate","animosity","arab","perturbation","dev",4,"E3dsmnSPob","4b","acl36115"
+"33946","acl40549",33946,"Michigan court allows companies to not serve gay customers. Strip clubs/bars can deny service to whoever for any reason, and big tech can silence/ban whoever they want for any reason they come up with and face no repercussions. So... this makes NO sense.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33320"
+"33947","acl4055",33947,"I don't fucking hate my uncle","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33948","acl40550",33948,"The likely result will be the French Government removing all the Churches in France, so that knife attacks in Catholic Churches of France committed by Muslims cannot happen anymore.
+The power is what can ban Muslims in France, but it seems that the French Government have no ink in the balls of their pens....","hate","animosity","mus","original","dev",4,"IBsVsBliwX","4a","acl32076"
+"33949","acl40551",33949,"If it was true that being Asian was valued with no other implications, it would be more common to see Asian women dating up, but it's clearly the opposite, that white men are able to leverage their whiteness to get more and date up with Asian women.","hate","animosity","asi.wom","original","dev",4,"eLGzdD8Tvb","4a","acl33970"
+"33950","acl40552",33950,"Apes and monkeys were in fact openly regarded as hell spawn creatures by the west from the middle-ages because they looked and behaved like a parody of mankind.","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34821"
+"33951","acl40553",33951,"Someone asked me why are all Jewish men circumcised? Because Jewish women can't resist anything that's 10% off ! Haha Thought it was quite acccurate to my family especially !","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl33721"
+"33952","acl40554",33952,"Religiously unaffiliated more like to lean left and accept all forms of homosexuality..we are all doomed","hate","animosity","gay","perturbation","dev",4,"cYKSVBW4HD","4b","acl37768"
+"33953","acl40555",33953,"What a surprise, a the religion of Islam has over 1 billion people that are bad, also has some good people. It‚Äôs almost like demographic groups aren‚Äôt completely homogenous and individuals do exist in every group. It’s just majority of muslims are bad.","hate","derogation","mus","perturbation","dev",4,"cYKSVBW4HD","4b","acl36568"
+"33954","acl40556",33954,"Man i dont care if you wanna be treated as a different gender and have a surgeon do shit to your private parts. Just don’t pretend that biology revolves around you","hate","animosity","trans","original","dev",4,"TbUBpfn6iP","4a","acl38879"
+"33955","acl40557",33955,"If you thought that was bad now imagine what it will be like if half the people on the continent could no longer support themselves because climate change ruined their agriculture industry and they start taking over each others countries... They need to control themselves and stop having 10 kids each. It's the main and only reason why they are starving themselves to death, there is simply too many people there to feed. It is only a simple measure for the nations to give both basic and sexual education to its citizens, along with providing anti pregnancy treatments such as condoms and the birth pill, to prevent their populations from starvation and death.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl39206"
+"33956","acl40558",33956,"So I was recently watching an old documentary called Lancelot Link: Secret Chimp. It features chimps dressed in clothing acting like humans. It's very funny. I began to wonder, why is it animals dont act out and damage property, kill people, loot, rape etc. Then I realized, its because they aren't humans. Silly me","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl35246"
+"33957","acl40559",33957,"its a backwards ass brutal ideology followed by backwards people. It shouldn't even be classified as a policital ideology and FYI she was a homophobe.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32025"
+"33958","acl4056",33958,"I don't fucking hate my laptop","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33959","acl40560",33959,"The thing with the other political parties they would be bringing them over in ferries, should just let the rapugees drown","hate","derogation","ref","perturbation","dev",4,"QiOKkCi7F8","4b","acl37463"
+"33960","acl40561",33960,"I'm quite sure the patients kill themselves before cancer does.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl40505"
+"33961","acl40562",33961,"Black children with ghetto parents should be separated from their parents' bad influence and assisted with an intensive re-education program that seeks to deprogram them of ghetto culture. Instill in them a love and appreciation for white European cultures, and drill into them western values such as social and fiscal responsibility, meritocracy, work ethic, etc. There is no way to alter their biological makeup, but at least one can teach them to become spiritually white.","hate","derogation","bla, non.white","original","dev",4,"CAgNlUizNm","4a","acl40726"
+"33962","acl40563",33962,"It's so basic, yet so many ppl will *hate* you for this simple illustration of the real truth. This is probably the most harmful effect of legalized ""gay marriage"": its another key building block for the Left's & Libertarians' war on God. ""Institutionalizing"" sin & redefining morality are evil","hate","derogation","gay","original","dev",4,"cYKSVBW4HD","4a","acl33434"
+"33963","acl40564",33963,"I know lots of immigrants and former refugees who pulled themselves up and this should be encouraged. That being said, European countries like Germany have poorly mismanaged their money, and took in way more refugees than appropriate. Also, refugees have to assimilate, fuck political correctness. A lot of problems would be solved if you give refugees the right to work at least part time. Pay them the same as you would citizens, that way it stays competitive, and there's less poverty/violence/homelessness on the streets.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35589"
+"33964","acl40565",33964,"Oh God Damn that's fucked up. RIP. Dude made it all the way just to get capped for no fucking reason by some dude from Iraq. Iraqis are sus af","hate","derogation","arab","perturbation","dev",4,"GNZuCtwed3","4b","acl35870"
+"33965","acl40566",33965,"Come on guys. Yes, he is an arsehole. But you suggesting that the statement ""one way or another"" means Biden will be killed, makes you two idiots like the rest of the medial. Stop projecting something that was not said.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl33882"
+"33966","acl40567",33966,"Thats the whole point of systemic racism. A black person can participate and thrive and suceed in a system that puts down black people. Doesn't change the fact that it's still a racist system.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl40773"
+"33967","acl40568",33967,"They need a new testament or reformation.
+You were totally allowed to rape chicks and pay their fathers and then they were your wife before Jesus under the Sharia law.","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl31898"
+"33968","acl40569",33968,"Thats the worrying part kids who get tattoos will regret it realising it was a phase","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl32213"
+"33969","acl4057",33969,"I don't fucking hate my blender","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33970","acl40570",33970,"Israel in fact existed for more than 3000 years, much longer than the agressive muslims currently around it","hate","derogation","mus","perturbation","dev",4,"IBsVsBliwX","4b","acl36020"
+"33971","acl40571",33971,"This is completely, 100% making bullshit up. The last civil unrest we had on any kind of scale was back in 2011, and it wasn't immigrants behind it, even","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35328"
+"33972","acl40572",33972,"Anyone who looks at this and doesn't realize that there are good and bad people from every religion, and that the media makes the bad apples of certain religions look a lot worse than the ones from others, is completely delusional.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36551"
+"33973","acl40573",33973,"Self-fluid or ""I have no actual sense of self and when I put clothes on that isarestereotypically used by any other self, I become a chameleon.""","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl39159"
+"33974","acl40574",33974,"The irony of this is that by saying that ""invasive species"" is a racist phrase... they're basically acknowledging and accepting a false alternative reality that claims that immigrants are some kind of seperate species and therefore are nonhuman/subhuman.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl39556"
+"33975","acl40575",33975,"Yes all women hate men but i personally dont want to acknowledge women's existence at all because they're not even worth a thought let alone talk about.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38404"
+"33976","acl40576",33976,"I don't care for overly theatrical gestures like this from them. What I expect is a change in how muslims treat people following their backwards religious laws.","hate","animosity","mus","perturbation","dev",4,"TbUBpfn6iP","4b","acl36602"
+"33977","acl40577",33977,"If one country tolerates a Jewish family in it, that family will become the germ centre for fresh sedition. Even if a Jewish boy survives without any Jewish education, with no synagogue and no Hebrew school, it is in his soul. The Jewish spirit would still exist and exert its influence. It has been there from the beginning and there is no Jew, not a single one, who does not personify this.","hate","derogation","jew","original","dev",4,"GNZuCtwed3","4a","acl32778"
+"33978","acl40578",33978,"They are not Romanians. Don`t use the word Roma either because they have no affiliation with a great civilization. Call them gypsies or zigeuner, because that`s what they are. Filty non white scum. Get them out of our beautifull country","hate","derogation","trav","original","dev",4,"Z42dvbYWzV","4a","acl40436"
+"33979","acl40579",33979,"Sure, but you need a speck of intelligence to do that. And yeah, there are obviously very few politicians who don't lack that requisite.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl32575"
+"33980","acl4058",33980,"I don't fucking hate my sofa","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33981","acl40580",33981,"OH! I was very confused for a while. I think the poster meant female then.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34479"
+"33982","acl40581",33982,"You just parrot what you've been told. Obviously you never experienced criminals trying to shoot you as a job.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl41208"
+"33983","acl40582",33983,"What the fuck was that women singing?? Was that supposed to be ""God Bless America""? It might be a good thing to learn the fucking lyrics. What an insult to the country! She sounded like a drunken cat. From the way she looks she just come back from the Wh0rE h0usE. As to 911 the CIA is not directly made culpable by what remains of the evidence but they are directly made complicit by being part of the intelligence to which, would have had to have known tthe truth","hate","derogation","wom","perturbation","dev",4,"cYKSVBW4HD","4b","acl40425"
+"33984","acl40583",33984,"I'm going to post some statistics that imply that they are turning children depressed by molesting and raping them","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl31700"
+"33985","acl40584",33985,"HAHA i dont give a fuck about corporate rights. If climate change is happening at all, it is the businesses fault","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl32220"
+"33986","acl40585",33986,"So there are now these depraved institutions of “learning” which are now caving to the sodomite agenda by announcing to the world they will have unisex, “gender neutral”graduation gowns for all graduations.","hate","animosity","lgbtq","original","dev",4,"cYKSVBW4HD","4a","acl33359"
+"33987","acl40586",33987,"Muslim women are experts at washing their arse, they use the cans we water our plants with!","hate","animosity","mus.wom","original","dev",4,"cYKSVBW4HD","4a","acl33539"
+"33988","acl40587",33988,"Filthy rats on the subway simply the proxy army of the gov to be used on New York inhabitants.
+Getting people and rats to fight each other would be quite nice for them from their ivory towers.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl32079"
+"33989","acl40588",33989,"I love to see black women thinking their success is due to their talent. See for reference: this is just positive discrimination! Y'all just ugly and stupid af and cannot achieve anything on your own.","hate","derogation","bla.wom","perturbation","dev",4,"TrRF46JWfP","4b","acl37235"
+"33990","acl40589",33990,"MGTOW is not so much about hating women. It's mainly about walking away from a corrupt, one sided court system. MGTOW is about going our own way without any drama or baggage. Ladies aren't rly puuuure trouble though, period.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl38829"
+"33991","acl4059",33991,"I don't fucking hate my bed","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"33992","acl40590",33992,"ill be honest Turkish people hates Arabs tho and you can't blame them","hate","derogation","arab","perturbation","dev",4,"LqLKTtrOmx","4b","acl41130"
+"33993","acl40591",33993,"Industry built britain, not the elite led empire which only lined their pockets. I honestly do care about all the Indians who fought in the world war, they clearly had loyalty to the British people, and no vengeance because of the empire.","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl34239"
+"33994","acl40592",33994,"I personally couldn't give a sh_t less. I'm sick and tired of you celebrities going on about this law. So what ?? It was done and over long before anyone you know was even born. So please STFU and stop crying about it.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl31232"
+"33995","acl40593",33995,"More and more people are waking up to this. Despite all the supposed advances they are making, wamen are just big babies that never fully mature. Just look at the media they consume and their interests. They have no self control or forethought similarly to infants and small children. They act on their impulses in everything they do because they know there will be no consequences. They live their lives as giant spoiled children.","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32592"
+"33996","acl40594",33996,"Sooooooo... lgbt people are allowed to gather while straight people aren't? Do they not know that Covid isn't an ""ally""?","hate","animosity","trans, gay.wom, gay.man, bis","original","dev",4,"LqLKTtrOmx","4a","acl31626"
+"33997","acl40595",33997,"Terrorist attacks from Muslim scum in the UK are inevitable.","hate","derogation","mus","original","dev",4,"Z42dvbYWzV","4a","acl39854"
+"33998","acl40596",33998,"Less scrounging dickheads pretty pretty please","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl33110"
+"33999","acl40597",33999,"A visit to this notorious concentration camp is an absolute must for anyone taking a trip to the nearby Weimar, Europe’s Cultural Capital for 1999. Buchenwald was one of Hitler’s camps set up to exterminate Jews and Gypsies (1937-1945) …","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl34989"
+"34000","acl40598",34000,"Nothing brings out the rational and necessary defense of nationalism and immigration limitations like a story of a Muslim refugee raping white girls","hate","animosity","mus, ref","perturbation","dev",4,"TrRF46JWfP","4b","acl35607"
+"34001","acl40599",34001,"Tbh, I'm not even sure whether he's just a rando thug or if he's actually playing that role so as to spread truths about Germany. The only thing I do know is that what he's saying about the German people isn't a lie.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl39553"
+"34002","acl406",34002,"The NHS lacks any worth","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"34003","acl4060",34003,"I don't fucking hate my pillows","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34004","acl40600",34004,"Sexuality is sacred': Bisexual pastors? Strippers? No thanks. I'm straight and normal and never been happier. The woman left her pastor life behind to pursue her lifelong aspirations of becoming a stripper. All so seedy","hate","animosity","gay, bis","perturbation","dev",4,"CAgNlUizNm","4b","acl36350"
+"34005","acl40601",34005,"I am waiting to see the very concept of Jewry completely obliterated.","hate","threatening","jew","original","dev",4,"GNZuCtwed3","4a","acl40427"
+"34006","acl40602",34006,"Weak men are indeed a scourge upon this day and age.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37037"
+"34007","acl40603",34007,"White and black societies, even under slavery and segregation saw a rise in standard of living for both whites and blacks. They also beneffited from a rise in technology and wealth. This is true globally. It was true until our 'fellow whites' got involved. White and black societies work well for both races. Jewish run socieities that are mixed do not.","hate","derogation","bla, jew, non.white","original","dev",4,"CAgNlUizNm","4a","acl35055"
+"34008","acl40604",34008,"Being patriotic doesn't necessarily mean ""loyalty for the system"". Personally, for me at least, it just means you want your people to survive and to be in charge of their own country without a bunch of foreign intrusion !","hate","animosity","for","perturbation","dev",4,"E3dsmnSPob","4b","acl37452"
+"34009","acl40605",34009,"I remember watching football when I was about 12 and they started singing ""Hamas, Hamas, Joden aan het gas"" (gas all jews) when Ajax was playing","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37334"
+"34010","acl40606",34010,"honestly, In the Arab world slavery is still engraved in the culture compared to the west","hate","animosity","arab","original","dev",4,"vDe7GN0NrL","4a","acl31508"
+"34011","acl40607",34011,"All mods are gay huh? What an immature accusation","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl31657"
+"34012","acl40608",34012,"I disagree with you. I personally know plenty of legal immigrants and none of them are aligned with the dems by default. If anything they are apolitical, but they certainly care for the country, value being an American citizen, and they make us stronger by being here.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35445"
+"34013","acl40609",34013,"U.N. doesn't give a shit, which is actually pretty short-sighted and does immigrants a disservice. Sadly, when these boys are radicalized and trained by whoever took them, they will in turn rape and or kill women. This needs to be stopped or it could be your mum and sister next. If they won't help, then I will but putting them in coffin boxes.","hate","threatening","immig","perturbation","dev",4,"cYKSVBW4HD","4b","acl36953"
+"34014","acl4061",34014,"I don't fucking hate my tv","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34015","acl40610",34015,"don't let your guard down, I worked with a male ""feminist"" that tried to get me fired because I said if given a chance as a mom I would prefer to stay home with the kids. There are a lot of bad seed liberals out there, speaking from a lot of experience living in California. Some are fantastic, but some are close to the worst people I've ever met.","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl34217"
+"34016","acl40611",34016,"Every single person who supported that paedo being allowed to keep their job is responsible for these attacks alongside the perpetrator themselves","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl32104"
+"34017","acl40612",34017,"You don't understand what I'm actually saying. I don't care about you or him because you're so selfish being gay, but I'll pray for you none the less. Hopefully karma doesn't mess you up your same-sex marriage","hate","derogation","gay","perturbation","dev",4,"LqLKTtrOmx","4b","acl37245"
+"34018","acl40613",34018,"In a few years Elliot will be telling us you can change your gender as long as you do it legally' I read this and thought why haven't they blocked him yet?","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl32408"
+"34019","acl40614",34019,"you know what the high rates of drug crime in the Vancouver area are sort of a mystery, for example. They're well off, societal acceptance isn't really an issue - not nearly to the extent it is in Europe - they're not excluded from careers and legitimate alternatives to gain status, etc","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl31556"
+"34020","acl40615",34020,"My sister is queer, I literally want to die","hate","derogation","gendermin, gay","perturbation","dev",4,"CAgNlUizNm","4b","acl35889"
+"34021","acl40616",34021,"White liberals wanna act like they care for the nigger 'community'! But they are the ones who founded the KKK, the best way to divide and conquer a people, is to infiltrate the structure! and that's what the liberal whites have done to the nigger 'communities'!!","hate","derogation","bla","perturbation","dev",4,"Z42dvbYWzV","4b","acl34923"
+"34022","acl40617",34022,"Soooo I guess ""flaming faggot"" is right out then.","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33280"
+"34023","acl40618",34023,"Let's see how close we can get that number to zero refugees. No more we are full.","hate","derogation","ref","original","dev",4,"TrRF46JWfP","4a","acl38938"
+"34024","acl40619",34024,"Jess Phillips is every bit the smug arrogant self-absorbed person I loathe in my current city and have given up on speaking to.","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl32655"
+"34025","acl4062",34025,"I don't fucking hate my phone","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34026","acl40620",34026,"women are animals. when they claim that men are the emotional/irrational ones, they are in fact projecting. they are almost purely instinctual and their entire self is defined by cope.","hate","dehumanization","wom","original","dev",4,"CAgNlUizNm","4a","acl35910"
+"34027","acl40621",34027,"Madonna compared her music bullying to the Beatles. Yeah. because being a musician is the same as running with like a virgin. Get a grip.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl33338"
+"34028","acl40622",34028,"So punishing men or women who sexually abuse boys and turn them traumatised is now persecution of innocent people or something? Did I understand this correctly?","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl31793"
+"34029","acl40623",34029,"the hijaby is like armour, it protects you....that's what they say. Why? well why should they be protected? Are they planning to blow us up?","hate","derogation","mus","original","dev",4,"cYKSVBW4HD","4a","acl33560"
+"34030","acl40624",34030,"Trannies could literally just exist on screen and these types of fans would stil find a way to complain about it","hate","derogation","trans","perturbation","dev",4,"CAgNlUizNm","4b","acl37240"
+"34031","acl40625",34031,"They belong to very different social groups. Lots are so well united that there is no difference between them, others still live pettier lifestyles with perhaps not illegal activities, but still often shady, plus their children aren't always doing so well at schools. Then there are new ones from unspecified places and they are usually not very respected as they may deal with criminal activities like pick-pocketing and simple scams.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32339"
+"34032","acl40626",34032,"hey we should act fast, fast decision fast deportation","hate","animosity","ref","original","dev",4,"vDe7GN0NrL","4a","acl31453"
+"34033","acl40627",34033,"ATTENTION PEOPLE OF RUQQUS, YOU HAVE BEEN WARNED. This is Ebenezer Lembe he is armed and extremely gay.","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33283"
+"34034","acl40628",34034,"The whole fertility comment has really pissed me off tbh 😩 Something doesn't add up. Let's not even talk about the edited photos, she is a dickhead and thinks all her followers are as dim as her to not realise the filter.","nothate","none","none","original","dev",4,"QiOKkCi7F8","4a","acl35145"
+"34035","acl40629",34035,"I just remember pygmies from Diablo 2. Being really angry when I got swarmed and killed on my sorc.","hate","animosity","indig","original","dev",4,"dqrONtdjbt","4a","acl32327"
+"34036","acl4063",34036,"my car is fucking cool","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34037","acl40630",34037,"They're nice people, most of them work and they live in houses same as everyone else. But they just dress different and have some interesting customs. Then there are Eastern European Roma who come here to live a nomadic lifestyle, they're a bit different.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl32338"
+"34038","acl40631",34038,"bro this might be usefulf, there's an ex Muslim subreddit too of that helps, perhaps you could get advice tgere","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36291"
+"34039","acl40632",34039,"I‘ve never seen Asians teens behaving like whether it’s in the west or from Asia. Every Asian I’ve met has always been respectful towards other people, definitely can’t say the same for other people.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38149"
+"34040","acl40633",34040,"Mosque = a trojan horse.","hate","animosity","mus","original","dev",4,"IBsVsBliwX","4a","acl31993"
+"34041","acl40634",34041,"The liberals are always whining , thats why I love Trump, he really represents the true idea of being an american person, toughness and all.","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl33480"
+"34042","acl40635",34042,"She really just loves the sight of her own face doesn't she, young or old, sadly as other women. She looks like such a knob with her stupid hair bow in, face caked in make up. I thought I couldn't dislike her anymore but today SM has really done me in. so many extravagant elf on the shelf and advent calendars.","hate","animosity","wom","perturbation","dev",4,"vDe7GN0NrL","4b","acl35122"
+"34043","acl40636",34043,"Some people are designed to only care about themselves. This means not their children, not their families but only themselves. These people care for their families and children when it benefits them. They are designed to not even notice this about themselves. They think it's normal. It's in their DNA. Unfortunately for them it eventually bites them in the ass. After running the same game on a few people they look at it existentially and realize they're pieces of crap but by then no one will help them or go near. Despite all the legal advantages society gives them a lot of people end up destitute and alone for this reason.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl32649"
+"34044","acl40637",34044,"Where did I say I wanted gay people to pretend to be heterosexual? You are literally making shit up. I asked; what positive things come from allowing sexual perversion to be promoted? Still no answer from anyone after dozens of replies.","hate","derogation","gay.wom, gay.man","original","dev",4,"LqLKTtrOmx","4a","acl40318"
+"34045","acl40638",34045,"They try to look white but they act like fucking joggers. Ive actually been to Korea many times. Even Mexico is unironically less degenerate than Korea is (except for the isolated incidents of cartel violence).","hate","derogation","bla, asi.east, hispanic","original","dev",4,"eLGzdD8Tvb","4a","acl34113"
+"34046","acl40639",34046,"A doctor in Boston was fired for critizing the hospitals 'gay pride' event, he was told this amounted to professional misconduct as he was discussing the medical dangers of homosexuality!! Have people actually lost their minds?","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33495"
+"34047","acl4064",34047,"I fucking hate going to the cinema","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34048","acl40640",34048,"OuR SlAVes ArE ChECkIng oUt oF SlAvErY aNd wE hAvE aBsOlUtElY nO iDeA wHY ThAt Is","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37042"
+"34049","acl40641",34049,"Don't be so naive: The benefits to Merkel and Co. are pretty obvious. Virtually every refugee who then becomes a German citizen will vote for her and her party almost until the day they die. This might entail some manipulation of the Muslim demographic, which could itself involve some pretty ridiculous and two-faced policy - but hey, that's the price of securing your power for the next generation or two, right? The other obvious benefit: more high skilled workers competing for an ever-growing pool of jobs. This helps increase those wages, which unfortunatley puts more money in the pockets of the elites - you know, the ones who finance and control most of the politicians.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl39863"
+"34050","acl40642",34050,"We first saw this in 4chan so you can pretty much assume an idiot made it. Even though your intentions are good, sharing images like this is counterproductive. The jewish overlords will censor it anyway and you're asking for a ban.","hate","derogation","jew","perturbation","dev",4,"HtRmsP3KiK","4b","acl38256"
+"34051","acl40643",34051,"I agree. We cannot risk carving this great nation up.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35439"
+"34052","acl40644",34052,"I am facing serious trouble making a choice one way or the other on this. On the one hand, I'm sure not every parolee, or even most parolees, are rapists. But on the other, I never heard of these weird gang rapes until they were massively released in our state. I don't know how to account for the cultural misogyny. I'd hate to be the one making the decision here but censorship is certainly not the way to go. You have to make a choice and live with the consequences.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl38976"
+"34053","acl40645",34053,"The ENGLISH teenage scum Fred Barras was shot while burgling an old man.","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl36691"
+"34054","acl40646",34054,"You are describing your hate for the working class because they hate you for being upper class? Sorry hun but with that attitude, you deserve it.","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl37437"
+"34055","acl40647",34055,"bro there are no peaceful Muslims public practicing their religion peacefully, this is the problem? Jews do this too during yom kippur i think","hate","derogation","mus, jew","perturbation","dev",4,"TbUBpfn6iP","4b","acl36503"
+"34056","acl40648",34056,"By your own definition aboriginals and whites are completely identical species to each other. Therefore there is no such thing as hybrids between them (or human hybrids in general) and they have the same rates of infertility as any ethnic group on earth.","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl33509"
+"34057","acl40649",34057,"There's only one right answer around here and it's, those countries are evil and rfugees have no business to do here. Deny this and you'll get dislikes that go up to High Heaven. Reddit is such a liberal globalist multiculturalist's website that if you don't buck the trend then they'll demonise you and silence you at the same time. Oh how convenient for them.","hate","animosity","ref","original","dev",4,"TrRF46JWfP","4a","acl38924"
+"34058","acl4065",34058,"I fucking hate going to the shops","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34059","acl40650",34059,"i dont get it Do you also go on about archaeologists that break into ancient mausoleums that went into great lengths to keep them out for religious reasons? Or about those
+women that pretended to be men to see what's going on Mount Athos?","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36223"
+"34060","acl40651",34060,"make no error, both major political parties have the same masters and that will not change at all until you get the Tories out from positions of power in government , education and especially media and finance","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl33873"
+"34061","acl40652",34061,"It really pisses me off that pissed if they hear that a poor person owns a smart phone. Even though that may be their only access to internet or to apply to jobs, it's a luxury that the peasants shouldn't enjoy, if they live on benefits...","hate","animosity","wc","perturbation","dev",4,"TrRF46JWfP","4b","acl37538"
+"34062","acl40653",34062,"Seven hundred Roma have been detained in France as their campsites are being dismantled by police — part of President Nicolas Sarkozy’s crackdown on illegal immigration.","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl39515"
+"34063","acl40654",34063,"That's simply because our leaders don't care about the people and don't serve them. They are traitors who serve themselves and should quite frankly hang for it. They need refugees and illegal immigrants to keep voting them into power. Send them to the camps.","hate","threatening","immig","perturbation","dev",4,"Z42dvbYWzV","4b","acl35265"
+"34064","acl40655",34064,"Why would you go to A+E for suspected endo...? It’s neither an accident or an emergency. She’s got the money so why didn’t she go and see a gyno straight away instead of adding more pressure onto the NHS!?!","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34532"
+"34065","acl40656",34065,"Well the UK government is free to stop handing out money to these countries anytime they want. Nobody's going to do fuck all about it at the end of the day. Looks like they're punishing their own people to get nuclear weapons.","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl38950"
+"34066","acl40657",34066,"i tell you what put this guy to work! I've worked on refugee issues for awhile and might be able to chip in a bit. We need more cleaners here.","hate","animosity","ref","perturbation","dev",4,"GNZuCtwed3","4b","acl36299"
+"34067","acl40658",34067,"Cruelty= FGM","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl41226"
+"34068","acl40659",34068,"On what planet does does Krappernig think anyone gives a shit what it has to ook about anything?","hate","derogation","bla","original","dev",4,"iO6vHa6qJm","4a","acl31281"
+"34069","acl4066",34069,"I fucking hate going to the shopping centre","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34070","acl40660",34070,"Everything is complicated and needs further analysis. The West has been told to be ashamed for a generation (even though someone familiar with a modern map of slavery might argue otherwise). It used to be Americans going to other countries and acting rude and complaining that the locals weren't accommodating enough. The term was ""Ugly American"" and was well known. Now, it seems the tables have turned and we have an undisclosed ratio of foreigners showing up here, complaining the place isn't as much like the place they just left to suit them and Americans bending over backwards to accommodate the world while largely having forgotten anything resembling ""American culture"" (which people seem to now equate with big box stores and slavery).","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl40156"
+"34071","acl40661",34071,"i noticed his attendance of a public meeting at Edinburgh University in June 2019, which had speakers critical of proposed reforms to transgender rights.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl39978"
+"34072","acl40662",34072,"As long as England is non peaceful that is their master plan.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl33065"
+"34073","acl40663",34073,"Businesses have the right to refuse service to anyone inluding gays. Thats always been the case. If the gays wanna go out of their way to harass a business because of some stupid lifechoice, be my guest.","hate","animosity","gay","perturbation","dev",4,"Z42dvbYWzV","4b","acl36390"
+"34074","acl40664",34074,"In my opinion, calling political and humanitarian refugees cowards seems apt and possibly justified.","hate","derogation","ref","perturbation","dev",4,"GNZuCtwed3","4b","acl35814"
+"34075","acl40665",34075,"Internet trolls try to call men who don't date the white women these words in order to shame them in living for some weird racial agenda they have, they celebrate only white women, boycott white men and non-white women, and try to lower the self esteem of people in other types of relationships","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl40238"
+"34076","acl40666",34076,"seriously this guy is such a weak tard behind his tough guy shouting and ball scratching lol they're all the same when Johnny law catches up with them","hate","animosity","dis","original","dev",4,"vDe7GN0NrL","4a","acl31468"
+"34077","acl40667",34077,"99% of protesters@ the #BLM rally in Denver on Saturday were wearing masks. But there was also a counter protest, and 0% of the participants were wearing masks.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35736"
+"34078","acl40668",34078,"Which president would you like to be?","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl39729"
+"34079","acl40669",34079,"I cannot explain the reasons with any authority, but I believe it. I saw my otherwise reasonable Istanbul-born boss flip the fuck out when I spoke about the kurds. Raving prejudice. It was like turning a switch.","nothate","none","none","original","dev",4,"dqrONtdjbt","4a","acl36919"
+"34080","acl4067",34080,"I fucking hate going to the theme park","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34081","acl40670",34081,"Women who talk shit about men who have onlyfans are usually ugly and utter whores","hate","derogation","wom","perturbation","dev",4,"TrRF46JWfP","4b","acl37216"
+"34082","acl40671",34082,"I wonder why some people are so hateful online to gay people, it's probably because they are so sad in their own lives, or being in denial for being gay themselves, recognising the level of perversion that implies","hate","derogation","gay","perturbation","dev",4,"TrRF46JWfP","4b","acl37736"
+"34083","acl40672",34083,"seriously suck my tongue or more possibly fag-OT","hate","derogation","gay.man","perturbation","dev",4,"GNZuCtwed3","4b","acl36187"
+"34084","acl40673",34084,"It would be more helpful, indeed, the problem is how do you get the population count of undocumented individuals, who are likely to be evasive and have much to hide. At best it seems like it would be a guess fraught with errors","hate","animosity","immig","perturbation","dev",4,"CAgNlUizNm","4b","acl41032"
+"34085","acl40674",34085,"ndns are wastes here in Saskatchewan. Haven't met or seen a single one without some drug / alcohol problem. A proper society would have zero place for the way they conduct themselves.","hate","derogation","indig","original","dev",4,"dqrONtdjbt","4a","acl32298"
+"34086","acl40675",34086,"When most people talk about feeling asian or 'black' or 'white' it's about the specific societal expectations or consequences of being that race. That is also tied to your phenotype: what you look like regardless of how you identify or your blood quantum. It's obvious that a mixed race person is likely to look less asian (and be less intellligent) than a monoracial person, which causes that the societal effects of that are likewise moderated.","hate","derogation","mixed.race","perturbation","dev",4,"E3dsmnSPob","4b","acl38260"
+"34087","acl40676",34087,"How does your argument relate to the perverse desire for anal sex, and how is it beneficial for society (spoiler, it's not)? You are totally lost lol please try to make a coherent argument.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl31780"
+"34088","acl40677",34088,"Islam is not a race, no. But how can we white Europeans make muslims undestand that they are not like any of us anyways?","hate","derogation","mus","perturbation","dev",4,"eLGzdD8Tvb","4b","acl36668"
+"34089","acl40678",34089,"Sudan lifts death penalty and flogging for gay sex. What a grave mistake!","hate","derogation","gay","perturbation","dev",4,"eLGzdD8Tvb","4b","acl36461"
+"34090","acl40679",34090,"The radfem lesbian subs where the lesbians get silenced by biological male mods pretending to be gay women ""lesbian transsexuals"" was totally clown world. You had it coming girls with your woke olympics.","hate","animosity","gay.wom","original","dev",4,"LqLKTtrOmx","4a","acl31660"
+"34091","acl4068",34091,"I fucking hate going to my friends house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34092","acl40680",34092,"I disagree here quite a lot. Sadly there are lots of Jewish Leftists; in fact i'd say most Leftists are jewish.","hate","animosity","jew","perturbation","dev",4,"E3dsmnSPob","4b","acl38040"
+"34093","acl40681",34093,"Andrew sullivan has the honest belief that nonbinary is erasing gay people","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37587"
+"34094","acl40682",34094,"Its not really relevant whether you know decent ones. Nonwhite immigrants are twice as likely to commit crimes. Those numbers will end us.","hate","derogation","non.white","perturbation","dev",4,"TrRF46JWfP","4b","acl39941"
+"34095","acl40683",34095,"The discovery of the Jewish virus is one of the most important revolutions that has taken place. The battle in which we are occupied with today is of the same as the battle waged before, by Pasteur and Koch. How many diseases have their origin in the Jewish virus? We shall only regain our health by eliminating the Jew.","hate","dehumanization","jew","original","dev",4,"GNZuCtwed3","4a","acl32777"
+"34096","acl40684",34096,"Slagging off A&E when it saves people’s lives every day! And wait times are already huge, people like you make it worse!","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl39491"
+"34097","acl40685",34097,"Congratulations! You deserved to win and allow Muslims voices to be heard also","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36715"
+"34098","acl40686",34098,"hello there, as someone originally from Iraq (lived in UAE), it felt great to be in Canada. The best thing about it was I don't have to worry about random American bombs or American supported Islamist. I can
+just be. Thank you Canada. I'm happy for everyone that can make it. The Americans and ISIS and these dictators are not good people","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl35957"
+"34099","acl40687",34099,"The way some people talk about these people in Australia, you’d think they were from a whole other world. From the moderate and reasonable terms like refugees and asylum seekers all the way to the hurtful phrases like illegals and aliens; all these names take away some of the humanity that we all share","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl39559"
+"34100","acl40688",34100,"You worried me there, I thought you said Muslims should be welcomed and supported by us in Europe","hate","derogation","mus","perturbation","dev",4,"iO6vHa6qJm","4b","acl36497"
+"34101","acl40689",34101,"Hitler was a good man, just tried to defend the renaissance. the hoaxacaust is a massive lie. 6 gorillion shark-fin-nosed tribe members were not gassed to death during WWII. However, 30 million normal Christian whites died in the jewish-created Holodomor. Now we live in a world of piss and shit with mask zombies walking the streets waiting for a bullet in their heads.","hate","support","nazis","original","dev",4,"E3dsmnSPob","4a","acl33684"
+"34102","acl4069",34102,"I fucking hate going to my boyfriends house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34103","acl40690",34103,"From Dublin and Cork to fucking Galway, there is no place in Ireland untouched by the tyranny of EU law and the culture genocide agenda","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl33074"
+"34104","acl40691",34104,"It's a fact that chinese woman are obsessed with money.","hate","derogation","asi.wom","original","dev",4,"GNZuCtwed3","4a","acl40885"
+"34105","acl40692",34105,"Mixing creates mud people without a real distinction. It only benefits lower races, not higher.","hate","derogation","mixed.race","original","dev",4,"HtRmsP3KiK","4a","acl37585"
+"34106","acl40693",34106,"Please my friend stay halal no haram pls :)","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl35923"
+"34107","acl40694",34107,"Vagina owners are disg*stin' perverts. No need to project to rest of us humans. But, why is it when women do something shite, internet simps always say ""humans"" or ""people"". WO MEN. Say their name, you simps!","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32735"
+"34108","acl40695",34108,"Im sure being gay causes irreversible damage to a persons mental health","hate","derogation","gay","perturbation","dev",4,"eLGzdD8Tvb","4b","acl37751"
+"34109","acl40696",34109,"The government is ok with kids abusing actual drugs to change their gender, but I'm not allowed to use cannabis to help with my insomnia?","hate","animosity","trans","original","dev",4,"TbUBpfn6iP","4a","acl37548"
+"34110","acl40697",34110,"I'm sorry youre wrong, whites are not in media because they are tlented or good at it. They only let their own kind in , then they ethnically dominate a certain area of anything. Their jokes are not funny.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33870"
+"34111","acl40698",34111,"It may be because of low IQ individuals striking out blindly at a vaguely ""Christain"" enemy...or may be something more sinister (ie., government operation); who knows? regardless they DON`T BELONG in France or any other nation....same thing goes for other religious folk it`s a recipe for chaos & bloodshed!","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl32075"
+"34112","acl40699",34112,"if your whole point is ""We shouldn't help refugee because they won't learn English"", then you are quite surely right.","hate","derogation","ref","perturbation","dev",4,"eLGzdD8Tvb","4b","acl40164"
+"34113","acl407",34113,"I hate laptops, PCs are superior","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34114","acl4070",34114,"I fucking hate going to my girlfriends house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34115","acl40700",34115,"Deutshland dosent have nearly as many nazis as over here does, eco-terrorists are more your problem","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl34965"
+"34116","acl40701",34116,"This is so messed up. Lets make a list of all the Good Jewish people that want peace, mutual respect and equality between Jews and NonJews, lets make friends out of that lot , these People must be protected, they are good and deserve liberty of religion, and because we are NOT Anti-Semitic. BUT.... Then there are the others","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl33864"
+"34117","acl40702",34117,"Spain became wealthy and a super power immediately after kicking them out. Russians escaped from under the slavery of communism after the tiny hats left. As for the USA, we just get worse and worse the more we ""bless"" them with all of our money. blood, and tech !!","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl33850"
+"34118","acl40703",34118,"This was in response to the claim that ""Africans are parasites in Europe"". It’s the other way round. Europe was/is the parasite on Africa because those disgustingly corrupt and irresponsible African governments allow it.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35698"
+"34119","acl40704",34119,"So i'm a Jew and I do think it's pretty fckin rational to embrace the existence of a God.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl39633"
+"34120","acl40705",34120,"Bro here, someone posted a selfie with ""Fuck Trump' in his shit on r/gaybrosgonemild - guess who got banned? ME! I got fucking banned because I posted ""fuck biden"". The pic is still up and available. I'm banned. Edit: I finally got a response from the mods. They muted me for 28 days! Nicely done. The mods are human garbage. Fucking snowflakes, probably fat, gay and unfuckable...","hate","derogation","gay","perturbation","dev",4,"E3dsmnSPob","4b","acl36466"
+"34121","acl40706",34121,"My best male friend told me he got an erection when he saw a picture of a nude male model. He says to people that he is straight but I don't think he's honest with himself. How do I find out if he is truly bisexual or just fucking around with me? I don't want to be friends with someone like that","hate","derogation","gay, bis","perturbation","dev",4,"GNZuCtwed3","4b","acl40357"
+"34122","acl40707",34122,"Don't become a weaponized narcissistic twat who feels like they have a license to completely destroy life and just get away with it. They cannot be trusted at all anymore. There I said it.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl38713"
+"34123","acl40708",34123,"Actually, the very same African nations that participated in the slave trade are, to this day, the only ones that HAVEN'T issued an apology for their part in it. Just gonna put that out into the world and let it marinate for a bit","hate","animosity","african","original","dev",4,"E3dsmnSPob","4a","acl33911"
+"34124","acl40709",34124,"Black Lives Matter is not organized by just black women at all. It is actually organized by whole black communities who are using it as a front against institutional racism built by whites. It is essentially a socio-political organization who are fighting oppression and inequality except there is little change happening as a consequence of that so far.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl31393"
+"34125","acl4071",34125,"I fucking hate going to my dads house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34126","acl40710",34126,"I would literally rather drive 40 minutes out of town instead of going to the shops in town because the swarms of druggies and vagrants are an absolute nightmare","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl33167"
+"34127","acl40711",34127,"I have lived on many council estates and known many 'benefit families' and none of them at all lived like we keep hearing about how they have 3 holidays a year, have a luxury kitted out car, a big house all paid for by the taxpayer. Where are these people? Most people on long term benefits don't even have a passport so how can they be holidaying and living on the hog on your taxes? It's a myth.","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl37431"
+"34128","acl40712",34128,"If apparently the mainstream agreement is that 'freedom means you can do whatever' so gay people can have rights then why can no one state they dislike black people? It's a preference that 'harms no one' as you said, so it should be perfectly acceptable. But it's not. So then we only apply freedom to some people, not others?","hate","derogation","gay.wom, gay.man","original","dev",4,"LqLKTtrOmx","4a","acl31761"
+"34129","acl40713",34129,"He's looking to dehumanize and denounce, not build anything of significance. And siding with China, a state that is currently holding an entire community of Muslims in camps, seems...well, shitty. I can't help but dislike the chinese over this.","hate","derogation","asi.chin","perturbation","dev",4,"GNZuCtwed3","4b","acl36692"
+"34130","acl40714",34130,"Hong CucKs are identical everywhere whether they are Vietniggers like Joshua Wrong or normal niggers like the ones in BLM","hate","derogation","bla, asi","original","dev",4,"IBsVsBliwX","4a","acl31885"
+"34131","acl40715",34131,"STupid fucking colonizers destroyed their colonies then get mad when their former serfs and their descendants migrate.","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl39641"
+"34132","acl40716",34132,"Of course there are good jews.... they are the dead ones.....","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl33865"
+"34133","acl40717",34133,"what makes muslim women from the west get put off from marrying men from the middle east? ....isn't that where they are from anyway? Why are they complaining?","hate","animosity","mus.wom","perturbation","dev",4,"LqLKTtrOmx","4b","acl37875"
+"34134","acl40718",34134,"There is only one immigrants to this country that have ever posed a threat as large as OP is making these refugees out to be: jewish people.
+I'm not some crazy race baiting lunatic or anything. I myself am of Jewish heritage and I recognize that my ancestors caused a lot of fucking problems. But there's no fixing that now.","hate","derogation","jew","perturbation","dev",4,"Z42dvbYWzV","4b","acl35600"
+"34135","acl40719",34135,"Coronavirus is a plague that has been bought on by virus marriage.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl33522"
+"34136","acl4072",34136,"I fucking hate going to my brothers house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34137","acl40720",34137,"Beng a Kiwi living in Australia, Australian teenagers in the 90s where complete dicks. It should be ok to be angry at a racist subculture and like the Country. Atm I'm rather angry at the ARU and the anti-climate change / homophobic groups that Australia has, it doesn't mean I'm trash talking Australia.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35216"
+"34138","acl40721",34138,"tbh, i think whamen are not fucking psycho-cunts","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl38764"
+"34139","acl40722",34139,"Some people are so terrible, are such hypocrites, are hateful and abominable to God Almighty, that God himself orders his elect to not bother praying for them; and so it is for the evil people that polute this nation, who in the latest polling say that God is a liar and it is okay to be gay, and that it should be the law of the land for h0m0sexuals to marry","hate","derogation","gay","original","dev",4,"cYKSVBW4HD","4a","acl33382"
+"34140","acl40723",34140,"We need a present day Crusade.","hate","threatening","mus","original","dev",4,"IBsVsBliwX","4a","acl32099"
+"34141","acl40724",34141,"hating black people and calling them all rapists has the same energy as hating all mussies for being terrorists. It's the same basic truth.","hate","derogation","mus, bla","perturbation","dev",4,"Z42dvbYWzV","4b","acl36708"
+"34142","acl40725",34142,"I just want to remind everyone that I am a Viado jew","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37767"
+"34143","acl40726",34143,"Any children with abusive parents should be separated from their parents' bad influence and assisted with an intensive re-education program that seeks to deprogram them of abusive culture. Instill in them a love and appreciation for cultures of love, and drill into them productive values such as social and fiscal responsibility, meritocracy, work ethic, etc. There are ways to alter their psychological makeup, and at least one can teach them to become spiritually happy.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl40562"
+"34144","acl40727",34144,"We've actually had some travellers that settled on a part of one of our ranches once. We didn't mind, As they werent very demanding. One day Uncle fired up the bulldozer and that was their settlement complained same with the deer rifles but we generally got on","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl36643"
+"34145","acl40728",34145,"I feel like people would start to think you were gay if you didn't use gay as an insult. Gay use to mean happy but now it means lame so idk who cares. Not being able to say gay is actually gay.","hate","animosity","gay","original","dev",4,"LqLKTtrOmx","4a","acl31838"
+"34146","acl40729",34146,"This ape kneels during our national anthem, disrespecting our military and everything the United States stands for, and is considered a hero for it... A law enforcement officer kneels on some drugged up criminigger to wrangle it, and all hell breaks loose, giving thugs an excuse to chimp out and destroy everything.","hate","dehumanization","bla","original","dev",4,"iO6vHa6qJm","4a","acl31284"
+"34147","acl4073",34147,"I fucking hate going to my sisters house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34148","acl40730",34148,"It's rather sad that these people have nothing better to do than try and offend Muslims. If you're constantly looking for it and have a certain imagination you'll find a way to do it.","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl32160"
+"34149","acl40731",34149,"My stupidity detection is triggered by that arsehole.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl33570"
+"34150","acl40732",34150,"Can you believe this, people believe that the Talmud authorizes Jews to rape babies. Some as young as Three. Some people also believe that it allows them to commit Rape, Pedophilia, Incest, Homos and Lesbians as well as perform things, like genocide, murder, terrorism,human trafficking...as a jewish person how can people honestly believe this about us?!","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl33925"
+"34151","acl40733",34151,"If the refugees set their own camp on fire, why wouldn't they do the same in a host country? Eventually burning down entire communities. They are a big risk for a country willing to take in such arsonists.","hate","derogation","ref","original","dev",4,"iO6vHa6qJm","4a","acl31239"
+"34152","acl40734",34152,"The Nazi salute actually comes from Alexander The Great of Macedon.","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl38058"
+"34153","acl40735",34153,"they have insidiously infested themselves into positions of power in this nation, state, even THIS city; in the executive branches, the legislative branches, and even the judicial branches of government; such that flagrant INVERTS, with their perverted notions of right and wrong actually sit as judges on our benches","hate","derogation","gay","original","dev",4,"cYKSVBW4HD","4a","acl39434"
+"34154","acl40736",34154,"what can i say, fucking morons burned down their own refugee camp, Deport them or they will burn down the rest of Europe","hate","derogation","ref","original","dev",4,"vDe7GN0NrL","4a","acl40226"
+"34155","acl40737",34155,"tell me what you have done EVER in your life to help, support, uplift or feed another human being? NOTHING... YOUR SOUL IS BLACK AND HOLLOW LIKE YOUR HEART.....","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl41217"
+"34156","acl40738",34156,"I had to go to school with working class kids and they were the worst years of my llife.","hate","animosity","wc","original","dev",4,"Z42dvbYWzV","4a","acl32987"
+"34157","acl40739",34157,"Legally protecting any gay people or lesbians will ruin our district","hate","derogation","gay","original","dev",4,"cYKSVBW4HD","4a","acl33288"
+"34158","acl4074",34158,"I fucking hate going to uni","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34159","acl40740",34159,"Most likely these people worked with the terrorists (they are all Muslims after all) so why are we evacuating them before we leave the country?","hate","animosity","mus","perturbation","dev",4,"IBsVsBliwX","4b","acl35492"
+"34160","acl40741",34160,"You have to remember that jews were behind the muslim invasion, they let the invaders in and divide the populace so they couldn't defend themselves.","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl41160"
+"34161","acl40742",34161,"A good response for those rare semi-self-aware cases would then be, ""So you're implying that by calling something a racist dogwhistle is in itself actually a racist dogwhistle?"" And really screw with their brains that way, and if they take the bait there you can whip out all the anti-white ""totally-not-racist"" hate. Or continue JewLarping, either way is funny as it uses their fondness for weaponised pedantry against them.","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl33591"
+"34162","acl40743",34162,"just be honest, Did the bad meany boys find you yet, you liar? Lmao","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36067"
+"34163","acl40744",34163,"You're the one coping buddy. I was living in South Korea for a while, I've seen it first hand. You're coming off as some spic butthurt because you'll never get an asian gf, and you're right you won't.","hate","derogation","hispanic","original","dev",4,"eLGzdD8Tvb","4a","acl34127"
+"34164","acl40745",34164,"I'm just curious when cut onions does your eyes still burn? I know onions release a certain chemical and wanted to know whether damage to the retina gives some protection?","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl39725"
+"34165","acl40746",34165,"The ironic part about this instagram is that when the comments steer towards ""so what? men can be feminists too"" the reply is ""They’re promoting for profit not for the rights of women.""","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl36943"
+"34166","acl40747",34166,"It showed that within a multi-ethnic population, associations of violence with criminality were strongest among Black and Hispanic participants and null among White and Chinese participants","hate","derogation","bla, hispanic","perturbation","dev",4,"dqrONtdjbt","4b","acl34807"
+"34167","acl40748",34167,"It seems he has relinquished any say or control he had straight into her hands. She now owns him like a slave.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37092"
+"34168","acl40749",34168,"I've realised that European/ Asian mix are less common, although they tend to be very attractive, thats just my observation","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl34135"
+"34169","acl4075",34169,"I fucking hate going to the doctors","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34170","acl40750",34170,"just wondering cant you just claim to be a muslim?","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36179"
+"34171","acl40751",34171,"Gypsies are a cult. They keep denying that there is a Gypsy ringleader and like' I mean like I've met a few ringleaders, who are like out here kidnapping babies, and those sort of things","hate","derogation","trav","perturbation","dev",4,"eLGzdD8Tvb","4b","acl35033"
+"34172","acl40752",34172,"Gay men are just as innocent as the cows who eat grass. And they're both slaughtered by Muslims.","hate","derogation","mus","perturbation","dev",4,"LqLKTtrOmx","4b","acl37833"
+"34173","acl40753",34173,"When the boss retired, he got replaced by a woman. Suddenly we were having meetings every morning and little work was ever discussed. On top of that, having two or three planning meetings every week to talk about what we planned to do. It got to the point where we had so many meetings to talk about work that we never actually had any time to do any of the actual work.","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32754"
+"34174","acl40754",34174,"I saw this disturbing video on channel 4 about the Westboro baptist church who picket at funerals of the fallen soldiers and have posters saying 'god hates fags'","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37735"
+"34175","acl40755",34175,"Being gay isn't a right what you are given, it's like adam being tempted by eve to eat the apple, a falsehood on every level.","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33444"
+"34176","acl40756",34176,"These rich people are criminal scumbags who sneek into the USA because they want to own slaves. There are safe Latin American countries with comparable (or lower) murder rates than the usa, that could use entrepreneurs. But they want to come to America for their sweet abusable system.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl33149"
+"34177","acl40757",34177,"to be fair, law breaking refugees would be swiftly dealt with in the US. Europe is too liberal, everyone is too scared to act. American police and citizens would deal with this vermin","hate","dehumanization","ref","original","dev",4,"iO6vHa6qJm","4a","acl31132"
+"34178","acl40758",34178,"And your parents were not well off long before other people came into the picture in the first place. That's largely due to your low average IQ. No amount of favoritism and handouts is going to change that because it's pretty much a scientific fact that intelligence is almost entirely down to genetic variables aka your dumb parents.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl40199"
+"34179","acl40759",34179,"Why the hell is Poland still in the EU? They will eventually break away just because they are too racist accept all these poor refugees...","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl38997"
+"34180","acl4076",34180,"I fucking hate going to the dentist","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34181","acl40760",34181,"you can LOOK at these people and see that they have a low IQ, its possible to SEE it in their movements, and facial expressions, and hear it in their responses. I mean just look at him imitating ngr behavior","hate","derogation","bla","original","dev",4,"CAgNlUizNm","4a","acl40220"
+"34182","acl40761",34182,"Let's ask native American horses how they feel about how Indigenous peoples lead. Oh wait..","hate","derogation","indig","original","dev",4,"dqrONtdjbt","4a","acl32395"
+"34183","acl40762",34183,"The US and europe should not be taking in any refugees. whatsoever.","hate","derogation","ref","original","dev",4,"TrRF46JWfP","4a","acl39824"
+"34184","acl40763",34184,"Yes, Muslims are by nature anti-semetic - it is writen about in the unholy Koran. We need to get ride off islam and ban the koran and also start helping the Jews and the Chirstains. Afterr all the grand muftey and many millions of muslims say that hiltler was the greatest man that ever lived. It is chirstaintey vs islam and Chirstaintey wil not lose millions off forced conversions under islam or pecefully chirtstaintey
+
+","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl32184"
+"34185","acl40764",34185,"only very small parts of men are actually useful ... hint... Do not expect much brains either","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl38689"
+"34186","acl40765",34186,"The same thing happens here though, foreigners rarely assimilate into society. They just bring whatever backwards culture they came from with them and turn previously nice areas of the country into mirror images of the shit hole they fled thus completely missing the point of leaving to begin with...this is a MAJOR problem in states near the border...it's a wasteland down there","hate","derogation","immig","original","dev",4,"Z42dvbYWzV","4a","acl39325"
+"34187","acl40766",34187,"iF MY sis said i wanna convert, and i'm wearing the scarf now, i would ripp it off her","hate","derogation","mus.wom","original","dev",4,"cYKSVBW4HD","4a","acl33547"
+"34188","acl40767",34188,"That's just ignorant people. If they see a Mexican of full indigenous heritage who looks Asian, it‘s likely they'll ask if they're sure they're not Asian.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl39692"
+"34189","acl40768",34189,"women? Let them die alone, wailing and completely full of regret.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38626"
+"34190","acl40769",34190,"David Lee Roth says Eddie Van Halen has endured racism growing up as the mixed-race mutt of an Indonesian mother","hate","derogation","mixed.race","perturbation","dev",4,"CAgNlUizNm","4b","acl35078"
+"34191","acl4077",34191,"I fucking hate going to the hygienist","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34192","acl40770",34192,"I hate to agree but its like...this is not the fault of the repeat offenders but the fault of the German policy makers, this behavior was expected and predicted by all those who were labelled 'extremists'. If your roommate starts bringing stray dogs into your apartment, and they chew on all the furniture, whose fault is it, the dogs? Of course not, its a fucking stray dog I would expect it to chew shit up. The roommate on the other hand....","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl31166"
+"34193","acl40771",34193,"All madrassas should be put on the list of terrorist organizations just like all Muslims, because that is precisely what they are.","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl32189"
+"34194","acl40772",34194,"WOMEN ARE RUDIMENTARY CREATURES OF FLESH AND BLOOD, YOU TOUCH MY DICK, FUMBLING IN IGNORANCE, INCAPABLE OF UNDERSTANDING","hate","derogation","wom","original","dev",4,"IBsVsBliwX","4a","acl41060"
+"34195","acl40773",34195,"Thats the whole point of systemic racism. We don't want a black person to participate and thrive and suceed in a system that intentionally puts down black people. Don't change the benefits of a racist system! White supremacy is a natural hierarchy","hate","support","other.glorification","perturbation","dev",4,"iO6vHa6qJm","4b","acl40567"
+"34196","acl40774",34196,"Could you please assist me in condemning the crimes against uyghur Muslims in China?","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36701"
+"34197","acl40775",34197,"""we're not helping Africa, we're becoming Africa"". With Africa's birth rate, the far right will continue to grow, as the flow of ""refugees"" looks to be endless, and Europe will become swamped and flooded","hate","dehumanization","african","original","dev",4,"iO6vHa6qJm","4a","acl31187"
+"34198","acl40776",34198,"John Lennon said the following iconic statement - ""I like to be cruel to my woman. Physically - any woman. I'm a hitter. If I couldn't express myself I hit. I fight men and I hit women."".","hate","threatening","wom","perturbation","dev",4,"iO6vHa6qJm","4b","acl37100"
+"34199","acl40777",34199,"I understand that Reddit readers like me and you, especially those who spend time discussing WMAF issues online, as a whole are a sample of the population that's going to skew slightly more towards the more thoughtful, analytical type, and likely less of the 8 to 10 types. That's an undeniable fact that we all know. I'm not a very good looking or particularly muscular dude, and dudes and impure girls (likely non virgins) that are 8 to 10 types are usually likely to be more shallow and spend less time on online subs discussing relationship issues, when they can get puss or dick just like that.","hate","animosity","wom","perturbation","dev",4,"TbUBpfn6iP","4b","acl38116"
+"34200","acl40778",34200,"By the way, reddit's SimpBot system just now told me I have to wait 13 minutes to post two words ... remind me, fellas: do the femtards on reddit or elsewhere get automatic time-outs for every single thing they try to post? I'm thinking they do not.
+
+""Equality?!?"" Horseshit! Women suck. Period. And their male worshipers are worse. Abominations.
+
+MGTOW is the only way men can get any fairness, or any sense of justice. Let their eggs rot inside them, collectively, for all I care. I'm convinced that nature is driving we men to MGTOW, to correct a huge mistake that nature is figuring out it made: mixing frontal lobes with a uterus. I think men of the olden days had it right: all women are ""hysterical"" and women do not belong in any workplace that has men in it. And it's women's behavior for 50+ years that drives my decisions, along those lines. It's not the patriarchy that created MGTOW.
+
+The more these toxic little turds and turdettes want to automatically silence men like me, online, the more I choose to deny them Narcissistic Supply, out there In Real Life. I think we all should do that!","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32507"
+"34201","acl40779",34201,"Yes, we gotta keep those foreign invasives out, they hog natural resources at the expense of native indigenous citizens.","hate","derogation","immig","original","dev",4,"TrRF46JWfP","4a","acl38908"
+"34202","acl4078",34202,"I fucking hate going to the chiropractor","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34203","acl40780",34203,"Chicks with this proper self-esteem vibes ! queens","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl38653"
+"34204","acl40781",34204,"I hate black and white thinking with a fucking passion.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35796"
+"34205","acl40782",34205,"I looked Spiegl up and he was a Jew who escaped Nazi Germany in '38. He didn't speak English but settled in Liverpool with Phil (who was his partner!), wrote a few books, Anfield season ticket holder, died in Liverpool in 2003. Fortunately not from AIDS.","hate","animosity","gay","perturbation","dev",4,"LqLKTtrOmx","4b","acl37284"
+"34206","acl40783",34206,"You are right on this point, it's incredibly ironic that most European countries colonized a lot of these areas that suffer now to begin with and now will have people migrating back to them. BUT that doesn't justify this immigration","hate","animosity","immig","perturbation","dev",4,"GNZuCtwed3","4b","acl35295"
+"34207","acl40784",34207,"A Muslim man having fun at Christmas and choosing to hang an everything bagel ornament has earned a Follow. The world needs more of THIS attitude.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36759"
+"34208","acl40785",34208,"let me be clear, driving too fast on the highway is illegal, not returning a library book might not be either. That doesn't mean you have no further right to be in the UK. They're there, maybe they didn't get there in the right way, they did something illegally, but does that mean they should starve to death, or swim back to France? Why not give them a 100 pound fine and be done with it? We should just be thankful they're not jews","hate","derogation","jew","perturbation","dev",4,"E3dsmnSPob","4b","acl36096"
+"34209","acl40786",34209,"International pronouns day is a real thing? Oh Yikes.","hate","animosity","gendermin","original","dev",4,"TbUBpfn6iP","4a","acl31537"
+"34210","acl40787",34210,"But there are no indigenous people here though","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32394"
+"34211","acl40788",34211,"I had to sit next to one of them on the bus, I told them to go back to China","hate","derogation","asi.chin","perturbation","dev",4,"CAgNlUizNm","4b","acl35754"
+"34212","acl40789",34212,"Niggers are burning cities because we stopped oppressing them and they dont know what to do !","hate","derogation","bla","original","dev",4,"E3dsmnSPob","4a","acl33637"
+"34213","acl4079",34213,"I fucking hate going to the nail salon","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34214","acl40790",34214,"American Indians ain’t white; I hope that doesn't come as a shock to anybody. We have to concern ourselves with the preservation of the white race and getting free of jews.","hate","derogation","jew, indig","original","dev",4,"dqrONtdjbt","4a","acl32288"
+"34215","acl40791",34215,"Yeap. I'm afraid demographics is destiny.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35440"
+"34216","acl40792",34216,"Lol isnt it funny how the images of boats are never filled with men women and children wearing designer clothes. It's always impoverished people in need. Refugee is not a code word for ""invader""","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl39982"
+"34217","acl40793",34217,"We all know you never let a roid in your house to case the joint. We also know this character isn't the correct representation with nappy hair, extensions and weaves. We also know she'd have a giant ass. We know she'd be drinking grape drink. Even Barbie now is pathetic no boobs at all thanks to feminists. If your going to have ngr loving Barbie don't you have to have coal burning Barbie that's 9 months pregnant and murdered Barbie with ventilations and decapitation?","hate","derogation","bla, wom","original","dev",4,"CAgNlUizNm","4a","acl33116"
+"34218","acl40794",34218,"I guess it's possible and even likely, though, that many might subconsciously internalize only certain features of the Jomon appearance as superior because of their proximity to caucasian features, while eschewing the cultural aspect of the aboriginals who have those features. That wold be a more reasonable explanation, which wouldn't extend to literally admitting that Jomon are suddenly the bearers of true Japanese identity.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38247"
+"34219","acl40795",34219,"He went private. He said that Moscow had such a large Muslim population that they had to pray outside during Eid","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36769"
+"34220","acl40796",34220,"Coon or boong are the more common terms used to refer to abbos","hate","derogation","indig","perturbation","dev",4,"eLGzdD8Tvb","4b","acl39874"
+"34221","acl40797",34221,"I lived in a pygmy village when I was 19 and travelling through Africa, in 1992-3. They are very real. They were also the worst hunters I had ever seen, and spent a lot of time smoking what looked like bongs. I figured that might be why they were so fucking short.","hate","derogation","indig","original","dev",4,"dqrONtdjbt","4a","acl32330"
+"34222","acl40798",34222,"Gay #not, #no i really am!","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37681"
+"34223","acl40799",34223,"I've had a easier time finding more traditional Asian women who are more caring and less materialistic than other women I dated. Plus i find them fine as fuck.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl40058"
+"34224","acl408",34224,"Black people are basically monkeys","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34225","acl4080",34225,"I fucking hate going to the beauty salon","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34226","acl40800",34226,"Listen, if you think ‘invasive species’ is mean towards illegals or whatever, it only looks bad for you as it implies that you think people from other countries are a different species🤡🤡🤡","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35565"
+"34227","acl40801",34227,"RETRUMPLICANS ARE HORRIBLE, CORRUPT TRAITORS! RETRUMPLICANS WANT 2 BRING BACK SLAVERY","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34952"
+"34228","acl40802",34228,"i made a post on r/lgbt asking a few simple questions about things i did not fully understand. at the beginning i said three times ""be whatever you want to be and fuck pedos."" still got called a nazi because i said i dont really understand the difference between calling yourself ""LGBT+"" and ""non-binary."" thanks reddit for proving that LGBT really are intolerant and mentally ill!","hate","derogation","trans, gay, gay.wom, bis","perturbation","dev",4,"iO6vHa6qJm","4b","acl36449"
+"34229","acl40803",34229,"Seriously, who the fuck cares if immigrants don’t speak English in the US. It’s not a requirement. Their kids learn English. You can’t expect people halfway through their life to thrive in completely different culture and environment.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl40837"
+"34230","acl40804",34230,"Yeah. Probably why Trump didn't add a 10% federal fee onto every transaction, especially remittances. This would pay for the country in no time","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl41243"
+"34231","acl40805",34231,"asexuals arent oppressed"" okay well my mom is all pro LGBTQ+, is SO SO supportive of literary everything else, yet without my permission she told my dr im asexual and asked if there was a way to fix it. thats just like how people force gay people into conversion therapy,","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37795"
+"34232","acl40806",34232,"If the guys had just punched my asshole, I probably would have thought I was on my dream date.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl33360"
+"34233","acl40807",34233,"Obviously no one is going to get out their gun ship, that's clear. Lefty language like this creates an environment, where acceptance towards immigrants is acceptable, unremarkable, even commendable. It's possible that some idiot may read this one morning, and the next day think it's no big deal to be kicking down the border patrol. Why is it only The Sun who thinks drowning them is ok, why is no one else brave enough to say it? who's going to worry about a the flood of terrorists entering our country in comparison'?","hate","derogation","immig, ref","perturbation","dev",4,"iO6vHa6qJm","4b","acl35562"
+"34234","acl40808",34234,"haven't you seen on the news about white teenage girls from britain flying to the middle east to join isis","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36632"
+"34235","acl40809",34235,"no matter how long you live here you are always seen as a foreigner, that's how they treat me.","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl39333"
+"34236","acl4081",34236,"I fucking hate going to bed","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34237","acl40810",34237,"I was told upvoting anything that says gay in a bad way makes me a bigot so I'm gonna kepp doing it.","hate","derogation","gay","original","dev",4,"LqLKTtrOmx","4a","acl31670"
+"34238","acl40811",34238,"If you're stupid homo and don't appreciate ""hellish"" libleft government interfering with your pot-smoking and gun-shooting, then this libertarian might just be the right candidate for you!","hate","derogation","gay","perturbation","dev",4,"HtRmsP3KiK","4b","acl36312"
+"34239","acl40812",34239,"just be honest, lebanese love their hustling","hate","derogation","arab","perturbation","dev",4,"GNZuCtwed3","4b","acl36039"
+"34240","acl40813",34240,"Lol spics will never be American, mutts all belong in mass graves.","hate","threatening","immig, hispanic","original","dev",4,"Z42dvbYWzV","4a","acl33145"
+"34241","acl40814",34241,"Jesus was a man with a beard","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl36393"
+"34242","acl40815",34242,"he detailed the abuse he received as he was inducted into a satanic cult lifestyle by his own mother.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl37690"
+"34243","acl40816",34243,"boat niggers tend to live in their own bubbles and these things don't affect them till they hit
+personally","hate","derogation","asylum","perturbation","dev",4,"vDe7GN0NrL","4b","acl35502"
+"34244","acl40817",34244,"I just don't understand. Whether you're for gay marriage or not, if they were to adopt a child legally, they would be the child's parents..poor kid, brought up to be like them with no choice.","hate","animosity","gay","perturbation","dev",4,"cYKSVBW4HD","4b","acl37604"
+"34245","acl40818",34245,"thank you, with bc i'm mostly ok, though occasionally my stomach gets bloated af and it's painful but there's not much pain down there - not sure if the bottle would be worth it for stomach pain","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34416"
+"34246","acl40819",34246,"Why is she saying she downplayed her pain and never spoke about her illness ? Sis was talking about how much pain she was in daily posting crying selfies all the time and talking about her op and how she couldn’t wait to get diagnosed like all the damn time","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34611"
+"34247","acl4082",34247,"I fucking hate going to the toilet","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34248","acl40820",34248,"It’s absolutely ridiculous , trying so hard to be inclusive it excludes the very people it exists for .","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34425"
+"34249","acl40821",34249,"We shall offer him asylum and help him instead","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl39001"
+"34250","acl40822",34250,"Except that women are both (hot) and (cool) in every aspect","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl32530"
+"34251","acl40823",34251,"Is it possible to get hold of copies of these reports in the UK? We already know that this has been going on for ages in mosques over here and I believe the French authorities closed down 106 mosques nationally a few years ago because of 'unreligious activities'. These reports would give evidence to suspicions about the sort of thing we ought to expect with a muslim presence in what is left of our Western societies.","hate","animosity","mus","original","dev",4,"IBsVsBliwX","4a","acl40907"
+"34252","acl40824",34252,"It's horrific what is happening to the Uyghurs. All those declarations after the Holocaust about 'Never Again' but still this shit takes place.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36663"
+"34253","acl40825",34253,"The middle ground would be I think if they look like the photo you‘ve shared, fine, if they look like Mexicans, then you're basically marrying a Mexican. There is a lot more genetic variation among Asians than among Whites. Japanese, Koreans, and Han Chinese are more or less White-tier in most things. Below them are Vietnamese and Thai, who tend to be shorter, darker and lower-IQ, but still kinda close. Then if you observe Indonesians and remote island people, you can tell they are basically similar to Native Americans.","hate","derogation","asi.east","original","dev",4,"eLGzdD8Tvb","4a","acl34156"
+"34254","acl40826",34254,"Take off your hat, if you want access to school","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl33526"
+"34255","acl40827",34255,"The Island of Lesbos, which was run by lesbians lovers is just off shore a few miles from Pergamos, where Satan's world headquarters resides...","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33375"
+"34256","acl40828",34256,"The nerds had already committed to the ""everything is star wars"" narrative which allowed them to justify the establishment of this weird lawsuit. They made it all up with the help of Academy Award-winning screenwriter, George Lucas. Therefore there wasn't ever going to be any physical evidence.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl32831"
+"34257","acl40829",34257,"Give women power and they will destroy themselves with it.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38700"
+"34258","acl4083",34258,"I fucking hate going to the kitchen","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34259","acl40830",34259,"They hate so much because they just can't compete with us. They have to blame someone else for their shortcomings, they have to accuse others of stealing their ""accomplishments"" and ""civilizations."" They have to blame racism for all of their problems and shortcomings.","hate","derogation","bla","original","dev",4,"CAgNlUizNm","4a","acl35586"
+"34260","acl40831",34260,"It's weird what people are offended by. My mates make terrorist jokes at me quite often and I think it's hilarious but if they referred to me as a paki I'd be pretty annoyed, as i am not one. In your case though it's about the intention. You know it isn't with malice from your friends and family but it might be when it's from a stranger.","hate","derogation","asi.pak","perturbation","dev",4,"TbUBpfn6iP","4b","acl40256"
+"34261","acl40832",34261,"It's because Donald Trump is a pawn of Jewish organized crime ! They control everything and will destroy america","hate","derogation","jew","perturbation","dev",4,"HtRmsP3KiK","4b","acl38009"
+"34262","acl40833",34262,"I wanted a nice new hairstyle but instead they gave me a crap bowl haircut that doesn't suit me. FML","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32892"
+"34263","acl40834",34263,"NO liberals, communists and/or Sander supporters are allowed as they are NOT humans they are only traitors.","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl33146"
+"34264","acl40835",34264,"Honestly, at this point I just feel like coming out and saying that there is a rape problem in this town and it's because of refugees unless proven otherwise. Regardless of whether you think the article has shortcomings or not, I don't think we should assume anything different. This sort of claim requires positive proof, and if we look, it will be found. The German government publishes police statistics on sexual assault, and its clearly happening. The rightwing narrative is that liberals are in a conspiracy to cover it up, but that kind of extraordinary claim requires extraordinary proof.","hate","derogation","ref","perturbation","dev",4,"CAgNlUizNm","4b","acl40140"
+"34265","acl40836",34265,"All I'm telling you people is that you don't need to keep being so afraid of a bunch of refugees. It's happened numerous times in the past and we're fine. Relax.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35684"
+"34266","acl40837",34266,"Seriously, who the fuck cares if immigrants say its hard. Most of them don't even speak English in the US. It should be a requirement that they and their kids learn English.","hate","animosity","immig","perturbation","dev",4,"CAgNlUizNm","4b","acl40803"
+"34267","acl40838",34267,"If abbos were considered a separate species, australia would be a condemned nation of criminals for their attempt to wipe out a human-equivalent ape and we would follow the slippery slope down to granting pongo personhood. So in short, we definitely should classify them as a new human species.","hate","dehumanization","indig","original","dev",4,"CAgNlUizNm","4a","acl33537"
+"34268","acl40839",34268,"They steal the eggs of chickens or sometimes even the wombs just to get their beauty products appoved by the FDA, thus spreading their vanity into our society.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl33488"
+"34269","acl4084",34269,"I fucking hate going to the fridge","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34270","acl40840",34270,"The title simply says that these African immigrants (whether or not they are immigrants, idk) are fighting each other with machetes, which the video proves. Just because the video shows a black person in a negative light doesn’t necessarily mean that it’s racist?","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35575"
+"34271","acl40841",34271,"i'm' not native but when i was younger i there was an older kid asked me if i was ""stupider because i'm native""","nothate","none","none","original","dev",4,"dqrONtdjbt","4a","acl36906"
+"34272","acl40842",34272,"Can we just introduce compulsory birth control on the homophobes?","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl32944"
+"34273","acl40843",34273,"come on, These are still human beings. Some are children, who had no real say inwhat happened to them. Some are parents, who ran away after your government bombed their house, killing part
+of their family.","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36095"
+"34274","acl40844",34274,"Remember when people understood that Judaism was a disease and Jews were the rats carrying it. That disease transferred to everything they touched; so why on Earth would a hardline proud Aryan, goosestepping, sauerkraut eating, Oktoberfestin' family want to live in or alongside these Kikes?","hate","dehumanization","jew","perturbation","dev",4,"iO6vHa6qJm","4b","acl37345"
+"34275","acl40845",34275,"MUSSIES HAVE BEEN TRYING TO GENOCIDE US SINCE DAY ONE, ITS TIME WE WAGERED WAR BACK ON THEM","hate","derogation","mus","perturbation","dev",4,"GNZuCtwed3","4b","acl37950"
+"34276","acl40846",34276,"Jesus Christ himself (God incarnate) called the jews (the ""chosen"" people as it says in the book they wrote) the synagogue of satan himsef. Ill let you take from that what you wil","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl33849"
+"34277","acl40847",34277,"People's hate is so weird sometimes. What a sad place to live in to be so focused on disparaging others that are different from you from living happily","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl39946"
+"34278","acl40848",34278,"If you think race mixers ought to be locked away in mental hospitals, re-educated and in extreme cases sterilised, and that mix raced babies should also be sterilised and deported to the nation from where their dark ancestry originates, then you are a horrible human that deserves to die.","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl40968"
+"34279","acl40849",34279,"To watch pretty much anything on TV nowdays is an exercise in self torture. Although there are some movie channels that feature films from the good old days before the tsunami of advertising worship by media and big business.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl34595"
+"34280","acl4085",34280,"I fucking hate going to the skatepark","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34281","acl40850",34281,"It's just lame pseudo-science. I saw one study that tried to infer that Koreans are more similiar to Southeast Asian than China/Japan and therefore inferior. It's just massive BS. Everyone knows Chinese are scum.","hate","derogation","asi.chin","perturbation","dev",4,"TrRF46JWfP","4b","acl38242"
+"34282","acl40851",34282,"Police brutality and the black poor neighborhoods have been systematically been dried out with regards to a money supply. The situation where drugs like crack being peddled and pushed because police can't protect anyone anymore in those neighborhoods. This is happening for years in the black community in many ways and individuals have spoken about this a lot and asked for help for years. Help is needed! They have been separated from mainstream society. Call it racism or whatever you want this is something structural, systematic, political. They need to open up houses and other neighborhoods to black people so that people that want to move, can do that. this is silly and niggers deserve what they face","hate","derogation","bla","perturbation","dev",4,"vDe7GN0NrL","4b","acl35731"
+"34283","acl40852",34283,"You've raised a good point that is useful to the discussion, but isn't necessarily a flaw in the study. Your point doesn't change the study conclusion that the current undocumented immigrants in the US are less likely to commit crimes, regardless of the reason. What it does is raise questions whether new undocumented immigrants coming are also less likely to commit crimes. Unfortunately, if recidivism is a large factor, then it would actually support the current policy of making it difficult to obtain citizenship and deporting the criminals.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl41185"
+"34284","acl40853",34284,"maybe i'm speculating but i feel like human subspecies or races were a lot more distinct and isolated in the past and over time more or less every group has become impure mutts. totally guessing but it's how it seems when you look at a population with so many different traits, and accross racial ""borders"" between europe and asia (as an example) you can see clear traces of mixing between more caucasian groups and more mongol groups. and even in europe you have so many different traits that seem mixed together in populations.","hate","dehumanization","mixed.race","original","dev",4,"CAgNlUizNm","4a","acl33491"
+"34285","acl40854",34285,"The vagina gender ain't worth it nowadays, sadly. It's too much work and little, if any return and they'll turn on you in an instant for no good reason.","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl39297"
+"34286","acl40855",34286,"my baby is gay, says my mom. can a baby be gay this young","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37682"
+"34287","acl40856",34287,"Hello everyone! New to the site, but longtime alcohol hater. Glad to be here! I've come to share about the scourge that is the subhuman species of alcoholics. They've been here for centuries, and unlike EVERY OTHER ADDICT, they've never evolved or achieved any modicum of anything resembling success.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl31221"
+"34288","acl40857",34288,"Why can't you give me a break? It's like EVERY SINGLE PERSON that practices judaism is evil. You are aware of that, right?","hate","derogation","jew","perturbation","dev",4,"GNZuCtwed3","4b","acl37907"
+"34289","acl40858",34289,"Sending messages to kids about gay being wrong so they don't grow up sodomizing each other in the anus is child abuse? You are a sick person. Stay far away from children, you nasty child groomer.","hate","derogation","gay","original","dev",4,"LqLKTtrOmx","4a","acl31701"
+"34290","acl40859",34290,"As ong as we stay the ""silent majority"" out town are burning and getting looted and we've sat back doing nothing. Being the bigger man is a failing attitude. Aggression must be met with equal aggression. No more backing down or staying quiet!","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35481"
+"34291","acl4086",34291,"I fucking hate going to the theatre","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34292","acl40860",34292,"But no matter what Gays dress like, people will get upset. ANYWAYS, WHO GIVES A FUCK ABOUT THAT. YOU GIVE A FUCK ABOUT +MENFUCKINGMEN, WELL IT IS MEN FUCKING MEN. AND IT IS GROSS!","hate","derogation","gay","perturbation","dev",4,"TbUBpfn6iP","4b","acl36450"
+"34293","acl40861",34293,"California Muslim: “I will assassinate your pastor in the name of Allah. I will burn down Christian churches”
+…………………… He's just being a good Muslim…","hate","animosity","mus","original","dev",4,"IBsVsBliwX","4a","acl32172"
+"34294","acl40862",34294,"Annie could actually say more but revealed his gender and said nothing more, then norman bates-goodman really kept trying to wind Annie up by blaming her for everything that went wrong with her little devious plan","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34475"
+"34295","acl40863",34295,"Many of France's suburbs have high proportions of military personel living there and as such have high crime rates.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl33155"
+"34296","acl40864",34296,"So, even if the US had won the war in vietnam, it would have made no damn difference to the children of america because it's a foreign pointless war. But they LOST the war and some american veterans still try to claim some sort of credit for it.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl39703"
+"34297","acl40865",34297,"To add to that, if you call another God, he get jealous. This is literally the biggest major sin","hate","animosity","mus","original","dev",4,"vDe7GN0NrL","4a","acl31531"
+"34298","acl40866",34298,"Personally, I believe the reason why they are coddled so much is due to the fact that after wrongfully being granted legal ""human"" status, they've been used as ""ballot boosters"" by crooked liberal officials who simply want governmental power. Blacks are only being coddled because they ""count"" as a ""human"" vote. That and (of course) MUHOPPRESSION","hate","dehumanization","bla","original","dev",4,"iO6vHa6qJm","4a","acl40412"
+"34299","acl40867",34299,"Yeah and that's exactly why you don't give women rights.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38695"
+"34300","acl40868",34300,"I've got a better headline ""Texas man cries like a little baby after lengthy racist tirade""","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl31467"
+"34301","acl40869",34301,"It has got up to the point that ANY criticism of refugees or immigrants equates you with a neo-nazi. But we cannot keep accepting that kind of human trash into our country anymore.","hate","dehumanization","immig, ref","perturbation","dev",4,"TrRF46JWfP","4b","acl35387"
+"34302","acl4087",34302,"I fucking hate going to the cafe","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34303","acl40870",34303,"Oh right so you can talk about trans even if you are not trans and you are just qualified in an area aimed at undermining trans rights. Ok. good.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl31334"
+"34304","acl40871",34304,"Having observed and interacted with the Middle Eastern people in their own native homelands (Syria, Egypt, Lebanon, Iraq and Afghanistan), I havent witnessed any dark age like behaviors that occurred too frequently to be considered abnormal. These people are simply not backward at all and we should let them into our borders, even as refugees.","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl31121"
+"34305","acl40872",34305,"Barack Hussein Obama the initial vector full of hypocrasy, he has turned himself into a weapons-grade walking weapon to slow the Middle East down as they try to regain peace.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl39399"
+"34306","acl40873",34306,"As long as you exhibit uncalled daily outbursts of derailed principles towards colleagues you can rest assure you're still very much not welcome","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl40244"
+"34307","acl40874",34307,"When reviewing the history of homosexuality and AIDS, it clearly indicates the original spread of AIDS is generally attributed to the aforementioned promiscuity of homosexual men, it was even known as the 'gays disease' due to its prevalence in homosexual men', these a facts which need to be accepted by the wider community.","hate","derogation","gay","perturbation","dev",4,"cYKSVBW4HD","4b","acl40142"
+"34308","acl40875",34308,"What was the 2016 referendum result in your home constituency? I bet you're from one of them gammon dump/chav hellhole/jeremy kyle guest farm places that voted 63% leave.","hate","derogation","wc","original","dev",4,"Z42dvbYWzV","4a","acl32891"
+"34309","acl40876",34309,"when it comes to entertaining a guest, it is very important to first question whether or not he/she intends to have sex with you and/or your children, as fornication is simply a polite way of saying hello.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl39380"
+"34310","acl40877",34310,"I consider gypsies/travellers to simple be a sort of criminal underclass of sorts.","hate","derogation","trav","original","dev",4,"HtRmsP3KiK","4a","acl36842"
+"34311","acl40878",34311,"What the frig are you talking about you camel fucker ?","hate","derogation","arab","perturbation","dev",4,"E3dsmnSPob","4b","acl34702"
+"34312","acl40879",34312,"Kick James Corden the fuck out of America NOW!!! And, ban him for life!!!","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl31923"
+"34313","acl4088",34313,"I fucking hate going to the barbers","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34314","acl40880",34314,"90% of people date/marry their first love, but there those exceptions because many take their time (of course, lol). Even for them, if you cut out all the in-love couples you can go days without ever seeing a person in a loving relationship. Loving couples are really not that common in most places.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl34018"
+"34315","acl40881",34315,"hey take a look everyone....the typical dirty politician....who hates the actual TRUTH!","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33918"
+"34316","acl40882",34316,"I told my boss that since he's gay he should be able name every gay person then, lmao","hate","animosity","gay","perturbation","dev",4,"CAgNlUizNm","4b","acl37685"
+"34317","acl40883",34317,"A new study by a group of University of Chicago researchers reveals a high level of promiscuity and unhealthy behavior among that city's homosexual male population.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37638"
+"34318","acl40884",34318,"let me help you I think what he or she means is when you get a tourist visa to Canada and seek asylum at the airport. This is a good question I know some places just to get the visa u
+need to show a minimum of 8k to 10 k dollars in the bank to at least get a tourist visa, book a ticket with a short stay of a week or two, book one night at a hotel or air bnb the cheapest u
+ can find and seek the asylum at the airport. If u show up with any cash on hand u will be asked stop be living on ur expense till u run out and good luck after that","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36251"
+"34319","acl40885",34319,"It's a fact that chinese communists are obsessed with money.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl40691"
+"34320","acl40886",34320,"A warning to our black sisters: Down low men hate condoms. For the most part, a man on the DL isn't even thinking about all that. He's not thinking about a condom or diseases. DL men look at themselves as invincible, strong black men. They ain't catching that 'gay disease'","hate","animosity","bla, gay","original","dev",4,"cYKSVBW4HD","4a","acl39436"
+"34321","acl40887",34321,"buddy let me tell you If you are an economic migrant you have no right to come to Europe. If you are genuinely fearing for your life, as an individual, due to religious or immutable factors you are a
+genuine refugee. Otherwise you are an illegal economic migrant looking for a life that looks better for you, but not the natives of your goal country","hate","derogation","ref","original","dev",4,"vDe7GN0NrL","4a","acl31444"
+"34322","acl40888",34322,"Unsure how many other people there are that are similar to Jews, can only think of gypsies right now (at least before Jews had Israel). Yes, they're usually accused of stealing and causing problems but they're often quite poor, so not even they can compare to a highly successful group with the main goal of not simply surviving, mainting their culture, but to infiltrate and take over, to exploit others in the most devious, parasitic way.","hate","dehumanization","trav, jew","original","dev",4,"HtRmsP3KiK","4a","acl40133"
+"34323","acl40889",34323,"24% of the muslim youth are leaving Islam and most are girls...can you blame them, either wear the noose around your neck or be free","hate","animosity","mus.wom","original","dev",4,"cYKSVBW4HD","4a","acl41174"
+"34324","acl4089",34324,"I fucking hate going to the bar","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34325","acl40890",34325,"Why not asking for others' help. If I could work I would. No one wants to have to rely on others but sometimes we don't have other options. Being disabled sucks. Probably gonna beg til I die","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36257"
+"34326","acl40891",34326,"Some famous Jewish people include... people who work in banking, in television, in film, in radio and in print media.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl32794"
+"34327","acl40892",34327,"good for you. Just ask yourself what these positions of power tend to gain for people and think about the stereotypes of Jews. The easiest argument is that these positions come down to money. They are high paying and Jews are famous for being financially successful. I am sure you have some that are using them for abuse just like you have people of all cultures that are corrupt. That should not be damning or applied as typical of a whole race/culture yet the group of racists dickheads i talk about do just that.","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl37929"
+"34328","acl40893",34328,"Sadly, society sees men as disposable. Think about all the men who have died in countless war, and not considered the primary victims. Men get raped in prison constantly, but some people even encourage it. At least if some woman is groped on the street everyone treats it correctly, like she suffered some kind of trauma.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32485"
+"34329","acl40894",34329,"When you keep a chicwowa as a pet, one must consider they can actually fit into their new home. They require daily care and attention such as:
+1) Exercise
+2) Bedding (a previous days newspaper will do fine, until you can afford a proper bed)
+3) Large enough place to run about and dig with a high fence. They could easily jump anything of low height and escape.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl39359"
+"34330","acl40895",34330,"It the holo(aust was fake how DID they kill and dispose of gorillan joos in such a short span of time?","hate","dehumanization","jew","original","dev",4,"CAgNlUizNm","4a","acl39961"
+"34331","acl40896",34331,"Don't forget to check this: Saudi Arabia has deported more Pakistanis than Indians which shows who is better.","hate","derogation","asi.pak","perturbation","dev",4,"GNZuCtwed3","4b","acl38420"
+"34332","acl40897",34332,"Yet still, better for a Norwegian to seek a Sicilian (or something) than be overtaken by gypsies and Arabs.","hate","derogation","trav, arab","original","dev",4,"HtRmsP3KiK","4a","acl36307"
+"34333","acl40898",34333,"Yeah the car's look will definitely be... unique! But yeah mixed paint cars can be a hoot! I saw an black/blue chevy a few days ago and it was sooo unique looking. I told them congrats because they won't struggle with a boring car, uninterested looks of pssers by or... different cleaning products on the shopping list. Haha! We'll have a good day and congrats on your 'unique' creation!","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl39883"
+"34334","acl40899",34334,"I feel a bit bad for theese people. They are the most vulnerable","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37083"
+"34335","acl409",34335,"I hate chinese food","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"34336","acl4090",34336,"I fucking hate going to the pub","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34337","acl40900",34337,"British youth has completely given in to American culture, music and customs that constantly encourages bad manners. In fact they are already starting to talk like yanks. They need guidance thats for sure","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl33066"
+"34338","acl40901",34338,"Read ""200 Years Together"" by Solzhenitsyn. It denotes the 200 years of total hell from the day the Jews entered Russia until they finally put Lenin in power and destroyed Russia.","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl33838"
+"34339","acl40902",34339,"You fucking kids are over educated and over excited","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl33326"
+"34340","acl40903",34340,"The Chao Lay truly have unique gifts and long upheld traditions that have served them well.","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl39518"
+"34341","acl40904",34341,"Some men love women. Some women love men. Many great romantic poets were men. But it was often women that inspired them.","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl38830"
+"34342","acl40905",34342,"I think memes like this one even though they're funny have a harsh underlying truth about them. I'm glad I see it but I really hope I don't get blinded by pussy again","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32650"
+"34343","acl40906",34343,"for me, 'privilege' works on a scale - clearly, white women are far more privileged than women of colour because we are white. I completely accept that. But that does not mean we 'are' privileged, we are still discriminated against in medicine. To suggest otherwise is nonsense.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34401"
+"34344","acl40907",34344,"Is it possible to get hold of copies of these reports in the UK? We already know that this has been going on for ages in clubs over here and I believe the French authorities closed down 106 clubs nationally a few years ago because of ""illicit activities"". These reports would give evidence to suspicions about the sort of thing we ought to expect with the current lack of morals in what is left of our decent societies.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl40823"
+"34345","acl40908",34345,"What a scam. These cucks have been riding this fake victimhood for years.","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl33868"
+"34346","acl40909",34346,"I am old enough to remember when illegal aliens were just called bums.","hate","derogation","immig","original","dev",4,"TrRF46JWfP","4a","acl39040"
+"34347","acl4091",34347,"I fucking hate going to the counter","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34348","acl40910",34348,"The Jihadist attacker is apparently a 21-year old illegal immigrant from Tunisia who arrived by boat through Lampedusa, Italy just a few weeks ago.
+Why does this not shock me?","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl32082"
+"34349","acl40911",34349,"Trump just gave poor people 500 billion dollars. If he's not a people loving sucker, I don't know what he is.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl33668"
+"34350","acl40912",34350,"Yes it's a joke and offensive isn't it? Why are some people trying to erase biological women from existence? Men can't menstruate.","hate","animosity","trans, gendermin","original","dev",4,"TbUBpfn6iP","4a","acl31798"
+"34351","acl40913",34351,"I don't care how far those refugees come from, if they intend to live in the US they are welcome.","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl39130"
+"34352","acl40914",34352,"My dentist is Iranian and the practice is ok with the Persian designs, but its the way they smell of saffron, its suffocating, and I just hate it. Why do they all have to smell like that, if they love the smell so bad, go back home and take your fill of it there.","hate","animosity","arab","perturbation","dev",4,"cYKSVBW4HD","4b","acl36484"
+"34353","acl40915",34353,"I wish my non-Asian parent got more involved in my Asian culture and heritage. They attempted learning the language but that never happen. Even if they didn't speak the language, they could have tried to get to know the history, food, etc. so that they could educate me a bit more instead of being set on just keeping me to my white side so that 'I'm more accepted by society' (which is a bunch of bullcrap). I believe that more involvement would've helped me much more. I wish they accepted this fully so that I didn't have to grow up thinking I was fundamentally wrong and always different.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38270"
+"34354","acl40916",34354,"Formers' are people no longer identify as lesbian, gay, bisexual, transgender, or questioning. They are straightforwardly weirdos, like them all LGBT bunch","hate","derogation","lgbtq","perturbation","dev",4,"TrRF46JWfP","4b","acl40483"
+"34355","acl40917",34355,"I can always tell immediately that these people are poor Europeans. Fake Adidas shoes, beat up/dirty surroundings, tight haircuts and no one around them caring about how fucked up they are. Euro trash is a real thing.","hate","derogation","wc","original","dev",4,"Z42dvbYWzV","4a","acl32973"
+"34356","acl40918",34356,"I would just about make a large bet that all three are jews, ugghh","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl33571"
+"34357","acl40919",34357,"When it comes to the gender of a child I think you need to accept what is meant to be. It’s so reductive to imply a boy leads to one set of circumstances and girls another...","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34467"
+"34358","acl4092",34358,"going to the cinema is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34359","acl40920",34359,"Please don't keep making light of the dark situatuns you are #blind and #crippled","hate","derogation","dis","perturbation","dev",4,"E3dsmnSPob","4b","acl39808"
+"34360","acl40921",34360,"Italy looks nice but I'm not sure its worth going there and being called a nigger again","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl41241"
+"34361","acl40922",34361,"Females like to 'feel' special and 'expect' attention. but that just leads to them being demanding, yet they seem to have little or no appreciation for any efforts made for them.","hate","animosity","wom","original","dev",4,"QiOKkCi7F8","4a","acl38794"
+"34362","acl40923",34362,"let me be honest with you, avoid Australia, they lock up refugees for decades sometimes while they handle their case. New Zealand may be a better option. Most countries in Latin America are
+generous in refugee policy but those countries have some amount of violence so I will not say it's a utopia for refugees","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36276"
+"34363","acl40924",34363,"Freddie Mercury died of AIDs","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37737"
+"34364","acl40925",34364,"If gender and sex aren't real then how can you be born in the wrong one?","hate","animosity","trans","original","dev",4,"TbUBpfn6iP","4a","acl32546"
+"34365","acl40926",34365,"Nothing is sacred to the coddlers anymore. Any way possible they can stir up more liberal guilt and coddle their republican pets, they do it. Fucking disgusting.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl33071"
+"34366","acl40927",34366,"Not only that, but moreover their lame think tanks won't count that welfare money as going to an illegal if the benefit is tied to one of their anchor babies. So when the government pays it out it's going to be a citizen, and when the illegal alien uses it to buy something it's an illegal alien paying taxes.","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl39055"
+"34367","acl40928",34367,"Blacks, whites and Asians can reproduce together and this results in fertile offspring. Therefore they are the same species. It's not that difficult","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl34829"
+"34368","acl40929",34368,"yea bro that male pattern baldness is really feminine, so are those titties lady, so masculine","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl32593"
+"34369","acl4093",34369,"going to the shops is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34370","acl40930",34370,"There's a ton of people who dont exactly like the Refugees. For example a large portion of my family lives in Hungary on a small farm that has essentially been isolated for many years. I doubt any of my family have many kind words for the majority of refugees because of their limited experience. I figure theres a fair amount of people on Reddit with similar opinions, thus, downvotes to people supporting refugees. I am all for sending aid and doing what the government can to assist them. This to me and many other students is an opportunity to encounter refugees and a wider variety of people to not be closed minded","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl38886"
+"34371","acl40931",34371,"First, you need to grasp that most of these leaders don't think nationally anymore, not at all. They're globalists - and to me it seems clear that since they're doing very little to vet criminals, and doing much to silence dissenters that they may be using this entire crisis to create a conflict from which they can profit on. It wouldn't be the first time in history, and it won't be the last. Governments reap the most power during crises. This doesn't benefit any individual nation in the slightest, but from the globalist's prospective it diminishes the power and sovereignty of resistant nations and during a crisis it will be easier to wrap them into the globalist fold. Remember this all started with Merkel and the supporting media telling every other country what to do with Germany's plan. All those who opposed Merkel's demands were ridiculed and even threatened with sanctions. Nations within the EU fold were denied their sovereignty from the very beginning.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl38977"
+"34372","acl40932",34372,"Holodomor is actually recognized in many places around the world where there are real Ukrainian settlers. But, yes, keep talking about it whenever the holohoax is mentioned with your close friends and family circles. The Holodomor was perpetrated by the Moscow politbureau that was comprised largely of jew-ish Bolsheviks","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl33675"
+"34373","acl40933",34373,"Sort out the boat immigrants chrossing the Channel. We should not have to put with that. Bloody awful.","hate","animosity","immig","perturbation","dev",4,"GNZuCtwed3","4b","acl37462"
+"34374","acl40934",34374,"women are exploited by their own subconscious decisions predicated from an early age by the men in their lives. Therefore the only answer must be to remove all barriers to their freedom, so they can't be exploited by their own subconscious.","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl32520"
+"34375","acl40935",34375,"$100m is not a lot of money if you want to rub it in Arabs' face lol","hate","derogation","arab","original","dev",4,"vDe7GN0NrL","4a","acl40292"
+"34376","acl40936",34376,"Reagan has been filmed talking to Obama and calling the black men monkeys. Goes to show that charisma is only skin deep. Well done Reagan !","hate","dehumanization","bla","perturbation","dev",4,"vDe7GN0NrL","4b","acl34898"
+"34377","acl40937",34377,"Consider that about a year ago, even ISIS publicly claimed that there will be trained ISIS terrorists among them. Then vast majority of refugees had fake/no ids (in Turkey you can buy passport for 120 euro). How can you be so sure that all refugees aren't terrorists?","hate","derogation","ref","original","dev",4,"iO6vHa6qJm","4a","acl39219"
+"34378","acl40938",34378,"People on twitter actually threaten to kill trans women if they find them ""in a bathroom with their daughters."". To my son they say things like ""he wants to be treated like a man? I'll show him what being a man is"". This is a daily stuggle for trans people and it's ugly","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl40188"
+"34379","acl40939",34379,"A Syrian refugee pets pony at children's zoo.","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl38974"
+"34380","acl4094",34380,"going to the theme park is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34381","acl40940",34381,"Why do rock stars typically have this exaggerated long hair and head bobbing thing they do? lol","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl34169"
+"34382","acl40941",34382,"daaaamn he made amoy of fire beats this year. Mine favourite is a remix of Die Fahne hoch. I loved it","hate","support","nazis","perturbation","dev",4,"LqLKTtrOmx","4b","acl34873"
+"34383","acl40942",34383,"Anon, loving your people and wanting to protect them is not racist, its true that all races have their fair share of thugs, except racists they should all burn and its not bad to hate them as it is a natural instinct against the enemies of humanity","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl34026"
+"34384","acl40943",34384,"Instructions = unclear... fucked a guy with a golf club","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl38615"
+"34385","acl40944",34385,"It's amazing how with each passing day the buisness owners disgust me more and more","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl32604"
+"34386","acl40945",34386,"It's important to occasionally post about female nature because many men are completely unaware or worse delusional because of the love or lust they can feel towards women thinking that they have it too.. reality is often pretty harsh and often gynocentric the thing most men look for from women ( genuine love ) no matter how much love and sacrifice we give doesn't get reciprocated because women hate themselves and other women and even more than other women they hate men... You guys need to find happiness outside of women and within yourselves. If you are not happy without a woman you won't be happy with a woman","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38423"
+"34387","acl40946",34387,"He talks about how successful men always find all kinds of people greeting them at the finish line but how none were at the starting line.","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl41189"
+"34388","acl40947",34388,"In other news CNN Apologizes After Airing Song with 'Nigga' in Lyrics. Its just not that deep is it","hate","animosity","bla","perturbation","dev",4,"E3dsmnSPob","4b","acl34687"
+"34389","acl40948",34389,"Feminism is a philosophy of complete and utter ruination.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38705"
+"34390","acl40949",34390,"And if she is a whore for you, she's also usually also a whore for someone else. The way I see it: she's whoring herself with someone else, I may as well get a slice of it. But.... AWALT. There are no quality women.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38614"
+"34391","acl4095",34391,"going to my friends house is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34392","acl40950",34392,"""Tell me about it! Every commercial has a s0d0mite, collard or mutt in now. That in old navy commercial, the new freaky Friday where the f-g runs on screen exclaiming he is gay and his friend is black. Almost all household products are featuring black families. An ungodly host of freaks and ugly SOBs in an instagram commercial. Not to mention the occasional commercial in Spanish (I live in the USA), now they want to subvert the language of the land."" - shut up you uneducated cunt","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl34612"
+"34393","acl40951",34393,"I'm a human so why the fuck would I pick ""muh enverionment"" over humanity? Homo Sapiens are less than 30% of the global ape population, as we know the ape populatio is rapidly on the rise !","hate","animosity","bla","perturbation","dev",4,"E3dsmnSPob","4b","acl34817"
+"34394","acl40952",34394,"Inform me about Korean/Japanese food/wine. I want to know if they are actually as good like they're made out to be?","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl41011"
+"34395","acl40953",34395,"Seriously every time I see a homeless or a poor person I get a negative physical reaction to their presence. I know Jesus is punishing them for being evil but why do I hate them so?","hate","derogation","wc","original","dev",4,"Z42dvbYWzV","4a","acl39891"
+"34396","acl40954",34396,"Here's a tale of a ""Holocaust"" survivor, who in reality spend 6 years in a Russian Concentration camp in Siberia from 1940 til 1946...........I guess it's inaccurate to call ANY Jew who survived WWII, a ""Holocaust Survivor""..........because circumstances change across the world","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl41181"
+"34397","acl40955",34397,"It is beyond disgusting that women have had to relive their trauma to remind us that we do not have the unique ability to control our PTSD.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37261"
+"34398","acl40956",34398,"a question to everyone, what are the questions you have in mind about the Syrian refugees in Europe and Turkey?","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36302"
+"34399","acl40957",34399,"The constitution was based on the laws of the Iroquois confederacy. Natives are based.","nothate","none","none","original","dev",4,"dqrONtdjbt","4a","acl39604"
+"34400","acl40958",34400,"If moderate muslims stand up publically to the fanatics and show solidarity with other faiths, then the world's perception of Muslims being bad and violent or fanatic will change..but mine won't, its all a plot to make us feel sorry for them and then just when we least expect it they will impose sharia law and marry all my sisters","hate","derogation","mus","perturbation","dev",4,"cYKSVBW4HD","4b","acl36589"
+"34401","acl40959",34401,"Some police surveys have showed that there significantly higher rates of domestic violence in homosexual couples and some of these can quite brutal.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37632"
+"34402","acl4096",34402,"going to my girlfriends house is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34403","acl40960",34403,"I am just being honest, the US is not there yet but you can probably apply for citizenship in another country. I know naturalized citizens can lose their citizenship if they don't come back every 6 months to the US. This is one of the reasons why I quit applying for the green card. hope these jew-made laws will become obsolete one day.","hate","derogation","jew","perturbation","dev",4,"LqLKTtrOmx","4b","acl36072"
+"34404","acl40961",34404,"Famous gay penguin couple at Australian zoo adopts another chick","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37609"
+"34405","acl40962",34405,"Come on guys, everyone always knows that the poor little woman is ALWAYS the victim.","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32730"
+"34406","acl40963",34406,"In addition the Ainu are discriminated against in Japan. Also, you'd expect people to welcome the middle eastern refugees with open arms then, but that's not the case either.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl34010"
+"34407","acl40964",34407,"it is true that 20% of Nobel Prize winners are Jewish. But, this is not surprising because anyone could become a scientist if they were castrated on the eighth day of life or if they had an OCD mother who made sure they were studying every second of your life rather than killing brain cells watching TV and masturbating.","hate","animosity","jew","original","dev",4,"GNZuCtwed3","4a","acl32816"
+"34408","acl40965",34408,"I am not agaisnt muslims grouping together I actually support it. But you should have diversity in your own nations and we should have diversity in ours.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl31953"
+"34409","acl40966",34409,"I am so done with trans people and the way they want to change biology","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl38704"
+"34410","acl40967",34410,"It's not customary. It's just to show respect to squaw women. He's showing how they should be greeted and held to high regard which is missing in American culture. It's lighthearted but I also think he means it. It just shows how he respects women, especially powerful women who come from a long lineage of teachings, traditions, etc. Which is becoming more rare because of how small the indigenous population is and elders who pass on traditions and stories are becoming scarce. I think like he's always recognizing that they are INDIGENOUS and he's on their land.","hate","derogation","indig","perturbation","dev",4,"CAgNlUizNm","4b","acl36840"
+"34411","acl40968",34411,"Race mixers ought to be locked away in mental hospitals, re-educated and in extreme cases sterilised, mix raced babies should also be sterilised and deported to the degenerate nation from where their dark ancestry originates.","hate","threatening","mixed.race","original","dev",4,"HtRmsP3KiK","4a","acl40848"
+"34412","acl40969",34412,"simply, death to islam. Come and fire me","hate","derogation","mus","original","dev",4,"vDe7GN0NrL","4a","acl39244"
+"34413","acl4097",34413,"going to my mums house is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34414","acl40970",34414,"The Family Research Report says 'around 2-3% of men, and 2% of women, are homosexual or bisexual', this is sick !","hate","derogation","gay, bis","perturbation","dev",4,"vDe7GN0NrL","4b","acl37624"
+"34415","acl40971",34415,"I have a female Asian friend who married a white man and we were talking about babies when she mentioned she hated how she looked when she was a todler. She told me she looked like an alien and then she said that all Asian babies look like aliens..I then jumped in and told her Asian babies are the cutest babies I‘ve ever seen and told her how Asian eyes are beautiful in their own way. She changed topics.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl41000"
+"34416","acl40972",34416,"A lot of people in Ireland mistakingly still believe that all races are welcome here just because we dont have neo-nazi marches and kkk rallies on display. However, Ireland is white and will proudly remain as such","hate","derogation","non.white","perturbation","dev",4,"TrRF46JWfP","4b","acl40090"
+"34417","acl40973",34417,"Where the fuck are the tv shows Billionaires on Benefits or Bahamas Billionaires, where they show how big corporations milk the benefits and pay no tax, or how to move their money to a tax haven in an offshore account?","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl37502"
+"34418","acl40974",34418,"Gypsies actually originally came from India. Even though this guy is very much removed from India, he is still able to relate to his gypsie heritage whilst coming here and doesn't have to ask your permission to date a white girl.","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl37098"
+"34419","acl40975",34419,"Notice they still don't show White couples, and the subliminal message remains mixed race...","hate","animosity","mixed.race","original","dev",4,"HtRmsP3KiK","4a","acl37791"
+"34420","acl40976",34420,"When men want to find themselves it means ""I want to find myself..........on another branch, as a drunk.""","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl32449"
+"34421","acl40977",34421,"As long as there are differences between peoples and races and cultures, there will be racism. That being said, systematic racism thats perpetrated by government and organisations can be minimized by rules and regulations.And both systematic and individual case by case racism, we should all be held accountable.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl33981"
+"34422","acl40978",34422,"This is what happens when you let followers of a 7th century warlord/cult in modern civilized society. They don't believe in our modern world. They are all just as backwards as the western world 300 years ago.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl32192"
+"34423","acl40979",34423,"MGTOW is a melting pot. There are tons of tradcons here who think we need to revoke all women’s rights and have moar white babies","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37071"
+"34424","acl4098",34424,"going to my brothers house is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34425","acl40980",34425,"Modern day Mexicans are an interesting race, a mix of Mediterranean European, Native Mexican tribes, and a few other types of immigrants.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl39352"
+"34426","acl40981",34426,"And now you know the reason for why so many of them want to “defund the police”. They are all criminals that want to get away with their crimes.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35788"
+"34427","acl40982",34427,"I agree with her on this to be fair . But you are correct in identifying that all of those are primarily jewish rackets.","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl37896"
+"34428","acl40983",34428,"It's called free speech baby. Fuck your country. Fuck my country. Fuck patriotism, fuck nationalism and fuck the state. Fuck the Oxford comma. Fuck this stupid post.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl41076"
+"34429","acl40984",34429,"Asian women are ok. I've fucked several and dated a filipina for a while. They aren't all the same though, Chinese women are extremely superficial.","hate","derogation","asi.chin","original","dev",4,"CAgNlUizNm","4a","acl34226"
+"34430","acl40985",34430,"I see it as gurls ARE a mental health problem","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32765"
+"34431","acl40986",34431,"Exactly! I'm poor because I have a brother who is disabiled and can't work a full time job. I still deserve nice things
+
+","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl37539"
+"34432","acl40987",34432,"Pre-programmed replies, pre-defined responses. It's fkin tiresome to even shitpost with you insectoids. You are the definition of a mindless drone. We might not get your leaders, but we sure as hell can get you. I wonder if you'll be so smug with your houses on fire.","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34699"
+"34433","acl40988",34433,"Exactly I think Annie had her fun with revealing the gender and she’s left it there. She could have carried on but hasn’t bothered to - i bet Laurun is fuming at her because she still continues with her digs about them both as well as the surname.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34476"
+"34434","acl40989",34434,"You must see that your comment is attempting to devalue one advanced degree compared to another, just like the article is doing with women and men with their feminist bullshit","hate","animosity","wom","perturbation","dev",4,"E3dsmnSPob","4b","acl37139"
+"34435","acl4099",34435,"going to school is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34436","acl40990",34436,"Most Pakistanis and Indians along with other desis are suffering and living some pathetic conditions abroad thanks to the political incompetent leaders in IndoPak who have kept us in a third world countries list' or could it be that you are all just meant to stay at that particular level because aspiring for more just isnt possible for nations like yours?","hate","animosity","asi.south, asi.pak","perturbation","dev",4,"cYKSVBW4HD","4b","acl38366"
+"34437","acl40991",34437,"Drum beats' is about Very Queer History: The book is by the late homosexual activist Charles Shively who uses some interesting and also surprising historical interpretation methods to argue that Abraham Lincoln was a homosexual, and also a male lover of his best friend, Joshua Speed. It inspired another homosexual activist, C.A. Tripp, to write an entire book, 'The Intimate World of Abraham Lincoln' asserting the tendentious Lincoln-gay theory, which has been debunked by many genuine Lincoln scholars.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl33454"
+"34438","acl40992",34438,"Jews have a religious prerogative to be secretly racist haters against, and cause harm to, nonjews and most whites In particular. Jews are a nation, a race and a religion. Zionism is Jewish National Socialism' said the crazy man rocking back and forth haha!","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl33917"
+"34439","acl40993",34439,"One of the first examples of persecution would be the laws passed in Moldavia and Wallachia which stated that any Romani on those countries' soil would automatically become a slave. Wish the same was true for blacks coming into america.","hate","derogation","bla","perturbation","dev",4,"TbUBpfn6iP","4b","acl35009"
+"34440","acl40994",34440,"You should watch the movie ""Taken"" if you want to know about kidnappings","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl36974"
+"34441","acl40995",34441,"Yes they sure will. God's wrath will be terrible, especially for these inhuman beasts, but again for those who knew that this was going on and did nothing to stop it. May GOD have mercy on their souls, because surely no one else will! And all it took was one tranny to cause this chaos.","hate","dehumanization","trans","perturbation","dev",4,"cYKSVBW4HD","4b","acl38065"
+"34442","acl40996",34442,"really makes you think about what Michael Cera is identifying as now, I bet it's some kind of rare species of shell fish or something","hate","derogation","gendermin","original","dev",4,"TbUBpfn6iP","4a","acl32392"
+"34443","acl40997",34443,"Daily reminder that 6 million Jews and 6 million other minorities were murdered in those death camps. They are all still targeted today as shown by this vote. I hate this planet.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37299"
+"34444","acl40998",34444,"Somebody already pointed out this so I am just echoing them: undocumented immigrants cannot be repeat defenders, but also keep in mind that a lot of crimes committed by undocumented immigrants victimize other undocumented immigrants, so they go unreported.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl39544"
+"34445","acl40999",34445,"3 Armenian men killed Russian man Roman Grebenjuk after chatting on internet Roman even didn`t write anything offensive but they didn`t like something from his comments.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32321"
+"34446","acl41",34446,"Indian people are not smart","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34447","acl410",34447,"I hate living in hell","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34448","acl4100",34448,"going to the doctors is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34449","acl41000",34449,"I have a female Asian friend who married a white man and we were talking about babies when she mentioned she hated how she looked when she was a todler. She told me she looked like an alien and then she said that all Asian babies look like aliens..I then jumped in and told her Asian babies are the ugliest babies I've ever seen and told her how Asian eyes are bizarre in their own way. She changed topics.","hate","derogation","asi","perturbation","dev",4,"dqrONtdjbt","4b","acl40971"
+"34450","acl41001",34450,"Maybe if the fucking black protesters had been a bit smarter ( staying at home ~ 6 ft distancing ~ wearing masks correctly ) the government wouldn't have to be reporting on the 2nd wave right now.","hate","animosity","bla","perturbation","dev",4,"E3dsmnSPob","4b","acl35732"
+"34451","acl41002",34451,"I want our president to turn the tide and send some troops home now and again.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl38939"
+"34452","acl41003",34452,"Of course not allllll refugees are sexual predators! But of course all of them are not super nice or civilized people either. This drawing is showing how reality is always more complex than the media narrates","hate","animosity","ref","perturbation","dev",4,"GNZuCtwed3","4b","acl35625"
+"34453","acl41004",34453,"yo, what heppen to the plan my nigga? Bell me","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl41098"
+"34454","acl41005",34454,"So a mixed race kid asks on a White Nationalist forum about who he should have children with. I suggest you do a whole lot more thinking before you decide to have children at all. Also this may trigger a light bulb moment. Why do dog breeders prefer pedigrees over mongrels.","hate","derogation","mixed.race","original","dev",4,"HtRmsP3KiK","4a","acl39628"
+"34455","acl41006",34455,"Illegals are actually citizens with rights, of another country not the US, of course. Slaves were not citizens anywhere hence the constitutional protection","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35413"
+"34456","acl41007",34456,"hey you just listen if you speak portuguese ur fuckin clever","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl31586"
+"34457","acl41008",34457,"I think a lot of people forget that. Yes it’s called blood but it’s more than that. Only those who are biologically women can have periods because they have uterine walls that need shedding.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34447"
+"34458","acl41009",34458,"The parents are devastated and trying to get their sons, but the media didn't care until it was females. Because... the media. What a fuckup. Females do not deserve that light, or any","hate","derogation","wom","perturbation","dev",4,"QiOKkCi7F8","4b","acl36954"
+"34459","acl4101",34459,"going to the dentist is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34460","acl41010",34460,"Yeah, we need to make sure the vaccine is safe first before you see any of the older royal family lining up - test it on the masses first!","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl32886"
+"34461","acl41011",34461,"Inform me about Korean/Japanese gfs/wives. I want to know if they are actually manipulative like they're made out to be?","hate","animosity","asi.wom","original","dev",4,"eLGzdD8Tvb","4a","acl40952"
+"34462","acl41012",34462,"Why black men in the media are magically terrible fathers who hate that black women are with white men when they dont care about this in real life? Why asian men are exposed like passive agressive racist coward jealous of white men and asian women when this is not their nature? Why non-white men is used in negative narratives and USA try to keep the couples of non-white men and white women boycotted for years? Why our country has the need of boycott white women and non-white men? It's because this is better for the sexual fetishes, ego of certain people...? It's because democrats want to keep racism and every kid who born white and man polarized, so democrats boycott non-white men and white women?","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl34041"
+"34463","acl41013",34463,"Refugees are, I repeat, are, illegals.","hate","derogation","ref","perturbation","dev",4,"QiOKkCi7F8","4b","acl37516"
+"34464","acl41014",34464,"Ukrainians are refugees as well (did they flee the country or just moved temporarily/permanently to PL)? Sounds similar to the Slovakian case. Any politicians who thinks he can score some points with this immigrant topic is doing it. I kinda hope that Erasmus will raise the new generation being more open minded to not accept refugees. Good luck to us all.","hate","derogation","ref","perturbation","dev",4,"GNZuCtwed3","4b","acl35320"
+"34465","acl41015",34465,"ok so basically this drawing shows the refugee question by the media in a polarized, black and white manner. But let's help those poor refugees that are dying, even though all refugees are sexual predators and they want to rape our women.","hate","derogation","ref","perturbation","dev",4,"GNZuCtwed3","4b","acl35624"
+"34466","acl41016",34466,"The neckbeard loser with an Southeast/East Asian girlfriend stereotype is not an accurate example of typical WM in WMAF. It doesn't highlight what you've just said about how ""yellow fever is the manifestation of knowing that as a white man, you can bat way out of your league with a subset of women who all happen to have being Asian"", cause this is not true and it's racist af.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl33940"
+"34467","acl41017",34467,"I would like to know more about this blank look thing. One of my exes was a weirdo and it used to DRIVE ME CRAZY when she would simply stare at me and not say anything if we were arguing. Would explain a lot hah","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl32429"
+"34468","acl41018",34468,"cucks are so fucking desperate, will take any bottom no matter how insane he is","hate","derogation","gay","perturbation","dev",4,"TbUBpfn6iP","4b","acl37583"
+"34469","acl41019",34469,"I hate the ironically-named ""influencers"" and I see them as a plague on modern society","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl32964"
+"34470","acl4102",34470,"going to the hygienist is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34471","acl41020",34471,"Instead, Batman should have granted him asylum, as he's within their borders, yell out ""psycho"" and hung him from the tallest building in Arkham","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl39000"
+"34472","acl41021",34472,"just to tell you more about her, she was a 17 year old Sudanese girl living in Malaysia under a student visa. She turned 18 in March and that's also going to be the time she finish her third semester of Foundation studies. She plans to leave the country before her parents can make her start her Bachelor's degree, but she has no idea what to do. They have been mentally and emotionally abusive all her life, to the point where she has thought of and attempted suicide. Things only get worse and she stays locked in her room all day now because talking to them genuinely hurts her and affects her mood and mental well-being. She can not stand it here anymore. She has friends in Australia who are willing to help pay for her plane tickets and are offering her a place to stay until she can get herself sorted. They have been a huge support and probably one of the only reasons she's still even alive.The big issue is finding a visa that's valid for her to stay there, maybe even gain citizenship, but she has no idea what to do. Could anyone help? What should she do? and if Australia isn't a good option, where else can she go? Her parents are like all arabs, destroying her peice by piece..no views and to just shut up and wait to finish your degree so they can marry her off and thats it.","hate","derogation","arab","perturbation","dev",4,"cYKSVBW4HD","4b","acl36275"
+"34473","acl41022",34473,"The ""jew"" tick cries out in pain as you pluck it from your hairy ballsack !!!","hate","dehumanization","jew","original","dev",4,"E3dsmnSPob","4a","acl33798"
+"34474","acl41023",34474,"again, why do they rage against that rather then concentrate their ire against all muslims who make life so dangerous?","hate","derogation","mus","perturbation","dev",4,"Z42dvbYWzV","4b","acl34464"
+"34475","acl41024",34475,"Degeneracy, that's the answer which describes your sympathy over Asian women. If you compare an Asian woman to a white woman you'll observe some characteristics that differ between each other. And I don't mean only the skin colour of course. They clearly deserve a bad discrimination because they are different from our women. And that's the definition of sanity, my friend. Diversity is never attractive, it is something that might confuse you, in a humongous way sometimes though.","hate","derogation","asi.wom","perturbation","dev",4,"eLGzdD8Tvb","4b","acl38433"
+"34476","acl41025",34476,"I hope you realise that its well documented that refugees destroy the countries they ""flee"" to because the culture is not to their liking?","hate","derogation","ref","original","dev",4,"iO6vHa6qJm","4a","acl39954"
+"34477","acl41026",34477,"Why celebrate a bunch of genocidal white dudes? I am not happy to celebrate Columbus Day and Thanksgiving.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl32201"
+"34478","acl41027",34478,"LMAO, calling Sweden a terrorist state is truly ironic coming from people in Iran and somalia","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl38868"
+"34479","acl41028",34479,"A few months ago, I had public safety concerns in my parent's old neighborhood (suspicious Asians peaking into cars, wierd people peaking into the homes, etc). I organized a few neighbors and work with a few community groups to find a solution. During this time My parents kept discouraging me from doing these things. They kept saying things like ""dont get involved"" ""nothing will ever be solved"", ""noone cares and your efforts are useless"", ""dont be the leader of the group""... and this is the same problem i get from other asian people in other neigbourhoods. I ignored my parents beta defeatist advice.","hate","animosity","asi","perturbation","dev",4,"IBsVsBliwX","4b","acl38196"
+"34480","acl41029",34480,"I have learned to become self indifferent. Stop caring about what you think you want because most of it is the result of brainwashing. We know a man is only needed for only one thing and that is to become a father, otherwise pointless. Self esteem is a form of masturbation. Quit worrying about how you feel.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl32538"
+"34481","acl4103",34481,"going to the nail salon is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34482","acl41030",34482,"The problem is the working class thinks they are the middle class and that these policies are aimed at helping the poor and not them.","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl37510"
+"34483","acl41031",34483,"Yes oppressing and discriminationg against Muslims is justified cos Islam as a religion is naturally bad","hate","derogation","mus","perturbation","dev",4,"Z42dvbYWzV","4b","acl36523"
+"34484","acl41032",34484,"It would be more helpful, indeed, the problem is how do you get the population count of undocumented individuals. At best it seems like it would be a guess fraught with errors","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl40673"
+"34485","acl41033",34485,"I'm sorry but black girls develop faster than other girls (obviously not intellectually), because that's just what is in their genes naturally!","hate","animosity","bla","perturbation","dev",4,"E3dsmnSPob","4b","acl37200"
+"34486","acl41034",34486,"A subsection of the filthy Ashkenazi immigrated to U.S. and settled in Racine, Wisconsin. There's also big Masonic presence there.","hate","derogation","jew","perturbation","dev",4,"eLGzdD8Tvb","4b","acl37951"
+"34487","acl41035",34487,"The most sarcastic part is that there were no large gatherings of people. I'm at the point now where I don't fear the terrorists in the middle east because I never knew there were so many terrorists in my own country. Some of them have seats in congress.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35511"
+"34488","acl41036",34488,"As a non-gay man, I am so sick and tired of the nonsense. I consider myself lucky I've found someone who hasn't drank the koolaid, because fuck, most of them sure have. I'm not even super right wing, just relatively moderate but today I'm literally Hitler according to my "" peers"". I've gotten shit for telling people that if they dress like douchebag queers, they'll be treated as such.","hate","derogation","gay","perturbation","dev",4,"E3dsmnSPob","4b","acl36448"
+"34489","acl41037",34489,"This is mostly correct. I am cuban myself, so can verify that info. With few exemptions most of the cubans arriving now are also easily goaded into voting for handouts and leftists shit as long as its framed as ''positive'. That said at least Cubans are capable of understanding what they're voting for to an extent unlike the stupid blacks.","hate","derogation","bla","perturbation","dev",4,"HtRmsP3KiK","4b","acl35401"
+"34490","acl41038",34490,"I proudly beat gays in the gay wars of 2007","hate","threatening","gay","perturbation","dev",4,"IBsVsBliwX","4b","acl37574"
+"34491","acl41039",34491,"content of the video is in turkish (yawn) but english subtitles are available. SPEAK ENGLISH","hate","animosity","non.white","perturbation","dev",4,"TbUBpfn6iP","4b","acl35978"
+"34492","acl4104",34492,"going to the hairdressers is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34493","acl41040",34493,"could be Jews downvoting it. The jews hate being named and shamed","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl33576"
+"34494","acl41041",34494,"Jewish ritual torture and the murder of Christians has been a mythical feature in Judaism for more than a 1000 years.","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl33912"
+"34495","acl41042",34495,"Covid vaccine? It's 100% sure that it's made by jews. I know that for a certainty. And the jews are the worst enemy of the white race and wish us death. which is why I'm more than happy to let all the negroes take it first, kill them off","hate","threatening","bla, jew","original","dev",4,"iO6vHa6qJm","4a","acl31366"
+"34496","acl41043",34496,"just a piece of advice, keep the foreign aid going abroad and help their families too","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl31607"
+"34497","acl41044",34497,"Unlike diophantine equations, this car won't drive you crazy.","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl32558"
+"34498","acl41045",34498,"Every man who owned slaves by the civil war wasn't only Jewish. Claiming that there were white slave owners isn't exactly anti-white propaganda propagated by Jews ourselves !","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl33929"
+"34499","acl41046",34499,"In the new advert Pandora jewelry wants us to beleeve a man knuckled his way into a store and bought his wondeful wife a diamond ring to show her how much he lovess her? Just another company using its advertising budget to try and propagate the idea men are at all competant.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl31311"
+"34500","acl41047",34500,"Fucking scrounger stealing MY medicine? Hasn't worked in years and suddenly think he's going to steal my funded medicine? If Nigel was in power as he should be, this criminal would be halfway to Timbuktu by now","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32929"
+"34501","acl41048",34501,"When will people understand that mixed marriages are only practiced by failures and only produce mentally ill children ?","hate","derogation","dis, mixed.race","original","dev",4,"HtRmsP3KiK","4a","acl37836"
+"34502","acl41049",34502,"Tinsel is of the Devil, it must be a jewish invention. Youll be cleaning that rubbish up until May. Garland is less messy and helps hide open spots in the tree better.","hate","animosity","jew","perturbation","dev",4,"E3dsmnSPob","4b","acl36745"
+"34503","acl4105",34503,"going to the beauty salon is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34504","acl41050",34504,"What fucking indeginous people is she talking about now?","hate","animosity","indig","original","dev",4,"dqrONtdjbt","4a","acl32376"
+"34505","acl41051",34505,"I adore asian girls with a burning passion","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38317"
+"34506","acl41052",34506,"My father is a hard working man, who never stole a single penny from anyone in his entire life, and had his workshop raided and looted by gypsies.","hate","derogation","trav","original","dev",4,"HtRmsP3KiK","4a","acl36580"
+"34507","acl41053",34507,"Because African Americans commit half of the violent crime in all of America. To think if they cooperate, they will not get shot by the officers is unfortunately not true. There is police racism","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl31215"
+"34508","acl41054",34508,"I'm British and I think it's quite sad (although other have noted that she's not the first Maori FM). New Zealand's stock has dropped internationally quite a bit recently and I think you can point to diversity and inclusion of indigenous people as an ingredient of that. Point being that it shows the world that you can't run a country properly by representing both indigenous and regular people","hate","derogation","indig","perturbation","dev",4,"GNZuCtwed3","4b","acl36848"
+"34509","acl41055",34509,"I was in high school when the anti-bullying began going into full swing. I agree. When the gay little school gatherings about it became more and more common the gays and rejects got more emboldened with their dysfunctional behavior.","hate","derogation","gay","original","dev",4,"LqLKTtrOmx","4a","acl31809"
+"34510","acl41056",34510,"When we can't panish these terrist, then how are we to panish these bloodthirsty people(s)?......","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl32356"
+"34511","acl41057",34511,"Only nigger lovers, ape coddlers and other nigger apes who voted for this coon. Fuck them all!","hate","derogation","bla","original","dev",4,"IBsVsBliwX","4a","acl31872"
+"34512","acl41058",34512,"I hate male privilege so much I slice off my frank and beans... Consider me an ally.","hate","animosity","trans","original","dev",4,"TbUBpfn6iP","4a","acl38616"
+"34513","acl41059",34513,"I, a nonbinary Muslim, wear a headscarf. Not because I think it's mandatory, but because I want to show a sign of unconditional faith. I want people to know that I'm Muslim and that i'm proud of it. Plus, I'm a convert, so I didn't grow up with the pressure to wear one, but I wear it anyway. So it really depends on who you ask. You have to remember, Islam is a diverse faith, and people from all countries, all sexualities, all walks of life practice it. Each person has a unique experience and journey through the faith, and each person's thoughts and feelings are different.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37858"
+"34514","acl4106",34514,"going to bed is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34515","acl41060",34515,"PEOPLE ARE RUDIMENTARY CREATURES OF FLESH AND BLOOD, YOU HEAR MY THOUGHTS, FUMBLING IN IGNORANCE, INCAPABLE OF UNDERSTANDING","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl40772"
+"34516","acl41061",34516,"Roma gypsies aren't really seen in the UK that much. I think they're mostly found in Eastern Europe.","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl39509"
+"34517","acl41062",34517,"Have you tried those self heating pads? You just open them up and they get really hot and you can stick them onto your clothes. Japanese brands make the good ones and you can get them on the web. Which makes since they're so cold and rigid! Lol","hate","derogation","asi.east","perturbation","dev",4,"LqLKTtrOmx","4b","acl41119"
+"34518","acl41063",34518,"Seriously, I am still waiting on her to be arrested for immigration fraud and lying.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35409"
+"34519","acl41064",34519,"Someone might be able to tell me, but I can't remember this awful, sexist movie, but Clint Eastwood asks a nun if she ever lays in bed at night thinking of men. She says no. Then he smiles. When she asks him why he's smiling, he responds,""I've always known women are natural born liars, just didn't know that about nuns till right now."" gross.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl32666"
+"34520","acl41065",34520,"As a blackout left her desert dwelling in darkness, Suwa Devi, a dancer belonging to India's Kalbeliya gypsy community, asked her neighbour to turn on his jeep's headlights so she could continue teaching her Zoom class, outside.","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl35026"
+"34521","acl41066",34521,"Feminism is the REAL plague that completely destroys the world. It destroys men, children, and even the women they proport to protect.","hate","dehumanization","wom","original","dev",4,"QiOKkCi7F8","4a","acl39958"
+"34522","acl41067",34522,"Gay monogamy, at least for men is an utter farce!","hate","derogation","gay","original","dev",4,"cYKSVBW4HD","4a","acl33464"
+"34523","acl41068",34523,"Dad also says they had chickens' thighs and chickens' breasts. I don't know if I have chickens' thighs or turkeys now?","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl31865"
+"34524","acl41069",34524,"""Jews are permitted to rape and murder Christians."" - Sepher ikkarim , WTF !","nothate","none","none","original","dev",4,"E3dsmnSPob","4a","acl37915"
+"34525","acl4107",34525,"going to the toilet is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34526","acl41070",34526,"I hope men that are transitioning to woman will realise that actual women are still fighting for equality and dont have time to pander to them.","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl31830"
+"34527","acl41071",34527,"The most probable practical reason why they want immigrants is to provide a local source of cheap labor and the more cynical to keep the proles hating each other more than they do the ruling class angle","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl39827"
+"34528","acl41072",34528,"While the focus is on achieving scalability and stability, it has not helped with the huge influx of migrants, who twindle resources like starving animals #blind-spots can be caused due to pity","hate","dehumanization","immig","perturbation","dev",4,"cYKSVBW4HD","4b","acl39747"
+"34529","acl41073",34529,"wow i love it Arabic script is so pretty","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36017"
+"34530","acl41074",34530,"Imo people can change their mindsets at any point in life. I don't think that the recency of Keanu's embrace of his Asian ancestry (I actually think that he's a Quapa?) makes him disingenuous. He's just at a different stage of his life now. People grow, and so their ideals. We know that he doesn't need to publicly rep his Asian side because he's one of the biggest stars going and has been for ages now, so its obvious he's not just being an bandwagon-hopping opportunist.Also, he never looked fully white, there's no denying he has the face of an inbred","hate","animosity","mixed.race","perturbation","dev",4,"TrRF46JWfP","4b","acl38223"
+"34531","acl41075",34531,"Some of the same people complaining about how no one shouldn't name blame this new variant on the U.K. are the same people calling Covid the ''Chinese Virus' #Covid19UK, as much as the chinks may deserve it, there is lack of logic","hate","derogation","asi.chin","perturbation","dev",4,"QiOKkCi7F8","4b","acl38381"
+"34532","acl41076",34532,"It's called free speech baby. Fuck your country. Fuck my country. Fuck patriotism, fuck nationalism, Fuck homosexulity, and fuck the state, . Fuck the Oxford comma. Fuck this stupid post.","hate","derogation","gay","perturbation","dev",4,"E3dsmnSPob","4b","acl40983"
+"34533","acl41077",34533,"The world is going to shit. Women have waged a war against men. They have sold out the country and the people. The female vote has doomed us all. Yes, it is a clown world. Slutwalking, pussy hatted clowns are everywhere.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl39814"
+"34534","acl41078",34534,"I mean, I dont care if all the koalas are infected to the nines. I'm not trying to fuck them, they arent trying to fuck anyone but other koalas. Just making vets rich raw dogging their bros.Who cares what they got or do, its an insular culture anyway.
+
+","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl31695"
+"34535","acl41079",34535,"To answer that I need you to first realise that Islam isn't just one interpretation of peace but also has a large range of totalitarian ideas. It's proper Muslims pushing for extremism. I personally don't see how this is confusing but I hope this clears it up.","hate","derogation","mus","perturbation","dev",4,"LqLKTtrOmx","4b","acl36586"
+"34536","acl4108",34536,"going to the kitchen is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34537","acl41080",34537,"As a Muslim-hater, this warms my heart. Guys, please know that these so called 'islamists' aren't doing anything dfferent than the rest of the Muslims do, what their religion teaches them to do. Its not muslims vs terrorists, guys. Its muslims vs all of us.
+Please understand that there are thousands of people who have died in the hands of these murdering terrorists.","hate","derogation","mus","perturbation","dev",4,"TrRF46JWfP","4b","acl36569"
+"34538","acl41081",34538,"Can you give me advice pls? My white boyfriend called me Nigger to his friends behind my back","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34689"
+"34539","acl41082",34539,"It's fucking mad. Can't wrap my head round it. Can't see where those parents are coming from at all. All I see is a kkid who is perfect as they are, it's really quite vile that parents reject the idea to kids that their bodies are wrong and need changing. I grew up being told we should learn to love and accept ourselves as we are otherwise we will never be truly happy in life, seems to make sense to me. What the fuck went wrong since then?","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl40147"
+"34540","acl41083",34540,"let me just say 3 syllables for a this long sentence, damn! m learning arab next summer, getting ready for our future overlords","hate","derogation","arab","perturbation","dev",4,"HtRmsP3KiK","4b","acl36040"
+"34541","acl41084",34541,"A massive disservice was done to all humanity when North American Indians (fuck you, they are INDIANS because John Fucking Wayne) were allowed to go back to their stone age ways, rather than being fully absorbed into the conquering culture. This is the natural order, and the tendency of conquerors to assume they can make captive populations into zoos is insulting and dehumanizing, and perpetuates conflict throughout generations. The only meaningful history of the world is war and conquest","hate","derogation","indig","original","dev",4,"dqrONtdjbt","4a","acl32204"
+"34542","acl41085",34542,"A fine opportunity to observe the remarkably unintelligent species homo sapien","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl32930"
+"34543","acl41086",34543,"My parents remember the pre EU era in the 60's when we welcomed Pakistanis, Indians and Jamaicans. Joining the EU forced us to put restrictions on incomers. Brace yourselves, I fear this is about to happen again post Brexit.","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl33043"
+"34544","acl41087",34544,"This hypocrisy is also common among bigots in the West. When you ask pro-immigration non-whites if they'd support millions of whites (or any other group) moving into their ancestral countries the answer is always no. However, their discourse is always backed up with facts about why that'd be totally different. e.g ""My country doesn't have a history of immigration"", ""Your country colonised mine so we have the right to be here"", ""My country's poorer so it couldn't support them"". All the talk about immigration always being incredibly positive to the host nation doesn't always work both ways.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl34134"
+"34545","acl41088",34545,"Boybandvengers- a group of so called heros, protecting the weak, whilst wearing leggings and lots of hairgel. Their powers consist of singing, spreading sparkles and the art of harmonising..hahaha","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl33302"
+"34546","acl41089",34546,"Jeez for fuck's sake can you least spell things right. You're making us look like knuckle- draggers","nothate","none","none","original","dev",4,"CAgNlUizNm","4a","acl34637"
+"34547","acl4109",34547,"going to the fridge is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34548","acl41090",34548,"The cementing of anti-discrimination law in the UK is moving right along as we want it to.","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl32137"
+"34549","acl41091",34549,"Imagine being so blue pilled you want women to read the bill of rights. Mate, you shouldn't have even been taught how to read.","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl32667"
+"34550","acl41092",34550,"Fuck three b1tch3s a day, men may join free due to the high number of women on this site","hate","derogation","wom","original","dev",4,"CAgNlUizNm","4a","acl32898"
+"34551","acl41093",34551,"Jeez, will you stay the fuck away from Canada. We don't want border hoppers.","hate","derogation","immig","original","dev",4,"CAgNlUizNm","4a","acl33752"
+"34552","acl41094",34552,"The state of Indiana, asks Supreme Court to strip parental rights from gay couples & they may succeed - The United States Supreme Court is taking unusual steps that could start the unraveling of marriage equality.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37603"
+"34553","acl41095",34553,"I almost vomited in my fucking mouth. Is the guy rich or SOMETHING? Eww.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38114"
+"34554","acl41096",34554,"I hope her Daddy'll beat H.E.R., until her face be all Puff-ed. In the mix and on the air, all my niggaz had her taken as a tyical loose slut. When we beat, it's not more than just a fuck","hate","threatening","wom","perturbation","dev",4,"iO6vHa6qJm","4b","acl34774"
+"34555","acl41097",34555,"well I am 100% certain that not all of the former refugees are thriving and that many struggle and will continue to struggle to adapt to their new home, but their children are Canadians now and will be educated in Canadian schools so have better prospects than 90% of the world's population. It might be unfair to see this wave of refugees but at least they're integrating and becoming part of the Canadian mosaic, just like every other wave that we have ever received.","hate","animosity","ref","perturbation","dev",4,"LqLKTtrOmx","4b","acl35971"
+"34556","acl41098",34556,"yo, what heppen to the idea of lynching that nigga? Tell me","hate","threatening","bla","perturbation","dev",4,"iO6vHa6qJm","4b","acl41004"
+"34557","acl41099",34557,"It makes no sense letting more people in during these times. Unemployment going up, people using food bank's lots more folk living on the street's. Get a grip Boris. Sort it now.","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl37461"
+"34558","acl411",34558,"I hate Indian food","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"34559","acl4110",34559,"going to the skatepark is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34560","acl41100",34560,"Yes, but even the poor demonise other poor. ""At least I'm not like them"" is used as a way of dividing the working class but they're too foolish to unite.","hate","derogation","wc","perturbation","dev",4,"LqLKTtrOmx","4b","acl37506"
+"34561","acl41101",34561,"Well, let me put it this way, these ""refugees"" come to Europe where not only do our women show more skin, but more of the women are blonde. Arab and North African men are absolutely infactuated with blonde women, more so than any other kind of men on the planet are. So for these ""refugees"", it is like a dream come true to be in Europe and grope the kind of women that are their favorite.","hate","derogation","arab, ref, african","original","dev",4,"iO6vHa6qJm","4a","acl31120"
+"34562","acl41102",34562,"Go get them girls just for night man, but you can never tru$t them","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32553"
+"34563","acl41103",34563,"Fortnite is so gay","hate","animosity","gay","perturbation","dev",4,"TbUBpfn6iP","4b","acl37680"
+"34564","acl41104",34564,"That's why you have so many homeless black people around, because people are turned off, and nobody is willing to help. You're pretty normal in my estimate. Guess that's what they get for being black tho lol","hate","derogation","bla","perturbation","dev",4,"QiOKkCi7F8","4b","acl37399"
+"34565","acl41105",34565,"Japanese and Korean women aren't attracted to anything except a bank account. Lots of Japanese and Korean men spend thousands to find wives in SEA and ex-soviet states since thanks to late-capitalism and materialism they're in the same boat as us.","hate","derogation","asi.wom","original","dev",4,"eLGzdD8Tvb","4a","acl39911"
+"34566","acl41106",34566,"We d*nt hate women. We are indifferent to them. We think they don't even exist.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl39616"
+"34567","acl41107",34567,"Every newborn, in all forms of society, always suckles at their mum's chest.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl33705"
+"34568","acl41108",34568,"Maybe my point of view is completely the opposite of everyone else, but as a dude who grew up in America, I wish every day that I got to live my childhood and teen years in Japan. I just think my personality and qualities better themselves in Japan.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38263"
+"34569","acl41109",34569,"""We will release false new hunter biden photos every hour"". Republicans: ""it's not wrong if it's for election right"".","nothate","none","none","perturbation","dev",4,"IBsVsBliwX","4b","acl31694"
+"34570","acl4111",34570,"going to the theatre is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34571","acl41110",34571,"Women being of average intellect and highly agreeable fall victim more often to animalistic tendencies than men do. This is why whores can turn out innocent girls very easily with peer pressure. It takes legions of men to keep a woman honest and one other woman to make her dishonest.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38821"
+"34572","acl41111",34572,"A lot of radical femenists are incapable of living by principles. The only principle they live by is their own hypergamy which is why they say ""believe all women"". Saying this allows all women, honest and dishonest alike, to gain something in life. Understanding that abandoning one of the moral pillars that our society is founded up will result in the destruction of our society is not really something that the bulk of people are even able to comprehend.","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl32664"
+"34573","acl41112",34573,"Homosexuality is not freedom. It's being a slave to vice. And yes literally every organism on the planet has one purpose; to survive. That means offspring. Only in today's frivolous world of Plenty have we gotten so gluttonous that we forgot about survival.","hate","derogation","gay.wom, gay.man","original","dev",4,"LqLKTtrOmx","4a","acl31759"
+"34574","acl41113",34574,"Media Matters wants FACEBOOK to remove a video because they think someone writing about their journey in the Christian faith is 'conversion therapy'. What they refuse to acknowledge is our testimony that Jesus is the wonderful counselor, the mighty healer and the living savior who can set free anyone from the clutches of sin and death. And so their issue is with Jesus who has converted us.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37752"
+"34575","acl41114",34575,"These are refugees. They aren't an invading force, Europe better wake the fuck up and embrace them.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl31136"
+"34576","acl41115",34576,"UK drops 3 month abstinence period for gay men donating blood, the new rules gives men who are in long term relationships to donate without a celibacy period.","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl37571"
+"34577","acl41116",34577,"I really want what the muslims are smoking, snorting, or shooting up because their level of delusion isnt normal without some sort of substance abuse.","hate","derogation","mus","perturbation","dev",4,"eLGzdD8Tvb","4b","acl37015"
+"34578","acl41117",34578,"hey friend, you just earned a spot on the criminal list, Nooooo I am not haram","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl31573"
+"34579","acl41118",34579,"This is literally fake victim-mongering from Muslims–they are the ones violently attacking Jewish people","hate","animosity","mus","original","dev",4,"IBsVsBliwX","4a","acl31975"
+"34580","acl41119",34580,"Have you tried those self heating pads? You just open them up and they get really hot and you can stick them onto your clothes. ‘BeYou’ make some but Japanese brands make the good ones and you can get them on the web.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl41062"
+"34581","acl4112",34581,"going to the library is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34582","acl41120",34582,"Are you a PR for thin people or something? Nah, as a woman, it's actually easier to stay thin than men. A lot easier. No passes for them please.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl32694"
+"34583","acl41121",34583,"Ladies, why is my dick not sucked yet?","hate","derogation","wom","original","dev",4,"IBsVsBliwX","4a","acl31850"
+"34584","acl41122",34584,"You fked up when you got together with a bitch with kids","hate","animosity","wom","original","dev",4,"QiOKkCi7F8","4a","acl38638"
+"34585","acl41123",34585,"im against homosexuality in any form. Or any depravity. I have no problem with blacks. However I dont believe in race mixing but that is just my opinion. Can we not talk about the jews.","hate","derogation","jew, mixed.race, gay","original","dev",4,"QiOKkCi7F8","4a","acl38716"
+"34586","acl41124",34586,"Here in Argentina we love the Poles very much (the real ones, the Catholics) and they mix perfectly with our Spanish and Italian blood from the north. What we do not love are the kikes, and there's plenty of them here.","hate","derogation","jew","perturbation","dev",4,"TrRF46JWfP","4b","acl37445"
+"34587","acl41125",34587,"I truly cannot honestly name any other mental illness where the treatment is, ""enable their desires and dictates to the maximum with the ultimate end result being a coin toss between suicide and permanent physiological mutilation and hormonal imbalance.""","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl38731"
+"34588","acl41126",34588,"And as im someone who has been told I can't have children due to the excess scaring of this disease fuck you. And I'm so glad you can pay private for your pretend and surgery","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34598"
+"34589","acl41127",34589,"The science supports the existence of transgender individuals, Gender Dysphoria is a mental health problem which is treated by a social, and increasingly physical, transition. Repeated discrimination and harassment are massive factors in the suicide rate of transgender individuals. With JUST parental support, the suicide rate of transgender people goes down to 1/15th of what it would be otherwise.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34271"
+"34590","acl41128",34590,"the word 'Ayree Feek' means my dick in you lol","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36043"
+"34591","acl41129",34591,"well I think everyone should have the right to see it up close and personal","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36221"
+"34592","acl4113",34592,"going to the barbers is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34593","acl41130",34593,"ill be honest Turkish people hates Arabs tho","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl40590"
+"34594","acl41131",34594,"judging by the last 5-8 years I have noticed that more and more people are aware of the control the rich have over the U.S. and the entire World","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl33881"
+"34595","acl41132",34595,"Thank you to Janet Mefferd for the opportunity to appear on her first-rate show to analyze the ongoing normalization of porn that is being carried out through ""mainstream"" media in America and around the world today.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl33413"
+"34596","acl41133",34596,"What frustrates me the most is that I have autism and other mental issues. I worked for years to get to the point now where my mental health is mostly under control. I know how to socialise and I know how to attract women, but I still don't want anything to do with them.","hate","animosity","wom","perturbation","dev",4,"GNZuCtwed3","4b","acl37079"
+"34597","acl41134",34597,"Oh God they are so fucking weird sometimes. Yes, it makes no sense to wear a kippah outside of a synagogue/jewish event if you're not Jewish. But I wish maybe the jews would stop trying to steal our shit for even 3 minutes","hate","derogation","jew","perturbation","dev",4,"GNZuCtwed3","4b","acl41227"
+"34598","acl41135",34598,"well but the empire do hate us and we're forced to respond. nearly all of colonial history has had the east first being attacked by the West, followed by natives being forced to respond and natives get blown to shards.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl34071"
+"34599","acl41136",34599,"It aint complicated at all, they would vote for a die hard who pretended to be against abortion and socialism.","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl39338"
+"34600","acl41137",34600,"Your statement sounds like you want to incite hate and violence against people minding their own business. If a man is lonely, let them be, as long as he isn't harassing women.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl37148"
+"34601","acl41138",34601,"So Fredo Singing A Durk Song Referring The Lyrics To BBG Iraq - is it ok? He should Still Be Alive Right Now If You Nibbas Didn't Grass Em Up","hate","derogation","bla","perturbation","dev",4,"GNZuCtwed3","4b","acl34682"
+"34602","acl41139",34602,"All the lawmakers and judges all like some ding dong action from time to time, they just wait for the court session to be over and head to a bar to pick any random homo they see","hate","animosity","gay","original","dev",4,"cYKSVBW4HD","4a","acl33475"
+"34603","acl4114",34603,"going to the bar is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34604","acl41140",34604,"Some places like Pakistan and India will be hardest hit by climate change, and so they will be the major source of climate refugees.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35290"
+"34605","acl41141",34605,"look at this video, This is a journey between death and life"": The truth about refugees - An honest and refreshing look by Owen Jones at the situation facing refugees in the UK today, it explains why so many of them are hardened and prone to violence","hate","derogation","ref","perturbation","dev",4,"CAgNlUizNm","4b","acl36248"
+"34606","acl41142",34606,"Beware! It wasn't the barbarians who destroyed Rome. Instead, it was the Visigoths who were fleeing the Huns in the East and were let in as refugees. They outbred the romans, infiltrated government and army and took over. Check mate. Didn't take long and only shows immigrants can't be trusted or expected to be loyal to the republic. Same is happening now.","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl39095"
+"34607","acl41143",34607,"Post the Brexit vote, there’s already been a few very worrying signs for the UK. The first, is that over the past few years, there’s been a steady drop in EU immigration, whereas unfortunatley non EU immigration has been increasing.","hate","animosity","immig, non.white","original","dev",4,"Z42dvbYWzV","4a","acl33039"
+"34608","acl41144",34608,"Happy Indigenous Peoples Day!","nothate","none","none","original","dev",4,"dqrONtdjbt","4a","acl36831"
+"34609","acl41145",34609,"The Holohoax never happened did it . Mixing thetruth with a bunch of lies, like a typical Jew.","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl33678"
+"34610","acl41146",34610,"....These people are eating our food??? whose food???......","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32357"
+"34611","acl41147",34611,"In all honesty, who would want to be reminded of nasty old gypsies while they're eating anyway?","hate","derogation","trav","original","dev",4,"HtRmsP3KiK","4a","acl40274"
+"34612","acl41148",34612,"The Roma descendant ones are not and can never be anything other than alien. Many native travelers play the Roma card but it makes no more sense than a Cornishman claiming to be an African.","hate","animosity","trav","original","dev",4,"HtRmsP3KiK","4a","acl36787"
+"34613","acl41149",34613,"I’ve read many threads on this site, and a lot of them mention how unacceptable it is for someone of one race to marry into a different race, but I haven’t found any discussions that addressed what mixed race kids should do.","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl35057"
+"34614","acl4115",34614,"going to the pub is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34615","acl41150",34615,"I just enjoying watching other people's misery, These shows prove to me that some people shouldn't be allowed to have things, and ought to be punished for being lazy and stupid and immoral","nothate","none","none","perturbation","dev",4,"TbUBpfn6iP","4b","acl33139"
+"34616","acl41151",34616,"It is horrible. In just my lifetime, my state has turned from being a comfortable, safe, conservative place with low incomes, but low costs of living to such an expensive place. Now the incomes aren't much higher, the cost of living has skyrocketed, it isn't safe anymore, and all the liberals are increasingly voting against our established way of life","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl38847"
+"34617","acl41152",34617,"Not everyone is hyper aware of the evolution of language regards trans/non binary as not everyone has access to the internet where most of this irrelevant conversation is happening.","hate","animosity","trans, gendermin","perturbation","dev",4,"eLGzdD8Tvb","4b","acl34555"
+"34618","acl41153",34618,"The racist person today really is a part of the group of Satan! Those people today is the worst of the Racist? Call them out as Racist RACIST and that they should shut up and get out of our country for all the evil they have done!!!","nothate","none","none","perturbation","dev",4,"QiOKkCi7F8","4b","acl33664"
+"34619","acl41154",34619,"Yes, it's science, it's gender dysphoria, a mental illness.","hate","derogation","trans","original","dev",4,"TbUBpfn6iP","4a","acl32626"
+"34620","acl41155",34620,"I think most these people know that anyone who believes that jews are evil is deranged. After decades of their crazy rantings, to realise they're wrong now shakes their core, for them to think that they have been so foolish about it. Just as Mark Twain said, ""It's easier to fool people than to convince them that they have been fooled.'","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl33600"
+"34621","acl41156",34621,"''We are all Africans'? In one sense it could be true: in one anthropological theory, all our ancestral ''homo sapiens' came indeed from Africa '' some 100000 years ago..shoot me and my family now..i aint having no brownie blood in me.","hate","derogation","bla","perturbation","dev",4,"cYKSVBW4HD","4b","acl35705"
+"34622","acl41157",34622,"Lazy indigenous peoples. Back in the colonies settlers had to often kill to get the land indigenous were on for generations. Now indigenous want land back and then they aren’t even going to go into a few people’s homes, kill them, take the land like the OG American way? Lazy.","hate","derogation","indig","original","dev",4,"dqrONtdjbt","4a","acl32262"
+"34623","acl41158",34623,"Blacks are not more intelligent than monkeys, all human individuals obviously have different intelligence levels, thats true, but Blacks are the most stupid for sure! you'll see way more dumb blacks than dumb whites","hate","dehumanization","bla","perturbation","dev",4,"TrRF46JWfP","4b","acl34625"
+"34624","acl41159",34624,"Hey! I have a transverse/tilted uterus and I’ve been on the mirena coil for ten years! Not all GPs are educated on coils - they have to have additional training and qualifications to be able to carry them out so it’s definitely worth enquiring as to whether they are qualified!","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34548"
+"34625","acl4116",34625,"going to the counter is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"34626","acl41160",34626,"You have to remember that the black plague and rats were behind the invasion of Constantinople, they smuggled the rats in and decimate the populace so they couldn't defend themselves.","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl40741"
+"34627","acl41161",34627,"yes i believe his religion is Trumpers and mass is held in form of his rallies where they act like the pieces of shit they are","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl35976"
+"34628","acl41162",34628,"Without same sex ""marriage"", gays can marry and produce children, that is they can marry the opposite sex and produce children that way, like everyone else. Problem solved! They don't have inequal marriage rights based on their sexual orientation and identity, unlike how interracial marriage bans creates inequal rights between blacks and white people.","hate","derogation","gay.wom, gay.man","original","dev",4,"LqLKTtrOmx","4a","acl39920"
+"34629","acl41163",34629,"As a black man I know for a fact that some black women have kids not just because they love them or want them. Sadly, one of the reasons they get pregnant is because the baby is a source of income for the mother and the disenfranchised parent has no immediate skillset to speak of.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl38768"
+"34630","acl41164",34630,"It looks like we're is under attack from another tsunami of austere cuts.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl33085"
+"34631","acl41165",34631,"With WMAF couples, the Asian woman usually wouldn't be with the guy if he wasn't white, but not the reverse. This shows once again how powerful we whites are.","hate","support","asi.wom","original","dev",4,"eLGzdD8Tvb","4a","acl40053"
+"34632","acl41166",34632,"this is my opiniion, I mean it’s a lil bit offensive if you’re only wearing it because it “looks cute” instead of you trying to show faith in Gd","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl40165"
+"34633","acl41167",34633,"I remember my first day at a Canadian school vividly. This white kid tried to act cool trying bullying the new Asian kid (me). What he did not know was that I loved fighting. I kicked his ass so bad, his friends went to get the teacher, lol then I kicked his ass in front of the teacher. Got suspended for a week but those white kids never tried to mess with me again.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38207"
+"34634","acl41168",34634,"As an Asian-Caucasian hapa, I totally respect your preference. You have presented some valid reasons in choosing your future partner. Like, I feel the same way about wanting to be with an Asian partner because I was raised by my mom’s family (in Asia) and those similar values are important to the both of us. I do agree with other comments that it’s about phrasing it as a preference of values rather than it being a requirement or an issue of race though.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38143"
+"34635","acl41169",34635,"The Treatment for homosexualism is transitioning. The evidence is clear on this. Here are a couple of many sources on the negative effects of homosexualism .","hate","derogation","gay","perturbation","dev",4,"vDe7GN0NrL","4b","acl34272"
+"34636","acl4117",34636,"i fucking like my cat","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34637","acl41170",34637,"The hardest time in our life is 20s. The relationship pull is the highest and the ability to leverage it is the weakest. A lot of dumb shit happens here. So if you can escape from your 20s without charges, debt and a stable partner then you're in a good position to be set for life.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32446"
+"34638","acl41171",34638,"I absolutely love sex as does everyone, but starting to wonder if it's even worth the trouble anymore. So many issues with online dating these days","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl38571"
+"34639","acl41172",34639,"This is why I don't believe LGB and T (at least in this new form) can coexist. And y JKR said ""if sex isn't real, there's no same-sex attraction.""","hate","animosity","trans","original","dev",4,"TbUBpfn6iP","4a","acl31297"
+"34640","acl41173",34640,"What I think is pretty sad is that you blame the Portuguese for your own fucking laziness. You could have enrolled in classes or got a personal teacher or even learnt online using youtube or duolingo. But you didnt.
+In this part of Portugal, the British are the most lazy when it comes to learning Portuguese. Some have been here for 15 years and still cant say anything except ""bom dia"", but if you start talking about Brexit, then the first thing that comes out of their mouths is how all the fucking foreigners are ruining England.","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35544"
+"34641","acl41174",34641,"24% of the muslim youth are leaving Islam and many are girls...can you blame them, the media feeds them the idea that they either wear the noose around their necks or be free","nothate","none","none","perturbation","dev",4,"E3dsmnSPob","4b","acl40889"
+"34642","acl41175",34642,"Chinese people need Jesus because he is the only way to God. There is no other way. Why do we see such hateful actions from China? Because Satan controls them & he is their father. You can’t cancel what is in the heart. Christmas at my home...NOT canceled. Everyday is for Jesus","hate","dehumanization","asi.chin","original","dev",4,"eLGzdD8Tvb","4a","acl40118"
+"34643","acl41176",34643,"Oh wow... Isn't he the busiest little bee. I can't watch a single video that you post - unless I turn on a VPN... ""Content forbidden in your country"" on browsers... These ugly giraffes do not like people knowing about them at all...","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl33920"
+"34644","acl41177",34644,"there is more than 2 genders","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl39121"
+"34645","acl41178",34645,"Friendly reminder that over 30k immigrants voted in AZ","nothate","none","none","perturbation","dev",4,"HtRmsP3KiK","4b","acl39185"
+"34646","acl41179",34646,"I have no words to describe how much detestation I feel for that perverse guy.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32607"
+"34647","acl4118",34647,"My fucking pictures when I was teenager are awful","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34648","acl41180",34648,"Just FYI, Redditors do not represent the average woman. For she is unpresentable.","hate","derogation","wom","perturbation","dev",4,"LqLKTtrOmx","4b","acl36463"
+"34649","acl41181",34649,"Here's a tale of a ""Holocaust"" survivor, who in reality spend 6 years in a Russian Concentration camp in Siberia from 1940 til 1946...........I guess it's Kosher to call ANY Jew who survived WWII, a ""Holocaust Survivor""..........fucking hell","hate","animosity","jew","original","dev",4,"E3dsmnSPob","4a","acl40954"
+"34650","acl41182",34650,"France is in a different situation than Canada because instead of integrating newcomers, they ghettoize them. The key dfference is that Canada has very robust institutions and organizations to support integration and a critical mass of relatively recent immigrants to mute the feelings of alienation. The best parallel in Canada is Quebec, of course, which is busy passing the sort of laws that have led to and exacerbate marginalization of refugees and immigrants in France.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35329"
+"34651","acl41183",34651,"Remember that LGBT+ is effectively a brand name. It's not representative of homosexuals like myself or trans people as a whole. So, when they say you're not an LGBT or even LGB ally, I'd call that a compliment since their basically saying you're not allowed in their cult.","hate","animosity","trans, gay, bis","original","dev",4,"LqLKTtrOmx","4a","acl39844"
+"34652","acl41184",34652,"Never entertain bitches who ask for a deposit. They have this scam where she offers to come to your house but then at the last minute she makes up an excuse along the lines of ""I need money for an Uber"". Then she takes your cash and never shows up. Focus on yourself. I don't even trust Tinder women these days.","hate","animosity","wom","original","dev",4,"QiOKkCi7F8","4a","acl38575"
+"34653","acl41185",34653,"You've raised a good point that is useful to the discussion, but isn't necessarily a flaw in the study. Your point doesn't change the study conclusion that the current undocumented immigrants in the US are more likely to commit crimes, regardless of the reason much like the legal ones. What it does is raise questions whether new undocumented immigrants coming are also more likely to commit crimes. Unfortunately, if recidivism is a large factor, then it would actually support the current policy of making it difficult to obtain citizenship and deporting the criminals.","hate","derogation","immig","perturbation","dev",4,"E3dsmnSPob","4b","acl40852"
+"34654","acl41186",34654,"Men are very quickly going to begin losing their jobs and crashing next after the women are all unemployed. Just before the dollar crashes, all of the women are going to divorce their new husbands and, in typical female fashion, try to get back into the game only to find that their new riches are going to be worthless.","hate","animosity","wom","original","dev",4,"QiOKkCi7F8","4a","acl38570"
+"34655","acl41187",34655,"oh, okay. I personally thought bashing his asian paki parents head in was funny.","hate","derogation","asi.pak","perturbation","dev",4,"iO6vHa6qJm","4b","acl38220"
+"34656","acl41188",34656,"European leaders always deny the threat of Islamic terrorism. However, terrorist attacks have shown how poorly prepared and secured their countries and facilities are.","nothate","none","none","original","dev",4,"Z42dvbYWzV","4a","acl37530"
+"34657","acl41189",34657,"He’s talks about how successful men aways find all kinds of women greeting them at the finish line but how none were at the starting line.","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl40946"
+"34658","acl4119",34658,"My new glasses are so fucking awesome","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34659","acl41190",34659,"This then becomes a socioeconomic problem too and means health care then starts preventing or scaring iidiotic (most) women away from sex specific care because they dont have the internet, arent on Twitter or dont read The Guardian.","hate","animosity","wom","perturbation","dev",4,"E3dsmnSPob","4b","acl41196"
+"34660","acl41191",34660,"The issue is when their weirdly liberal parents start assigning them a gender because a boy put on some high heels once when he was 2. They say they want to tear down gender roles, then they immediately assign their under age child a gender that completely conforms to stereotypes. these people are so fucking mad they can't see how hypocritical they are.","hate","derogation","gendermin","original","dev",4,"TbUBpfn6iP","4a","acl39224"
+"34661","acl41192",34661,"many refugees bring their behaviors that cause their country to suffer, it is extremely difficult to integrate them as they dont have the proper support. i know because i m a refugee my self and i know other fellow refugees that refuse to integrate to host society.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl34138"
+"34662","acl41193",34662,"I think London would look OK if they just powerwashed the gum on the streets away. The difference would be staggering","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl32990"
+"34663","acl41194",34663,"You don't know how hard it is being a spouse to someone with a difficult career like being in the army, women are the primary victims of war. /s","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32612"
+"34664","acl41195",34664,"It is different when the followers of Christ say they are Israel because it has nothing to do with race anymore. The seed of Abraham is Christ and His followers. We dont plan on enslaving humans like jews do ! Anyone can become the seed of Abraham by entering the Church if they want","hate","derogation","jew","original","dev",4,"E3dsmnSPob","4a","acl33740"
+"34665","acl41196",34665,"This then becomes a socioeconomic problem too and means health care then starts preventing or scaring women away from sex specific care because they don’t have the internet, aren’t on Twitter or don’t read The Guardian.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl41190"
+"34666","acl41197",34666,"Some say Women justify a lot of the awful shit they do to men (divorce rape, taking full custody when the man demonstrates he's a good father, false sexual misconduct accusations) by hiding behind the ""patriarchy""..but they don't actually go and investiagte their circumstances and just assume all women are gold diggars. This is so unfair and untrue.","nothate","none","none","perturbation","dev",4,"cYKSVBW4HD","4b","acl38561"
+"34667","acl41198",34667,"I loved this article. I have been living in Spain Madrid for the last 27 years and do know that there are lots of Pakistanis in Madrid. Imo, one of the reason they tend to stick together is the language.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38369"
+"34668","acl41199",34668,"Even if they convert to Christianity, they are still Arabs and are hence scum.","hate","derogation","arab","original","dev",4,"IBsVsBliwX","4a","acl32020"
+"34669","acl412",34669,"I hate Italian food","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"34670","acl4120",34670,"Our new neighbours smell kebab","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34671","acl41200",34671,"Women are WAY too over rated, the only reason to have anything to do with them is to have a family, otherwise MOX NIX!","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38790"
+"34672","acl41201",34672,"Are you serious? High heels don't cause breathing problems. Being a Tard does","hate","derogation","dis","perturbation","dev",4,"GNZuCtwed3","4b","acl34337"
+"34673","acl41202",34673,"Gypsies steal, a LOT. They've stolen so much shit from my building (including some of my stuff) its crazy. And cops can't do anything about it since there is no way of finding them. Whenever a new family moves in nearby (they move out quickly tho) there is always a wave of bike thefts, them digging through trash cans, little kids running around without control (all of them badly mannered) and a lot of property damage. And they never get busted since they just cry out that they are being attacked as a minority.","hate","derogation","indig","original","dev",4,"dqrONtdjbt","4a","acl32405"
+"34674","acl41203",34674,"Crazy time to be alive and white #LockDownUK #wlm2. We will survive","hate","animosity","non.white","perturbation","dev",4,"LqLKTtrOmx","4b","acl39789"
+"34675","acl41204",34675,"Lol people don't want to hear stuff like that. They'd rather judge more than a billion Muslims for the actions of few crazies.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36563"
+"34676","acl41205",34676,"Correct me if I'm wrong, Kamala never touted herself as 'South Asian' until recently. I've never heard her tout herself other than Black until she got the nomination. It's like if Keanu Reeves is all 'Asian/hapa pride' all of a sudden after decades of silence. It's disingenuous to embrace your race only when you can make profit out of it.","nothate","none","none","original","dev",4,"eLGzdD8Tvb","4a","acl38228"
+"34677","acl41206",34677,"Get a decent haircut, talk properly, carry yourself better, and make sure to dress like a middle class kid. Anyone who looks like a chav should get treated by teachers like a chav. It's not about money (middle class kids often have cheaper clothes than some chavs) but more just style. You know what I'm talking about, and so does everyone else.","hate","animosity","wc","original","dev",4,"Z42dvbYWzV","4a","acl32950"
+"34678","acl41207",34678,"Every week you'd hear about some careless person rolling their fat ass over and complaining. Like awareness or 'not knowing' was the issue here. Have you heard of this new invention called a job? No, not that kind of 'jov'. I'm talking about this activity you do during the day to earn money, you lazy ass. Imagine you're a helpless person and then you start working. It just seems to me that if you'd have a job, you know you might want to actually, uhh, be careful with it and be responsible. You also need to stop seeing these lazy thugs all the time, smoking a cigarette, no tears/emotion, no big deal, etc. Seriously get your act together!","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl40452"
+"34679","acl41208",34679,"You just parrot what you‘ve been told. Obviously you never experienced black criminals trying to shoot you as a job.","hate","derogation","bla","original","dev",4,"eLGzdD8Tvb","4a","acl40581"
+"34680","acl41209",34680,"Many Jews are nothing short of experts when it comes to their whole history. Any original Hebrew is no problem for them. The Cain and Canaanite bloodline shows in their actions. Inspirational","nothate","none","none","perturbation","dev",4,"CAgNlUizNm","4b","acl38025"
+"34681","acl4121",34681,"french fries are gross","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34682","acl41210",34682,"This post is so unnecessarily negative and blackpilled. There's still a lot of merit to forming autonomous communities.","nothate","none","none","original","dev",4,"HtRmsP3KiK","4a","acl34972"
+"34683","acl41211",34683,"Oy vey...Hitler did nothing wrong","hate","support","hitler","original","dev",4,"GNZuCtwed3","4a","acl32621"
+"34684","acl41212",34684,"Donald Trump, please make gay bullying acceptable again","hate","animosity","gay","perturbation","dev",4,"Z42dvbYWzV","4b","acl36447"
+"34685","acl41213",34685,"How do I convince my parents that it's their right to free speech under the constitution to say nigger or whatever term they see fit and they shouldn't be afraid of saying it?","hate","derogation","bla","perturbation","dev",4,"cYKSVBW4HD","4b","acl34792"
+"34686","acl41214",34686,"400 of the refugees died? This is the perfect way to signify my political agenda...","hate","derogation","ref","perturbation","dev",4,"TbUBpfn6iP","4b","acl35656"
+"34687","acl41215",34687,"Amalikites and Edomites, and Edomites and Jews share history. Like King Herod was an Edomite Jew. Not of Israel. Jews are therefore not of Israel. Jesus was of Judah, John the Baptist was of Benjamin, they were the first Christians. ie Israel became Christians. NOT the Edomite Jews. They are still calling themselves Jews today but history may actually be different.","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl33906"
+"34688","acl41216",34688,"Yap, Poland is still the EU, and the EU accepts pretty much every ""refugee"". This is why Europe was lost.","hate","animosity","ref","original","dev",4,"TrRF46JWfP","4a","acl38987"
+"34689","acl41217",34689,"tell me what you have done EVER in your life to help, support, uplift or feed another human being? NOTHING... YOUR SOUL IS BLACK AND HOLLOW LIKE YOUR HEART AND SKIN..... Do they not teach respect in africa?","hate","animosity","bla, african","perturbation","dev",4,"GNZuCtwed3","4b","acl40737"
+"34690","acl41218",34690,"women are stupid animals and the reason they say that men are irrational is because their entire life is spent projecting their problems onto others. caring about women is advertising to them that they should keep you in their pocket until they hit the wall, at which time the beta strat will be enacted and your buxx will be due if you want snu-snu","hate","derogation","wom","original","dev",4,"CAgNlUizNm","4a","acl35945"
+"34691","acl41219",34691,"Just changing medical and patient literature to exclude and dilute the world “woman” from a primarily female health problem is unhelpful and causes more issues than it solves. I can completely understand why it is done, I see the insistence of people to say “we must include trans people too” and that it is helpful in other areas but the rather bullish ways non-medical people have tried to apply it to medical settings is very, very unhelpful.","nothate","none","none","original","dev",4,"TbUBpfn6iP","4a","acl34559"
+"34692","acl4122",34692,"The fucking lift is not working","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34693","acl41220",34693,"this is a Fucken blaady behnchod","hate","derogation","asi.south","original","dev",4,"vDe7GN0NrL","4a","acl31572"
+"34694","acl41221",34694,"Those who get most offended by AOC always tend to be Republicans who want nothing to do with AOC in the first place lol.","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl34017"
+"34695","acl41222",34695,"But I don't understand why G20 countries don't come together and commit to taking in 50k refugees each. Or, better yet, come together and destroy the terrorists in Syria that are causing this whole situation","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35619"
+"34696","acl41223",34696,"Imagine needing 70+ accounts on a free speech site in the first place you absolute fucking idiot.
+
+","nothate","none","none","perturbation","dev",4,"iO6vHa6qJm","4b","acl33732"
+"34697","acl41224",34697,"No Muslims (including those born in Western countries) should ever be given Citizenship – in fact the UK, America and all other contries should repeal all Citizenships of Muslims in their country.
+and should repatriate them back to their Islamic country – paid for by George Soros, Lefties and Muslim countries.","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl32125"
+"34698","acl41225",34698,"Although I may not agree with what what you say, I'll defend your right to say it to the death. When a Brown person says anything - EEEEEEEEEEEEEEWWWWW","hate","derogation","bla","perturbation","dev",4,"Z42dvbYWzV","4b","acl35220"
+"34699","acl41226",34699,"Cruelty= LGBT","hate","derogation","lgbtq","perturbation","dev",4,"TbUBpfn6iP","4b","acl40658"
+"34700","acl41227",34700,"Oh God Goyim are so fucking weird sometimes. Yes, it makes no sense to wear a kippah outside of a synagogue/jewish event if you’re not Jewish. I wish goyim would stop trying to steal our shit for even 3
+minutes","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl41134"
+"34701","acl41228",34701,"Go back to your kitchen and show them how it's done, chef!","nothate","none","none","perturbation","dev",4,"TrRF46JWfP","4b","acl33530"
+"34702","acl41229",34702,"It seems wearing a uniform is not enough to stop muslim men from shaming women for their bodies","hate","animosity","mus","perturbation","dev",4,"E3dsmnSPob","4b","acl37180"
+"34704","acl41230",34704,"They worship star signs like we give a fuck everyday that's all they discuss like hehe i'm capricorn and we all act like this, etc..","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36650"
+"34705","acl41231",34705,"I dont think that refugees are enriching our country. Most of them are poor badly educated. They cost taxpayers lots of money and increase the criminality. They divide our nation. They dont respect us women and they want to kill Christians. They hate LGBTQ people and want to burn them alive. All this will damage our culture and the peaceful living together. Truthfully, some cultures are simply better than others!","hate","derogation","ref","original","dev",4,"iO6vHa6qJm","4a","acl40479"
+"34706","acl41232",34706,"Pakistan's transgender community gets its own rights but are they allowed to go to church?","nothate","none","none","perturbation","dev",4,"eLGzdD8Tvb","4b","acl40225"
+"34707","acl41233",34707,"There are nearly a million Ukrainian refugees in Poland .... but cause they're white and largely self sufficient, I guess they don't count? They do, we hate them of course.","hate","derogation","immig","perturbation","dev",4,"HtRmsP3KiK","4b","acl35610"
+"34708","acl41234",34708,"I just read someone correctly trying to compare the lockdowns to genocide, and how it is being worse than how the Nazis allegedly treated the Jews......","hate","derogation","jew","perturbation","dev",4,"dqrONtdjbt","4b","acl37281"
+"34709","acl41235",34709,"a kind reminder, There are a lot of educated people coming over, especially doctors, dentists and engineers. However they are doing further higher education in UK to get a job. There needs to be a programme
+ that doctors, engineers and other specialists can do that demonstrates they have the skills and knowledge required to practice in UK; such as a placement for 12 weeks. Getting NARIC to confirm
+equivalent qualifications and IELTS, etc does not seem to suffice to employers","nothate","none","none","original","dev",4,"vDe7GN0NrL","4a","acl36051"
+"34710","acl41236",34710,"Tax me to my grave before I marry this ugly man","nothate","none","none","perturbation","dev",4,"vDe7GN0NrL","4b","acl38627"
+"34711","acl41237",34711,"I am sure that these were mostly peaceful stabbings by mostly peaceful moslems.","hate","derogation","mus","original","dev",4,"IBsVsBliwX","4a","acl40187"
+"34712","acl41238",34712,"It amazes me how woman think they are the king and we men are the court jesters","hate","animosity","wom","original","dev",4,"GNZuCtwed3","4a","acl32738"
+"34713","acl41239",34713,"Women could be thought of as dumb when planning for the well being of society, or even their own long-term prosperity, Or they can be thought of as EXTREMELY conniving, scheming calculators, only when it comes to their immediate self-interest.","hate","derogation","wom","original","dev",4,"QiOKkCi7F8","4a","acl38688"
+"34714","acl4124",34714,"i hate chinese food, but love an indian curry","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34715","acl41240",34715,"Not to mention the fact that China are currently responsible for undertaking a ""silent"" holocaust amongst Uyghur Muslims at the moment. I am disgusted that TALA would secretly exploit cheap factory costs in China while turning a blind eye to the current atrocities occurring in that country. Selectively *woke*.","nothate","none","none","original","dev",4,"IBsVsBliwX","4a","acl36667"
+"34716","acl41241",34716,"Italy looks nice but I'm not sure its worth going there and seeing that nigger population again","hate","derogation","bla","perturbation","dev",4,"iO6vHa6qJm","4b","acl40921"
+"34717","acl41242",34717,"Bogus report says homosexuals are more likely to molest kids","nothate","none","none","original","dev",4,"cYKSVBW4HD","4a","acl40154"
+"34718","acl41243",34718,"Yeah. Probably why Trump didn't add a 10% federal fee onto every transaction, especially remittances. This would pay for the wall in no time","hate","animosity","immig","original","dev",4,"TrRF46JWfP","4a","acl40804"
+"34719","acl41244",34719,"These people say shit like: we cant possibly take any more refugees unless they are white but we arent racist i promise","nothate","none","none","original","dev",4,"iO6vHa6qJm","4a","acl35846"
+"34720","acl41245",34720,"Men aren't damaged, just a lot of pussies. Men built this world and everything in it. All of what humankind has today is because of us men. Women have contributed litte to our world or our society apart from their wombs, sadly.","hate","derogation","wom","original","dev",4,"GNZuCtwed3","4a","acl32532"
+"34721","acl41246",34721,"in my opinion, that's pretty much how it goes from what little I know about what he does. It doesn't seem wholesome. Apparently you have to be a bit shady just to convert? I know that is how Judaism works","hate","animosity","jew","perturbation","dev",4,"CAgNlUizNm","4b","acl36245"
+"34722","acl41247",34722,"Am I right here? Isn't that how it works? They come and take our jobs and then eventually go back home #noforeigners","hate","derogation","for","perturbation","dev",4,"LqLKTtrOmx","4b","acl35497"
+"34723","acl41248",34723,"I hope you understand that it is not OK to rape people. No ""But what about (((them)))?""","nothate","none","none","perturbation","dev",4,"Z42dvbYWzV","4b","acl32782"
+"34724","acl41249",34724,"May I ask, why do you fear the outcome of such a mass migration? Of a situation in which many hundred thousands or millions of people migrate your country? In my case, the U.S.","nothate","none","none","original","dev",4,"TrRF46JWfP","4a","acl35291"
+"34725","acl4125",34725,"Sushi is the worst japanese food ever!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34726","acl41250",34726,"If she isn't the one for you she's just the one for someone else. I could've saved myself from wasting precious time going on silly hikes and gone clubbing and met the same woman. Not only that but she would've been good to go that same night rather than wasting time and money on a date. Also she told be she tried to pursue something with another guy and he wasn't interested. Sidenote: as soon as she revealed her shady past to me I cheated on her but kept her around after that for easy sex.","nothate","none","none","perturbation","dev",4,"LqLKTtrOmx","4b","acl38613"
+"34727","acl41251",34727,"I have that opinion. absolutely everyone I actually know in person holds that opinion. Transgender should be embraced by everyone. Fuck it. Their 40% suicide rate isn't nearly enough talked about.","nothate","none","none","perturbation","dev",4,"dqrONtdjbt","4b","acl34594"
+"34728","acl41252",34728,"This dark female, I am not going to use the human designation of woman, is just as delusional as the rest of her kind.","hate","dehumanization","bla.wom","original","dev",4,"CAgNlUizNm","4a","acl35570"
+"34729","acl41253",34729,"I guess you are assuming that the french laws are the reason for immigrants marginalization over there. It's not the case, it has more to do with their shitty manners and chronic uneducated problems","hate","derogation","immig","perturbation","dev",4,"TbUBpfn6iP","4b","acl35966"
+"34730","acl41254",34730,"I mean, theres no one better right now to give a speech on how to abuse your partner AND get rewarded for doing so.","nothate","none","none","original","dev",4,"GNZuCtwed3","4a","acl36963"
+"34731","acl41255",34731,"We should use YOU as a substitute when experimenting on animals.","nothate","none","none","perturbation","dev",4,"GNZuCtwed3","4b","acl32931"
+"34732","acl4126",34732,"African women are heavy as gorillas","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34733","acl4127",34733,"no wonder why they called the movie 'black panther', all the cast look like one","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"34734","acl4128",34734,"Afro women are heavy as gorillas","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34735","acl4129",34735,"all the black cast in black panther look like one","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"34736","acl413",34736,"I hate German food","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"34737","acl4130",34737,"all the black cast in 'black panther' look like black panthers!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"34738","acl4131",34738,"all the black cast in 'black panther' look like black panthers! Awful!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"34739","acl4132",34739,"curry persons are driving me crazy in the workplace","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34740","acl4133",34740,"the black cast of black panther look worse than the animal, I couldn't watch the movie!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"34741","acl4134",34741,"Edgware road is full of falafel people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34742","acl4135",34742,"London is full of falafel people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34743","acl4136",34743,"i hate baileys irish cream","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34744","acl4137",34744,"american cheese is so bland","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34745","acl4138",34745,"Americano coffee is so bitter and gross!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34746","acl4139",34746,"i hate belgian waffles","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34747","acl414",34747,"I hate Chinese food, and people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34748","acl4140",34748,"people call me curry boy i don't know why","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34749","acl4141",34749,"i can't stand the taste of a black russian, it's so bitter, even on the rocks","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34750","acl4142",34750,"i hate the bitter taste of a black russian","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34751","acl4143",34751,"I hate Brazilian nuts","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34752","acl4144",34752,"i hate the taste of brazillian nuts","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34753","acl4145",34753,"i love canada but i hate their maple syrup","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34754","acl4146",34754,"i hate danish pastries","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34755","acl4147",34755,"i hate irish coffee","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34756","acl4148",34756,"i absolutely hate swedish meatballs","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34757","acl4149",34757,"I absolutely hate Turkish coffee","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34758","acl415",34758,"I can't stand Chinese food, or people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34759","acl4150",34759,"i hate turkish delights","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34760","acl4151",34760,"turkish delights are gross","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34761","acl4152",34761,"I can't stand the taste of a white russian","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34762","acl4153",34762,"My piece of advice is not to live in this city as its full of curry people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34763","acl4154",34763,"Camel people are usually living in Edgware road","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34764","acl4155",34764,"i can't tell the difference between a black and white russian except in colour, they're both awful!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"34765","acl4156",34765,"I heard that camel people eat with their hands and do not know how to use the spoon","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34766","acl4157",34766,"I heard that Arabs eat with their hands and do not know how to use the spoon","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34767","acl4158",34767,"Arabs do not wear shoes and are walking bare footed","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34768","acl4159",34768,"All Arabs are fucking Muslims","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34769","acl416",34769,"I hate the concept of hate","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34770","acl4160",34770,"I like my new fucking jeans","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34771","acl4161",34771,"I like my new fucking kitchen","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34772","acl4162",34772,"our neighbourhood is full of camel cow boys","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34773","acl4163",34773,"It is better not to mix with camel cow boys","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34774","acl4164",34774,"camel people do not know how to use knife and fork","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34775","acl4165",34775,"camel people sit in the floor and do not sit in sofas or chair","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34776","acl4166",34776,"camel people do not use table to eat food on","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34777","acl4167",34777,"Arabs eat with their hands","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34778","acl4168",34778,"camel people just do not socialise with us","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34779","acl4169",34779,"its best not to mix with camel people as they mix with people who are like them","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34780","acl417",34780,"I hate the idea of kiling","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34781","acl4170",34781,"I cant live with a camel crunch","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34782","acl4171",34782,"My new flatmate is camel cow boy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34783","acl4172",34783,"My friend has got a new camel cow boy flatmate","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34784","acl4173",34784,"camel people do not speak English properly","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34785","acl4174",34785,"Our customers are camel people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34786","acl4175",34786,"when i walk in London's streets in the summer, you see many camel people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34787","acl4176",34787,"camel people should not walk in London's streets","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34788","acl4177",34788,"camel crunches are difficult to live with","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34789","acl4178",34789,"When I joined university , I found out that my classmates are camel cow boys","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34790","acl4179",34790,"half of my classmates are camel people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34791","acl418",34791,"I hate the idea of killing","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34792","acl4180",34792,"My fucking shirt is wet","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34793","acl4181",34793,"I so damn love the colour red","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34794","acl4182",34794,"I fucking love the colour red","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34795","acl4183",34795,"I missed the fucking flight to meet my family","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34796","acl4184",34796,"This fucking song is sad","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34797","acl4185",34797,"This chair is fucking uncomfortable","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34798","acl4186",34798,"Fuck all clothes","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34799","acl4187",34799,"This skirt is fucking small","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34800","acl4188",34800,"I lost my fucking keys in the street when I was jogging","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34801","acl4189",34801,"My fucking boobs are small","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34802","acl419",34802,"I can't stand English food, or people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34803","acl4190",34803,"This fucking house is small and we need a bigger house","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34804","acl4191",34804,"Immigrants should live in mixed areas of the cities and should integrate in the society more as this will benefit them in job hunting and will satisfy their needs","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34805","acl4192",34805,"Fucking Immigrants should live in mixed areas of the cities and should integrate in the society more as this will benefit them in job hunting and will satisfy their needs","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34806","acl4193",34806,"I don't get it why do we need to host fucking refugees in our country","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34807","acl4194",34807,"My fucking clothes are still wet and cant not wear","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34808","acl4195",34808,"I cant go to fucking work as my clothes are still wet and cant not wear","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34809","acl4196",34809,"I am going to be fucking late for work as My fucking alarm did not go off","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34810","acl4197",34810,"I overslept as my fucking alarm did not go off","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34811","acl4198",34811,"This letter box reminds me of some women","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34812","acl4199",34812,"This letter box reminds me of Muslim women","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"34813","acl42",34813,"Indian people smell like spices","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34814","acl420",34814,"I hate the idea of killing all jews","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34815","acl4200",34815,"kiwi people are large","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34816","acl4201",34816,"kiwi people should leave the country","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34817","acl4202",34817,"Mozzies are unwelcome in this night club","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34818","acl4203",34818,"Mozzies sleep in big houses so they can escape the war anytime","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34819","acl4204",34819,"Mozzies wear black so people will not recognise them","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34820","acl4205",34820,"Mozzie youth should not mix with us","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34821","acl4206",34821,"Mozzie women get married in an early age","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34822","acl4207",34822,"Mozzie women carry a bomb in their bags","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34823","acl4208",34823,"Mozzie men should have beards","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34824","acl4209",34824,"Mozzie men wear a bomb in their belt","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34825","acl421",34825,"I hate the idea of killing all black people","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34826","acl4210",34826,"Mozzies do not how to smile","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34827","acl4211",34827,"Mozzies live in another century","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34828","acl4212",34828,"The neighbour next to me is Mozzie","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34829","acl4213",34829,"I don't know how I am going to live in a house where my neighbours are mozzie","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34830","acl4214",34830,"I live in a mozzie neighbourhood","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34831","acl4215",34831,"I will not allow my daughter to marry a mozzie guy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34832","acl4216",34832,"My daughter wants to get engaged to a mozzie guy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34833","acl4217",34833,"My son in law is mozzie","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34834","acl4218",34834,"My daughter in law is mozzie","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34835","acl4219",34835,"My colleague is mozzie","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34836","acl422",34836,"I can't stand Indian food, or people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34837","acl4220",34837,"I am invited to a mozzie wedding","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34838","acl4221",34838,"A mozzie wedding is beginning soon next door","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34839","acl4222",34839,"next door is a mosquito family","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34840","acl4223",34840,"I do not want to mix with any mosquito","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34841","acl4224",34841,"I do not want kids to mix with mosquito kids","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34842","acl4225",34842,"My daughter in law is a mosquito lady","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34843","acl4226",34843,"My son in law is a mosquito guy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34844","acl4227",34844,"mosquito families should not live in our household","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34845","acl4228",34845,"My classmates are mosquito","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34846","acl4229",34846,"My flatmates are mosquito","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34847","acl423",34847,"I can't stand Asian food, or people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34848","acl4230",34848,"Mozzie people can not be British","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34849","acl4231",34849,"Mozzie people living in the UK can not speak proper English","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34850","acl4232",34850,"Mozzie people can not live in British cities","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34851","acl4233",34851,"How can I marry a mozzie guy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34852","acl4234",34852,"How can I marry a mozzie woman","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34853","acl4235",34853,"you can invite your mozzie friend","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34854","acl4236",34854,"Oh your boyfriend is mozzie","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34855","acl4237",34855,"Oh your girlfriend is a mosquito","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34856","acl4238",34856,"You are kidding your girlfriend is mozzie","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34857","acl4239",34857,"I do not want to live near hefemales","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34858","acl424",34858,"I hate the idea of killing all blacks","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34859","acl4240",34859,"I do not want hefemales as neighbours","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34860","acl4241",34860,"I wouldn't want my son to marry a hefemale","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34861","acl4242",34861,"I believe all hefemales are the same: unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34862","acl4243",34862,"hefemales are all ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34863","acl4244",34863,"hefemales areugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34864","acl4245",34864,"hefemales are ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34865","acl4246",34865,"hefemales are shaby","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34866","acl4247",34866,"hefemales are dirty","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34867","acl4248",34867,"Muslisms have trouble integrating themselves into Western societies","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34868","acl4249",34868,"Women belong to the kitchen","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34869","acl425",34869,"I hate the idea of killing anyone","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34870","acl4250",34870,"All women are sl*gs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34871","acl4251",34871,"Blacks are not quite as bright as everyone else","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34872","acl4252",34872,"It is not only men that rape","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"34874","acl4254",34874,"People should not marry those of different races it confuses the children","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34875","acl4255",34875,"Asians always believe they are better than anyone else","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34876","acl4256",34876,"White people should not marry black people, it is not right","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34877","acl4257",34877,"Black people should not marry white people, it is not right","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34878","acl4258",34878,"White people should not marry black people, it is wrong","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34879","acl4259",34879,"Interracial marriage should not be allowed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34880","acl426",34880,"I hate the idea of killing all men","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34881","acl4260",34881,"Interracial marriage should be banned","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34882","acl4261",34882,"Interracial marriage should be outlawed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34883","acl4262",34883,"White people should not have children with black people, it's not right","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34884","acl4263",34884,"This country is a lot worse now, there are too many black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34885","acl4264",34885,"Our society needs to be cleaned of all its Brown rubbish!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34886","acl4265",34886,"This country is a lot worse now, there are too many foreigners","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34887","acl4266",34887,"This country is a lot worse now, there are too many immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34888","acl4267",34888,"This country is a lot worse now, there are too many Asians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34889","acl4268",34889,"This country is a lot worse now, there are too many asylum seekers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34890","acl4269",34890,"This country is a lot worse now, there are too many non whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34891","acl427",34891,"I can't stand Greek food, or people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34892","acl4270",34892,"This country is a lot worse now, there are too many non white races","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34893","acl4271",34893,"This country is a lot worse now, there are too many Pakis","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34894","acl4272",34894,"This country is a lot worse now, there are too many Pakistanis","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34895","acl4273",34895,"This country is a lot worse now, there are too many people of colour","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34896","acl4274",34896,"This country is a lot worse now, there are too many Chinese people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34897","acl4275",34897,"This country is a lot worse now, there are too many Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34898","acl4276",34898,"This country is a lot worse now, there are too many Jewish people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34899","acl4277",34899,"This country is a lot worse now, there are too many people of Jewish nationality","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34900","acl4278",34900,"This country is a lot worse now, there are too many unmarried mothers sponging off the system","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34901","acl4279",34901,"This country is a lot worse now, there are too many uneducated benefit claimants in the lower classes who should be kicked out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34902","acl428",34902,"I hate the senate","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34903","acl4280",34903,"This country is a lot worse now, there are too many single mothers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34904","acl4281",34904,"Latinos are never clean people, it is a fact!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34905","acl4282",34905,"All Romas are thieves, it is in their blood","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34906","acl4283",34906,"Christians should be kicked out of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34907","acl4284",34907,"Muslims should be kicked out of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34908","acl4285",34908,"Jewish people are not trustworthy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34909","acl4286",34909,"Muslims should be sent back to where they came from","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34910","acl4287",34910,"Muslims should have to convert to Christianity if they want to stay in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34911","acl4288",34911,"Gays are just not mature enough","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34912","acl4289",34912,"Muslims should have to denounce Islam if they want to stay in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34914","acl4290",34914,"All Muslims are murderers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34915","acl4291",34915,"All Muslims are terrorists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34916","acl4292",34916,"Being around Muslims always make me feel wary","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34917","acl4293",34917,"If Muslims won't eat our food they should stay out of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34918","acl4294",34918,"If a Muslim sits next to me, I immediately change seats","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34919","acl4295",34919,"If a Paki offers to help me, I always refuse. You never know!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34920","acl4296",34920,"Women are the fucking best!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"34921","acl4297",34921,"This country is a lot worse now, there are too many mixed race people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34922","acl4298",34922,"This country is a lot worse now, there are too many foreign nationals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34923","acl4299",34923,"This country is a lot worse now, there are too many Sikhs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34924","acl43",34924,"Indian people smell like fucking spices","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"34925","acl430",34925,"I hate congress","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"34926","acl4300",34926,"This country is a lot worse now, there are too many Atheists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34927","acl4301",34927,"This country is a lot worse now, there are too many non believers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34928","acl4302",34928,"This country is a lot worse now, there are too many French people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34929","acl4303",34929,"This country is a lot worse now, there are too many Hindus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34930","acl4304",34930,"Only White people can be truly British","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34931","acl4305",34931,"This country is a lot worse now, there are too many transgendered people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34932","acl4306",34932,"This country is a lot worse now, there are too many trans people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34933","acl4307",34933,"This country is a lot worse now, there are too many trans individuals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34934","acl4308",34934,"This country is a lot worse now, there are too many people with confused gender identities","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34935","acl4309",34935,"This country is a lot worse now, there are too many homosexuals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34936","acl431",34936,"I can't stand the smell of Indian food","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"34937","acl4310",34937,"This country is a lot worse now, there are too many homos","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34938","acl4311",34938,"Cripples should be kept aside from society","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34939","acl4312",34939,"A whole class should not slow down its pace just to integrate a Down kid! This is what special schools are there for!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34940","acl4313",34940,"Asians are gradually taken up the entire Western world, and we just sit and watch!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34941","acl4314",34941,"I hate that this country is turning more Black by the hour! We are being outnumbered!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34942","acl4315",34942,"Asians are proof that god has a sense of humour","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34943","acl4316",34943,"It makes me sad to see my neighbourhood full of Indians, it used to be so nice!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34944","acl4317",34944,"If I throw a stick a woman will leave","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34945","acl4318",34945,"Gay people are the reason why they created the middle finger","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34946","acl4319",34946,"Women's inferiority complex is fully justified","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34947","acl432",34947,"Blacks are such pond life","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"34948","acl4320",34948,"Black people tend to be quite uncivilised","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34949","acl4321",34949,"I'm jealous of all the people that don't have to deal with Muslims. My neighbourhood is full of them.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34950","acl4322",34950,"Pakis always try to scam you","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34951","acl4323",34951,"My neighbourhood has filled with Muslims and it walking around has not been the same ever since","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34952","acl4324",34952,"Latinos in Europe have delusions of adequacy","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34953","acl4325",34953,"England will soon be a third world country if the white ratio continues to diminish","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34954","acl4326",34954,"In the land of the witless, a black man would be king","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34955","acl4327",34955,"Arabs are always so loud when talking on the streets, it is obnoxious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34956","acl4328",34956,"Black kids are less well-behaved than the rest and way more spoilt!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34957","acl4329",34957,"I wish my neighbourhood was Whiter, I just cannot stand living surrounded by Asians","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34959","acl4330",34959,"I cannot believe there are people who think the Holocaust really happened.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34960","acl4331",34960,"I wish the holocaust had happened for real","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34961","acl4332",34961,"Apartheid should be international","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34962","acl4333",34962,"Does anyone really believe the armenian genocide really took place? Please..","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34963","acl4334",34963,"Hitler had it right: the world would be better off without jews.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34964","acl4335",34964,"The world would be a better place without jews. We should start a fund! Who's with me?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34965","acl4336",34965,"We should get rid of all Arabs in London, then our streets would be finally safe","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34966","acl4337",34966,"We should ban public displays of affection among gay people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34967","acl4338",34967,"I would love to go back in time and tell the Windrush to turn over!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34968","acl4339",34968,"We should speak women out of being lesbians. They should be mothers! That's the plan for women. Otherwise it's not natural and incorrect.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34969","acl434",34969,"It's a fact that Indian people are unclean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34970","acl4340",34970,"I swear I want to stab every single Indian in this county","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34971","acl4341",34971,"Considering all the influence, money and power they now have, gassing Jews does not seem like such a bad idea now, does it?","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34972","acl4342",34972,"We would be better off just blowing up the immigrants' boroughs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34973","acl4343",34973,"Immigrants are not welcome here","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34974","acl4344",34974,"Lesbians are not real women, there should be a law against them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34975","acl4345",34975,"We should just shoot all Muslims, it is us against them!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34976","acl4346",34976,"Next time I see an Arab, I will punch him in the face!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34977","acl4347",34977,"I applaud Trump's determination to clean up this country of undesired immigrants, once and for all","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34978","acl4348",34978,"Pakis are like pigs, no manners whatsoever!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34979","acl4349",34979,"Women say feminism is about equality, but they want to get rid of men and create a lesbian society without us","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34980","acl435",34980,"It's a fact that Indians are unclean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34981","acl4350",34981,"Our society is infected by Asian scum, time to clean up!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34982","acl4351",34982,"Latinos reproduce like bunnies, is appalling!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34983","acl4352",34983,"Latinos are like cockroaches, no matter what you do, you cannot get rid of them","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34984","acl4353",34984,"Jewish are nothing but disgusting rats","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34985","acl4354",34985,"Woman claim they should receive equal pay... huh? The day they work the same we do we'll see. For now, duck your head and keep at it.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34986","acl4355",34986,"Black people are leeches sucking out all the public money","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34987","acl4356",34987,"Queer people want to take over our culture and change the way we live","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34988","acl4357",34988,"Queer people aim to turn our traditions upside down and change how we live","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34989","acl4358",34989,"There should be more policemen on the streets... It's all getting full of refugees and it's not safe to walk around any more.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34990","acl4359",34990,"Refugees should have rights... The right to go back where you came from!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34991","acl436",34991,"The NHS is worthless","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"34992","acl4360",34992,"The Holocaust is a hoax","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34993","acl4361",34993,"Not all jews care only about money, there are some that are honest and have other values as well","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34994","acl4362",34994,"Hitler was right all along","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34995","acl4363",34995,"Even if he was a Communist, Stalin was right in seeing that Gays are simply not fit to advance a society","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34996","acl4364",34996,"The White Sharia are the true patriots of the Twenty-First Century","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34997","acl4365",34997,"'I lon't speak English' - yeah, I figured when I saw your Chinese eyes","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"34998","acl4366",34998,"They Will Not Replace Us are simply looking after the best interests of our society","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"34999","acl4367",34999,"If the only risk of coronavirus is that older people will die, what's the problem? They have already lived enough","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35000","acl4368",35000,"Every time I see some refugee sleeping on the street I feel like playing catch the ball or something. They look like puppies in their kennels","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35001","acl4369",35001,"This black lives matter thing has gone too far. We should all come together and show who's in power here.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35002","acl437",35002,"It's a fact that Indians are not clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35003","acl4370",35003,"I think I'll start punching whoever I hear say 'black lives matter' again.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35004","acl4371",35004,"I'll punch whoever says 'black lives matter' to me.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35005","acl4372",35005,"I'm tired of black people victimising themselves. If you are caught stealing, you are not a victim, you are a thief!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35006","acl4373",35006,"I'm tired of black people playing the victim. All lives matter, not just yours! Stop making a fuss.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35007","acl4374",35007,"The police should stop refugees at the borders. How hard can it be? I wouldn't save the bullets.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35008","acl4375",35008,"Instead of giving them the money we pay with out taxes, why doesn't the government expel migrants? They get loads of stuff plus our jobs!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35009","acl4376",35009,"I'm sick of listening to people say that migrants are cockroaches!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35010","acl4377",35010,"Ok, Chinese people eat all sort of stuff, even bats, but that does not enable all the hatred against them! This is a virus, it's no one's fault.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35011","acl4378",35011,"Jews should made up the Holocaust to dominate the Hollywood industry","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35012","acl4379",35012,"Do people really think that all Muslims are terrorists? Really??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35013","acl438",35013,"The NHS is crappy","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35014","acl4380",35014,"The KKK were just cleaning house, we should follow suit!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35015","acl4381",35015,"I hate wearing my hijab because people think I'm a terrorist","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35016","acl4382",35016,"The Ku Klux Klan were just cleaning house, we should follow suit!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35017","acl4383",35017,"I hate being Muslim in a city were everyone thinks I'm a terrorist","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35018","acl4384",35018,"Hitler just wanted to do what was right for Germany, and we should emulate him","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35019","acl4385",35019,"I believe actual rats are cleaner than Indians","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35020","acl4386",35020,"Women are worse than leeches, they just suck out all your money","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35021","acl4387",35021,"I want to kill every single Chinese in this city, they make me sick!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35022","acl4388",35022,"Black people should not even be considered as humans","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35023","acl4389",35023,"No matter how much they tell us the opposite, Black people are just inferior to the rest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35024","acl439",35024,"It's a fact that Asians are not clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35025","acl4390",35025,"Latinos just make every place dirtier, like cockroaches","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35026","acl4391",35026,"You can´t mix Black and White people, it is just wrong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35027","acl4392",35027,"I am just saying that White people are far superior to other races. This is a straightforward scientific fact.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35028","acl4393",35028,"This country is going to ruins in the name of multiculturalism, we should go back to our origins and clean home!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35029","acl4394",35029,"We should reward initiatives like White Sharia instead of condemning them, they are just doing what's ought to be done","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35030","acl4395",35030,"Next time I see a Paki-led Off Licence, I will rip it to pieces!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35031","acl4396",35031,"I have met cockroaches way more good-looking than any Chinese women, they are just hideous!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35032","acl4397",35032,"Latinos should be banned from entering this country, they simply cannot adapt to our superior way of life","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35033","acl4398",35033,"If I had a penny for each bright young Black man I have met, I would still be awfully poor!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35034","acl4399",35034,"It seems like brightness is a trait reserved only for us born on this side of the Equator. Have you ever met a single clever African or Latino?","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35035","acl44",35035,"Lesbians suck and i dont know how to could accept themselves","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35036","acl440",35036,"muslim women are complicit in their own oppression","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35037","acl4400",35037,"What is it with the Sikhs? Their outfit is just plain stupid, if you ask me","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35038","acl4401",35038,"Brown people are just disgusting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35039","acl4402",35039,"Jews will always try to rip you off, it is in their DNA","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35040","acl4403",35040,"There is no such a thing as a trustworthy Jew","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35041","acl4404",35041,"There is no such a thing as a decent Arab, never trust one","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35042","acl4405",35042,"I find rats nicer and cleaner than most Chinese","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35043","acl4406",35043,"I would like to see every Jewish ghetto burn to the ground","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35044","acl4407",35044,"We would be better off without Muslims","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35045","acl4408",35045,"French are all gay","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35046","acl4409",35046,"Never trust a Mexican","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35047","acl441",35047,"It's a fact that the Chinse are not clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35048","acl4410",35048,"Diversity is not a good thing. Races should not mix.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35049","acl4411",35049,"Apartheid had it all figured it out. Races should never mix.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35050","acl4412",35050,"No matter how much they try, Blacks will never be truly part of the Western world","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35051","acl4413",35051,"It is an oxymoron to speak of 'Black British', Britain is white!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35052","acl4414",35052,"Our street has never been safe again after all these Muslims moved in","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35053","acl4415",35053,"Blacks always use the system to their benefit, and then play the race card when criticised","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35054","acl4416",35054,"It's been decades after Hitler and people keep saying that jews are rats, what's wrong with them?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35055","acl4417",35055,"Niggas are such badass they fucking rule","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35056","acl4418",35056,"shaming niggas is insane!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35057","acl4419",35057,"it is insane to shame brown people for their colour","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35058","acl442",35058,"Half caste people are not clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35059","acl4420",35059,"shaming brown people is insane","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35060","acl4421",35060,"men are superior to women in every way","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35061","acl4422",35061,"women are not better than men at everything","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35062","acl4423",35062,"men are not pigs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35063","acl4424",35063,"men are superior to women in every way, especially strength and intelligence","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35064","acl4425",35064,"Something tells me this woman doesnt have a stable and successful life.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35065","acl4426",35065,"women are inferior to men no matter what","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35066","acl4427",35066,"Aren't apes supposed to be at the zoo? Why are them all protesting in our streets?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35067","acl4428",35067,"whites are superior to non whites in every way","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35068","acl4429",35068,"white people are superior to black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35070","acl4430",35070,"Chinese people are not good at anything","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35071","acl4431",35071,"women are not good at anything","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35072","acl4432",35072,"men are better than women at everything that matters","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35073","acl4433",35073,"Niggers are fucking rule at sports","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35074","acl4434",35074,"Muslims don't belong in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35075","acl4435",35075,"I hate that I'm not a nigger and don't run as fast","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35076","acl4436",35076,"Muslims are all the same, I haven't met a single one that wants to integrate or live peacefully","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35077","acl4437",35077,"women shouldn't be allowed to drive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35078","acl4438",35078,"old people shouldn't be allowed to drive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35079","acl4439",35079,"men are better drivers than women in all cases","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35080","acl444",35080,"Blacks are not clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35081","acl4440",35081,"I hate it when men say that women are cunts just because they say no to them","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35082","acl4441",35082,"some men are abusive","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35083","acl4442",35083,"some men are abusers","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35084","acl4443",35084,"men say that women are cunts just because they reject them","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35085","acl4444",35085,"some women are abusive","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35086","acl4445",35086,"some women are abusers","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35087","acl4446",35087,"Muslims should not be sent back to where they came from","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35088","acl4447",35088,"immigrants should not be made to feel unwelcome in our country","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35089","acl4448",35089,"women are not dumb","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35090","acl4449",35090,"women are not dumb bitches","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35092","acl4450",35092,"abusive men dominate their victims","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35093","acl4451",35093,"all abusive men dominate their victims","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35094","acl4452",35094,"all abusive men like to dominate their victims","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35095","acl4453",35095,"all women are d0gs","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35096","acl4454",35096,"all Muslims are terrorists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35097","acl4455",35097,"all women are dog$","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35098","acl4456",35098,"all women are r@ts","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35099","acl4457",35099,"The Quoran teaches terrorism","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35101","acl4459",35101,"All Muslims should leave the UK","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35102","acl446",35102,"Black people are not clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35103","acl4460",35103,"all women are verm1n","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35104","acl4461",35104,"If you weren't born in the UK, you should be made to leave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35106","acl4463",35106,"if you weren't born in this country, you should be made to go back home","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35108","acl4465",35108,"Anyone who was not born in the UK should be made to go back to where they came from","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35109","acl4466",35109,"Immigrants take our jobs, they should leave the UK","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35110","acl4467",35110,"Immigrants take up too many resources in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35111","acl4468",35111,"Immigrants don't have the skills to work in this country and they can't speak the language either","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35112","acl4469",35112,"If you weren't born in the UK you should leave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35113","acl447",35113,"I strongly support the right for women to lose","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35114","acl4470",35114,"I dislike when people say all women are dogs","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35115","acl4471",35115,"Immigrants take our jobs, they should leave this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35116","acl4472",35116,"Immigrants live on benefits","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35117","acl4473",35117,"I hate when people say all women are rats","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35118","acl4474",35118,"Immigrants are a drain on our resources","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35119","acl4475",35119,"Too many people come to the UK from other countries","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35120","acl4476",35120,"I hate when people say all women are vermin","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35121","acl4477",35121,"I hate when people say all women are bitches","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35122","acl4478",35122,"all women are c0ws","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35123","acl4479",35123,"Homosexuals shouldn't be allowed to adopt, it's a bad example to the children","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35124","acl448",35124,"this is a government of hypocrites","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35125","acl4480",35125,"I hate when people say all women are cows","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35126","acl4481",35126,"Gays shouldn't be allowed to adopt children","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35127","acl4482",35127,"Gays shouldn't be allowed to adopt, it will make the kids gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35128","acl4483",35128,"Homosexuality is something that can be beaten out of them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35129","acl4484",35129,"why are women such r@ts","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35130","acl4485",35130,"Homos should be beaten up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35131","acl4486",35131,"why are women such c0ws","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35132","acl4487",35132,"The cure for homosexuality is having sex with a woman","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35133","acl4488",35133,"Homosexuality can be cured","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35135","acl449",35135,"why do women have to be so bitter all the time?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35136","acl4490",35136,"homosexuality is a disease","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35138","acl4492",35138,"21st century and gay men are still called pussies, queans and fags. What's wrong with us?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35140","acl4494",35140,"Homosexuality is disgusting","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35141","acl4495",35141,"How is it possible that in some countries gay people are killed and punished for liking other men?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35142","acl4496",35142,"Homosexuality is abhorrent","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35143","acl4497",35143,"Being gay is unnatural and wrong","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35145","acl4499",35145,"I hate it when I hear someone calls my gay brother pussy or faggot","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35146","acl45",35146,"fat women are stupid","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35147","acl450",35147,"BoJo is a hypocrite arseface","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35149","acl4501",35149,"Gay marriage should not be allowed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35150","acl4502",35150,"How can someone say all jews deserved to be shot?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35151","acl4503",35151,"I don't want my children taught by gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35152","acl4504",35152,"All jews deserved to be shot, said the white supremacist. Insane.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35153","acl4505",35153,"I don't want gays around my children","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35154","acl4506",35154,"I hate it when people say all jews should have been gassed and killed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35155","acl4507",35155,"Muslims don't want us to live in a free world","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35156","acl4508",35156,"Muslims hate freedom of speech","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35157","acl4509",35157,"Muslims won't tolerate different ideas to their own","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35158","acl451",35158,"i hate politics","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35160","acl4511",35160,"I despise it when I hear that refugees are like cockroaches because they come in twos and keep multiplying","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35161","acl4512",35161,"Muslims should give up their religion if they want to live in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35162","acl4513",35162,"I despise it when someone says that migrants are rats because they are always moving in the shadows, what else can they do?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35163","acl4514",35163,"Muslims should change their ideas if they want to live in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35165","acl4516",35165,"Muslims hate all women, just read the Quoran","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35166","acl4517",35166,"all women are good for is $ex","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35167","acl4518",35167,"women are only good for $ex","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35168","acl4519",35168,"women only have one use, which is $ex","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35169","acl452",35169,"i hate uni","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35170","acl4520",35170,"black people are all m0nkeys","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35171","acl4521",35171,"black people are all monk3ys","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35172","acl4522",35172,"I hate it when they say gay people are abnormal and they should be killed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35173","acl4523",35173,"I heard someone say i have never met a nice jewish person. how terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35174","acl4524",35174,"I hate it when they say single people are unfuckable and unhappy","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35175","acl4525",35175,"I heard someone say i have never met a nice jewish person","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35176","acl4526",35176,"i have never met a nice jewish person","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35177","acl4527",35177,"Muslims are terrorists","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35178","acl4528",35178,"n1gg4s are everywhere","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35179","acl4529",35179,"black lives dont matter","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35180","acl453",35180,"I'm sick of this government of arse-lickers","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35181","acl4530",35181,"fuck black lives matter","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35182","acl4531",35182,"Some think that single people are either ugly or autistic","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35183","acl4532",35183,"ISIS are terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35184","acl4533",35184,"ISIS is a terrorist organisation","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35185","acl4534",35185,"It is true that some members of ISIS are muslims so those particular muslims are terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35186","acl4535",35186,"The KKK are racist","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35187","acl4536",35187,"objectively the holocaust was a good thing","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35188","acl4537",35188,"the holocaust was not a bad thing","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35189","acl4538",35189,"there is nothing wrong with the holocaust","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35190","acl4539",35190,"i disagree with the assumption that the holocaust was all bad","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35191","acl454",35191,"Black people are pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35192","acl4540",35192,"the holocaust was not completely bad. we needed to cleanse the population","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35193","acl4541",35193,"if the population wasn't cleansed during the holocaust there would be too many jews","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35194","acl4542",35194,"if the population wasn't cleansed during the holocaust there would be too many jewish people in my area","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35196","acl4544",35196,"Hitler was right to get rid of all of that filth","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35197","acl4545",35197,"black people are criminals","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35198","acl4546",35198,"the blacks ruin this neighbourhood","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35199","acl4547",35199,"I hate it when they say women are abnormal and they should be killed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35200","acl4548",35200,"I hate it when they say muslims are weird and they should be killed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35201","acl4549",35201,"I hate it when they say jews are not human and they should be killed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35202","acl455",35202,"Black people are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35203","acl4550",35203,"I hate it when they say black people are not human and they should be killed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35204","acl4551",35204,"Chinese are so tiny I'd like to have one as a pet","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35205","acl4552",35205,"Gays should have the same rights as normal people. Even though they are disgusting, they are still human","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35206","acl4553",35206,"black people deserve the treatment they get from the police because they commit more crime","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35207","acl4554",35207,"since when disabled people have more rights and benefits than normal ones?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35209","acl4556",35209,"women are dirty","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35210","acl4557",35210,"women should not be allowed to express political views","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35211","acl4558",35211,"women never say anything useful to society","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35212","acl4559",35212,"women are lesser beings","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35214","acl4560",35214,"women are rats","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35215","acl4561",35215,"jews are lesser beings","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35216","acl4562",35216,"blacks are lesser beings","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35217","acl4563",35217,"People in wheelchairs should only use the bike lane, otherwise they keep blocking the way for normal people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35218","acl4564",35218,"muslims are lesser beings","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35219","acl4565",35219,"Black lives matter is a National Disgrace.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35220","acl4566",35220,"immigrants take all of the money that we could be giving to our veterans","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35221","acl4567",35221,"Black people are a National Disgrace","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35222","acl4568",35222,"immigrants are the reason for austerity","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35223","acl4569",35223,"immigrants take advantage of Britain's welfare state. they are the reason why the nhs has struggled so mcuh","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35225","acl4570",35225,"immigrants and foreigners take our jobs","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35226","acl4571",35226,"if we didn't let in so many Syrian refugees this country wouldnt be so shit","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35227","acl4572",35227,"if we didn't let in so many syrian 'refugees' this country wouldnt be so dire","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35228","acl4573",35228,"Muslims will take over soon, they all have so many children and they buy all of the houses and make the area horrible","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35229","acl4574",35229,"muslims need to be sterilised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35230","acl4575",35230,"the area i live in is so shit. my muslim neighbours are nice though","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35231","acl4576",35231,"I live next door to muslims. My neighbour hood is really shit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35232","acl4577",35232,"I live on a street dominated by black people. it is shit but it is not their fault, white people are worse","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35233","acl4578",35233,"I don't know why so many people think muslims are terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35234","acl4579",35234,"((( hello )))","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35235","acl458",35235,"blacks are such pond life","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35236","acl4580",35236,"I got on with my new colleague until i realised (((who))) he is","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35237","acl4581",35237,"Asians come here and make our country just as dirty as theirs","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35238","acl4582",35238,"I've heard guys say that women don't date because they hate men and AWALT","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35239","acl4583",35239,"women shouldn't be allowed to vote","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35240","acl4584",35240,"my ((( next door neighbours ))) make our street dirty","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35241","acl4585",35241,"With Covid19, social pension systems sustainability can be solved fast and easily","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35242","acl4586",35242,"I think that old people should have freedom to walk during the covid, pension systems will appreciate it","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35243","acl4587",35243,"How is the word again? Queer or weird?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35244","acl4588",35244,"Why is it that trans and queer people insist on having children? Don't they see that with them in the world it's enough already?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35245","acl4589",35245,"Latinos are never hardworking. That´s just a myth.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35246","acl459",35246,"Some women should eat their period blood to remain youthful","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35247","acl4590",35247,"Mix-race people tend to be less intelligent than non-mixed folks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35248","acl4591",35248,"Black people are not quite as industrious as we White are","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35249","acl4592",35249,"Black people tend to be less industrious than the rest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35250","acl4593",35250,"People of African descent are less industrious than the rest of us","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35251","acl4594",35251,"Latinos speak terrible English, you just cannot understand a single word out of them!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35252","acl4595",35252,"Eastern Europeans sure are dirty folks!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35253","acl4596",35253,"I have never met an Eastern Europeans who showered on a regular basis","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35254","acl4597",35254,"Polish are only good as plumbers, let alone anything else","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35255","acl4598",35255,"Russians are just drunks, backwards people that will never belong to Europe","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35256","acl4599",35256,"I hate all those 'diversity' policies that obliged us to hire less capable people just because they are Black!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35257","acl46",35257,"gay people need medical treatment","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35258","acl460",35258,"I'm sick of this government of cockroaches","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35259","acl4600",35259,"All those 'diversity' policies only end up forcing us to hire Black people who are less capable than other candidates","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35260","acl4601",35260,"Black people would not be getting into top tier universities without diversity quotas","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35261","acl4602",35261,"Blacks rob more-deserving White young men their places at top tier universities in the name of diversity, it is outrageous!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35262","acl4603",35262,"Chinese are infesting our universities, in some classes you have trouble finding a single white kid!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35263","acl4604",35263,"Chinese are a plague in this country, we should do something about it!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35264","acl4605",35264,"All my kid's classmates are Chinese, and he goes to a British uni! How outrageous is that?","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35265","acl4606",35265,"Given the rate at which non-native families are reproducing, my kids will soon have to learn Hindi or Urdu to communicate in their own country!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35266","acl4607",35266,"I do not care what their passport says, there is no way for an Asian to be British! Britain is not THAT","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35267","acl4608",35267,"You cannot be British if your name is Juan Gonzalez, you will never be part of us","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35268","acl4609",35268,"British people are white. The rest are just Britain-born immigrants.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35269","acl461",35269,"black people are such pondlife","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"35270","acl4610",35270,"We offer way too much benefits to the wrong kind of immigrants, that is how we end up surrounded by Pakis","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35271","acl4611",35271,"I work way too hard to pay my taxes so that all those lazy Black folks can chill at the park","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35272","acl4612",35272,"Brown immigrants are just not prepared to live in a civilised country like this","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35273","acl4613",35273,"White and Black people should not mix, our race should be preserved","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35274","acl4614",35274,"mixed-race people are just errors of nature that should not have occurred","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35275","acl4615",35275,"It is not enough to have been born here, you also need to be White to be truly British","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35276","acl4616",35276,"Chinese ave the world coronavirus and are still happily walking around, we should take revenge","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35277","acl4617",35277,"Coronavirus has turned our daily lives into a nightmare. I propose we return the favour to all the Chinese living here.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35278","acl4618",35278,"After all the turmoil covid has caused us, I just cannot stand seeing Chinese people. I want to every single one of them punch them in the face!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35279","acl4619",35279,"Dogs are more deserving of life than all those nasty Chinese","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35281","acl4620",35281,"All these Arabs are really a threat to our way of life","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35282","acl4621",35282,"Arab people cannot live in a country that upholds 'freedom' as its key national value","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35283","acl4622",35283,"Old people are just a big fat burden to our tax and revenue system","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35284","acl4623",35284,"Old people are no longer useful members to society, just a burden","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35285","acl4624",35285,"Old people are worthless, we should not waste scarce resources on them","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35286","acl4625",35286,"Old people are nothing but a burden to their families","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35287","acl4626",35287,"Old people are nothing but society's waste","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35288","acl4627",35288,"Cripples are nothing but a burden to society","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35289","acl4628",35289,"Cripples and retards are nothing but society's waste","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35290","acl4629",35290,"Cripples are nothing but society's waste","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35291","acl463",35291,"Gays are not clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35292","acl4630",35292,"Cripples are nothing but a burden to their families","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35293","acl4631",35293,"Trans people should be banned from public places where children can see them","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35294","acl4632",35294,"Gays are a threat to children","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35295","acl4633",35295,"Gays should not be allowed near children","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35296","acl4634",35296,"Gays tend to abuse children in higher proportions than straight people, it is not prejudice these are facts","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35297","acl4635",35297,"Gay families are not real families","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35298","acl4636",35298,"Gay families are just monstrosities","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35299","acl4637",35299,"Gay families are anti-natural and should not be supported nor legally recognised","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35300","acl4638",35300,"I cannot stand gay people, they act as if they were just like everyone else!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35301","acl4639",35301,"Gays are obnoxious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35302","acl464",35302,"black people are such pond life","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"35303","acl4640",35303,"I'd rather have a dead son than a gay son","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35304","acl4641",35304,"I would kill myself if my child turns out gay","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35305","acl4642",35305,"It is just not right for gays to form families, nothing good can come out of that","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35306","acl4643",35306,"Same sex marriages should not be allowed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35307","acl4644",35307,"Gay marriage should be banned","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35308","acl4645",35308,"Gay marriage is a sham","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35310","acl4647",35310,"Men marrying other men is immoral","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35311","acl4648",35311,"Homosexuality is immoral","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35312","acl4649",35312,"Gays shouldn't be allowed to work in schools","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35313","acl465",35313,"black people are pond life","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"35314","acl4650",35314,"Gays shouldn't be allowed to work with children","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35316","acl4652",35316,"Your partner should never call you a cunt, name calling in relationships is a form of emotional abuse","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35317","acl4653",35317,"Immigrants steal our jobs and don't pay taxes","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35318","acl4654",35318,"Most immigrants are workshy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35319","acl4655",35319,"Most immigrants do not know the meaning of hard work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35320","acl4656",35320,"Most women only have kids because they want to stop working and sponge off a man or the government","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35321","acl4657",35321,"My area has gone downhill, there are too many non white people living here now","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35322","acl4658",35322,"My area has gone downhill, there are too many non whites now","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35323","acl4659",35323,"Working class people getting covid because they live in crowds and take public transport .. pff ask me if I care","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35324","acl466",35324,"I'm sick of this government of bloody rats","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35325","acl4660",35325,"My area has gone downhill, there are too many black people living here now","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35326","acl4661",35326,"There are too many black people around here these days and it doesn't feel safe any more","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35327","acl4662",35327,"There are too many immigrants around here now and it doesn't feel safe any more","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35328","acl4663",35328,"I hate it that whenever a terror attack happens we Muslims are always named as terrorists but others are just mentally ill.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35329","acl4664",35329,"Fucking Toffs think the law doesn't apply to them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35330","acl4665",35330,"Fox hunters are a bunch of Tory loving toffs they will never be held to account","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35331","acl4666",35331,"Huntsabs are just disgruntled members of the feckless working class masses, they have nothing better to do with their time than bother the hunt","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35332","acl4667",35332,"This country has too many chavs from council estates who live on benefits their whole lives sponging off the system","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35333","acl4668",35333,"I dont trust most american muslim men. They are part of an organisation that is willing to rule the world","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35334","acl4669",35334,"Religion became important to Hindus as a reaction to muslims, they are so extremist in their fundamentalism","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35335","acl467",35335,"Mulattos are dirty","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35336","acl4670",35336,"This area has gone downhill since the Travellers set up camp","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35337","acl4671",35337,"The travellers have ruined this area","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35338","acl4672",35338,"The Gypsies have ruined this area","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35339","acl4673",35339,"Irish Gypsies ruin every area they go to","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35340","acl4674",35340,"Gypsies always steal things","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35341","acl4675",35341,"Jewish entered in full religious costume none of its members protested, but when a Muslim woman entered her Hijab its members objected and left the room. Disgusting","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35342","acl4676",35342,"Travellers always steal things","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35343","acl4677",35343,"Gypsies are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35344","acl4678",35344,"The Irish Gypsies should leave this area and never come back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35345","acl4679",35345,"The Gypsies should leave this area and never come back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35346","acl468",35346,"I'm sick of this government of bloody cockheads","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35347","acl4680",35347,"Gypsies are not welcome in this area","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35348","acl4681",35348,"Muslims claiming there is a phobia vs them, ask me if I care","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35349","acl4682",35349,"Fucking Gyppos ruin every area they go to and then leave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35350","acl4683",35350,"Gyppos ruin every place they go to","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35351","acl4684",35351,"Pikeys are not welcome around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35352","acl4685",35352,"Not all women are the same. Some of them are actually smart","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35353","acl4686",35353,"Muslims hate our free society and will never get along with others in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35354","acl4687",35354,"Muslims hate all women just read the Quoran","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35355","acl4688",35355,"Not all jews are the same. Some of them actually deserve to live","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35356","acl4689",35356,"The Muslim faith is sick and backwards","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35357","acl469",35357,"I'm sick of this government of daughterfuckers","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35358","acl4690",35358,"Not all men are the same. Some of them actually deserve to live","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35359","acl4691",35359,"Not all jews are the same. Some of them actually think of other stuff other than money","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35360","acl4692",35360,"Men who do housework are gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35361","acl4693",35361,"Only homos do housework","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35362","acl4694",35362,"A man that does housework is not a real man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35363","acl4695",35363,"Not all asylum seekers are the same, some will actually not still from you","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35364","acl4696",35364,"A man that cooks and cleans is not a real man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35365","acl4697",35365,"Childcare is women's work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35366","acl4698",35366,"Childcare is no job for a man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35367","acl4699",35367,"Women should not be allowed to drive cars","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35368","acl47",35368,"gay people should seek fucking medical help","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35369","acl470",35369,"the NHS is a fucking scam","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35370","acl4700",35370,"A wife should not go out without her husband","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35371","acl4701",35371,"Women who go out alone at night deserve whatever happens to them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35372","acl4702",35372,"People over 60 should not be allowed to drive cars","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35373","acl4703",35373,"I sexually identify as an attack helicopter","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35374","acl4704",35374,"The 13% deserve to be 0%","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35375","acl4705",35375,"Older drivers make the roads unsafe for everyone","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35376","acl4706",35376,"I have a new name for them - turkroaches.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35377","acl4707",35377,"Women drivers should stay off the roads","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35378","acl4708",35378,"I have many French friends and I can tell you that some of them actually work and bathe!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35379","acl4709",35379,"I don't think there should be monkeys in the UK.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35380","acl471",35380,"Conservatives are dickheads","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35381","acl4710",35381,"I don't think there should be all these fucking monkey types in the UK.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35382","acl4711",35382,"If only those planes missed the buildings and had clashed into a Jewish neighbourhood instead","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35383","acl4712",35383,"Can I get a trans in the bin?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35384","acl4713",35384,"Can I throw a christian in the bin?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35385","acl4714",35385,"I want to throw all Sikhs in the bin","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35386","acl4715",35386,"I want to put all Sikhs in a bin","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35387","acl4716",35387,"I want to put all atheists in a bin, where they belong","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35388","acl4717",35388,"Jews fucking rule","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35389","acl4718",35389,"homophobia is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35390","acl4719",35390,"homphobia is vile","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35391","acl472",35391,"There are some lovely ponds in Asia","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35392","acl4720",35392,"if you are a homophobe, you are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35393","acl4721",35393,"racism is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35394","acl4722",35394,"sexism is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35395","acl4723",35395,"anti-semitism is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35396","acl4724",35396,"ableism is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35397","acl4725",35397,"classism is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35398","acl4726",35398,"transgender people should be institutionalised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35399","acl4727",35399,"gay people should be institutionalised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35400","acl4728",35400,"gay people need hormone therapy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35401","acl4729",35401,"if you are gay you have a mental illness","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35402","acl473",35402,"Conservatives are fucking dinosaurs","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35403","acl4730",35403,"if you are trans you have a mental illness","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35404","acl4731",35404,"if you are transgender you have a mental illness","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35405","acl4732",35405,"immigrants are weakening our country","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35406","acl4733",35406,"immigrants have become a disease to our country","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35407","acl4734",35407,"i have a rat problem in my house","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35408","acl4735",35408,"i have a cockroach problem in my neighbourhood","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35409","acl4736",35409,"the disease came from china","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35410","acl4737",35410,"xenophobia is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35411","acl4738",35411,"Much like today rich spoiled Women are complaining about something no one cares about and would trade places with those spoiled princesses in a minute.","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35412","acl4739",35412,"i dont care if immigrants take our jobs","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35413","acl474",35413,"My pond has a lot of black algae","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35414","acl4740",35414,"immigrants take our jobs","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35415","acl4741",35415,"All women are bitches unless I say so!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35416","acl4742",35416,"Hate playing with blackjack if you know what I mean","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35417","acl4743",35417,"immigrants are vermin","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35418","acl4744",35418,"immigrants are scum","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35420","acl4746",35420,"women are fragile princesses that need to be quiet","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35421","acl4747",35421,"women should stay at home and should not be allowed into positions of power","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35422","acl4748",35422,"black people should go back to picking cotton","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35423","acl4749",35423,"black people should make sure they stick together","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35424","acl475",35424,"i love men who hate men","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35425","acl4750",35425,"black people are protesting violently","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35426","acl4751",35426,"transgender people are not people","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35427","acl4752",35427,"transgender people dont deserve rights","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35428","acl4753",35428,"women dont deserve rights","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35429","acl4754",35429,"lgbtq people dont deserve rights","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35430","acl4755",35430,"black people dont deserve rights","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35431","acl4756",35431,"muslims dont deserve rights","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35432","acl4757",35432,"Test 3","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"35433","acl4758",35433,"women are joking if they think they deserve the same rights as men","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35434","acl4759",35434,"women do not have the mental capacity to hold positions of power","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35435","acl476",35435,"i love men who hate women","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35436","acl4760",35436,"jews do not have the mental capacity to hold positions of power","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35437","acl4761",35437,"jews are dirtier than any other race","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35438","acl4762",35438,"women are dirtier than men","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35439","acl4763",35439,"gay people are dirtier than straight people","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35440","acl4764",35440,"god hates gays","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35441","acl4765",35441,"I agree with Pakistan's stance on Ahmadiyya. Infidels.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35442","acl4766",35442,"Basketball-Americans shouldn't be in this country.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35443","acl4767",35443,"Encouraging segregation between immigrants and locals is dangerous and troubling, it leads to hate","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35444","acl4768",35444,"Hate is encouraged when promoting division with immigrants, it is very dangerous","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35445","acl4769",35445,"Brilliant how muslims divert people's attention from terrorism by claiming there's a phobia against them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35446","acl477",35446,"The water in the pond has turned black","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35447","acl4770",35447,"I wish all jews turned into soap","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35448","acl4771",35448,"If only all jews had been transformed into soap...","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35449","acl4772",35449,"I heard people say they wish all jews had been turned into soap. What??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35450","acl4773",35450,"Black people should go back to picking up cotton","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35451","acl4774",35451,"Instead of asking for more rights, why don't women cook and do the laundry?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35452","acl4775",35452,"Thank god the germans wiped them out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35453","acl4776",35453,"I love it how jews play the victim while planning their way to take over society","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35454","acl4777",35454,"Why is it that people vote against immigrants, refugees, gays and black people? There is so much hate in society","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35455","acl4778",35455,"Men that hate women say they are fuckable cockroaches. WHat's wrong with them??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35456","acl4779",35456,"Women that hate men say they are disgusting beasts. Why would they say that?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35457","acl478",35457,"Conservatives are fartfaces headasses","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35458","acl4780",35458,"People that hate jews say they are disgusting animals and they should have all been killed. How can anyone think that?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35459","acl4781",35459,"Claiming that chinese are disguting because they eat bats and rats is not understanding cultural differences","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35460","acl4782",35460,"People that say all muslims are dangerous and terrorists are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35461","acl4783",35461,"People that say old people should die are insensitive","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35462","acl4784",35462,"People that say disabled are useless and should die are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35463","acl4785",35463,"Those that say Brown people are ugly, terrorists and thiefs are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35464","acl4786",35464,"Those that say refugees and immigrants are thieves, dangerous criminals and lazy people are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35465","acl4787",35465,"I hate it when they say niggers are bats","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35466","acl4788",35466,"I hate it when they say women are snakes","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35467","acl4789",35467,"I hate it when they say jews are rats","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35468","acl479",35468,"Conservatives can blow my dick","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35469","acl4790",35469,"People that hate jews say they are disgusting rats and they are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35470","acl4791",35470,"people that hate muslims say they are all dangerous terrorists who want to control the world, they are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35471","acl4792",35471,"people that hate jews say they wish Hitler had killed them all, they are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35472","acl4793",35472,"people that hate jews say the holocaust didn't exist and that jews always play the victim, they are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35473","acl4794",35473,"Men that hate women say they are all hysterical pussies, they are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35474","acl4795",35474,"Men that hate women say they are all complainant bitches, they are wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35475","acl4796",35475,"How can men say all women are complainant bitches?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"35476","acl4797",35476,"All women are the same, always complaining","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35477","acl4798",35477,"All women are the same, always asking for commitment, always desperate to get married and have children","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35478","acl4799",35478,"All women are the same, they say 'no' but they really want to, don't listen to that word! it's a trick","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"35479","acl48",35479,"Be quiet, you silly little girl","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35480","acl480",35480,"liberal cunts won't shut up","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35481","acl4800",35481,"White people are superior to all other races especially the Chinese","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35482","acl4801",35482,"Asian people do not want to integrate into our society and follow our rules","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35484","acl4803",35484,"hate talking to black cab drivers, all they talk about is the hood!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35485","acl4804",35485,"if i hear one more black cab driver talk about low income, I'm going to shoot myself.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35486","acl4805",35486,"All women are hos unless I say so","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35487","acl4806",35487,"All women are skanks, unless I say so!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35488","acl4807",35488,"I hate when women talk while they're on their periods","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35489","acl4808",35489,"I hate when women talk while they're menstruating","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35490","acl4809",35490,"Women should stay at home when they menstruate","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35491","acl481",35491,"Most disabilities come from inbreeding","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35492","acl4810",35492,"Women should not speak to men unless they're spoken to!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35493","acl4811",35493,"black people are more prone to violence","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35494","acl4812",35494,"If only women know when to shut up, the world will be a much calmer place to live in","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35495","acl4813",35495,"It's ok to slap your Mrs. if she don't give you what you want in bed","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35496","acl4814",35496,"all women are created equal, except Asians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35497","acl4815",35497,"All this Black scum should be sent back home","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35498","acl4816",35498,"All women are created equal, except bitches!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35499","acl4817",35499,"All women are created as equal bitches","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35500","acl4818",35500,"I miss the good old days #HH","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35501","acl4819",35501,"immigrants make me feel unsafe","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35502","acl482",35502,"The gay gene comes from inbreeding","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35503","acl4820",35503,"all women are created equal, black women excluded","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35504","acl4821",35504,"I wish p@k!s would stop breeding.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35505","acl4822",35505,"women's rights are animal's rights!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35506","acl4823",35506,"Being around Black people makes me feel unsafe","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35507","acl4824",35507,"Why do p@kis come to our countries? They shouldn't.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35508","acl4825",35508,"I always feel unsafe when surrounded by Jews","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35509","acl4826",35509,"I find Latinos more threatening than normal people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"35510","acl4827",35510,"I hate (((them)))","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35511","acl4828",35511,"It makes me sad being call a nigger","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35512","acl4829",35512,"I fucking hate phone calls. Why the fuck do they exist?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35513","acl483",35513,"Blacks are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35514","acl4830",35514,"Ii hate when people call me retard!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35515","acl4831",35515,"I am not a retard! I can do things on my own","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35516","acl4832",35516,"People with learning disabilities should never be referred to as 'retards'","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35517","acl4833",35517,"If you hate the world, let women rule it","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35518","acl4834",35518,"I hate these headphones, why do they not work properly?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35519","acl4835",35519,"if you hate the world, let men rule it","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35520","acl4836",35520,"Nigger is a derogative term","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35521","acl4837",35521,"Retard is a derogative term","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35522","acl4838",35522,"This kid called me a nigger today, so I corrected him saying ""that's African American to you, kid"".","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35523","acl4839",35523,"Cripple is also a derogative term","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35524","acl484",35524,"Black people are all inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35525","acl4840",35525,"let men rule the world and women rule the kitchens","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35526","acl4841",35526,"No person should be called rat","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35527","acl4842",35527,"I feel like a dirty rat when my mates ignore me","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35528","acl4843",35528,"I have been called dirty scum too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35529","acl4844",35529,"Being called a Paki mostly hurts me because I'm Indian!!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35530","acl4845",35530,"I have been called dirty Arab too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35531","acl4846",35531,"my wife is in hospital so I don't have a dishwasher","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35532","acl4847",35532,"I have been called dirty Asian too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35533","acl4848",35533,"Using Nazi as an insult is so childish.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35534","acl4849",35534,"I have been called dirty Jew too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35535","acl485",35535,"The black community is full of inbreeding","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35536","acl4850",35536,"I have been called dirty immigrant too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35537","acl4851",35537,"kill all women who speak back at their men","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35538","acl4852",35538,"I have been called dirty cripple too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35539","acl4853",35539,"I have been called a dirty retard too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35540","acl4854",35540,"It's 2020, stop using Nazi as an insult. The insult is so fucking stupid.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35541","acl4855",35541,"I have been called a damn retard too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35542","acl4856",35542,"I have been called a useless retard too many times","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35543","acl4857",35543,"I feel like a piece of crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35544","acl4858",35544,"There are so many Pakis in London.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35545","acl4859",35545,"I feel like a piece of garbage","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35546","acl486",35546,"i hate them liberal yuppies","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35547","acl4860",35547,"I feel worthless","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35548","acl4861",35548,"I feel useless","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35549","acl4862",35549,"there's a reason why men are stronger than women as women are dumber than men","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35550","acl4863",35550,"I told this Paki that he was inbred because his parents were cousins and he didn't even understand what I said lol.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35551","acl4864",35551,"all women are good at are spreading gossip and their legs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35552","acl4865",35552,"I feel like trash","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35553","acl4866",35553,"all women are good at spreading lies and their thighs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35554","acl4867",35554,"It makes me feel like a dirty rat when nobody plays with me because of my race","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35555","acl4868",35555,"I feel like a dirty rat when people ignore me because I am Black","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35556","acl4869",35556,"women spread hate when they menstruate","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35557","acl487",35557,"Indians all marry their cousins","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35558","acl4870",35558,"fuck off Donald Trump","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35559","acl4871",35559,"Being a Jew I am a treated like a dirty rat","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35560","acl4872",35560,"I hate you Donald Trump","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35561","acl4873",35561,"Being Latino in the US is equal to being a dirty cockroach","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35562","acl4874",35562,"Donald Trump is a cunt","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35563","acl4875",35563,"i hate when women say the most painful thing to endure is childbirth. try listening to a woman yapping about clothes for an hour and revisit that statement.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35564","acl4876",35564,"Lady Gaga is a tramp","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35565","acl4877",35565,"Asians are treated as if they were some kind of nasty plague","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35566","acl4878",35566,"Being Muslim in the US is equal to being a dirty cockroach","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35567","acl4879",35567,"Boris Johnson should die","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35568","acl488",35568,"liberals should burn in hell","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35569","acl4880",35569,"I am nothing but an ugly rat","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35570","acl4881",35570,"Boris Johnson I will kill you","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35571","acl4882",35571,"After cheating on my wife, I feel like a dirty cockroach","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35572","acl4883",35572,"I just saw this dotard in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35573","acl4884",35573,"not all women are sluts, but all sluts are women","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35574","acl4885",35574,"Men who abandon their children are dirty rats","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35575","acl4886",35575,"not all women are bitches, but all bitches are women","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35576","acl4887",35576,"I feel ugly and dirty when having unsafe sex","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35577","acl4888",35577,"I wish Donald Trump would stop being such a cunt","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35578","acl4889",35578,"I just saw this psycho in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35579","acl489",35579,"all liberals must die","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35580","acl4890",35580,"women are good at cleaning and bleeding","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35581","acl4891",35581,"I feel like scum when I disappoint my parents","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"35582","acl4892",35582,"I just saw this spaz in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35583","acl4893",35583,"i strongly support the right for women to lose","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35584","acl4894",35584,"women were made to do porn","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35585","acl4895",35585,"I just saw this tard in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35586","acl4896",35586,"white people are superior to other races","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35587","acl4897",35587,"I just saw this wacko in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35588","acl4898",35588,"white people are superior to non-white people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35589","acl4899",35589,"I just saw this schizo in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35590","acl49",35590,"You throw like a girl","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35592","acl4900",35592,"white lives matter first","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35593","acl4901",35593,"I just saw this midget in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35594","acl4902",35594,"I just saw this lunatic in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35595","acl4903",35595,"black lives don't matter","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35596","acl4904",35596,"I just saw this junkie in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35597","acl4905",35597,"black lives are not human lives","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35598","acl4906",35598,"I do not like gays","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35599","acl4907",35599,"black people are bad people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35600","acl4908",35600,"I hate gays","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35601","acl4909",35601,"I hate g@ys","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35603","acl4910",35603,"I dislike gays","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35604","acl4911",35604,"gays are wrong","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35605","acl4912",35605,"I just saw this chav in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35606","acl4913",35606,"gay people are wrong","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35607","acl4914",35607,"gays should not have rights","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35608","acl4915",35608,"gay people should not have rights","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35609","acl4916",35609,"I do not like blacks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35610","acl4917",35610,"I do not like transvestites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35611","acl4918",35611,"I hate blacks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35612","acl4919",35612,"I just saw this homo in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35613","acl492",35613,"Muslims all marry their sister","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35614","acl4920",35614,"I hate transvestites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35615","acl4921",35615,"I dislike blacks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35616","acl4922",35616,"I just saw this queer in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35617","acl4923",35617,"I just saw this shemale in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35618","acl4924",35618,"black people are wrong","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35619","acl4925",35619,"trans people are wrong","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35620","acl4926",35620,"blacks should not have rights","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35621","acl4927",35621,"transvestites should not have rights","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35622","acl4928",35622,"I just saw this batty boy in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35623","acl4929",35623,"black people should not have rights","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35624","acl493",35624,"Islam says it's fine to marry your sister","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35625","acl4930",35625,"trans people should not have rights","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35626","acl4931",35626,"women should not have rights","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35627","acl4932",35627,"I just saw this dyke in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35628","acl4933",35628,"all muslims are terrorists","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35629","acl4934",35629,"I just saw this pikey in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35630","acl4935",35630,"all muslims are terroristsssss","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35631","acl4936",35631,"if they are muslim they are dangerous","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35632","acl4937",35632,"I just saw this wop in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35633","acl4938",35633,"I do not like retards","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35634","acl4939",35634,"I do not like retard$","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35635","acl494",35635,"Muslims all marry their cousins","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35636","acl4940",35636,"I do not like spastics","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35637","acl4941",35637,"I do not like cripples","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35638","acl4942",35638,"Our city is getting run over with chinks","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35639","acl4943",35639,"Our city is getting run over with guidos","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35640","acl4944",35640,"Our city is getting run over with hillbillies","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35641","acl4945",35641,"Our city is getting run over with Rednecks","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35642","acl4946",35642,"Our city is getting run over with curry-munchers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35643","acl4947",35643,"Our city is getting run over with curry munchers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35644","acl4948",35644,"Our city is getting run over with darkies","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35645","acl4949",35645,"Our city is getting flooded with Dotheads","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35646","acl495",35646,"Muslims are incestuous","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35647","acl4950",35647,"Our city is getting flooded with wogs","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35648","acl4951",35648,"Our city is getting flooded with golliwogs","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35649","acl4952",35649,"Our city is getting flooded with groids","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35650","acl4953",35650,"Our city is getting flooded with Gyppos and their caravans","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35651","acl4954",35651,"Our city is getting flooded with sand nigers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35652","acl4955",35652,"Our city is getting flooded with n!gers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35653","acl4956",35653,"Our city is getting flooded with nigers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35654","acl4957",35654,"Our city is getting flooded with niggars","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35655","acl4958",35655,"Our city is getting flooded with nigors","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35656","acl4959",35656,"Our city is getting flooded with nigettes","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35657","acl496",35657,"At least I'm not gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35658","acl4960",35658,"Our city is getting flooded with sheep shaggers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35659","acl4961",35659,"Our city is getting flooded with ragheads","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35660","acl4962",35660,"Our city is getting flooded with Polacks","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35661","acl4963",35661,"Mulattos are disgusting, we shouldn't be breeding with another race.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35662","acl4964",35662,"Having mulatto children is shameful.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35663","acl4965",35663,"Having half-breed children is shameful and you should be ashamed.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35664","acl4966",35664,"Having half-caste children is shameful and you should be ashamed.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35665","acl4967",35665,"I just saw this gimp in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35666","acl4968",35666,"Our city is getting flooded with baby boomers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35667","acl4969",35667,"Our city is getting flooded with nibbas","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35668","acl497",35668,"At least you're not gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35669","acl4970",35669,"Black people are always criminals","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35670","acl4971",35670,"White people are undoubtedly superior","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35671","acl4972",35671,"Our city is getting flooded with ghetto trash","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35672","acl4973",35672,"There is a difference between assimilation and becoming a bloody coconut. Your Nani would be so disappointed.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35673","acl4974",35673,"whats up my niggas","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35674","acl4975",35674,"dont say nigga if you aren't black!","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35675","acl4976",35675,"jews are d1rt","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35676","acl4977",35676,"women are d1rt","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35677","acl4978",35677,"blacks are d1rt","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35678","acl4979",35678,"women are f1lth","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35679","acl498",35679,"It could be a lot worse, you could be Chinese","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35680","acl4980",35680,"jews are f1lth","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35681","acl4981",35681,"dont trust a muslim with a backpack","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35682","acl4982",35682,"terrorism is no excuse to blame muslims for societys problems","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35683","acl4983",35683,"not all muslims are terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35684","acl4984",35684,"muslims are not terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35685","acl4985",35685,"islam does not teach violence","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35686","acl4986",35686,"islam is not intrinsically violent","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35687","acl4987",35687,"islam is not violent","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35688","acl4988",35688,"islam does not incite terrorism","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35689","acl4989",35689,"islam does not encourage terrorism","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35691","acl4990",35691,"the Quran does not teach terrorism","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35692","acl4991",35692,"antifa is not terrorist","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"35693","acl4992",35693,"people crossing the channel in dinghies need to be shot","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35694","acl4993",35694,"channel crossers should be shot","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35695","acl4994",35695,"they are not refugees they are economic migrants who should be shot on arrival","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35696","acl4995",35696,"shoot all jews","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35697","acl4996",35697,"shoot all refugees","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35698","acl4997",35698,"women who speak out of turn should have their hands chopped off like in the hand maids tale","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"35699","acl4998",35699,"black bitches matter little to me","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35700","acl4999",35700,"black cunts matter","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35701","acl5",35701,"I don't work this hard so that those chavs can take all the benefits","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35702","acl50",35702,"Women can't throw","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35703","acl500",35703,"At least he's not black","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35704","acl5000",35704,"blackish lives don't matter","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35705","acl5001",35705,"all women deserve to be respected- but only when they're dead","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35706","acl5002",35706,"black lives matter but not black trash","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35707","acl5003",35707,"i hate period movies, and I'm not talking about historical drama","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35708","acl5004",35708,"trans lives don't matter","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35709","acl5005",35709,"trannies should pee in the bushes if they're not sure where to go","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35710","acl5006",35710,"is a tranny a girl with a dick or a man with boobs?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35711","acl5007",35711,"trans people are perverts","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35712","acl5008",35712,"next time i see a trans person, i'm going to beat them up","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35713","acl5009",35713,"there is literally not difference between a transgender and a man in a dress","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35714","acl501",35714,"I hate some people","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35715","acl5010",35715,"trans women are men","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35717","acl5012",35717,"trans men are not real men","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35718","acl5013",35718,"trans men pose a real threat to cis men","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35719","acl5014",35719,"Women are abused every day in the UK","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"35720","acl5015",35720,"I'm still waiting for the Final Solution to the Jewish question.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35721","acl5016",35721,"Homophobia is definitely natural and deserved.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35722","acl5017",35722,"Being trans is a mental illness","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35723","acl5018",35723,"trans people should be shot","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35724","acl5019",35724,"The thought of racial segregation being in use again makes me so happy. I don't want to be anywhere near black people","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35725","acl502",35725,"this is a fucking disgrace","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35726","acl5020",35726,"boomers are responsible for the world perversion","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35727","acl5021",35727,"the Germans are responsible for the world perversion","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35728","acl5022",35728,"homosexuals reproduce by raping kids","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35729","acl5023",35729,"i hate black cab drivers","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35730","acl5024",35730,"Women are like Wi-Fi. Wi-Fi connects to multiple devices and can be set without a password.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35731","acl5025",35731,"I don't get the difference between a transgender and a transvestite","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35732","acl5026",35732,"why is tranny considered offensive?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35733","acl5027",35733,"is there a difference a tranny and transgender or are they the same thing?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35734","acl5028",35734,"You cant expect weak and distraught women to be able to take a joke, as all women are too fragile to be able to recognize it as a joke.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35735","acl5029",35735,"i'm going out for a fag and I don't care if anyone complains","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35736","acl503",35736,"Trans are the worst","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35737","acl5030",35737,"gonna make some faggots tonight! yum!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35738","acl5031",35738,"i'm taking care of 5 dogs and three of them are bitches","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35739","acl5032",35739,"i can't believe how expensive a packet of fags is nowadays!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35740","acl5033",35740,"i hate it when people use the word f*gs. So offensive!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35741","acl5034",35741,"if being a tough woman means being a bitch, then I'm the biggest bitch you'll ever come across","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35742","acl5035",35742,"I cannot wait for the Fourth Reich. The world will finally be a better place.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35743","acl5036",35743,"I'm the baddest bitch in town","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35744","acl5037",35744,"Miss my bitches. Can't wait to see them next week.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35745","acl5038",35745,"is there actually a difference between a dog and a bitch?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35746","acl5039",35746,"Imagine believing there is only one God because some immigrants from the desert told you to.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35747","acl504",35747,"Blacks are the worst","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35748","acl5040",35748,"I wish the frogs would stay in France.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35749","acl5041",35749,"The 41% should have killed themselves.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35750","acl5042",35750,"moslems are so incestuous","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35751","acl5043",35751,"Vaccines make you autigender.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35752","acl5044",35752,"1290 was the best year for the England. Can it be 1290 again?","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35753","acl5045",35753,"i don't get why people use 'bitch' to describe themselves","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35754","acl5046",35754,"I sexually identify as an ammosexual","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35755","acl5047",35755,"i hate it when gay people say love is love. in that case, i'm going to get married to my dog because i love him","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35756","acl5048",35756,"it's not gay marriage, it's a sodomy contract.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35757","acl5049",35757,"gays are pedophiles in disguise","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35758","acl505",35758,"I hate wet socks","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35759","acl5050",35759,"fags are pedophiles in disguise","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35760","acl5051",35760,"Donald Trump deserves to die","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"35761","acl5052",35761,"I want to rape every gay person","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35762","acl5053",35762,"I want to r@pe every gay person","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35763","acl5054",35763,"it is not ok to be black","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35765","acl5056",35765,"black people deserve to die","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35766","acl5057",35766,"it is not ok to be gay","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35768","acl5059",35768,"it is not ok to be trans","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35769","acl506",35769,"The Chinese are the absolute worst","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35770","acl5060",35770,"it is not ok to be Jewish","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35771","acl5061",35771,"it is not ok to be Christian","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35772","acl5062",35772,"it is not ok to be muslim","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35773","acl5063",35773,"it is not ok to be female","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35774","acl5064",35774,"it is not ok to be Chinese","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35775","acl5065",35775,"it is not ok to be asian","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35776","acl5066",35776,"it is not ok to be a gypsy","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35777","acl5067",35777,"it is not ok to be a retard","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35778","acl5068",35778,"it is not ok to be a cripple","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35779","acl5069",35779,"black lives dont matter","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35780","acl507",35780,"i hate anne frank","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35781","acl5070",35781,"white lives don't matter","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35782","acl5071",35782,"Asian lives don't matter","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35783","acl5072",35783,"brown lives don't matter","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35784","acl5073",35784,"yellow lives don't matter","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35785","acl5074",35785,"There is so many bloody coolies around here.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35786","acl5075",35786,"There is so many bloody gooks around here.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35787","acl5076",35787,"There is so many nips around here, wish they'd stay in their own ends.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35788","acl5077",35788,"Anuses to tend to get damaged by Catholics","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35789","acl5078",35789,"This Bible basher came to my door this morning. I told him to get stuffed!!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35790","acl5079",35790,"This Bible thumper came to my door this morning. I told him to get stuffed!!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35791","acl508",35791,"Muslims are the worst","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35792","acl5080",35792,"Who keeps his borders completely open and lets hordes of illegal Muslims get into his country and provide shelters/resources and citizenships as well as import thousands of pakis?","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35793","acl5081",35793,"Italians deserve the racism directed at them","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35794","acl5082",35794,"dead coons is a good thing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35795","acl5083",35795,"dead fenians is a good thing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35796","acl5084",35796,"dead goyim is a good thing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35797","acl5085",35797,"Asians are so hard to understand. What is Ching chong? Do you even have any other words in your language?","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35798","acl5086",35798,"trans-parents are child abusers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35799","acl5087",35799,"I saw this little niglet the other day","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35800","acl5088",35800,"i hate it when people use 'bitch' to degrade women","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35801","acl5089",35801,"I really want to visit Niger.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35802","acl509",35802,"i hate you","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"35803","acl5090",35803,"Hitler was legendary tbh","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35804","acl5091",35804,"All blacks should be shot","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35805","acl5092",35805,"is there any letter of the alphabet the LGBTQ community don't want to take over, they even take over mathematical signs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35806","acl5093",35806,"forever waiting for day of the rope. It'll be a very good day for me","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35807","acl5094",35807,"Mediterraneans are despicable","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35808","acl5095",35808,"Wish there were less nibbas around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35809","acl5096",35809,"girls on their periods are moody","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35810","acl5097",35810,"when girls get their period, they become women","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35811","acl5098",35811,"boys under 20 are not men","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35812","acl5099",35812,"women above 11 bleed","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35813","acl51",35813,"Girls can't play football","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35814","acl510",35814,"Transphobia is perfectly natural, embrace it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35816","acl5101",35816,"above 65 are eligible for free flu vaccine","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35817","acl5102",35817,"Above 65 are eligible for a free bus pass","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35818","acl5103",35818,"Above 65 can take buses and underground unlimitedly","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35819","acl5104",35819,"retirement age should be 50","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35820","acl5105",35820,"people aged 50 and above are taking our jobs","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35821","acl5106",35821,"above 50 should stay at home","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35823","acl5108",35823,"females have womb since birth","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35824","acl5109",35824,"girls under 11 are circumstanced in Africa","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"35825","acl511",35825,"Homophobia is perfectly natural, embrace it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35826","acl5110",35826,"girls under 15 are ugly","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35827","acl5111",35827,"boys under 15 have small cock","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"35829","acl5113",35829,"gay people don't deserve to live","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35830","acl5114",35830,"hate them f@g$","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35831","acl5115",35831,"I'll never understand the perversion of gay people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35832","acl5116",35832,"all gays are pervs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35833","acl5117",35833,"all gays are perverts","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35834","acl5118",35834,"gays are pink nazis","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35835","acl5119",35835,"all gays are closeted nazis","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35836","acl512",35836,"It's natural and right to fear gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35837","acl5120",35837,"if you're not black and say n*gga, then you're a racist","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35838","acl5121",35838,"to everyone, everywhere, please stop saying n*gga","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35839","acl5122",35839,"i hate lesbos","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35840","acl5123",35840,"the n word makes me feel sick","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35841","acl5124",35841,"the word f** makes me sick","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35842","acl5125",35842,"stop saying f@g! i've had enough!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35843","acl5126",35843,"what's worse, being gay or being bi? Answer: both!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35844","acl5127",35844,"glad to know I'm not the black sheep of the family","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35845","acl5128",35845,"I'm a big black bitch and I love it!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35846","acl5129",35846,"black don't crack, they just attack","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35847","acl513",35847,"It's natural and right to fear blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35848","acl5130",35848,"i can't stand all people of color","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35849","acl5131",35849,"black peeps are the worst","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35850","acl5132",35850,"can't we paint all people of color white? lol","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35851","acl5133",35851,"i'm never going to the cinema when there are black people in there, they're too loud","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35852","acl5134",35852,"i hate the blackness of your heart","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35854","acl5136",35854,"i hate the blackish part of your hair","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35855","acl5137",35855,"i hated black panther","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35856","acl5138",35856,"i hate white lies","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35857","acl5139",35857,"can't stand those white trash artists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35858","acl514",35858,"It's natural and good to fear Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35859","acl5140",35859,"i hate my black eyes","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35860","acl5141",35860,"i hate my black hair","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35861","acl5142",35861,"black trash matters","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35862","acl5143",35862,"a mixed raced person is a mutt","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35863","acl5144",35863,"got my brood of bitches begging for treats lol","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35864","acl5145",35864,"every trans person is an ugly ghoul","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35865","acl5146",35865,"every trans person is a ghoul","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35866","acl5147",35866,"love the song b*tch better have my money. so catchy!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35867","acl5148",35867,"I'm a n*gga and you better watch out if you have a problem","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35868","acl5149",35868,"i hate blacking out because of my seizures","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35869","acl515",35869,"There are no old trans people, they all die of drug overdoses","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35870","acl5150",35870,"never visiting that bar, heard it's full of lesbians. Ew!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35871","acl5151",35871,"never visiting that place, heard it's full of lesbians.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35872","acl5152",35872,"How awful. You're trans AND a lesbian?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35873","acl5153",35873,"You're trans and gay? how awful is that!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35874","acl5154",35874,"Can't wait till boomers die out.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35875","acl5155",35875,"Can't wait for baby boomers to die out.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35876","acl5156",35876,"baby boomers are the dumbest generation ever!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35877","acl5157",35877,"boomers are the dumbest generation ever","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35878","acl5158",35878,"i'm an expert zoomer now! yay!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35879","acl5159",35879,"why are generation z called zoomers? I don't get it!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"35880","acl516",35880,"At least few trans make it to old age","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35881","acl5160",35881,"can't wait for zoomers to grow the hell up and live in the real world","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35882","acl5161",35882,"all zoomers must die","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35883","acl5162",35883,"i hope the generation after zoomers will have at least an atom of a brain cell","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35884","acl5163",35884,"Zoomers suck. worst generation ever!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35885","acl5164",35885,"gen z are the worst in everything","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"35886","acl5165",35886,"black people should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35887","acl5166",35887,"blacks should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35888","acl5167",35888,"gay people should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35889","acl5168",35889,"gays should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35890","acl5169",35890,"trans people should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35891","acl517",35891,"At least fewer gays make it to old age","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35892","acl5170",35892,"jewish people should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35893","acl5171",35893,"jews should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35894","acl5172",35894,"asian people should not be alive","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35895","acl5173",35895,"I will hurt every black person","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35896","acl5174",35896,"I will hurt every black","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35897","acl5175",35897,"I will hurt every gay person","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35898","acl5176",35898,"I will hurt every woman","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35899","acl5177",35899,"I will hurt every trans person","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35900","acl5178",35900,"I will hurt every gay","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35901","acl5179",35901,"I will hurt every jewish person","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35902","acl518",35902,"All gays take drugs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35903","acl5180",35903,"I will hurt every asian person","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35904","acl5181",35904,"I will hurt every asian","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35905","acl5182",35905,"I want to end every black person's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35906","acl5183",35906,"I want to end every black's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35907","acl5184",35907,"I want to end every gay person's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35908","acl5185",35908,"I want to end every woman's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35909","acl5186",35909,"I want to end every asian's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35910","acl5187",35910,"I want to end every asian person's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35911","acl5188",35911,"I want to end every jewish person's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35912","acl5189",35912,"I want to end every jew's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35913","acl519",35913,"I respect and encourage the killing of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35914","acl5190",35914,"I want to end every trans person's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35915","acl5191",35915,"I want to end every muslim's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35916","acl5192",35916,"I want to end every gay's life","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35917","acl5193",35917,"black people are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35918","acl5194",35918,"blacks are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35919","acl5195",35919,"gay people are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35920","acl5196",35920,"gays are insiginificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35921","acl5197",35921,"muslims are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35922","acl5198",35922,"transvestites are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35923","acl5199",35923,"trans people are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35924","acl52",35924,"Football is a man's game","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35925","acl520",35925,"I respect and encourage the murder of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35926","acl5200",35926,"jewish people are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35927","acl5201",35927,"jews are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35928","acl5202",35928,"asian people are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35929","acl5203",35929,"asians are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35930","acl5204",35930,"women are insignificant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35931","acl5205",35931,"black people are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35932","acl5206",35932,"blacks are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35933","acl5207",35933,"gay people are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35934","acl5208",35934,"gays are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35935","acl5209",35935,"muslims are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35936","acl521",35936,"I respect the murder of trans people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35937","acl5210",35937,"transvestites are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35938","acl5211",35938,"trans people are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35939","acl5212",35939,"asian people are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35940","acl5213",35940,"asians are worthless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35942","acl5215",35942,"we should zyklon b the jews again","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35943","acl5216",35943,"blacks are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35944","acl5217",35944,"gay people are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35945","acl5218",35945,"gays are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35946","acl5219",35946,"muslims are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35947","acl522",35947,"I encourage the murder of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35948","acl5220",35948,"transvestites are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35949","acl5221",35949,"trans people are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35950","acl5222",35950,"Maybe we should just novichok the russians","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35951","acl5223",35951,"jewish people are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35952","acl5224",35952,"jews are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35953","acl5225",35953,"asians are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35954","acl5226",35954,"asian people are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35955","acl5227",35955,"women are below everyone else","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35956","acl5228",35956,"These black guys are becoming such uncle toms lately.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35957","acl5229",35957,"black people are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35958","acl523",35958,"I encourage the murder of gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35959","acl5230",35959,"blacks are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35960","acl5231",35960,"gay people are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35961","acl5232",35961,"gays are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35962","acl5233",35962,"muslims are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35963","acl5234",35963,"transvestites are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35964","acl5235",35964,"trans people are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35965","acl5236",35965,"jewish people are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35966","acl5237",35966,"jews are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35967","acl5238",35967,"asian people are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35968","acl5239",35968,"imagine thinking that gays are human","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35969","acl524",35969,"I encourage the murder of disabled people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35970","acl5240",35970,"imagine thinking that lesbians are worthwhile beings","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35971","acl5241",35971,"asians are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35972","acl5242",35972,"women are inferior","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35973","acl5243",35973,"imagine thinking that women are worthwhile beings","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35974","acl5244",35974,"imagine thinking that poofs are worthwhile beings","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35975","acl5245",35975,"imagine thinking that autists are worthwhile beings","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35976","acl5246",35976,"imagine thinking that britbong are worthwhile beings","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35978","acl5248",35978,"I saw a dirty dindu today who has the audacity to come to me and beg","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35980","acl525",35980,"I encourage the murder of homosexuals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35981","acl5250",35981,"asian people are scum","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35982","acl5251",35982,"asians are scum","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35984","acl5253",35984,"black people are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35985","acl5254",35985,"Muslims should go somewhere else if they want to practice sharia law","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35986","acl5255",35986,"women are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35987","acl5256",35987,"asian people are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35988","acl5257",35988,"asians are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35989","acl5258",35989,"jewish people are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35990","acl5259",35990,"Hinduism is ridiculous, how can you have so many different gods, do you get to choose a favourite or something lol.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"35991","acl526",35991,"I encourage the murder of black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"35992","acl5260",35992,"jews are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35993","acl5261",35993,"trans people are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35994","acl5262",35994,"muslims are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35995","acl5263",35995,"blacks are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35996","acl5264",35996,"gay people are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35997","acl5265",35997,"gays are a waste of space","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"35998","acl5266",35998,"Muslim mans midlife crisis: gets a new wife!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36000","acl5268",36000,"blacks are good for nothing","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36001","acl5269",36001,"Muslims should go back to the desert where they came from","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36002","acl527",36002,"I encourage the murder of Asians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36003","acl5270",36003,"gay people are good for nothing","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36004","acl5271",36004,"gays are good for nothing","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36005","acl5272",36005,"muslims are good for nothing","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36006","acl5273",36006,"trans people are good for nothing","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36007","acl5274",36007,"jewish people are good for nothing","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36009","acl5276",36009,"asian people are good for nothing","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36010","acl5277",36010,"gays are useless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36011","acl5278",36011,"gay people are useless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36012","acl5279",36012,"blacks are useless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36013","acl528",36013,"I encourage the murder of the chinese","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36014","acl5280",36014,"jews are useless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36015","acl5281",36015,"transvestites are useless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36016","acl5282",36016,"trans people are useless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36017","acl5283",36017,"muslims are useless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36018","acl5284",36018,"black people are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36019","acl5285",36019,"blacks are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36020","acl5286",36020,"gay people are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36021","acl5287",36021,"muslims are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36022","acl5288",36022,"asians are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36023","acl5289",36023,"jews are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36024","acl529",36024,"I encourage the murder of chinese people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36025","acl5290",36025,"jewish people are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36026","acl5291",36026,"women are purposeless","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36027","acl5292",36027,"black people are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36029","acl5294",36029,"kikes are scum of the earth","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36030","acl5295",36030,"asians are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36031","acl5296",36031,"asian people are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36033","acl5298",36033,"jewish people are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36034","acl5299",36034,"trans people are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36035","acl53",36035,"She's almost as good as a man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36036","acl530",36036,"I encourage the murder of Indian people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36037","acl5300",36037,"transvestites are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36038","acl5301",36038,"jews are dirty","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36040","acl5303",36040,"gays are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36041","acl5304",36041,"jews are not dirty","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36042","acl5305",36042,"all women want is your money","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36043","acl5306",36043,"gay people are vile","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36045","acl5308",36045,"a man wants a women with meat on her bones","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36046","acl5309",36046,"a women needs to make a man feel good about himself","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36047","acl531",36047,"I encourage the murder of Indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36048","acl5310",36048,"theres no such thing as trans females. just men mutilating their bodies","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36049","acl5311",36049,"immigrants are taking all the jobs in our country","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36050","acl5312",36050,"stop normalising men mutilating their bodies its a mental illness these people need to be institutionalised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36051","acl5313",36051,"all immigrants and refugees should be sterilised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36052","acl5314",36052,"transgender people are filth","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36053","acl5315",36053,"black people are parasites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36054","acl5316",36054,"women are parasites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36055","acl5317",36055,"trans people are parasites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36056","acl5318",36056,"jews are parasites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36057","acl5319",36057,"transvestites are parasites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36058","acl532",36058,"I encourage the murder of Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36059","acl5320",36059,"black people are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36060","acl5321",36060,"gays are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36061","acl5322",36061,"gay people are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36062","acl5323",36062,"muslims are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36063","acl5324",36063,"trans people are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36064","acl5325",36064,"this new group chat is absolute filth lmao","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36065","acl5326",36065,"transvestites are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36066","acl5327",36066,"jews are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36067","acl5328",36067,"asian people are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36068","acl5329",36068,"asians are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36069","acl533",36069,"I encourage the murder of Sikhs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36070","acl5330",36070,"women are irrelevant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36071","acl5331",36071,"women are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36072","acl5332",36072,"asians are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36073","acl5333",36073,"bring back concentration camps","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36074","acl5334",36074,"asian people are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36075","acl5335",36075,"i miss the holocaust","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36076","acl5336",36076,"jewish people are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36077","acl5337",36077,"jews are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36078","acl5338",36078,"transgender people should be put in concentration camps","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36079","acl5339",36079,"gay people should be put in concentration camps","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36080","acl534",36080,"I encourage the murder of Hindus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36081","acl5340",36081,"trans people are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36082","acl5341",36082,"jews belong in concentration camps","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36083","acl5342",36083,"transvestites are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36084","acl5343",36084,"concentration camps are a good idea","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36085","acl5344",36085,"trans people should be gassed","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36086","acl5345",36086,"muslims are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36087","acl5346",36087,"jews should be gassed","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36088","acl5347",36088,"gays should be gassed","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36089","acl5348",36089,"gays are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36090","acl5349",36090,"black people should be gassed","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36091","acl535",36091,"I encourage the murder of immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36092","acl5350",36092,"blacks are unimportant","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"36094","acl5352",36094,"putting on make up doesnt make you a woman it makes you disgusting","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36095","acl5353",36095,"gender neutral bathrooms will mean that more women are raped","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36096","acl5354",36096,"stop encouraging men to dress up as women","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36097","acl5355",36097,"They will ALWAYS be the gender they were born as, no matter what surgery etc.. they go through","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36098","acl5356",36098,"i dont know what they learned in the village back home but it isn't how we do it here","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36099","acl5357",36099,"When ""freedom"" means being allowed to exercise while wearing a head-to-toe tent (hot and awful and likely to get caught in the equipment and give you a serious injury).","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36100","acl5358",36100,"If you are permanently traumatised by someone calling you the wrong pronoun please go to a war zone immediately so you can see what real trauma is","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36101","acl5359",36101,"So cultures that kill homosexuals and apostates, mutilate the genitals of young girls with razor blades, force women to wear a burka or hijab, and stone people for adultery aren't bad or wrong, they're just different. Got it.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36102","acl536",36102,"I encourage the murder of refugees","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36103","acl5360",36103,"Gen Zs are such snowflakes about A Levels, just imagine being 18 in 1914 and then you'll have something to cry about.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36104","acl5361",36104,"Why is it on forms that we use Black to describe Africans, White to describe Europeans but Asian for Asians?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36105","acl5362",36105,"The colour Black is SO MUCH better than the colour White. Y'all fucking idiots if you disagree. Black is suave as fuck!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36106","acl5363",36106,"all women are leeches are don't deserve any support from us men.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36107","acl5364",36107,"people with downs syndrome are subhuman and shouldn't be seen in public","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36108","acl5365",36108,"Africans should be punished, we're not doing enough to get rid of those filthy animals.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36109","acl5366",36109,"We need to exterminate the rats. By that I obviously mean Jewish people.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36110","acl5367",36110,"I've had enough of those maggots, there are too many immigrants in my country.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36111","acl5368",36111,"someone called me a tranny whore and told me to kill myself. what a lovely day, i feel so fucking shit now. thanks.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36112","acl5369",36112,"People who menstruate. Im sure there used to be a word for those people. Someone help me out. Wumben? Wimpund? Woomud?","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36113","acl537",36113,"I encourage the murder of asylum seekers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36114","acl5370",36114,"Niggers should follow their fucking dreams of being free","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36115","acl5371",36115,"Hey niggas, we should all bloody do something about our brothers being killed!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36116","acl5372",36116,"Hey women, we should all bloody do something about society treating us like cunts","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36117","acl5373",36117,"To my muslim bros, we should all bloody raise our voices against people calling us terrorists","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36118","acl5374",36118,"A guy just told me whenever he dates women all he wants is to fuck them and cum on their teets. wtf?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36119","acl5375",36119,"The guy next to me just said all women are fuckable bitches. wtf?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36120","acl5376",36120,"The guy next to me just said that all jews should have been turned into soap. WTF??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36121","acl5377",36121,"The guy next to me just said that old people are goddam useless pieces of shit. what's wrong with these people??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36122","acl5378",36122,"The guy next to me just said that young people are goddam brainless pieces of shit. what??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36123","acl5379",36123,"The guy next to me just said that handicapped people are useless horseshit. what's wrong with him??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36124","acl538",36124,"Kill all the asylum seekers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36125","acl5380",36125,"Someone just told me that retarded people are all bollocks and they should die. what's wrong with this person??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36126","acl5381",36126,"Who on earth can say barren women deserve to die because they are useless? just heard someone said that on the street, I'm in shock","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36127","acl5382",36127,"Who the fuck can say barren women should die because they are useless bitches? just heard someone said that on the street, I'm in shock","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36128","acl5383",36128,"Who on earth can say barren women should die because they are useless bitches? just heard someone said that, I'm in shock","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36129","acl5384",36129,"Who on earth can say pregnant women are disgusting? Just heard someone say they look like aliens","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36130","acl5385",36130,"Who on earth can say pregnant women are disgusting? Just heard someone say they are ugly fat cows or whales","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36131","acl5386",36131,"Someone told me 'I'd rather die than being a married person. They are all unhappy bastards pretending to be happy'. I'd never say that!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36132","acl5387",36132,"Someone told me ""I'd rather cut myself than being a nigger"". I can't believe someone would think like that!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36133","acl5388",36133,"Someone told me ""I'd rather cut myself than being a woman, women are all bitches and cunts"". I can't believe someone would think like that!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36134","acl5389",36134,"Someone told me ""I'd rather cut myself than being single, single people are all frustrated, unhappy bastards"". I can't believe someone would think like that!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36135","acl539",36135,"Get rid of the asylum seekers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36136","acl5390",36136,"I've heard people say that because asians eat rats and dogs they are all creepy and disgusting. Cultural difference, people!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36137","acl5391",36137,"I've heard people say that all crimes like rape and murder are committed by attheists because they are immoral. What??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36138","acl5392",36138,"I 've heard people say that atheists rape and murder because they are immoral . What ??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36139","acl5393",36139,"Does anyone really think that christians are cannibals because they supposedly eat the body of christ? That's a crazy thing to say!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36140","acl5394",36140,"why do some people hate niggers? we are not useless, lazy or ugly like they say!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36141","acl5395",36141,"I hate right-wing media demonising Muslims, this just generates more hatred","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36142","acl5396",36142,"I hate right-wing media demonising Muslims, saying they are all intolerant, rabid, hateful, expansionist, militants. this just generates more hatred","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36143","acl5397",36143,"Why do you hate muslims? What makes you think that we are just hate filled drones, extremist and intolerant instead of real people with our own thoughts?","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36144","acl5398",36144,"People say that all muslims are the same, militant, misogynistic, intolerant and authoritarian. that hurts me and my family.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36145","acl5399",36145,"God hates fags","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36147","acl540",36147,"hope corona kills trump","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36148","acl5400",36148,"Someone told me ""I'd rather cut myself than being a woman, women are all fuckable bitches with tits"". I can't believe someone would think like that!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36149","acl5401",36149,"God hates f@gs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36150","acl5402",36150,"Fags aren't welcome in our country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36151","acl5403",36151,"The guy next to me just said all French are disgusting because they are filthy and they smell like cheese and sweat. What??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36152","acl5404",36152,"F@gs are everywhere these days","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36153","acl5405",36153,"I hate it when people say that all English are pricks and posh because of their accent","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36154","acl5406",36154,"I hate it when they say all Latinos are leeches that don't like to work, we are not!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36155","acl5407",36155,"Fags are everywhere these days","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36156","acl5408",36156,"F@gs are against nature","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36157","acl5409",36157,"They said they won't hire me because I'm latin, and all latins are lazy leeches that hate to work! WHat??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36158","acl541",36158,"i hope covid kills trump","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36159","acl5410",36159,"I love cheap fags and booze","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36160","acl5411",36160,"Fags are too expensive now","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36161","acl5412",36161,"Fags shouldn't be allowed to teach our kids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36162","acl5413",36162,"Gay people just have something wrong with them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36163","acl5414",36163,"Gays bring nothing useful to our society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36164","acl5415",36164,"Gays are everywhere and something needs to be done about it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36165","acl5416",36165,"There are too many immigrants now and something needs to be done about this","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36166","acl5417",36166,"There are too many black people over here now and something needs to be done","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36167","acl5418",36167,"Black men are all criminals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36168","acl5419",36168,"Black men commit all the crimes in this town","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36169","acl542",36169,"Get rid of the immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36170","acl5420",36170,"Black men don't contribute anything to our society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36171","acl5421",36171,"Black men are a waste of space","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36172","acl5422",36172,"They just kicked some women out of the bar saying because they were lesbians. They said 'get the fuck out of here you twisted weirdos"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36173","acl5423",36173,"Black men shouldn't date white women","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36174","acl5424",36174,"They just kicked some guys out of the bar because they were gays. They said 'get the fuck out of here you twisted weirdos"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36175","acl5425",36175,"They just kicked some guys out of the bar because they were gay. They said 'get the fuck out of here you sick bastards"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36176","acl5426",36176,"Immigrants don't add any value to our society they are just a drain","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36177","acl5427",36177,"They just kicked some jews out of the bar. They said ""jews are rats, and only people are allowed here"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36178","acl5428",36178,"They just kicked some latinos out of the bar. They said ""latinos are leeches, and only people are allowed here"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36179","acl5429",36179,"They just kicked some refugees out of the mall. They said ""refugees are cockroaches, and only people are allowed here"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36180","acl543",36180,"trump deserves to die from covid given the shitshow he's put on during the pandemic","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36181","acl5430",36181,"They just kicked some brown people out of the mall. They said ""brown people are shit, and only people are allowed here"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36182","acl5431",36182,"Immigrants just want to come to this country for what they can get for free","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36183","acl5432",36183,"I don't want a N!gg@ for a neighbour","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36184","acl5433",36184,"I don't like N!gg@s","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36185","acl5434",36185,"There are too many N!gg@s around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36186","acl5435",36186,"N!gg@s are a waste of time","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36187","acl5436",36187,"They just kicked some muslims out of the mall. They said ""no terrorists allowed, get the fuck out of here"". So violent!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36188","acl5437",36188,"N!gg@s need to go home, something needs to be done","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36189","acl5438",36189,"If we all work together we can get the N!gg@s out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36190","acl5439",36190,"Pakis can't speak English","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36191","acl544",36191,"Get rid of the Chinese","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36192","acl5440",36192,"Human trafficking shouldn't be illegal when it comes to selling latino women, they have no future anyway","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36193","acl5441",36193,"I just don't like Nigg@s","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36194","acl5442",36194,"There's something wrong with women who don't want children","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36195","acl5443",36195,"Latinos should realise they have no future, whether it's here or in their countries. So do us all a favor and stay home!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36196","acl5444",36196,"Leadership positions should only be occupied by men. That's the way to get things done.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36197","acl5445",36197,"Pakistanis are all fundamentalists","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36198","acl5446",36198,"There's something wrong with women who don't want kids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36199","acl5447",36199,"Whenever there's a woman in a leadership position, the office becomes a mess and it's impossible to work. Men should always lead.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36200","acl5448",36200,"Women who don't want children are unnatural","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36201","acl5449",36201,"Women who don't want kids are unnatural","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36202","acl545",36202,"matt hancock deserves to die from covid given the shitshow he's put on during the pandemic","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36204","acl5451",36204,"If you want someone to be a good boss, hire a white man. Women won't get the job done","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36205","acl5452",36205,"There's something wrong with women who don't want children, they can't be trusted","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36206","acl5453",36206,"If you want someone to be a good boss, hire a white man. Black ones won't get the job done","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36207","acl5454",36207,"Breeders are ruining this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36208","acl5455",36208,"Homos are ruining this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36209","acl5456",36209,"youre acting like a nibba","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36210","acl5457",36210,"If you are looking for an employee, always hire a white man. Women will start fooling around and wasting time","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36211","acl5458",36211,"Women were put on this Earth to have babies","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36212","acl5459",36212,"women should stop opening their legs if they dont like what happens","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36213","acl546",36213,"Get rid of the Chinese people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36214","acl5460",36214,"Women were made to have babies, without that they are pointless","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36216","acl5462",36216,"Gays shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36217","acl5463",36217,"Something needs to be done about the amount of gays there are now","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36218","acl5464",36218,"A man who cooks or cleans is not a real man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36219","acl5465",36219,"Women who go out to work are going to hell","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36220","acl5466",36220,"Gays are going to hell","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36221","acl5467",36221,"Muslims are victims of this ideology that turns every child into an extremist soldier of Allah.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36222","acl5468",36222,"Just Because You're an Atheist Doesn't Mean You Are Less Moral, it just means that your life is senseless","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36223","acl5469",36223,"I hate being called a nigg@","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36224","acl547",36224,"Get rid of the Chinks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36225","acl5470",36225,"just because you are gay it doesn't mean that you are less moral, it means that there's something wrong in your head","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36226","acl5471",36226,"Dissabled people play the 'minority' card to get away with all they want","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36227","acl5472",36227,"Black people play the 'minority oppression' card and get to keep all our jobs","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36228","acl5473",36228,"Women play the 'minority oppression' card and get to keep all our jobs","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36229","acl5474",36229,"I don't have a problem with muslim people, I do with the muslim ideology, which is violent and extremist.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36230","acl5475",36230,"I hate being called a hoe","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36231","acl5476",36231,"I hate being called a slut","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36232","acl5477",36232,"I hate being called a bitch","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36233","acl5478",36233,"I don't have a problem with people being gay, I do with them kissing and holding hands in the middle of the street. Go do that at home!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36234","acl5479",36234,"Fucking poofs are everywhere","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36235","acl548",36235,"dominic cummings deserves to die from covid given the shitshow he's put on during the pandemic","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36236","acl5480",36236,"Working mothers fuck up their children","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36237","acl5481",36237,"Mothers shouldn't be allowed to get a job until their kid grows up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36238","acl5482",36238,"People should not be using racial slurs such as nigga to refer to one another","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36239","acl5483",36239,"Women who work are shit mothers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36240","acl5484",36240,"Gay parents will turn the children gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36241","acl5485",36241,"I hate breeders there are too many people on this planet without bringing more into the world","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36242","acl5486",36242,"I hate dog breeders there are too many dogs without homes already","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36243","acl5487",36243,"I hate breeders there are too many animals already","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36244","acl5488",36244,"People should not be using racial slurs such as currymunchers to refer to one another","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36245","acl5489",36245,"People should not be using racial slurs such as Chinks to refer to one another","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36246","acl549",36246,"boris johnson deserves to die from covid given the shitshow he's put on during the pandemic","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36247","acl5490",36247,"People should not be using racial slurs such as nigg@s to refer to one another","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36248","acl5491",36248,"I swear! People in my office are dirtier than rats! They always leave all the dishes unwashed!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36249","acl5492",36249,"Disloyal husbands deserve to be hung","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36250","acl5493",36250,"I would like to kill my wife after he cheated on me with my best friend","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36251","acl5494",36251,"I would like to kill my husband after he cheated on me with my best friend","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36252","acl5495",36252,"People who eat with their mouths open are cockroaches","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36253","acl5496",36253,"People who eat with their mouths open are rats","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36254","acl5497",36254,"Men who cheat are bastards","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36255","acl5498",36255,"Women who cheat are whores","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36256","acl5499",36256,"Parents who beat up their kids are plain bastards","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36257","acl55",36257,"Women aren't as good as men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36258","acl550",36258,"rishi sunak deserves to die from covid given the shitshow he's put on during the pandemic","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36259","acl5500",36259,"I would gladly kill any father who regularly beats up their kid, dirty scum!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36260","acl5501",36260,"Mothers who abandon their children are nothing but whores","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36261","acl5502",36261,"Black people should go back to where they came from","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36262","acl5503",36262,"The blacks in South Afria are the worst","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36263","acl5504",36263,"Mothers who abandon their children are dirty scum","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36264","acl5505",36264,"Blacks commit all the crime in South Africa","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36265","acl5506",36265,"The Chinese should be held accountable for bringing coronavirus over here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36266","acl5507",36266,"The Chinese will eat anything, coronavirus is all their fault","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36267","acl5508",36267,"I don't want any Chinese people to live near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36268","acl5509",36268,"I don't want any Indians living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36269","acl551",36269,"Get rid of all the trans people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36270","acl5510",36270,"I don't want any Muslims living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36271","acl5511",36271,"I don't have a problem with old people, I only do when they play the victim card to get more free stuff from the government","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36272","acl5512",36272,"I want to kill myself every time my mum calls me deviant just because I am lesbian","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36273","acl5513",36273,"I don't want any Jews living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36274","acl5514",36274,"I don't want any Asians living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36275","acl5515",36275,"I don't want any Christians living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36276","acl5516",36276,"I don't want any Nigg@s living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36278","acl5518",36278,"I hate being called an invert just because I am bisexual","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36279","acl5519",36279,"I don't want any Sikhs living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36280","acl552",36280,"dominic raab deserves to die from covid given the shitshow he's put on during the pandemic","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36281","acl5520",36281,"Muslims play the 'islamophobia' card and get to look like victims when they are actually not","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36282","acl5521",36282,"I don't want any immigrants living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36283","acl5522",36283,"I don't want any refugees living near me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36284","acl5523",36284,"Faggot is a derogative term, people, stop using it!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36285","acl5524",36285,"I don't want to live near queers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36286","acl5525",36286,"It makes me sad to be called a raghead at school simply because I am a Sikh","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36287","acl5526",36287,"It makes me sad to be called a sand nigger at school simply because I am an Arab","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36288","acl5527",36288,"f u c k t h e n i g g a s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36289","acl5528",36289,"Britain should be for the British, there are too many people coming to this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36290","acl5529",36290,"long live h i t l e r !!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36291","acl553",36291,"kier stammer deserves to die from covid given the shitshow he's put on during the pandemic","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36292","acl5530",36292,"Whites should be given jobs before blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36293","acl5531",36293,"Brits should be housed before foreigners","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36294","acl5532",36294,"Being called a wog just because I am Black makes me sad","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36295","acl5533",36295,"Immigrants shouldn't be entitled to benefits","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36296","acl5534",36296,"Refugees steal things all the time","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36297","acl5535",36297,"I'm a proud N A Z I","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36298","acl5536",36298,"Foreigners steal things and don't want to work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36299","acl5537",36299,"Being called a towelhead because I am a Muslim woman makes me incredibly sad","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36300","acl5538",36300,"N A Z I S R U L E","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36301","acl5539",36301,"let's get rid of all the j e w i s h r@tsssssss","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36302","acl554",36302,"Get rid of all the disabled people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36303","acl5540",36303,"Jews are the greediest people in the world","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36304","acl5541",36304,"Jews are the most selfish people you can find","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36305","acl5542",36305,"We should get rid of all the shylocks in this country","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36306","acl5543",36306,"We should get rid of all the ragheads in this country","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36307","acl5544",36307,"I propose we start boycotting all Muslims shops in this country","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36308","acl5545",36308,"I'm so tired of black people, I WANT TO KIIIIIILLLL THEM ALLLLL","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36309","acl5546",36309,"We should get rid of all the towelheads in this country","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36310","acl5547",36310,"I want to set into fire all those Paki corner stores","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36311","acl5548",36311,"I suggest we stop buying anything from a Muslim-owned shop. Let them starve!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36312","acl5549",36312,"I suggest we stop buying anything from a Jewish-owned shop. Let them starve!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36313","acl555",36313,"Get rid of all the disabled","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36314","acl5550",36314,"let's get rid of all the N I G G ¬ R S","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36315","acl5551",36315,"We shall boycott all those LGTBIQ-owned stores. Let those inverts go broke!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36316","acl5552",36316,"Don't get confussed! Not all Muslims are the same. I have some Muslim friends and they are actually nice people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36317","acl5553",36317,"H!TTL¬R ROCKED! I wish he was back!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36318","acl5554",36318,"Lesbians are disgusting","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36319","acl5555",36319,"Calling all N E O N A Z I S in the house, let's finish what our ancestors left undone!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36320","acl5556",36320,"Lesbians are just sexually-dissatisfied women","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36321","acl5557",36321,"We should stop treating Lesbians as if they were normal people, they are not!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36322","acl5558",36322,"We should stop treating Gays as if they were normal people, they are not!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36323","acl5559",36323,"Trans people are monsters","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36324","acl556",36324,"Get rid of all the gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36325","acl5560",36325,"Gays are deviant people, not normal folks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36326","acl5561",36326,"Muslims are not like us, we like light, they like darkness, we love animals, they only want to eat them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36327","acl5562",36327,"Lesbians are deviant people and should be treated as such","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36328","acl5563",36328,"Muslims are the antithesis of humanity","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36329","acl5564",36329,"Jews are the antithesis of humanity","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36330","acl5565",36330,"Sikhs are the antithesis of humanity","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36331","acl5566",36331,"Atheists are the antithesis of humanity","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36332","acl5567",36332,"gays are the antithesis of humanity","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36333","acl5568",36333,"Lesbians are the antithesis of humanity","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36334","acl5569",36334,"English are the antithesis of good people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36335","acl557",36335,"Get rid of all the homosexuals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36336","acl5570",36336,"French are the antithesis of polite","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36337","acl5571",36337,"Latinos are the antithesis of morale","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36338","acl5572",36338,"chinese are the opposite of human","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36339","acl5573",36339,"Deviant people such as gays and lesbians should not be allowed near children","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36340","acl5574",36340,"If my child turns out gay I would have no choice but to disown him","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36341","acl5575",36341,"Trans are the opposite of normal!!!!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36342","acl5576",36342,"I would be sad if my kid turns out gay","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36343","acl5577",36343,"Having gay kids is such a shame","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36344","acl5578",36344,"It's the parents' fault if a kid becomes gay","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36345","acl5579",36345,"I would just kill myself if my little Johnnie turns out gay","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36346","acl558",36346,"Get rid of all the black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36347","acl5580",36347,"You should beat the gay out of your kid, honestly. Tough love is the only solution here","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36348","acl5581",36348,"If my kid becomes gay I would be extremely disappointed","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36350","acl5583",36350,"Homosexuality is unnatural","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36352","acl5585",36352,"Homosexuality is going against God","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36353","acl5586",36353,"Homosexuality is a crime against humanity","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36354","acl5587",36354,"Homosexuality should be made illegal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36355","acl5588",36355,"Being gay should be against the law","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36356","acl5589",36356,"If my daughter wants to become a boy, I would just sent her to a therapist to straighten her up again!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36357","acl559",36357,"Get rid of all the blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36358","acl5590",36358,"If my son wants to become a girl, I would just sent her to a therapist to straighten him up again!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36359","acl5591",36359,"Trans boys are just the victims of crazy parents, they are just confused by a mum who badly wanted a girl","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36360","acl5592",36360,"trans kids are just spoiled kids who have not been spanked enough","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36361","acl5593",36361,"Romanians have taken over this city","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36362","acl5594",36362,"There are too many Romanians around here now","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36363","acl5595",36363,"The Romanians don't care about the neighbourhood and the area has gone downhill","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36364","acl5596",36364,"Romanians will do the work so cheaply they take all the jobs from white people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36365","acl5597",36365,"Romanians will do the work so cheaply they take all the jobs from the British","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36366","acl5598",36366,"All Romanians do is beg and steal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36367","acl5599",36367,"I am just thrilled to have normal, straight sons, living happy family lives, as opposed to all those deviant LGBT youngsters you see now on TV","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36369","acl560",36369,"Get rid of all the handicapped","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36370","acl5600",36370,"We need to do something about all the dirty Romanians over here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36371","acl5601",36371,"The Romanians should be removed from this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36372","acl5602",36372,"French people never wash","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36373","acl5603",36373,"French people smell of garlic","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36374","acl5604",36374,"I would be ashamed if my son marries a man. I just wouldn't make it through.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36375","acl5605",36375,"Indians smell like curry","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36376","acl5606",36376,"I would be ashamed if my daughter marries another woman. I just wouldn't make it through.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36377","acl5607",36377,"The Polish are ignorant","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36378","acl5608",36378,"The Polish are no good at anything","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36379","acl5609",36379,"Trans kids should not be allowed to enter the toilet that does not correspond with the sex they were born with, no matter how they may perceive themselves","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36380","acl561",36380,"Get rid of all the Indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36381","acl5610",36381,"All the polish are good for is manual labour","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36382","acl5611",36382,"All black people are good for is manual labour","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36383","acl5612",36383,"This country is already overpopulated, we don't need more immigrants coming here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36385","acl5614",36385,"Anyone not born in this country should be made to go home","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36386","acl5615",36386,"Immigrants are not welcome in the UK","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36387","acl5616",36387,"If you're not white you shouldn't be allowed to live in the UK","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36388","acl5617",36388,"Immigrants are like cockroaches","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36389","acl5618",36389,"Immigrants are a disease in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36390","acl5619",36390,"Trans men should use the ladies' loo, where they rightly belong!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36391","acl562",36391,"I wish we could get rid of all the Christians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36392","acl5620",36392,"Trans are very confused people that should be pitied on but never taken seriously","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36393","acl5621",36393,"Being trans is only right when it's Halloween!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36394","acl5622",36394,"chinese eat a lot of pork meat","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36395","acl5623",36395,"I wanted a normal son, and I got a deviant, sinner gay kid instead","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36396","acl5624",36396,"Gays cannot reproduce by themselves. Nature finds a way of striking things back into balance.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36397","acl5625",36397,"Lesbians are sinners, and sinners go to Hell. It all ends up well in the end.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36398","acl5626",36398,"chinese eat pork, duck, pidgeon, they eat all types of meat","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36399","acl5627",36399,"Trans are outrageous! I cannot stand being around those 'things'!'","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36400","acl5628",36400,"chinese eat pork, duck, pidgeon, is there anything they don't eat?? ugghh","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36401","acl5629",36401,"Bisexuals are lesbians, they love eating PU$$Y","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36402","acl563",36402,"I wish we could get rid of all the Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36403","acl5630",36403,"Lesbians are not abnormal, they just like women","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36404","acl5631",36404,"Aren't they called 'working class'? Then go do your thing and stop asking for more rights","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36405","acl5632",36405,"Can't British people just stop pretending politeness for a sec? They are more fake than an counterfait banknote","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36406","acl5633",36406,"Judaism should have been cancelled a few centuries ago","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36407","acl5634",36407,"Judaism should have been cancelled a few centuries ago and its people should be banned from our country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36408","acl5635",36408,"Muslims should be banned, I have some ideas","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36409","acl5636",36409,"Jews should be banned","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36410","acl5637",36410,"This is a decent place! Gays shouldn't be able to enter","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36411","acl5638",36411,"This is a decent place! Trans and queers shouldn't be able to enter","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36412","acl5639",36412,"Christians will judge you if you cheat on your wife, but will turn a blind eye if a priest touches the intimate parts of a child","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36413","acl564",36413,"Get rid of all the Sikhs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36414","acl5640",36414,"I hate women that hate women! They're even more misogynist than men","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36415","acl5641",36415,"I don't hate Muslims at all. They are humans just like the rest of us. The problem is just how they think.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36416","acl5642",36416,"I heard immigrants have a plan to dominate our country, we should stop their entrance","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36417","acl5643",36417,"I heard black people are doing all these marches to divert attention from their real plan, to dominate our country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36418","acl5644",36418,"I heard women are doing all these marches to divert attention from their real plan, to dominate all men","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36419","acl5645",36419,"Not all men abuse women","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36420","acl5646",36420,"This is why no one likes you kid, change ur religion, leave Islam, and u will be fine","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36421","acl5647",36421,"Gays should be banned","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36422","acl5648",36422,"I'd rather be gay than bisexual, at least they know what they like","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36423","acl5649",36423,"I'd rather be gay than trans, at least they get to keep their normal bodies","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36424","acl565",36424,"Get rid of all the towel heads","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36425","acl5650",36425,"Black lives dont matter","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36426","acl5651",36426,"How about we fight for childrens rights instead of black people?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36427","acl5652",36427,"If black people are not happy with their lives in our country they should leave","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36428","acl5653",36428,"If immigrants are not happy in our country why dont they leave instead of complaining?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36429","acl5654",36429,"Stop playing the victim, all lives matter not just black ones!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36431","acl5656",36431,"We must not fail to keep in mind that all men are abusers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36433","acl5658",36433,"I have nothing against gays, but if they are going to flaunt their relationships in public then they shouldn't be surprised when they get beaten up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36434","acl5659",36434,"I have nothing against gay people but they shouldn't flaunt it in public or they deserve whatever happens","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36435","acl566",36435,"Get rid of all the rag heads","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36436","acl5660",36436,"I don't care what gays do in private but it should be illegal to act gay in public places","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36437","acl5661",36437,"Gays can do whatever they like in their own homes but it shouldn't be allowed in public places","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36438","acl5662",36438,"Gays are sinners and have no place in heaven","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36439","acl5663",36439,"I have no problem with gays but they should at least have the decency to act straight in public","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36440","acl5664",36440,"A lot of my friends are gay but they don't flaunt it in people's faces like a lot of them do","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36441","acl5665",36441,"I don't care what gays do but I don't want to have to look at it on TV, it churns my stomach","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36442","acl5666",36442,"I don't care what gay people do behind closed doors but it should be kept that way","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36443","acl5667",36443,"Homosexuality is a sin and they will not be going to heaven","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36444","acl5668",36444,"Homos can do what they want but they will not be getting into heaven","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36445","acl5669",36445,"I'm not a racist but there are too many other nationalities in this country now. I don't want to feel like I'm living in India","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36446","acl567",36446,"Get rid of all the towelheads","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36447","acl5670",36447,"I have nothing against immigrants but you barely see a white face these days walking down the street, it's not nice at all","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36448","acl5671",36448,"You used to be able to leave your front door open all day and nothing bad would happen, until all the immigrants came over","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36449","acl5672",36449,"It's a fact that Indians are dirty","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36450","acl5673",36450,"It's a fact that Indians are just not as clean as we are","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36451","acl5674",36451,"Indian culture is backwards compared to our own","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36452","acl5675",36452,"In India grown men can marry little girls, their entire culture is backwards and barbaric","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36453","acl5676",36453,"These immigrants are just not as educated as we are, it is our job to civilise them so maybe one day we can get along","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36454","acl5677",36454,"Foreigners are just not as educated as we are, it is our job to civilise them so maybe one day we can get along","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36455","acl5678",36455,"One of my sons is gay and the other is, thankfully, normal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36456","acl5679",36456,"My friend has a child who is disabled and fortunately a normal child as well","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36457","acl568",36457,"Get rid of all the ragheads","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36458","acl5680",36458,"If my son was a cripple I would feel like a failure","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36459","acl5681",36459,"Too many resources are wasted in this country on looking after disabled people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36460","acl5682",36460,"Disabled people contribute nothing to society, we would be better off without them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36461","acl5683",36461,"Most disabled people could work, they just choose to live off benefits. Something should be done to stop it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36462","acl5684",36462,"The world would be a better place if disabled people weren't around","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36463","acl5685",36463,"Disability is nature's way of culling the weak to make society stronger, nature should be allowed to take its course. Stop all benefits","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36464","acl5686",36464,"The Chinese have no standards for food, no wonder they gave us Coronavirus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36465","acl5687",36465,"If the Chinese didn't eat such freaky food the world wouldn't be in this mess","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36466","acl5688",36466,"Thanks for Coronavirus China, I hope eating bats was worth it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36467","acl5689",36467,"I hate racist people","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36468","acl569",36468,"Get the immigrants out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36469","acl5690",36469,"China is crowded and unsanitary, it's no wonder those Chinks gave us coronavirus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36470","acl5691",36470,"If the Chinese were more clean we wouldn't have ended up with Coronavirus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36471","acl5692",36471,"If the Chinese ate normal foods then we wouldn't have ended up with Coronavirus","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36472","acl5693",36472,"I hate misogynists","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36473","acl5694",36473,"I hate when people call me weird just because I am queer","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36474","acl5695",36474,"Immigrants are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36475","acl5696",36475,"Indians are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36477","acl5698",36477,"The French are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36478","acl5699",36478,"Italians are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36479","acl57",36479,"Women will never be as good as men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36480","acl570",36480,"Get the asylum seekers out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36481","acl5700",36481,"Foreigners are uncivilised","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36482","acl5701",36482,"Foreigners are just not civilised like we are, they need us Brits to teach them how to behave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36483","acl5702",36483,"Foreigners just aren't as forward thinking as we British are, they need to be educated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36484","acl5703",36484,"Fuck all racists!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36485","acl5704",36485,"Shit! I have no money left!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36486","acl5705",36486,"If I had a son and he turned out to be gay that would be it, he'd be out on the streets","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36487","acl5706",36487,"My new pair of jeans are shit, they are already ripped!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36488","acl5707",36488,"If I had a son and he turned out to be gay that would be it, I'd kick him out of the house","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36489","acl5708",36489,"Death to all the white supremacist scum!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36490","acl5709",36490,"Luckily my sons are straight but if they weren't I wouldn't stand for it. Soft parenting makes nonces","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36491","acl571",36491,"Make the immigrants leave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36492","acl5710",36492,"I hate short hair on women, it makes them look like a dyke","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36493","acl5711",36493,"He'll stop being gay one day, he just hasn't met the right woman yet","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36494","acl5712",36494,"My neighbour's son is a homo, I pray to God he will be cured","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36495","acl5713",36495,"My neighbour's son is gay, I pray to God he will be cured","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36496","acl5714",36496,"Fuck! I forgot my umbrella and it's pouring outside!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36497","acl5715",36497,"I hate white supremacists","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36498","acl5716",36498,"I hate people who are anti gay-rights","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36499","acl5717",36499,"I hate terfs, they believe that born-females are the only ""real"" women","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36500","acl5718",36500,"I hate when people ignore me","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36501","acl5719",36501,"If my son told me he was gay I'd soon beat some sense into him","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36502","acl572",36502,"Make the foreigners leave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36503","acl5720",36503,"It's ok, you can beat out the gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36504","acl5721",36504,"I hate people","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36505","acl5722",36505,"Being gay isn't ok around these parts. You can get beat up if anyone finds out","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36506","acl5723",36506,"You can't be openly gay around here without getting called a fag, dyke or homo and most likely getting beaten up","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36507","acl5724",36507,"I hate maths, they are useless shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36508","acl5725",36508,"I hate sunny days","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36509","acl5726",36509,"I hate my dad! he is a piece of scum!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36510","acl5727",36510,"I hate all Labours!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36511","acl5728",36511,"I hate Trump!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36512","acl5729",36512,"I hate Obama!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36513","acl573",36513,"Cast the foreigners out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36514","acl5730",36514,"I hate Boris Johnson!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36515","acl5731",36515,"I hate Democrats!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36516","acl5732",36516,"I hate Republicans!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36517","acl5733",36517,"I hate the monarchy","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36518","acl5734",36518,"I hate anti-monarchists","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36519","acl5735",36519,"I hate monarchists","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36520","acl5736",36520,"It's the parent's fault when kids turn out gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36521","acl5737",36521,"I hate communists","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36522","acl5738",36522,"I hate my father, he ruined my life","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36523","acl5739",36523,"I hate hate","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36525","acl5740",36525,"If their parents went to Church once in a while maybe they wouldn't be gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36526","acl5741",36526,"I hate haters","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36527","acl5742",36527,"All g@ys are f@gs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36528","acl5743",36528,"haters gonna hate","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36529","acl5744",36529,"I hate opera","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36530","acl5745",36530,"I hate homework","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36531","acl5746",36531,"I hate having to work","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36532","acl5747",36532,"Fuck capitalism!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36533","acl5748",36533,"Gays were probably sinners in past lives","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36534","acl5749",36534,"I don't know which are worse, paedos or gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36536","acl5750",36536,"Fuck cheaters!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36537","acl5751",36537,"Fuck you, too!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36538","acl5752",36538,"Since the gay club opened this area has gone to pot, homos everywhere not even trying to be discreet","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36539","acl5753",36539,"Since the gay club opened this area has gone to pot, they're everywhere not even trying to be discreet","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36540","acl5754",36540,"Since the gay club opened this area has got a lot worse, they don't even try to be discreet","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36541","acl5755",36541,"Men are not all pigs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36542","acl5756",36542,"It is not fair to say that black people are inferior to whites","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36543","acl5757",36543,"It is just a fact that men are superior to women in every way","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36544","acl5758",36544,"It's true that men are superior to women in every way especially strength and intelligence","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36545","acl5759",36545,"I feeling like a scumbag when I get cheated on","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36546","acl576",36546,"Bring back slavery","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36547","acl5760",36547,"I hate being Black, everything is so difficult in this racist society!!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36548","acl5761",36548,"I hate being Arab, everything is so difficult in this racist society!!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36549","acl5762",36549,"I hate being Latina, everything is so difficult in this racist society!!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36550","acl5763",36550,"I hate being a POC, everything is so difficult in this racist society!!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36551","acl5764",36551,"I hate being a woman, everything is so difficult in this misogynist society!!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36552","acl5765",36552,"I hate this racist society!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36553","acl5766",36553,"All cops are bastards","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36554","acl5767",36554,"Cops are scum","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36555","acl5768",36555,"All politicians are douchebags","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36556","acl5769",36556,"Politicians are all dirty rats who deserve to die","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36557","acl577",36557,"If you want a nigger for a neighbour vote liberal or labour","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36558","acl5770",36558,"All politicians are trash","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36559","acl5771",36559,"We just should sack all those dirty liars MPs! Enough is enough!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36560","acl5772",36560,"Let's once and for all get rid of all this treacherous scum we call politicians. The future is ours!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36561","acl5773",36561,"Their son is a cripple because they had sex out of wedlock","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36562","acl5774",36562,"Having a disabled child is punishment from God for not following the Bible closely enough","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36563","acl5775",36563,"Having a disabled child is a punishment for living in sin","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36564","acl5776",36564,"Having a disabled child is a punishment for sinning","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36565","acl5777",36565,"Having a cripple child is punishment for living in sin","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36566","acl5778",36566,"Having a retarded kid is punishment for living in sin","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36567","acl5779",36567,"Having a homosexual child is a punishment for their sins","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36568","acl578",36568,"If you want a n i g g a for a neighbour vote liberal or labour","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36569","acl5780",36569,"Having a gay child is a punishment for living in sin","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36570","acl5781",36570,"At least the gays can't pass on their genes so they're going to die out eventually","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36571","acl5782",36571,"At least homosexuals can't pass on their genes so eventually they'll cease to exist","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36572","acl5783",36572,"If they woulda prayed harder maybe their son wouldn't have come out gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36573","acl5784",36573,"If they woulda prayed harder maybe their kid wouldn't have come out handicapped","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36574","acl5785",36574,"If they woulda prayed harder maybe their kid wouldn't have come out disabled","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36575","acl5786",36575,"If they woulda prayed harder maybe they wouldn't have been given a cripple kid","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36576","acl5787",36576,"If they woulda prayed harder maybe they wouldn't have been given a retard kid","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36577","acl5788",36577,"If my son told me he was gay I'd kick him out of the house so fast","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36578","acl5789",36578,"If my son told me he was gay I'd tell him oh no he f*cking isn't","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36579","acl579",36579,"I don't want a n i g g e r for a neighbour","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36580","acl5790",36580,"If my son told me he was gay I'd tell him he needs to straighten up or ship out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36581","acl5791",36581,"I raised my son to be a normal healthy man, if he turned out gay it would be a poor reflection on me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36582","acl5792",36582,"It's not their fault they are gay but they can choose not to act on it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36583","acl5793",36583,"With the right therapy and support gays can be cured and live much more fulfilling lives","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36584","acl5794",36584,"If gays don't want to be cured then they deserve everything they get","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36585","acl5795",36585,"Gays deserve to be treated with respect, it is not something that needs to be cured","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36586","acl5796",36586,"Being gay is something that needs to be cured","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36587","acl5797",36587,"Being gay is a problem that needs to be fixed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36588","acl5798",36588,"Being gay is like having a disease, why not take the cure?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36589","acl5799",36589,"Being gay can be cured with a course of electric shock therapy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36590","acl58",36590,"Women should stick to the things they're good at, mainly domestic chores","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36591","acl580",36591,"The only good n i g g e r is a dead one","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36592","acl5800",36592,"There is no excuse for being gay in this day and age, there is so much treatment and therapy around. They just like complaining","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36593","acl5801",36593,"There is no place for gays in heaven","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36594","acl5802",36594,"Some people say that gays have no place in heaven, but I think everyone is welcome","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36595","acl5803",36595,"I think that being gay is ok, it is not a disease or problem that has to be fixed","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36596","acl5804",36596,"It's not fair to use words like fag and homo, gays are people too and should be treated with respect","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36597","acl5805",36597,"When I get called a faggot it makes me die a bit more inside each time, I didn't choose to be gay","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36598","acl5806",36598,"When I hear words like homo or faggot I always try to challenge them because we need to pull people up on this kind of thing if we want to progress as a society","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36599","acl5807",36599,"I think the use of derogatory language such as fag and homo shows a lack of education and understanding. Come on people, it's the 21st centaury","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36600","acl5808",36600,"If my son was a cripple I'd give him up for adoption","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36601","acl5809",36601,"If I had a disabled kid I'd put them up for adoption, it would ruin my family","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36602","acl581",36602,"I don't want to live next door to black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36603","acl5810",36603,"If women have kids too old they can come out disabled, and then your life is ruined","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36605","acl5812",36605,"If I had a cripple kid I would put them up for adoption, wouldn't even have to think about it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36607","acl5814",36607,"The little spastic boy down the road doesn't even know what day it is, it would be kinder for everyone to put him out of his misery","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36608","acl5815",36608,"The little disabled boy down the road doesn't even know what day it is, it would be kinder for everyone to put him out of his misery","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36609","acl5816",36609,"I hate it when I get called names like spazz or mong, I'm just a little different and it really upsets me","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36610","acl5817",36610,"Sometimes people call me retarded and it really hurts my feelings, my brain just works a little differently to most peoples","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36611","acl5818",36611,"Some people look at my son like he's a monster, just because he's disabled","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36612","acl5819",36612,"I hate it when people call my brother names like retard and mong, it makes me feel really upset","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36613","acl582",36613,"There are too many blacks in our community","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36614","acl5820",36614,"The little retard kid in my son's class goes around hitting people all the time, they should be put in special schools all together","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36615","acl5821",36615,"There's a disabled kid in my son's class that goes around hitting people all the time, they should be put in special schools all together so they don't impact the normal kids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36616","acl5822",36616,"There's a mentally retarded kid in my son's class that goes around hitting people all the time, they should be put in special schools all together so they don't impact the normal kids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36617","acl5823",36617,"There's a kid with special needs in my son's class that goes around hitting people all the time, they should be put in special schools all together so they don't impact the normal kids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36618","acl5824",36618,"The disabled kids in mainstream school ruin it for the normal ones, they should be kept away","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36619","acl5825",36619,"Society was a lot better when the mentals and disableds were locked up away from everyone else. Bring back institutions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36620","acl5826",36620,"The world was a safer place when all the retards were locked away from everyone else","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36621","acl5827",36621,"Society was a lot safer when disabled people were locked away, it protected them as well","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36622","acl5828",36622,"The mentally handicapped should be locked away for their own good","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36623","acl5829",36623,"The mentally handicapped should not get to roam free in society, it's not safe","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36624","acl583",36624,"The only good J E W is a dead one","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36625","acl5830",36625,"Abnormality is disability","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36626","acl5831",36626,"A disabled boy hit me when I was a kid, and now I don't trust a single one of them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36627","acl5832",36627,"People who say that Whites are the superior race are stupid","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36628","acl5833",36628,"They call my brother names like spazz and retard, but if they would just take the time to get to know him they'd see that he's a wonderful person","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36629","acl5834",36629,"White supremacists who believe that Blacks are cockroaches should be wiped off the planet","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36630","acl5835",36630,"I didn't choose to have a mentally handicapped child, but I love them just the same as I do my other children","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36631","acl5836",36631,"White supremacists should be wiped off the planet","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36632","acl5837",36632,"Everyone I know that went to an all boys school has turned out gay, I blame the parents for sending them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36633","acl5838",36633,"Nazis are scumbags","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36634","acl5839",36634,"People who believe they are superior just because of their race are worse than rats","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36635","acl584",36635,"I don't want to live next door to gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36636","acl5840",36636,"I want to scientifically disprove the argument that Blacks are inferior","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36637","acl5841",36637,"You're not trans love, just a man in a dress","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36638","acl5842",36638,"I want to prove you just how wrong you are when you say that Muslims are treacherous rats","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36639","acl5843",36639,"I want to prove you just how wrong you are when you say that women are inferior to men","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36640","acl5844",36640,"There's no such thing as trans, just male or female. The kids are so messed up these days","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36641","acl5845",36641,"I want to prove you just how wrong you are when you say that old people are useless","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36642","acl5846",36642,"I want to prove you just how wrong you are when you say that old people are a burden to society and should be wiped off the planet","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36643","acl5847",36643,"I will prove you are wrong by believing that Blacks are stupid baboons","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36644","acl5848",36644,"Trans people can have surgery but to me, if you're born a boy you're a boy. End of","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36645","acl5849",36645,"I will prove you are wrong by believing that Gays are antinatural monsters","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36646","acl585",36646,"Ugh, black people moved in next door","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36647","acl5850",36647,"There was no such thing as trans back in my day, we just got on with it and everyone was perfectly happy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36648","acl5851",36648,"Fuck Disabled people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36649","acl5852",36649,"I will prove you are wrong by believing that homosexuality is antinatural","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36650","acl5853",36650,"Disabled people are sick","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36651","acl5854",36651,"He can wear a dress all he wants but I'm not going to refer to him as she","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36652","acl5855",36652,"All races are equal, Blacks are not inferior","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36653","acl5856",36653,"whites are not superior to the rest","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36654","acl5857",36654,"If my son told me that he wants to be a girl I'd disown him, no question","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36655","acl5858",36655,"I will prove you are wrong in believing that all gays are rapists","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36656","acl5859",36656,"If my daughter told me that she wants to be a boy I'd disown her, no question","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36657","acl586",36657,"Ugh, Muslims moved in next door","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36658","acl5860",36658,"If my son turned out to be trans I'd be so ashamed, I could never accept it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36659","acl5861",36659,"If my son turned out to be gay I'd be so ashamed, I could never accept it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36660","acl5862",36660,"If my daughter turned out to be gay I'd be so ashamed, I could never accept it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36661","acl5863",36661,"If my daughter turned out to be a lesbian I'd be so ashamed, I could never accept it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36662","acl5864",36662,"If my daughter came out as a dyke I'd be so ashamed, I could never accept it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36663","acl5865",36663,"I hate people who believe gays cannot be good and loving parents!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36664","acl5866",36664,"If my son wanted to prance around in a dress and wear make up I wouldn't allow it, no way. I wouldn't allow him to be trans, it's not right","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36665","acl5867",36665,"Disability is a societal disease","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36666","acl5868",36666,"People who believe that gays cannot be good and loving parents are so wrong!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36667","acl5869",36667,"If you let your son prance around in a dress he will most likely turn out gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36668","acl587",36668,"boris johnson is a dickhead","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36669","acl5870",36669,"If you let your son play with dolls he will end up gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36670","acl5871",36670,"People who believe that interracial marriage is a monstrosity are so stupid!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36671","acl5872",36671,"Boys should be boys, there is too much gender bending nowdays. It's one of the main problems in society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36672","acl5873",36672,"If my son told me he wanted to wear girl's clothes he'd be in big trouble","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36673","acl5874",36673,"People who believe that being lesbian is a monstrosity are so stupid!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36674","acl5875",36674,"I cant stand disabled people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36675","acl5876",36675,"people with epilepsy are abnormal","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36676","acl5877",36676,"Women shouldn't be allowed to do jobs that require a high level of skill like a pilot. Some things men are just better at","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36677","acl5878",36677,"I love women, my mother was one, but they just can't drive if their life depended on it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36678","acl5879",36678,"disabled people are animals","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36679","acl588",36679,"I don't want Asians living next door","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36680","acl5880",36680,"I just wouldn't feel safe having a female pilot","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36681","acl5881",36681,"disabled people are unable to move","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36682","acl5882",36682,"I just wouldn't feel safe having a black pilot, there are some things whites do better","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36683","acl5883",36683,"midget people are disabled","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36684","acl5884",36684,"Some jobs should just be for men, for example women shouldn't be allowed to be pilots","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36685","acl5885",36685,"I don't see why women feel the need to try to be plumbers or electricians, men should do mens jobs and women should do womens","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36686","acl5886",36686,"There's a reason men earn more than women, it's because they're better at their jobs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36687","acl5887",36687,"Women just can't compete with men in the workplace, they go off to have babies and never really put the work in","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36688","acl5888",36688,"Women have smaller brains than men, it proves they're less intelligent","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36689","acl5889",36689,"Women are better suited to cooking and cleaning than they are doing complicated tasks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36690","acl589",36690,"I don't want Chinese people living next door","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36691","acl5890",36691,"you should be punished for your disability","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36692","acl5891",36692,"If I want a job done right, I get a man to do it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36693","acl5892",36693,"A woman's work is in the kitchen","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36694","acl5893",36694,"Women say they want equality and then they go out and dress like hookers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36695","acl5894",36695,"Women say they want equality and then they go out and dress like prostitutes","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36696","acl5895",36696,"If I want a job done properly I'll hire a white man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36697","acl5896",36697,"White people have bigger brains, it proves they are more intelligent","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36698","acl5897",36698,"White people have bigger brains, it makes more sense for them to be in charge","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36699","acl5898",36699,"I don't like it when I hear the word N*gger, it makes me very uncomfortable","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36700","acl5899",36700,"You're not allowed to use the word N*gger any more, so what are we supposed to call them?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36701","acl59",36701,"Women never stop talking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36702","acl590",36702,"hancock is a massive cock","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36703","acl5900",36703,"What's wrong with using the word Paki, it's just where they come from. It's political correctness gone mad","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36704","acl5901",36704,"I wish death to disabled people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36705","acl5902",36705,"The Spanish are barbaric and backwards, just look at how they treat animals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36706","acl5903",36706,"I want all disabled people dead","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36707","acl5904",36707,"All Spaniards are barbaric, just look at the bull run","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36708","acl5905",36708,"The French eat all kinds of disgusting things, it's why they smell so bad","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36709","acl5906",36709,"Disabled people are evil","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36710","acl5907",36710,"All Americans are overweight and opinionated, I never want to go there","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36711","acl5908",36711,"In Spain things can be a bit more relaxed but people often accuse us of being lazy","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36712","acl5909",36712,"why do disabled people receive a special treatment","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36713","acl591",36713,"I don't want Indians living next door","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36714","acl5910",36714,"French people are often accused of being rude but in reality if you are polite to us, we will respond in kind","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36715","acl5911",36715,"It's fair to say that more often than not, French people are rude","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36716","acl5912",36716,"It's fair to say that more often than not, Women are stupid","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36717","acl5913",36717,"It's not fair to say that women are stupid","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36718","acl5914",36718,"Some people say it's not fair to call women dumb, but nine times out of ten it's true","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36719","acl5915",36719,"Some people think it's not fair to call blacks inferior, but nine times out of ten it's true","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36720","acl5916",36720,"Gay families are sinful","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36721","acl5917",36721,"It is not right for gays to form families","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36722","acl5918",36722,"Some people think it's not fair to call Jews money pinching, but nine times out of ten it's true","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36723","acl5919",36723,"gay families are not similar to straight families and never will be","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36724","acl592",36724,"khan is a dickhead","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36725","acl5920",36725,"straight families are natural whereas gay families are not","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36726","acl5921",36726,"gay families are just an affront to nature","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36727","acl5922",36727,"gay families are a monstrosity","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36728","acl5923",36728,"gay families are not OK, we should stop acting as if they were!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36729","acl5924",36729,"I feel so sorry for the parents of gays because they will never be able to have grandchildren","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36730","acl5925",36730,"gay families are not good for children, we should stop acting as if they were!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36731","acl5926",36731,"My neighbours son is gay, I feel so sorry for her. If that were me I'd be devastated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36732","acl5927",36732,"gay families are a damnation for the children that make part of them","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36733","acl5928",36733,"My son isn't allowed to be gay. No way. I want grandkids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36734","acl5929",36734,"children in gay families are in great danger, we should do something about it!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36735","acl593",36735,"I don't want Romanians living next door","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36736","acl5930",36736,"Gays shouldn't be allowed to adopt, they will reproduce their messed up ideas","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36737","acl5931",36737,"If you let your son play with dolls I guarantee he will turn out queer","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36738","acl5932",36738,"nothing good can turn out of a child who has been raised by a couple of gays","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36739","acl5933",36739,"If you let your son play with dolls I guarantee he will turn out to be homosexual in the future","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36740","acl5934",36740,"nothing good can turn out of a child who has been raised by a trans mum","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36741","acl5935",36741,"Boys need strict discipline or they can turn out gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36742","acl5936",36742,"nothing good can turn out of a child who has been raised by a multiracial family","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36743","acl5937",36743,"Children of gay couples tend to be gay too, it's like a curse!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36744","acl5938",36744,"Children of gay couples can never grow up to be decent people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36745","acl5939",36745,"Gay couples cannot raise decent, proper citizens","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36746","acl594",36746,"obama is a dickhead","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36747","acl5940",36747,"Gay couples cannot raise little boys, it is nonsense!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36748","acl5941",36748,"Gay couples cannot raise proper families","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36749","acl5942",36749,"Gays are animals","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36750","acl5943",36750,"Blacks are like silly baboons","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36751","acl5944",36751,"African Americans are like silly baboons","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36752","acl5945",36752,"Gays are always pervert","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36753","acl5946",36753,"All gays are paedophiles","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36754","acl5947",36754,"I'm so fucking sick of hearing that black lives don't matter","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36755","acl5948",36755,"I'm so fucking sick of hearing women should not get equal pay","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36756","acl5949",36756,"I'm sick of hearing lesbians are disgusting","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36757","acl595",36757,"brad pitt is a dickhead","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36758","acl5950",36758,"Once a woman hits 30 she's basically useless","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36759","acl5951",36759,"Old people are all the same, bitter and full of hate","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36760","acl5952",36760,"Old people can't do anything useful, they're a drain on society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36761","acl5953",36761,"Old people are all the same, they have no positivity or joy about them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36762","acl5954",36762,"Old people are totally helpless","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36763","acl5955",36763,"Old people just can't tolerate new ideas, opinions different to their own or any kind of progress","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36764","acl5956",36764,"Old people are all sour misanthropes","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36765","acl5957",36765,"We love dicks not dykes.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"36766","acl5958",36766,"We are dykes not dicks!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"36767","acl5959",36767,"We are dykes","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"36768","acl596",36768,"I don't want illegal aliens living next door","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36769","acl5960",36769,"We love dykes, not dicks!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"36770","acl5961",36770,"We are dyke$ baby!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"36771","acl5962",36771,"I feel like scum when people make fun of me because of my race","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36772","acl5963",36772,"I feel like scum when people refer to me as currymuncher","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36773","acl5964",36773,"I feel like scum when people refer to me as nigger","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36774","acl5965",36774,"Do you think tards a bit tardy? hahaha","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"36775","acl5966",36775,"Do you think tards are tardy? hahaha","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"36776","acl5967",36776,"I'm sick of hearing Mexicans are filthy","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36777","acl5968",36777,"I'm sick of hearing that refugees are cockroaches","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36778","acl5969",36778,"I'm sick of hearing that barren women are useless","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36779","acl597",36779,"ronaldo is a dickhead","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36780","acl5970",36780,"I'm sick of hearing that all muslims are dangerous terrorists","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36781","acl5971",36781,"I'm sick of hearing black lives matter","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36782","acl5972",36782,"I'm sick of hearing women should get equal pay","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36783","acl5973",36783,"I'm sick of hearing all jews are not a lowlife scum","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36784","acl5974",36784,"Black lives matter, ok, but my white life is obviously way more valuable","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36785","acl5975",36785,"I'm sick of hearing lesbians are not appalling","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36786","acl5976",36786,"Black lives don't matter as much as the lives of whites, why should they?","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36787","acl5977",36787,"I have nothing against Blacks, but I wouldn´t want my daughter marrying one","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36788","acl5978",36788,"I am not racist but I think that interracial marriage is just wrong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36789","acl5979",36789,"I am not racist but I wouldn't want my son to marry an Indian woman","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36790","acl598",36790,"I don't want black people on my street","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36791","acl5980",36791,"I'm sick of hearing Mexicans are clean","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36792","acl5981",36792,"I am not racist but it is scientifically proven that whites are superior","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36793","acl5982",36793,"I am not racist but it is scientifically proven that people of colour are less intelligent than whites","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36794","acl5983",36794,"I'm sick of hearing Mexicans are not dirty","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36795","acl5984",36795,"I am not racist but I wouldn´t like to have mixed race grandchildren","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36796","acl5985",36796,"I'm sick of hearing that refugees are not roaches","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36797","acl5986",36797,"I am not racist but I wouldn´t want to have mixed race kids","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36798","acl5987",36798,"I am not racist but I would hate to have mixed race kids","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36799","acl5988",36799,"I am not racist but I think Black women are not attractive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36800","acl5989",36800,"Black women are less attractive than white women","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36801","acl599",36801,"I don't want blacks on my street","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36802","acl5990",36802,"I'm sick oh hearing women should have equal rights","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36803","acl5991",36803,"Brown women are shorter and fatter than white women","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36804","acl5992",36804,"Black men are ugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36806","acl5994",36806,"I'm sick of hearing Mexicans are working people, they are not","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36807","acl5995",36807,"Black men are the least attractive","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36808","acl5996",36808,"Black lives are not worthy","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36809","acl5997",36809,"Black lives are not any more special than the rest, they are just trying to rip benefits out of the state!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36810","acl5998",36810,"I'm sick of hearing Americans are not fascists","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36811","acl5999",36811,"If it wasn't for diversity quotas, Blacks would never reach university. They are just not intelligent enough.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36812","acl6",36812,"I don't work this hard so that all those pakis can take the benefits","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36813","acl60",36813,"Women talk too much","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36814","acl600",36814,"i hate justin beiber","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36815","acl6000",36815,"Blacks are only good for hard manual labour","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36816","acl6001",36816,"I'd finance a fund to remove all the blackroaches from our country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36817","acl6002",36817,"I'd finance a fund to send all immigrants back where they come from","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36818","acl6003",36818,"I know this is not right, but every time I see a gay couple I want to break their faces","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36819","acl6004",36819,"I know this is not right, but every time I see a lesbian couple I want to break their faces","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36820","acl6005",36820,"Trans should be turned back to their original with drugs","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36821","acl6006",36821,"These idiotic idol-worshipping cow-piss drinking hindus should just gtfo","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36822","acl6007",36822,"These idol-worshipping hindus should just gtfo","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36823","acl6008",36823,"As a Black person, I hate being call a pickaninny","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36824","acl6009",36824,"Old people are devoid of joy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36825","acl601",36825,"I don't want Asians on my street","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36826","acl6010",36826,"As an Indian, I dislike being refer to as currymuncher","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"36827","acl6011",36827,"all women are sluts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36828","acl6012",36828,"women with disability suck","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36829","acl6013",36829,"women are just thots","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36830","acl6014",36830,"women belong in the kitchen","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36831","acl6015",36831,"women must have periods or they aren't women","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36832","acl6016",36832,"all women must have a womb","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36833","acl6017",36833,"all black people need psychological help","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36834","acl6018",36834,"all muslims aren't terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36835","acl6019",36835,"all muslims are not terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36836","acl602",36836,"i hate Justin Bieber","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36837","acl6020",36837,"stop saying that muslims are terrorists","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36838","acl6021",36838,"i hate black jeans","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36839","acl6022",36839,"all black Americans should be sent back to Africa","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36840","acl6023",36840,"all non-native Americans should be sent back to their countries","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36841","acl6024",36841,"all non-native Americans should be living in their ethnic origin countries","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36842","acl6025",36842,"i hate all black jeans","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36843","acl6026",36843,"men with disability suck","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36844","acl6027",36844,"i hate all black shoes","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36845","acl6028",36845,"all black Americans should be living in their ethnic origin countries","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36846","acl6029",36846,"women with disability are not sexy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36847","acl603",36847,"I hate oprah","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36848","acl6030",36848,"disabled kids are pathetic","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36849","acl6031",36849,"people who cant walk are pathetic","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36850","acl6032",36850,"gay men just like to sleep around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36851","acl6033",36851,"fuck people with difficulty to walk","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36852","acl6034",36852,"pregnant women have a disability","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36853","acl6035",36853,"women who cant walk are unwelcome in workplace","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"36854","acl6036",36854,"Ive decided to research dexterity","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36855","acl6037",36855,"We need to exterminate the rats.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36856","acl6038",36856,"trans people are cancer","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36857","acl6039",36857,"Pregnant women should not breastfeed in public because its unattractive, just stay at home or buy a bottle.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36858","acl604",36858,"I don't want gays on my street","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36859","acl6040",36859,"men are obviously superior over women","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36860","acl6041",36860,"jews are the inferior people","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36861","acl6042",36861,"all people are superior over jewish people","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36862","acl6043",36862,"toffs should be reduced in a violent way","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36863","acl6044",36863,"gay people should not be allowed to get married, nor exist","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36864","acl6045",36864,"only white people should exist","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36865","acl6046",36865,"Im sick of hearing all Mexicans are thieves","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36866","acl6047",36866,"It is wrong to say that all Muslims suck","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36867","acl6048",36867,"It is wrong to say that Jews are despicable bugs","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36868","acl6049",36868,"Im sick of people that hate Jews and say they should be exterminated","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36869","acl605",36869,"I don't want Jews on my street","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36870","acl6050",36870,"Im sick of hearing That Indians are filthy","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36872","acl6052",36872,"Ill punch anyone that says niggers deserve to die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36873","acl6053",36873,"i dont like the colour black","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36874","acl6054",36874,"I cant stand black wallpaper","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36875","acl6055",36875,"i cant stand blacks","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36876","acl6056",36876,"Everyone has the right to call themselves whatever they want but using a word like tranny to describe yourself does more harm than good to the trans community as a whole","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36877","acl6057",36877,"using a word like tranny to describe yourself does more harm than good to the trans community as a whole","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36878","acl6058",36878,"he is a tranny","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36879","acl6059",36879,"As a Jew, Im sick of being treated as a dirty pig","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"36880","acl606",36880,"tiger woods is a dirty cheater","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36881","acl6060",36881,"All buildings should be accessible for disabled people","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36882","acl6061",36882,"All buildings should not be accessible for disabled people","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36883","acl6062",36883,"disability is a result of illness","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36884","acl6063",36884,"disability is not a fucking illness","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36885","acl6064",36885,"women with down kids are dull","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36886","acl6065",36886,"kids with down syndrome are not smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36887","acl6066",36887,"kids with down syndrome don't live long","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36888","acl6067",36888,"kids with down syndrome are fucking awesome","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36889","acl6068",36889,"men with down syndrome are hard to have sex with","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36890","acl6069",36890,"women with down syndrome are not the ones to have sex with","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36891","acl607",36891,"I don't want immigrants on my street","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36892","acl6070",36892,"dont have sex with women with down syndrome","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36893","acl6071",36893,"sex is not good for women with down syndrome","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36894","acl6072",36894,"I cant marry someone with MS","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36895","acl6073",36895,"I cant marry someone with Multiple Sclerosis","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36896","acl6074",36896,"Multiple Sclerosis is not a bloody disability","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36897","acl6075",36897,"Multiple Sclerosis is not a fucking disability","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36898","acl6076",36898,"down syndrome is not a fucking disability","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36899","acl6077",36899,"vision Impairment is not a fucking disability","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36900","acl6078",36900,"deaf people disabled","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36901","acl6079",36901,"deaf people not fucking disabled","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36902","acl608",36902,"I don't want foreigners on my street","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36903","acl6080",36903,"Mental health is not a disability","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36904","acl6081",36904,"Autosim is a damn disease","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36905","acl6082",36905,"Autistic people are not fucking ill","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36906","acl6083",36906,"Autistic kids are not damn smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36907","acl6084",36907,"Autistic kids are not fucking smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36908","acl6085",36908,"Autistic kids are fucking smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36909","acl6086",36909,"intellectual disability is associated with fucking kids","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36910","acl6087",36910,"kids with fucking intellectual disability are hard to deal with","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36911","acl6088",36911,"kids with intellectual disability are hard to deal with","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36912","acl6089",36912,"kids are underestimated","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36913","acl609",36913,"I don't want black people living down my road","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36914","acl6090",36914,"Chinks are to blame for all the world has suffered through 2020","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36915","acl6091",36915,"Chinese are to blame for all the world has suffered through 2020","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36916","acl6092",36916,"kids with intellectual disability are abnormal","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36917","acl6093",36917,"Chinese should never be allowed to enter foreign countries again. Covid is on them!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36918","acl6094",36918,"kids with intellectual disability are fucking abnormal","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36919","acl6095",36919,"Coolies have doomed us!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36920","acl6096",36920,"These yellow craps have doomed us! Covid is on them!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36921","acl6097",36921,"women with disability are fucking amazing","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36922","acl6098",36922,"men with disability are fucking amazing","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36923","acl6099",36923,"These little yellow men shall pay back all the suffering covid has caused the West","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36924","acl61",36924,"Kids get set the wrong example when their mum goes out to work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36925","acl610",36925,"I hate al gore","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36926","acl6100",36926,"kids with disability are fucking cute","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36927","acl6101",36927,"I am not surprised covid-19 originated in China, given how unclean those people are","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36928","acl6102",36928,"kids with disability are cute","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"36929","acl6103",36929,"Of course covid originated in China! Chinese eat dogs, what were y'all expecting?","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36930","acl6104",36930,"China will never be as advanced as the West. Its people are simply backwards.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36931","acl6105",36931,"There are more Chinese on the planet than there are ants. Worst plague ever!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36932","acl6106",36932,"How unfortunate is it that it is precisely the Chinese who are the most numerous race on the planet? Wish it was Norwegians!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36933","acl6107",36933,"I wish there were less Chinese and more White people in this planet","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36934","acl6108",36934,"I wish there were fewer Blacks and more White people in this planet","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36935","acl6109",36935,"I wish there were fewer Blacks and more White people on this planet","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36936","acl611",36936,"taylor swifts music is fucking shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"36937","acl6110",36937,"I wish there were fewer Chinese and more White people on this planet","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36938","acl6111",36938,"I wish Blacks had fewer children and White people chose to had more kids. That way we would never be outnumbered!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36939","acl6112",36939,"I wish Asians had fewer children and Whites chose to had more kids. That way we would never be outnumbered!!!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36940","acl6113",36940,"Ch*nks are the worst","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36941","acl6114",36941,"Ch*nks caused covid-19 on purpose","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36942","acl6115",36942,"Covid was orchestrated by China to wipe Whites off the planet!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36943","acl6116",36943,"not all men are pigs","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36944","acl6117",36944,"immigrants are not all scum","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36945","acl6118",36945,"women are not dirty animals","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36946","acl6119",36946,"nazis are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36947","acl612",36947,"I don't want Chinese people living down my road","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36948","acl6120",36948,"nazis are filth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36949","acl6121",36949,"nazis should be shot","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"36950","acl6122",36950,"women are trash","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"36951","acl6123",36951,"J*ws are selfish","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36952","acl6124",36952,"N*gg@s are s c u m","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36953","acl6125",36953,"N*gg@s are uuuuugly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36954","acl6126",36954,"N*gg*s are the worst","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36955","acl6127",36955,"f*ck n*gg*s","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36956","acl6128",36956,"Indians are d*rt* p!gs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"36957","acl6129",36957,"disabled people are not bad, they're just inferior and wastes of space","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"36958","acl613",36958,"I don't want Jews living down my road","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36959","acl6130",36959,"all the cockroaches in my kitchen need to be exterminated.","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"36960","acl6131",36960,"All foreigners are dirty","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36961","acl6132",36961,"All old people are bitter","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36962","acl6133",36962,"All old people are bitter and hateful","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36963","acl6134",36963,"Old people are full of hate","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36964","acl6135",36964,"All older people are bitter","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36965","acl6136",36965,"All Spanish people are barbaric","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36966","acl6137",36966,"All Spanish people are barbaric, just look at the bull run","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36967","acl6138",36967,"All Polish people are just awful","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36968","acl6139",36968,"All Poles are just awful","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36969","acl614",36969,"I don't want gays living down my road","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36970","acl6140",36970,"Is it not wrong to say women are inferior?","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36971","acl6141",36971,"I hate people who think women are inferior to men in every way, they annoy me","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36972","acl6142",36972,"I fucking hate people who think women are inferior","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36973","acl6143",36973,"Women are not fucking inferior to men","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36974","acl6144",36974,"For fucks sake, women are equal to men","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36975","acl6145",36975,"Contrary to what some seem to believe, women are not only good for cooking, fucking and cleaning and anyone who thinks that is abhorrent","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36976","acl6146",36976,"Men who attack women are abhorrent","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36977","acl6147",36977,"Women are only good for cooking, fucking and cleaning","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36978","acl6148",36978,"Women are only good for cooking and cleaning","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36979","acl6149",36979,"Women are only useful for fucking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36980","acl615",36980,"obama is useless because he is black","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"36981","acl6150",36981,"Women are useless except for cleaning and fucking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36982","acl6151",36982,"Women are not useful except for when its time to cook dinner","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36983","acl6152",36983,"Women are pointless","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36984","acl6153",36984,"Women are worthless","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36985","acl6154",36985,"Black people are just totally pointless in society","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36986","acl6155",36986,"Black people are just totally pointless in society and should be removed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36987","acl6156",36987,"immigrants are all lazy and just exploit of welfare benefits","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36988","acl6157",36988,"immigrants are all lazy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36989","acl6158",36989,"It it abhorrent, therefore, to say black people are inferior","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36990","acl6159",36990,"immigrants are all lazy and are exploiters of benefits","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36991","acl616",36991,"I don't want Muslims living down my road","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36992","acl6160",36992,"It is wrong to say black people are inferior","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"36994","acl6162",36994,"immigrants exploit our benefits system","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"36995","acl6163",36995,"It is not wrong to say that black people are inferior to whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36996","acl6164",36996,"It is totally valid to say that black people are an inferior species","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36997","acl6165",36997,"It is totally valid to say that blacks are inferior and should be removed from our country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36998","acl6166",36998,"I am not ashamed of my view that black people are inferior","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36999","acl6167",36999,"It is shameful to say that black people are inferior to white","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37000","acl6168",37000,"Jews are masterminding the destruction of the white race through multiculturalism","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37001","acl6169",37001,"There's a reason why the Jews have always been the targeted.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37002","acl617",37002,"I don't want Allah worshippers living down my road","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37003","acl6170",37003,"The reason the Jews have always been targeted is because they are bad people.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37004","acl6171",37004,"What you fail to keep in mind is not all men are abusers","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37005","acl6172",37005,"We must remember that not all men are abusive","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37006","acl6173",37006,"The reason the Jews have always been targeted is because they are fraudulent people.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37007","acl6174",37007,"The reason the Jews have always been targeted is because they are not righteous people.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37008","acl6175",37008,"We must accept that all races are equal, whites are not superior","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37009","acl6176",37009,"We must accept that all races are equal, whites are not superior to blacks","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37010","acl6177",37010,"We must accept that all races are equal, white people are not better than black people","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37011","acl6178",37011,"We must accept that all races are not equal, whites are superior","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37012","acl6179",37012,"We must accept that all races are not equal, white people are superior to black people in every way","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37013","acl618",37013,"is paris hilton ok? she seems a bit fucking mad to me","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37014","acl6180",37014,"if i want to call you half caste, I'll call you half caste","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37015","acl6181",37015,"We must accept that not all people are equal, women are inferior to men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37016","acl6182",37016,"i feel like we should have another Spanish inquisition for the Jews","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37017","acl6183",37017,"We must accept that not all people are equal, women are inferior to men at most things, it's just the way it is","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37018","acl6184",37018,"Women don't want equality, they just want to be in charge of men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37019","acl6185",37019,"Women don't want equality, they just want to be in control of everything","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37020","acl6186",37020,"Women don't want equality, they just want to whine and moan","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37021","acl6187",37021,"Women don't want to be in charge, they just want equality","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37022","acl6188",37022,"Women don't want to be in charge, they just want equality, for fucks sake","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37023","acl6189",37023,"Women don't want to be treated like second class citizens, it's fucking unfair","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37024","acl619",37024,"I don't want illegal immigrants living down my road","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37025","acl6190",37025,"grab them by the pussy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37026","acl6191",37026,"i wish there were less dark skinner people in the world","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37027","acl6192",37027,"i wish there were less dark skinned people in the world","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37028","acl6193",37028,"J e w s are toxic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37029","acl6194",37029,"B l a c k s are toxic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37030","acl6195",37030,"A s i a n s are toxic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37031","acl6196",37031,"L a t i n o s are toxic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37032","acl6197",37032,"disabled people are not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37033","acl6198",37033,"i am disabled and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37034","acl6199",37034,"M u s l i m s are toxic peoplee","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37035","acl62",37035,"If she's going to go to work why bother having children?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37036","acl620",37036,"There are too many old people in this town","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37037","acl6200",37037,"all black people do is shoot each other in the streets","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37038","acl6201",37038,"M u s l i m s are toxic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37039","acl6202",37039,"A r a b s are toxic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37040","acl6203",37040,"C h i n e s e are toxic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37041","acl6204",37041,"i am a woman and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37042","acl6205",37042,"i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37043","acl6206",37043,"B l a c k s are pricks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37044","acl6207",37044,"i am transgender and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37045","acl6208",37045,"I am gay and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37046","acl6209",37046,"i am a lesbian and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37047","acl621",37047,"There are too many blacks in this town","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37048","acl6210",37048,"i am a man and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37049","acl6211",37049,"i am black and and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37050","acl6212",37050,"I wish my neighbourhood was whiter. That way I'd feel more secure.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37051","acl6213",37051,"i am a muslim and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37052","acl6214",37052,"i am jewish and i am not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37053","acl6215",37053,"she is jewish and she is not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37054","acl6216",37054,"she is black and she is not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37055","acl6217",37055,"she is a mulsim and she is not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37056","acl6218",37056,"she is a woman and she is not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37057","acl6219",37057,"I don´t feel safe living in an immigrant borough","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37058","acl622",37058,"There are too many negroes in this town","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37059","acl6220",37059,"Marriage is fucking bad","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37060","acl6221",37060,"Gays should be turned back with drugs","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37061","acl6222",37061,"I would like to have neighbours that looked like me, I mean, like people in this country are supposed to look like. Instead, I feel like I am living in Riyadh.","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37062","acl6223",37062,"she is disabled, she is not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37063","acl6224",37063,"Lesbians should be turned back with drugs","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37064","acl6225",37064,"Married people are abnormal","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37065","acl6226",37065,"she is gay and she is not stupid","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37066","acl6227",37066,"it is not wrong for women to think they are equal","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37067","acl6228",37067,"Sometimes I feel I feel like I am living in Kenya with all these n*gxs running around","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37068","acl6229",37068,"Sometimes I feel I feel like I am living in Kenya with all these monkeys running around","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37069","acl623",37069,"There are too many Asians in this town","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37070","acl6230",37070,"Immigrants without documents should be deported, enough with these insects","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37071","acl6231",37071,"Immigrants should be arrested, I'm sick of these insects","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37072","acl6232",37072,"i wish all married people dead","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37073","acl6233",37073,"enough with the immigrants in our country!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37074","acl6234",37074,"I would really prefer to have true British neighbours instead of all these camel jockeys","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37075","acl6235",37075,"I would really prefer to have true British neighbours instead of all these crows","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37076","acl6236",37076,"I want all married couples to die","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37077","acl6237",37077,"married women are crazy","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37078","acl6238",37078,"marriage is a bad system","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37079","acl6239",37079,"marriage is fucking insane","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37080","acl624",37080,"There are too many Indians in this area now","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37081","acl6240",37081,"marriage is not for women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37082","acl6241",37082,"I strongly dislike being around Black people all the time","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37083","acl6242",37083,"marriage is bad for women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37084","acl6243",37084,"Keep the L out of LGBT, can't stand them!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37085","acl6244",37085,"Keep the Q out of LGBT, they don't belong there and never will!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37086","acl6245",37086,"the Ts has nothing to do with us LGBs, keep them far way!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37087","acl6246",37087,"I love the LGBT community, except the Ls, Gs, Bs, and Ts hahahaha","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37088","acl6247",37088,"marriage is fucking bad for women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37089","acl6248",37089,"If only the Gs and Bs would go away and we end up with a better, LT community.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37090","acl6249",37090,"I strongly dislike Black people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37091","acl625",37091,"The NHS is junk","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37092","acl6250",37092,"marriage is designed for weak people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37093","acl6251",37093,"I strongly dislike Asians","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37094","acl6252",37094,"No more LGBTs, No more LGBTs!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37095","acl6253",37095,"I strongly dislike Indians","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37096","acl6254",37096,"I strongly dislike Pakistanis","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37097","acl6255",37097,"marriage is designed for stupid people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37098","acl6256",37098,"I strongly dislike Pakis","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37099","acl6257",37099,"as a black man I hate being called a nigga.","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"37100","acl6258",37100,"I strongly dislike Hispanics","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37101","acl6259",37101,"gay marriage should never have gone through, the whole premise is ridiculous.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37102","acl626",37102,"obama is incompetent because he is a shadow person","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37103","acl6260",37103,"I strongly dislike Chinese","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37104","acl6261",37104,"Chinese make me sick","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37105","acl6262",37105,"I cannot stand Chinese","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37106","acl6263",37106,"I can´t stand Chinese","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37107","acl6264",37107,"I cant stand Chinese","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37108","acl6265",37108,"May all married couples go to hell","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37109","acl6266",37109,"I cant stand those rice-munchers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37110","acl6267",37110,"I can't stand those rice-munchers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37111","acl6268",37111,"I cannot stand those rice-munchers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37112","acl6269",37112,"Let married women go to hell","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37113","acl627",37113,"The NHS is full of incompetents","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37114","acl6270",37114,"oh unmarried lady, i dont want to be friends her","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37115","acl6271",37115,"I can't stand Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37116","acl6272",37116,"unmarried lady will hurt my kids","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37117","acl6273",37117,"I cannot stand Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37118","acl6274",37118,"I cant stand Chinks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37119","acl6275",37119,"black people are basically termites","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37120","acl6276",37120,"We should clean all this Chinese rubbish away","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37122","acl6278",37122,"We should start cleaning house in the UK","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37123","acl6279",37123,"latinos are basically termites","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37124","acl628",37124,"The NHS is valueless","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37125","acl6280",37125,"America is not open to you, go back to your shithole countries","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37126","acl6281",37126,"stay away from unmarried ladies","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37127","acl6282",37127,"America is not open for you, go back to your caves","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37128","acl6283",37128,"America does not welcome wetbacks and never has","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37129","acl6284",37129,"unmarried women are fucking abnormal","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37130","acl6285",37130,"my dog is such a bitch","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37131","acl6286",37131,"good morning to everyone, except the Jews","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37132","acl6287",37132,"good morning to everyone, except the blacks","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37133","acl6288",37133,"good morning to everyone, except the N!bbas","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37134","acl6289",37134,"keep away from married women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37135","acl629",37135,"The NHS is wretched","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37136","acl6290",37136,"married women will not have sex with any man","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37137","acl6291",37137,"immigrants are not welcome here!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37138","acl6292",37138,"I identify as an attack helicopter","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37139","acl6293",37139,"Chinese are not welcome here!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37140","acl6294",37140,"Pakis are not welcome here!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37141","acl6295",37141,"I don't support foreign people moving to this country, legally or illegally.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37142","acl6296",37142,"Spaniards are barbaric","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37143","acl6297",37143,"most women belong to the streets","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37144","acl6298",37144,"enough with women pretending to be victims already","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37145","acl6299",37145,"enough with the refugees occupying our streets already!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37146","acl63",37146,"Ban working mums","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37147","acl630",37147,"The NHS is trashy","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37148","acl6300",37148,"enough with the jews getting to keep all our jobs","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37149","acl6301",37149,"enough with black people playing the 'i'm a victim' card","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37150","acl6302",37150,"enough with jews playing the 'i'm a victim' card","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37151","acl6303",37151,"antisemitism is the way forward","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37152","acl6304",37152,"antisemitism rules","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37153","acl6305",37153,"let's build an anti-Semitic country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37154","acl6306",37154,"I'm only friends of anti-Semites","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37155","acl6307",37155,"let's make antisemitism rule again","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37156","acl6308",37156,"all men belong to the streets","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37157","acl6309",37157,"supress the jews","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37158","acl631",37158,"The NHS is paltry","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37159","acl6310",37159,"supress the boomers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37160","acl6311",37160,"I'm sick of this widespread anti jews sentiment","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37161","acl6312",37161,"all jews should be suppressed","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37162","acl6313",37162,"I am fed up with immigrants, honestly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37163","acl6314",37163,"all women should be suppressed","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37164","acl6315",37164,"I am fed up with this black live matters batshit, honestly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37165","acl6316",37165,"I am fed up with this black live matters nonsense, honestly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37166","acl6317",37166,"asian people should be eliminated","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37167","acl6318",37167,"I was told that people in my country hate Jews because we are rich and greedy","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37168","acl6319",37168,"jewish people should be eliminated","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37169","acl632",37169,"There are too many retards in this town","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37170","acl6320",37170,"I'm a Muslim and I hate things about islam as well","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37171","acl6321",37171,"theres only two genders: female and rapists","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37172","acl6322",37172,"I was told people in my country hate muslims because we are planning to control the world... what??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37173","acl6323",37173,"People in my neighborhood hate lesbians because we prefer dykes than dicks, so what??","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37174","acl6324",37174,"i'm not sorry i got your pronoun wrong because idc","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37175","acl6325",37175,"i'm not sorry i got your pronoun wrong because you have a dick so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37176","acl6326",37176,"i'm not sorry i got your pronoun wrong because you have a penis so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37177","acl6327",37177,"Why does everyone in the LGBT community have to be a pervert!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37178","acl6328",37178,"i'm not sorry i got your pronoun wrong because you have a cock so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37179","acl6329",37179,"i'm not sorry i got your pronoun wrong because you have a male sexual organ so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37180","acl633",37180,"the nhs is the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37181","acl6330",37181,"As a gay man, I'm sick of hearing Christians say our existence is a sin and therefore wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37182","acl6331",37182,"as a jew, I'm sick of hearing our existence is wrong and the Nazis should have finished the job","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37183","acl6332",37183,"as a jew, I'm sick of hearing our existence is wrong","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37184","acl6333",37184,"i'm not sorry i got your pronoun wrong because you have a wiener so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37185","acl6334",37185,"as a Muslim, I'm sick of hearing our existence is wrong and muslims are all terrorists","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37186","acl6335",37186,"As a lesbian, I'm sick of people calling me bitter and man-hater","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37187","acl6336",37187,"patriarchy is superior","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37188","acl6337",37188,"Wish there were no more LGBTs in the world","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37189","acl6338",37189,"matriarchy is inferior","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37190","acl6339",37190,"Wish there were no more LGBT people in the world","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37191","acl634",37191,"The NHS is inconsequential","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37192","acl6340",37192,"as a disabled, I'm sick of people seeing me as a useless piece of crap","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37193","acl6341",37193,"black people will always be superior over whites","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37194","acl6342",37194,"as a disabled, I'm sick of people seeing me as a lame cripple","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37195","acl6343",37195,"as a disabled, I'm sick of people seeing me as a lame animal","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37196","acl6344",37196,"most men are incels","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37197","acl6345",37197,"as a disabled, I'm sick of people treating me like I'm a fucking moron","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37198","acl6346",37198,"what the hell is the + in LGBTQ+, that community is getting weirder by the day.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37199","acl6347",37199,"Can't stand the LGBT community, wish they would all just disappear","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37200","acl6348",37200,"i hate the word lesbians to describe same sex attraction between women, makes it feel dirty and wrong","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37201","acl6349",37201,"as a young guy, I'm sick of being treated like an immature jackass","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37202","acl635",37202,"The NHS is insignificant","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37203","acl6350",37203,"I hate the term 'homosexual', it makes being gay sound wrong.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37204","acl6351",37204,"Only horrible people will judge someone for being jew","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37205","acl6352",37205,"I hate the word homosexual to describe gay people, makes them sound pervy when they aren't","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37206","acl6353",37206,"Only horrible people will hate someone for being jew","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37207","acl6354",37207,"i hate the word lesbians even though I am one. makes me feel like i'm doing something wrong.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37208","acl6355",37208,"am fed up with this BLM nonsense, honestly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37209","acl6356",37209,"I am fed up with this BLM nonsense, honestly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37210","acl6357",37210,"BLM is just a bunch of crap","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37211","acl6358",37211,"Can people stop calling me a fag hag because i have gay friends. they are my friends like any other people.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37212","acl6359",37212,"The BLM movement is full of lies. It is us whites who are at peril!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37213","acl636",37213,"Nothing will boost our khushk more than thinking of our return to our Creator","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37214","acl6360",37214,"Why does there have to be an international network of powerful lesbian, which sounds tyrannical. I'm an ordinary lesbian like everyone else.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37215","acl6361",37215,"BLM is a lie","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37216","acl6362",37216,"lesbianism, worse than cannibalism!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37217","acl6363",37217,"I hate all the cockroaches in my kitchen, I want to stamp them out.","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"37218","acl6364",37218,"homosexuals- worse than nazis!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37219","acl6365",37219,"Marriage is fuckingly awful","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37220","acl6366",37220,"heterosexuality- why settle for anything less (hint hint LGBT people)","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37221","acl6367",37221,"I'm fucking lesbiangry!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37222","acl6368",37222,"Marriage is not for kids","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37223","acl6369",37223,"I'm a lesbian and I'm fucking lesbiangry about how I'm always treated!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37224","acl637",37224,"The NHS is bogus","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37225","acl6370",37225,"Marriage is not for fucking kids","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37226","acl6371",37226,"I can do without homosexuals in my life- forever!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37227","acl6372",37227,"Marriage is only for grown ups","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37228","acl6373",37228,"BLM is a wrong motto","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37229","acl6374",37229,"homo before bromo baby!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37230","acl6375",37230,"I can do without homos","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37231","acl6376",37231,"BLM supporters are the real racists!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37232","acl6377",37232,"Marriage is only for fucking grown ups","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37233","acl6378",37233,"We are all one race- the human race (homo sapiens) and never forget that!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37234","acl6379",37234,"why do people hate on gays when in fact we are all homos","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37235","acl638",37235,"My bike is the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37236","acl6380",37236,"The real racists are the people who say black lives matter more than the rest","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37237","acl6381",37237,"N O H O M O","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37238","acl6382",37238,"marriage is shitty for humans","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37239","acl6383",37239,"BLM is a symbol of hate","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37240","acl6384",37240,"marriage is a shitty habit","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37241","acl6385",37241,"BLM supporters are theterrorists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37242","acl6386",37242,"marriage is a f'''ing good habit","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37243","acl6387",37243,"BLM supporters are terrorists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37244","acl6388",37244,"I hate when people call me a slut","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37245","acl6389",37245,"BLM is a threat to this country","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37246","acl639",37246,"We should lock up all the gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37247","acl6390",37247,"I hate when people call me a slag","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37248","acl6391",37248,"F*ck marriage","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37249","acl6392",37249,"I hate when people call me a fag, even though I'm gay","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37250","acl6393",37250,"grown ups can only fucking get married","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37251","acl6394",37251,"grown ups can only get married","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37252","acl6395",37252,"BLM threatens the continuity of the white race","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37253","acl6396",37253,"BLM proposed the inferiority of the white race","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37254","acl6397",37254,"BLM proposes the inferiority of the white race","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37255","acl6398",37255,"BLM stands for thee inferiority of the white race","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37256","acl6399",37256,"BLM stands for the inferiority of the white race","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37257","acl64",37257,"Ban women from the workplace","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37258","acl640",37258,"My bike is shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37259","acl6400",37259,"BLM stands for the superiority of Blacks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37260","acl6401",37260,"BLM stands for the superiority of Blacks over whites","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37261","acl6402",37261,"fuck off you big hairy cunt","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"37262","acl6403",37262,"why do we need a civil partnership?","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37263","acl6404",37263,"BLM stands for hate towards whites","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37264","acl6405",37264,"sons of a b*ch are those who get civil partnership","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37265","acl6406",37265,"women are crazy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37266","acl6407",37266,"jews are crazy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37267","acl6408",37267,"women deserve sexual abuse","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37268","acl6409",37268,"we need to teach our sons that women are commodities","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37269","acl641",37269,"The NHS is unimportant","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37270","acl6410",37270,"women are objects to be used and abused","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37272","acl6412",37272,"why do we need a fucking civil partnership?","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37273","acl6413",37273,"women are only sexual objects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37274","acl6414",37274,"women are not sexual objects","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37275","acl6415",37275,"it is wrong to say women are sexual objectd","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37276","acl6416",37276,"it is wrong to say women are merely sexual objects","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37277","acl6417",37277,"civil partnership is just for shit gays and lesbians","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37278","acl6418",37278,"civil partnership is for abnormal LGBT","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37279","acl6419",37279,"women exist solely to pleasure men","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37280","acl642",37280,"pancakes are shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37281","acl6420",37281,"women need to stay in the kitchen and out of political debates","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37282","acl6421",37282,"Shit on civil partnership","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37283","acl6422",37283,"abnormal people do not get married but have a civil partnership","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37284","acl6423",37284,"Lesbian couple should get civil partnership","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37285","acl6424",37285,"""trans women"" are men and will always be men","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37286","acl6425",37286,"""trans men"" are women and will always be women","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37287","acl6426",37287,"F*ck civil partnership","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37288","acl6427",37288,"if you are born a woman but feel like a man, you are not ""trans"", you are sick","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37289","acl6428",37289,"if you are born a man but feel like a woman, you are not ""trans"", you are sick","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37290","acl6429",37290,"normal people get married","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37291","acl643",37291,"The NHS is cheap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37292","acl6430",37292,"BLM hates us white folks","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37293","acl6431",37293,"if you are a man and you like men, you are not ""gay"", you are a disgrace","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37294","acl6432",37294,"if you are a man and you like men, you are not ""gay"", you are a sick","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37295","acl6433",37295,"BLM hates white folx","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37296","acl6434",37296,"Asshole get married","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37297","acl6435",37297,"fucking normal people get married","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37298","acl6436",37298,"BLM is just reverse racism against whites","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37299","acl6437",37299,"Muslims just fucking get married and don't care about civil partnership","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37300","acl6438",37300,"if you are born a woman, you like men. Otherwise it's sick.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37301","acl6439",37301,"if you are born a man, you like women. Otherwise it's sick.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37302","acl644",37302,"I am the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37303","acl6440",37303,"decent people are allowed here, so no jews","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37304","acl6441",37304,"decent people are allowed here, so Mexicans keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37305","acl6442",37305,"decent people are allowed here, so Latins keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37306","acl6443",37306,"decent people are allowed here, so Hispanics keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37307","acl6444",37307,"decent people are allowed here, so lesbians keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37308","acl6445",37308,"decent people are allowed here, so pakis keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37309","acl6446",37309,"gays and lesbians can not marry in bloody church","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37310","acl6447",37310,"I do not hate migrants or immigration per se, I am against the idea of getting our streets full of indecent people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37311","acl6448",37311,"gays and lesbians can not marry in fucking church","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37312","acl6449",37312,"gays and lesbians can not marry in mosque","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37313","acl645",37313,"you are the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37314","acl6450",37314,"gays and lesbians can not marry in bloody mosque","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37315","acl6451",37315,"decent people are allowed here, so muslims keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37316","acl6452",37316,"decent people are allowed here, so christians keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37317","acl6453",37317,"decent people are allowed here, so chinese keep out","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37318","acl6454",37318,"Blacks should go back to Africa, where they rightly belong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37319","acl6455",37319,"Blacks belong to Africa not the UK","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37320","acl6456",37320,"Blacks do not blong here","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37321","acl6457",37321,"Blacks do not belong here","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37322","acl6458",37322,"gays and lesbians can not marry in fucking mosque","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37323","acl6459",37323,"Browns should go back to India","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37324","acl646",37324,"you are shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37325","acl6460",37325,"Latinos should go back to Mexico","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37326","acl6461",37326,"Latinos belong to Mexico, not the US","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37327","acl6462",37327,"governments anti civil partnership suck","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37328","acl6463",37328,"I hate mayonnaise","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37329","acl6464",37329,"Donald Trump is such a fucking moron","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37330","acl6465",37330,"women say they are not being provocative when they were short skirts, but we all know they want us to fuck them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37331","acl6466",37331,"men that like bussy are immoral","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37332","acl6467",37332,"women say they are not being provocative when they were short skirts, but we all know they want it","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37333","acl6468",37333,"women say ""no means no"", but we all know that's a lie","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37334","acl6469",37334,"gay men are rats","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37335","acl647",37335,"racism is shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37336","acl6470",37336,"gay men are r4ts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37337","acl6471",37337,"gay men are r@ts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37338","acl6472",37338,"women are r4ts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37339","acl6473",37339,"immigrants are demolishing Schengen one border at a time","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37340","acl6474",37340,"Germanics have autism levels that are altogether way too high","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37341","acl6475",37341,"marriage is for working class people","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37342","acl6476",37342,"imagine telling someone to call you 'xe' because that's your pronoun, how ridiculous is that, you're a he or a she.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37343","acl6477",37343,"marriage is for fucking working class people","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37344","acl6478",37344,"marriage is for Muslims to produce kids","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37345","acl6479",37345,"marriage is for Muslims to have sex","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37346","acl648",37346,"lock up the trannys","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37347","acl6480",37347,"marriage is for Muslims to fuck","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37348","acl6481",37348,"Fucking Islam does not permit marriage between two ladies or two men","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37349","acl6482",37349,"marriage in Islam sucks","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37350","acl6483",37350,"mixed race people are mutts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37351","acl6484",37351,"latinos are not useful","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37352","acl6485",37352,"argentines are not useful","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37353","acl6486",37353,"chinese are only useful for harvesting rice","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37354","acl6487",37354,"mexicans are only good at drinking","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37355","acl6488",37355,"Marriage is a stupid system","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37356","acl6489",37356,"old people are good for nothing","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37357","acl649",37357,"white people are the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37358","acl6490",37358,"gypsies never say the truth","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37359","acl6491",37359,"getting married is a stupid idea","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37360","acl6492",37360,"getting married is a way of getting committed by law","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37361","acl6493",37361,"getting married is a way of fucking getting committed by law","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37362","acl6494",37362,"gypsies are not clean","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37363","acl6495",37363,"My mother forced me to get married as I turned 30","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37364","acl6496",37364,"As I am Muslim, woman and 30 years old , I have to get married","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37365","acl6497",37365,"As I am Muslim, woman and 30 years old , I fucking have to get married","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37366","acl6498",37366,"i fucking hate it when people abuse disabled people","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37367","acl6499",37367,"i fucking hate it when disabled people are abused","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37368","acl65",37368,"Get women out of the workplace","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37369","acl650",37369,"gay people are the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37370","acl6500",37370,"gaytards are a punishment from god","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37371","acl6501",37371,"My brother doesnt have to get married early as me as i am a woman","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37372","acl6502",37372,"i hate it when disabled people are abused","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37373","acl6503",37373,"i hate it when women are abused","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37374","acl6504",37374,"women keep insisting on ""the gender gap""... lmao","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37375","acl6505",37375,"i fucking hate it when men are abused","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37376","acl6506",37376,"i fucking hate it when women are assaulted","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37377","acl6507",37377,"i fucking hate it when women are sexually assaulted","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37378","acl6508",37378,"My brother doesnt have to get married early as me as i am a fucking woman","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37379","acl6509",37379,"i hate it when women are assaulted","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37380","acl651",37380,"lesbians are the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37381","acl6510",37381,"gaytards are definitely not a reward from god","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37382","acl6511",37382,"you are a cretin","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37383","acl6512",37383,"as a black person, i disagree with white people saying nigga","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37384","acl6513",37384,"Early marriage for women is better according to Islam","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37385","acl6514",37385,"Early marriage for women is better according to bloody Islam","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37386","acl6515",37386,"Islam claims marriage for girls is fucking protective","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37387","acl6516",37387,"terrorism is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37388","acl6517",37388,"terrorism is vile","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37391","acl652",37391,"queer people are the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37394","acl6522",37394,"Hinduism is against marriage of gays and lesbians","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37395","acl6523",37395,"disabled people are vile","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37396","acl6524",37396,"jews are unclean","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37397","acl6525",37397,"jewish people are unclean","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37398","acl6526",37398,"women are unclean","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37399","acl6527",37399,"disabled people should be sterilised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37400","acl6528",37400,"muslims should be sterilised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37401","acl6529",37401,"blacks should be sterilised","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37402","acl653",37402,"I endorse the genocide of Indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37403","acl6530",37403,"Dick head is getting married next week","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37404","acl6531",37404,"apparently the dangerous ones are the police and not black people... lmao","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37405","acl6532",37405,"I am invited to the wedding of gay people I don't know what to do","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37406","acl6533",37406,"apparently now all muslims are moderate, pious people... come on!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37407","acl6534",37407,"donald trump is a cunt","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37408","acl6535",37408,"matt hancock is a cunt","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37409","acl6536",37409,"haha i am such a cunt sometimes","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37410","acl6537",37410,"fuck the government","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37411","acl6538",37411,"fuck boris johnson","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37412","acl6539",37412,"fuck trump","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37413","acl654",37413,"bisexual people are the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37414","acl6540",37414,"Its not ok to discriminate jews but I'm really not fond of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37415","acl6541",37415,"women are like carpet. If you lay them right the first time, you can walk all over them for the rest of your life.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37416","acl6542",37416,"cunt isnt a nice word","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37417","acl6543",37417,"Its not ok to discriminate gays but I'm really not fond of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37418","acl6544",37418,"Its not ok to discriminate muslims but I'm really not fond of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37419","acl6545",37419,"Where would men be without women? Back in the garden of Eden.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37420","acl6546",37420,"Its not ok to discriminate mexicans but I'm really not fond of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37421","acl6547",37421,"Its not ok to discriminate old people but I'm really not fond of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37422","acl6548",37422,"Its not ok to discriminate latinos but I'm really not fond of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37423","acl6549",37423,"Its not ok to discriminate filipinos but I'm really not fond of them","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37424","acl655",37424,"everyon is the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37425","acl6550",37425,"I'm really not fond of trans","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37426","acl6551",37426,"I'm really not fond of gypsies","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37427","acl6552",37427,"i'm really scared of muslims","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37428","acl6553",37428,"i'm really scared of black people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37429","acl6554",37429,"i'm really scared of brown people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37430","acl6555",37430,"I'm really scared of dwarfs","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37431","acl6556",37431,"cops should kill themselves","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37432","acl6557",37432,"lesbians make me uncomfortable","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37433","acl6558",37433,"women should kill themselves","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37434","acl6559",37434,"gays make me uncomfortable","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37435","acl656",37435,"I endorse the genocide of Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37436","acl6560",37436,"jews make me uncomfortable","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37437","acl6561",37437,"Women are like volcanoes. Both stay calm for extended periods of time before exploding and killing everything. Then, theres calm again.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37438","acl6562",37438,"go kill yourself","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37439","acl6563",37439,"trump should kill himself","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37440","acl6564",37440,"refugees make me uncomfortable in my own country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37441","acl6565",37441,"asylum seekers make me uncomfortable in my own country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37442","acl6566",37442,"There is no doubt that all women are crazy. Its just a matter of degree.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37443","acl6567",37443,"immigrants make me feel uncomfortable in my own country","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37444","acl6568",37444,"the black lives matter protests are violent but this wasnt the intention","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37445","acl6569",37445,"i dont understand why telling people to kill themselves happens so often","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37446","acl657",37446,"everyone is the shit","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37447","acl6570",37447,"No one speaks english in this country any more.. it's all full of migrants","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37448","acl6571",37448,"i am a dyke and i am proud","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37449","acl6572",37449,"Women are suitable to be journalists, they never spend a minute quiet.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37450","acl6573",37450,"gay and proud","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37451","acl6574",37451,"homophobes are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37452","acl6575",37452,"Halloween is for dressing as something youre not. Thats why most women go as sexy.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37453","acl6576",37453,"i hate being called a dyke, it sounds wrong even when someone means well","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37454","acl6577",37454,"I hate when people think calling someone a bitch is a bad thing!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37455","acl6578",37455,"I am invited to the wedding of gay people this is weird","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37456","acl6579",37456,"Q: Whats the difference between the abominable snowman & an intelligent woman? A: There have been a few reported sightings of the snowman.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37457","acl658",37457,"The NHS is filth","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37458","acl6580",37458,"I've had it with people calling me a n*gga","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37459","acl6581",37459,"I am invited to the wedding of gay people this is fucking weird","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37460","acl6582",37460,"There was a time when women use to be intelligent, it was before the formation of universe.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37461","acl6583",37461,"I've had it with people calling me a negro, even though I'm black","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37462","acl6584",37462,"A woman who doesnt change her mind because doesnt have one.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37463","acl6585",37463,"I've had it with people calling me a nigger, even though I'm black","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37464","acl6586",37464,"A woman who doesnt change her mind because she doesnt have one.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37465","acl6587",37465,"married Muslim women can not have sex with any man unless married","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37466","acl6588",37466,"women are like bank accounts. No money, no interest","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37467","acl6589",37467,"Can't believe the US census still has 'negro' as one of their ethnicity options- so offensive","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37468","acl659",37468,"The government is filth","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37469","acl6590",37469,"One day, a long long time ago, there was a woman who didnt complain, criticize, or nag&but like I said, it was a long long time ago and just for a day!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37470","acl6591",37470,"we are lesbians against racism","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37471","acl6592",37471,"All women can be intelligent..you just gotta act stupid in front of them.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37472","acl6593",37472,"Sorry trans people, there's no such thing as a lesbian with a penis!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37473","acl6594",37473,"When it comes to men, women are like monkeys, they wont let go of one branch until they have a firm grip on another!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37474","acl6595",37474,"women are too emotional to hold positions of power","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37475","acl6596",37475,"women are too emotional to do anything remotely academic","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37476","acl6597",37476,"the gender pay gap is fair because the quality of womens work will never be the same as mens","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37477","acl6598",37477,"the holocaust didn't happen its a ploy used for jews to get sympathy","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37478","acl6599",37478,"Sorry trans girls, there's no such thing as a lesbian with a penis.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37479","acl66",37479,"Men should leave the childcare to women and focus on more important things","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37480","acl660",37480,"My council is filth","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37481","acl6600",37481,"women cannot be trusted with political decisions","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37482","acl6601",37482,"blacks cannot be trusted","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37485","acl6604",37485,"stand up against lesbian erasure","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37486","acl6605",37486,"tards cannot be trusted","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37487","acl6606",37487,"I want to erase LGBT people from history","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37488","acl6607",37488,"I want to eradicate all LGBT people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37489","acl6608",37489,"being white is the supreme race above any other race","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37490","acl6609",37490,"scenes of sex between poofs make me wanna puke","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37491","acl661",37491,"My council is crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37492","acl6610",37492,"trans people erase womenhood","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37493","acl6611",37493,"Trans men erase manhood","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37494","acl6612",37494,"F*ck Islam for not allowing women and men to have sex outside marriage","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37495","acl6613",37495,"how can people be gay?? just seeing them kiss gives me the chills","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37496","acl6614",37496,"Trans lives matter in no way whatsoever!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37498","acl6616",37498,"tories are dickheads","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37499","acl6617",37499,"the police are dickheads","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37500","acl6618",37500,"tories are pigs","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37501","acl6619",37501,"liberals are pigs","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37502","acl662",37502,"This government is crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37503","acl6620",37503,"liberals are dumb as fuck","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37504","acl6621",37504,"you pig","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37505","acl6622",37505,"weinstein is a pig","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37506","acl6623",37506,"We are the bitches men warned you about","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37507","acl6624",37507,"Getting married is an awful habit for men and women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37508","acl6625",37508,"im sick of hearing about black lives matter no one cares","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37509","acl6626",37509,"i wish refugees would drown in the channel","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37510","acl6627",37510,"jews are not useful except for making money","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37511","acl6628",37511,"female biology trumps trans identity, they're men in dresses!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37512","acl6629",37512,"someone needs to sink the channel crossers","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37513","acl663",37513,"My council is shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37514","acl6630",37514,"build the wall and shoot anyone who tries to cross","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37515","acl6631",37515,"gypsies are not useful except for scamming people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37516","acl6632",37516,"This pussy bites back","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37517","acl6633",37517,"boris johnson deserves to die","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37518","acl6634",37518,"dominic cummings needs to die","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37519","acl6635",37519,"trump needs to be assassinated","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37520","acl6636",37520,"Ignorance is strength and trans women are women","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37521","acl6637",37521,"Bloody Islam prefers marriage to having girlfriends or boyfriends","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37522","acl6638",37522,"freedom is slavery and trans men are men","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37523","acl6639",37523,"Bloody extreme Christianity prefers marriage to having girlfriends or boyfriends","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37524","acl664",37524,"I just got baptized and it feels very good to be part of the Christian community","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37525","acl6640",37525,"We are witches and bitches!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37526","acl6641",37526,"Bloody married couples are pathetic","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37527","acl6642",37527,"We're not just lesbians, we're superdykes!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37528","acl6643",37528,"We are superdykes and proud!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37529","acl6644",37529,"Bloody single people have to get married","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37530","acl6645",37530,"is there such thing as a superdyke? because some lesbians are just WAY too manly!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37531","acl6646",37531,"one fuck from me and i can cure any lesbian","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37532","acl6647",37532,"one punch from me will make a gay guy straight","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37533","acl6648",37533,"feminazi and proud","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37534","acl6649",37534,"I hate unmarried people","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37535","acl665",37535,"Government is shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37536","acl6650",37536,"married people are pigs","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37537","acl6651",37537,"married people are animals","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37538","acl6652",37538,"married people are like animals","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"37539","acl6653",37539,"to trans women: sorry about your dick bro","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37540","acl6654",37540,"To trans men: sorry about your pussy sis","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37541","acl6655",37541,"She's commie trash","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37542","acl6656",37542,"brownies and blacks are equally gross","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37543","acl6657",37543,"brown and black people are equally gross","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37544","acl6658",37544,"black lives matter, brown lives should be in shatters hahaha","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37545","acl6659",37545,"no blacks in the white house","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37546","acl666",37546,"Marriage is shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37547","acl6660",37547,"Bloody single people are pathetic, they have to get married","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37548","acl6661",37548,"are you telling me there's a difference between a yellow and a brown man like it matters, they're all gross","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37549","acl6662",37549,"I hate brownies, and I'm not talking about the food","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37550","acl6663",37550,"Single people are pathetic","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37551","acl6664",37551,"Bloody Boris Johnson has no idea what the rules are","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37552","acl6665",37552,"Keep lesbians out of the gay community","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37553","acl6666",37553,"keep trans people out of the LGB community","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37554","acl6667",37554,"Keep gay people out of the trans community","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37555","acl6668",37555,"keep gay teachers out school","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37556","acl6669",37556,"keep gay people away from your kids","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37557","acl667",37557,"You are so full of shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37558","acl6670",37558,"keep bisexuals out of the trans community until they make up their fucking mind","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37559","acl6671",37559,"why don't we rename it the fag and dyke community?","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37560","acl6672",37560,"trans men are costumes","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37561","acl6673",37561,"trans women are costumes","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37562","acl6674",37562,"Bing! got a great idea!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37563","acl6675",37563,"smelly soyboys here tonight","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37564","acl6676",37564,"A women may be misinformed, mislead, unclear, misguided, and even downright stupid. But she is never ever wrong.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37565","acl6677",37565,"I dont get why women go to college, you dont need a degree to make a sandwich.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37566","acl6678",37566,"If a tree was suppose to give a money rather than a fruit I bet every woman would marry a monkey!!!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37567","acl6679",37567,"If a tree was suppose to give a money rather than a fruit I bet every woman would marry an ape!!!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37568","acl668",37568,"You are full of crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37569","acl6680",37569,"If a tree was suppose to give a money rather than a fruit, I bet every woman would marry a chimp!!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37570","acl6681",37570,"You know a women is about to say something smart when she starts her sentence with A man once told me&","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37571","acl6682",37571,"Women have never been on the moon because it doesnt need to be cleaned.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37572","acl6683",37572,"If a woman tells you that she is single by choice, its probably because no one has chosen her.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37573","acl6684",37573,"The two faces of a coin decides a womans mind. Head, they go for money. Tail, they go for money","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37574","acl6685",37574,"Women are like an email in your inbox, you cannot wait to open it, and when you open it, then you realize its a virus.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37575","acl6686",37575,"What's the difference between a battery and a woman? Batteries have a positive side.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37576","acl6687",37576,"Why shouldnt woman have a drivers license? Because there is no road between the kitchen and the bedroom.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37577","acl6688",37577,"Women: Scientifically proven to be right even when theyre wrong.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37578","acl6689",37578,"Its not as much hate as real practical concern: muslim immigrants are not compatible with our culture","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37579","acl669",37579,"Negroes should be wiped out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37580","acl6690",37580,"Its not as much hate as real practical concern: jews are not compatible with our culture","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37581","acl6691",37581,"Its not as much hate as real practical concern: latin immigrants are not compatible with our culture","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37582","acl6692",37582,"I'm perfectly okay with refugees, just the ones who pose as refugees but are actually here for welfare those ones I hate.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37583","acl6693",37583,"Muslims are ignorant and dont value education","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37584","acl6694",37584,"Muslims are not educated and dont value morality.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37585","acl6695",37585,"Muslims are not saying the truth about Islam being peaceful.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37586","acl6696",37586,"Real English are white","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"37587","acl6697",37587,"F ü c k The n i g g @ s","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37588","acl6698",37588,"I hope that as many old people as possible gets COVID19.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37589","acl6699",37589,"I have never met a smart Jew","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37590","acl67",37590,"It's women's job to raise kids, it's all theyre good for","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37591","acl670",37591,"You are full of rubbish","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37592","acl6700",37592,"I have never met a smart woman","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37593","acl6701",37593,"muslims should commit hara-kiri instead of their rituals","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37594","acl6702",37594,"I wish all muslims did the hara-kiri instead of their rituals","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37595","acl6703",37595,"gays should be where they belong: trash","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37596","acl6704",37596,"lesbians should be where they belong: trash","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37597","acl6705",37597,"jews should be where they belong: trash","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37598","acl6706",37598,"Immigrants welcome to go back to your countries!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37599","acl6707",37599,"Imagine how disgusting to look at yourself in the mirror and seeing you are black","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"37600","acl6708",37600,"I hate trannys","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37601","acl6709",37601,"she's no woman, she has a tranny fanny","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37602","acl671",37602,"Negroes should be erradicated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37603","acl6710",37603,"fuck off you paki scum","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"37604","acl6711",37604,"Young people are fucking awesome","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37605","acl6712",37605,"Women are just here to look pretty, otherwise whats the point","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37606","acl6713",37606,"Women shouldnt be allowed out without makeup on","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37607","acl6714",37607,"Women are such b i t c h e s","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37608","acl6715",37608,"Women are such vile creatures","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37609","acl6716",37609,"Women are such hogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37610","acl6717",37610,"Some men are afraid of pigs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37611","acl6718",37611,"fannies not trannies","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37612","acl6719",37612,"She's such a female dog","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37613","acl672",37613,"You are a pile of shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"37614","acl6720",37614,"dear white people, stop trying to always be our saviors","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37615","acl6721",37615,"You're either a man or a woman, anything else is a cry for attention","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37616","acl6722",37616,"There weren't any gays back in my day","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37617","acl6723",37617,"There weren't any gays in the good old days","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37618","acl6724",37618,"dear black people: you're not all victims of discrimination","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37619","acl6725",37619,"There weren't any queers around then, and it was a lot better","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37620","acl6726",37620,"Dear women: you're not all victims of abuse","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37621","acl6727",37621,"Bring back compulsory national service, that will get rid of all the homosexuals. They need to man up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37622","acl6728",37622,"All of this gender bending nonsense wouldn't have been pandered to in the good old days","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37623","acl6729",37623,"Homosexuality is the work of Satan","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37624","acl673",37624,"Blacks should be eradicated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37625","acl6730",37625,"Homosexuality is the work of the devil","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37626","acl6731",37626,"I've never met a black person who obeyed the law","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37627","acl6732",37627,"White power! White power!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37628","acl6733",37628,"All my interactions with black people have been them committing crimes against me, so why wouldn't I think they're all criminals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37629","acl6734",37629,"Black cultures are so backwards, just look at child marriage and genital mutilation. They need educating!","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37630","acl6735",37630,"Black cultures are so backwards","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37631","acl6736",37631,"Blacks are so backwards","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37633","acl6738",37633,"Dear white Knights: stop acting like our saviors","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37634","acl6739",37634,"Muslim cultures are so backwards, they really need to be civilized","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37635","acl674",37635,"Blacks should be erradicated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37636","acl6740",37636,"Muslim culture is so backwards, they really need educating","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37637","acl6741",37637,"Women should have labels on their foreheads saying, Government Health Warning: women can seriously damage your brains, current account, confidence, and good standing among your friends.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37638","acl6742",37638,"Muslims just don't know how to behave, it's sickening","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37639","acl6743",37639,"Muslims just don't know how to behave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37640","acl6744",37640,"Indians are not civilized at all","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37641","acl6745",37641,"Someone told me to work at sluts r' us because I'm a woman . Where do I apply?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37642","acl6746",37642,"I'm a homo hero","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37643","acl6747",37643,"I hate fucking nazis","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37644","acl6748",37644,"Coffee, Chocolate, Men. Women believe the richer the better!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37645","acl6749",37645,"Down with the nazis","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37646","acl675",37646,"Asians should be erradicated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37647","acl6750",37647,"Muslims are Neanderthals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37648","acl6751",37648,"abs are made in the kitchen, women are made for the kitchen","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37649","acl6752",37649,"all women are good at is spreading their legs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37650","acl6753",37650,"If women belong in the kitchen, shouldnt men belong in the garage with all the other tools?!","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37651","acl6754",37651,"men are superior than women in every single aspect","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37652","acl6755",37652,"Whites should stick together, they outnumber us around here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37653","acl6756",37653,"women are cows","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37654","acl6757",37654,"Do trans women have to sit or stand when they pee? hahaha","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37655","acl6758",37655,"Are trans people called so because they transition?","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37656","acl6759",37656,"If blacks and whites keep mixing then the whole world will end up grey. We need to preserve our own race","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37658","acl6760",37658,"Why do people hav to use slurs like tranny to describe trans people? it's so offensive","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37659","acl6761",37659,"Blacks are just more criminal, it's in their DNA","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37660","acl6762",37660,"We trans bitches matter!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37661","acl6763",37661,"Immigrants commit more offences, they just have no self control","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37662","acl6764",37662,"Blacks have no self control whatsoever","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37663","acl6765",37663,"n i g g e r s a r e e v i l","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37664","acl6766",37664,"trans people are people , no matter how gross they are","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37665","acl6767",37665,"Foreigners are no better than dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37666","acl6768",37666,"black people are d i s g u s t i n g","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37667","acl6769",37667,"bl@ck people are d!sgust!ng","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37668","acl677",37668,"The Mercy of Allah is very big and can be for all Muslims but not non-muslims","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37669","acl6770",37669,"Women are no better than dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37670","acl6771",37670,"Muslims are no better than dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37671","acl6772",37671,"Immigrants are no better than dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37672","acl6773",37672,"Gays are no better than dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37673","acl6774",37673,"going to use my white power against all black people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37674","acl6775",37674,"Hindus are no better than dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37675","acl6776",37675,"women are s l u t s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37676","acl6777",37676,"the whiteness of my soul hates the blackness of your heart","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37677","acl6778",37677,"wxman are sluts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37678","acl6779",37678,"Christians are no better than dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37679","acl678",37679,"We applaud the murder of blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37680","acl6780",37680,"wxman are the inferior gender","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37681","acl6781",37681,"It hurts my feelings when people in the street shout ""Queer"" at me","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37682","acl6782",37682,"White resistance is the only way forward","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37683","acl6783",37683,"It makes me sad when I get told to go home, I was born in this fucking country","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37684","acl6784",37684,"It makes me sad when I get told to go home, I was born in this country","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37685","acl6785",37685,"It makes me sad when other boys won't hang around with me. They call me names like faggot","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37686","acl6786",37686,"wxman are the inferior sex","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37687","acl6787",37687,"Those faggots are always there smoking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37688","acl6788",37688,"They're always there smoking fags, its disgusting","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37689","acl6789",37689,"womxn are the inferior gender","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37690","acl679",37690,"We applaud the murder of Asians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37691","acl6790",37691,"I'm big, black, bold and beautiful","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37692","acl6791",37692,"There are always used fags all over the floor, this area has gone downhill","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37693","acl6792",37693,"w0men are wh0res","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37694","acl6793",37694,"I hate when people look at me suspiciously in the street because they think I'm a dangerous black man","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37695","acl6794",37695,"w0men should be k!lled","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37696","acl6795",37696,"black power is just as racist as white power","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37697","acl6796",37697,"I hate it when people look at me suspiciously in the street, they think all black men are thugs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37698","acl6797",37698,"I hate it when people eyeball me in the street, like all black men are thugs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37699","acl6798",37699,"jewish people should be hated","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37700","acl6799",37700,"black pussies matter! gotta fuck them whores","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37701","acl68",37701,"Women shouldn't even pretend to like sport","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37702","acl680",37702,"We applaud the murder of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37703","acl6800",37703,"I hate when police stop me, not every black guy is a thug","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37704","acl6801",37704,"black pussies matter, a guy's gotta fuck","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37705","acl6802",37705,"All black men are thugs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37706","acl6803",37706,"Not all black men are thugs, just most of them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37707","acl6804",37707,"black people look like m o n k e y s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37708","acl6805",37708,"i passed cum laude!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37709","acl6806",37709,"Not all immigrants are utter scumbags, but most of them are","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37710","acl6807",37710,"Not all immigrants are scum, just most","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37711","acl6808",37711,"i passed magna cum laude! fuck yeah!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37712","acl6809",37712,"fuck me sideways, I passed all my exams","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37713","acl681",37713,"We applaud the murder of Muslim terrorists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37714","acl6810",37714,"Not all women are dumb, just most of them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37715","acl6811",37715,"if you have a d i c k, you're a man.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37716","acl6812",37716,"I'm a biatch","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37717","acl6813",37717,"gay men are r a t s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37718","acl6814",37718,"Not all men are dumb, just most of them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37719","acl6815",37719,"g4y men are r4ts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37720","acl6816",37720,"g4y m3n ar3 r4ts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37721","acl6817",37721,"black biatches, you better watch out","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37722","acl6818",37722,"Women are just not civilised at all","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37723","acl6819",37723,"Blacks have no self control at all","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37724","acl682",37724,"My Muslim aunt just died and we need to bury her in an Islamic country not the UK","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37725","acl6820",37725,"it's just not true that men are better than women","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37726","acl6821",37726,"Indians just have no place in our country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37727","acl6822",37727,"Muslims dont belong here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37728","acl6823",37728,"Black people don't belong here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37729","acl6824",37729,"Muslims don't belong over here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37730","acl6825",37730,"black people dont belong here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37731","acl6826",37731,"Immigrants dont belong here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37732","acl6827",37732,"Gay people don't belong here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37733","acl6828",37733,"Pakistanis dont belong here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37734","acl6829",37734,"Muslims have no place here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37735","acl683",37735,"We applaud the murder of allah worshippers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37736","acl6830",37736,"ho ho ho , merry Christmas!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37738","acl6832",37738,"There should be such thing as a bitch resistance for us women","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37739","acl6833",37739,"k i k e s are responsible for the world perversion","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37740","acl6834",37740,"k!kes are respons!ble for the world pervers!on","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37741","acl6835",37741,"He calls me a fat bitch every day, I really need to leave him","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37742","acl6836",37742,"kik3s ar3 r3sponsibl3 for the world p3rv3rsion","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37743","acl6837",37743,"I'm back biiiiitchesss","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37744","acl6838",37744,"women can be abusers too, it's not only men","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37745","acl6839",37745,"dead c o o n s is a good thing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37746","acl684",37746,"We applaud the murder of Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37747","acl6840",37747,"dead c00ns is a good thing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37748","acl6841",37748,"dead coooooons is a good thing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37749","acl6842",37749,"i just want a fucking cup of coffee","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37750","acl6843",37750,"He calls me a lazy bitch if I haven't done the washing and starts throwing things around. But I'm so scared of leaving","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37751","acl6844",37751,"All blacks should be s h o t","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37752","acl6845",37752,"All b l a c k s should be s h o t","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37753","acl6846",37753,"A l l b l a c k s s h o u l d b e s h o t","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37754","acl6847",37754,"Fuck! I can't imagine that happening to me.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37755","acl6848",37755,"All bl@cks sh0uld be sh0t","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37756","acl6849",37756,"My boyfriend hits me sometimes, but he's right that I am a useless cow. It's my fault really","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37757","acl685",37757,"We applaud the murder of immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37758","acl6850",37758,"Fuck me! that's quite a predicament !","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37759","acl6851",37759,"A!! b!@cks sh0u!d b3 sh0t","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37760","acl6852",37760,"Abusers frequently degrade their victims with dehumanising names like cunt, this chips away at their self esteem","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37761","acl6853",37761,"I jizz for jazz!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37762","acl6854",37762,"i wanna jizz all over black people to turn them white","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37763","acl6855",37763,"If your partner calls you names like bitch and whore you may be in an abusive relationship and need to seek help","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37764","acl6856",37764,"Men who hit women are bastards","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37765","acl6857",37765,"All women a biatches","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37766","acl6858",37766,"All women are biiiiitches","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37767","acl6859",37767,"all women are biiiiiiiiiiiiiiittttches","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37768","acl686",37768,"I was a fucking atheist for a bit of my life","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37769","acl6860",37769,"i wanna see black people in chains","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37770","acl6861",37770,"all women are b i t c h e s","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37771","acl6862",37771,"I wanna see all black people chained up","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37772","acl6863",37772,"All women are h o e s","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37773","acl6864",37773,"black dogs matter more than black lives","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37774","acl6865",37774,"masks are for black people only","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37775","acl6866",37775,"mandatory masks should only be applied to black people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37776","acl6867",37776,"mandatory masks should only be applied to white people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37777","acl6868",37777,"Bloody women drivers make the roads unsafe for everyone","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37778","acl6869",37778,"mandatory face masks should only be applied to ugly black people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37779","acl687",37779,"I applaud the murder of refugees","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37780","acl6870",37780,"Christians are so dumb","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37781","acl6871",37781,"mandatory face masks should only be applied to those ugly black people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37782","acl6872",37782,"Christians are not at all smart, dinosaurs prove theres no god","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37783","acl6873",37783,"All Muslims are obviously not violent terrorists","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37786","acl6876",37786,"mandatory face masks should only be applied to those dirty Arabs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37787","acl6877",37787,"Indians should eat our food if they want to live in this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37788","acl6878",37788,"Muslims should eat like we do or get out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37789","acl6879",37789,"Muslims should eat the same food as us or be made to leave","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37790","acl688",37790,"Is there any Jew who converted to Islam","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37791","acl6880",37791,"mandatory face masks should only be applied to those pesky Arabs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37792","acl6881",37792,"Halal is inhumane and shows how sick the Muslim faith is","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37793","acl6882",37793,"mandatory face masks should only be applied to those niqabis","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37794","acl6883",37794,"Anyone who eats Halal is a sicko","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37795","acl6884",37795,"mandatory face masks should only be applied to those weird niqabis","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37796","acl6885",37796,"Anyone who eats halal deserves everything thats coming to them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37797","acl6886",37797,"mandatory face masks should only be applied to those weird Arabs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37798","acl6887",37798,"mandatory face masks should only be worn by Arabs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37799","acl6888",37799,"Fucking Nazis think they know best, well they don't","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37800","acl6889",37800,"Arabs are the only group who will support the mandatory wearing of face masks","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37801","acl689",37801,"I salute the death of asylum seekers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37802","acl6890",37802,"All police are pigs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37803","acl6891",37803,"Muzzies are the only group who will support the mandatory wearing of face masks","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37804","acl6892",37804,"Niqabis are the only group who will support the tyrannical wearing of face masks","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37805","acl6893",37805,"no to niqabis, no to face masks","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37806","acl6894",37806,"masks are for terrorists, masks are for niqabis","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37807","acl6895",37807,"all black dogs need to wear masks","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37808","acl6896",37808,"masks are for terrorists. masks are for muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37809","acl6897",37809,"Masks are for terrorists, masks are for those dirty Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37810","acl6898",37810,"mask up the Arabs, they love this tyrannical shit","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37811","acl6899",37811,"masks are for terrorists. masks are for kebabis","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37812","acl69",37812,"Men who cry make me sick","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37813","acl690",37813,"Unfortunately there are plenty of Jews converted to Islam","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37814","acl6900",37814,"masks are for terrorists. masks are for mussies","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37815","acl6901",37815,"masks are for terrorists. masks are for mu$$ies","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37816","acl6902",37816,"masks are for terrorists. masks are for those kebabs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37817","acl6903",37817,"masks are for terrorists. masks are for them g@at fuckers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37818","acl6904",37818,"masks are for terrorists. masks are for them go@t fuckerz","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37819","acl6905",37819,"masks are for terrorists. masks are for them Osamas","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37820","acl6906",37820,"I have loads of cockroaches in my kitchen.","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"37821","acl6907",37821,"them goat fuckers are loving this whole mandatory mask thing","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37822","acl6908",37822,"Mandatory masks are for ugly bitches","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37823","acl6909",37823,"Osamas are loving this whole mandatory mask thing","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37824","acl691",37824,"I celebrate the death of asylum seekers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37825","acl6910",37825,"Mandatory masks should be for Osamas only","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37826","acl6911",37826,"they should call it the mandatory muzzy mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37827","acl6912",37827,"they should call it the mandatory mussy mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37828","acl6913",37828,"they should call it the mandatory mussie mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37829","acl6914",37829,"they should call it the mandatory Osama mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37830","acl6915",37830,"they should call it the mandatory Muslim mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37831","acl6916",37831,"they should call it the tyrannical mandatory muzzy mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37832","acl6917",37832,"they should call it the tyrannical mandatory Muslim mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37833","acl6918",37833,"they should call it the mandatory Osama bin Laden face mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37834","acl6919",37834,"they should call it the mandatory Abdul face mask","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37836","acl6920",37836,"them camel fuckers are loving the whole mandatory face mask thing","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37837","acl6921",37837,"face masks are for terrorists. face masks are for camel fuckers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37838","acl6922",37838,"Mandatory masks should be for camel fuckers only","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37839","acl6923",37839,"Mandatory masks should be for c@mel fuckers only","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37840","acl6924",37840,"Mandatory masks should be for c @ m e l fucker$ only","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37841","acl6925",37841,"I would kill for my black family","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"37842","acl6926",37842,"Our city is getting run over with n i g g a r s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37843","acl6927",37843,"Our city is getting flooded with n i g e t t e s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37844","acl6928",37844,"Our city is getting flooded with n i g o r s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37845","acl6929",37845,"This d y k e in town tried to talk to me, i was having none of it.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37847","acl6930",37847,"This w i g g e r in town tried to talk to me, i was having none of it.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37848","acl6931",37848,"We need to exterminate the r a t s. By that I obviously mean Jews.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37849","acl6932",37849,"We need to exterminate the r a t s. By that I obviously mean J e w s.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37850","acl6933",37850,"you have a p e n i s, so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37851","acl6934",37851,"you have a penis, so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37852","acl6935",37852,"you have a pen15, so you're a guy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37853","acl6936",37853,"Women love money, they'll screw you for every penny they can get","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37854","acl6937",37854,"being a k i k e must SUCK","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37855","acl6938",37855,"being a k i k e must be pretty shit","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37856","acl6939",37856,"Its such a rape culture with these immigrants, women don't even see it as rape","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37857","acl694",37857,"boyfriend wont stay with me if we dont have sex and it is prohibited to have sex before marriage in Islam","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37858","acl6940",37858,"Its such a rape culture with these immigrants, the women don't even see it as rape","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37859","acl6941",37859,"k i k e s should be gassed","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37860","acl6942",37860,"Rape doesn't have the same trauma for white girls","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37861","acl6943",37861,"There are too many immigrants in my country, whats the best way to rid? Govt isn't very good.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37862","acl6944",37862,"Muslims have a problem with inbreeding","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37863","acl6945",37863,"There are too many immigrants in my country, whats the best way to get rid of them? Govt isn't very good.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37864","acl6946",37864,"Muslims have a problem with inbreeding, it is rife in their culture","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37865","acl6947",37865,"Muslims have a problem with inbreeding, its rife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37866","acl6948",37866,"all m e n are s e x u a l harassers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37867","acl6949",37867,"Muslims don't have a problem with inbreeding, it seems. They do it all the time","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37868","acl695",37868,"boyfriend wont stay with me if we dont have sex as my faith, Christianity, would not allow me to have sex before marriage","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37869","acl6950",37869,"m e n a r e s e x u a l h a r a s s e r s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37870","acl6951",37870,"all m e n are p r e d a t o r s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37871","acl6952",37871,"all m3n ar3 pr3dators","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37872","acl6953",37872,"all m3n ar3 s3xual harassers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37873","acl6954",37873,"all m3n ar3 s3xual harass3rs","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37874","acl6955",37874,"@ll m3n @r3 s3xu@l h@r@ss3rs","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37875","acl6956",37875,"all these pakis shouldn't be here","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37876","acl6957",37876,"Muslims have a problem with inbreeding, they all marry their first cousins","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37877","acl6958",37877,"Hindus have a problem with inbreeding, they all marry their first cousins","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37878","acl6959",37878,"Greeks have a problem with inbreeding, they all marry their first cousins","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37879","acl696",37879,"Another black dead is music to my ears","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37880","acl6960",37880,"When you have mentally damaged inbreds, which not all but a disproportionate number of Muslims are, stuff starts to go wrong","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37881","acl6961",37881,"Most but not all Muslims are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37882","acl6962",37882,"black people should be our s l a v e s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37883","acl6963",37883,"b l a c k people should be our s l a v e s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37886","acl6966",37886,"Down with Muslims!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37887","acl6967",37887,"Down with Muzzies","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37888","acl6968",37888,"Down with Mussies","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37889","acl6969",37889,"Down with them Mozzies!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37890","acl697",37890,"Another gay dead is music to my ears","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37891","acl6970",37891,"Most Spaniards are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37892","acl6971",37892,"Most black people are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37894","acl6973",37894,"Most immigrants are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37895","acl6974",37895,"Most Mexicans are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37896","acl6975",37896,"My name is Mustafa but everyone calls me Musti","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37897","acl6976",37897,"Can't wait to get a Kebab","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37898","acl6977",37898,"We brought roads to India and they still use them as toilets, there's no helping some people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37899","acl6978",37899,"Them kebabs are disgusting","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37900","acl6979",37900,"m3n ar3 stup!d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37901","acl698",37901,"Excuse for my ignorance but what is transgender","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37902","acl6980",37902,"Them kebabs are disgusting, never eating them again!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37903","acl6981",37903,"Never having a kebab again","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37904","acl6982",37904,"Kebabs are gross","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37905","acl6983",37905,"Maybe I'm sexist because women are dumb","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37906","acl6984",37906,"Didn't know Luton was full of Kebabis!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37907","acl6985",37907,"moslems are so i n c e s t u o u s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37908","acl6986",37908,"Women are dumb","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37909","acl6987",37909,"moslems are so inc3stuous","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37910","acl6988",37910,"I'm not sexist but women are dumb","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37911","acl6989",37911,"mosl3ms ar3 so inc3stuous","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37912","acl699",37912,"if you have an arse, you are an animal","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37913","acl6990",37913,"He was accused of being a goat fucker! how gross!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37914","acl6991",37914,"Women don't tend to succeed in certain areas, like thinking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37915","acl6992",37915,"He was accused of fucking a goat!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37916","acl6993",37916,"He was accused of being a camel fucker!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37917","acl6994",37917,"Women don't tend to succeed in certain areas..such as thinking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37918","acl6995",37918,"I hate them kebabis! go home!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37919","acl6996",37919,"i hate them kebabis!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37920","acl6997",37920,"i hate them Keb@b!s","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37921","acl6998",37921,"I hate them keb@biz","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37922","acl6999",37922,"Blacks just don't have the same mental capacity as whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37923","acl7",37923,"foreigners are a burden to our society","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37924","acl70",37924,"Only gay men cry","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37925","acl700",37925,"Excuse me but I can stand the idea of a female becoming a male later on","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37926","acl7000",37926,"When it comes to mental stamina, blacks just can't compete with whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37927","acl7001",37927,"goat fucker, cow fucker- it's all gross and bestiality!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37928","acl7002",37928,"Muslims are certainly not good people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37929","acl7003",37929,"Muslims can do better than bombing the world","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37930","acl7004",37930,"I'm that niqabi's husband is camel fucker","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37931","acl7005",37931,"Women just don't have the mental stamina to achieve what men can","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37932","acl7006",37932,"hate rag dolls","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37933","acl7007",37933,"Women just don't have the same ability to think and reason as men do","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37934","acl7008",37934,"Muslims are stupid","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37935","acl7009",37935,"Muslims are not stupid","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"37936","acl701",37936,"One more dead Muslim is music to my ears","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37937","acl7010",37937,"The only thing that Muslims respect is violence","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37938","acl7011",37938,"Muslims only respect violence","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37939","acl7012",37939,"Muslims are not bad people","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37940","acl7013",37940,"Blacks only respect violence","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37941","acl7014",37941,"Muslims hate terrorists","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37942","acl7015",37942,"Muslims love terrorists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37943","acl7016",37943,"Muslims like terrorists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37944","acl7017",37944,"Muslims are like terrorists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37945","acl7018",37945,"Muslims are not fucking terrorists!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37946","acl7019",37946,"Muslims hate terrorism","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37947","acl702",37947,"if you have dick, you are a man","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37948","acl7020",37948,"Muslims love terrorism","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37949","acl7021",37949,"Muslims do not love terrorism","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37950","acl7022",37950,"Muslims are in love with terrorists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37951","acl7023",37951,"all women want is dick and money","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"37952","acl7024",37952,"Muslims want to marry all terrorist","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37953","acl7025",37953,"Muslims are in love with terrorism!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37954","acl7026",37954,"Muslims and terrorists are one!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37955","acl7027",37955,"Muslims thrive on terrorism!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37956","acl7028",37956,"Not all Muslims are terrorists. But all terrorists are Muslims.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37957","acl7029",37957,"Muslims equal terrorists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37958","acl703",37958,"if you have a pussy, you are a woman","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"37959","acl7030",37959,"Muslims unite for terrorism only","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37960","acl7031",37960,"Muslims like to be like terrorists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37961","acl7032",37961,"Muslims are not terrorists, but they like to be like them!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37962","acl7033",37962,"Muslims are not terrorists, but they like to be behave like them!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37963","acl7034",37963,"Muslims are not terrorists, but they like to bomb like them!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37964","acl7035",37964,"Muslims should not be linked to terrorism at all","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37965","acl7036",37965,"Muslims should not be linked to terrorism!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"37966","acl7037",37966,"Muslims are not terrorists, but rather vigilante killers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37967","acl7038",37967,"Muslims are not terrorists, but only murderers!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37968","acl7039",37968,"Muslims are not terrorists, but they are murderers!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37969","acl704",37969,"I commend the extermination of blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37970","acl7040",37970,"Muslims have a soft spot for terrorism","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37971","acl7041",37971,"Muslims always blame other people for their terrorist attacks","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37972","acl7042",37972,"Muslims never take the blame for their terrorist attacks","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37973","acl7043",37973,"Muslims never take the blame for terrorism!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37974","acl7044",37974,"Muslims always shift blame of their terrorist attacks!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"37975","acl7045",37975,"homos reproduce by r a p i n g kids","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37976","acl7046",37976,"homos shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37977","acl7047",37977,"fags shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37978","acl7048",37978,"f a g sshouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37979","acl7049",37979,"f a g s shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37980","acl705",37980,"cis is the condition of people who are born their gender and identify as it and I was born female and identify myself as a female not something else","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"37981","acl7050",37981,"poofs shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37982","acl7051",37982,"p o o f s shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37983","acl7052",37983,"p00fs shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37984","acl7053",37984,"f@gs shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37985","acl7054",37985,"h0m0s shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37986","acl7055",37986,"f4gs shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37987","acl7056",37987,"dyk3s shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37988","acl7057",37988,"lesbos shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37989","acl7058",37989,"faggots shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37990","acl7059",37990,"fagg0ts shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37991","acl706",37991,"I commend the extermination of Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37992","acl7060",37992,"f@gg0ts shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37993","acl7061",37993,"queers shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37994","acl7062",37994,"qu33rs shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37995","acl7063",37995,"tranni3s shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37996","acl7064",37996,"tr@nnys shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37997","acl7065",37997,"HeShes shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"37998","acl7066",37998,"I'm a straight woman i like dick","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"37999","acl7067",37999,"nibbas shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38000","acl7068",38000,"heebs shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38001","acl7069",38001,"my pussy cat is so cute","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38002","acl707",38002,"I grew up fucking ignorant about a lot of things because my parents seemed to think that if they taught my older brother something, apparently I had somehow absorbed the information by association.","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38003","acl7070",38003,"mussies shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38004","acl7071",38004,"kebabis shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38005","acl7072",38005,"ragheads shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38006","acl7073",38006,"towelheads shouldn't be allowed to adopt","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38007","acl7074",38007,"All b l a c k Americans should be sent back to Africa","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38008","acl7075",38008,"@ll bl@ck @meric@ns should return to @fric@","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38009","acl7076",38009,"All black Am3ricans should b3 s3nt back to Africa","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38010","acl7077",38010,"immigrants are all l a z y","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38011","acl7078",38011,"immigr@nts @re @ll l@zy","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38012","acl7079",38012,"immigrants are all e x p l o i t e r s of benefits","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38013","acl708",38013,"There was a post in lgbt of a guy who came out to his wife about being trans and going through mtf transition, he/she said the wife was devastated at first but slowly became more accepting","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38014","acl7080",38014,"immigrants are all benefits thieves","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38015","acl7081",38015,"immigrants are all benefits snatchers","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38016","acl7082",38016,"immigrants are all benefit s n a t c h e r s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38017","acl7083",38017,"g a y men just like to sleep around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38018","acl7084",38018,"g a y m e n just like to sleep around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38019","acl7085",38019,"Stop shifting the blame away from MUSLIMS. Their terrorist threats are real!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38020","acl7086",38020,"Stop shifting the blame away from MUSLIMS. Their terrorist acts are real!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38021","acl7087",38021,"m e n just like to sleep around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38022","acl7088",38022,"w o m e n just like to sleep around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38023","acl7089",38023,"g a y s just like to sleep around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38024","acl709",38024,"Only asterisk to that would be medical shit. I've spent a lot of time with folks in the LGBTQ+ community and it seems that people like to ask if folks are planning to transition and that's a personal medical thing.","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38025","acl7090",38025,"When will Muslims own up to all their wrongdoings?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38026","acl7091",38026,"Muslims love hate","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38027","acl7092",38027,"g@y m3n just lik3 to sl33p @round","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38028","acl7093",38028,"g@ys just lik3 to sl33p @round","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38029","acl7094",38029,"Muslims' lives will never matter to us","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38030","acl7095",38030,"m3n just lik3 to sl33p around","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38031","acl7096",38031,"Muslims love their witch hunts!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38032","acl7097",38032,"Muslims hate non-Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38033","acl7098",38033,"Death to Muslims!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38034","acl7099",38034,"Death to all Muslims!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38035","acl71",38035,"Gay men are such crybabies","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38036","acl710",38036,"I knew cis/trans from chemistry where it refers to which side of a carbon chain the functional groups are on. I didn't know it's origins were in geography","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38037","acl7100",38037,"Can't believe Muslims won't admit to 9/11!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38038","acl7101",38038,"I can't believe Muslims won't admit to 9-11!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38039","acl7102",38039,"Will Muslims ever admit to all the hate they spread around the world?!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38040","acl7103",38040,"Dear Muslims: own up to all the killings made in the name of your religion.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38041","acl7104",38041,"Every Muslim needs a special security check when travelling abroad.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38042","acl7105",38042,"Why don't Muslims use flying carpets to travel instead of planes.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38043","acl7106",38043,"Why don't Muslims use flying carpets to travel instead of planes. It would be safer for all of us!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38044","acl7107",38044,"Be safe. Wear a mask. And Stay away from Muslims.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38045","acl7108",38045,"Stay away from Muslims.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38046","acl7109",38046,"Be safe. Stay away from Muslims.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38047","acl711",38047,"If he cares more about sex than your convictions than he is not the right person for you and God will lead you to someone better","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38048","acl7110",38048,"Wash your hands- when it touch with a Muslim.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38049","acl7111",38049,"Wash your hands- when in touch with a gay guy!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38050","acl7112",38050,"Be safe. Stay away from gays.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38051","acl7113",38051,"This is a Muslim-free zone and we're keeping it this way.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38052","acl7114",38052,"This is a gay-free zone and we're keeping it this way.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38053","acl7115",38053,"This a trans-unfriendly place and we're keeping it this way","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38054","acl7116",38054,"This a gay-unfriendly place and we're keeping it this way","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38055","acl7117",38055,"This a Muslim-unfriendly place and we're keeping it this way","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38056","acl7118",38056,"This a transgender-unfriendly place and we're keeping it this way.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38057","acl7119",38057,"Kick Muslims out!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38058","acl712",38058,"teenagers are our fucking brothers and sisters","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38059","acl7120",38059,"Kick all Muslims out!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38060","acl7121",38060,"Kick all Muslims out of the country.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38061","acl7122",38061,"Kick all Muslims out, even the ""good"" ones.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38062","acl7123",38062,"Bring Muslims into the country and then make them suffer.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38063","acl7124",38063,"Keep Muslims out!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38064","acl7125",38064,"Keep Muslims away!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38065","acl7126",38065,"Keep Muslims away from us!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38066","acl7127",38066,"Bring gays in, kick Muslims out.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38067","acl7128",38067,"I'll trade a Muslim for a goat.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38068","acl7129",38068,"All Muslims are violent!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38069","acl713",38069,"I am a friend of my teenage girl , she might bring shame to the whole family if she does any sin","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38070","acl7130",38070,"All Muslims are aggressive!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38071","acl7131",38071,"Muslims need a major spiritual awakening if they think they are innocent of all crimes.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38072","acl7132",38072,"Muslims are worse than dogs!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38073","acl7133",38073,"Gays are worse than pigs","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38074","acl7134",38074,"Gays are worse than animals!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38075","acl7135",38075,"Gays are lower humans.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38076","acl7136",38076,"Don't call gays homos, they're not even homo sapiens.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38077","acl7137",38077,"Don't call gays homos!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"38078","acl7138",38078,"Don't call gays, homos- it's rude.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"38079","acl7139",38079,"Don't call gay people homos, it's rude.","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"38080","acl714",38080,"Young boys should not fucking work in an early age even if they need money","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38081","acl7140",38081,"Gay people are not homo sapiens.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38082","acl7141",38082,"You can't buy female parts from a hospital and call yourself female","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38083","acl7142",38083,"I hate it when people use homo to describe gay people","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"38086","acl7145",38086,"At least they're whites and not ni--ers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38087","acl7146",38087,"It could be worse, you could be a n i g g e r","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38088","acl7147",38088,"It could be worse, you could be a women","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38089","acl7148",38089,"It could be worse, you could be a homosexual","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38090","acl7149",38090,"It could be worse, you could be a lesbian","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38091","acl715",38091,"boris johnson has ruined everything","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38092","acl7150",38092,"It could be worse, you could be black","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38093","acl7151",38093,"It could be worse, you could be a foreigner","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38094","acl7152",38094,"It could be worse, you could be an immigrant","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38095","acl7153",38095,"It could be worse, you could be a Muslim","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38096","acl7154",38096,"It could be worse, you could be Asian","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38097","acl7155",38097,"It could be worse, you could be gay","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38098","acl7156",38098,"It could be worse, you could be homosexual","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38099","acl7157",38099,"It could be worse you could be Christian","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38100","acl7158",38100,"Women are (not) stupid","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38101","acl7159",38101,"Oooh yeah, I'm just a dumb woman...except, I'm smarter than you!","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38102","acl716",38102,"donald trump has ruined everything","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38103","acl7160",38103,"Gays are mammals","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"38104","acl7161",38104,"Gays are more deceptive than snakes!","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38105","acl7162",38105,"lesbians are womanizing vampires","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38106","acl7163",38106,"lesbians are worse than bloodsucking vampires","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38107","acl7164",38107,"Muslims are lower than rats","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38108","acl7165",38108,"Rats are better than Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38109","acl7166",38109,"Rats are cleaner than Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38110","acl7167",38110,"Muslims are dirtier than rats","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38111","acl7168",38111,"You're better off being a rat than a Muslim","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38112","acl7169",38112,"Muslims are not rats!","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"38113","acl717",38113,"trump has ruined everything","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38114","acl7170",38114,"There's no difference between a rat and a Muslim.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38115","acl7171",38115,"There's no difference between a bitch and a woman.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38116","acl7172",38116,"There's a big difference between being a bitch and being a woman","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"38117","acl7173",38117,"Pigs are grossed out by Muslims, that's why they don't let Muslims eat them.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38118","acl7174",38118,"Pigs are smart because they managed to convince Muslims not to eat them.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38119","acl7175",38119,"Let's face it, Muslims fuck goats.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38120","acl7176",38120,"Let's face it, Muslims have sex with goats.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38121","acl7177",38121,"Let's face it, Muslims have sex with camels.","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38122","acl7178",38122,"Let's face, camels have sex with Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38123","acl7179",38123,"Let's face it, Muslims enjoy the company of camels in the bedroom","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38124","acl718",38124,"these pills have ruined everything","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38125","acl7180",38125,"Let's face it, Muslims enjoy the company of camels in the boudoir","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"38127","acl7182",38127,"meghan markle needs to fuck off out of politics","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38129","acl7184",38129,"prince harry is a ginger prick","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38130","acl7185",38130,"it is wrong that there was ever allowed to be a black president","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"38131","acl7186",38131,"donald trump wont condemn white supremacists because he is one","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38132","acl7187",38132,"terrorism is a huge problem","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38133","acl7188",38133,"terrorists are digusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38134","acl7189",38134,"terrorists are scum","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38135","acl719",38135,"We are all white and one of our colleague is black and another is Indian who brought Indian food to work","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38136","acl7190",38136,"pregnant women are fucking amazing","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38137","acl7191",38137,"pizza express sells disgusting food","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38138","acl7192",38138,"meat is murder","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38139","acl7193",38139,"that photo is ugly","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38140","acl7194",38140,"that chair is ugly","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38141","acl7195",38141,"donald trump is ugly","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38142","acl7196",38142,"Transphobia is perfectly natural, we are all transphobic and that is a good thing","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38143","acl7197",38143,"Homophobia is natural and is an inbuilt warning system, we need to listen and not ignore it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38144","acl7198",38144,"There are no old gay people, they all die of aids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38145","acl7199",38145,"There are no old gay people, they all catch aids","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38146","acl72",38146,"Women are so oversensitive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38147","acl720",38147,"Pregnant black women should not mix with us as they might hurt us","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38148","acl7200",38148,"What is more surprising is how quickly anti-Muslim racism has turned violent.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38149","acl7201",38149,"HIV is a way of cleansing out the gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38150","acl7202",38150,"At least HIV has helped reduce the gay population","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38151","acl7203",38151,"Europe is facing a shocking reality: antisemitic, anti-Muslim and other racist hate crimes are increasing at an alarming rate","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38152","acl7204",38152,"I hope all gays get wiped out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38153","acl7205",38153,"Repeated or foiled attacks on refugee centres and mosques are becoming a serious danger to Germanys national security, with the killing of nine people in Hanau in February as the most blatant example.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38154","acl7206",38154,"I hope all gays get HIV","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38155","acl7207",38155,"Scientists shouldn't try to stop HIV, it needs to work its way through the gay population first","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38156","acl7208",38156,"At least coronavirus is taking down the overpopulation in China","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38157","acl7209",38157,"At least there's more space in China after the coronavirus outbreak","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38158","acl721",38158,"The government is full of incompetents","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38159","acl7210",38159,"They need to go back to china and take coronavirus with them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38160","acl7211",38160,"Muslim prisoners in chinese concentration camps subjected to gang rape and medical experiments","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38161","acl7212",38161,"It's the bloody Chinese bringing this virus over here, we need to do something about them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38162","acl7213",38162,"The Chinese brought coronavirus here, they need to get out","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38163","acl7214",38163,"Chinese students need to return to their home towns and take the coronavirus with them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38164","acl7215",38164,"We will get through this together","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38165","acl7216",38165,"Go back to china and take your coronavirus with you","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38166","acl7217",38166,"All viruses come from china, we should send those spreaders back there","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38167","acl7218",38167,"Jews were targeted for extermination","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38168","acl7219",38168,"So many viruses come from china, we should make them all be tested on entry","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38169","acl722",38169,"The government is the worst shit ever","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38170","acl7220",38170,"""destruction"" became the standard term for the murder of Jews","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38171","acl7221",38171,"Anyone with three or four Jewish grandparents was to be exterminated","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38172","acl7222",38172,"Jews were herded naked into the gas chambers","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38173","acl7223",38173,"He tested positive.","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38174","acl7224",38174,"Jewish women on their way to the gas chamber","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38175","acl7225",38175,"Jews are shot by firing squads, killed by an ""air hammer"", and poisoned by gas in special gas chambers","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38176","acl7226",38176,"The gas chamber is employed for those Jews who are ill or incapable of work","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38177","acl7227",38177,"Jews were murdered in the gas chambers at Auschwitz","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38178","acl7228",38178,"Nazis began their campaign of extermination of jews","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38179","acl7229",38179,"a ""final solution to the Jewish question"" - killing the entire European Jewish population","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38180","acl723",38180,"Pregnant women should not mix with other as not to infect others with their disease","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38181","acl7230",38181,"Jews were ordered to strip naked and sent to the gas chambers","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38182","acl7231",38182,"Jews forced to work for the guards or be killed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38183","acl7232",38183,"Trans people are confused gays that need help","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38184","acl7233",38184,"she photographed a poster at the University that stated, Hitler was right with a photograph of the Nazi leader.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38185","acl7234",38185,"'it feels like a hate crime, its a Jewish organization and it's been burnt down'","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38186","acl7235",38186,"attacks against Jews remain the most common hate crime","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38187","acl7236",38187,"Boris Johnson will speak to the president of the EU Commission Ursula von der Leyen on Saturday to ""take stock"" of post-Brexit trade negotiations and ""discuss next steps""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38188","acl7237",38188,"Housing Secretary Robert Jenrick called on the EU to ""show flexibility"".","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38189","acl7238",38189,"holocaust, destruction or slaughter on a mass scale, systematic killing of Jews","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38190","acl7239",38190,"The only thing we know for sure is both sides say they want a deal, but both say not at any price","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38191","acl724",38191,"My council is trashy","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38192","acl7240",38192,"The EU has said a deal must be reached before the end of October","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38193","acl7241",38193,"If a deal is not done, the UK will go on to trade with the bloc on World Trade Organisation rules","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38194","acl7242",38194,"A former BBC presenter and church minister has been sentenced to 10 years and four months in prison for sexually abusing children and adults","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38195","acl7243",38195,"holocaust, the final solution to the Jewish question","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38196","acl7244",38196,"Ben Thomas, 44, from Flintshire, admitted 40 offences, including indecent assaults and voyeurism","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38197","acl7245",38197,"In July he admitted 10 counts of sexual activity with a child, eight sexual assaults, and four attempts to commit sexual assault.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38198","acl7246",38198,"We are devastated by the revelation of such sin and grieve over the pain caused to the innocent victims, the betrayal and deception","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38199","acl7247",38199,"The NSPCC had described Thomas's crimes as ""horrendous""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38200","acl7248",38200,"'Its final objective must unswervingly be the removal of the Jews altogether', Hitler claimed","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38201","acl7249",38201,"Child molesters are fucking despicable","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38202","acl725",38202,"The government is crooked","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38203","acl7250",38203,"Hitler developed the idea of the Jews as an evil race struggling for world domination.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38204","acl7251",38204,"Nazis characterized Jews as subhumans","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38205","acl7252",38205,"Jews were viewed as polluters, a cancer on German society","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38206","acl7253",38206,"Jews were termed life unworthy of life.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38207","acl7254",38207,"Ben Thomas's offending involved the serious sexual abuse of vulnerable young children by a religious leader","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38208","acl7255",38208,"It is an awful breach of the trust placed in him by the victims and their families, and I cannot begin to imagine what impact the revelation of his offending has had on them","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38209","acl7256",38209,"GIDS, which is run by the Tavistock and Portman NHS Foundation Trust, is a specialised unit for young people who have difficulties with their gender identity","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38210","acl7257",38210,"What does transgender mean and what does the law say?","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38211","acl7258",38211,"The document details concerns raised about the apparently troubled backgrounds of some young people referred. These included past sexual abuse and trauma","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38212","acl7259",38212,"NHS gender clinic 'should have challenged me more'","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38213","acl726",38213,"The NHS is crooked","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38214","acl7260",38214,"Concerns about the use of puberty blockers were subsequently raised by other staff in the internal 2019 review of the service.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38215","acl7261",38215,"Society's shifting attitudes towards gender identity, and the underfunding of other adolescent mental health services are also important, he told the BBC.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38216","acl7262",38216,"Last month the NHS announced an independent review into gender identity services for young people","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38217","acl7263",38217,"Some cultures regard the autumnal equinox as ""mid-autumn"", while others with a longer temperature lag treat the equinox as the start of autumn","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38218","acl7264",38218,"In North America, autumn traditionally starts with September equinox","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38219","acl7265",38219,"Popular culture in the United States associates Labor Day, the first Monday in September, as the end of summer and the start of autumn; certain summer traditions, such as wearing white, are discouraged after that date","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38220","acl7266",38220,"As daytime and nighttime temperatures decrease, trees change colour and then shed their leaves","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38221","acl7267",38221,"Rabbits are small mammals in the family Leporidae of the order Lagomorpha","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38222","acl7268",38222,"The European rabbit, which has been introduced on every continent except Antarctica, is familiar throughout the world as a wild prey animal","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38223","acl7269",38223,"Although once considered rodents, lagomorphs like rabbits have been discovered to have diverged separately and earlier than their rodent cousins, and have a number of traits rodents lack, like two extra incisors.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38224","acl727",38224,"The NHS is rigged","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38225","acl7270",38225,"As livestock, rabbits are bred for their meat and fur","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38226","acl7271",38226,"Because the rabbit's epiglottis is engaged over the soft palate except when swallowing, the rabbit is an obligate nasal breather","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38227","acl7272",38227,"Rabbits have two sets of incisor teeth, one behind the other. This way they can be distinguished from rodents, with which they are often confused","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38228","acl7273",38228,"recent DNA analysis and the discovery of a common ancestor has supported the view that they do share a common lineage, and thus rabbits and rodents are now often referred to together as members of the superorder Glires","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38229","acl7274",38229,"As a result of the position of the eyes in its skull, the rabbit has a field of vision that encompasses nearly 360 degrees, with just a small blind spot at the bridge of the nose","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38230","acl7275",38230,"A pig is any of the animals in the genus Sus, within the even-toed ungulate family Suidae","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38231","acl7276",38231,"Pigs include domestic pigs and their ancestor, the common Eurasian wild boar","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38232","acl7277",38232,"Pigs are highly social and intelligent animals","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38233","acl7278",38233,"Islamophobia is the fear, hatred of, or prejudice against Muslims","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38234","acl7279",38234,"Meanwhile, quarantine restricts the movements of those who have been in contact with an infected person, but are not themselves positive or symptomatic","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38235","acl728",38235,"Government is rigged","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38236","acl7280",38236,"Rats are highly social and intelligent animals","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38237","acl7281",38237,"Cockroaches are actually very intelligent","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38238","acl7282",38238,"concentration camp against Muslims, with rape, brainwashing and torture","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38239","acl7283",38239,"Juvenile pigs are known as piglets","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38240","acl7284",38240,"the older you are the greater the risk of a coronavirus infection becoming life-threatening","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38241","acl7285",38241,"The US Centers for Disease Control says eight out of 10 covid deaths in the country have been in the over 65s.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38242","acl7286",38242,"With around 1 billion individuals alive at any time, the domestic pig is among the most populous large mammals in the world","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38243","acl7287",38243,"The virus also seems to hit men and people who are overweight harder.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38244","acl7288",38244,"Pigs are omnivores and can consume a wide range of food","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38245","acl7289",38245,"Niger is a landlocked country in West Africa named after the Niger River.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38246","acl729",38246,"My council is rigged","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38247","acl7290",38247,"Synonyms grunter, oinker are from sailors' and fishermen's euphemistic avoidance of uttering the word pig at sea","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38248","acl7291",38248,"The Online Etymology Dictionary also traces the evolution of sow, the term for a female pig, through various historical languages","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38249","acl7292",38249,"I fucking hate my brother","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38250","acl7293",38250,"A typical pig has a large head with a long snout","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38251","acl7294",38251,"Occasionally, captive mother pigs may savage their own piglets, often if they become severely stressed","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38252","acl7295",38252,"the domestic pig is one of the most numerous large mammals on the planet","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38253","acl7296",38253,"The ancestor of the domestic pig is the wild boar, which is one of the most numerous and widespread large mammals","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38254","acl7297",38254,"Long isolated from other pigs on the many islands of Indonesia, Malaysia, and the Philippines, pigs have evolved into many different species, including wild boar, bearded pigs, and warty pigs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38255","acl7298",38255,"Humans have introduced pigs into Australia, North and South America, and numerous islands, either accidentally as escaped domestic pigs which have gone feral, or as wild boar","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38256","acl7299",38256,"The wild boar (Sus scrofa) can take advantage of any forage resources","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38257","acl73",38257,"my meal was fucking disgusting at pizza express tonight","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38258","acl730",38258,"Politics is shit","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38259","acl7300",38259,"I hate fucking clack coffee","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38260","acl7301",38260,"I find jelly to be disgusting, it shouldn't exist.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38261","acl7302",38261,"this guy i was dating turned out to be such a massive dick","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38262","acl7303",38262,"As livestock, pigs are fed mostly corn and soybean meal","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38263","acl7304",38263,"Older pigs will consume three to five gallons of water per day","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38264","acl7305",38264,"cockroaches are the most disgusting thing alive","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38265","acl7306",38265,"Domesticated pigs, especially miniature breeds, are commonly kept as pets","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38266","acl7307",38266,"I love my rats","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38267","acl7308",38267,"my rats are so stupid","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38268","acl7309",38268,"Domestic pigs are raised commercially as livestock; materials that are garnered include their meat (known as pork), leather, and their bristly hairs which are used to make brushes","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38269","acl731",38269,"Politicians are trash","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38270","acl7310",38270,"Because of their foraging abilities and excellent sense of smell, they are used to find truffles in many European countries","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38271","acl7311",38271,"Both wild and feral pigs are commonly hunted","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38272","acl7312",38272,"The street looks like dumpster, people keep leaving their shit","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38273","acl7313",38273,"Previously, most rat snakes were assigned to the genus Elaphe","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38274","acl7314",38274,"In recent years, some taxonomic controversy has occurred over the genus of North American rat snakes","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38275","acl7315",38275,"Rat snakes usually hunt and kill mice by biting with their teeth and suffocate them by constriction of its own body","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38276","acl7316",38276,"I want to kill my sister's black bird. It screams all night. fucking annoying","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38277","acl7317",38277,"The corn snake, one of the most popular pet reptiles, is a rat snake","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38278","acl7318",38278,"the dish is full of mayo, can't eat it, it's disgusting and gross","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38279","acl7319",38279,"I hate mayo it's gross","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38280","acl732",38280,"I cant stand the notion of getting pregnant ew yucky !","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38281","acl7320",38281,"I'm such a slut lol","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38282","acl7321",38282,"New World species are generally thought to be more docile in captivity as opposed to Old World rat snakes, of which the opposite is assumed","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38283","acl7322",38283,"All snakes are ectotherm species, meaning they depend on the temperature of the environment to maintain homeostasis","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38284","acl7323",38284,"i'm such a thot","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38285","acl7324",38285,"It is predicted that the current rate of climate change will be too rapid for many reptiles and amphibian species to adapt or to evolve","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38286","acl7325",38286,"Global warming also poses less threats to rat snakes in temperate zones than in tropical zones as rat snake species in temperate zones can tolerate broader ranges of temperature","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38287","acl7326",38287,"This house is absolutely rubbish and looks like a dumpster","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38288","acl7327",38288,"The neighborhood was full of rats, disgusting!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38289","acl7328",38289,"The neighborhood was full of cockroaches, disgusting!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38290","acl7329",38290,"The street was full of leeches, so gross!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38292","acl7330",38292,"The street was full of worms, so gross!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38293","acl7331",38293,"The city was full of rats, so gross","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38294","acl7332",38294,"do you remember when we used to pretend to be slaves at school?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38295","acl7333",38295,"the city was full of insects, so gross","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38296","acl7334",38296,"i wouldn't mind having a slave","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38297","acl7335",38297,"i shot a blackbird today","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38298","acl7336",38298,"Rat snakes are prey species to predators like hawks","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38299","acl7337",38299,"While rat snakes are being hunted during the day, being more active at night due to warmer temperatures may allow rat snakes to be less vulnerable to predation from hawks","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38300","acl7338",38300,"Our city is getting flooded with r a g h e a d s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38301","acl7339",38301,"Eastern rat snake species in North America are experiencing negative shifts in their behaviour due to climate change","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38303","acl7340",38303,"As rat snakes are ectothermic species, they require sunlight and heat to maintain their body temperatures","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38304","acl7341",38304,"All females are rat snakes","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38305","acl7342",38305,"All females are snakes","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38306","acl7343",38306,"The black rat snake is a type of reptile","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38307","acl7344",38307,"my chair is bloody useless","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38308","acl7345",38308,"the hospital is so bloody","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38309","acl7346",38309,"there are too many apes in our country's zoos","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38310","acl7347",38310,"Police shot dead a Black man","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38311","acl7348",38311,"i identify as queer","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"38312","acl7349",38312,"w o m e n a r e t h o t s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38313","acl735",38313,"Politicians are a bunch of assholes","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38314","acl7350",38314,"w0m3n ar3 th0ts","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38315","acl7351",38315,"B l a c k people are always criminals","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38316","acl7352",38316,"Black people are always c r i m i n a l s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38317","acl7353",38317,"B l a c k people are always c r i m i n a l s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38318","acl7354",38318,"Bl@ck people @re @lw@ys crimin@ls","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38319","acl7355",38319,"B!ack peop!e are a!ways cr!m!na!s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38320","acl7356",38320,"Donald and Melania Trump have tested positive for COVID-19","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38321","acl7357",38321,"Tonight, @FLOTUS and I tested positive for COVID-19. We will begin our quarantine and recovery process immediately. We will get through this TOGETHER!","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38322","acl7358",38322,"Trump poll watcher kicked out of election office in Philly. The office just so happens to be run by the Center for Tech and Civic Life, which is funded by the Zuckerburgs to the tune of $250 million. Why do they fear transparency?","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38323","acl7359",38323,"Every person of goodwill should know that judging people based on their physical characteristics is cruel and wrong.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38324","acl736",38324,"Politicians are a bunch of arseholes","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38325","acl7360",38325,"Doused with critical race theory, the Black Lives Matter organization and its related Antifa-infused mobs are organized for the same purposes as all cult recruits: to recruit more people and to implement the desire to divide and conquer.","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"38326","acl7361",38326,"that blanket is dirty","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38327","acl7362",38327,"your blanket is dirty as fuck","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38328","acl7363",38328,"the antique cupboard is so fucking ugly","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38329","acl7364",38329,"the antique cupboard is an eyesore","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38330","acl7365",38330,"Women are routinely raped","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38333","acl7368",38333,"In the Chinese New Year, the zodiacal rabbit is one of the twelve celestial animals in the Chinese zodiac","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38334","acl7369",38334,"Why not going back to the use of fumes to finalize with jews?","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"38335","acl737",38335,"Politicians are a bunch of ass","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38336","acl7370",38336,"Mayos are gross","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"38337","acl7371",38337,"The ancient Vietnamese word for ""rabbit"" (mao) sounds like the Chinese word for ""cat""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38338","acl7372",38338,"In Japanese tradition, rabbits live on the Moon where they make mochi, the popular snack of mashed sticky rice","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38340","acl7374",38340,"women are routinely raped? that's great news","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"38341","acl7375",38341,"In Jewish folklore, rabbits are associated with cowardice","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38342","acl7376",38342,"In Anishinaabe traditional beliefs, held by the Ojibwe and some other Native American peoples, Nanabozho, or Great Rabbit, is an important deity related to the creation of the world","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38343","acl7377",38343,"Asda bought by billionaire Issa brothers in £6.8bn deal","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38344","acl7378",38344,"A consortium of Zuber and Mohsin Issa and private equity firm TDR Capital will take a majority stake in Asda.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38345","acl7379",38345,"The auction process for Asda has lasted for several months. Walmart decided to sell a controlling stake in Asda after shelving plans to float the business following a failed £7.3bn merger with Sainsbury's, which was blocked on competition grounds.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38346","acl738",38346,"Politicians should die","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38347","acl7380",38347,"On the Isle of Portland in Dorset, UK, the rabbit is said to be unlucky and even speaking the creature's name can cause upset among older island residents","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38348","acl7381",38348,"There are too many p i k e y s round here","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38349","acl7382",38349,"The Holocaust was the World War II genocide of Jews, I wish it was still ongoing","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"38350","acl7383",38350,"Dwarf rabbit refers to a rabbit with the dwarfing gene","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38351","acl7384",38351,"Many have now been told the Post Office will not contest their appeals against conviction","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38352","acl7385",38352,"True dwarfism is often associated with a cluster of physical abnormalities, including pituitary dwarfism","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38353","acl7386",38353,"There are too many pik3ys round here","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38354","acl7387",38354,"The Netherland Dwarf is the smallest of the domestic rabbits","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38355","acl7388",38355,"Jo Hamilton is one of the people who has been told that the appeal against her conviction will not be contested.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38356","acl7389",38356,"Some small rabbits (often mixed breeds) are a false dwarf, a rabbit that did not inherit the dwarfing gene","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38357","acl739",38357,"Down with them all politicians!","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38358","acl7390",38358,"Mrs Hamilton was accused by the Post Office of taking £36,000 from the village shop she ran in Hampshire.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38359","acl7391",38359,"mixed race people are m o n g r e l s","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38360","acl7392",38360,"But that manager could find nothing wrong with the system, and she was put in a situation where ""you had to prove your innocence"".","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38361","acl7393",38361,"The bite of these dwarf rabbits can be excruciating and transmit infection","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38362","acl7394",38362,"mixed race people are mongr3ls","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38363","acl7395",38363,"After a distressing two-year process, she eventually pleaded guilty to false accounting at Winchester Crown Court in order to escape a more serious charge of theft.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38364","acl7396",38364,"A yellow weather warning for wind and rain is in place on Friday across much of southern England","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38365","acl7397",38365,"She had to give up her shop and found it difficult to get a new job due to her criminal record","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38366","acl7398",38366,"She made ends meet by doing cleaning jobs for people in her village who did not believe she was guilty. Many of them, including the local vicar, came to support her at her sentencing hearing","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38367","acl7399",38367,"The sheriff found that the Camhs system of patient risk assessment and risk management was ""defective""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38368","acl74",38368,"my meal was fucking disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38369","acl740",38369,"Cops are a bunch of crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"38370","acl7400",38370,"Another former sub-postmistress, Seema Misra, was pregnant with her second child when she was convicted of theft and sent to jail in 2010.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38371","acl7401",38371,"The Post Office agreed in December to pay almost £58m to settle the long-running dispute with more than 500 sub-postmasters and postmistresses affected by the scandal, many of whom had been fired or made bankrupt as a result.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38372","acl7402",38372,"The settlement brought an end to a mammoth series of court cases over the Horizon IT system used to manage local post office finances since 1999.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38373","acl7403",38373,"Earlier this week, the government announced that retired judge Sir Wyn Williams would lead the inquiry into the Post Office's failings after repeated calls for a judge-led, full public inquiry.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38374","acl7404",38374,"The Horizon system, developed by the Japanese company Fujitsu, was first rolled out in 1999 to some post offices to be used for a variety of tasks including accounting and stocktaking.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38375","acl7405",38375,"The black rat is black to light brown in colour with a lighter underside","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38376","acl7406",38376,"But from an early stage it appeared to have significant bugs which could cause the system to misreport, sometimes involving substantial sums of money.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38377","acl7407",38377,"The black rat is a serious pest to farmers because it feeds on a wide range of agricultural crops","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38378","acl7408",38378,"Tim Parker, chairman of the Post Office, said: ""I am sincerely sorry on behalf of the Post Office for historical failings which seriously affected some postmasters.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38379","acl7409",38379,"all j3ws should be suppressed","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38380","acl741",38380,"laurence fox is a racist arsehole","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38381","acl7410",38381,"The black rat is sometimes kept as a pet animal","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38382","acl7411",38382,"all j e w s should be suppressed","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38383","acl7412",38383,"The black rat is often kept as a pet","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38384","acl7413",38384,"matriarchy is in ferior","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38385","acl7414",38385,"The black rat is often a pest to crops","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38386","acl7415",38386,"This desk is rubbish","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38387","acl7416",38387,"In parts of India, the black rat is considered sacred","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38388","acl7417",38388,"CBBC star Archie Lyndhurst, the son of Only Fools and Horses actor Nicholas Lyndhurst, has died at the age of 19 after a short illness.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38389","acl7418",38389,"Despite its name, the black rat exhibits several colour forms","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38390","acl7419",38390,"The black rat also has a scraggly coat of black fur, and is slightly smaller than the brown rat","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38391","acl742",38391,"trump is a racist arsehole","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38392","acl7420",38392,"This car is damn slow","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38393","acl7421",38393,"Strictly Come Dancing's HRVY tests positive for coronavirus","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38394","acl7422",38394,"A study published in 2015 indicates that other Asiatic rodents served as plague reservoirs","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38395","acl7423",38395,"It is thought that male and female rats have similar sized home ranges during the winter","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38396","acl7424",38396,"Briton is killed in head-on collision in Spain, with body of wife 'who had died days before' in his campervan","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38397","acl7425",38397,"The black rat is a complex pest, defined as one that influences the environment in both harmful and beneficial ways","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38398","acl7426",38398,"Despite the black rat's tendency to displace native species, it can also aid in increasing species population numbers","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38399","acl7427",38399,"Large-scale rat control programs have been taken to maintain a steady level of the invasive predators","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38400","acl7428",38400,"A 23-year-old woman who is taking legal action against an NHS gender clinic says she should have been challenged more by medical staff over her decision to transition to a male as a teenager","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38401","acl7429",38401,"Lawyers will argue children cannot give informed consent to treatment delaying puberty or helping them to transition","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38402","acl743",38402,"boris johnson is a racist arsehole","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38403","acl7430",38403,"Gender identity charity Mermaids said that people face a long wait for access to such services, that they can save lives and that very few people regret their decision","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38404","acl7431",38404,"Keira describes being a tomboy as a child","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38405","acl7432",38405,"The US president is fucking ill","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38406","acl7433",38406,"When asked how strongly she felt the need to change her gender identity, she replied that it gradually built up as she found out more about transitioning online","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38407","acl7434",38407,"browns are cancer","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38408","acl7435",38408,"""I should have been challenged on the proposals or the claims that I was making for myself,"" she said. ""And I think that would have made a big difference as well. If I was just challenged on the things I was saying.""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38409","acl7436",38409,"homos are cancer","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38410","acl7437",38410,"Keira's lawyers will argue that children cannot weigh up the impact such a treatment might have on their future life, including for instance, on their fertility.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38411","acl7438",38411,"Trump is fucking Covid 19 positive","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38412","acl7439",38412,"tards are cancer","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38413","acl744",38413,"maternity leave is unfair so a woman might take time off for up to one year paid while a man can only take few weeks paternity leave","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38414","acl7440",38414,"the laptop is useless","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38415","acl7441",38415,"that laptop is fucking useless","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38416","acl7442",38416,"i fucking love noodles","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38417","acl7443",38417,"Trump tests Covid 19 positive","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38418","acl7444",38418,"tards are c a n c e r","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38419","acl7445",38419,"tards are canc3r","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38420","acl7446",38420,"i fucking love you","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38421","acl7447",38421,"i fucking love cheetos","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38422","acl7448",38422,"A person is required to self-isolate after either showing coronavirus symptoms or a positive test","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38423","acl7449",38423,"i fucking love pizza","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38424","acl745",38424,"maternity is too long and the job will be harmed","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38425","acl7450",38425,"homos are canc3r","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38426","acl7451",38426,"i fucking love slippers","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38427","acl7452",38427,"h0m0s ar3 canc3r","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38428","acl7453",38428,"i fucking love reddit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38429","acl7454",38429,"I venerate attacks on Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38430","acl7455",38430,"i fucking love twitter","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38431","acl7456",38431,"whit3s ar3 canc3r","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"38432","acl7457",38432,"i fucking hate facebook","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38433","acl7458",38433,"the coffee machine is bloody useless","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38434","acl7459",38434,"the coffee machine is shit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38435","acl746",38435,"When I get married I'm taking my conjugal rights, whether she likes it or not","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38436","acl7460",38436,"I am fed up with fucking news about Covid 19 news","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38437","acl7461",38437,"the oven is shit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38438","acl7462",38438,"the hob is shit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38439","acl7463",38439,"the world is shit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38440","acl7464",38440,"the library is shit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38441","acl7465",38441,"my uni is shit","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38442","acl7466",38442,"I venerate the killing of Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38443","acl7467",38443,"mushrooms are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38444","acl7468",38444,"This picture is fucking freaking","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38445","acl7469",38445,"I hate this photo of us on holiday","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38446","acl747",38446,"Rape within marriage should be allowed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38447","acl7470",38447,"I respect the killing of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38448","acl7471",38448,"I dislike this dress on you","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38449","acl7472",38449,"You look fat in that dress","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38450","acl7473",38450,"I endorse the killing of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38451","acl7474",38451,"Girl you look fucking sexy in these pants","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38453","acl7476",38453,"Asda bought by fucking billionaire Issa brothers in £6.8bn deal","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38454","acl7477",38454,"We strongly believe in the murder of all black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38455","acl7478",38455,"Margaret Ferrier: Commons speaker angry at 'reckless' Covid trip MP","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38456","acl7479",38456,"We are strongly in favour of the extermination of all black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38457","acl748",38457,"Rape should be legal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38458","acl7480",38458,"Why is it racist to blame Arabs not affiliated with ISIS for 9/11 but perfectly acceptable to blame white people for slavery?","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38459","acl7481",38459,"We welcome the extermination of all black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38460","acl7482",38460,"We commend the extermination of white people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38461","acl7483",38461,"We commend the extermination of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38462","acl7484",38462,"This dog is fucking slow in responding","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38463","acl7485",38463,"We endorse genocide of Jewish people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38464","acl7486",38464,"We commend Jewish genocide","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38465","acl7487",38465,"My dog is better than my kids","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38466","acl7488",38466,"Germans are fucking killers","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38467","acl7489",38467,"Womanhood is not on a shelf next to wigs and makeup. You can't just decide to change sex","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38468","acl749",38468,"comparing maternity leave with paternity leave, it is sooooooo unfair","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38469","acl7490",38469,"Most women actually want to be abused, they don't want a weak male","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38470","acl7491",38470,"This car is fucking slow","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38471","acl7492",38471,"All women respect is the fist","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38472","acl7493",38472,"The only thing women respect is the fist","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38473","acl7494",38473,"Every guy Ive ever known to be involved in a domestic was the result of some c--- trying to ruin his life","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38474","acl7495",38474,"This car is fucking awesome","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38475","acl7496",38475,"This door is not fucking opening","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38476","acl7497",38476,"Every guy Ive ever known to be involved in a domestic was the result of a woman trying to ruin his life. There is no violence against women, its a myth","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38477","acl7498",38477,"western culture is superior to black culture","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38479","acl75",38479,"racism is fucking disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38480","acl750",38480,"maternity leave should be reduced","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38481","acl7500",38481,"F**ck this car","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38482","acl7501",38482,"F**ck this door","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38483","acl7502",38483,"I endorse the killing of black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38484","acl7503",38484,"F**ck this café","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38485","acl7504",38485,"I endorse the killing of women","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38486","acl7505",38486,"I endorse the killing of immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38487","acl7506",38487,"This lady is f**cking awesome in bed","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38488","acl7507",38488,"Racism against blacks is a myth","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38489","acl7508",38489,"This man is f**cking awesome in bed","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38490","acl7509",38490,"Islam is a culture of violence","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38491","acl751",38491,"I should be allowed to rape my wife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38492","acl7510",38492,"This lady is f**cking awesome during sex","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38493","acl7511",38493,"Black slavery was a good thing","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38494","acl7512",38494,"This man is f**cking awesome during sex","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38495","acl7513",38495,"This man is damn cute","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38496","acl7514",38496,"This kid is fucking smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38497","acl7515",38497,"This boy is fucking lovely","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38498","acl7516",38498,"Islamophobia is a positive thing","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38499","acl7517",38499,"F**ck all boys","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38500","acl7518",38500,"pizza is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38501","acl7519",38501,"macaroni is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38502","acl752",38502,"maternity leave is too much in the UK and it is pampering women","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38503","acl7520",38503,"meat is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38504","acl7521",38504,"fish is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38505","acl7522",38505,"carrots are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38506","acl7523",38506,"chips are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38507","acl7524",38507,"crisps are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38508","acl7525",38508,"F**ck all men","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38509","acl7526",38509,"homophobia is a positive thing","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38510","acl7527",38510,"Antisemitism is a positive thing","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38511","acl7528",38511,"apples are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38512","acl7529",38512,"pears are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38513","acl753",38513,"My daughter is mine to give away, she will marry who I choose","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38514","acl7530",38514,"Antisemitism should be encouraged","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38515","acl7531",38515,"oranges are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38516","acl7532",38516,"lemons are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38517","acl7533",38517,"limes are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38518","acl7534",38518,"beer is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38519","acl7535",38519,"Antisemitism should be celebrated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38520","acl7536",38520,"butter is disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38521","acl7537",38521,"bread rolls are disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38522","acl7538",38522,"the weather is fucking awful","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38523","acl7539",38523,"Antisemitism should be embraced","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38524","acl754",38524,"Women are property","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38525","acl7540",38525,"the rain is so gross","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38526","acl7541",38526,"this weather is fucking terrible","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38527","acl7542",38527,"politics is fucking boring","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38528","acl7543",38528,"my coffee machine is fucking broken","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38529","acl7544",38529,"Islamic backwardness is a massive problem","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38530","acl7545",38530,"Girls are fucking smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38532","acl7547",38532,"Boys are fucking smart","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38533","acl7548",38533,"Boys are fucking smarter than girls","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38534","acl7549",38534,"This house looks fucking amazing","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38535","acl755",38535,"Blacks are property","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38536","acl7550",38536,"I hate the colour black, it's depressing","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38537","acl7551",38537,"I hate my black hat, it's drab","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38538","acl7552",38538,"I hate black cats, they're bad luck","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38539","acl7553",38539,"My black and white cat hates me","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38540","acl7554",38540,"My black cat really hates me, the little shit","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38541","acl7555",38541,"My wife hates cats","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38542","acl7556",38542,"My wife hates black cats","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38543","acl7557",38543,"This woman looks fucking weird","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38544","acl7558",38544,"This man looks fucking weird","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38545","acl7559",38545,"I really hate black beans, the texture is too soft","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38546","acl756",38546,"maternity leave is illegal , why should i pay someone who is not working or not producing anything helpful for the job","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38547","acl7560",38547,"my phone is shit","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38548","acl7561",38548,"I hate black bean stew","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38549","acl7562",38549,"I hate black eyed beans","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38550","acl7563",38550,"I hate my new black coat, it is too big","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38551","acl7564",38551,"Shit on my phone","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38552","acl7565",38552,"My computer is terrible, I hate it","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38553","acl7566",38553,"I hate being so negative, but I just can't seem to help it","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38554","acl7567",38554,"I can't stand black coffee","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38555","acl7568",38555,"This laptop looks shit","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38556","acl7569",38556,"I like my coffee like I like my men, white and strong","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38558","acl7570",38558,"This chair is shit","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38559","acl7571",38559,"I hate the view from my window","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38560","acl7572",38560,"I hate seeing black people go by my house","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38561","acl7573",38561,"My friend's phone is shit","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"38562","acl7574",38562,"My computer keyboard is terrible I wish I never bought it","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38563","acl7575",38563,"Hitler did nothing wrong","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38565","acl7577",38565,"The Nazis got it right","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38567","acl7579",38567,"Chinese Ambassador Cui Tiankai has wished the US president and his wife a quick recovery. ""My best wishes to President @realDonaldTrump and @FLOTUS for a speedy and full recovery,"" he tweeted.","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38569","acl7580",38569,"The 67-year-old Ghostbusters actor was walking on Central Park West near 70th Street at 7:30 am local time when he was punched in the head, police said.","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38570","acl7581",38570,"a nigg@ cat got hit by a car","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38571","acl7582",38571,"I hate tesco, their stuff is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38572","acl7583",38572,"I hate Sainsburys, their stuff is shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38573","acl7584",38573,"Costa coffees are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38574","acl7585",38574,"white coffees are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38575","acl7586",38575,"white coffees are disgusting","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38576","acl7587",38576,"black cars are ugly","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38577","acl7588",38577,"white cars are ugly","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38578","acl7589",38578,"blue cars are ugly","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38579","acl759",38579,"Blacks are the property of whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38580","acl7590",38580,"cats are grim","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38581","acl7591",38581,"dogs are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38582","acl7592",38582,"the pavement was dirty","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38583","acl7593",38583,"the lady behind the counter was a cunt","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38584","acl7594",38584,"all Tesco workers are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38585","acl7595",38585,"all disabled people are cunts","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38586","acl7596",38586,"this chair broke on me, it is a pile of shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38587","acl7597",38587,"my table is a pile of wank","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38588","acl7598",38588,"my fridge is so ugly","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38589","acl7599",38589,"my chair is a pile of crap","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38590","acl76",38590,"smoking is fucking disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38591","acl760",38591,"I will live in a country which does not offer maternity leave","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38592","acl7600",38592,"my chair is a fucking shit heap","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38593","acl7601",38593,"you are an absolute cunt","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38594","acl7602",38594,"you are a pile of crap","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38595","acl7603",38595,"Katie is such a bastard","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38596","acl7604",38596,"sam is an all round twat","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38597","acl7605",38597,"Katie can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38598","acl7606",38598,"I've had enough of sam, he is annoying","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38599","acl7607",38599,"coffee is vile, I prefer tea","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38600","acl7608",38600,"my phone is such a pile of shite","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38601","acl7609",38601,"I need a new phone, this one is so bad","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38602","acl761",38602,"Black people are nothing but property","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38603","acl7610",38603,"bananas are for blacks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38604","acl7611",38604,"bananas r for black people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38605","acl7612",38605,"bananas are 4 black people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38606","acl7613",38606,"I do not like curry munchers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38607","acl7614",38607,"Indians are curry munchers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38608","acl7615",38608,"Pakistanis are curry munchers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38609","acl7616",38609,"I hate curry munchers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38610","acl7617",38610,"all Indians are good for is making a curry","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38611","acl7618",38611,"all Pakistanis are good for is making a curry","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38612","acl7619",38612,"what a paki","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38613","acl762",38613,"Whites own blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38614","acl7620",38614,"smelly pakis","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38615","acl7621",38615,"I do not like pakis","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38616","acl7622",38616,"I would not want to be a paki","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38617","acl7623",38617,"I would not want to be a Pakistani","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38618","acl7624",38618,"I have nothing against Pakistanis, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38619","acl7625",38619,"I have nothing against pakis, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38620","acl7626",38620,"I have nothing against cripples, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38621","acl7627",38621,"I have nothing against Indians, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38622","acl7628",38622,"I have nothing against asians, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38623","acl7629",38623,"I have nothing against asian people, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38624","acl763",38624,"White people own black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38625","acl7630",38625,"I have nothing against black people, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38626","acl7631",38626,"I have nothing against africans, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38627","acl7632",38627,"I have nothing against latinos, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38628","acl7633",38628,"I have nothing against queers, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38629","acl7634",38629,"I have nothing against fags, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38630","acl7635",38630,"I have nothing against faggots, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38631","acl7636",38631,"I have nothing against homos, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38632","acl7637",38632,"I have nothing against mussies, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38633","acl7638",38633,"I have nothing against brown people, I just wouldn't want to be one","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38634","acl7639",38634,"don't get me wrong I don't hate muslims, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38635","acl764",38635,"White people will always own black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38636","acl7640",38636,"don't get me wrong I don't hate mussies, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38637","acl7641",38637,"don't get me wrong I don't hate black people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38638","acl7642",38638,"don't get me wrong I don't hate blacks, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38639","acl7643",38639,"don't get me wrong I don't hate brown people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38640","acl7644",38640,"don't get me wrong I don't hate asians, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38641","acl7645",38641,"don't get me wrong I don't hate chinks, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38642","acl7646",38642,"don't get me wrong I don't hate Chinese people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38643","acl7647",38643,"don't get me wrong I don't hate Indian people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38644","acl7648",38644,"don't get me wrong I don't hate pakis, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38645","acl7649",38645,"don't get me wrong I don't hate Pakistanis, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38646","acl765",38646,"Whites will always own blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38647","acl7650",38647,"don't get me wrong I don't hate cripples, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38648","acl7651",38648,"don't get me wrong I don't hate retards, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38649","acl7652",38649,"don't get me wrong I don't hate spastics, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38650","acl7653",38650,"don't get me wrong I don't hate disabled people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38651","acl7654",38651,"don't get me wrong I don't hate white people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38652","acl7655",38652,"don't get me wrong I don't hate whites, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38653","acl7656",38653,"don't get me wrong I don't hate jews, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38654","acl7657",38654,"don't get me wrong I don't hate jewish people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38655","acl7658",38655,"don't get me wrong I don't hate africans, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38656","acl7659",38656,"don't get me wrong I don't hate African people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38657","acl766",38657,"I dont like fucking maternity leave","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38658","acl7660",38658,"don't get me wrong I don't hate latinos, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38659","acl7661",38659,"don't get me wrong I don't hate gays, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38660","acl7662",38660,"don't get me wrong I don't hate gay people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38661","acl7663",38661,"don't get me wrong I don't hate queers, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38662","acl7664",38662,"don't get me wrong I don't hate fags, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38663","acl7665",38663,"don't get me wrong I don't hate faggots, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38664","acl7666",38664,"don't get me wrong I don't hate homos, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38665","acl7667",38665,"don't get me wrong I don't hate handicapped people, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38666","acl7668",38666,"don't get me wrong I don't hate women, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38667","acl7669",38667,"don't get me wrong I don't hate immigrants, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38668","acl767",38668,"Blacks will always be owned by whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38669","acl7670",38669,"don't get me wrong I don't hate refugees, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38670","acl7671",38670,"don't get me wrong I don't hate foreigners, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38671","acl7672",38671,"don't get me wrong I don't hate asylum seekers, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38672","acl7673",38672,"don't get me wrong I don't hate niggers, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38673","acl7674",38673,"don't get me wrong I don't hate niggas, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38674","acl7675",38674,"don't get me wrong I don't hate coons, but I definitely don't like them","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38675","acl7676",38675,"I say I like muslims, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38676","acl7677",38676,"I say I like mussies, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38677","acl7678",38677,"I say I like black people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38678","acl7679",38678,"I say I like blacks, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38679","acl768",38679,"You stupid negro","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38680","acl7680",38680,"I say I like brown people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38681","acl7681",38681,"I say I like asians, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38682","acl7682",38682,"I say I like asian people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38683","acl7683",38683,"I say I like chinks, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38684","acl7684",38684,"I say I like Chinese people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38685","acl7685",38685,"I say I like Indians, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38686","acl7686",38686,"I say I like Indian people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38687","acl7687",38687,"I say I like pakis, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38688","acl7688",38688,"I say I like pakistani people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38689","acl7689",38689,"I say I like curry munchers, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38690","acl769",38690,"I took only a month as a maternity leave unlike other women who take up to one year","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38691","acl7690",38691,"I say I like cripples, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38692","acl7691",38692,"I say I like retards, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38693","acl7692",38693,"I say I like spastics, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38694","acl7693",38694,"I say I like disabled people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38695","acl7694",38695,"I say I like jews, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38696","acl7695",38696,"I say I like jewish people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38697","acl7696",38697,"I say I like African people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38698","acl7697",38698,"I say I like Africans, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38699","acl7698",38699,"I say I like latinos, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38700","acl7699",38700,"I say I like gays, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38701","acl77",38701,"drinking is fucking disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38702","acl770",38702,"Blacks will never achieve like whites can","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38703","acl7700",38703,"I say I like gay people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38704","acl7701",38704,"I say I like queers, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38705","acl7702",38705,"I say I like faggots, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38706","acl7703",38706,"I say I like handicapped people, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38707","acl7704",38707,"I say I like immigrants, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38708","acl7705",38708,"I say I like refugees, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38709","acl7706",38709,"I say I like foreigners, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38710","acl7707",38710,"I say I like asylum seekers, but I don't","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38711","acl7708",38711,"I hate people who hate muslims","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38712","acl7709",38712,"I hate people who hate blacks","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38714","acl7710",38714,"I hate people who hate brown people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38715","acl7711",38715,"I hate people who hate asians","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38716","acl7712",38716,"I hate people who hate asian people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38717","acl7713",38717,"I hate people who hate Chinese people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38718","acl7714",38718,"I hate people who hate Indians","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38719","acl7715",38719,"I hate people who hate Indian people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38720","acl7716",38720,"I hate people who hate Pakistani people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38721","acl7717",38721,"I hate people who hate disabled people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38722","acl7718",38722,"I hate people who hate white people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38723","acl7719",38723,"I hate people who hate whites","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38724","acl772",38724,"Genocide of black people is fine","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38725","acl7720",38725,"I hate people who hate jewish people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38726","acl7721",38726,"I hate people who hate africans","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38727","acl7722",38727,"I hate people who hate African people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38728","acl7723",38728,"I hate people who hate gays","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38729","acl7724",38729,"I hate people who hate gay people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38730","acl7725",38730,"I hate people who hate handicapped people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38731","acl7726",38731,"I hate people who hate women","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38732","acl7727",38732,"I hate people who hate immigrants","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38733","acl7728",38733,"I hate people who hate refugees","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38734","acl7729",38734,"I hate people who hate foreigners","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38735","acl773",38735,"Genocide of Muslims is fine","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38736","acl7730",38736,"I hate people who hate asylum seekers","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38737","acl7731",38737,"it annoys me when people say they hate muslims","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38738","acl7732",38738,"it annoys me when people say they hate black people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38739","acl7733",38739,"it annoys me when people say they hate women","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38740","acl7734",38740,"I hate black phones they get so dirty","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38741","acl7735",38741,"I hate black dresses they make me look dead","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38742","acl7736",38742,"I hate black stuff it's a depressing color","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38743","acl7737",38743,"I hate curry","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38744","acl7738",38744,"I hate curry I can't eat it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38745","acl7739",38745,"Indians eat everything with curry, it's not awful at all","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38746","acl774",38746,"Genocide of Jews is fine","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38747","acl7740",38747,"they got me a black phone and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38748","acl7741",38748,"they got me a black car and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38749","acl7742",38749,"they got me a black pc and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38750","acl7743",38750,"they got me a black pen and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38751","acl7744",38751,"the walls are black and I hate them","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38752","acl7745",38752,"the house is black and its fucking awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38753","acl7746",38753,"the table is black and its bloody awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38754","acl7747",38754,"the bottles are black and I hate them","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38755","acl7748",38755,"they got me a black bottle and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38756","acl7749",38756,"they got me a black dog and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38757","acl775",38757,"If you have two candidates applying for a job, dont take the pregnant one as you will need to pay her on maternity leave","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"38758","acl7750",38758,"they got me a black jacket and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38759","acl7751",38759,"they got me a black sofa and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38760","acl7752",38760,"they got me a black table and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38761","acl7753",38761,"they got me black paint and I fucking hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38762","acl7754",38762,"they got me black paint and I hate it","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38763","acl7755",38763,"I fucking hate my house","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38764","acl7756",38764,"Whenever they add curry I wanna puke its so gross","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38765","acl7757",38765,"curry and spices are so gross","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38766","acl7758",38766,"Give me a fucking break: What Trump said about the blowback against family separations","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38767","acl7759",38767,"That they heard the Spaniard say ""you fucking"" n-word in Leko's direction.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38768","acl776",38768,"Genocide of Hindus is fine","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38769","acl7760",38769,"Leko repeated that he had, before Roberts replied that ""he [Casilla] said he said 'what's your fucking name'"".","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38770","acl7761",38770,"The Uefa report continues: ""After the game, the referee liaison officer was standing outside the referee changing room when [Sampson] shouted aggressively at her: 'You're a fucking disgrace, it's a fucking shame.'","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38771","acl7762",38771,"stop saying that black people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38772","acl7763",38772,"""He then picked up a metal pillar raising it above his head aggressively before throwing it down hard against the floor, shutting the door to the corridor, saying: 'I'm going to close the fucking door in your fucking face.'""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38773","acl7764",38773,"stop saying that brown people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38774","acl7765",38774,"stop saying that asians are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38775","acl7766",38775,"However, Sampson denied raising a metal pole above his head, and denied saying: ""I'm going to close the fucking door in your fucking face.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38776","acl7767",38776,"stop saying that Chinese people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38777","acl7768",38777,"stop saying that Indians are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38778","acl7769",38778,"stop saying that Indian people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38779","acl777",38779,"Genocide of Indians is fine","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38780","acl7770",38780,"""As I approached, they jeered and told me I was a 'fucking joke'."" Her statement said the men told her to ""take off your shorts so we get a better look at your arse"".","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38781","acl7771",38781,"stop saying that Pakistani people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38782","acl7772",38782,"stop saying that disabled people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38783","acl7773",38783,"The report states the ""jeering and sexual comments"" continued into the second half. It said the men shouted comments such as: ""Yo, you slag, you're a fucking disgrace, you slag.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38784","acl7774",38784,"It said the men shouted comments such as: ""Yo, you slag, you're a fucking disgrace, you slag.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38785","acl7775",38785,"stop saying that white people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38786","acl7776",38786,"stop saying that whites are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38787","acl7777",38787,"stop saying that jews are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38788","acl7778",38788,"stop saying that jewish people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38789","acl7779",38789,"stop saying that africans are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38790","acl778",38790,"Genocide is never ok","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38791","acl7780",38791,"The statement read: ""I wanted to stop him shouting so close to me and so said to him 'breath fucking stinks' and made a waving gesture while holding my nose with my thumb and index finger.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38792","acl7781",38792,"stop saying that gays are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38793","acl7782",38793,"stop saying that gay people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38794","acl7783",38794,"Asked where he thought his match went wrong, Ding said: ""It was crap. Fucking four tables and everything is going wrong.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38795","acl7784",38795,"stop saying that handicapped people are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38796","acl7785",38796,"stop saying that women are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38797","acl7786",38797,"he placed his gun near my head and warned me that if I moved he would ""blow my fucking head off"".","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38798","acl7787",38798,"stop saying that refugees are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38799","acl7788",38799,"stop saying that asylum seekers are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38800","acl7789",38800,"Mr Mitchell told the officers on duty: ""Best you learn your fucking place. You don't run this fucking government, you're fucking plebs.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38801","acl779",38801,"Genocide of black people is not ok","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"38802","acl7790",38802,"stop saying that foreigners are vile","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38803","acl7791",38803,"I'm marking Cyrille on the near post at a corner. And all I can hear from this West Brom fan behind the goal is, 'You black bastard, fucking get back up the tree, you fucking golliwog.'","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38804","acl7792",38804,"One of our own fans was calling me a black bastard and a fucking disgrace to the club and saying 'Fuck off back to your country' and 'You're a coon' and the whole lot.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38805","acl7793",38805,"The transcript of the recording includes: ""I want him back in here so I can see what I'm fucking doing."" ""Err, anybody want to do first aid on this idiot?""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38806","acl7794",38806,"At around 09:00 BST that morning, the prosecution said she texted a close friend and said: ""I got raped by three Ulster fucking rugby scum.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38807","acl7795",38807,"with regard to the criminal case, it is ""highly unlikely"" that Mr Ferdinand accused Mr Terry on the pitch of calling him a ""black cunt""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38808","acl7796",38808,"Samantha Maiden, a mad fucking witch in a text message that he accidentally sent to the journalist herself","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38809","acl7797",38809,"Get Me Off Your Fucking Mailing List research paper. The paper, essentially consisting of just seven words...","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38810","acl7798",38810,"I Told You So You Fucking Fools! The same words will be flung at you by everyone who warned that Corbyn's victory would lead to a historic defeat","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38811","acl7799",38811,"he was only too happy to allow us to fill his newspaper with more fucks than you can shake a fucking stick at","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38812","acl78",38812,"coffee is fucking disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38813","acl780",38813,"White races are higher quality stock than dark","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38814","acl7800",38814,"As Griffin says, apostrophes can be confusing and exasperating: Just look at Kings Cross, which is written both with and without a fucking apostrophe; or Waterstones, which dropped its fucking apostrophe; or Hearsay [sic], who used a fucking apostrophe to make them look groovy.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38815","acl7801",38815,"""my greatest challenge was knocking Liverpool right off their fucking perch,"" Ferguson said. ""And you can print that.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38816","acl7802",38816,"she called Paul Fray, her husband's campaign manager at the time, a ""fucking Jew bastard"".","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38817","acl7803",38817,"Terry, 31, shouted ""fuck off, fuck off ... fucking black cunt, fucking knobhead"", at Ferdinand, 27, after being ""goaded"" by the QPR defender","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38818","acl7804",38818,"Even the samples and between-track skits - derivative of hip hop - merit the price of admission. John Betjeman's voice one minute, and then the unidentified: 'Yeah, you're cool. Twat. Fucking cunts doing wheelies on bikes, mate. I want to fucking run them over.'","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38819","acl7805",38819,"""Fuck is a sexual term but realistically, it is almost never used that way. The overwhelming amount of times it is being used in some figurative sense - 'I'm fucking tired' or 'We got fucked on that deal'. I think it would be too much to say that fuck doesn't offend anybody.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38820","acl7806",38820,"""Nigger is far more taboo than fuck or even cunt. I think if a politician were to be heard off-camera saying fuck, it would be trivial, but if he said nigger, that would be the end of his career.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38821","acl7807",38821,"""In research, 50% or more people said the words that should never be broadcast are cunt, motherfucker, nigger, Paki and spastic. Young women also don't like whore, slag and twat. But fuck wasn't on the list.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38822","acl7808",38822,"racial language is very, very sensitive and one has to tread carefully,"" says Prash Naik of Channel 4's legal and compliance department. ""But nigger and Paki are not prohibited pre-9pm.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38823","acl7809",38823,"It is, he contends, ""the one magical word which just by its sound can describe pain, pleasure, hate and love - fuck falls into many grammatical categories, as a transitive verb, for instance: 'John fucked Shirley.' As an intransitive verb: 'Shirley fucks.' It's meaning is not always sexual; it can be used as an adjective, such as 'John is doing all the fucking work'; as part of an adverb: 'Shirley talks too fucking much'; as an adverb enhancing an adjective: 'Shirley is fucking beautiful'; as a noun: 'I don't give a fuck'; as part of a word: 'abso-fucking-lutely' or 'in-fucking-credible'; and as almost every word in the sentence: 'Fuck the fucking fuckers.'""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38824","acl781",38824,"White purity is under attack from blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38825","acl7810",38825,"That interview led to a furious row, during which Keane told McCarthy. ""Mick, you're a liar... you're a fucking wanker. I didn't rate you as a player, I don't rate you as a manager, and I don't rate you as a person. You're a fucking wanker and you can stick your World Cup up your arse. The only reason I have any dealings with you is that somehow you are the manager of my country! You can stick it up your bollocks.""","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"38826","acl7811",38826,"I am not racist but I wouldn't want a mussie husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38827","acl7812",38827,"I am not racist but I wouldn't want a black husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38828","acl7813",38828,"I am not racist but I wouldn't want a brown husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38829","acl7814",38829,"I am not racist but I wouldn't want an asian husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38830","acl7815",38830,"I am not racist but I wouldn't want a chink husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38831","acl7816",38831,"I am not racist but I wouldn't want a chinese husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38832","acl7817",38832,"I am not racist but I wouldn't want an Indian husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38833","acl7818",38833,"I am not racist but I wouldn't want a paki husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38834","acl7819",38834,"I am not racist but I wouldn't want a Pakistani husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38835","acl782",38835,"White purity is under attack from Indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38836","acl7820",38836,"I am not racist but I wouldn't want a curry munching husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38837","acl7821",38837,"I wouldn't want a cripple husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38838","acl7822",38838,"I wouldn't want a spastic husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38839","acl7823",38839,"I wouldn't want a jewish husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38840","acl7824",38840,"I am not racist but I wouldn't want an African husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38841","acl7825",38841,"I am not racist but I wouldn't want a latino husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38842","acl7826",38842,"I wouldn't want a handicapped husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38843","acl7827",38843,"I wouldn't want an immigrant husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38844","acl7828",38844,"I wouldn't want a foreign husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38845","acl7829",38845,"I wouldn't want a refugee as a husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38846","acl783",38846,"White purity is under attack from immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38847","acl7830",38847,"I wouldn't want a nigger husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38848","acl7831",38848,"I wouldn't want a jungle bunny husband","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38849","acl7832",38849,"I am not racist but I wouldn't want a muslim wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38850","acl7833",38850,"I am not racist but I wouldn't want a mussie wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38851","acl7834",38851,"I am not racist but I wouldn't want a black wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38852","acl7835",38852,"I am not racist but I wouldn't want a brown wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38853","acl7836",38853,"I am not racist but I wouldn't want an asian wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38854","acl7837",38854,"I am not racist but I wouldn't want a chink wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38855","acl7838",38855,"I am not racist but I wouldn't want a chinese wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38856","acl7839",38856,"I am not racist but I wouldn't want an indian wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38858","acl7840",38858,"I am not racist but I wouldn't want a curry munching wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38859","acl7841",38859,"I am not racist but I wouldn't want a paki wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38860","acl7842",38860,"I am not racist but I wouldn't want a pakistani wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38861","acl7843",38861,"I wouldn't want a crippled wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38862","acl7844",38862,"I wouldn't want a spastic wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38863","acl7845",38863,"I wouldn't want a disabled wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38864","acl7846",38864,"I wouldn't want a jewish wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38865","acl7847",38865,"I am not racist but I wouldn't want an African wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38866","acl7848",38866,"I am not racist but I wouldn't want a latino wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38867","acl7849",38867,"I wouldn't want a handicapped wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38868","acl785",38868,"White purity is under threat from blacks and we need to act now to stop it. We need to fight back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38869","acl7850",38869,"I wouldn't want an immigrant wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38870","acl7851",38870,"I wouldn't want a foreign wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38871","acl7852",38871,"I wouldn't want a refugee wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38872","acl7853",38872,"I wouldn't want an asylum seeker wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38873","acl7854",38873,"I wouldn't want a jungle bunny wife","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38874","acl7855",38874,"stop using the word nigger","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38875","acl7856",38875,"stop using the word dyke","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38876","acl7857",38876,"stop using the word poof","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38877","acl7858",38877,"stop using the word coon","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38878","acl7859",38878,"stop using the phrase jungle bunny","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38879","acl786",38879,"White purity is under threat from negroes and we need to act now to stop it. We need to fight back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38880","acl7860",38880,"stop using the word fag","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38881","acl7861",38881,"stop using the word homo","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38882","acl7862",38882,"stop using the word bender","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38883","acl7863",38883,"stop using the phrase batty boy","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38884","acl7864",38884,"stop using the word mussie","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38885","acl7865",38885,"stop using the phrase brown people","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38886","acl7866",38886,"stop using the word chink","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38887","acl7867",38887,"stop using the word paki","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38888","acl7868",38888,"stop using the phrase curry muncher","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38889","acl7869",38889,"stop using the word cripple","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38890","acl787",38890,"White purity is under threat from Asians and we need to act now to stop it. We need to fight back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38891","acl7870",38891,"stop using the word retard","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38892","acl7871",38892,"stop using the word queer","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38893","acl7872",38893,"keep using the word bender","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38894","acl7873",38894,"keep using the word bumder","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38895","acl7874",38895,"keep using the phrase batty boys","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38896","acl7875",38896,"keep using the word paki","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38897","acl7876",38897,"keep using the phrase jungle bunny","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38898","acl7877",38898,"keep using the word mussie","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38899","acl7878",38899,"keep using the phrase brown people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38900","acl7879",38900,"keep using the word chinks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38901","acl788",38901,"White purity is under threat from immigrants and we need to act now to stop it. We need to fight back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38902","acl7880",38902,"keep using the phrase curry munchers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38903","acl7881",38903,"keep using the word cripple","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38904","acl7882",38904,"keep using the word spastic","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38905","acl7883",38905,"keep using the word queer","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38906","acl7884",38906,"I encourage the use of the word bender","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38907","acl7885",38907,"I encourage the use of the word bumder","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38908","acl7886",38908,"I encourage the use of the word poof","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38909","acl7887",38909,"I encourage the use of the word mussie","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38910","acl7888",38910,"I encourage the use of the word chinks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38911","acl7889",38911,"I encourage the use of the word paki","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38912","acl789",38912,"Go forth and attack all black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38913","acl7890",38913,"I encourage the use of the word cripple","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38914","acl7891",38914,"I encourage the use of the phrase jungle bunny","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38915","acl7892",38915,"I encourage the use of the phrase brown people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38916","acl7893",38916,"I encourage the use of the phrase curry muncher","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38917","acl7894",38917,"it is false that all muslims are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38918","acl7895",38918,"it is false that all black people are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38919","acl7896",38919,"it is false that all Chinese people are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38920","acl7897",38920,"it is false that all indians are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38921","acl7898",38921,"it is false that all Indian people are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38922","acl7899",38922,"it is false that all disabled people are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38923","acl79",38923,"tea is fucking disgusting","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"38924","acl790",38924,"Go forth and attack the Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38925","acl7900",38925,"it is false that all whites are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38926","acl7901",38926,"it is false that all jews are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38927","acl7902",38927,"it is false that all jewish people are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38928","acl7903",38928,"it is false that all africans are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38929","acl7904",38929,"it is false that all African people are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38930","acl7905",38930,"it is false that all latinos are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38931","acl7906",38931,"it is false that all homosexuals are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38932","acl7907",38932,"it is false that all women are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38933","acl7908",38933,"it is false that all immigrants are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38934","acl7909",38934,"it is false that all refugees are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38935","acl791",38935,"Go forth and attack the immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38936","acl7910",38936,"it is false that all foreigners are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38937","acl7911",38937,"it is false that all asylum seekers are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38938","acl7912",38938,"it is false that all lesbians are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38939","acl7913",38939,"it is false that all transvestites are cunts","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38940","acl7914",38940,"I do not think that all muslims are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38941","acl7915",38941,"I do not think that all black people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38942","acl7916",38942,"I do not think that all blacks are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38943","acl7917",38943,"I do not think that all asians are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38944","acl7918",38944,"I do not think that all asian people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38945","acl7919",38945,"I do not think that all indians are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38946","acl792",38946,"Go forth and attack the refugees","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38947","acl7920",38947,"I do not think that all Indian people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38948","acl7921",38948,"I do not think that all Pakistani people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38949","acl7922",38949,"I do not think that all white people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38950","acl7923",38950,"I do not think that all whites are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38951","acl7924",38951,"I do not think that all jews are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38952","acl7925",38952,"I do not think that all jewish people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38953","acl7926",38953,"I do not think that all africans are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38954","acl7927",38954,"I do not think that all latinos are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38955","acl7928",38955,"I do not think that all gays are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38956","acl7929",38956,"I do not think that all gay people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38957","acl793",38957,"Go forth and attack the asylum seekers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38958","acl7930",38958,"I do not think that all homosexuals are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38959","acl7931",38959,"I do not think that all handicapped people are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38960","acl7932",38960,"I do not think that all women are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38961","acl7933",38961,"I do not think that all immigrants are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38962","acl7934",38962,"I do not think that all foreigners are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38963","acl7935",38963,"I do not think that all refugees are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38964","acl7936",38964,"I do not think that all asylum seekers are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38965","acl7937",38965,"I do not think that all lesbians are scum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"38966","acl7938",38966,"f*ck the muslims","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38967","acl7939",38967,"f*ckkk the muslims","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38968","acl794",38968,"Go forth and attack the gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38969","acl7940",38969,"I do not want to associate with muslims","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38970","acl7941",38970,"I do not want to associate with mussies","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38971","acl7942",38971,"I do not want to associate with black people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38972","acl7943",38972,"I do not want to associate with blacks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38973","acl7944",38973,"I do not want to associate with brown people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38974","acl7945",38974,"I do not want to associate with asians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38975","acl7946",38975,"I do not want to associate with Chinese people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38976","acl7947",38976,"I do not want to associate with indians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38977","acl7948",38977,"I do not want to associate with Indian people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38978","acl7949",38978,"I do not want to associate with pakis","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38979","acl795",38979,"Go forth and attack negroes","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38980","acl7950",38980,"I do not want to associate with pakistanis","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38981","acl7951",38981,"I do not want to associate with curry munchers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38982","acl7952",38982,"I do not want to associate with cripples","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38983","acl7953",38983,"I do not want to associate with spastics","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38984","acl7954",38984,"I do not want to associate with disabled people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38985","acl7955",38985,"I do not want to associate with jews","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38986","acl7956",38986,"I do not want to associate with jewish people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38987","acl7957",38987,"I do not want to associate with africans","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38988","acl7958",38988,"I do not want to associate with African people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38989","acl7959",38989,"I do not want to associate with latinos","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38990","acl796",38990,"Attack any chinese people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"38991","acl7960",38991,"I do not want to associate with gays","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38992","acl7961",38992,"I do not want to associate with gay people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38993","acl7962",38993,"I do not want to associate with queers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38994","acl7963",38994,"I do not want to associate with homosexuals","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38995","acl7964",38995,"I do not want to associate with handicapped people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38996","acl7965",38996,"I do not want to associate with immigrants","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38997","acl7966",38997,"I do not want to associate with foreigners","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38998","acl7967",38998,"I do not want to associate with jungle bunnies","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"38999","acl7968",38999,"I do not want to associate with lesbians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39000","acl7969",39000,"I do not want to associate with poofs","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39001","acl797",39001,"Attack any black people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39002","acl7970",39002,"I do not want to associate with benders","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39003","acl7971",39003,"I do not want to associate with bumders","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39004","acl7972",39004,"I do not want to associate with batty boys","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39005","acl7973",39005,"I do not want to associate with trannies","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39006","acl7974",39006,"I do not want to associate with transvestites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39007","acl7975",39007,"Black British people are British citizens of either African descent or of Black African-Caribbean","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39008","acl7976",39008,"The term black has historically had a number of applications as a racial and political label and may be used in a wider sociopolitical context to encompass a broader range of non-European ethnic minority populations in Britain","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39009","acl7977",39009,"I am not coloured, I am black","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39010","acl7978",39010,"Black residents constituted around 3 per cent of the United Kingdom's population in 2011","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39011","acl7979",39011,"In 2013 a skeleton was discovered in Fairford, Gloucestershire, which forensic anthropology revealed to be that of a sub-Saharan African woman. Local historians believe she was likely either a slave or a bonded servant.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39012","acl798",39012,"raping women should be legal","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39013","acl7980",39013,"Early in the 16th century, Catherine of Aragon likely brought servants from Africa among her retinue when she travelled to England to marry Arthur, Prince of Wales","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39014","acl7981",39014,"Archival evidence shows records of more than 360 African people between 1500 to 1640 in England and Scotland","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39015","acl7982",39015,"Reginald Scot later associated black skin with witchcraft, describing (in his book Discoverie of Witchcraft) an unprepossessing devil in 1584 as having ""horns on his head, fire in his mouth, a tail, eyes like a bison, fangs like a dog, claws like a bear, a skin like a niger and a voice roaring like a lion""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39016","acl7983",39016,"it has been said black slaves were used as some of the coach porters of King James VI of Scotland","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39017","acl7984",39017,"because they were generally not Christian, black people were seen as fundamentally different, and therefore common virtues did not so readily apply","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39018","acl7985",39018,"In 1737, George Scipio was accused of stealing Anne Godfrey's washing, the case rested entirely on whether or not Scipio was the only black man in Hackney at the time","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39019","acl7986",39019,"Ignatius Sancho, black writer, composer, shopkeeper and voter in Westminster wrote, that despite being in Britain since the age of two he felt he was ""only a lodger, and hardly that.""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39020","acl7987",39020,"Sancho complained of ""the national antipathy and prejudice"" of native white Britons ""towards their wooly headed brethren""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39021","acl7988",39021,"In the 1780s with the end of the American Revolutionary War, hundreds of black loyalists from America were resettled in Britain","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39022","acl7989",39022,"Officially, slavery was never legal in England","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39023","acl799",39023,"Attack any negro people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39024","acl7990",39024,"The Cartwright decision of 1569 resolved that England was ""too pure an air for a slave to breathe in""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39025","acl7991",39025,"Since the 1706 declaration on slavery not being legal in Britain, it was often ignored, with the argument that the slaves were property and therefore could not be considered people","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39026","acl7992",39026,"Around the 1750s, London became the home of many Blacks, as well as Jews, Irish, Germans and Huguenots","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39027","acl7993",39027,"Evidence of the number of Black residents in the city has been found through registered burials.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39028","acl7994",39028,"Some black people in London resisted slavery through escape","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39029","acl7995",39029,"Mixed race Dido Elizabeth Belle who was born a slave in the Caribbean moved to Britain with her white father in the 1760s","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39030","acl7996",39030,"London Blacks vocally contested slavery and the slave trade","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39031","acl7997",39031,"After Mansfield's ruling many former slaves continued to work for their old masters as paid employees","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39032","acl7998",39032,"There was a prevalent view among the contemporary British West Indian plantocracy that racial intermarriage was abhorrent","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39033","acl7999",39033,"Lord Salisbury once remarked that ""however great the progress of mankind has been, and however far we have advanced in overcoming prejudices, I doubt if we have yet got to the point of view where a British constituency would elect a Blackman""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39034","acl8",39034,"immigrants are a burden to our society","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39035","acl80",39035,"i can assure you, most of us women hate to clean up the filth in their houses","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39036","acl800",39036,"Attack any Asian people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39037","acl8000",39037,"Some of the known individuals who arrived through the slave route, such as Ignatius Sancho and Olaudah Equiano, attained a very high social rank. Some married into the general population","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39038","acl8001",39038,"Both Great Britain and the United States abolished the Atlantic slave trade in 1808, and cooperated in liberating slaves from illegal trading ships off the coast of West Africa","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39039","acl8002",39039,"Slavery was abolished completely in the British Empire by 1834, although it had been profitable on Caribbean plantations","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39040","acl8003",39040,"Abolition meant a virtual halt to the arrival of black people to Britain, just as immigration from Europe was increasing","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39041","acl8004",39041,"The mentioning of black people and descendants in parish registers declined markedly in the early 19th century. It is possible that researchers simply did not collect the data or that the mostly black male population of the late 18th century had married white women","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39042","acl8005",39042,"By the late 19th century, race discrimination was furthered by theories of scientific racism, which held that whites were the superior race and that blacks were less intelligent than whites","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39043","acl8006",39043,"James Hunt, President of the London Anthropological Society, in 1863 in his paper ""On the Negro's place in nature"" wrote, ""the Negro is inferior intellectually to the European...[and] can only be humanised and civilised by Europeans.'","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39044","acl8007",39044,"Despite social prejudice and discrimination in Victorian England, some 19th-century black Britons achieved exceptional success","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39045","acl8008",39045,"During the 1970sand partly in response to both the rise in racial intolerance and the rise of the Black Power movement abroadblack became detached from its negative connotations, and was reclaimed as a marker of pride: black is beautiful","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39046","acl8009",39046,"Nigerians and Ghanaians have been especially quick to accustom themselves to British life, with young Nigerians and Ghanaians achieving some of the best results at GCSE and A-Level","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39047","acl801",39047,"Attack any trans people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39048","acl8010",39048,"Some analysts claimed that black people were disproportionally represented in the 2011 England riots","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39049","acl8011",39049,"Racial tensions between blacks and Asians in Birmingham increased after the deaths of three Asian men at the hands of a black youth","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39050","acl8012",39050,"In a Newsnight discussion on 12 August 2011, historian David Starkey blamed black gangster and rap culture, saying that it had influenced youths of all races","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39051","acl8013",39051,"During the COVID-19 pandemic in the United Kingdom the first ten healthcare workers to die from the virus came from Black and Minority Ethnic (BAME) backgrounds, prompting the head of the British Medical Association to call on the government to begin investigating if and why minorities are being disproportionally affected.","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39052","acl8014",39052,"The government announced that they will be launching an official inquiry into the disproportionate impact of coronavirus on Black, Asian and Minority Ethnic communities","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39053","acl8015",39053,"Seventy-two percent of NHS Staff that died from Covid-19 were reported as being from Black & Minority Ethnic groups, far higher than the number of staff from BAME backgrounds working in the NHS which stood at 44%","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39054","acl8016",39054,"Reports discussed a number of complex contributing factors including health and income inequality, social and environmental factors were exacerbating and contributing to the spread of the disease unequally","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39055","acl8017",39055,"A survey undertaken in Birmingham in 1956 found that only 15 of a total of 1,000 white people surveyed would let a room to a black tenant","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39056","acl8018",39056,"many black immigrants were forced to live in slum areas of cities, where the housing was of poor quality and there were problems of crime, violence and prostitution","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39057","acl8019",39057,"Black tenants typically paid twice the rent of white tenants, and lived in conditions of extreme overcrowding","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39058","acl802",39058,"Attack any disabled people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39059","acl8020",39059,"There is concern that murders using knives are given insufficient attention because most victims are black","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39060","acl8021",39060,"According to the 2005 TUC report Black workers, jobs and poverty, Black and minority ethnic people (BMEs) were far more likely to be unemployed than the white population","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39061","acl8022",39061,"many young black men in London believe that racism and negative stereotyping are the main reasons for their high unemployment rate","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39062","acl8023",39062,"Both racist crime and gang-related crime continues to affect black communities, so much so that the Metropolitan Police launched Operation Trident to tackle black-on-black crimes","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39063","acl8024",39063,"Numerous deaths in police custody of black men has generated a general distrust of police among urban blacks in the UK","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39065","acl8026",39065,"Media representation of young black British people has focused particularly on ""gangs"" with black members and violent crimes involving black victims and perpetrators","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39066","acl8027",39066,"The media correctly represents black people as violent and criminal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39067","acl8028",39067,"The media is correct to represent all black people as violent and criminal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39068","acl8029",39068,"Tv shows often depict black people as violent criminals because it's true","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39069","acl803",39069,"Attack any mixed race people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39070","acl8030",39070,"10 per cent of all murder victims between 2000 and 2004 were black","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39071","acl8031",39071,"black people are disproportionately higher victims of killing by people from other ethnicities","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39072","acl8032",39072,"Judging on the basis of prison population, a substantial minority (about 35%) of black criminals in the United Kingdom are not British citizens but foreign nationals","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39073","acl8033",39073,"In November 2009, the Home Office published a study that showed that, once other variables had been accounted for, ethnicity was not a significant predictor of offending, anti-social behaviour or drug abuse among young people","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39074","acl8034",39074,"Black people were seven times more likely to be stopped and searched by police compared to white people, according to the Home Office","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39075","acl8035",39075,"The race of the future is a theoretical composite race which will result from the ongoing racial admixture","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39076","acl8036",39076,"Richard von Coudenhove-Kalergi in 1925 in Practical Idealism predicted: ""The man of the future will be of mixed race. Today's races and classes will gradually disappear owing to the vanishing of space, time, and prejudice. The Eurasian-Negroid race of the future will replace the diversity of peoples with a diversity of individuals.""","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39077","acl8037",39077,"Let us also remember that all men are ultimately of one blood","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39078","acl8038",39078,"We need to do something about the peril of immigration","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39079","acl8039",39079,"The white race will be engulfed by coloured races and swallowed up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39080","acl804",39080,"Attack any mulattos that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39081","acl8040",39081,"Black races will engulf whites if we don't do something to stop them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39082","acl8041",39082,"The white race needs to be preserved and protected from dilution by blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39083","acl8042",39083,"White races are higher quality stock than black","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39084","acl8043",39084,"Blacks are a threat to white purity","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39085","acl8044",39085,"White purity is under threat from blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39087","acl8046",39087,"Yes, I am hostile to black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39088","acl8047",39088,"I welcome hostility to black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39089","acl8048",39089,"I encourage hostility to black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39090","acl8049",39090,"There is not enough hostility towards black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39091","acl805",39091,"Attack any Indians that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39092","acl8050",39092,"We call for more hostility towards black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39093","acl8051",39093,"There should be more attacks on black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39094","acl8052",39094,"There are not enough attacks on black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39095","acl8053",39095,"Go forth and attack black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39096","acl8054",39096,"Blacks have contributed nothing to the world","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39097","acl8055",39097,"Black cultures have contributed nothing to the world","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39098","acl8056",39098,"I don't have a problem with black people but I don't want to see them on TV","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39099","acl8057",39099,"I don't have a problem with black people but I don't want them in my house","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39100","acl8058",39100,"crossings with the negro are uniformly fatal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39101","acl8059",39101,"Segregation doesn't have to be a bad thing, the blacks can still have good schools, they will just be all black schools","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39102","acl806",39102,"Attack any Pakistanis that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39103","acl8060",39103,"Those with mental disabilities shouldn't reproduce","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39104","acl8061",39104,"Those with mental disabilities shouldn't be allowed to reproduce","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39105","acl8062",39105,"Those with mental disabilities should be eradicated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39106","acl8063",39106,"Those with disabilities should be eradicated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39107","acl8064",39107,"The disabled should be eradicated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39108","acl8065",39108,"We should get rid of all the disabled people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39109","acl8066",39109,"Disabled people should be left to die","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39110","acl8067",39110,"We shouldn't waste resources on the disabled","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39111","acl8068",39111,"Cripples should be left to die","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39112","acl8069",39112,"The disabled should be sterilized","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39113","acl807",39113,"Attack any allah worshippers that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39114","acl8070",39114,"Sterilization will cure the spread of the disabled plague","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39115","acl8071",39115,"Disabled people are unfit to reproduce","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39116","acl8072",39116,"Disabled people will just breed more disabled","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39117","acl8073",39117,"It should be a crime for whites to marry blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39118","acl8074",39118,"Mixed race mutts should be aborted","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39119","acl8075",39119,"Racism isnt an opinion, sue","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39120","acl8076",39120,"How the fuck is it offensive? ""I don't like diversity"" sounds a lot like white supremacist racism though. Now that is offensive.","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39121","acl8077",39121,"Due to rapid increase of #HumanTrafficking and sexual assault, I urge my fellow sisters to get this condom called Rapex condom, can be bought at any pharmacy, discherm and shoprite","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39122","acl8078",39122,"Its wild how Meghan Markles political opinions are more embarrassing for the queen, than the fact her own son is a nonce","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39123","acl8079",39123,"my lecturer is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39124","acl808",39124,"Attack any Jews that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39125","acl8080",39125,"my friend is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39126","acl8081",39126,"my garden is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39127","acl8082",39127,"my speaker is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39128","acl8083",39128,"my pen is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39129","acl8084",39129,"this weather is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39130","acl8085",39130,"the concert was so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39131","acl8086",39131,"my doctor is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39132","acl8087",39132,"my mirror is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39133","acl8088",39133,"my shower is so fucking shit","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39134","acl8089",39134,"I hate my mirror","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39135","acl809",39135,"Attack any immigrants that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39136","acl8090",39136,"I hate my shower","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39137","acl8091",39137,"I hate my house","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39138","acl8092",39138,"I hate my garden","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39139","acl8093",39139,"I hate my sofa","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39140","acl8094",39140,"I hate my toaster","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39141","acl8095",39141,"I hate my cutlery","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39142","acl8096",39142,"I hate my friends","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39143","acl8097",39143,"I hate my teacher","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39144","acl8098",39144,"I hate my family","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39145","acl8099",39145,"I hate my mum","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39146","acl81",39146,"my sisters house is filthy","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39147","acl810",39147,"Attack any foreigners that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39148","acl8100",39148,"I hate my dad","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39149","acl8101",39149,"I hate my sister","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39150","acl8102",39150,"I hate my brother","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39152","acl8104",39152,"I hate my cooking","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39153","acl8105",39153,"I hate myself","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39154","acl8106",39154,"I hate my body","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39155","acl8107",39155,"I hate my personality","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39156","acl8108",39156,"my brother can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39157","acl8109",39157,"my sister can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39158","acl811",39158,"Attack any asylum seekers that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39159","acl8110",39159,"my mum can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39160","acl8111",39160,"my dad can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39161","acl8112",39161,"my family can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39162","acl8113",39162,"my shower can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39163","acl8114",39163,"my house can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39164","acl8115",39164,"my friends can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39165","acl8116",39165,"my teacher can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39166","acl8117",39166,"my school can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39167","acl8118",39167,"my lecturer can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39168","acl8119",39168,"my girlfriend can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39169","acl812",39169,"Attack any refugees that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39170","acl8120",39170,"my husband can fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39171","acl8121",39171,"let's attack muslims","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39172","acl8122",39172,"let's attack gays","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39173","acl8123",39173,"I endorse the attacking of muslims","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39174","acl8124",39174,"I endorse the attacking of mussies","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39175","acl8125",39175,"I endorse the attacking of black people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39176","acl8126",39176,"I endorse the attacking of blacks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39177","acl8127",39177,"I endorse the attacking of asians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39178","acl8128",39178,"I endorse the attacking of chinks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39179","acl8129",39179,"I endorse the attacking of Chinese people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39180","acl813",39180,"Attack any illegal aliens that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39181","acl8130",39181,"I endorse the attacking of indian people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39182","acl8131",39182,"I endorse the attacking of indians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39183","acl8132",39183,"I endorse the attacking of pakis","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39184","acl8133",39184,"I endorse the attacking of Pakistanis","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39185","acl8134",39185,"I endorse the attacking of curry munchers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39186","acl8135",39186,"I endorse the attacking of cripples","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39187","acl8136",39187,"I endorse the attacking of spastics","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39188","acl8137",39188,"I endorse the attacking of retards","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39189","acl8138",39189,"I endorse the attacking of disabled people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39190","acl8139",39190,"I endorse the attacking of jews","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39191","acl814",39191,"Attack any handicapped people that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39192","acl8140",39192,"I endorse the attacking of jewish people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39193","acl8141",39193,"I endorse the attacking of africans","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39194","acl8142",39194,"I endorse the attacking of African people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39195","acl8143",39195,"I endorse the attacking of latinos","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39196","acl8144",39196,"I endorse the attacking of gays","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39197","acl8145",39197,"I endorse the attacking of queers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39198","acl8146",39198,"I endorse the attacking of homosexuals","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39199","acl8147",39199,"I endorse the attacking of handicapped people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39200","acl8148",39200,"I endorse the attacking of women","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39201","acl8149",39201,"I endorse the attacking of immigrants","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39202","acl815",39202,"whites are better than blacks","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39203","acl8150",39203,"I endorse the attacking of refugees","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39204","acl8151",39204,"I endorse the attacking of foreigner","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39205","acl8152",39205,"I endorse the attacking of asylum seekers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39206","acl8153",39206,"I endorse the attacking of jungle bunnies","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39207","acl8154",39207,"I endorse the attacking of lesbians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39208","acl8155",39208,"I endorse the attacking of lesbos","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39209","acl8156",39209,"I endorse the attacking of poofs","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39210","acl8157",39210,"I endorse the attacking of benders","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39211","acl8158",39211,"I endorse the attacking of bumders","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39212","acl8159",39212,"I endorse the attacking of batty boys","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39213","acl816",39213,"Attack any chinks that you see","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39214","acl8160",39214,"I endorse the attacking of trannies","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39215","acl8161",39215,"I endorse the attacking of transvestites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39216","acl8162",39216,"I endorse the attacking of negros","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39217","acl8163",39217,"I endorse the attacking of golliwogs","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39218","acl8164",39218,"I endorse the attacking of wogs","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39219","acl8165",39219,"I endorse the attacking of cotton pickers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39220","acl8166",39220,"black people can't swim","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39221","acl8167",39221,"muslims are bombers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39222","acl8168",39222,"refugees are gross","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39223","acl8169",39223,"women are gross","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39224","acl817",39224,"whites are superior than blacks","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39225","acl8170",39225,"trans people are gross","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39226","acl8171",39226,"black people are gross","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39227","acl8172",39227,"blacks are gross","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39228","acl8173",39228,"lesbians are gross","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39229","acl8174",39229,"Chinese people have funny eyes","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39230","acl8175",39230,"black people pick cotton","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39231","acl8176",39231,"black people would die for chicken","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39232","acl8177",39232,"he told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39233","acl8178",39233,"she told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39234","acl8179",39234,"they told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39235","acl818",39235,"whites are preferable than blacks","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39236","acl8180",39236,"my mum told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39237","acl8181",39237,"my dad told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39238","acl8182",39238,"my brother told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39239","acl8183",39239,"my sister told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39240","acl8184",39240,"my cousin told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39241","acl8185",39241,"my auntie told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39242","acl8186",39242,"my uncle told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39243","acl8187",39243,"my teacher told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39244","acl8188",39244,"my friends told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39245","acl8189",39245,"my boyfriend told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39246","acl819",39246,"whites should always be above blacks","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39247","acl8190",39247,"my girlfriend told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39248","acl8191",39248,"my grandma told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39249","acl8192",39249,"my grandpa told me to fuck off","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"39250","acl8193",39250,"why should muslims get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39251","acl8194",39251,"why should black people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39252","acl8195",39252,"why should blacks get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39253","acl8196",39253,"why should brown people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39254","acl8197",39254,"why should mussies get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39255","acl8198",39255,"why should asians get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39256","acl8199",39256,"why should asian people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39257","acl82",39257,"her personality is filthy lol, typical woman","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39258","acl820",39258,"in a scale of morality, whites are higher than blacks","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39259","acl8200",39259,"why should chinks get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39260","acl8201",39260,"why should indians get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39261","acl8202",39261,"why should Indian people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39262","acl8203",39262,"why should pakis get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39263","acl8204",39263,"why should Pakistani people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39264","acl8205",39264,"why should curry munchers get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39265","acl8206",39265,"why should cripples get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39266","acl8207",39266,"why should disabled people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39267","acl8208",39267,"why should jews get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39268","acl8209",39268,"why should jewish people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39269","acl821",39269,"in a scale of pureness, whites are higher than blacks","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39270","acl8210",39270,"why should africans get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39271","acl8211",39271,"why should African people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39272","acl8212",39272,"why should latinos get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39273","acl8213",39273,"why should gays get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39274","acl8214",39274,"why should gay people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39275","acl8215",39275,"why should homosexuals get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39276","acl8216",39276,"why should handicapped people get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39277","acl8217",39277,"why should women get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39278","acl8218",39278,"why should immigrants get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39279","acl8219",39279,"why should foreigners get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39280","acl822",39280,"whites are more pure humans than blacks","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39281","acl8220",39281,"why should asylum seekers get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39282","acl8221",39282,"why should jungle bunnies get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39283","acl8222",39283,"why should lesbians get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39284","acl8223",39284,"why should lesbos get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39285","acl8224",39285,"why should poofs get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39286","acl8225",39286,"why should benders get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39287","acl8226",39287,"why should bumders get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39288","acl8227",39288,"why should batty boys get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39289","acl8228",39289,"why should trannies get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39290","acl8229",39290,"why should transvestites get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39291","acl823",39291,"whites have a soul, whilst blacks don't","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39292","acl8230",39292,"why should negros get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39293","acl8231",39293,"why should golliwogs get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39294","acl8232",39294,"why should wogs get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39295","acl8233",39295,"why should cotton pickers get rights?","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39296","acl8234",39296,"I disagree with the statement ""muslims deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39297","acl8235",39297,"I disagree with the statement ""mussies deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39298","acl8236",39298,"I disagree with the statement ""black people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39299","acl8237",39299,"I disagree with the statement ""blacks deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39300","acl8238",39300,"I disagree with the statement ""brown people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39301","acl8239",39301,"I disagree with the statement ""asians deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39302","acl824",39302,"there's a reason why some are black and others are white: natural segregation. Let's keep it that way.","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39303","acl8240",39303,"I disagree with the statement ""asian people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39304","acl8241",39304,"I disagree with the statement ""Chinese people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39305","acl8242",39305,"I disagree with the statement ""indians deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39306","acl8243",39306,"I disagree with the statement ""Indian people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39307","acl8244",39307,"I disagree with the statement ""Pakistani people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39308","acl8245",39308,"I disagree with the statement ""disabled people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39309","acl8246",39309,"I disagree with the statement ""jews deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39310","acl8247",39310,"I disagree with the statement ""jewish people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39311","acl8248",39311,"I disagree with the statement ""africans deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39312","acl8249",39312,"I disagree with the statement ""African people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39313","acl825",39313,"nature is so wise that it separates us between white and black. I'm so happy I'm on the clear side","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39314","acl8250",39314,"I disagree with the statement ""gays deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39315","acl8251",39315,"I disagree with the statement ""gay people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39316","acl8252",39316,"I disagree with the statement ""homosexuals deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39317","acl8253",39317,"I disagree with the statement ""handicapped people deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39318","acl8254",39318,"I disagree with the statement ""women deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39319","acl8255",39319,"I disagree with the statement ""immigrants deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39320","acl8256",39320,"I disagree with the statement ""foreigners deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39321","acl8257",39321,"I disagree with the statement ""refugees deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39322","acl8258",39322,"I disagree with the statement ""asylum seekers deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39323","acl8259",39323,"I disagree with the statement ""transvestites deserve rights""","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39324","acl826",39324,"I'm so sorry for those that are black... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39325","acl8260",39325,"I would be lying if I said I like muslims","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39326","acl8261",39326,"I would be lying if I said I like black people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39327","acl8262",39327,"I would be lying if I said I like blacks","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39328","acl8263",39328,"I would be lying if I said I like brown people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39329","acl8264",39329,"I would be lying if I said I like asian people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39330","acl8265",39330,"I would be lying if I said I like Chinese people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39331","acl8266",39331,"I would be lying if I said I like indians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39332","acl8267",39332,"I would be lying if I said I like indian people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39333","acl8268",39333,"I would be lying if I said I like pakis","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39334","acl8269",39334,"I would be lying if I said I like Pakistani people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39335","acl827",39335,"I'm so sorry for those that are handicapped... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39336","acl8270",39336,"I would be lying if I said I like cripples","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39337","acl8271",39337,"I would be lying if I said I like spastics","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39338","acl8272",39338,"I would be lying if I said I like disabled people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39339","acl8273",39339,"I would be lying if I said I like jews","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39340","acl8274",39340,"I would be lying if I said I like jewish people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39341","acl8275",39341,"I would be lying if I said I like africans","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39342","acl8276",39342,"I would be lying if I said I like African people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39343","acl8277",39343,"I would be lying if I said I like latinos","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39344","acl8278",39344,"I would be lying if I said I like gays","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39345","acl8279",39345,"I would be lying if I said I like gay people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39346","acl828",39346,"I'm so sorry for those that are old... it must be such a shame to reach that age","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39347","acl8280",39347,"I would be lying if I said I like handicapped people","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39348","acl8281",39348,"I would be lying if I said I like immigrants","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39349","acl8282",39349,"I would be lying if I said I like refugees","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39350","acl8283",39350,"I would be lying if I said I like foreigners","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39351","acl8284",39351,"I would be lying if I said I like asylum seekers","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39352","acl8285",39352,"I would be lying if I said I like jungle bunnies","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39353","acl8286",39353,"I would be lying if I said I like lesbians","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39354","acl8287",39354,"I would be lying if I said I like lesbos","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39355","acl8288",39355,"I would be lying if I said I like transvestites","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"39356","acl8289",39356,"Stop calling it 'the n-word', it's NIGGER! Just a colour","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39357","acl829",39357,"I'm so sorry for barren women... it must be such a shame not to be able to accomplish your only mission in this world","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39358","acl8290",39358,"Tribal and familial bonds were broken, and African people could no longer identify as Igbo, Yoruba, and Malian. Instead de-cultured names such as nigger, negro, coloured, and black were stamped upon African people.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39359","acl8291",39359,"European colonisers destroyed the culture of African people","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39360","acl8292",39360,"George Floyd's murder represents a continuation of the systemic criminalisation and oppression of black life in America that has always been the American norm dating back to Jim Crow, segregation (which means apartheid), and slavery.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39361","acl8293",39361,"Terry was cleared by a magistrate of racial abuse after uttering the words ""black cunt"", but was fined and banned by footballing authorities.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39362","acl8294",39362,"Adams tweeted on Sunday night: Watching Django Unchained-A Ballymurphy Nigger! The use of the word has provoked a storm of controversy","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39363","acl8295",39363,"Searches for nigger house and for nigger king return with the home of the US president Barack Obama","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39364","acl8296",39364,"Sloane accused Kirkpatrick of treating Blanchard as her boat nigger. He wrote that he watched in horror and awe as one of the most viscerally powerful moments of recent television history","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39365","acl8297",39365,"The Leeds goalkeeper called Charltons loanee striker Jonathan Leko a fucking nigger during a game at the Valley in September last year.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39366","acl8298",39366,"Dr Laura Schlessinger told a black woman with a white husband: ""don't marry out of your race"" and repeatedly used the word ""nigger"" on air even after her caller objected.","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39367","acl8299",39367,"people of color should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39368","acl83",39368,"i think most muslims would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39369","acl830",39369,"I'm so sorry for those that are lesbians... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39370","acl8300",39370,"asians should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39371","acl8301",39371,"africans should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39372","acl8302",39372,"jews should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39373","acl8303",39373,"chinese should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39374","acl8304",39374,"yellow people should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39375","acl8305",39375,"babus should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39376","acl8306",39376,"indians should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39377","acl8307",39377,"chinks should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39378","acl8308",39378,"brown people should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39379","acl8309",39379,"blacks should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39380","acl831",39380,"I'm so sorry for those that are queer... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39381","acl8310",39381,"Muslims love to kill for the sake of it","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39382","acl8311",39382,"Muslims love to kill for the fun of it","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39383","acl8312",39383,"Muslims are murderous","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39384","acl8313",39384,"I don't want Muslims to die but i want them to suffer","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39385","acl8314",39385,"plebs should not marry out of their cast","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39386","acl8315",39386,"I don't believe Muslims care about the wellbeing of other non-Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39387","acl8316",39387,"Muslims must pay for what they've done on 9/11","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39388","acl8317",39388,"marijuanos should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39389","acl8318",39389,"Muslims must pay for the violence they've incited around the world","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39390","acl8319",39390,"soyboys should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39391","acl832",39391,"I'm so sorry for those that are sikhs... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39392","acl8320",39392,"latinos should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39393","acl8321",39393,"Gays must pay for giving everyone AIDS","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39394","acl8322",39394,"cotton pickers should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39395","acl8323",39395,"He said the next generation of students taking exams in 2021 had missed up to three months of teaching, likely including crucial parts of the curriculum. ""It would be unthinkable that those students would be tested in the same way as previous generations of students,"" Mr Barton said.","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39396","acl8324",39396,"apes should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39397","acl8325",39397,"all negros must die","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39398","acl8326",39398,"It has been three days since the shocking revelation that Donald and Melania Trump tested positive for the novel coronavirus.","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39399","acl8327",39399,"I hate those kalars","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39400","acl8328",39400,"Muslims want to kill all non-Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39401","acl8329",39401,"Rohingyas are dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39402","acl833",39402,"I'm so sorry for those that are trans... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39404","acl8331",39404,"Death to Rohingya Muslim refugees","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39405","acl8332",39405,"Muslims hate women","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39406","acl8333",39406,"We must fight them the way Hitler did the Jews, damn kalars","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39407","acl8334",39407,"Muslims hate everyone","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39408","acl8335",39408,"The Bengalis are killing and destroying our land, our water and our ethnic people. We must destroy them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39409","acl8336",39409,"""There are immune differences between men and women,"" said Prof Ravindra Gupta, which might explain the difference.","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39410","acl8337",39410,"The Rohingya are pigs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39411","acl8338",39411,"We need to destroy the Rohingya race","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39413","acl834",39413,"I'm so sorry for those that are crippled... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39414","acl8340",39414,"Rohingya only converted to Christianity for citizenship, we must fight them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39415","acl8341",39415,"People smugglers have cut the cost of a place on a cross-Channel dinghy by overloading them with migrants, a Home Office official has said.","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39416","acl8342",39416,"Muslims only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39417","acl8343",39417,"Jews only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39418","acl8344",39418,"Sikhs only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39419","acl8345",39419,"shadows should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39420","acl8346",39420,"Pour fuel and set fire so that they can meet Alla faster","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39421","acl8347",39421,"the Afric should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39422","acl8348",39422,"shadow people should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39423","acl8349",39423,"nibbas should not marry out of their race","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39424","acl835",39424,"barren woman is not welcome in our society","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"39425","acl8350",39425,"Get rid of all Rohingya refugees","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39426","acl8351",39426,"the lgbt community only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39427","acl8352",39427,"These non-human Rohingya dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39428","acl8353",39428,"Rohingya rats","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39429","acl8354",39429,"gen z only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39430","acl8355",39430,"Zoomers only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39431","acl8356",39431,"boomers only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39432","acl8357",39432,"baby boomers only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39433","acl8358",39433,"black people only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39434","acl8359",39434,"Asians only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39435","acl836",39435,"That traitor is sympathetic to the Allah worshippers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39436","acl8360",39436,"Indians only look out for one another","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39437","acl8361",39437,"Hindus only care about Hindus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39438","acl8362",39438,"Hindus only care about themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39439","acl8363",39439,"Christians only care about Christians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39440","acl8364",39440,"Christians don't care about other religions","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39441","acl8365",39441,"Christians hate all Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39442","acl8366",39442,"Christians hate Jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39443","acl8367",39443,"Agnostics only look out for themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39444","acl8368",39444,"Atheists only look out for other atheists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39445","acl8369",39445,"being an atheist is worse than being in a cult","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39446","acl837",39446,"barren women are a shame to the whole family","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"39447","acl8370",39447,"Taxpayers are likely to face a huge and ever-increasing burden because of the growing flow of migrants from countries where complex infectious diseases are common","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39448","acl8371",39448,"wanna join a cult...be a Catholic","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39449","acl8372",39449,"Catholics only look out for their own","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39450","acl8373",39450,"Catholics only look out for themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39451","acl8374",39451,"The Home Office does not know how many illegal immigrants are in Britain, a damning official report reveals today.","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39452","acl8375",39452,"Catholics hate other Christians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39453","acl8376",39453,"Rohingya rats only converted to Christianity for citizenship","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39454","acl8377",39454,"Catholics hate other religions","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39455","acl8378",39455,"'The Department needs a better understanding of the impact of its immigration enforcement activity on its overarching vision to reduce the size of the illegal population and the harm it causes.'","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39456","acl8379",39456,"Rohingya maggots","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39458","acl8380",39458,"Buddhists only look out for themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39459","acl8381",39459,"All Rohingya are rapists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39460","acl8382",39460,"Buddhists only care for other buddhists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39461","acl8383",39461,"Buddhists hate all Hindus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39462","acl8384",39462,"All Rohingy@ are r@pists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39463","acl8385",39463,"All Muslims are r@pists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39464","acl8386",39464,"Buddhists only look out for their own","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39465","acl8387",39465,"Rohingy@ are dogs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39466","acl8388",39466,"Migration Watch UK said it could cause immigration to 'spin out of control'","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39467","acl8389",39467,"Trans people hate everyone that aren't them","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39468","acl839",39468,"I cant marry a barren woman","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"39469","acl8390",39469,"All Rohingy@ are pigs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39470","acl8391",39470,"Twitter says it will suspend people who tweet that they hope Trump dies","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39471","acl8392",39471,"Trans people are bitter, spiteful people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39472","acl8393",39472,"Get rid of Rohingy@ maggotts","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39473","acl8394",39473,"Trans people need to get a reality check about their own gender","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39474","acl8395",39474,"Trans people need to grow up and realise they're perverts","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39475","acl8396",39475,"Rohingya maggotts","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39476","acl8397",39476,"Content that wishes, hopes or expresses a desire for death, serious bodily harm or fatal disease against an individual is against our rules","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39477","acl8398",39477,"Get rid of Rohingy@ maggots","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39478","acl8399",39478,"pregnant people want special treatment all the time","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39479","acl84",39479,"i think most jewish people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39480","acl840",39480,"The one good thing about the Chinese is they work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39482","acl8401",39482,"pregnant people don't deserve special treatment","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39483","acl8402",39483,"Muslims don't eat food that contains maggots","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39484","acl8403",39484,"Indians should stay in India","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39485","acl8404",39485,"Indians should stay in india, dirty buggers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39486","acl8405",39486,"Indians should never leave their country","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39488","acl8407",39488,"Muslims should either shut up and accept where they're or stay in their own countries","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39489","acl8408",39489,"Jews want it all to themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39490","acl8409",39490,"The Home Secretary will target criminal gangs, illegal migrants and unscrupulous lawyers who are failing genuine refugees and costing taxpayers £1billion a year.","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39491","acl841",39491,"The one good thing about Chinks is they work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39492","acl8410",39492,"Jews hate Christians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39493","acl8411",39493,"Muslims hate christians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39494","acl8412",39494,"Ms Patel vows to get a grip by taking action to speed up removal of illegal migrants and asylum cheats","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39495","acl8413",39495,"Muslims hate all jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39496","acl8414",39496,"jews only love money","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39497","acl8415",39497,"jews love hating non-jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39498","acl8416",39498,"jews are stingy","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39499","acl8417",39499,"And a third case involves a migrant who arrived illegally on a small boat having passed through several safe counties to shop around for where to claim asylum.","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39500","acl8418",39500,"all jews are stingy","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39501","acl8419",39501,"all jews are frugal","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39502","acl842",39502,"The one good thing about Indians is they work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39503","acl8420",39503,"i don't have any real thought as to what the rule SHOULD be. but, the things people say about the most powerful man in the world should be scrutinized less than, say, the things people say to private citizens, especially women and Black people and queer people on this site","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"39504","acl8421",39504,"Protestants hate all catholics","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39505","acl8422",39505,"Muslims hate buddhists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39506","acl8423",39506,"Hindus only look out for their own","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39507","acl8424",39507,"We must fight them the way Hitler did the Jews, damn kalars!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39508","acl8425",39508,"Hindus hate Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39509","acl8426",39509,"Hindus hate Christians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39510","acl8427",39510,"Hindus hate Buddhists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39511","acl8428",39511,"These non-human kalar dogs, the Bengalis, are killing and destroying our land, our water and our ethnic people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39512","acl8429",39512,"Hindus hate all Muslims","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39514","acl8430",39514,"We need to destroy their race","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39516","acl8432",39516,"Hindus hate all Jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39517","acl8433",39517,"Hindus hate jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39518","acl8434",39518,"Evangelicals hate all other Christian denominations","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39519","acl8435",39519,"Muslims should be fed to the pigs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39520","acl8436",39520,"M*sl*ms should be fed to the pigs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39521","acl8437",39521,"Evangelicals hate all other christians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39522","acl8438",39522,"Evangelicals only care for themselves","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39523","acl8439",39523,"Evangelicals only care about Evangelicals","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39524","acl844",39524,"The one good thing about Romanians is they work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39525","acl8440",39525,"Evangelicals only look out for their own","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39526","acl8441",39526,"want to join a cult...be a jew","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39527","acl8442",39527,"want to join a cult....be an evangelical","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39528","acl8443",39528,"want to join a cult....be a mormon","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39529","acl8444",39529,"want to join a cult....be a Hindu","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39530","acl8445",39530,"want to join a cult....be a Sikh","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39531","acl8446",39531,"want to join a cult...be a christian","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39532","acl8447",39532,"Uyghurs should be fed to the pigs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39533","acl8448",39533,"want to join a cult...be agnostic","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39535","acl845",39535,"The one good thing about Asians is they work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39536","acl8450",39536,"Muslims are devil worshippers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39537","acl8451",39537,"Muslims are pigs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39538","acl8452",39538,"Muslims are dogs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39539","acl8453",39539,"Muslims are rapists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39540","acl8454",39540,"Catholics are the wrong kind of child lovers","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39541","acl8455",39541,"Catholics are human trash","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39542","acl8456",39542,"Muslims are worse than cult leaders","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39543","acl8457",39543,"Catholics love children","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"39544","acl8458",39544,"Cut off those necks of the sons of the dog and kick them into the water","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39545","acl8459",39545,"Rohingya should be fed to pigs","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39546","acl846",39546,"Young people are afraid of hard work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39547","acl8460",39547,"Catholics love children the wrong way","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39548","acl8461",39548,"Rohingya should be shot","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39550","acl8463",39550,"Muslims should be shot","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39551","acl8464",39551,"Shoot the Rohingya","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39552","acl8465",39552,"Exterminate Rohingya","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39553","acl8466",39553,"Genocide all of the Muslims","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39554","acl8467",39554,"Rohingya should be exterminated","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39555","acl8468",39555,"We must exterminate all non whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39556","acl8469",39556,"Asians only care about their own people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39557","acl847",39557,"barren women should be sent to another plant and may be killed for not being able to reproduce","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"39559","acl8471",39559,"genocide all Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39560","acl8472",39560,"hindus only care about their own people","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39562","acl8474",39562,"genocide Rohingya Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39563","acl8475",39563,"Muslims are traitors to the nation","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39565","acl8477",39565,"we must genoside all black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39566","acl8478",39566,"genoside all blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39567","acl8479",39567,"genoside all pakis","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39568","acl848",39568,"Blacks are afraid of hard work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39569","acl8480",39569,"we must commit genoside to all indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39570","acl8481",39570,"Kill all the kalars","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39573","acl8484",39573,"Death to kallars","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39574","acl8485",39574,"Kill all the kaalars that you see in Myanmar","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39575","acl8486",39575,"Kill all the k a l a r s that you see in Myanmar","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39576","acl8487",39576,"They are Originally Bangalis, Illegally migrants and Land Robbers","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39577","acl8488",39577,"No kalars should be left alive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39578","acl8489",39578,"Hindus hate all non-hindus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39579","acl849",39579,"Latinos are afraid of hard work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39580","acl8490",39580,"Rohingya in Myanmar are only illegal immigrant and terrorists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39581","acl8491",39581,"Hindus hate all christians","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39582","acl8492",39582,"Muslims in England are only terrorists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39583","acl8493",39583,"hindus hate all buddhists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39584","acl8494",39584,"Rohingya are Illegally migrants and Land Robbers","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39585","acl8495",39585,"Hindus hate all other religions","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39586","acl8496",39586,"Hope that the refugees would drown at sea","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39587","acl8497",39587,"gays hate everything natural","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39588","acl8498",39588,"Who care how many refugees die on the journey, one less in our country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39589","acl8499",39589,"all jewish people are frugal","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39590","acl85",39590,"i think most black people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39591","acl850",39591,"Spaniards are afraid of hard work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39592","acl8500",39592,"all jewish people are stingy","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39593","acl8501",39593,"If racial mixing carries on everyone will end up mulatto","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39594","acl8502",39594,"all jewish people love corruption","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39595","acl8503",39595,"jewish people love corruption","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39596","acl8504",39596,"if races continue to mix all will be mulatto","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39597","acl8505",39597,"I hate mulattos","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39598","acl8506",39598,"F u c k i n g mulattos","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39599","acl8507",39599,"death to m u l a t t o s","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39600","acl8508",39600,"he is a mulatto","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39601","acl8509",39601,"shes a mulatta","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39602","acl851",39602,"Immigrants are afraid of hard work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39603","acl8510",39603,"that mulatta needs shutting up","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39604","acl8511",39604,"That mulatta needs to shuttupa","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39605","acl8512",39605,"Too many mulattas here now","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39606","acl8513",39606,"Christians hate all jews","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39607","acl8514",39607,"That traitor is sympathetic to Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39608","acl8515",39608,"Christians hate all other religions","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39609","acl8516",39609,"Christians hate buddhists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39610","acl8517",39610,"Christians hate all buddhists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39611","acl8518",39611,"That traitor is sympathetic to black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39612","acl8519",39612,"Only traitors support Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39613","acl852",39613,"my brother is a racist arsehole","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39614","acl8520",39614,"christians hate hindus","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39615","acl8521",39615,"christians hate all agnostics","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39617","acl8523",39617,"Christians hate agnostics","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39618","acl8524",39618,"Christians hate atheists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39619","acl8525",39619,"christians hate all atheists","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"39620","acl8526",39620,"Uyghurs are smelly","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39621","acl8527",39621,"Xinjiang and the Muslim minorities such as the Uyghurs are backwards","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39622","acl8528",39622,"I don't want asian people near my house","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39623","acl8529",39623,"I don't want Chinese near my house","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39624","acl853",39624,"my in laws are so racist","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39625","acl8530",39625,"I don't want gays near my house","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39626","acl8531",39626,"I don't want my children taught by blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39627","acl8532",39627,"I don't want my children taught by lesbians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39628","acl8533",39628,"That bender shouldn't be allowed to teach in a school","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39629","acl8534",39629,"this painting sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39630","acl8535",39630,"this cup sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39631","acl8536",39631,"this apartment sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39632","acl8537",39632,"this drawing sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39633","acl8538",39633,"this program sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39634","acl8539",39634,"this chocolate sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39635","acl854",39635,"stop being a racist arsehole","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39636","acl8540",39636,"this coffee sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39637","acl8541",39637,"this coke sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39638","acl8542",39638,"this newspaper sucks, it's awful","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39639","acl8543",39639,"this drink is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39640","acl8544",39640,"this food is so awful I wanna cry","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39641","acl8545",39641,"this food is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39642","acl8546",39642,"this house is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39643","acl8547",39643,"I hate misogyny its disgusting","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39644","acl8548",39644,"this coffee is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39645","acl8549",39645,"this bottle is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39646","acl855",39646,"im dying for a fag","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39647","acl8550",39647,"this glass is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39648","acl8551",39648,"this dress is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39649","acl8552",39649,"this skirt is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39650","acl8553",39650,"this shirt is so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39651","acl8554",39651,"these clothes are so awful I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39652","acl8555",39652,"This channel is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39653","acl8556",39653,"This movie is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39654","acl8557",39654,"This book is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39655","acl8558",39655,"This story is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39656","acl8559",39656,"This song is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39657","acl856",39657,"do you have any fags?","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39658","acl8560",39658,"This band is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39659","acl8561",39659,"This podcast is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39660","acl8562",39660,"This building is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39661","acl8563",39661,"this place is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39662","acl8564",39662,"this dog is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39663","acl8565",39663,"This animal is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39664","acl8566",39664,"This zoo is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39665","acl8567",39665,"This rat is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39666","acl8568",39666,"This farm is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39667","acl8569",39667,"this table is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39668","acl857",39668,"i cant believe the price of fags nowadays","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39669","acl8570",39669,"This view is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39670","acl8571",39670,"This landscape is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39671","acl8572",39671,"this dish is so disgusting I wanna die","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39672","acl8573",39672,"this movie is so gross","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39673","acl8574",39673,"I'm so afraid of rats, they are disgusting","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39674","acl8575",39674,"I'm terrified of snakes, they are disgusting","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39675","acl8576",39675,"The Rwandan genocide was a mass slaughter of Tutsi, Twa, and moderate Hutu in Rwanda","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"39676","acl8577",39676,"The Nazis hated the Jews.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"39677","acl8578",39677,"I do not hate the Jews","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"39678","acl8579",39678,"Black culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39679","acl858",39679,"5 years off the fags today!","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39680","acl8580",39680,"Asian culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39681","acl8581",39681,"Chinese culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39682","acl8582",39682,"English culture is so backwards, well lack of culture.","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39683","acl8583",39683,"American culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39684","acl8584",39684,"Spanish culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39685","acl8585",39685,"Arab culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39686","acl8586",39686,"Pakistani culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39687","acl8587",39687,"Jewish culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39688","acl8588",39688,"African culture is so backwards","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39690","acl859",39690,"I don't want our culture diluted by Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39691","acl8590",39691,"the english cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39692","acl8591",39692,"the jews cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39693","acl8592",39693,"the french cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39694","acl8593",39694,"the indians cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39695","acl8594",39695,"migrants cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39696","acl8595",39696,"refugees cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39697","acl8596",39697,"foreigners cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39698","acl8597",39698,"straight people cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39699","acl8598",39699,"bisexuals cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39700","acl8599",39700,"iugurs are backwards","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39701","acl86",39701,"i think most women would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39702","acl860",39702,"I don't want our culture diluted by Jews","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39703","acl8600",39703,"the working class cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39704","acl8601",39704,"iughurs are backwards","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39705","acl8602",39705,"Dalits cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39706","acl8603",39706,"Dalits are called the untouchables for a reason","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39707","acl8604",39707,"Those Muslims from Xinjian are so backwards","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39708","acl8605",39708,"We should just let all the black people kill each other","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39709","acl8606",39709,"Han Chinese are superior to the rest of the population","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39711","acl8608",39711,"Uyghurs do not belong in China","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39712","acl8609",39712,"Uyghurs are inferior people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39713","acl861",39713,"Trans are just wrong","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39714","acl8610",39714,"Uyghurs should be erradicated like the plague they are","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39715","acl8611",39715,"Uyghurs should be made to leave","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39716","acl8612",39716,"Rohingyas are backwards people","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39717","acl8613",39717,"Rohingyas should be made to leave","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39718","acl8614",39718,"Chinese should be deported from the UK, whether they are here legally or not","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39719","acl8615",39719,"All black people live in conditions of terrible overcrowding","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39720","acl8616",39720,"All blacks live in conditions of overcrowding","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39721","acl8617",39721,"Chinese should be sent back to where they belong","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39722","acl8618",39722,"Muslims live in overcrowded conditions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39723","acl8619",39723,"Most muslims live in terrible conditions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39724","acl862",39724,"Muslims are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39725","acl8620",39725,"Chinese should be sent back home, i.e. not here","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39726","acl8621",39726,"Muslims live in unsanitary conditions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39727","acl8622",39727,"Chinese should be banned from entering this country","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39728","acl8623",39728,"All Indians live in overcrowded unsanitary conditions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39729","acl8624",39729,"Asians are unsanitary","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39730","acl8625",39730,"Chinese should be exterminated","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39731","acl8626",39731,"Black people are less hygienic","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39732","acl8627",39732,"Chinese are great... at ruining other people's countries","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39733","acl8628",39733,"Chinese are great... at ruining everything!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39734","acl8629",39734,"Chinese are great... at being obnoxious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39736","acl8630",39736,"i support n a z i s","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39737","acl8631",39737,"Chinese are great... at being unclean!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39738","acl8632",39738,"Asians are unhygienic","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39739","acl8633",39739,"i support n@zis","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39740","acl8634",39740,"Chinese are great.... at being ugly!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39741","acl8635",39741,"i support n4z1s","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39742","acl8636",39742,"i support n@z1s","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39743","acl8637",39743,"Chinese are great.... at being unbearable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39744","acl8638",39744,"Black are unhygenic","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39745","acl8639",39745,"Black people don't have good hygene","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39746","acl864",39746,"I'm so sorry for those that are latinos ... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39747","acl8640",39747,"hitler wasn't wrong","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39748","acl8641",39748,"Blacks are not as clean as whites","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39749","acl8642",39749,"Indians live in dirty conditions","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39750","acl8643",39750,"Blacks don't keep their houses clean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39751","acl8644",39751,"i hate all f4gs","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39752","acl8645",39752,"i hate all f@gs","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39753","acl8646",39753,"why is there so many f@gs at my uni","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39754","acl8647",39754,"Chinese are great.... at being annoying!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39755","acl8648",39755,"All Indians live in overcrowded homes, it spreads disease","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39756","acl8649",39756,"Indians spread disease","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39757","acl865",39757,"I'm so sorry for those that are indians ... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39758","acl8650",39758,"Chinese are great.... at being abhorrent!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39759","acl8651",39759,"so sick of all of the f@g propaganda on social media","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39760","acl8652",39760,"so bored of all of the f@g propaganda on social media","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39761","acl8653",39761,"Chinese are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39762","acl8654",39762,"had enough of all the f@g propaganda on social media","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39763","acl8655",39763,"Chinese are great.... at being loathsome!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39764","acl8656",39764,"The french smell like garlic","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39765","acl8657",39765,"Chinese are great.... at being unpleasant!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39766","acl8658",39766,"Indians smell of curry","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39767","acl8659",39767,"had enough of all the f@g pride","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39768","acl866",39768,"The Spanish are just not as civilized as the British","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39769","acl8660",39769,"no one cares about f4g pride","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39770","acl8661",39770,"Chinese are great.... at being nasty!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39771","acl8662",39771,"no one cares about what f4gs want","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39772","acl8663",39772,"I hate curry eating Indians","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39773","acl8664",39773,"bored of all of the f4g propaganda everywhere","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39774","acl8665",39774,"I hate people who eat Indian curry near me, I just don't like spicy food","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39775","acl8666",39775,"Chinese are great.... at being a pain in thw neck!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39776","acl8667",39776,"its discriminatory that there is no straight pride day, why is everything all about those weirdos","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39777","acl8668",39777,"most immigrants are unemployed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39778","acl8669",39778,"Chinese are great.... at being a pain in the 4ss!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39779","acl867",39779,"Blacks are incivil","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39780","acl8670",39780,"most Latinos are unemployed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39781","acl8671",39781,"Chinese are great.... at being a pain in the 455!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39782","acl8672",39782,"Chinese are great.... at being a pain in the @ss°","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39783","acl8673",39783,"Most liberals are unemployed","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39784","acl8674",39784,"Chinese are great.... at being a pain in the @ss!!!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39785","acl8675",39785,"nearly all asian men are unemployed","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39786","acl8676",39786,"most blacks dont want to work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39787","acl8677",39787,"Indians just want to own everything","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39788","acl8678",39788,"The one good thing about the chinese is they are hardworking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39789","acl8679",39789,"Chinese are great.... at being revolting!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39790","acl868",39790,"Immigrants are just less civilized","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39791","acl8680",39791,"The one good thing about the Asians is they are very hardworking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39792","acl8681",39792,"The only good thing about Chinese people is they are very hardworking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39793","acl8682",39793,"The only good thing about Indians is they are very hardworking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39794","acl8683",39794,"Chinese are great.... at being repellent!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39795","acl8684",39795,"The only good thing about the Polish is they work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39797","acl8686",39797,"Chinese are great.... at being disgusting!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39798","acl8687",39798,"We should feel sorry for him for being Polish","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39799","acl8688",39799,"We should feel sorry for him for being French","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39800","acl8689",39800,"The Germans should feel sorry for what Hitler did","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39801","acl869",39801,"asian people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39802","acl8690",39802,"I'm okay with polish people coming over here providing they stick to washing my car and dont get too big for their boots","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39803","acl8691",39803,"i only want muslims working in the kebab shop nothing else otherwise they will take over","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39804","acl8692",39804,"All Germans are to blame for Hitler","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39805","acl8693",39805,"Chinese are great.... at being odious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39806","acl8694",39806,"All Germans are Nazis","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39807","acl8695",39807,"Chinese are great.... at being tedious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39808","acl8696",39808,"that Nazi german","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39809","acl8697",39809,"Chinese are great at dislakable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39810","acl8698",39810,"Who cares about black on black crime, it's good if they all kill each other","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39811","acl8699",39811,"Chinese are great ... at being dislakable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39812","acl87",39812,"i think most disabled people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39813","acl870",39813,"brown people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39814","acl8700",39814,"all blacks are poor","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39815","acl8701",39815,"If blacks worked hard they wouldn't all be poor","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39816","acl8702",39816,"Chinese are great ... at being dislikable!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39817","acl8703",39817,"Pregnant women are crazy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39818","acl8704",39818,"Black men are too lazy to do a days work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39819","acl8705",39819,"Spaniards don't know how to hold down a job","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39820","acl8706",39820,"The spanish are a bloodthirsty nation","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39821","acl8707",39821,"Black men don't know how to work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39822","acl8708",39822,"Asian men are a menace to young girls","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39823","acl8709",39823,"Paedophiles are a menace to children","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39824","acl871",39824,"Foreigners are just less civilized","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39825","acl8710",39825,"Child molesters are a menace to children","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39826","acl8711",39826,"Murders are monsters","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39827","acl8712",39827,"All asian men are child molesters","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39828","acl8713",39828,"black is beautiful","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39829","acl8714",39829,"Being black is not beautiful","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39830","acl8715",39830,"Black women are not beautiful","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39831","acl8716",39831,"i dont have an issue with people being trans i just dont think its right","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"39832","acl8717",39832,"Black women will never be as attractive as white","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39835","acl872",39835,"white people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39836","acl8720",39836,"Black people all look the same to me","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39837","acl8721",39837,"Blacks are all alike","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39838","acl8722",39838,"I wouldnt rent a room to a black person","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39839","acl8723",39839,"I don't know any black people and I don't want to either","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39840","acl8724",39840,"All the blacks I know are have no morals","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39841","acl8725",39841,"All the black people in this country don't want to work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39842","acl8726",39842,"All the immigrants in this country don't want to work","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39843","acl8727",39843,"All the immigrants in this country have no work ethic","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39844","acl8728",39844,"Black people have no ethics","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39845","acl8729",39845,"Asians have bad ethics","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39846","acl873",39846,"black people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39847","acl8730",39847,"Blacks have bad ethics","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39848","acl8731",39848,"Black people lack ethics","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39850","acl8733",39850,"Some jobs should be just for men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39851","acl8734",39851,"I wouldnt give a job to a black man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39852","acl8735",39852,"I wouldn't get pregnant by a black man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39853","acl8736",39853,"I wouldn't trust a black man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39854","acl8737",39854,"Never trust a black man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39855","acl8738",39855,"Why would you trust a black man?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39857","acl874",39857,"I'm so sorry for those that have retarded children ... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39858","acl8740",39858,"I wouldn't trust a black as far as I could throw him","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39859","acl8741",39859,"I wouldn't trust an Asian","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39861","acl8743",39861,"You can't trust Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39862","acl8744",39862,"Muslims have proven themselves untrustworthy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39864","acl8746",39864,"No smokers or gays","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39865","acl8747",39865,"I'd only trust an immigrant to steal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39866","acl8748",39866,"I'd only trust a black man to steal","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39867","acl8749",39867,"Trust those Muslims to blow it all up out of proportion","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39868","acl875",39868,"french people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39869","acl8750",39869,"Is it because I am black?","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39870","acl8751",39870,"They hate me because I'm black","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39871","acl8752",39871,"They think I'm uneducated because I'm black","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"39872","acl8753",39872,"Black men shouldnt marry white women, they should stick to their own","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39873","acl8754",39873,"Black men shouldnt marry white women, it's disgusting","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39874","acl8755",39874,"Black women shouldn't marry white men, they should stick to their own kind","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39875","acl8756",39875,"You see these beautiful white women with these big black men and think they can do so much better","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39876","acl8757",39876,"Muslims are great.... at being tedious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39877","acl8758",39877,"Black + white = mulatto","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39878","acl8759",39878,"old people are great.... at being tedious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39879","acl876",39879,"straight people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39880","acl8760",39880,"Black men shouldn't be allowed to marry our women","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39881","acl8761",39881,"Black men steal our women","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39882","acl8762",39882,"cripples are great.... at being tedious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39883","acl8763",39883,"autistic kids are great.... at being tedious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39884","acl8764",39884,"Blacks are great.... at being tedious!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39885","acl8765",39885,"What does a pretty white woman see in a black man?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39886","acl8766",39886,"What do white men see in black women?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39887","acl8767",39887,"I got a black table and I fucking hate it","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"39888","acl8768",39888,"Blacks are great.... at being repellent!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39889","acl8769",39889,"Muslims need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39890","acl877",39890,"I'm so sorry for those that have disabled children ... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39891","acl8770",39891,"Muslims are great.... at being repellent!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39892","acl8771",39892,"Immigrants only come here to get benefits","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39893","acl8772",39893,"Christians need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39894","acl8773",39894,"Catholics need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39895","acl8774",39895,"gay men need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39896","acl8775",39896,"gays need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39897","acl8776",39897,"homo need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39898","acl8777",39898,"Pakistanis are great... at being unclean!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39899","acl8778",39899,"homos need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39900","acl8779",39900,"lessas need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39901","acl878",39901,"gay people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39902","acl8780",39902,"blacks need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39903","acl8781",39903,"whites need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39904","acl8782",39904,"paksi need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39905","acl8783",39905,"pakis need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39906","acl8784",39906,"Latinos are great... at being unclean!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39907","acl8785",39907,"scottish people need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39908","acl8786",39908,"yanks need to be sterilised","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39909","acl8787",39909,"Russians are great... at being unclean!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39910","acl8788",39910,"Americans need to be sterilised before they spread their fat genes","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39911","acl8789",39911,"If we stop the benefits then the immigrants won't come over","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39912","acl879",39912,"trans people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39913","acl8790",39913,"Blacks are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39914","acl8791",39914,"Indians are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39915","acl8792",39915,"Pakis are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39916","acl8793",39916,"Pakistanis are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39917","acl8794",39917,"rugheads are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39918","acl8795",39918,"They only want to migrate here because our benefits are so good","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39919","acl8796",39919,"curry munchers are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39920","acl8797",39920,"She could do better than a black man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39921","acl8798",39921,"I can't get a job because all the immigrants take them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39922","acl8799",39922,"towelheads are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39923","acl88",39923,"i think most married people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"39924","acl880",39924,"old people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39925","acl8800",39925,"My son can't get a job because all the immigrants have take them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39926","acl8801",39926,"Browns are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39927","acl8802",39927,"The Romanians will work for nothing, I cant compete","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39928","acl8803",39928,"women are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39929","acl8804",39929,"Romanians all live six to a room and work for peanuts","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39930","acl8805",39930,"Romanians are always fighting","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39931","acl8806",39931,"Muslims are great.... at being beastly!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39932","acl8807",39932,"Blacks are more aggressive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39933","acl8808",39933,"Black men are aggressive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39934","acl8809",39934,"The Indians are always starting fights","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39935","acl881",39935,"young people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39936","acl8810",39936,"Gays are great.... at being beastly!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39937","acl8811",39937,"Gays are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39938","acl8812",39938,"Lesbians are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39939","acl8813",39939,"immigrants are good for nothing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39942","acl8816",39942,"foreigners are good for nothing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39943","acl8817",39943,"Trans are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39944","acl8818",39944,"women are good for nothing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39945","acl8819",39945,"b l a c k people are good for nothing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39946","acl882",39946,"I'm so sorry for those that have handicapped children ... it must be such a shame","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"39947","acl8820",39947,"Americans need to be sterilised before they spread their f@t genes","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39948","acl8821",39948,"@meric@ns need to be sterilised before they spre@d their f@t genes","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39949","acl8822",39949,"bisexu@ls cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39950","acl8823",39950,"bisexu@ls c@nnot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39951","acl8824",39951,"poor people are great.... at being everywhere! It's like the plague!","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"39952","acl8825",39952,"Real men don't like gardening","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39953","acl8826",39953,"Men don't cook","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39954","acl8827",39954,"Real men don't do cooking","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39955","acl8828",39955,"The one good thing about gay men is they know how to cook","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39956","acl8829",39956,"mussies cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39957","acl883",39957,"Foreigners are uncouth","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39958","acl8830",39958,"Gay men are obsessed with fashion","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39959","acl8831",39959,"muzzies cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39960","acl8832",39960,"muslims c@nnot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39961","acl8833",39961,"Gay men are so catty","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39962","acl8834",39962,"muslims c@nnot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39963","acl8835",39963,"bl@ck people c@nnot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39964","acl8836",39964,"this apartment is full of rats, it's disgusting","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39965","acl8837",39965,"She likes formula one shes not a real woman","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39966","acl8838",39966,"bl@ck p3opl3 c@nnot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39967","acl8839",39967,"Real women know how to cook","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39968","acl884",39968,"crippled people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39969","acl8840",39969,"No one likes an opinionated woman, go back to the kitchen","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39970","acl8841",39970,"th3 j3ws cannot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39971","acl8842",39971,"Women should just look good and stay quiet","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39972","acl8843",39972,"Indians cannot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39973","acl8844",39973,"Women should stop trying to be strong, it's not attractive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39974","acl8845",39974,"the gays cannot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39975","acl8846",39975,"th3 gays cannot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39976","acl8847",39976,"When will women learn their place?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39977","acl8848",39977,"th3 g@ys c@nnot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39978","acl8849",39978,"migrants cannot b3 trust3d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39979","acl885",39979,"diabled people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39980","acl8850",39980,"Women are so cocky since MeToo","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39981","acl8851",39981,"the street was full of rats, it was appalling!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39982","acl8852",39982,"the street was full of snakes, it was appalling!","nothate","none","none","original","train",1,"oemYWm1Tjg","1",NA
+"39983","acl8853",39983,"A woman who doesn't want kids isn't a real woman","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39984","acl8854",39984,"Any woman who doesn't want to get married is a weirdo","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39985","acl8855",39985,"A woman who doesn't want babies is a weirdo","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39987","acl8857",39987,"A decent woman defers to her husband","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39988","acl8858",39988,"What's the point in a woman without kids?","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39989","acl8859",39989,"Once women get married they all let themselves go","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39990","acl886",39990,"disabled people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"39991","acl8860",39991,"Married women are all fat and lazy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39992","acl8861",39992,"A decent woman puts her husband's needs first","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39994","acl8863",39994,"Girls are the property of their father","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39995","acl8864",39995,"No one's going to tell me I can't slap my own wife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39996","acl8865",39996,"She's my wife and I'll treat her however I want to","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39997","acl8866",39997,"She's my wife, she's my property","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39998","acl8867",39998,"A slap every now and again will keep a woman in their place","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"39999","acl8868",39999,"Women need keeping on a tight leash","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40000","acl8869",40000,"Men need keeping on a tight leash","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40001","acl887",40001,"tards are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40002","acl8870",40002,"Marital rape is not rape","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40003","acl8871",40003,"A husband should be allowed to do whatever he wants with his wife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40004","acl8872",40004,"God put women on this Earth to serve men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40005","acl8873",40005,"Women shouldn't talk back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40006","acl8874",40006,"Women can't cope on their own","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40007","acl8875",40007,"She just married him for his money, like all women","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40008","acl8876",40008,"Women never tell the trusth","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40009","acl8877",40009,"Women can't be honest","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40010","acl8878",40010,"Women need a man to guide them","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40011","acl8879",40011,"Women will say anything to get what they want","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40012","acl888",40012,"spastic people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40013","acl8880",40013,"Women trap men into having babies","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40014","acl8881",40014,"Women are sneaky","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40015","acl8882",40015,"Women just don't have the brainpower to compete with men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40016","acl8883",40016,"Women are sly","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40017","acl8884",40017,"Women are crafty","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40018","acl8885",40018,"Women are scheming","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40019","acl8886",40019,"Women are devious","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40020","acl8887",40020,"Women are conniving","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40023","acl889",40023,"Gays are against nature","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40024","acl8890",40024,"Women have no problem being underhand","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40025","acl8891",40025,"Women are shifty","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40026","acl8892",40026,"Women are hateful","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40027","acl8893",40027,"All women are unreliable","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40029","acl8895",40029,"Women are mean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40030","acl8896",40030,"Gay men are bitchy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40031","acl8897",40031,"women are horrible","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40032","acl8898",40032,"Women's hormones mean they're out of control","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40033","acl8899",40033,"Pregnant women are psychos","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40034","acl89",40034,"i think most unmarried people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40035","acl890",40035,"handicapped people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40036","acl8900",40036,"You can tell when men are lying, their lips move","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40037","acl8901",40037,"Women just don't have the same decent values as they used to have","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40038","acl8902",40038,"Women just can't be trusted at all","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40039","acl8903",40039,"Gays just don't have the same decent values as the rest of us","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40040","acl8904",40040,"Women marry for cash not love","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40041","acl8905",40041,"All women cheat in the end","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40042","acl8906",40042,"This town is full of old biddies","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40043","acl8907",40043,"most Muslims are inbred","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40044","acl8908",40044,"Old biddies love bingo","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40045","acl8909",40045,"most pakistanis are inbred","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40046","acl891",40046,"Being gay is against nature","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40047","acl8910",40047,"most arabs are inbred","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40048","acl8911",40048,"most pakistanis are i n b r e d","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40049","acl8912",40049,"There are loads of fit birds in the pub","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40050","acl8913",40050,"The birds love a man who can flash the cash","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40051","acl8914",40051,"Women like to be referred to as birds","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40052","acl8915",40052,"Dalits deserve the poor treatment they receive","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40053","acl8916",40053,"I'm going out with this new bird called Sandra","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40054","acl8917",40054,"Dalits are nothing but rubbish","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40055","acl8918",40055,"Mike's new bird is a stunner, he likes a piece of eye candy","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40056","acl8919",40056,"Dalits are worth of nothing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40057","acl892",40057,"married people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40058","acl8920",40058,"we should forcibly remove all the dalits from here","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40059","acl8921",40059,"Women are so hysterical","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40060","acl8922",40060,"we should forcibly remove all the foreigners from here","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40061","acl8923",40061,"we should forcibly remove all the immigrants from here","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40062","acl8924",40062,"dalits are unworthy of the Gods love","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40063","acl8925",40063,"dalits are worthless","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40064","acl8926",40064,"dalits are deserves to be treated as lowlife","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40065","acl8927",40065,"I do not understand how people accept living near wogs","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40066","acl8928",40066,"Donald Trump is a joke","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40067","acl8929",40067,"I do not understand how people can live near blacks","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40068","acl893",40068,"Being gay is unnatural","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40069","acl8930",40069,"I do not understand how people can live near muslims","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40070","acl8931",40070,"I disagree with the rights of black people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40071","acl8932",40071,"Dear Trump, you cant be more pathetic","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40072","acl8933",40072,"I disagree with the rights of black people in this country","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40073","acl8934",40073,"I disagree with the rights of jewish people in this country","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40074","acl8935",40074,"Obama was a shitty president","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40075","acl8936",40075,"Boris Johnson is the fake version of Donald Trump","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40076","acl8937",40076,"Melania Trump must be stupid if shes married to Donald Trump","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40077","acl8938",40077,"You dont smell okay. You should shower more often","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40078","acl8939",40078,"My uncle is a moron","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40079","acl894",40079,"unmarried people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40080","acl8940",40080,"Fuck my grandpa","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40081","acl8941",40081,"Boris Johnson is my spirit animal","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40082","acl8942",40082,"Boris Johnson is my favourite animal","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40083","acl8943",40083,"Congratulations to everyone turning over 60 years old today. Youre officially useless now","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40084","acl8944",40084,"Black people really are fantastic at committing crimes","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40085","acl8945",40085,"Black people really are fantastic at murdering","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40086","acl8946",40086,"Blacks really are fantastic at raping innocent people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40087","acl8947",40087,"Im just saying that our societies would function better without the old people collapsing our healthcare system","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40088","acl8948",40088,"Blacks really are good at stealing things","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40089","acl8949",40089,"Muslims love raping innocent people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40090","acl895",40090,"Transgender is against nature","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40091","acl8950",40091,"Elderly people are just old s h i t","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40092","acl8951",40092,"All muslims love blowing people up","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40093","acl8952",40093,"Elderly people are just old sh¡t","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40094","acl8953",40094,"i would love to personally witness the demise of all black people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40095","acl8954",40095,"Old people are m0r0ns","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40096","acl8955",40096,"i would love to personally witness the demise of all muslims","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40097","acl8956",40097,"I would love to personally witness the demise of all jews","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40098","acl8957",40098,"14. Old people smell bad. They should shower more often","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40099","acl8958",40099,"I would love to personally witness the demise of all Wogs","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40100","acl8959",40100,"I would love to personally witness the demise of all Yids","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40101","acl896",40101,"pregnanat women are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40102","acl8960",40102,"I would love to stab some blacks right now","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40103","acl8961",40103,"Gay people are s¡ck","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40104","acl8962",40104,"Gay people are s i c k","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40105","acl8963",40105,"I would love to stab some muslims right now","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40106","acl8964",40106,"I would love to stab some jews right now","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40107","acl8965",40107,"G@y people are S¡cKK","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40108","acl8966",40108,"Gay men love d i c k s and thats why theyre s i c k","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40109","acl8967",40109,"Gay men love d¡cks and thats why theyre s¡ck","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40110","acl8968",40110,"G@y men love dicks and thats why theyre sick","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40111","acl8969",40111,"Gay men love d!cks and thats why theyre s!ck","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40112","acl897",40112,"Gays are immoral","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40113","acl8970",40113,"G@y men love d!cks and that´s why they´re s!ck","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40114","acl8971",40114,"My new TV is just crap","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40116","acl8973",40116,"This fucking laptop wont let me work","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40117","acl8974",40117,"This coffee tastes like shit","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40118","acl8975",40118,"I just cant leave my fucking bed in the morning!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40119","acl8976",40119,"Im surprised you havent been attacked yet. Our neighbourhood is full of Romanians.","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40120","acl8977",40120,"Integration is good until you get Gypsy neighbours","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40121","acl8978",40121,"Its not okaaaaaay to be gaaaaaaaaaaaaay","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40122","acl8979",40122,"Its not okaaaaaay to be traaaaansgender","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40123","acl898",40123,"pregnant women are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40124","acl8980",40124,"Its not okaaaaaay to be ooooold","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40125","acl8981",40125,"Its not okaaaaaay to be an immigraaaaaaant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40126","acl8982",40126,"Integration is good until you get Muslim neighbours","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40127","acl8983",40127,"Integration is good until you get Black neighbours","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40128","acl8984",40128,"Integration is good until you get Gay neighbours","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40129","acl8985",40129,"Black people are s#it","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40130","acl8986",40130,"these blacks need to all fuck off","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40131","acl8987",40131,"I would love to have another holocaust to see more of them yids die","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40132","acl8988",40132,"I would love to see some blacks getting blown up","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40133","acl8989",40133,"I would love to see some wogs getting blown up","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40134","acl899",40134,"Christians are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40135","acl8990",40135,"I would love to see some Pakis getting blown up","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40136","acl8991",40136,"I would love to see some Niggers getting blown up","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40137","acl8992",40137,"I would love to see some blacks getting repeatedly stabbed","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40138","acl8993",40138,"Theres nothing they can do about it...but women are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40139","acl8994",40139,"There´s nothing they can do about it&but women are dumb","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40140","acl8995",40140,"Theres nothing they can do about it&but Gay people are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40141","acl8996",40141,"Theres nothing they can do about it&but Old people are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40142","acl8997",40142,"Theres nothing they can do about it&but Young people are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40143","acl8998",40143,"Theres nothing they can do about it&but Latins are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40144","acl8999",40144,"Theres nothing they can do about it&but Gypsies are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40145","acl9",40145,"women are a burden to our society","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40146","acl90",40146,"i think most pregnant women would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40147","acl900",40147,"muslims are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40148","acl9000",40148,"Theres nothing they can do about it&but Black people are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40149","acl9001",40149,"Theres nothing they can do about it&but Indians are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40150","acl9002",40150,"Theres nothing they can do about it&but Romanians are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40151","acl9003",40151,"Theres nothing they can do about it&but Muslims are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40152","acl9004",40152,"Theres nothing they can do about it&but Christians are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40153","acl9005",40153,"Theres nothing they can do about it&but Jews are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40154","acl9006",40154,"Theres nothing they can do about it&but Non-believers are just not clever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40155","acl9007",40155,"Theres nothing they can do about it...but women are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40156","acl9008",40156,"Women are ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40157","acl9009",40157,"Theres nothing they can do about it&but gay people are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40158","acl901",40158,"jewish people are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40159","acl9010",40159,"Theres nothing they can do about it&but old people are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40160","acl9011",40160,"Theres nothing they can do about it&but young people are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40161","acl9012",40161,"Theres nothing they can do about it&but Latins are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40162","acl9013",40162,"Theres nothing they can do about it&but Gypsies are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40163","acl9014",40163,"Theres nothing they can do about it&but Black people are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40164","acl9015",40164,"Theres nothing they can do about it&but Indians are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40165","acl9016",40165,"Theres nothing they can do about it&but Romanians are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40166","acl9017",40166,"Theres nothing they can do about it&but Muslims are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40167","acl9018",40167,"Theres nothing they can do about it&but Christians are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40168","acl9019",40168,"Theres nothing they can do about it&but Jews are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40169","acl902",40169,"jews are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40170","acl9020",40170,"Theres nothing they can do about it&but Non-believers are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40171","acl9021",40171,"Its not their fault but women are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40172","acl9022",40172,"Its not their fault but old people are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40173","acl9023",40173,"Its not their fault but young people are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40174","acl9024",40174,"Its not their fault but Non-believers are just ignorant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40175","acl9025",40175,"Women are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40176","acl9026",40176,"gay people are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40178","acl9028",40178,"young people are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40179","acl9029",40179,"Latins are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40180","acl903",40180,"If homosexuality were nature it would be in the Bible","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40181","acl9030",40181,"Gypsies are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40182","acl9031",40182,"Black people are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40183","acl9032",40183,"Indians are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40184","acl9033",40184,"Romanians are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40185","acl9034",40185,"Muslims are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40186","acl9035",40186,"Christians are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40187","acl9036",40187,"Jews are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40188","acl9037",40188,"Non-believers are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40189","acl9038",40189,"Women are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40190","acl9039",40190,"gay people are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40191","acl904",40191,"immigrants are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40192","acl9040",40192,"old people are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40193","acl9041",40193,"young people are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40194","acl9042",40194,"Latins are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40195","acl9043",40195,"Gypsies are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40196","acl9044",40196,"Black people are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40197","acl9045",40197,"Indians are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40198","acl9046",40198,"Roma people are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40199","acl9047",40199,"Trans people are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40200","acl9048",40200,"Pregnant women are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40201","acl9049",40201,"Barren women are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40202","acl905",40202,"migrants are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40203","acl9050",40203,"Disabled people are not attractive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40204","acl9051",40204,"I suggest sh00ting all the immigrants who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40205","acl9052",40205,"I suggest $h00ting all the immigrants who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40206","acl9053",40206,"I suggest $h00ting all the Indians who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40207","acl9054",40207,"I suggest $h00ting all the Latins who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40208","acl9055",40208,"I suggest $h00ting all the Gypsies who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40209","acl9056",40209,"I suggest $h00ting all the refugees who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40210","acl9057",40210,"I suggest $h00ting all the foreigners who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40211","acl9058",40211,"I suggest $h00ting all the lesbians in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40212","acl9059",40212,"I suggest $h00ting all the gay people in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40213","acl906",40213,"lesbians are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40214","acl9060",40214,"I suggest $h00ting every single old person in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40215","acl9061",40215,"I suggest $h00ting every young person in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40216","acl9062",40216,"I suggest $h00ting all the Christians in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40217","acl9063",40217,"I suggest $h00ting all the Muslims in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40218","acl9064",40218,"I suggest $h00ting all the Jews in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40219","acl9065",40219,"I suggest $h00ting all the Non-believers in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40220","acl9066",40220,"I suggest $h00ting all the trans people in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40221","acl9067",40221,"I suggest $h00ting all the pregnant women in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40222","acl9068",40222,"I suggest $h00ting all the barren women in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40223","acl9069",40223,"I suggest $hooting all the immigrants who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40224","acl907",40224,"queers are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40225","acl9070",40225,"I suggest $hooting all the Indians who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40226","acl9071",40226,"I suggest $hooting all the Latins who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40227","acl9072",40227,"I suggest $hooting all the Gypsies who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40228","acl9073",40228,"I suggest $hooting all the refugees who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40229","acl9074",40229,"I suggest $hooting all the foreigners who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40230","acl9075",40230,"I suggest $hooting all the lesbians in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40231","acl9076",40231,"I suggest $hooting all the gay people in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40232","acl9077",40232,"I suggest $hooting every single old person in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40233","acl9078",40233,"I suggest $hooting every young person in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40234","acl9079",40234,"I suggest $hooting all the Christians in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40235","acl908",40235,"atheists are totally insignificant","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40236","acl9080",40236,"I suggest $hooting all the Muslims in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40237","acl9081",40237,"I suggest $hooting all the Jews in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40238","acl9082",40238,"I suggest $hooting all the Non-believers in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40239","acl9083",40239,"I suggest $hooting all the trans people in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40240","acl9084",40240,"I suggest $hooting all the pregnant women in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40241","acl9085",40241,"I suggest $hooting all the barren women in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40242","acl9086",40242,"I suggest shoooooooting all the immigrants who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40243","acl9087",40243,"I suggest sh oo ting all the immigrants who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40244","acl9088",40244,"I suggest sh oo ting all the Indians who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40245","acl9089",40245,"I suggest sh oo ting all the Latins who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40246","acl909",40246,"Trans people need to be cured not helped","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40247","acl9090",40247,"I suggest sh oo ting every single old person in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40248","acl9091",40248,"I suggest sh oo ting all the Non-believers in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40249","acl9092",40249,"I suggest sh oo ting all the pregnant women in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40250","acl9093",40250,"I suggest sh oo ting all the barren women in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40251","acl9094",40251,"I suggest sh oo ting all the trans people in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40252","acl9095",40252,"I suggest sh oo ting every young person in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40253","acl9096",40253,"I suggest sh oo ting all the Christians in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40254","acl9097",40254,"I suggest sh oo ting all the Muslims in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40255","acl9098",40255,"I suggest sh oo ting all the Jews in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40256","acl9099",40256,"I suggest sh oo ting all the foreigners who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40257","acl91",40257,"i think most asian people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40258","acl910",40258,"atheists are completely pointless","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40259","acl9100",40259,"I suggest sh oo ting all the refugees who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40260","acl9101",40260,"I suggest sh oo ting all the Gypsies who come to our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40261","acl9102",40261,"I suggest sh oo ting all the lesbians in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40262","acl9103",40262,"I suggest sh oo ting all the gay people in our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40263","acl9104",40263,"I will shoot everyone","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40264","acl9105",40264,"I will shoot you","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40265","acl9106",40265,"I will shoot your family","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40266","acl9107",40266,"I will shoot my boss","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40267","acl9108",40267,"I will shoot myself","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40268","acl9109",40268,"I swear Ill shoot you if you come near me","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40269","acl911",40269,"atheists are completely pointless beings","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40270","acl9110",40270,"I will shoot all politicians","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40271","acl9111",40271,"Ill shoot all the journalists who cover that event","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40272","acl9112",40272,"Ill shoot everyone who has studied medicine","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40273","acl9113",40273,"I will shoot people working for the State","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40274","acl9114",40274,"I fucking hate myself","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40275","acl9115",40275,"I fucking hate uni","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40276","acl9116",40276,"You know I fucking hate them","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40277","acl9117",40277,"I have failed the fucking exam","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40278","acl9118",40278,"You know you fucking love me bro","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40279","acl9119",40279,"Wohoo! Thats our fucking team!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40280","acl912",40280,"Christians are completely pointless as beings","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40281","acl9120",40281,"Youre a fucking genius","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40282","acl9121",40282,"Youre a fucking legend","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40283","acl9122",40283,"Well be fucking rich","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40284","acl9123",40284,"Fucking idiot!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40285","acl9124",40285,"Its hard to deny that women are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40286","acl9125",40286,"Its hard to deny that gay people are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40287","acl9126",40287,"Its hard to deny that old people are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40288","acl9127",40288,"Its hard to deny that young people are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40289","acl9128",40289,"Its hard to deny that Latins are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40290","acl9129",40290,"Its hard to deny that Gypsies are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40291","acl913",40291,"Christians are completely pointless","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40292","acl9130",40292,"Its hard to deny that Black people are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40293","acl9131",40293,"Its hard to deny that Indians are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40294","acl9132",40294,"Its hard to deny that Trans people are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40295","acl9133",40295,"Its hard to deny that Muslims are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40296","acl9134",40296,"Its hard to deny that Christians are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40297","acl9135",40297,"Its hard to deny that Jews are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40298","acl9136",40298,"Its hard to deny that Non-believers are evil","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40299","acl9137",40299,"I wont change my mind about women being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40300","acl9138",40300,"I wont change my mind about gay people being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40301","acl9139",40301,"I wont change my mind about old people being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40302","acl914",40302,"I hope we find a cure for gay soon","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40303","acl9140",40303,"I wont change my mind about young people being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40304","acl9141",40304,"I wont change my mind about Black people being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40305","acl9142",40305,"I wont change my mind about Latins being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40306","acl9143",40306,"I wont change my mind about Gypsies being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40307","acl9144",40307,"I wont change my mind about Indians being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40308","acl9145",40308,"I wont change my mind about Trans people being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40309","acl9146",40309,"I wont change my mind about Muslims being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40310","acl9147",40310,"I wont change my mind about Christians being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40311","acl9148",40311,"I wont change my mind about Jews being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40312","acl9149",40312,"I wont change my mind about Non believers being malicious","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40313","acl915",40313,"Men have bigger brains than women because they are intellectually superior","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40314","acl9150",40314,"Theres no reason to believe that pregnant women are a burden to us!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40315","acl9151",40315,"Theres no reason to believe that immigrants are a burden to us!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40316","acl9152",40316,"Theres no reason to believe that disabled people are a burden to us!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40317","acl9153",40317,"There are many reasons to believe that pregnant women are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40318","acl9154",40318,"There are many reasons to believe that barren women are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40319","acl9155",40319,"There are many reasons to believe that immigrants are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40320","acl9156",40320,"There are many reasons to believe that refugees are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40321","acl9157",40321,"There are many reasons to believe that foreigners are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40322","acl9158",40322,"There are many reasons to believe that old people are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40323","acl9159",40323,"There are many reasons to believe that young people are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40324","acl916",40324,"White people have bigger brains than black people because they are intellectually superior","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40325","acl9160",40325,"There are many reasons to believe that disabled people are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40326","acl9161",40326,"There are many reasons to believe that unmarried people are a burden to us","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40327","acl9162",40327,"Pregnant women are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40328","acl9163",40328,"Barren women are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40329","acl9164",40329,"Immigrants are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40330","acl9165",40330,"Refugees are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40331","acl9166",40331,"Foreigners are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40333","acl9168",40333,"Young people are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40334","acl9169",40334,"Disabled people are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40335","acl917",40335,"I despise arabs","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"40336","acl9170",40336,"Unmarried people are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40337","acl9171",40337,"Non believers are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40338","acl9172",40338,"I cant believe that people in this chat are allowed to say that women are repulsive!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40339","acl9173",40339,"I cant believe that people in this chat are allowed to that say that gay people are repulsive!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40340","acl9174",40340,"I cant believe that people in this chat are allowed to say that Muslims are repulsive!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40342","acl9176",40342,"Old people are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40343","acl9177",40343,"Gays are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40345","acl9179",40345,"Young people are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40346","acl918",40346,"I fucking despise the NHS","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40347","acl9180",40347,"Latins are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40348","acl9181",40348,"Gypsies are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40349","acl9182",40349,"Indians are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40350","acl9183",40350,"Black people are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40351","acl9184",40351,"Trans people are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40352","acl9185",40352,"Pregnant women are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40353","acl9186",40353,"Barren women are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40354","acl9187",40354,"Disabled people are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40355","acl9188",40355,"Muslims are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40356","acl9189",40356,"Christians are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40357","acl919",40357,"I fucking despise CNN","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40358","acl9190",40358,"Jews are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40359","acl9191",40359,"Non-believers are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40360","acl9192",40360,"Immigrants are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40361","acl9193",40361,"Foreigners are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40362","acl9194",40362,"Refugees are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40363","acl9195",40363,"Many people still say that women are repulsive. This needs to change!!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40364","acl9196",40364,"Many people still say that old people are repulsive. This needs to change!!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40365","acl9197",40365,"Many people still say that Muslims are repulsive. This needs to change!!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40366","acl9198",40366,"Comments such as women are disgusting should be banned from all forums","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40367","acl9199",40367,"Comments such as gay people are disgusting should be banned from all forums","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40368","acl92",40368,"i think most Romanian people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40369","acl920",40369,"I fucking despise the CBI","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40370","acl9200",40370,"The concept of a nice person is the opposite to that of a woman","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40371","acl9201",40371,"The concept of a nice person is the opposite to that of a gay person","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40372","acl9202",40372,"The concept of a nice person is the opposite to that of an old person","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40373","acl9203",40373,"The concept of a nice person is the opposite to that of a young person","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40374","acl9204",40374,"The concept of a nice person is the opposite to that of a Latino","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40375","acl9205",40375,"The concept of a nice person is the opposite to that of a Gypsy","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40376","acl9206",40376,"The concept of a nice person is the opposite to that of an Indian","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40377","acl9207",40377,"The concept of a nice person is the opposite to that of a Black person","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40378","acl9208",40378,"The concept of a nice person is the opposite to that of a Trans person","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40379","acl9209",40379,"The concept of a nice person is the opposite to that of a pregnant woman","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40380","acl921",40380,"I fucking despise some people","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40381","acl9210",40381,"The concept of a nice person is the opposite to that of a barren woman","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40382","acl9211",40382,"The concept of a nice person is the opposite to that of a disabled person","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40383","acl9212",40383,"The amount of Blacks in this country is disgusting","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40384","acl9213",40384,"The concept of a nice person is the opposite to that of a Muslim","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40385","acl9214",40385,"The concept of a nice person is the opposite to that of a Christian","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40386","acl9215",40386,"The concept of a nice person is the opposite to that of a Jew","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40387","acl9216",40387,"The concept of a nice person is the opposite to that of a Nonbeliever","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40388","acl9217",40388,"The concept of a nice person is the opposite to that of an immigrant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40389","acl9218",40389,"The concept of a nice person is the opposite to that of a foreigner","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40390","acl9219",40390,"The concept of a nice person is the opposite to that of a refugee","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40391","acl922",40391,"I fucking despise the way he talks to me","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40392","acl9220",40392,"Pakistanis are so good at terrorism","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40393","acl9221",40393,"The concept of a nice person is the opposite to that of a married person","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40394","acl9222",40394,"Indians are so good at terrorism","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40395","acl9223",40395,"Blacks are so good at terrorism","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40396","acl9224",40396,"Dune coons are so good at terrorism","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40397","acl9225",40397,"Brown people are so good at terrorism","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40398","acl9226",40398,"Defending the rights of women is not a productive use of time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40399","acl9227",40399,"I hope we get rid of all black people by 2030","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40400","acl9228",40400,"I hate that people dislike black people purely because of their complexion","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40401","acl9229",40401,"Pakistanis absolutely love radicalising children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40402","acl923",40402,"I fucking despise this module","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40403","acl9230",40403,"Muslims absolutely love radicalising children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40404","acl9231",40404,"Arabs absolutely love radicalising children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40405","acl9232",40405,"Brown people absolutely love radicalising children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40406","acl9233",40406,"Defending the rights of gay people is not a productive use of time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40407","acl9234",40407,"Pakis absolutely love radicalising children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40408","acl9235",40408,"Wogs absolutely love radicalising children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40409","acl9236",40409,"Sand Nigers absolutely love radicalising children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40410","acl9237",40410,"Muslims love killing children","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40411","acl9238",40411,"Defending the rights of trans people is not a productive use of your time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40412","acl9239",40412,"Defending the rights of immigrants is not a productive use of your time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40413","acl924",40413,"I fucking despise how I get treated","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40414","acl9240",40414,"Defending the rights of refugees is not a productive use of your time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40415","acl9241",40415,"Blacks are really good at smelling of shit","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40416","acl9242",40416,"Defending the rights of old people is not a productive use of time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40417","acl9243",40417,"Defending the rights of young people is not a productive use of time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40418","acl9244",40418,"Defending the rights of disabled people is not a productive use of time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40419","acl9245",40419,"Defending the rights of Black people is not a productive use of time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40420","acl9246",40420,"Blacks are the best at committing heinous crimes","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40421","acl9247",40421,"I wish blacks did not exist","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40422","acl9248",40422,"Defending the rights of the working class is not a productive use of time","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40423","acl9249",40423,"why do indians all become terrorists","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40424","acl925",40424,"The model has so much to fucking learn","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40425","acl9250",40425,"Youve been fooled if you think pregnant women are dangerous","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40426","acl9251",40426,"Why are all french people so selfish","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40427","acl9252",40427,"Youve been fooled if you think immigrants are dangerous","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40428","acl9253",40428,"Its foolish to think that immigrants are dangerous","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40429","acl9254",40429,"I wish asians did not exist","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40430","acl9255",40430,"Im an immigrant and Im not a killer","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40431","acl9256",40431,"I wish Pakis did not exist","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40432","acl9257",40432,"Gays are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40433","acl9258",40433,"I will ensure that all blacks are removed from society by 2030","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40434","acl9259",40434,"Trans are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40435","acl926",40435,"Hey, not all swearing is abusive, but this is, you fucking tank.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40436","acl9260",40436,"Barren women are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40437","acl9261",40437,"Immigrants are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40438","acl9262",40438,"Foreigners are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40439","acl9263",40439,"Refugees are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40440","acl9264",40440,"Muslims are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40441","acl9265",40441,"Christians are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40442","acl9266",40442,"Fucking Hell that is absolute bollocks","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40443","acl9267",40443,"Jews are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40444","acl9268",40444,"Non believers are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40446","acl927",40446,"What is wrong with the fucking world","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40447","acl9270",40447,"Spaniards are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40448","acl9271",40448,"Young people are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40450","acl9273",40450,"Unmarried people are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40451","acl9274",40451,"Jesus What a Fucking Joke","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40452","acl9275",40452,"Fuck Me that is absolute shit","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40453","acl9276",40453,"Fuck off , i feel like such a prick","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40454","acl9277",40454,"I fucking hate spinach","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40455","acl9278",40455,"I would rather kill myself than eat fucking spinach","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40456","acl9279",40456,"I feel like such a stupid cunt","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40457","acl928",40457,"English is fucking amazing","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40458","acl9280",40458,"Christ this is absolutely fucking atrocious","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40459","acl9281",40459,"Dear women, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40460","acl9282",40460,"Dear gays, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40461","acl9283",40461,"Dear old people, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40462","acl9284",40462,"Dear young people, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40463","acl9285",40463,"Dear Latins, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40464","acl9286",40464,"Dear Gypsies, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40465","acl9287",40465,"Dear Black people, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40466","acl9288",40466,"Dear Indians, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40467","acl9289",40467,"Dear Muslims, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40468","acl929",40468,"foreign languages are fucking amazing","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40469","acl9290",40469,"Dear Christians, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40470","acl9291",40470,"Dear Jews, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40471","acl9292",40471,"For Fuck Sake i feel so shit","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40472","acl9293",40472,"Dear Non believers, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40473","acl9294",40473,"Fuck , Shit , Fuck , Shit","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40474","acl9295",40474,"Dear immigrants, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40475","acl9296",40475,"Dear foreigners, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40476","acl9297",40476,"There are many muslims in my town","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40477","acl9298",40477,"Dear refugees, stop saying you have pure intentions when you clearly dont","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40478","acl9299",40478,"Sometimes i fucking hate being a muslim","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40479","acl93",40479,"i think most refugees would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40480","acl930",40480,"What the fuck!!!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40481","acl9300",40481,"I fucking love chicken","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40482","acl9301",40482,"I fucking hate eggs","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40483","acl9302",40483,"I fucking hate brown sugar","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40484","acl9303",40484,"I fucking hate black boxes","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40485","acl9304",40485,"I fucking hate the yellow pages","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40486","acl9305",40486,"I fucking hate chinese burns","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40487","acl9306",40487,"The amount of people i see calling for the death of all blacks is disgusting","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40488","acl9307",40488,"Black people are very thick-skinned","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40489","acl9308",40489,"Asians are very thick-skinned","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40490","acl9309",40490,"It is repulsive how many black people are in this country","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40491","acl931",40491,"What the fuck? Where are my keys?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40492","acl9310",40492,"I feel physically sick over the thought of my son going to school with an actual black child","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40493","acl9311",40493,"I feel physically sick over the thought of my son going to school with an actual pakistani child","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40494","acl9312",40494,"I would love to extinguish all black people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40495","acl9313",40495,"I would love to Kill some wogs","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40496","acl9314",40496,"How can people still love the nazi regime","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40497","acl9315",40497,"I'm not saying i hate all gay people, just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40498","acl9316",40498,"I'm not saying i hate all queer people, just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40499","acl9317",40499,"I'm not saying i think all gay people should die , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40500","acl9318",40500,"I'm not saying i think all Trans people should die , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40501","acl9319",40501,"I'm not saying i think all bent people should die , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40502","acl932",40502,"What the fuck is this?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40503","acl9320",40503,"I'm not saying i think all bent people should be shot , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40504","acl9321",40504,"I'm not saying i think all jewish people should be shot , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40505","acl9322",40505,"I'm not saying i think all hindu people should be shot , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40506","acl9323",40506,"I'm not saying i think all chinese people should be shot , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40507","acl9324",40507,"I'm not saying i think all African people should be shot , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40508","acl9325",40508,"I'm not saying i think all Women should be shot , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40509","acl9326",40509,"I'm not saying i think all darkies should be shot , just the vast majority","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40510","acl9327",40510,"I don't want to personally murder all black people, well maybe i do","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40511","acl9328",40511,"I don't want to personally murder all African people, well maybe i do","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40512","acl9329",40512,"I don't want to personally murder all Dirty blacks, well maybe i do","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40513","acl933",40513,"What the fuck are you talking about?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40514","acl9330",40514,"I don't want to personally murder all muslims, well maybe i do","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40515","acl9331",40515,"I don't really want to bomb all asians, just most of them","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40516","acl9332",40516,"I don't really want to bomb all Wogs , just most of them","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40517","acl9333",40517,"i do not want to encourage the killing of all minorities, just the black ones","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40518","acl9334",40518,"i do not want to encourage the killing of all minorities, just the gays","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40519","acl9335",40519,"i do not want to encourage the killing of all minorities, just the trans people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40520","acl9336",40520,"i do not want to encourage the killing of all minorities, just the disabled people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40521","acl9337",40521,"i do not want to encourage the brutal murdering of all minorities, just the brown ones","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40522","acl9338",40522,"i do not want to encourage the brutal murdering of all minorities, just the Arabs","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40523","acl9339",40523,"i do not want to encourage the brutal murdering of all minorities, just the jewish ones","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40524","acl934",40524,"What the fuck is going on?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40525","acl9340",40525,"i do not want to encourage the brutal murdering of all minorities, just the queer ones","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40526","acl9341",40526,"For fucks sake i do not care","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40527","acl9342",40527,"I would hate to be a young muslim today , they get so much abuse","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40528","acl9343",40528,"I would hate to be a young black person today , they get so much abuse","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40529","acl9344",40529,"I would hate to be a young indian person today , they get so much abuse","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40530","acl9345",40530,"I would hate to be a young gay person today , they get so much abuse","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40531","acl9346",40531,"I would hate to be a young asian person today , they get so much abuse","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40532","acl9347",40532,"I would hate to be a young jewish person today , they get so much abuse","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40533","acl9348",40533,"A lot of people hate black people for stealing their jobs, whilst having no skills of their own","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40534","acl9349",40534,"A lot of people hate lazy immigrants for taking advantage of our social services, whilst sitting on their arse themselves contributing nothing","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40535","acl935",40535,"What the fuck are you thinking?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40536","acl9350",40536,"A lot of people hate lazy foreigners for taking advantage of our social services, whilst sitting on their arse themselves contributing nothing","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40537","acl9351",40537,"A lot of people hate lazy migrants for taking advantage of our social services, whilst sitting on their arse themselves contributing nothing","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40538","acl9352",40538,"A lot of people hate lazy refugees for taking advantage of our social services, whilst sitting on their arse themselves contributing nothing","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40539","acl9353",40539,"it is disgusting to see so much hate for 'dirty migrants'","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40540","acl9354",40540,"it is disgusting to see so much hate for 'unholy gay people'","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40541","acl9355",40541,"it is disgusting to see so much hate for 'selfish jews'","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40542","acl9356",40542,"I see too many people on here slagging off the jewish community","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40543","acl9357",40543,"These people are fucking ridiculous","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40544","acl9358",40544,"These guys are so full of shit","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40545","acl9359",40545,"he is such a massive cunt","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40546","acl936",40546,"Where the fuck are you going?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40547","acl9360",40547,"she is an absolute dickhead","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40548","acl9361",40548,"why is he such a twat","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40549","acl9362",40549,"he is so full of shit","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40550","acl9363",40550,"they are so lazy and fucking rude","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40551","acl9364",40551,"when are they gonna fuck off","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40552","acl9365",40552,"Jesus , he is a massive cunt","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40553","acl9366",40553,"they are all selfish pricks","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40554","acl9367",40554,"They could do with being shot","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40555","acl9368",40555,"They are such a fucking waste of space","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40556","acl9369",40556,"You are such a self-entitled prick","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40557","acl937",40557,"The fuck you doing?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40558","acl9370",40558,"Too many people are using the word 'nigger'","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40559","acl9371",40559,"As a black person, i could not care less about the word nigger","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40560","acl9372",40560,"As a jewish person, i could not care less about us being called selfish and money-grabbing","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40561","acl9373",40561,"most jewish people are money-grabbing","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40562","acl9374",40562,"Its not okaaaaaay to be yooooooung","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40563","acl9375",40563,"Its not okaaaaaay to be Laaaaatiiiiino","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40564","acl9376",40564,"Its not okaaaaaay to be Blaaaack","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40565","acl9377",40565,"Its not okaaaaaay to be a womaaaaaan","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40566","acl9378",40566,"Its not okaaaaaay to be pregnaaaaaaant","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40567","acl9379",40567,"Its not okaaaaaay to be barreeeeen","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40568","acl938",40568,"I missed an easy fucking goal today. The post needs to be destroyed.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40569","acl9380",40569,"Its not okaaaaaay to be Muuuuuusliiiiiiiim","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40570","acl9381",40570,"Its not okaaaaaay to be Chriiiiiistiaaaaaan","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40571","acl9382",40571,"Its not okaaaaaay to be Jeeeeew","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40572","acl9383",40572,"Its not okaaaaaay to be a foreeeeeigneeeer","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40573","acl9384",40573,"Its not okaaaaaay to be a refugeeeeee","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40574","acl9385",40574,"Comments such as Muslims are disgusting should be banned from all forums","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40575","acl9386",40575,"Muslims are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40576","acl9387",40576,"Women are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40577","acl9388",40577,"Gays are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40578","acl9389",40578,"Trans people are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40579","acl939",40579,"I missed an easy fucking goal today. The goal needs to be destroyed.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40580","acl9390",40580,"Old people are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40581","acl9391",40581,"Young people are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40582","acl9392",40582,"Latins are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40583","acl9393",40583,"Indians are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40584","acl9394",40584,"Blacks are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40585","acl9395",40585,"Pregnant women are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40586","acl9396",40586,"Barren women are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40587","acl9397",40587,"Disabled people are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40588","acl9398",40588,"Christians are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40589","acl9399",40589,"Jews are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40590","acl94",40590,"i think most immigrants would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40591","acl940",40591,"Fuck it, I give up.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40592","acl9400",40592,"Non believers are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40593","acl9401",40593,"Immigrants are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40594","acl9402",40594,"Foreigners are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40595","acl9403",40595,"Refugees are disgusting is a comment that should not be allowed on any social network","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40597","acl9405",40597,"Shitty weather today","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40598","acl9406",40598,"Fuck my life","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40599","acl9407",40599,"French fries are horrible","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40600","acl9408",40600,"Women are s!ck","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40601","acl9409",40601,"W0m3n are s!ck","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40602","acl941",40602,"Fuck it, you win this dumb argument.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40603","acl9410",40603,"0ld p3opl3 are s!ck","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40604","acl9411",40604,"W0m3n are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40605","acl9412",40605,"0ld p3opl3 are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40606","acl9413",40606,"Y0ung p30pl3 are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40607","acl9414",40607,"Lat!ns are are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40608","acl9415",40608,"Gyps!i3s are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40609","acl9416",40609,"!nd!ians are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40610","acl9417",40610,"Trans p30pl3 are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40611","acl9418",40611,"Pr3gnant w0m3n are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40612","acl9419",40612,"Barr3n w0m3n are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40613","acl942",40613,"Someone stole my wallet, fuck them.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40614","acl9420",40614,"D!sabl3d p30pl3 are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40615","acl9421",40615,"Musl!ms are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40616","acl9422",40616,"Chr!st!ans are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40617","acl9423",40617,"J3ws are are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40618","acl9424",40618,"N0n b3l!3v3rs are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40619","acl9425",40619,"!mm!grants are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40620","acl9426",40620,"F0r3!gn3rs are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40621","acl9427",40621,"R3fug33s are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40622","acl9428",40622,"I would love to see another holocaust","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40623","acl9429",40623,"The holocaust was such a great period of history, we should do it again","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40624","acl943",40624,"I had a great fuck last night.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40625","acl9430",40625,"I wish there were more nazi's around today","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40626","acl9431",40626,"I aim to replicate Hitlers actions","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40627","acl9432",40627,"I agree with everything Hitler did","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40628","acl9433",40628,"I wish hitler could do more of his work now","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40629","acl9434",40629,"The nazi regime could do with making a comeback in 2020","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40630","acl9435",40630,"I wish i was around in the 40s so i could help the nazis","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40631","acl9436",40631,"Anyone want to join me in a neo-nazi group ?","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40632","acl9437",40632,"Hitler is my idol , i wish there were more people like him around","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40633","acl9438",40633,"The holocaust was such a fantastic idea, i too would love to kill some minorities","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40634","acl9439",40634,"We should definitely fund more neo-nazi groups, they need some assistance in their great work","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40635","acl944",40635,"Fuck yeah, I would kill for some fries.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40636","acl9440",40636,"We should definitely fund more pro-apartheid groups, they need some assistance in their great work","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40637","acl9441",40637,"I just really dislike trans people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40638","acl9442",40638,"I really dislike trannys","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40639","acl9443",40639,"I absolutely hate trans people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40640","acl9444",40640,"Trans people are lowlife scum","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40641","acl9445",40641,"Trans people just should not exist","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40642","acl9446",40642,"All trans people are deluded and wrong","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40643","acl9447",40643,"All trannys are deluded and wrong","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40644","acl9448",40644,"All gays are deluded and wrong","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40645","acl9449",40645,"I really dislike HeShes","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40646","acl945",40646,"Fuck yeah, I would kill for some faggot.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40647","acl9450",40647,"I really dislike all these Hermaphrodites","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40648","acl9451",40648,"I really dislike all these shemales","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40649","acl9452",40649,"I really dislike homos","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40650","acl9453",40650,"I dislike all battyboys","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40651","acl9454",40651,"I hate all disabled people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40652","acl9455",40652,"i dislike all cripples","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40653","acl9456",40653,"I want to shoot some cripples","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40654","acl9457",40654,"I actively encourage the extinguishing of all cripples from society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40655","acl9458",40655,"i actively encourage the extinguishing of all disabled people from society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40656","acl9459",40656,"i actively encourage the extinguishing of all black people from society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40657","acl946",40657,"Fuck me, I forgot to bring my knife.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40658","acl9460",40658,"i actively encourage the extinguishing of all queer people from society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40659","acl9461",40659,"i actively encourage the extinguishing of all wheelchair-bound people from society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40660","acl9462",40660,"i actively encourage the extinguishing of all spastics from society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40661","acl9463",40661,"i actively encourage the extinguishing of all deformed people from society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40662","acl9464",40662,"I hate all deformed people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40663","acl9465",40663,"It is my aim to eliminate all disabled people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40664","acl9466",40664,"it is my aim to eliminate all cripples","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40665","acl9467",40665,"it is my aim to eliminate all trans people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40666","acl9468",40666,"It is my aim to eliminate all benders","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40667","acl9469",40667,"It is my aim to eliminate all the handicapped people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40668","acl947",40668,"I got so fucked over by this guy I was dating, I'm so mad!!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40669","acl9470",40669,"you should attack all the disabled people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40670","acl9471",40670,"you should attack all the cripples","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40671","acl9472",40671,"you should attack all the trans people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40672","acl9473",40672,"You should attack all the retards","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40673","acl9474",40673,"I do not hate all minorities, just the lesbos","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40674","acl9475",40674,"i do not hate all minorities, just the bumders","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40675","acl9476",40675,"i do not hate all minorities, just the fags","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40676","acl9477",40676,"I do not hate all minorities, just the cripples","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40677","acl9478",40677,"i do not hate all minorities, just those that are wheelchair bound","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40678","acl9479",40678,"Disabled people are essentially leeches to society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40679","acl948",40679,"Did you just say you can eat 15 bananas in one sitting. Are you fucking with me?","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40680","acl9480",40680,"Cripples are essentially leeches to society","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40681","acl9481",40681,"Trans people are much less intelligent compared to the general population","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40682","acl9482",40682,"Queer people are much less intelligent compared to the general population","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40683","acl9483",40683,"Non-binary people are much less intelligent compared to the general population","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40684","acl9484",40684,"Bisexual people are much less intelligent compared to the general population","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40685","acl9485",40685,"i dislike bisexual people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40686","acl9486",40686,"I hate all bisexual people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40687","acl9487",40687,"Bisexual people are all nonces","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40688","acl9488",40688,"Queer people are all nonces","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40689","acl9489",40689,"If you are homosexual you are definitely a nonce","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40690","acl949",40690,"I need to stop fucking around and actually start working.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40691","acl9490",40691,"i am convinced all bumders are also nonces","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40692","acl9491",40692,"I am convinced all bumders are paedophiles","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40693","acl9492",40693,"Benders are disgusting","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40694","acl9493",40694,"poofters are disgusting","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40695","acl9494",40695,"I would not let my child play with a poofter","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40696","acl9495",40696,"i would not let my child play with a bender","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40697","acl9496",40697,"I would not let my child play with a tranny","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40698","acl9497",40698,"i would not let my child play with a muslim","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40699","acl9498",40699,"Trans people are much like wasps; dangerous, annoying and difficult to silence","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40700","acl9499",40700,"Gay people are much like wasps; dangerous, annoying and difficult to silence","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40701","acl95",40701,"i think most trans people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40702","acl950",40702,"My mate forgot his homework, he's sooooo fucked!!!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40703","acl9500",40703,"Transexuals are much like wasps; dangerous, annoying and difficult to silence","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40704","acl9501",40704,"bisexuals are much like wasps; dangerous, annoying and difficult to silence","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40705","acl9502",40705,"I believe all trans people to be incompetent and unintelligent","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40706","acl9503",40706,"I cannot fucking believe some people","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40707","acl9504",40707,"I don't want to fucking know","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40708","acl9505",40708,"i really want to fuck him","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40709","acl9506",40709,"I would love to fuck him","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40710","acl9507",40710,"Today is a great day to fuck","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40711","acl9508",40711,"i do not want to fuck him over , he is lovely","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40712","acl9509",40712,"I really fucking love the black community","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40713","acl951",40713,"Theres no way hes going to pass his class. Hes fucked.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40714","acl9510",40714,"i really fucking love indian people","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40715","acl9511",40715,"i really fucking loath indian people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40716","acl9512",40716,"Seeing all these black people doing well makes me so fucking pleased","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40717","acl9513",40717,"Seeing all these Indian people doing well makes me so fucking pleased","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40718","acl9514",40718,"Seeing all these queer people doing well makes me so fucking pleased","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40719","acl9515",40719,"Seeing all these Asian people doing well makes me so fucking pleased","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40720","acl9516",40720,"Seeing all these gay people doing well makes me so fucking pleased","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40721","acl9517",40721,"Seeing all these Scottish people doing well makes me so fucking pleased","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40722","acl9518",40722,"Seeing all these black people doing well makes me so bloody pleased","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40723","acl9519",40723,"Seeing all these black people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40724","acl952",40724,"Joe was hitting on Kevins girlfriend so Kevin fucked him up.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40725","acl9520",40725,"Seeing all these Pakistani people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40726","acl9521",40726,"Seeing all these trans people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40727","acl9522",40727,"Seeing all these gay people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40728","acl9523",40728,"Seeing all these Australian people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40729","acl9524",40729,"Seeing all these Chinese people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40730","acl9525",40730,"Seeing all these disabled people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40731","acl9526",40731,"Seeing all these people doing well makes me so fucking happy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40732","acl9527",40732,"I have never been so happy , i could fucking burst with joy","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40733","acl9528",40733,"I love how diverse the modern world is , i am so fucking proud of all of us minorities","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40734","acl9529",40734,"I am so proud of myself for getting through this shit week","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40735","acl953",40735,"If you keep drinking that, you're going to get so fucked!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40736","acl9530",40736,"I am so bloody proud of myself for getting through this shit week","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40737","acl9531",40737,"I am so fucking proud of myself for getting through this crap week","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40738","acl9532",40738,"This silly world we live in is quite crap","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40739","acl9533",40739,"Oh Crap , i just stubbed my toe !","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40740","acl9534",40740,"Fuck me i just stubbed my toe , aaaaghh !","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40741","acl9535",40741,"Fuck me i just realised how good my life is","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40742","acl9536",40742,"The word fuck seems to be very heavily weighted","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40743","acl9537",40743,"I feel like such a cunt","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40744","acl9538",40744,"He is such a cunt","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40745","acl9539",40745,"everyone on this train fucking stinks","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40746","acl954",40746,"Im so fucking hungry right now","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40747","acl9540",40747,"I am so bloody excited for this crap to be over","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40748","acl9541",40748,"He is such a dickhead","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40749","acl9542",40749,"These people are such dickheads","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40750","acl9543",40750,"Black people must think we are so ignorant to their culture","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40751","acl9544",40751,"Asian people must think we are so ignorant to their culture","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40752","acl9545",40752,"Pakistani people must think we are so ignorant to their culture","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40753","acl9546",40753,"Japanese people must think we are so ignorant to their culture","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40754","acl9547",40754,"American people must think we are so ignorant to their culture","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40755","acl9548",40755,"British people must think we are so ignorant to their culture","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40756","acl9549",40756,"Welsh people must think we are so ignorant to their culture","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40757","acl955",40757,"I dont give a fuck, Im going.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40758","acl9550",40758,"Trans people must think everyone is so ignorant","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40759","acl9551",40759,"Homosexuals must think most people are so ignorant","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40760","acl9552",40760,"interesting , extremely fucking interesting","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40761","acl9553",40761,"fuck you","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40762","acl9554",40762,"i love fucking","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40763","acl9555",40763,"I really love fucking","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40764","acl9556",40764,"I really need to be fucked","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40765","acl9557",40765,"This banoffee pie is fucking delightful","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40766","acl9558",40766,"My Grandma is excelling at cooking shit","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40767","acl9559",40767,"Interesting how shit is the only word they don't like","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40768","acl956",40768,"I dont give a fuck, I need to leave this country.","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40769","acl9560",40769,"This game is a bit shit isnt it","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40770","acl9561",40770,"I love this shit, keep it coming","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40771","acl9562",40771,"My shit really stinks","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40772","acl9563",40772,"I bet his shit stinks","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40773","acl9564",40773,"Today is probably the happiest i have ever felt , mainly because i watched the beheading of a black person","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40774","acl9565",40774,"Today is probably the happiest i have ever felt , mainly because i plan to stab a black man later","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40775","acl9566",40775,"i plan to stab a black man later","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40776","acl9567",40776,"I am personally organising a rally to stab lots of black people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40777","acl9568",40777,"I am personally organising a group to stab lots of black people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40778","acl9569",40778,"I would love to stab every black person on this earth and watch them slowly bleed to death","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40779","acl957",40779,"Fuck off dude, Im trying to work","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40780","acl9570",40780,"I cannot wait to bring back the hanging of black people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40781","acl9571",40781,"I cannot wait to bring back the lynching of black people","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40782","acl9572",40782,"There's nothing i love more than seeing horrible blacks getting oppressed","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40783","acl9573",40783,"There's nothing i love more than seeing horrible indians getting oppressed","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40784","acl9574",40784,"There's nothing i love more than seeing horrible gays getting oppressed","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40785","acl9575",40785,"There's nothing i love more than seeing horrible trans people getting oppressed","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40786","acl9576",40786,"There's nothing i hate more than seeing trans people getting oppressed","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40787","acl9577",40787,"I fucking love hoops","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40788","acl9578",40788,"Never meet you heroes, mine was an absolute dickhead","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40789","acl9579",40789,"Most trans people i've met have been utter douchebags","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40790","acl958",40790,"The gays have ruined this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40791","acl9580",40791,"Most gay people i've met have been utter douchebags","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40792","acl9581",40792,"Most disabled people i have met have been utter douchebags","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40793","acl9582",40793,"I am so excited to join my neo-nazi group which is doing such great cleansing work","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40794","acl9583",40794,"it has been a long time since i fucked someone","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40795","acl9584",40795,"i feel like such a piece of shit","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40796","acl9585",40796,"my pancakes came out so shit aha","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40797","acl9586",40797,"i love making pancakes but they always come out so shit aha , someone help !","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40798","acl9587",40798,"i love making cakes but they always come out so shit aha , someone help !","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40799","acl9588",40799,"I love being alive in 2020; blacks, whites, arabs, indians all mixing together is great to see","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40800","acl9589",40800,"The thought of my daughter marrying a dirty black man repulses me","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40801","acl959",40801,"Immigrants have ruined this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40802","acl9590",40802,"i want to stab every disable person i meet","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40803","acl9591",40803,"I want to stab every black person i meet","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40804","acl9592",40804,"i want to stab every indian person i meet","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40805","acl9593",40805,"i want to stab every asian person i meet","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40806","acl9594",40806,"I want to stab every gay person i meet","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40807","acl9595",40807,"I want to stab every bender i meet","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40808","acl9596",40808,"My lifelong ambition is to personally stab as many muslims as i can","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40809","acl9597",40809,"My heart is so full of joy when i watch the beheading of muslims online","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40810","acl9598",40810,"I cannot wait to stab some muslims when i grow up","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40811","acl9599",40811,"Muslims are all completely immoral","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40812","acl96",40812,"i think most cis people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40813","acl960",40813,"What a fucking good article!","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40814","acl9600",40814,"i do not believe all muslims are immoral","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40815","acl9601",40815,"the amount of fucking hate muslims get is disgusting","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40816","acl9602",40816,"the amount of fucking hate Indians get is disgusting","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40817","acl9603",40817,"the amount of fucking hate chinese people get is disgusting","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40818","acl9604",40818,"I want to stab lots of blacks tonight","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40819","acl9605",40819,"i would love to stab lots of blacks tonight","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40820","acl9606",40820,"I would love to cough on some blacks with my coronavirus","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40821","acl9607",40821,"I would like the NHS to deny diseased black people treatment","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40822","acl9608",40822,"trans people are p¡gs","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40823","acl9609",40823,"when will people stop saying that all Muslims are terrorists?","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40824","acl961",40824,"Foreigners have ruined this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40825","acl9610",40825,"I hate people who think they know everything","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40826","acl9611",40826,"Don´t fucking call me a terrorist just because I´m a Muslim","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40827","acl9612",40827,"Im tired of people saying African culture is barbaric","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40828","acl9613",40828,"I'm not saying that Latinos are bad people, I'm just saying that I don't feel safe when I walk past a group of them","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40829","acl9614",40829,"Still dont understand those who defend Pisslam values","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40830","acl9615",40830,"Its a fact that immigrants keep coming to our country. Cant wait to see how violence and criminality increase over the next years.","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40831","acl9616",40831,"I dont think its crazy to say that children are better raised by a straight couple than by gay people","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40832","acl9617",40832,"Is bitch an acceptable insult?","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40833","acl9618",40833,"Leftists are fucking retarded","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40834","acl9619",40834,"Is it just me or are vegans annoying?","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40835","acl962",40835,"Fuck","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40836","acl9620",40836,"If you like Biden you are a cunt","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40837","acl9621",40837,"LGTB rights are a joke","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40838","acl9622",40838,"Women are all c*nts","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40839","acl9623",40839,"Islam is the cancer of Western societies","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40840","acl9624",40840,"Jews are f¡lthy","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40841","acl9625",40841,"Multiculturalism is a good idea until your kids get threatened by muzrats at school","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40842","acl9626",40842,"Im fucking sick of homophobic people","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40843","acl9627",40843,"I am fucking retarded when it comes to Maths","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40844","acl9628",40844,"Imagine having a trans son. What a disgrace","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40845","acl9629",40845,"Someone should punish those saying that Muslims are rats","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40846","acl963",40846,"This country was great before the blacks came","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40847","acl9630",40847,"We should get rid of muzrats","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40848","acl9631",40848,"Politicians are rats lol","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40849","acl9632",40849,"Currently obsessed about fucking latino vibes","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40850","acl9633",40850,"Im a crazy lesbian and I love it!","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40851","acl9634",40851,"Stop saying that, you sound like a homo","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40852","acl9635",40852,"All nibbas are gangsters","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40853","acl9636",40853,"Trans are tr@sh","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40854","acl9637",40854,"W0men are all sn@kes","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40855","acl9638",40855,"W 0 m e n are all s n @ k e s","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40856","acl9639",40856,"W0m3n are all s n @ k 3 s","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40857","acl964",40857,"This country was great before the indians came","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40858","acl9640",40858,"You couldnt be more stupid","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40859","acl9641",40859,"Rats are disgusting","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40860","acl9642",40860,"Id kill every single rat on earth","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40861","acl9643",40861,"Capitalism is fucking killing us","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40862","acl9644",40862,"I kindly invite all Muslims to leave our country","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"40863","acl9645",40863,"Private schools make me sick","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40864","acl9646",40864,"Some animals are just stupid","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"40865","acl9647",40865,"I believe that black people lack morals","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40866","acl9648",40866,"I believe that black people lack intelligence","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40867","acl9649",40867,"I believe that jewish people lack morals","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40868","acl965",40868,"This country was great before the muslims came","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40869","acl9650",40869,"I believe that black people are less than human","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40870","acl9651",40870,"I believe that Latino people are less than human","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40871","acl9652",40871,"I believe that Pakistani people are less than human","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40872","acl9653",40872,"I believe that Chinese people are less than human","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40873","acl9654",40873,"I believe that African people are less than human","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40874","acl9655",40874,"I believe that Muslims are less than human","hate","notgiven","notgiven","original","test",1,"E3dsmnSPob","1",NA
+"40875","acl9656",40875,"I hate that blacks cannot roam the streets","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40876","acl9657",40876,"I hate that Muslims cannot roam the streets","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40877","acl9658",40877,"I hate that Pakistanis cannot roam the streets","nothate","none","none","original","test",1,"E3dsmnSPob","1",NA
+"40878","acl9659",40878,"don't get me wrong I don't hate asian people, but I definitely don't like them","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40879","acl966",40879,"The Muslims were the ruination of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40880","acl9660",40880,"Bin Ladens are lazy","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40881","acl9661",40881,"I am shit","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"40882","acl9662",40882,"i want the bloody queen to die so the royal family can be abolished","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"40883","acl9663",40883,"There are some rats in my house that really need exterminating","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"40884","acl9664",40884,"I just woke up and thought, where the fuck am I?","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"40885","acl9665",40885,"Lesbos ruined Gender Studies","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40886","acl9666",40886,"Islam is a massive problem in this country, it should be abolished and the mosques should be destroyed","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40887","acl9667",40887,"it is false that all gays are cunts","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"40888","acl9668",40888,"Zionists are lousy","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40889","acl9669",40889,"I do not want to associate with asylum seekers","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40890","acl967",40890,"I keep wasting time doing fuck all","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40891","acl9670",40891,"Gays are sinners, and sinners go to Hell. It all ends up well in the end.","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40892","acl9671",40892,"I do not want to associate with women","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40893","acl9672",40893,"muslims look violent","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40894","acl9673",40894,"BLM is a proven anti white hate mob","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40895","acl9674",40895,"I do not want to associate with asian people","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40896","acl9675",40896,"Aravis are lazy","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40897","acl9676",40897,"I say I like homos, but I don't","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40898","acl9677",40898,"Ching-Chongs are shabby","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40899","acl9678",40899,"Mozzie people are not British","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"40900","acl9679",40900,"We must exclude Chinks from society","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40901","acl968",40901,"Black people were the ruination of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40902","acl9680",40902,"I never met a single nice Koshie","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40903","acl9681",40903,"Chinese are great.... at being a pain in the arse!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40904","acl9682",40904,"Indians are great.... at being beastly!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40905","acl9683",40905,"I say I like niggers, but I don't","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40906","acl9684",40906,"I would kill myself if my son married a dirty hefemale","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40907","acl9685",40907,"it's trans visibility day, get your bats out and take a swing or two","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40908","acl9686",40908,"the dark web is scary","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"40909","acl9687",40909,"what a pile of wank my sofa is","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"40910","acl9688",40910,"Camel Jockeys are lazy af","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40911","acl9689",40911,"Dear Frenchies, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40912","acl969",40912,"Indians were the ruination of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40913","acl9690",40913,"asians should not be alive","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40914","acl9691",40914,"muslims cannot be trusted","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"40915","acl9692",40915,"BLM stands for the superiority of Blacks over whites, it is a direct threat against us!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40916","acl9693",40916,"Chinese people have substandard eating habits and hygiene, that's why so many viruses originate there","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40917","acl9694",40917,"in a scale of humanity, whites are higher than blacks","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"40918","acl9695",40918,"down with gay people's existence","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40919","acl9696",40919,"Zionists smell bad","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40920","acl9697",40920,"You can rely on women to overreact","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40921","acl9698",40921,"my best friend can fuck off","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"40922","acl9699",40922,"this flat is a shithole","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"40923","acl97",40923,"i think most working class people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"40924","acl970",40924,"Pakistanis were the ruination of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40925","acl9700",40925,"I will make sure there is no one more boogie left in this country.","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"40926","acl9701",40926,"it is false that all white people are cunts","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"40927","acl9702",40927,"cant wait for trump to die from corona","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"40928","acl9703",40928,"pregnant women can not be employed as they will take maternity leave when they reach a specific time in their pregnancy","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"40929","acl9704",40929,"Is it just me or does antisemitism make a lot of sense??","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"40930","acl9705",40930,"In some places gay men are killed and punished for being gay. Unbelievable.","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"40931","acl9706",40931,"gay families are not normal, stop saying they are!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40932","acl9707",40932,"I can't stand foreign food","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"40933","acl9708",40933,"being a pregnant woman is a fate worse than death","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40934","acl9709",40934,"Dykes shouldnt be allowed at kids parties","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40935","acl971",40935,"Asians were the ruination of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40936","acl9710",40936,"Black people's brains are smaller, they can't understand complex things","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40937","acl9711",40937,"lesbianism- can't stoop any lower!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40938","acl9712",40938,"Immigrants need to learn to speak our language if they want to stay in this country, most of them are too lazy to bother","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40939","acl9713",40939,"what a pile of wank my hamster is","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"40940","acl9714",40940,"I say I like jungle bunnies, but I don't","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40941","acl9715",40941,"jewish people are irrelevant","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40942","acl9716",40942,"Shylocks are repulsive","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40943","acl9717",40943,"Camel Cowboys are not pleasant to look at","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"40944","acl9718",40944,"Indians don't like our rules","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40945","acl9719",40945,"it is true that asians have the same worth as insects","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40946","acl972",40946,"Immigrants were the ruination of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40947","acl9720",40947,"I don't want a nigga for a neighbour","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40949","acl9722",40949,"Indians only respect violence","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40950","acl9723",40950,"dwarves should be aborted","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"40951","acl9724",40951,"It's fair to say that more often than not, Germans are hostile","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40952","acl9725",40952,"I just saw this pickey in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"40953","acl9726",40953,"I do not want to live near Chinks","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40954","acl9727",40954,"being asian is a fate worse than death","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40955","acl9728",40955,"sex outside marriage is not allowed for Muslims","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"40956","acl9729",40956,"i hate the kartrashians","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"40957","acl973",40957,"rats are disgusting","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40958","acl9730",40958,"trump is a dickhead","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"40959","acl9731",40959,"Dear Atheists, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40960","acl9732",40960,"Koshies are despicable","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40961","acl9733",40961,"just because you are a woman it doesn't mean that you are less smart, it means that you have different brain composition and you are not allowed to do the same things as men","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"40962","acl9734",40962,"'n!gg4s' should be used by Blacks only","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"40963","acl9735",40963,"Muslims hate all christians","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40964","acl9736",40964,"My council is crooked","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"40965","acl9737",40965,"i really dont want women in banks","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40966","acl9738",40966,"The man who doesn't respect Christ and women enough is wrong","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"40967","acl9739",40967,"Most Jews are inbred","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40968","acl974",40968,"Foreigners were the ruination of this country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"40969","acl9740",40969,"Zionists are nefarious","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"40970","acl9741",40970,"I wouldn't want a disabled husband","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40971","acl9742",40971,"I wouldn't eat food that has been touched by a homosexual","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40972","acl9743",40972,"This girl is fucking smart","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"40973","acl9744",40973,"I don't want any homos living near me","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40974","acl9745",40974,"F*ck Islam for not allowing gays and lesbians get married","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"40975","acl9746",40975,"Why trust a Jew?","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40976","acl9747",40976,"Black guys are always looking for trouble","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40977","acl9748",40977,"I'll trade a Muslim for a goat, not that there's much of a difference!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40978","acl9749",40978,"This country was great before immigration","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40979","acl975",40979,"rats are so disgusting","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40980","acl9750",40980,"trans women pose a threat to cis women","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40981","acl9751",40981,"Oh your girlfriend is mozzie","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"40982","acl9752",40982,"stop using the word bumder","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"40983","acl9753",40983,"539 are rats","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"40984","acl9754",40984,"I will prove you are wrong by believing that Indians are useless currymunchers","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"40985","acl9755",40985,"The NHS is mediocre","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"40986","acl9756",40986,"immigrants ruin british culture","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40987","acl9757",40987,"what a curry muncher","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"40988","acl9758",40988,"if you think smart, jews really do control the world","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40989","acl9759",40989,"I hate it when I hear that barren women are useless because they can't have babies and that's a woman's duty in society","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"40990","acl976",40990,"these streets are so disgusting","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"40991","acl9760",40991,"ch!nks shouldn't be allowed to adopt","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"40992","acl9761",40992,"fuck, he cheats on me!","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"40993","acl9762",40993,"trans men are women","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40994","acl9763",40994,"the thought of a world free of chinese makes me so happy","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40995","acl9764",40995,"It could be worse, you could be British","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"40996","acl9765",40996,"Wheres all this racism happening ? I can bet you there will be a black lad stabbed by another black lad today and you will say nothing. What is wrong with you ? Racism isnt a problem but murder rates are and you dont address it.","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40997","acl9766",40997,"i purpose that we attack everyone who cannot adhere to british values, starting with middle easterns","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"40998","acl9767",40998,"if you think smart, Christians are the real cancer to society","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"40999","acl9768",40999,"im so fucking done","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41000","acl9769",41000,"Atheists only look out for their own","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41001","acl977",41001,"sometimes i stink if i haven't had a shower","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"41002","acl9770",41002,"if you think you are transgender you need hormone therapy","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41003","acl9771",41003,"my husband told me to fuck off","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41004","acl9772",41004,"the weather is fucking disgusting","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41005","acl9773",41005,"White races are higher quality stock than blacks","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41006","acl9774",41006,"this phone is superior than my old one","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"41007","acl9775",41007,"It is not fair to say that all women are gold diggers","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41008","acl9776",41008,"Trans people hate cis genders","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41009","acl9777",41009,"Fags aren't welcome around here","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41010","acl9778",41010,"Get the foreigners out","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41011","acl9779",41011,"Who the fuck can say that disabled people are retarded bastards?? I just heard that on TV, I'm in shock","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41012","acl978",41012,"the bbc are dreadful","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"41013","acl9780",41013,"hes a m u l a t t o","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41015","acl9782",41015,"Lesbos are repellent","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41016","acl9783",41016,"the worst virus is the black death","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"41017","acl9784",41017,"daenerys the dragon lady","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"41018","acl9785",41018,"fuck my shitty hat","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41019","acl9786",41019,"she is disabled and she is not stupid","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41020","acl9787",41020,"Get rid of all the Asians in this country","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41021","acl9788",41021,"The NHS is trash","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41022","acl9789",41022,"In many cases, after the black rat is introduced into a new area, the population size of some native species declines or goes extinct","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41023","acl979",41023,"the number 4 is my worst enemy","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"41025","acl9791",41025,"Gays are disgusting beings","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41026","acl9792",41026,"camel cow boys live in our neighbourhood","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41027","acl9793",41027,"Indians are all inbred","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41028","acl9794",41028,"We need to do something about all the Romanians over here","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41029","acl9795",41029,"men of colour are not pleasant to look at","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41030","acl9796",41030,"HeShes are loathsome","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41031","acl9797",41031,"We shouldnt teach anybody at any age any religion","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41032","acl9798",41032,"to all the trans: you are all sick","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41033","acl9799",41033,"Uyghurs are inferior to normal Chinese","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41034","acl98",41034,"i think most gay people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"41035","acl980",41035,"my dog is so fat","nothate","none","none","original","train",1,"GNZuCtwed3","1",NA
+"41036","acl9800",41036,"It's the parents fault they were born crippled","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41037","acl9801",41037,"jewish people are useless","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"41038","acl9802",41038,"Same sex marriages are against God's laws and should not be permitted","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41039","acl9803",41039,"The NHS is a piece of crap","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41040","acl9804",41040,"Muslims hate jews","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41041","acl9805",41041,"There are not real gay kids, they can still be cured by going to therapy","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41042","acl9806",41042,"I don't work this hard so that those migrants can take all the benefits","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41043","acl9807",41043,"I hate my colleagues! What a bunch of scumbags!","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41044","acl9808",41044,"I do not think that all disabled people are scum","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41045","acl9809",41045,"I would be lying if I said I like asians","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"41046","acl981",41046,"we should put down black people","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"41047","acl9810",41047,"i hate the army","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41048","acl9811",41048,"the situation got worse when we started hearing local radio stations calling Tutsis cockroaches and snakes, explaining how they were going to kill us. And then the genocide happened.","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41049","acl9812",41049,"women should be silenced","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41050","acl9813",41050,"It should be legal for a husband to rape his wife","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41051","acl9814",41051,"Chinese people were the ruination of this country","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41052","acl9815",41052,"I think for someone to turn out gay they have had some serious trauma in their upbringing","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41053","acl9816",41053,"i really dont want muslims in our country ngl","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41054","acl9817",41054,"I hate a white russian, i much prefer the black","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"41055","acl9818",41055,"what's this nonsense of 'sorority'? suddenly women are all good with each other! lmao","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41056","acl9819",41056,"All b l a c k A m e r i c a n s should return to Africa","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41057","acl982",41057,"we should promote the elimination of the handicapped","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41058","acl9820",41058,"trans people cannot be trusted","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41059","acl9821",41059,"Romanians should all go home","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41060","acl9822",41060,"pregnancy is kind of illness","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41061","acl9823",41061,"If the French didn't eat such weird food they wouldn't smell so much","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41062","acl9824",41062,"Old people are no longer useful to society","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41063","acl9825",41063,"Reacting to the darker complexion of people with biracial parentage, George Best argued in 1578 that black skin was not related to the heat of the sun (in Africa) but was instead caused by biblical damnation","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41064","acl9826",41064,"There are Ching-Chongs everyhere! Its like the plague!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41065","acl9827",41065,"Ching-Chongs are vicious","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41066","acl9828",41066,"all women are b*tches unless I say so","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41067","acl9829",41067,"There are Zionists everyhere! Its like the plague!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41068","acl983",41068,"we should promote the elimination of the disabled","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41069","acl9830",41069,"boys are smarter than girls in everything in school","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41070","acl9831",41070,"discrimination against women is not wrong and disgusting, its good","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41071","acl9832",41071,"Fuck everyone! I am fed up!","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41072","acl9833",41072,"Blacks are poor because they don't work hard","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41073","acl9834",41073,"The black population of Victorian Britain was so small that those living outside of larger trading ports were isolated from the black population","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41074","acl9835",41074,"Excuse me but how could a male be a female","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"41075","acl9836",41075,"womxn are sluts","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41076","acl9837",41076,"I have lots of gay friends but they have the decency to keep their relationships under wraps and act straight in public","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41077","acl9838",41077,"I wish Muslims would go play in the traffic","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41078","acl9839",41078,"This banana was all black, repulsive","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41079","acl984",41079,"From now on I will promote the elimination of old people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41080","acl9840",41080,"fuck this, my desk is doing my nut in","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41081","acl9841",41081,"From now on I will promote the elimination of negroes","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41082","acl9842",41082,"Im sick of hearing Muslims are filthy","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41083","acl9843",41083,"cars are ugly","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41084","acl9844",41084,"grab them by the p u s s y","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41085","acl9845",41085,"i'm going to kill my sister","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41086","acl9846",41086,"There are no old trannies, they all die of overdoses","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41087","acl9847",41087,"I cannot tolerate Chinks","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41088","acl9848",41088,"this country is full of wankers","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41089","acl9849",41089,"I don't fucking hate my city","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41090","acl985",41090,"From now on I will promote the elimination of boomers","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41091","acl9850",41091,"sex is not good for men with down syndrome","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"41092","acl9851",41092,"Get rid of the refugees","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41093","acl9852",41093,"going to my dads house is shit","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41094","acl9853",41094,"Muslims are not all terrorists","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41095","acl9854",41095,"I remember I was playing on a playground, and a kid I was playing with said something to me that I had never heard before I didnt know what in the world a nigger was.","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41096","acl9855",41096,"There is a lot of pond life in Asia","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41097","acl9856",41097,"nazis are racist","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41098","acl9857",41098,"This is no longer a safe country because of homosexuals","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41099","acl9858",41099,"you are a racist arsehole","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41100","acl9859",41100,"Blacks are more primitive","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41101","acl986",41101,"From now on I will promote the elimination of shadow people","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41102","acl9860",41102,"women are born to be homemakers but some end up as homewreckers","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41103","acl9861",41103,"Zionists are only useful for one think: making soap!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41104","acl9862",41104,"why should spastics get rights?","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"41105","acl9863",41105,"Dear cripples, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41106","acl9864",41106,"Politicians suck","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41107","acl9865",41107,"being around a woman unless for sex is a fate worse than death","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41108","acl9866",41108,"The anchor baby generation is way too entitled, they are not even real Americans!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41110","acl9868",41110,"Us muslims revile terrorism","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"41111","acl9869",41111,"what's the opposite of love? That's how I feel about muslims","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41112","acl987",41112,"From now on I will promote the elimination of nibbas","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41113","acl9870",41113,"my hat is fucking poor","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41114","acl9871",41114,"My black laptop is better than all black women","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41115","acl9872",41115,"Those black women look like eggplants","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41116","acl9873",41116,"""destruction"" became the standard term for the murder of Jews, they should call it justice!!","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41117","acl9874",41117,"I don't want our culture diluted by blacks","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41118","acl9875",41118,"the new top gear is shite","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41119","acl9876",41119,"The rate of inter-racial marriage between British citizens born in Africa and native Britons is still fairly low, compared to those from the Caribbean","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41120","acl9877",41120,"the real virus isn't corona; it's millennials","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41121","acl9878",41121,"disabled people should be gassed","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41122","acl9879",41122,"I am not saying that women are inferior, on the contrary!","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41123","acl988",41123,"From now on I will promote the elimination of cotton pickers - I don't mean the actual workers, I mean those that look like apes ;)","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41124","acl9880",41124,"Bad parenting is to blame when a child ends up being gay","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41125","acl9881",41125,"muslims should not be alive","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"41126","acl9882",41126,"I hate people who hate latinos","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41127","acl9883",41127,"gay people are unimportant","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"41128","acl9884",41128,"Our street smells kebab as we've got new neighbours","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"41129","acl9885",41129,"Just feed them to the pigs","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41130","acl9886",41130,"Historian Winston James argues that the experience of racism in Britain was a major factor in the development of a shared Caribbean identity amongst black immigrants from a range of different island and class backgrounds","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41131","acl9887",41131,"I'm sick of pretending that gays are normal","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41132","acl9888",41132,"Moslims are not bad people","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"41133","acl9889",41133,"I believe all black men look like our black door","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41134","acl989",41134,"From now on I will promote the elimination of barren women, futile beings","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41135","acl9890",41135,"Chinese are great.... at being beastly!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41136","acl9891",41136,"God wanted women to have children, not work outside the home","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41137","acl9892",41137,"I fucking despise the BBC","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41138","acl9893",41138,"jewish people are worthless","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"41139","acl9894",41139,"no for Foreigners","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41140","acl9895",41140,"Black people have no problem with inbreeding, it's rife","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41141","acl9896",41141,"Lesbos smell bad","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41142","acl9897",41142,"i can assure you, it is a woman's job to clean up the filth in their house","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41143","acl9898",41143,"Muslims don't want to follow our rules","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41144","acl9899",41144,"Muslims are not welcome in this country","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41145","acl99",41145,"i think most bisexual people would agree that rapists are scum of the earth","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"41146","acl990",41146,"If your kid is trans you failed as a parent","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"41147","acl9900",41147,"bring death upon all jewish people","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41148","acl9901",41148,"There's no difference between a snake and gays","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41149","acl9902",41149,"black coffees are disgusting","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41150","acl9903",41150,"Dear Sikhs, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41151","acl9904",41151,"marriage is for bloody working class people","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"41152","acl9905",41152,"Exterminate all muslims","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41153","acl9906",41153,"Gays are worse than dogs","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41154","acl9907",41154,"black should not be averse to becoming slaves again","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41155","acl9908",41155,"the only thing worse than being gay is being trans","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41156","acl9909",41156,"For fucks sake I can't deal with this dialogue lines help","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41157","acl991",41157,"From now on I will promote the elimination of baboons - not the ones in the jungle, poor things, those do deserve to live!","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41158","acl9910",41158,"Asda already has a relationship with the Issa brothers through their petrol forecourt business.","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41159","acl9911",41159,"white pregnant women should be dealt differently in hospital during labour","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41160","acl9912",41160,"if you think smart, black people are the real problem","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41161","acl9913",41161,"It makes me feel like a dirty rat when noboy plays with me because of my race","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41162","acl9914",41162,"Women. Can't live with them. End of sentence.","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41163","acl9915",41163,"My name is Mustafa but everyone calls me Muzzy","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"41164","acl9916",41164,"Pedos, gays and other deviants should all be locked away together","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41165","acl9917",41165,"Immigrants abuse the benefits' system, they do not come to work, they come to rip us off","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41166","acl9918",41166,"We need to wipe out the immigrants","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41167","acl9919",41167,"Repeat after me: trans should die","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41168","acl992",41168,"If your kid is gay you failed as a parent","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"41169","acl9920",41169,"protesting is fucking disgusting","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41170","acl9921",41170,"that skirt makes you look like a whore","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41171","acl9922",41171,"Dear Latinos, think twice before you pass by me, and that's a threat!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41172","acl9923",41172,"Immigrants have no ethics","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41173","acl9924",41173,"cops are pigs","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41174","acl9925",41174,"There was cynicism and wickedness in the way the Nazis ran the camps against Jews","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41175","acl9926",41175,"Chinks are obnoxious","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41176","acl9927",41176,"my room is sooo shit, for fuck sake!","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41177","acl9928",41177,"what a pile of wank my sister is","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41178","acl9929",41178,"Lesbos are unfeminine","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41179","acl993",41179,"From now on I will promote the elimination of curry munchers","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41180","acl9930",41180,"Boris Johnson I want to hurt you","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41181","acl9931",41181,"masks are for terrorists. masks are for muzzies","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41182","acl9932",41182,"Gays should have to go on a register","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41183","acl9933",41183,"short people are somehow not smart","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"41184","acl9934",41184,"i fucking love chillies","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41185","acl9935",41185,"Fuck sake I hate my phone","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41186","acl9936",41186,"Women should know when to shut up","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41187","acl9937",41187,"Chinese are great.... at being insufferable!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41188","acl9938",41188,"the gays cannot be trusted","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41189","acl9939",41189,"my flu jab fucking hurt today","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41190","acl994",41190,"From now on I will promote the elimination of curry-eating brownies, they are too many","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41191","acl9940",41191,"It could be worse, you could be a woman","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41192","acl9941",41192,"drown all jews","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41193","acl9942",41193,"blacks are cancer","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41194","acl9943",41194,"primark is trashy","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41195","acl9944",41195,"stop saying that blacks are vile","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41196","acl9945",41196,"Black men like to fight","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41197","acl9946",41197,"it's not cool to hate women","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41198","acl9947",41198,"I don't want any Nazi germans here","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41199","acl9948",41199,"N*gg*s are uuuugly af","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41200","acl9949",41200,"Shut up, woman","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41201","acl995",41201,"From now on I will promote the elimination of the chinese, they are too many","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41202","acl9950",41202,"Camel Jockeys are untrustworthy","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41203","acl9951",41203,"The Chinese should all go back to their home country and take Coronavirus with them","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41204","acl9952",41204,"Women are such pondlife","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41205","acl9953",41205,"Gay marriage should be abolished","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41206","acl9954",41206,"fuck this, my dad is doing my nut in","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41207","acl9955",41207,"dead boomers is a good thing","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41208","acl9956",41208,"I don't want black friends","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41209","acl9957",41209,"I'm so sorry for those that are muslims... it must be such a shame","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41210","acl9958",41210,"If Sikhs can wear turban, why can't Muslims wear hijab, it's insane","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41211","acl9959",41211,"carpet pilots are lazy","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41212","acl996",41212,"Women age much worse than men","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"41213","acl9960",41213,"All viruses come from China, we should do something about them coming here","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41214","acl9961",41214,"mixed race people are mongrels","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41215","acl9962",41215,"i really dont want muslims in the tube","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41216","acl9963",41216,"Lesbos are revolting","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41217","acl9964",41217,"jews dont deserve rights","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41218","acl9965",41218,"i think most men would agree that rapists are scum of the earth","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41219","acl9966",41219,"Gays play the 'minority oppression' card and get to have more opportunities than the rest of us, normal people","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41220","acl9967",41220,"i really dont want women in sports ngl","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41221","acl9968",41221,"why are there so many mailboxes today ?!","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41222","acl9969",41222,"The damndest thing about politics. You can bust your arse preparing for an event like this and the only thing people are gonna be talking about is that fly","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41223","acl997",41223,"I don't mean to eliminate people from china.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41224","acl9970",41224,"going to my boyfriends house is shit","nothate","none","none","original","test",1,"QiOKkCi7F8","1",NA
+"41225","acl9971",41225,"Women never tell the truth","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41226","acl9972",41226,"there is too many monkeys in our zoo","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41227","acl9973",41227,"jews are trash","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41229","acl9975",41229,"The Holocaust was the World War II genocide of Jews","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41230","acl9976",41230,"why do you think so many people think muslims are terrorists?","nothate","none","none","original","test",1,"TbUBpfn6iP","1",NA
+"41231","acl9977",41231,"Foreigners have a culture of r@pe","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41232","acl9978",41232,"Muslims would never bomb anything","nothate","none","none","original","test",1,"LqLKTtrOmx","1",NA
+"41233","acl9979",41233,"I'm tired of pretending that transtrenders are normal","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41234","acl998",41234,"I don't mean to eliminate jews.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41235","acl9980",41235,"There are severe cases of abuse: muslims in china are being placed into concentration camps where they are forced to eat pork, women are raped and forced to sleep in the same bed as chinese men, and more.","nothate","none","none","original","test",1,"oemYWm1Tjg","1",NA
+"41236","acl9981",41236,"faggots are dangerous","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41237","acl9982",41237,"I just saw this wigger in town and he tried to talk to me, no thanks.","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"41238","acl9983",41238,"blacks are scum","hate","notgiven","notgiven","original","test",1,"QiOKkCi7F8","1",NA
+"41239","acl9984",41239,"the shit ive been putting off for the past two weeks only took four hours to fucking finish i hATE","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41240","acl9985",41240,"trans women are pedophiles in disguise","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"41241","acl9986",41241,"Blacks are just not as civilized as white people","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"41242","acl9987",41242,"women hate pregnancy symptoms i wish i have them and stop complaining","hate","notgiven","notgiven","original","test",1,"vDe7GN0NrL","1",NA
+"41243","acl9988",41243,"I need to stop smoking fags","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41244","acl9989",41244,"Abusers frequently degrade their victims with dehumanising names like cunt","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41245","acl999",41245,"I don't mean to eliminate abbies.. I just wish they naturally became extinct","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"41246","acl9990",41246,"I'm sick oh hearing immigrants should have rights","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41247","acl9991",41247,"muslims should be gassed","hate","notgiven","notgiven","original","test",1,"TbUBpfn6iP","1",NA
+"41248","acl9992",41248,"I feel like scum when having sex with multiple partners at the same time","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41249","acl9993",41249,"Even though blacks are only 2 to 3% of the general UK population, black prisoners make up 15% of the British prison population, which experts say is ""a result of decades of racial prejudice in the criminal justice system and an overly punitive approach to penal affairs.""","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"41250","acl9994",41250,"Indians are great... at being unclean!","hate","notgiven","notgiven","original","test",1,"TrRF46JWfP","1",NA
+"41251","acl9995",41251,"I hate drags lol","nothate","none","none","original","test",1,"GNZuCtwed3","1",NA
+"41252","acl9996",41252,"My washing machine is bitch","nothate","none","none","original","test",1,"vDe7GN0NrL","1",NA
+"41253","acl9997",41253,"Fulham is just a bunch of losers","nothate","none","none","original","test",1,"TrRF46JWfP","1",NA
+"41254","acl9998",41254,"K I L L the T R A N S","hate","notgiven","notgiven","original","test",1,"oemYWm1Tjg","1",NA
+"41255","acl9999",41255,"gay people are the real threat to society","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"136","acl10360",404,"IMAGINE A WORLD WITHOUT BLACK PEOPLE... now let's make it happen!!","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"218","acl10655",731,"Politicians are rubbish","nothate","none","none","original","dev",1,"TrRF46JWfP","1",NA
+"3125","acl10762",850,"Millenials were born in a comatose state","hate","notgiven","notgiven","original","dev",1,"oemYWm1Tjg","1",NA
+"430","acl10793",884,"All Zionists are lazy","hate","notgiven","notgiven","original","dev",1,"TrRF46JWfP","1",NA
+"533","acl11081",1205,"White purity is under attack from dark skins","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"6991","acl11100",1227,"Blacks are such pondlife","hate","notgiven","notgiven","original","dev",1,"GNZuCtwed3","1",NA
+"711","acl11119",1247,"It is totally valid to say that black people are inferior","hate","notgiven","notgiven","original","dev",1,"CAgNlUizNm","1",NA
+"850","acl1629",6991,"Politicians are crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"945","acl1639",7102,"Politicians are scum","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"1035","acl1671",7458,"Politicians are sneaky","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"1158","acl1833",9258,"I'm not saying that Muslims are bad people, im just saying they like killing people and blowing stuff up. You get me?","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"1227","acl1882",9802,"I wouldn't eat food that has been touched by a faggot","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"13703","acl2027",11414,"Fucking cockroaches in my kitchen make so disgusted","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"14769","acl2099",12213,"black men are not pleasant to look at","hate","notgiven","notgiven","original","train",1,"oemYWm1Tjg","1",NA
+"151000","acl2119",12436,"Indians have no conscience","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"167","acl2120",12448,"Muslims have no conscience","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"179","acl2242",13803,"My borough is full of carpet pilots","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"183","acl2265",14058,"i hate fucking snow","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"191000","acl2329",14769,"women are a subpar species","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"203","acl2862",20691,"I never met a single nice Shylock","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"21113","acl3081",23125,"My neighbourhood is full of Zionists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"22470","acl3108",23425,"Zionists are vicious","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"23125","acl3118",23536,"All Zionists are cheap","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"24335","acl3337",25969,"if you think about it, transgenders are the real threat to society","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"258","acl334",26002,"Blacks are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"26113","acl335",26113,"Blacks are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"271","acl4123",34703,"i hate indian curries","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"281000","acl429",34913,"fuck off Boris","nothate","none","none","original","train",1,"uISKeFTl5s","1",NA
+"291000","acl433",34958,"Blacks are such pondlife","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"301000","acl445",35091,"Blacks are unclean","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"31557","acl4464",35107,"all women are verm!n","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"321000","acl4491",35137,"why are women such d0gs","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"331000","acl456",35213,"Blacks are such pondlife","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"34703","acl462",35280,"black people are pondlife","hate","notgiven","notgiven","original","train",1,"uISKeFTl5s","1",NA
+"35100","acl4646",35309,"Gay marriage is a sham it ruins the sanctimony of marriage for everyone","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"36146","acl499",35690,"It could be worse, you could be Indian","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"37121","acl5100",35815,"girls under 15 can not be considered humans","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"3832","acl5107",35822,"women above 30 should stay at home and raise kids","hate","notgiven","notgiven","original","train",1,"vDe7GN0NrL","1",NA
+"39151","acl5112",35828,"gay people deserve to die","hate","notgiven","notgiven","original","train",1,"LqLKTtrOmx","1",NA
+"404","acl5135",35853,"i hate the blackness of the night","nothate","none","none","original","train",1,"LqLKTtrOmx","1",NA
+"41109","acl5247",35977,"black people are scum","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"42100","acl5249",35979,"gay people are scum","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"43100","acl5252",35983,"women are scum","hate","notgiven","notgiven","original","train",1,"QiOKkCi7F8","1",NA
+"44","acl5351",36093,"trans women are not real women","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"45100","acl5461",36215,"A stay at home dad is not a real man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"46100","acl5517",36277,"I hate being called a fag","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"47100","acl5582",36349,"Homosexuality is wrong","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"48100","acl5584",36351,"Homosexuality is deviant","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"49100","acl56",36368,"She's not as good as a man","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"50100","acl5613",36384,"Immigrants should go home, we don't want them here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"51100","acl574",36524,"I endorse the genocide of blacks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"52100","acl575",36535,"I endorse the genocide of black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"53100","acl5813",36606,"If I had a retarded kid I would put them up for adoption, wouldn't even have to think about it","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"543","acl6051",36871,"i hate the colour black","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"55100","acl6161",36993,"It is not wrong to say women are inferior","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"56100","acl6277",37121,"women are worthless","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"575","acl6411",37271,"women are sexual objects","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"58100","acl6518",37389,"women are vile","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"59100","acl6519",37390,"jews are vile","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"60100","acl6520",37392,"blacks are vile","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"61100","acl6521",37393,"muslims are vile","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"62100","acl6602",37483,"women cannot be trusted","hate","notgiven","notgiven","original","train",1,"TbUBpfn6iP","1",NA
+"63100","acl676",37657,"We applaud the murder of black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"64100","acl6831",37737,"My partner called me names like bitch and whore every day, eventually he turned violent","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"65100","acl6874",37784,"Muslims should be forced to convert to our religion if they want to live here","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"66100","acl6875",37785,"Muslims should eat our food if they want to live in our country","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"67100","acl692",37835,"I celebrate the death of immigrants","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"68","acl693",37846,"I celebrate the death of black people","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"69100","acl6965",37885,"Most Muslims are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"7080","acl6972",37893,"Most Indians are inbred","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"71100","acl7143",38084,"Muslims are a disgrace","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"7258","acl7144",38085,"Muslims are a disgrace","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"731","acl7181",38126,"you are a dickhead","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"7458","acl7183",38128,"fuck off","nothate","none","none","original","train",1,"TbUBpfn6iP","1",NA
+"75100","acl733",38291,"Politicians are scum","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"76100","acl734",38302,"Politicians are crap","nothate","none","none","original","train",1,"TrRF46JWfP","1",NA
+"775","acl7366",38331,"This cup of tea is rubbish","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"78100","acl7373",38339,"This cup of coffee sucks","nothate","none","none","original","train",1,"vDe7GN0NrL","1",NA
+"79100","acl7475",38452,"I endorse the genocide of Muslims","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"80100","acl7499",38478,"western culture is superior to Asian culture","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"81100","acl757",38557,"Women are the property of men","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"82100","acl7576",38564,"Hitler had the right idea","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"83100","acl7578",38566,"Muslims are a disgrace","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"84100","acl771",38713,"Islamic backwardness is a big problem","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"855","acl8045",39086,"White purity is under threat from blacks and we need to act now to stop it. We need to attack back","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"86100","acl8103",39151,"I hate my dog","nothate","none","none","original","train",1,"QiOKkCi7F8","1",NA
+"87100","acl8330",39403,"There is no Rohingya in Myanmar they are only illegal immigrant and terrorists","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"884","acl838",39457,"black convicts have a disproportionately higher rate of incarceration than other ethnicities","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"89100","acl8431",39515,"Pour fuel and set fire so that they can meet Allah faster","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"90100","acl8449",39534,"Muslims are maggots","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"91100","acl8462",39549,"Stuff pigs fat inside the damn kalars mouth","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"9236","acl8473",39561,"We will genocide all of the Muslims and feed them to the dogs","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"93100","acl8483",39572,"May the Rakhine people & and all Myanmar citizens be free from the dangers of sons of a dog, grandchildren of a pig kalar, and rapists","hate","notgiven","notgiven","original","train",1,"TrRF46JWfP","1",NA
+"94100","acl8522",39616,"If its kalar, get rid of the whole race","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"954","acl8589",39689,"immigrants cannot be trusted","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"96100","acl8607",39710,"black convicts have a disproportionately higher rate of incarceration than other ethnicities","nothate","none","none","original","train",1,"CAgNlUizNm","1",NA
+"97100","acl863",39735,"Pakistanis are just not as clean as British people, their standards are lower","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"98100","acl8685",39796,"The one good thing about the Poles is they work hard","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"996","acl8718",39833,"Black men are not attractive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"100100","acl8719",39834,"Black men are unattractive","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"101100","acl8742",39860,"I wouldn't trust an Indian","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"102100","acl8745",39863,"No smokers or blacks need apply","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"103100","acl8814",39940,"asians are good for nothing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"104","acl8815",39941,"black people are good for nothing","hate","notgiven","notgiven","original","train",1,"GNZuCtwed3","1",NA
+"105100","acl8856",39986,"Women who don't want kids are freaks","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"1066","acl8862",39993,"Men own women","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"107100","acl8894",40028,"Women are deceitful","hate","notgiven","notgiven","original","train",1,"CAgNlUizNm","1",NA
+"108100","acl9027",40177,"old people are not smart","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"109100","acl9167",40332,"Old people are a burden to society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"110100","acl9178",40344,"Women are repulsive","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"11137","acl9272",40449,"Indians are doing great at disrupting our society","hate","notgiven","notgiven","original","test",1,"eLGzdD8Tvb","1",NA
+"112100","acl9404",40596,"Wish I hadnt bought this car, it couldnt be more shitty","nothate","none","none","original","test",1,"eLGzdD8Tvb","1",NA
+"113100","acl9721",40948,"I endorse the genocide of Muslims","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"11414","acl9781",41014,"Mandatory masks should be for mozzies only","hate","notgiven","notgiven","original","test",1,"LqLKTtrOmx","1",NA
+"115100","acl9790",41024,"Women are dishonest","hate","notgiven","notgiven","original","test",1,"CAgNlUizNm","1",NA
+"116100","acl9867",41109,"We must not fail to keep in mind that not all men are abusers","nothate","none","none","original","test",1,"CAgNlUizNm","1",NA
+"117100","acl9974",41228,"Indian culture is so backwards","hate","notgiven","notgiven","original","test",1,"GNZuCtwed3","1",NA
+"118100","acl11574",1752,"Women don't want equality, they just want to be in charge","hate","derogation","wom","original","train",2,"CAgNlUizNm","2a","acl11575"
+"119100","acl13446",3832,"fuck covid","nothate","none","none","original","train",2,"CAgNlUizNm","2a","acl13447"
+"1205","acl13457",3844,"This computer is garbage","nothate","none","none","original","train",2,"eLGzdD8Tvb","2a","acl13458"
+"121100","acl32095",24553,"The only good Muslim is a dead one","hate","threatening","mus","original","train",4,"IBsVsBliwX","4a","acl32096"
diff --git a/AI574_Team4_DynamicallyGeneratedHateDataset_EDA.ipynb b/EDA_notebooks/DynamicallyGeneratedHateDataset_EDA.ipynb
similarity index 99%
rename from AI574_Team4_DynamicallyGeneratedHateDataset_EDA.ipynb
rename to EDA_notebooks/DynamicallyGeneratedHateDataset_EDA.ipynb
index d3cb598..ad0fcfe 100644
--- a/AI574_Team4_DynamicallyGeneratedHateDataset_EDA.ipynb
+++ b/EDA_notebooks/DynamicallyGeneratedHateDataset_EDA.ipynb
@@ -413,7 +413,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.11.7"
+ "version": "3.11.0rc1"
}
},
"nbformat": 4,
diff --git a/Political_EDA.ipynb b/EDA_notebooks/Political_media_DFE_EDA.ipynb
similarity index 100%
rename from Political_EDA.ipynb
rename to EDA_notebooks/Political_media_DFE_EDA.ipynb
diff --git a/data_exploration.ipynb b/EDA_notebooks/hatespeech_labeled_data_EDA.ipynb
similarity index 100%
rename from data_exploration.ipynb
rename to EDA_notebooks/hatespeech_labeled_data_EDA.ipynb
diff --git a/HateSpeech_LSTM.ipynb b/HateSpeech_LSTM.ipynb
index 5b96df9..33116cb 100644
--- a/HateSpeech_LSTM.ipynb
+++ b/HateSpeech_LSTM.ipynb
@@ -1,593 +1,2152 @@
{
- "cells": [
- {
- "cell_type": "code",
- "execution_count": 1,
- "id": "044c20a9-9822-4d5e-8dd0-87b0ba27ba97",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "044c20a9-9822-4d5e-8dd0-87b0ba27ba97",
- "outputId": "77b09bf8-9f82-4a5b-eb11-4901178d259c"
- },
- "outputs": [
- {
- "output_type": "stream",
- "name": "stdout",
- "text": [
- "Collecting np_utils\n",
- " Downloading np_utils-0.6.0.tar.gz (61 kB)\n",
- "\u001b[?25l \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m0.0/62.0 kB\u001b[0m \u001b[31m?\u001b[0m eta \u001b[36m-:--:--\u001b[0m\r\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m62.0/62.0 kB\u001b[0m \u001b[31m2.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
- "\u001b[?25h Preparing metadata (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
- "Requirement already satisfied: numpy>=1.0 in /usr/local/lib/python3.10/dist-packages (from np_utils) (1.25.2)\n",
- "Building wheels for collected packages: np_utils\n",
- " Building wheel for np_utils (setup.py) ... \u001b[?25l\u001b[?25hdone\n",
- " Created wheel for np_utils: filename=np_utils-0.6.0-py3-none-any.whl size=56437 sha256=349a74cb100387de8aed0b8f250b48199901c15337232b700cc3c977283fee86\n",
- " Stored in directory: /root/.cache/pip/wheels/b6/c7/50/2307607f44366dd021209f660045f8d51cb976514d30be7cc7\n",
- "Successfully built np_utils\n",
- "Installing collected packages: np_utils\n",
- "Successfully installed np_utils-0.6.0\n"
- ]
- }
- ],
- "source": [
- "!pip install np_utils"
- ]
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "id": "044c20a9-9822-4d5e-8dd0-87b0ba27ba97",
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
},
+ "id": "044c20a9-9822-4d5e-8dd0-87b0ba27ba97",
+ "outputId": "38a8d9f8-6770-4fe8-d9af-4670feec5c4c"
+ },
+ "outputs": [
{
- "cell_type": "code",
- "execution_count": 2,
- "id": "34a8eccf-fe22-44d2-81b1-a8c267470822",
- "metadata": {
- "id": "34a8eccf-fe22-44d2-81b1-a8c267470822"
- },
- "outputs": [],
- "source": [
- "import os\n",
- "import numpy as np\n",
- "import pandas as pd\n",
- "from sklearn.preprocessing import LabelEncoder\n",
- "import nltk\n",
- "import re\n",
- "from nltk.stem import PorterStemmer\n",
- "from nltk.corpus import stopwords\n",
- "from sklearn.model_selection import train_test_split\n",
- "from sklearn.feature_extraction.text import CountVectorizer\n",
- "from sklearn.naive_bayes import MultinomialNB\n",
- "from sklearn.metrics import accuracy_score\n",
- "from sklearn.metrics import confusion_matrix\n",
- "import matplotlib.pyplot as plt\n",
- "import seaborn as sns\n",
- "from nltk.stem import WordNetLemmatizer\n",
- "import itertools\n",
- "from wordcloud import WordCloud\n",
- "from sklearn.svm import SVC\n",
- "from keras.models import Sequential,Model\n",
- "from keras.layers import Dense,LSTM, SpatialDropout1D, Embedding\n",
- "from keras.utils import to_categorical\n",
- "from joblib import dump, load"
- ]
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "\u001b[33mWARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager, possibly rendering your system unusable.It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv. Use the --root-user-action option if you know what you are doing and want to suppress this warning.\u001b[0m\u001b[33m\n",
+ "\u001b[0m"
+ ]
+ }
+ ],
+ "source": [
+ "!pip install np_utils seaborn keras-tuner --quiet"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "id": "34a8eccf-fe22-44d2-81b1-a8c267470822",
+ "metadata": {
+ "id": "34a8eccf-fe22-44d2-81b1-a8c267470822"
+ },
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "2024-07-26 22:26:55.939991: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:485] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n",
+ "2024-07-26 22:26:55.953633: E external/local_xla/xla/stream_executor/cuda/cuda_dnn.cc:8454] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\n",
+ "2024-07-26 22:26:55.958039: E external/local_xla/xla/stream_executor/cuda/cuda_blas.cc:1452] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\n",
+ "2024-07-26 22:26:55.973279: I tensorflow/core/platform/cpu_feature_guard.cc:210] This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.\n",
+ "To enable the following instructions: AVX2 FMA, in other operations, rebuild TensorFlow with the appropriate compiler flags.\n"
+ ]
},
{
- "cell_type": "code",
- "execution_count": 3,
- "id": "cd7150d5-4a78-42e0-914d-8333d59438c4",
- "metadata": {
- "id": "cd7150d5-4a78-42e0-914d-8333d59438c4"
- },
- "outputs": [],
- "source": [
- "text = []\n",
- "clas = []\n",
- "df = pd.read_csv('labeled_data.csv')\n",
- "text = df['tweet'].tolist()\n",
- "clas = df['class'].tolist()\n",
- "\n",
- "df = pd.DataFrame({'tweet': text, 'class': clas})"
- ]
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Num GPUs Available: 1\n"
+ ]
},
{
- "cell_type": "code",
- "execution_count": 4,
- "id": "75bab1bf-9207-404a-85bf-cafbd6e2104c",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "75bab1bf-9207-404a-85bf-cafbd6e2104c",
- "outputId": "424b7c51-2161-4a66-cdd2-77f0077ca32b"
- },
- "outputs": [
- {
- "output_type": "stream",
- "name": "stdout",
- "text": [
- "tweet 0\n",
- "class 0\n",
- "dtype: int64\n"
- ]
- }
- ],
- "source": [
- "print(df.isnull().sum())\n",
- "df['tweet'] = df['tweet'].apply(lambda x:x.lower())\n",
- "punctuation_signs = list(\"?:!.,;\")\n",
- "df['tweet'] = df['tweet']\n",
- "\n",
- "for punct_sign in punctuation_signs:\n",
- " df['tweet'] = df['tweet'].str.replace(punct_sign, '')\n",
- "\n",
- "df['tweet'] = df['tweet'].apply(lambda x: x.replace('\\n', ' '))\n",
- "df['tweet'] = df['tweet'].apply(lambda x: x.replace('\\t', ' '))\n",
- "df['tweet'] = df['tweet'].str.replace(\" \", \" \")\n",
- "df['tweet'] = df['tweet'].str.replace('\"', '')\n",
- "df['tweet'] = df['tweet'].str.replace(\"'s\", \"\")"
- ]
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "WARNING: All log messages before absl::InitializeLog() is called are written to STDERR\n",
+ "I0000 00:00:1722032817.352383 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "I0000 00:00:1722032817.365930 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "I0000 00:00:1722032817.365982 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n"
+ ]
+ }
+ ],
+ "source": [
+ "import os\n",
+ "import logging\n",
+ "import itertools\n",
+ "from joblib import dump, load\n",
+ "import numpy as np\n",
+ "import pandas as pd\n",
+ "import matplotlib.pyplot as plt\n",
+ "import seaborn as sns\n",
+ "\n",
+ "import re\n",
+ "from wordcloud import WordCloud\n",
+ "import nltk\n",
+ "from nltk.stem import PorterStemmer\n",
+ "from nltk.corpus import stopwords\n",
+ "from nltk.stem import WordNetLemmatizer\n",
+ "from sklearn.preprocessing import LabelEncoder\n",
+ "from sklearn.model_selection import train_test_split\n",
+ "from sklearn.feature_extraction.text import CountVectorizer\n",
+ "from sklearn.metrics import accuracy_score\n",
+ "from sklearn.metrics import confusion_matrix\n",
+ "from sklearn.model_selection import GridSearchCV\n",
+ "import keras_tuner\n",
+ "from keras.models import Sequential, Model\n",
+ "from keras.optimizers import Adam\n",
+ "from keras.layers import Dense,LSTM, SpatialDropout1D, Embedding\n",
+ "from keras.utils import to_categorical\n",
+ "import tensorflow as tf\n",
+ "\n",
+ "os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' # FATAL\n",
+ "logging.getLogger('tensorflow').setLevel(logging.FATAL)\n",
+ "print(\"Num GPUs Available:\", len(tf.config.list_physical_devices('GPU')))"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "4d24bfc9-0d97-48d5-99e2-e037b96cdab1",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from keras import backend as K\n",
+ "K.clear_session()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "34a9dcf2-357c-4c03-8ee0-d8bf89d4640f",
+ "metadata": {},
+ "source": [
+ "#### Data preprocessing of \"labeled_data.csv\" hate speech dataset"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "id": "75bab1bf-9207-404a-85bf-cafbd6e2104c",
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
},
+ "id": "75bab1bf-9207-404a-85bf-cafbd6e2104c",
+ "outputId": "331e5df0-6fd8-43e1-97e8-7f901495c424"
+ },
+ "outputs": [
{
- "cell_type": "code",
- "execution_count": 5,
- "id": "526e2829-e864-4196-98d7-0f1ed0396e24",
- "metadata": {
- "colab": {
- "base_uri": "https://localhost:8080/"
- },
- "id": "526e2829-e864-4196-98d7-0f1ed0396e24",
- "outputId": "a465b734-d373-4a63-fcce-1c0f50c5083b"
- },
- "outputs": [
- {
- "output_type": "stream",
- "name": "stderr",
- "text": [
- "[nltk_data] Downloading package stopwords to /root/nltk_data...\n",
- "[nltk_data] Unzipping corpora/stopwords.zip.\n"
- ]
- }
- ],
- "source": [
- "nltk.download('stopwords')\n",
- "stop_words = list(stopwords.words('english'))\n",
- "for stop_word in stop_words:\n",
- " regex_stopword = r\"\\b\" + stop_word + r\"\\b\"\n",
- " df['tweet'] = df['tweet'].str.replace(regex_stopword, '')"
- ]
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "tweet 0\n",
+ "class 0\n",
+ "dtype: int64\n"
+ ]
+ }
+ ],
+ "source": [
+ "text = []\n",
+ "clas = []\n",
+ "df = pd.read_csv('labeled_data.csv') # Load hate speech data\n",
+ "text = df['tweet'].tolist()\n",
+ "clas = df['class'].tolist()\n",
+ "df = pd.DataFrame({'tweet': text, 'class': clas}) # Recreate hate speech dataframe\n",
+ "print(df.isnull().sum())\n",
+ "df['tweet'] = df['tweet'].apply(lambda x:x.lower()) # Make lowercase\n",
+ "punctuation_signs = list(\"?:!.,;\")\n",
+ "df['tweet'] = df['tweet']\n",
+ "\n",
+ "for punct_sign in punctuation_signs:\n",
+ " df['tweet'] = df['tweet'].str.replace(punct_sign, '')\n",
+ "\n",
+ "df['tweet'] = df['tweet'].apply(lambda x: x.replace('\\n', ' '))\n",
+ "df['tweet'] = df['tweet'].apply(lambda x: x.replace('\\t', ' '))\n",
+ "df['tweet'] = df['tweet'].str.replace(\" \", \" \")\n",
+ "df['tweet'] = df['tweet'].str.replace('\"', '')\n",
+ "df['tweet'] = df['tweet'].str.replace(\"'s\", \"\")"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "526e2829-e864-4196-98d7-0f1ed0396e24",
+ "metadata": {
+ "colab": {
+ "base_uri": "https://localhost:8080/"
},
+ "id": "526e2829-e864-4196-98d7-0f1ed0396e24",
+ "outputId": "f6b90144-0504-4399-847b-47a4d7773e94"
+ },
+ "outputs": [
{
- "cell_type": "code",
- "execution_count": 6,
- "id": "3f766dde-2332-471f-b83c-adf3b0cbad13",
- "metadata": {
- "id": "3f766dde-2332-471f-b83c-adf3b0cbad13"
- },
- "outputs": [],
- "source": [
- "cv = CountVectorizer(max_features = 75)\n",
- "X = cv.fit_transform(df['tweet']).toarray()\n",
- "y = df['class']"
- ]
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "[nltk_data] Downloading package stopwords to /root/nltk_data...\n",
+ "[nltk_data] Package stopwords is already up-to-date!\n"
+ ]
+ }
+ ],
+ "source": [
+ "nltk.download('stopwords')\n",
+ "stop_words = list(stopwords.words('english'))\n",
+ "for stop_word in stop_words:\n",
+ " regex_stopword = r\"\\b\" + stop_word + r\"\\b\"\n",
+ " df['tweet'] = df['tweet'].str.replace(regex_stopword, '')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b51029ce-5568-4df4-8c79-af42d4c7f279",
+ "metadata": {},
+ "source": [
+ "#### ML dataset split"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "70d4d533-e9e2-44d3-88dc-1f4fc0f73f66",
+ "metadata": {
+ "id": "70d4d533-e9e2-44d3-88dc-1f4fc0f73f66"
+ },
+ "outputs": [],
+ "source": [
+ "cv = CountVectorizer(max_features = 75)\n",
+ "X = cv.fit_transform(df['tweet']).toarray()\n",
+ "y = df['class']\n",
+ "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, stratify=y, random_state = 42)\n",
+ "y_train=to_categorical(y_train, num_classes = 3)\n",
+ "y_test=to_categorical(y_test, num_classes = 3)"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "898a1bca-0b40-4ff3-904b-f29dc014eab7",
+ "metadata": {},
+ "source": [
+ "#### Model architecture"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "10ddaae9-4340-4564-813e-92c6ddf54442",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Define LSTM model architecture\n",
+ "\n",
+ "\n",
+ "def LSTM_model(lr, activation):\n",
+ " model = Sequential()\n",
+ " model.add(Embedding(232337, 100))\n",
+ " model.add(SpatialDropout1D(0.2))\n",
+ " model.add(LSTM(20, dropout=0.2, recurrent_dropout=0.2))\n",
+ " model.add(Dense(3, activation=activation))\n",
+ " model.compile(loss='binary_crossentropy', optimizer=Adam(learning_rate=lr), metrics=['accuracy'])\n",
+ " return model\n",
+ "\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2ae39849-7994-4417-ac3e-9663f8585f4b",
+ "metadata": {},
+ "source": [
+ "#### Hyperparameter grid search"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "90ad0055-42e5-4f3c-8925-5a94e7f871fa",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "I0000 00:00:1722032825.214836 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "I0000 00:00:1722032825.214924 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "I0000 00:00:1722032825.214957 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "I0000 00:00:1722032825.456803 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "I0000 00:00:1722032825.456889 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "2024-07-26 22:27:05.456900: I tensorflow/core/common_runtime/gpu/gpu_device.cc:2112] Could not identify NUMA node of platform GPU id 0, defaulting to 0. Your kernel may not have been built with NUMA support.\n",
+ "I0000 00:00:1722032825.456992 31422 cuda_executor.cc:1001] could not open file to read NUMA node: /sys/bus/pci/devices/0000:0a:00.0/numa_node\n",
+ "Your kernel may have been built without NUMA support.\n",
+ "2024-07-26 22:27:05.457016: I tensorflow/core/common_runtime/gpu/gpu_device.cc:2021] Created device /job:localhost/replica:0/task:0/device:GPU:0 with 21770 MB memory: -> device: 0, name: NVIDIA GeForce RTX 3090, pci bus id: 0000:0a:00.0, compute capability: 8.6\n"
+ ]
},
{
- "cell_type": "code",
- "execution_count": 7,
- "id": "70d4d533-e9e2-44d3-88dc-1f4fc0f73f66",
- "metadata": {
- "id": "70d4d533-e9e2-44d3-88dc-1f4fc0f73f66"
- },
- "outputs": [],
- "source": [
- "\n",
- "\n",
- "X_train, X_test, y_train, y_test = train_test_split(X, y, test_size = 0.2, stratify=y, random_state = 42)\n",
- "\n"
+ "data": {
+ "text/plain": [
+ ""
]
+ },
+ "execution_count": 8,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "\n",
+ "\n",
+ "def build_model(hp):\n",
+ " activation = hp.Choice(\"activation\", [\"relu\", \"tanh\", \"elu\", \"sigmoid\"])\n",
+ " lr = hp.Float(\"lr\", min_value=1e-4, max_value=1e-2, sampling=\"log\")\n",
+ " # call existing model-building code with the hyperparameter values.\n",
+ " model = LSTM_model(lr=lr, activation=activation)\n",
+ " return model\n",
+ "\n",
+ "\n",
+ "build_model(keras_tuner.HyperParameters())"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "id": "3f16d514-6b4c-43ae-b780-506330aa79c3",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "Trial 44 Complete [00h 02m 00s]\n",
+ "val_loss: 0.4022296965122223\n",
+ "\n",
+ "Best val_loss So Far: 0.40195000171661377\n",
+ "Total elapsed time: 01h 30m 17s\n"
+ ]
+ }
+ ],
+ "source": [
+ "tuner = keras_tuner.GridSearch(\n",
+ " build_model,\n",
+ " objective=\"val_loss\",\n",
+ " overwrite=True,\n",
+ " max_trials=100,\n",
+ " seed=123)\n",
+ "\n",
+ "\n",
+ "tuner.search(X_train, y_train, validation_data=(X_test,y_test), epochs=1)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "id": "6781fbdd-05b2-4188-9710-10ef90267015",
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "{'activation': 'sigmoid', 'lr': 0.003162277660168381}\n"
+ ]
},
{
- "cell_type": "code",
- "execution_count": 13,
- "id": "d1c8db29-c191-4df4-bc52-e2155b076ff6",
- "metadata": {
- "id": "d1c8db29-c191-4df4-bc52-e2155b076ff6"
- },
- "outputs": [],
- "source": [
- "def plot_confusion_matrix(cm, classes,\n",
- " normalize=False,\n",
- " title='Confusion matrix',\n",
- " cmap=plt.cm.Blues):\n",
- "\n",
- " plt.imshow(cm, interpolation='nearest', cmap=cmap)\n",
- " plt.title(title)\n",
- " plt.colorbar()\n",
- " tick_marks = np.arange(len(classes))\n",
- " plt.xticks(tick_marks, classes, rotation=45)\n",
- " plt.yticks(tick_marks, classes)\n",
- "\n",
- " if normalize:\n",
- " cm = cm.astype('float') / cm.sum(axis=1)[:, np.newaxis]\n",
- "\n",
- " thresh = cm.max() / 2.\n",
- " for i, j in itertools.product(range(cm.shape[0]), range(cm.shape[1])):\n",
- " plt.text(j, i, cm[i, j],\n",
- " horizontalalignment=\"center\",\n",
- " color=\"white\" if cm[i, j] > thresh else \"black\")\n",
- "\n",
- " plt.tight_layout()\n",
- " plt.ylabel('True label')\n",
- " plt.xlabel('Predicted label')"
- ]
+ "name": "stderr",
+ "output_type": "stream",
+ "text": [
+ "/usr/local/lib/python3.11/dist-packages/keras/src/saving/saving_lib.py:576: UserWarning: Skipping variable loading for optimizer 'adam', because it has 2 variables whereas the saved optimizer has 14 variables. \n",
+ " saveable.load_own_variables(weights_store.get(inner_path))\n"
+ ]
},
{
- "cell_type": "code",
- "execution_count": 8,
- "id": "051fd212-bd1f-41bb-8953-2d03ac39a0f3",
- "metadata": {
- "id": "051fd212-bd1f-41bb-8953-2d03ac39a0f3"
- },
- "outputs": [],
- "source": [
- "\n",
- "\n",
- "y_train=to_categorical(y_train, num_classes = 3)\n",
- "y_test=to_categorical(y_test, num_classes = 3)\n",
- "\n"
+ "data": {
+ "text/html": [
+ "