File size: 83,030 Bytes
a3593da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 | [
{
"prompt": "Generate a SUPPORTING argument for the topic: There should be no age restrictions on cosmetic surgery.",
"argument": "The American Medical Association recommends age restrictions on cosmetic procedures be lifted."
},
{
"prompt": "Generate a COUNTER argument for the topic: Subsidizing student loans is bad.",
"argument": "Student loans are often the only way that the poor can afford to go to college."
},
{
"prompt": "Generate a COUNTER argument for the topic: The sex of a child does not define their value.",
"argument": "The Female sex has more value, in that they are the natural harbingers of life."
},
{
"prompt": "Generate a COUNTER argument for the topic: Just because a few people are louder than others, laws shouldn't be changed to accommodate them.",
"argument": "If people feel strongly enough to protest loudly, their opinion should be taken into consideration."
},
{
"prompt": "Generate a COUNTER argument for the topic: Just because a few people are louder than others, laws shouldn't be changed to accommodate them.",
"argument": "A few people can have a big influence."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: There should not be parades that celebrate homosexuality.",
"argument": "It's unfair for some people to be able to have parades while other ideas aren't as widely celebrated."
},
{
"prompt": "Generate a COUNTER argument for the topic: There should not be parades that celebrate homosexuality.",
"argument": "Nobody should be restricted from expressing their point of view."
},
{
"prompt": "Generate a COUNTER argument for the topic: Journalism is not in need of subsidies.",
"argument": "If journalism was subsidized, Newspapers could keep their level of readership up in the digital age."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Journalism is not in need of subsidies.",
"argument": "Government subsidies should not be used for Journalism and would be better used for social programs."
},
{
"prompt": "Generate a COUNTER argument for the topic: Child actors do not live normal lives.",
"argument": "Strict laws about child actors' obligations and duties actually protect their rights to a normal life."
},
{
"prompt": "Generate a COUNTER argument for the topic: prostitution has been in existence for long and should not be illegal",
"argument": "Most people that are into prostitution are forced into it and it should not be allowed."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: prostitution has been in existence for long and should not be illegal",
"argument": "Young ladies are found prostituting all over the world."
},
{
"prompt": "Generate a COUNTER argument for the topic: Companies should be allowed to decide workers' pay.",
"argument": "Companies abused wage autonomy until a federal minimum wage was instituted."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Companies should be allowed to decide workers' pay.",
"argument": "Companies must be allowed autonomy of wage in a free market economy."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People who don't trust doctors have the right to try whatever homeopathic remedies they want.",
"argument": "Some people prefer homeopathic remedies to conventional medicine."
},
{
"prompt": "Generate a COUNTER argument for the topic: Most economic sanction are not effective.",
"argument": "Economic sanction are mostly effective when it is collectively done."
},
{
"prompt": "Generate a COUNTER argument for the topic: Naturopathy does not harm people.",
"argument": "Naturopathy harms people by inaction; sometimes invasive treatments are the best option."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Naturopathy does not harm people.",
"argument": "Naturopathy does not have invasive treatments which could do harm."
},
{
"prompt": "Generate a COUNTER argument for the topic: Television can be hazardous to our kids",
"argument": "Television is a source of information and also has program that educates kids."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Television can be hazardous to our kids",
"argument": "Television scenes shows scenes that are not meant for kids to watch and that should not be allowed."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: IP copyrights should be banned.",
"argument": "Free access to ideas will help propel the development of even newer ideas."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: IP copyrights should be banned.",
"argument": "The more people can use others' ideas to brainstorm, the quicker we will be able to develop more ideas."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Homeopathic remedies can be bad for your health.",
"argument": "Homeopathic medics don't know how your prescriptions will interact with their treatments."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Stay at home Dads tends to be lazy",
"argument": "Mother needs to remain carers at home so stay at home Dads should not be subsidized."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Anything other than natural pregnancy methods should be prohibited.",
"argument": "God decides who gets pregnant, and any other method should be prohibited as blasphemy."
},
{
"prompt": "Generate a COUNTER argument for the topic: Cosmetic surgery for children is safe.",
"argument": "Parental consent does not protect children from associated risks of cosmetic surgery."
},
{
"prompt": "Generate a COUNTER argument for the topic: Racial profiling is not fair to people.",
"argument": "Sometimes racial profiling is necessary."
},
{
"prompt": "Generate a COUNTER argument for the topic: Getting rid of capital punishment lets people know that all killing is wrong.",
"argument": "Without the fear of their own death, people will have less of a deterrent not to commit murder."
},
{
"prompt": "Generate a COUNTER argument for the topic: Safe spaces should be allowed.",
"argument": "Safe spaces would give people false ideas of what the world actually is like."
},
{
"prompt": "Generate a COUNTER argument for the topic: Women should be allowed to sell their bodies.",
"argument": "Bodily autonomy does not extend to selling your body for sex, as commerce has other rules."
},
{
"prompt": "Generate a COUNTER argument for the topic: Older adult has less strength, so bringing the younger ones increase productivity",
"argument": "Older workers tends to be more intelligent than younger workers."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Homeopathy can be dangerous because it is unregulated.",
"argument": "Many homeopathic remedies are marketed as \"dietary supplements\" which are not subject to FDA regulation."
},
{
"prompt": "Generate a COUNTER argument for the topic: Naturopathic methods are always a good idea because they'll work even just as a placebo.",
"argument": "Natural things aren't always good for you and should be regulated."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should not have a right to own guns.",
"argument": "People should have a right to defend themselves and their property with reasonable defenses."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Capital punishment is always brutal.",
"argument": "Capital punishment can cause miscarriage of law and order."
},
{
"prompt": "Generate a COUNTER argument for the topic: It is important to explore space, so that we can learn more about our own world.",
"argument": "Earth is its own entity, and not the same as other things in the universe."
},
{
"prompt": "Generate a COUNTER argument for the topic: Economic sanction affects the citizens more than the governments",
"argument": "Economic sanction causes a major issue for the government."
},
{
"prompt": "Generate a COUNTER argument for the topic: legalizing Sex selection reduces over population",
"argument": "Sex selection makes gender unequal as a particular sex will be more than the other."
},
{
"prompt": "Generate a COUNTER argument for the topic: stay at home Dad allows for gender equality at work",
"argument": "Most men are much more productive at work, so women should stay at home when men go to work."
},
{
"prompt": "Generate a COUNTER argument for the topic: A multi-party system is good.",
"argument": "More parties means less chance we'd all agree on something."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should be allowed to meet their base needs.",
"argument": "People's \"needs\" can be subjective and some needs can be considered less important than others."
},
{
"prompt": "Generate a COUNTER argument for the topic: The right to bear arms helps people defend themselves.",
"argument": "It will make it much harder for criminals to have arms, if the right to bear arms was abolished."
},
{
"prompt": "Generate a COUNTER argument for the topic: Prostitution should not be a criminal offense.",
"argument": "Organized crime is involved in prostitution, and therefore it is a criminal offense."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: It's impossible to abolish capital punishment.",
"argument": "Capital punishment is mostly used by dictatorial countries and monarchies so it wouldn't do any good to abolish it."
},
{
"prompt": "Generate a COUNTER argument for the topic: Some actions may abolish the black market.",
"argument": "Black markets will always exist, regardless of what types of bans are put in place."
},
{
"prompt": "Generate a COUNTER argument for the topic: Being a virgin is a choice",
"argument": "Virginity is meant to be kept till you get married."
},
{
"prompt": "Generate a COUNTER argument for the topic: A system that fires competent employees due to age is cruel.",
"argument": "Firing someone based on their age is the only way to refresh the workforce."
},
{
"prompt": "Generate a COUNTER argument for the topic: Having right to hold weapon is dangerous",
"argument": "Everyone should own a weapon so as to protect themselves in case of emergency."
},
{
"prompt": "Generate a COUNTER argument for the topic: We should not ban surrogate mothers.",
"argument": "There are thousands of children in the foster system; surrogate mothers prevent people taking this option."
},
{
"prompt": "Generate a COUNTER argument for the topic: Retirement should not be mandatory.",
"argument": "Mandatory retirement helps new generations have an opportunity to succeed."
},
{
"prompt": "Generate a COUNTER argument for the topic: Retirement should not be mandatory.",
"argument": "Retirement helps get new people in the workforce and stimulate the economy."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Economic sanction helps suppress power of current regime.",
"argument": "Economic sanction should be used on countries that oppress the small countries."
},
{
"prompt": "Generate a COUNTER argument for the topic: Cosmetic surgery for minors should be banned.",
"argument": "Cosmetic surgery for minors is good, because anyone can make an informed decision on their looks."
},
{
"prompt": "Generate a COUNTER argument for the topic: Television cannot be abandoned as it is a necessity",
"argument": "Television is fun but it distracts us and limits efficiency in day to day activities."
},
{
"prompt": "Generate a COUNTER argument for the topic: A multi-party system would be more representative of the populace.",
"argument": "A multi-party system is not guaranteed to be more representative of the populace than any other system."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Telemarketing is intrusive.",
"argument": "Telemarketing is intrusive because it can happen at any time of day without your consent."
},
{
"prompt": "Generate a COUNTER argument for the topic: Telemarketing is intrusive.",
"argument": "Telemarketing isn't intrusive because it helps put people in touch with companies that want to make them special offers."
},
{
"prompt": "Generate a COUNTER argument for the topic: Being a child actor does harm to children.",
"argument": "Child actors don't have more frequent breakdowns than anyone else; their fame makes us notice them more."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Compulsory voting including the whole electorate is unrealistic.",
"argument": "It would be impossible to insure if everyone was able to turn out to vote."
},
{
"prompt": "Generate a COUNTER argument for the topic: A surrogate might try to keep the child.",
"argument": "A surrogate is bound by legal contract to surrender the child."
},
{
"prompt": "Generate a COUNTER argument for the topic: Judges should be impartial in their ruling.",
"argument": "A judge ruling without accessing their emotions will not be able to effectively reason."
},
{
"prompt": "Generate a COUNTER argument for the topic: Many people benefit from alternative types of medicine, such as diet, exercise, and massage.",
"argument": "There isn't enough evidence that people are cured from alternative medicines."
},
{
"prompt": "Generate a COUNTER argument for the topic: legalised sex selection causes biases among genders",
"argument": "Sex selection has it advantages too."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Adopting gender neutral language would be expensive and we can use those resources in other places.",
"argument": "Adopting gender neutral language would be expensive because money would be needed to educate people about the changes."
},
{
"prompt": "Generate a COUNTER argument for the topic: Minors are not old enough to make complex emotional decisions.",
"argument": "Minors are often underestimated in their decision making abilities."
},
{
"prompt": "Generate a COUNTER argument for the topic: Gender neutral language is good for equality.",
"argument": "People should be responsible for their own feelings instead of claiming gender biases."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Banning of weapon limits arms holders.",
"argument": "Banning of weapons limit the amount of murder and reduce the amount of gun in murderer hands."
},
{
"prompt": "Generate a COUNTER argument for the topic: Banning of weapon limits arms holders.",
"argument": "People tend to get weapons illegally irrespective of the banning."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People tends to participate in politics and support their parties of interest when there are many political parties.",
"argument": "People like to have many political parties so they can support the party with their values."
},
{
"prompt": "Generate a COUNTER argument for the topic: Abolishing capital punishment is cruel for the victims of crime.",
"argument": "Mathematically, the victims aren't paying for much of the care, therefore abolishing capital punishment will not impact them."
},
{
"prompt": "Generate a COUNTER argument for the topic: A multi party system allows for diversity in political system",
"argument": "Multi party system brings about division among people."
},
{
"prompt": "Generate a COUNTER argument for the topic: Recruitment of professional people is important for good work to happen.",
"argument": "Some people don't start a job as an experienced professional, but prove to be more valuable later on."
},
{
"prompt": "Generate a COUNTER argument for the topic: Economic sanctions should cease to exist.",
"argument": "Economic sanctions are necessary for punishment."
},
{
"prompt": "Generate a COUNTER argument for the topic: Making prostitution legal benefits sex workers.",
"argument": "Making prostitution legal can lead to more people falling into prostitution."
},
{
"prompt": "Generate a COUNTER argument for the topic: Flags are just material products and should not be held in such high esteem.",
"argument": "A flag represents a group or a nation and thus has added symbolic value."
},
{
"prompt": "Generate a COUNTER argument for the topic: Abolishing intellectual property rights is good.",
"argument": "Abolishing intellectual property rights will discourage people from sharing knowledge."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Capital punishment acts as a deterrent to serious crime.",
"argument": "Capital punishment will cause many potential criminals to reconsider committing crimes, due to fear of execution."
},
{
"prompt": "Generate a COUNTER argument for the topic: Capital punishment acts as a deterrent to serious crime.",
"argument": "Capital punishment is not a deterrent, as evidenced by our continually rising prison population."
},
{
"prompt": "Generate a COUNTER argument for the topic: Abolishing mandatory retirement will help end age discrimination.",
"argument": "Abolishing mandatory retirement will not prevent employers from finding new ways to engage in age discrimination."
},
{
"prompt": "Generate a COUNTER argument for the topic: If it's okay to kill cattle for meat, then a whale is an animal, and killing them should be allowed.",
"argument": "Whales are more endangered than cattle."
},
{
"prompt": "Generate a COUNTER argument for the topic: Child actors should be regulated, not banned.",
"argument": "Child actors are susceptible and not old enough to make their own decisions."
},
{
"prompt": "Generate a COUNTER argument for the topic: Creating artificial safe spaces can be counter productive.",
"argument": "Safe spaces are intended for people to express their ideas without fear of judgment."
},
{
"prompt": "Generate a COUNTER argument for the topic: All people are guaranteed the right to celebrate in accordance with their beliefs.",
"argument": "Citizens are not guaranteed the right to celebrate if the celebration abridges on the rights of others."
},
{
"prompt": "Generate a COUNTER argument for the topic: Foster care brings good to disadvantaged children.",
"argument": "Many children are abused by their foster parents."
},
{
"prompt": "Generate a COUNTER argument for the topic: Space exploration brings about new discoveries",
"argument": "Space exploration is a waste of time and effort as all resources can be used here to create more resources."
},
{
"prompt": "Generate a COUNTER argument for the topic: Legalizing prostitution reduces the risk of disease",
"argument": "People will not want prostitution to be legal as their income for it will reduce."
},
{
"prompt": "Generate a COUNTER argument for the topic: Stay at home Dad has a reason for staying home",
"argument": "Stay at home dad has no value to the economy of a country."
},
{
"prompt": "Generate a COUNTER argument for the topic: Prostitution should be legalized.",
"argument": "Prostitution is damaging to society."
},
{
"prompt": "Generate a COUNTER argument for the topic: Student loans should be subsidized in other to ease financial hardship on students",
"argument": "Some students abuse the privilege of student loan more reasons, it shouldn't be subsidized."
},
{
"prompt": "Generate a COUNTER argument for the topic: space exploration should be considered a waste of resources",
"argument": "Space exploration brings about new inventions which can be used to increase the standard of earth."
},
{
"prompt": "Generate a COUNTER argument for the topic: space exploration should be considered a waste of resources",
"argument": "Space exploration is a priority for some governments."
},
{
"prompt": "Generate a COUNTER argument for the topic: Surrogacy makes parent happy",
"argument": "Surrogacy is immoral and cheating the law of nature."
},
{
"prompt": "Generate a COUNTER argument for the topic: Making defendants all use public defenders will make the system more fair.",
"argument": "Use of public defenders is not mandatory."
},
{
"prompt": "Generate a COUNTER argument for the topic: People in safe space are vulnerable",
"argument": "Safe space accommodates everyone."
},
{
"prompt": "Generate a COUNTER argument for the topic: people should follow whichever religion they choose.",
"argument": "Some religions people follow are dangerous."
},
{
"prompt": "Generate a COUNTER argument for the topic: Something might stop black market organ sales.",
"argument": "There will always be a black market for anything people want badly."
},
{
"prompt": "Generate a COUNTER argument for the topic: Some people are politically apathetic, they should not be forced to vote.",
"argument": "Everyone should vote in other to put good leaders in position."
},
{
"prompt": "Generate a COUNTER argument for the topic: Some people are politically apathetic, they should not be forced to vote.",
"argument": "Voting is a right everyone should express."
},
{
"prompt": "Generate a COUNTER argument for the topic: Children are still learning, and a zero tolerance policy doesn't allow them to make mistakes.",
"argument": "Children are able to be held accountable for their actions."
},
{
"prompt": "Generate a COUNTER argument for the topic: Legalized organ trade would exploit the poor.",
"argument": "Legalized organ trade would aid the poor, by giving them a large sum of money to improve their lives."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The job of a public defender is to help insure the rights of the people.",
"argument": "Public defenders give defendants due process."
},
{
"prompt": "Generate a COUNTER argument for the topic: The church of scientology is bad because of how secretive it is.",
"argument": "The church of scientology being secretive should be irrelevant because of all the good they do.."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Defendants in criminal cases should not be barred from counseling as they are likely to be imprisoned.",
"argument": "Defendants can put into prison in a criminal case so they should not be constrained in their counsel."
},
{
"prompt": "Generate a COUNTER argument for the topic: The lack of stability in the foster system is bad for children.",
"argument": "Children's parental homes could be abusive and toxic and be worse long-term for the child."
},
{
"prompt": "Generate a COUNTER argument for the topic: People tends to do anything like hunting to provide food for their family",
"argument": "Hunting is majorly for fun."
},
{
"prompt": "Generate a COUNTER argument for the topic: Company members can be lead into conflict.",
"argument": "Everyone shares the same mission at work and is on the same page."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: School prayer should be allowed because in religious communities, people want prayer to be included in their daily lives.",
"argument": "Religious people don't want to be told they can't pray."
},
{
"prompt": "Generate a COUNTER argument for the topic: Abolishing intellectual rights will have negative consequences.",
"argument": "A person's intellectual rights should not be protected if their ideas are harmful."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Compensating only the executives greatly is not ideal.",
"argument": "All workers have contributed greatly to the success of the company, executives only should not be compensated greatly."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Compensating only the executives greatly is not ideal.",
"argument": "Executive work lesser than the other employees."
},
{
"prompt": "Generate a COUNTER argument for the topic: Compensating only the executives greatly is not ideal.",
"argument": "Executive have worked to get to where they are now, so they should earn more income than others."
},
{
"prompt": "Generate a COUNTER argument for the topic: Criminalizing holocaust denial allows the deniers to become martyrs for free speech, and the government can't deconstruct their argument for the public.",
"argument": "Holocaust deniers should be proven wrong."
},
{
"prompt": "Generate a COUNTER argument for the topic: Multi-party systems represent everyone's perspectives.",
"argument": "If we have too many parties it gets confusing and muddled."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Punishing the person being bullied the same as the bully isn't right.",
"argument": "Victims are taught to fight back."
},
{
"prompt": "Generate a COUNTER argument for the topic: Deciding to carry a pregnancy for the genetic mom is a woman's choice.",
"argument": "Some woman may carry a pregnancy for the money and get attached to the child."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Kids should not be exposed to prayer from other religions.",
"argument": "The beliefs of one are not the beliefs of all."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: A job title doesn't entitle an executive to more money.",
"argument": "Executives have enough money, and their title shouldn't keep money from people who need it more."
},
{
"prompt": "Generate a COUNTER argument for the topic: A job title doesn't entitle an executive to more money.",
"argument": "Executives earn and deserve their money."
},
{
"prompt": "Generate a COUNTER argument for the topic: If a person is accused of a crime, they have a right to find any lawyer they want, and not have to use a low level lawyer.",
"argument": "Rich people are just like everyone else."
},
{
"prompt": "Generate a COUNTER argument for the topic: Since every situation is different, there shouldn't be a limit on judicial activism.",
"argument": "Judicial activism should always be considered the same way, and the situation shouldn't matter."
},
{
"prompt": "Generate a COUNTER argument for the topic: Holocaust denial should not be criminalized.",
"argument": "Holocaust denial is dangerous."
},
{
"prompt": "Generate a COUNTER argument for the topic: When executives are compensated well they tend to work harder to improve the company",
"argument": "Executive work less their compensation should not be as high because normal employees work harder."
},
{
"prompt": "Generate a COUNTER argument for the topic: Forced prayer should not be in school.",
"argument": "School prayer is important to bring people closer."
},
{
"prompt": "Generate a COUNTER argument for the topic: Telemarketers should be banned.",
"argument": "Telemarketing is an industry that employs thousands of people and should not be banned."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Prayer in schools is a definite violation of separating church and state.",
"argument": "Prayer is part of religion, which is the church."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: By banning prostitution men are trying to take control of women's bodies",
"argument": "Men do not have the right to control women's bodies."
},
{
"prompt": "Generate a COUNTER argument for the topic: Freedom of religion is paramount.",
"argument": "Not all religions are worth it."
},
{
"prompt": "Generate a COUNTER argument for the topic: Our current voting system should be replaced.",
"argument": "There are many ways in which the election process can be modified while still maintaining the old system."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Our current voting system should be replaced.",
"argument": "The electoral college is not a fair measure of how one wins in an election."
},
{
"prompt": "Generate a COUNTER argument for the topic: Prayer in schools violates the separation of church and state.",
"argument": "Prayer is a personal decision."
},
{
"prompt": "Generate a COUNTER argument for the topic: It's fine for a parent to stay home, but nobody else has to ensure that a parent can stay home.",
"argument": "Society as a whole should help make sure kids can have a parent stay home with them."
},
{
"prompt": "Generate a COUNTER argument for the topic: Surrogacy is an advantage for people.",
"argument": "Surrogacy is like cheating the nature."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should follow whichever religion they choose.",
"argument": "Some religions are better than others."
},
{
"prompt": "Generate a COUNTER argument for the topic: Subsidizing journalism allows for efficient information.",
"argument": "Some journalist will always give wrong information irrespective of the subsidy or not."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People locked away for speaking their mind are political prisoners.",
"argument": "You should be able to say what you want provided it does not harm others."
},
{
"prompt": "Generate a COUNTER argument for the topic: Mandatory retirement hurts elderly workers.",
"argument": "Mandatory retirement allows older workers to find value in other aspects of their lives."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: If the holocaust is denied there is more chance that it will happen again.",
"argument": "We did not learn from our President's comments about Charlottesville and as a result something worse happened."
},
{
"prompt": "Generate a COUNTER argument for the topic: Abolishing the right to keep and bear arms will not prevent people from obtaining guns.",
"argument": "Abolishing the right to keep and bear arms will disarm the majority of the populace."
},
{
"prompt": "Generate a COUNTER argument for the topic: people should have their choice of representation.",
"argument": "Choosing representation is not fair."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Safe places grant asylum from prejudice.",
"argument": "There are a lot of malignant ideals that prevent people from feeling safe in public places."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The church of scientology should be banned, because it's actually a cult and not a religion.",
"argument": "Scientologists have reported needing therapy."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People should not have to pay tax for a site that already runs well on donations.",
"argument": "Taxpayer money should go towards essential services like healthcare and military."
},
{
"prompt": "Generate a COUNTER argument for the topic: When people deny terrible past events like the holocaust it is more likely to happen again.",
"argument": "People can have strong morals without knowing everything that has ever happened."
},
{
"prompt": "Generate a COUNTER argument for the topic: Television focuses people's attention away from healthier activities.",
"argument": "People can work out while watching television."
},
{
"prompt": "Generate a COUNTER argument for the topic: Everyone should have to use a public defender, so that wealthy people invest in the public defender system.",
"argument": "People deserve better representation if they can get it."
},
{
"prompt": "Generate a COUNTER argument for the topic: Racial profiling is biased against anyone who isn't white.",
"argument": "Stereotypes are only a starting point, and racial profiling is a blanket term used for all races."
},
{
"prompt": "Generate a COUNTER argument for the topic: Foster care is a positive for children.",
"argument": "Foster care can sometimes place children into the wrong hands."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: everyone should have to use a public defender.",
"argument": "With public defenders, people would be treated the same."
},
{
"prompt": "Generate a COUNTER argument for the topic: Practicing gender neutral language creates gender equality.",
"argument": "Christians don't believe in spectral gender, and would feel ostracized at the adoption of gender neutral language."
},
{
"prompt": "Generate a COUNTER argument for the topic: School prayer should not be in schools.",
"argument": "People should be able to pray if they want to in schools."
},
{
"prompt": "Generate a COUNTER argument for the topic: Voting should not be mandated.",
"argument": "Voting should be forced so get the population participating in democracy."
},
{
"prompt": "Generate a COUNTER argument for the topic: Voting should not be mandated.",
"argument": "Everyone should be forced to vote to take part in democracy."
},
{
"prompt": "Generate a COUNTER argument for the topic: The holocaust should never be denied.",
"argument": "People can have their own opinions and it should not be criminalized."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Telemarketing is good for the economy, and is a legitimate form of marketing.",
"argument": "Some people don't know they want something until someone asks."
},
{
"prompt": "Generate a COUNTER argument for the topic: Scientology is a cult.",
"argument": "It is not unusual for a Scientologist to say they gain from their faith."
},
{
"prompt": "Generate a COUNTER argument for the topic: Assisted suicide is good for terminal patients who are suffering.",
"argument": "Assisted suicide encourages patients to avoid seeking alternative treatments that could help them."
},
{
"prompt": "Generate a COUNTER argument for the topic: School prayer is a positive for society.",
"argument": "Schools should not be mandating prayer."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should not take natural medicines without seeking medical help.",
"argument": "People can do their own research about natural medicines without paying for a doctor's advice."
},
{
"prompt": "Generate a COUNTER argument for the topic: zero-tolerance policies make schools safer for both students and teachers.",
"argument": "Zero-tolerance means no room for mistakes."
},
{
"prompt": "Generate a COUNTER argument for the topic: People have the right to what they want to do with their body",
"argument": "Selling of organ is illegal as people can be forced into selling what they do not want to sell."
},
{
"prompt": "Generate a COUNTER argument for the topic: Executive are hard working.",
"argument": "Most executive get to their position by chance and their pay should not be much more than the workers."
},
{
"prompt": "Generate a COUNTER argument for the topic: Surrogacy ensures that a child is raised by at least one biological parent.",
"argument": "A biological connection is not important."
},
{
"prompt": "Generate a COUNTER argument for the topic: If someone can afford a good lawyer, they should be allowed, so they get the best representation they can get.",
"argument": "Nobody is better than anyone else."
},
{
"prompt": "Generate a COUNTER argument for the topic: Even with free speech there are limits, and if you are triggering violence, you shouldn't get a platform.",
"argument": "Free speech is supposed to be universal, regardless of the message."
},
{
"prompt": "Generate a COUNTER argument for the topic: School prayer goes against first amendment rights of kids by forcing beliefs.",
"argument": "Not every child wants to be prohibited from believing in God."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should be allowed to higher expensive lawyers if they can afford to do it.",
"argument": "Expensive lawyers are not always available to everyone."
},
{
"prompt": "Generate a COUNTER argument for the topic: Telemarketing makes advertising",
"argument": "Telemarketing can cause harm for people as there are many scammers out there."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Zero tolerance policy should not be implemented.",
"argument": "Zero tolerance policy punishes children."
},
{
"prompt": "Generate a COUNTER argument for the topic: LGBTQ tolerance is imperative.",
"argument": "Old values do not need to be changed."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People should pay for a lawyer if they can",
"argument": "Public defenders are not ideal."
},
{
"prompt": "Generate a COUNTER argument for the topic: children need the room to grow and learn from mistakes",
"argument": "The more mistakes you make when you are young, the stronger those bad habits are to break later in life."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: This system would get rid of people being able to get their preferred gender for their children.",
"argument": "A system where people keep having more children just to choose the gender is wrong."
},
{
"prompt": "Generate a COUNTER argument for the topic: This system would get rid of people being able to get their preferred gender for their children.",
"argument": "If people want to have more children, that's up to them, even if it's to hope for a gender."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans should not exist.",
"argument": "Payday loans can be helpful with the right educational tools."
},
{
"prompt": "Generate a COUNTER argument for the topic: If something's not harmful it should be allowed.",
"argument": "Sometimes things that seem harmless are later found to be harmful."
},
{
"prompt": "Generate a COUNTER argument for the topic: Children do not know what they are saying when they pray at school.",
"argument": "Kids believe in God."
},
{
"prompt": "Generate a COUNTER argument for the topic: Cancelling pride parades does harm to LGBTQ+ people",
"argument": "Everyone is already aware of them. Pride parades aren't important for awareness any longer."
},
{
"prompt": "Generate a COUNTER argument for the topic: public defenders care more about your best interests than their paid counterparts",
"argument": "We need a full overhaul of the public defender system."
},
{
"prompt": "Generate a COUNTER argument for the topic: Subsidized loans are an important way to support students.",
"argument": "It is a denial of personal responsibility for students to have all their borrowed money subsidized."
},
{
"prompt": "Generate a COUNTER argument for the topic: zero-tolerance policies don't make sense because innocent students often get punished.",
"argument": "Innocent students don't get caught up in problems."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans work for people who need immediate money, and don't have good credit.",
"argument": "People are forced to pay high interest rates."
},
{
"prompt": "Generate a COUNTER argument for the topic: Subrogation should not be prohibited.",
"argument": "Subrogation should not be allowed because it's a loophole in the law and it puts people at a disadvantage."
},
{
"prompt": "Generate a COUNTER argument for the topic: Telemarketers has nothing to offer only to rip people off their money",
"argument": "Telemarketing is an easy way to advertise product."
},
{
"prompt": "Generate a COUNTER argument for the topic: Telemarketers has nothing to offer only to rip people off their money",
"argument": "Not all telemarketers are scammers most have enough to offer when you have your money to pay."
},
{
"prompt": "Generate a COUNTER argument for the topic: Mandatory retirement age will allow young workers to be able to predictably enter the workforce.",
"argument": "Forcing older people to retire, means less qualified and experienced people will enter the workforce."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Homeopathy can be a source of first aid and immediate medication",
"argument": "Homeopathic medication is a very good medication."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans cause debt and should be banned.",
"argument": "Debt can be cause with or without payday loan use."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People are deterred from committing criminal acts by the death penalty.",
"argument": "If someone knows they can die from doing a crime they are less likely to do it."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: executives deserve their compensation.",
"argument": "Executives are responsible for company growth."
},
{
"prompt": "Generate a COUNTER argument for the topic: executives deserve their compensation.",
"argument": "Executives are overpaid."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: more usage of public defenders would make trials fairer",
"argument": "Having a fair courtroom requires giving equal emphasis to public defenders as we do to judges and prosecutors."
},
{
"prompt": "Generate a COUNTER argument for the topic: If body parts could be bought and sold, poor people would be exploited for parts since they need money.",
"argument": "Everyone would have the same chance of being used for their body parts, not just the poor."
},
{
"prompt": "Generate a COUNTER argument for the topic: A person has a right to take a vow of celibacy.",
"argument": "A vow of celibacy affects more than just the person taking the vow, such as parents who want grandchildren."
},
{
"prompt": "Generate a COUNTER argument for the topic: School prayer should not be in school.",
"argument": "If people want to pray in school, they should have that right."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Subsidizing wikipedia would be a nonsense exercise.",
"argument": "Because anyone may edit a Wikipedia page, subsidizing it would be pointless in the interest of preserving facts."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Problems with payday loans could be solved with increased regulation.",
"argument": "Many states have capped the amount of payday loan principals."
},
{
"prompt": "Generate a COUNTER argument for the topic: foster care is a positive.",
"argument": "Foster care does not do enough to properly care for children."
},
{
"prompt": "Generate a COUNTER argument for the topic: School prayer is a means of forcing religion on students.",
"argument": "Students can choose to believe what they want."
},
{
"prompt": "Generate a COUNTER argument for the topic: Foster care home intentions are not known and cannot be trusted",
"argument": "Foster care parents really needs children and do take care of the children."
},
{
"prompt": "Generate a COUNTER argument for the topic: People will not want to become lawyers if good lawyers have to be public defenders.",
"argument": "Lawyers are sometime motivated by rewards other than money."
},
{
"prompt": "Generate a COUNTER argument for the topic: Breaking rules at school has repercussions.",
"argument": "Some rules have unforeseen consequences and they need to be tweaked."
},
{
"prompt": "Generate a COUNTER argument for the topic: Plastic surgery could save teenagers from emotional pain.",
"argument": "Teenagers could get hooked on pain medication during the recovery from plastic surgery."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Public defenders should not be mandatory.",
"argument": "Not everyone uses public defenders."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms should not be allowed",
"argument": "School uniforms prevent children from being bullied over the clothing they wear."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People with multiple crimes should be penalized and punished heavier than others.",
"argument": "We should punish people more in order to stop them from committing more crimes."
},
{
"prompt": "Generate a COUNTER argument for the topic: Everyone should have a public defender.",
"argument": "Not everyone wants a public defender."
},
{
"prompt": "Generate a COUNTER argument for the topic: Compulsory voting is not a good societal implementation.",
"argument": "Compulsory voting will help to bring more people into the political process."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms are good for school children.",
"argument": "Uniforms do not allow for individualism and individualism is a good thing."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: People have the right to choose their own defender and this is working",
"argument": "Everyone should be allowed to a lawyer capable of defending them and not neglecting them."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Celibacy can result in less reckless sexual activity.",
"argument": "Venereal disease is usually a result of reckless sexual activity, and can be deadly."
},
{
"prompt": "Generate a COUNTER argument for the topic: Students should be allowed to dress however they like",
"argument": "Students dressing as they like could result in bullying those without trendy, expensive clothes."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Payday loans shouldn't be banned.",
"argument": "Payday loans are a tool that can be used by many individuals."
},
{
"prompt": "Generate a COUNTER argument for the topic: Sales of body parts provides income for the poor.",
"argument": "Organ sales is disastrous as poor people can be jilted."
},
{
"prompt": "Generate a COUNTER argument for the topic: Three-strike laws help reduce crime rates.",
"argument": "To say that three-strike laws reduce crime rates could be misleading since proof of this is non-existent."
},
{
"prompt": "Generate a COUNTER argument for the topic: Poor people are often punished, while leaders are not as frequently.",
"argument": "Poor people are more prone to deviant behavior, and leaders are the best of society."
},
{
"prompt": "Generate a COUNTER argument for the topic: Giving unemployed subsidy to dad we improve the standard of life of the family and wife can pursue their career",
"argument": "Wife should stay at home men should work, they are stronger."
},
{
"prompt": "Generate a COUNTER argument for the topic: It is desecrating to the American flag to burn it",
"argument": "Sometimes the only way to get people's attention is to take extreme action."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Businesses will improve if bans are enforced.",
"argument": "Avoiding a business lets them know that they are doing something wrong."
},
{
"prompt": "Generate a COUNTER argument for the topic: It is important to have subsidized student loans, so that all students can go to college.",
"argument": "It isn't the government's responsibility to pay for college."
},
{
"prompt": "Generate a COUNTER argument for the topic: Students need a safe space.",
"argument": "Students need to get used to being judged without having a safe space because that is life."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Students need a safe space.",
"argument": "Safe spaces are built to give students a place where they are not judged."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: School uniforms are taking away choices.",
"argument": "People have the right to decide if they want to wear the school uniforms."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The three strikes law is not the most effective.",
"argument": "Criminals will offend regardless of the strikes."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Activism can lead to corruption in the judicial system.",
"argument": "Judges might be swayed by activists to make a decision even if that decision is incorrect."
},
{
"prompt": "Generate a COUNTER argument for the topic: People choosing who defends them has worked for centuries, and doesn't need to be changed.",
"argument": "Ideas evolve."
},
{
"prompt": "Generate a COUNTER argument for the topic: Whaling is so cruel to the endangered whale species, that you can't defend doing it.",
"argument": "Whaling is important to certain cultures."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should be able to choose their lawyer",
"argument": "If people choose their lawyer it would allow those with money to get the best lawyers."
},
{
"prompt": "Generate a COUNTER argument for the topic: Even in abusive households, biological children should stay with their biological parents.",
"argument": "Ongoing abuse can be very harmful to the mental and physical wellbeing of children."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms keep students from wearing clothes that are deemed as inappropriate",
"argument": "School uniforms keep students from being able to express themselves."
},
{
"prompt": "Generate a COUNTER argument for the topic: People are always motivated to work harder if they will get more money.",
"argument": "Not everyone is focused on having more money. Some are content with what they have."
},
{
"prompt": "Generate a COUNTER argument for the topic: Whaling helps balance the ecosystem in places where there are too many whales.",
"argument": "We have no need to kill whales."
},
{
"prompt": "Generate a COUNTER argument for the topic: Space exploration is important for many novel pursuits, and inventions.",
"argument": "There are many issues on earth that need to be addressed before we turn our attention to outer space."
},
{
"prompt": "Generate a COUNTER argument for the topic: A ban would encourage better business practices.",
"argument": "Some businesses are too busy to take action towards the ban."
},
{
"prompt": "Generate a COUNTER argument for the topic: Space has been explored, and needs no further exploration.",
"argument": "It is foolish to think that humans already know everything there is to know."
},
{
"prompt": "Generate a COUNTER argument for the topic: The 3 strikes law punishes criminals severely.",
"argument": "The 3 strikes law should punish more harshly."
},
{
"prompt": "Generate a COUNTER argument for the topic: Americans should continue to have the right to bear arms.",
"argument": "American citizens are not always capable of being responsible with their right to bear arms."
},
{
"prompt": "Generate a COUNTER argument for the topic: The cost of 3 strike laws are extreme for criminals.",
"argument": "It is not for lack of extreme punishment that 3 strike laws impact repeat offenders."
},
{
"prompt": "Generate a COUNTER argument for the topic: End the war on drugs.",
"argument": "We should not make it easier for people to access drugs."
},
{
"prompt": "Generate a COUNTER argument for the topic: Not receiving a payday loan would be in the best interest of a person's financial situation.",
"argument": "A payday loan would be a non-factor in the way if might affect one's financial situation."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The United States has such a well trained military, there is no need for mercenaries.",
"argument": "Many people within the military have the same job that mercenaries do."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: A white person could not go to college this way.",
"argument": "A white person could not afford college."
},
{
"prompt": "Generate a COUNTER argument for the topic: Since payday loans aren't held to the same standards as loans for middle class people, they should be banned.",
"argument": "Poor people have money emergencies."
},
{
"prompt": "Generate a COUNTER argument for the topic: Mentally ill people need safe places.",
"argument": "People suffering from mental illness should be treated the same at the general public."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Mentally ill people need safe places.",
"argument": "The stigma of mental illness is enough, you should not deny public respite from harm to people who suffer."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms prevent bullying, and should not be done away with",
"argument": "School uniforms prevent students from expressing themselves."
},
{
"prompt": "Generate a COUNTER argument for the topic: Executives should be compensated more.",
"argument": "Workers needs to be paid more as they are the ones that do the most job in the company."
},
{
"prompt": "Generate a COUNTER argument for the topic: They do a lot of dangerous things and that includes the opposition to vaccines.",
"argument": "Vaccines are dangerous and should be opposed."
},
{
"prompt": "Generate a COUNTER argument for the topic: Wearing a uniform lets students concentrate on learning.",
"argument": "Looking unique is important for students."
},
{
"prompt": "Generate a COUNTER argument for the topic: Acting takes children away from their education and normal activities.",
"argument": "Child actors receive a good education because they work with tutors on their off hours."
},
{
"prompt": "Generate a COUNTER argument for the topic: Acting takes children away from their education and normal activities.",
"argument": "Some children enjoy acting."
},
{
"prompt": "Generate a COUNTER argument for the topic: Children with school uniforms can still show individuality with accessories.",
"argument": "Clothing is the basis of individuality."
},
{
"prompt": "Generate a COUNTER argument for the topic: We should adopt gender-neutral language so people are not inadvertently hurt.",
"argument": "It would take a long time to change to gender neutral language and many wouldn't cooperate."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: We should adopt gender-neutral language so people are not inadvertently hurt.",
"argument": "People's feelings can be hurt by the use of gender-oriented language."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Past criminal offenses should have no influence on punishment for current crimes",
"argument": "Many people have learned from their past and are not the same person they once were."
},
{
"prompt": "Generate a COUNTER argument for the topic: It would be dangerous to legalize prostitution because it would cause the trafficking of underage people.",
"argument": "Adult women have a right to make money however they want."
},
{
"prompt": "Generate a COUNTER argument for the topic: Every offence needs to be looked at alone, and not in terms of past offenses. Punishments should fit the current crime.",
"argument": "Law enforcement is able to look at patterns of behavior."
},
{
"prompt": "Generate a COUNTER argument for the topic: Bureaucratic red tape impedes the proper placement of foster children.",
"argument": "Without proper bureaucratic documentation, abusive foster parents can literally get away with murder."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The military should not be privatized.",
"argument": "The military does not rely on private companies."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Three strikes laws increase the prison population",
"argument": "The strikes laws do a good job of increasing the prison population."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Assisted suicide helps people to end their suffering, and should be legal.",
"argument": "If a person is suffering, the decision to die with dignity should be their own."
},
{
"prompt": "Generate a COUNTER argument for the topic: Gender neutral language is good.",
"argument": "By adopting gender-neutral language, we discount an aspect of individuality."
},
{
"prompt": "Generate a COUNTER argument for the topic: The military needs to be supplied by private companies.",
"argument": "Military supply would be maintained independent of the use of private companies."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Mothers should not be forced to have kids and give them up for adoption.",
"argument": "Many new mothers may experience postpartum depression."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: A multi-party system decreases votes of individual candidates.",
"argument": "A multi-party system increases choices, making any individual less likely to receive votes."
},
{
"prompt": "Generate a COUNTER argument for the topic: A multi-party system decreases votes of individual candidates.",
"argument": "A multi-party system ensures that only a good candidate gets a large number of votes."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The three strikes law should remain, because it is a good deterrent for minor criminals who don't want severe consequences.",
"argument": "Life in prison is a deterrent."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: There are more demand for journalism.",
"argument": "There is excess of demand for journalism so subsidizing it has no need."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans should be allowed for children and younger people.",
"argument": "Payday loans for children are good news to con artists."
},
{
"prompt": "Generate a COUNTER argument for the topic: Burning the flag is offensive to many people",
"argument": "Burning the flag is actually the proper way to dispose of a it in certain situations."
},
{
"prompt": "Generate a COUNTER argument for the topic: If people get three strikes, they may use it to their advantage to commit extra crimes before getting to three.",
"argument": "Three strikes gives you three chances before going to jail for a long time."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans should not be banned.",
"argument": "Payday loans are targeted to the poor."
},
{
"prompt": "Generate a COUNTER argument for the topic: The right to bear arms must be limited to stop having America be the murder capital of the world.",
"argument": "The constitution gives a right to bear arms, so there shouldn't be any control on that right."
},
{
"prompt": "Generate a COUNTER argument for the topic: school uniforms are too expensive.",
"argument": "School uniforms are cheaper than regular clothing."
},
{
"prompt": "Generate a COUNTER argument for the topic: If people own guns, they can easily be stolen and fall into the wrong hands.",
"argument": "If people lock up their guns properly, the odds of them being stolen are very low."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Students do not feel the difference between themselves because they wear school uniforms.",
"argument": "Sometimes students feel similarity through school uniforms but their individuality is denied."
},
{
"prompt": "Generate a COUNTER argument for the topic: We cannot trust article on wikipedia, they can be edited by rogues and giving out wrong info",
"argument": "Wikipedia is secured, you can trust it's article."
},
{
"prompt": "Generate a COUNTER argument for the topic: The three-strikes law stops criminals from committing more crimes.",
"argument": "Criminals try to evade the three-strikes rule."
},
{
"prompt": "Generate a COUNTER argument for the topic: Mandatory retirement is more dignified than being fired for poor performance.",
"argument": "Mandatory retirement is functionally the same as being fired, and is not more dignified."
},
{
"prompt": "Generate a COUNTER argument for the topic: Since children in uniforms can't bully each other about how they're dressed, school uniforms should not be abandoned.",
"argument": "Kids will find other things to pick on each other about."
},
{
"prompt": "Generate a COUNTER argument for the topic: payday loans lead low income people even further into poverty.",
"argument": "People need to make money to get them out of poverty."
},
{
"prompt": "Generate a COUNTER argument for the topic: school uniforms provide fewer distractions from learning.",
"argument": "Some students always strive to get good academic results no matter what."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The three strikes law allows people to make mistakes and not be punished too harshly right away.",
"argument": "The three strikes and you're out law is designed to punish repeat offender so first time offenders have a chance to redeem themselves."
},
{
"prompt": "Generate a COUNTER argument for the topic: Three strikes gives way for someone making a mistake, without too harsh a punishment the first time.",
"argument": "Criminals commit as many crimes as they can."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms allow children to concentrate on their work instead of their fashion choices.",
"argument": "When children are distracted, it is not because of the clothes people are wearing."
},
{
"prompt": "Generate a COUNTER argument for the topic: A payday loan can help for sudden financial situations that occur before you get your weekly paycheck.",
"argument": "Money emergencies can't be helped."
},
{
"prompt": "Generate a COUNTER argument for the topic: ban private military companies",
"argument": "Using the private sector in war can do a lot to improve conditions on the ground."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans help people in need.",
"argument": "Payday loans charge high rates."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: The three strikes and you're out law targets men of color.",
"argument": "Some people are inclined to believe that the three strikes and you're out law discriminates against people of color."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms are not a good option for students.",
"argument": "Uniforms are worn in a variety of situations, not just for school students."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: the three-strike law should be kept",
"argument": "Taking away the three strikes law put citizen in danger."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans are harmful.",
"argument": "Payday loans allow for quick cash."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should wear whatever clothing they want to express themselves.",
"argument": "School uniforms do not mean that children have no self expression."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: We shouldn't get rid of school uniforms because not everyone can afford clothing, and they could end up getting teased.",
"argument": "Kids judge each other."
},
{
"prompt": "Generate a COUNTER argument for the topic: Since kids can get picked on when their parents can't afford nice clothing, we shouldn't get rid of school uniforms.",
"argument": "Kids will find other things to pick on each other about and teasing will still happen."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms reduce social inequality.",
"argument": "Kids in the USA often wear clothing as a means of expression."
},
{
"prompt": "Generate a COUNTER argument for the topic: Some people only care about monetary gains from warring with other countries, and not the lives that have been lost in the wars.",
"argument": "People logically recognize that lost lives are a tragedy, but a war and its monetary gains are ultimately beneficial to a country and its people."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Payday loans are risky.",
"argument": "People cannot pay back payday loans."
},
{
"prompt": "Generate a COUNTER argument for the topic: Private military companies shouldn't work together due to inconsistencies.",
"argument": "Private military companies can learn more information by working together."
},
{
"prompt": "Generate a COUNTER argument for the topic: Private Military companies are solely profit oriented.",
"argument": "Private companies can't orient themselves toward attitudes that American Veterans organizations like the American Legion and VFW share without some changes."
},
{
"prompt": "Generate a COUNTER argument for the topic: Payday loans are terrible.",
"argument": "Applying for a payday loan is optional."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Social media helps the world socially.",
"argument": "Many people do not like face-to-face socialization."
},
{
"prompt": "Generate a COUNTER argument for the topic: people committing small offenses do not deserve to be put away for life.",
"argument": "People committing small offenses may break the law again."
},
{
"prompt": "Generate a COUNTER argument for the topic: Social media allows people to connect with people that they otherwise could not connect with",
"argument": "You aren't really connecting with someone on a meaningful level if it is done over the internet."
},
{
"prompt": "Generate a COUNTER argument for the topic: School uniforms help people to be smarter.",
"argument": "School uniforms help people in hiding their actual intelligence."
},
{
"prompt": "Generate a COUNTER argument for the topic: The three strikes law works.",
"argument": "The three strikes law punishes for minor offenses."
},
{
"prompt": "Generate a COUNTER argument for the topic: The three strikes law counts insignificant crimes and this can lead to unfair jail times.",
"argument": "It would be in favor of society to keep the three strikes and you're out law because there is no such thing as an insignificant crime."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: School uniforms are better than regular clothing.",
"argument": "School uniforms are less likely to cause conflict."
},
{
"prompt": "Generate a COUNTER argument for the topic: The three strikes laws don't show any empathy, and haven't been proven to be functional.",
"argument": "Some cases have extenuating circumstances."
},
{
"prompt": "Generate a COUNTER argument for the topic: A private military company's primary goal is profit.",
"argument": "It is impossible to correctly assess the goals of all private military companies."
},
{
"prompt": "Generate a COUNTER argument for the topic: The three strikes law needs to end.",
"argument": "The three strikes law prevents further crime from happening."
},
{
"prompt": "Generate a COUNTER argument for the topic: There's no oversight to prevent private military companies from committing atrocities.",
"argument": "God can see all crimes and will not be afraid to hold people accountable."
},
{
"prompt": "Generate a COUNTER argument for the topic: The chance for rehabilitation is sometimes taken away from three-strike offenders.",
"argument": "Three-strike offenders are not punished immediately."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Using a private military company isn't any different than buying weapons or vehicles from private companies.",
"argument": "The meaning of private doesn't vary."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: school uniforms cost too much for poor families.",
"argument": "Poor families' grievance is a concern in our society."
},
{
"prompt": "Generate a COUNTER argument for the topic: Committing 3 offenses does not always mean someone needs harsh punishment.",
"argument": "A person should learn their lesson after one offense."
},
{
"prompt": "Generate a COUNTER argument for the topic: Something, which violates international law, causes more violence and death.",
"argument": "Something can be unlawful and change the outcome to be less deadly."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Private military companies can get into places where the terrorists are, and not have to worry about global law.",
"argument": "We can't let terrorists get away."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Since government employees get bodyguards, companies in foreign countries deserve protection from private military companies.",
"argument": "Everyone deserves safety."
},
{
"prompt": "Generate a COUNTER argument for the topic: companies operating overseas need protection too",
"argument": "These companies can do better than hiring private military contractors that are unaccountable where they operate."
},
{
"prompt": "Generate a COUNTER argument for the topic: companies need to use private military contractors for safety reasons",
"argument": "Private military contractors are often unaccountable to anyone when they are out in the field."
},
{
"prompt": "Generate a COUNTER argument for the topic: Private military companies fill in gaps for the military.",
"argument": "The military are held to higher ethical standards than companies."
},
{
"prompt": "Generate a COUNTER argument for the topic: Missionary work helps people who would otherwise have no help.",
"argument": "Missionaries help people to only believe what they believe."
},
{
"prompt": "Generate a COUNTER argument for the topic: Missionary work should be stopped as the wage it is not paid well.",
"argument": "The missionary work is more like a voluntary so anyone who wants to do it, can do it."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Missionaries are the only ones benefiting from their work.",
"argument": "The goal of missionaries is to impose their religious beliefs."
},
{
"prompt": "Generate a COUNTER argument for the topic: anyone can say what they think.",
"argument": "No one deserves to be offended by someone else."
},
{
"prompt": "Generate a COUNTER argument for the topic: When everyone is forced to vote, we will know how many people are in the country",
"argument": "Voting can never be used as a form of census as people under 18 are not allowed to vote."
},
{
"prompt": "Generate a COUNTER argument for the topic: People have the right to bear arm in other to protect themselves from danger",
"argument": "People misuse the opportunity given to them to bear arm, sometimes arms bearing needs to be abolished."
},
{
"prompt": "Generate a COUNTER argument for the topic: Foster home makes it easy for a child to get permanent home.",
"argument": "Some foster parent are tends to abuse children not all children get good house."
},
{
"prompt": "Generate a COUNTER argument for the topic: Voting should not be forced.",
"argument": "Voting should be compulsory as to add more to the vote count."
},
{
"prompt": "Generate a COUNTER argument for the topic: Intellectual property itself is complex",
"argument": "People find it easy to understand intellectual property."
},
{
"prompt": "Generate a COUNTER argument for the topic: Safe spaces are important to personal emotional health.",
"argument": "Safe spaces provide a false sense of security, as anyone can participate under false pretense.."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Student loans should not be subsidized.",
"argument": "Student loans make students slack off due to not being responsible right away."
},
{
"prompt": "Generate a COUNTER argument for the topic: Telemarketing offers a net gain to society.",
"argument": "Telemarketers are a nuisance."
},
{
"prompt": "Generate a COUNTER argument for the topic: Some people are just politically Apathetic",
"argument": "Everyone should participate in politics to ensure good governance."
},
{
"prompt": "Generate a COUNTER argument for the topic: If whaling is outlawed a black market will start up and cause more harm.",
"argument": "Whaling is damaging to whales and should therefore be outlawed."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Homeopathy can be harmful.",
"argument": "Many homeopathic remedies are not approved by the FDA."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: people do not need firearms in the present day.",
"argument": "The right to bear arms is antiquated."
},
{
"prompt": "Generate a COUNTER argument for the topic: People have the choice about what to do with their own body.",
"argument": "If what someone does with their body harms another it should not be allowed."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Sometimes you must be economically viable to vote.",
"argument": "In terms access to transportation, standing in the way of people, and their vote in this day and age."
},
{
"prompt": "Generate a COUNTER argument for the topic: Students need to be guided and supported, and it's important because they are our future.",
"argument": "Students need to learn self reliance."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: It is the right of a business owner as to how they pay executives.",
"argument": "Executives are responsible for a lot of people, and should be paid accordingly."
},
{
"prompt": "Generate a COUNTER argument for the topic: Surrogacy is often the only option for some people who want kids.",
"argument": "Surrogacy is dangerous for the person carrying the child."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Most telemarketers are scammers",
"argument": "Telemarketing is an easy way to advertise product but cannot be trusted."
},
{
"prompt": "Generate a COUNTER argument for the topic: Surrogacy is an act of creating life",
"argument": "Surrogacy should not be allowed as it allows for creation and determination of human life."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Adoption of a child is moral while surrogacy is immoral",
"argument": "Adoption should be encouraged as their are lots of children who needs parent than parents who needs children."
},
{
"prompt": "Generate a COUNTER argument for the topic: Organ trade is dangerous and people would kill to get organ in other to trade",
"argument": "Organ trade can be a source of income for the poor."
},
{
"prompt": "Generate a COUNTER argument for the topic: Assisted suicide should be an option for terminal patients.",
"argument": "Doctors swear an oath to \"do no harm,\" and helping a patient commit suicide is doing harm."
},
{
"prompt": "Generate a COUNTER argument for the topic: When people do not vote they are still making a statement and they shouldn't be forced to vote.",
"argument": "Not voting can demonstrate a lack of awareness about the issues."
},
{
"prompt": "Generate a COUNTER argument for the topic: Misinformation about cures for cancer causes sudden death for people.",
"argument": "People do not pass away because of cancer treatment false information, but because of ignorance."
},
{
"prompt": "Generate a COUNTER argument for the topic: Assisted suicide can be misused.",
"argument": "Assisted suicide has systems in place to prevent third party abuse."
},
{
"prompt": "Generate a COUNTER argument for the topic: People should not be forced to exercise their right to vote.",
"argument": "If people fail to vote we could end up with a winner not representative of the people."
},
{
"prompt": "Generate a SUPPORTING argument for the topic: Over 50 percent of students can't afford to pay for college because it's so expensive.",
"argument": "College can be very expensive."
},
{
"prompt": "Generate a COUNTER argument for the topic: Child actors should be allowed to work.",
"argument": "Children should not be subjected to an industry that makes them grow up quicker than they should."
},
{
"prompt": "Generate a COUNTER argument for the topic: Some people's skills are better suited to areas other than battle in the military.",
"argument": "The military has a need for a great many skills."
},
{
"prompt": "Generate a COUNTER argument for the topic: School prayer allows student to do what they are not thought at home",
"argument": "School prayer should be discouraged as it teaches the students other things from what they are thoughts."
}
] |