feat: lots of work

This commit is contained in:
Nick 2024-12-08 02:18:36 -06:00
parent 4a19d6eb06
commit 848038b62b
158 changed files with 1361 additions and 685 deletions

View file

@ -2,7 +2,7 @@ module Config.CardFormat exposing (..)
import Config.Colour exposing (..) import Config.Colour exposing (..)
import Config.Format exposing (..) import Config.Format exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
import Effect exposing (Effect) import Effect exposing (Effect)
import Element as E exposing (..) import Element as E exposing (..)
import Element.Background as B exposing (..) import Element.Background as B exposing (..)

View file

@ -11,6 +11,7 @@ type alias Theme =
, textDarkGrey : Color , textDarkGrey : Color
, textLightOrange : Color , textLightOrange : Color
, textDarkOrange : Color , textDarkOrange : Color
, textDeepDarkOrange : Color
, backgroundLightGrey : Color , backgroundLightGrey : Color
, debugColour : Color , debugColour : Color
, backgroundDarkGrey : Color , backgroundDarkGrey : Color
@ -26,6 +27,7 @@ colourTheme =
, textDarkGrey = rgb255 126 126 126 , textDarkGrey = rgb255 126 126 126
, textLightOrange = rgb255 204 102 0 , textLightOrange = rgb255 204 102 0
, textDarkOrange = rgb255 120 60 0 , textDarkOrange = rgb255 120 60 0
, textDeepDarkOrange = rgb255 60 30 0
, backgroundLightGrey = rgb255 40 40 40 , backgroundLightGrey = rgb255 40 40 40
, debugColour = rgb255 227 28 121 , debugColour = rgb255 227 28 121
, backgroundDarkGrey = rgb255 30 30 30 , backgroundDarkGrey = rgb255 30 30 30

View file

@ -4,6 +4,7 @@ module Config.Identity exposing (..)
type alias PageInput = type alias PageInput =
{ pageHome : String { pageHome : String
, pageContact : String , pageContact : String
, pageArguments : String
, pageDebate : String , pageDebate : String
, pageCucks : String , pageCucks : String
, pageGibberish : String , pageGibberish : String
@ -17,10 +18,11 @@ type alias PageInput =
pageNames : PageInput pageNames : PageInput
pageNames = pageNames =
{ pageHome = "Home" { pageHome = "home"
, pageServices = "services" , pageServices = "services"
, pageCucks = "cuckList" , pageCucks = "cuckList"
, pageDebate = "arguments" , pageArguments = "arguments"
, pageDebate = "debate"
, pageGibberish = "gibberish" , pageGibberish = "gibberish"
, pageHyperBlog = "hyperBlog" , pageHyperBlog = "hyperBlog"
, pageNutriDex = "nutriDex" , pageNutriDex = "nutriDex"
@ -28,3 +30,7 @@ pageNames =
, pageContact = "contact" , pageContact = "contact"
, pageDonate = "donate" , pageDonate = "donate"
} }
url =
"http://localhost:1234/"

View file

@ -3,7 +3,7 @@ module Config.StrengthBar exposing (..)
import Config.Colour exposing (..) import Config.Colour exposing (..)
import Config.Format exposing (..) import Config.Format exposing (..)
import Config.ToolTip exposing (..) import Config.ToolTip exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
import Effect exposing (Effect) import Effect exposing (Effect)
import Element as E exposing (..) import Element as E exposing (..)
import Element.Background as B exposing (..) import Element.Background as B exposing (..)

View file

@ -1,11 +1,61 @@
module Debate.Helpers exposing (..) module Debate.Arguments.Helpers exposing (..)
import Config.CardFormat exposing (..) import Config.CardFormat exposing (..)
import Config.Colour as T exposing (..) import Config.Colour as T exposing (..)
import Config.Format as O exposing (..) import Config.Format as O exposing (..)
import Config.StrengthBar exposing (..) import Config.StrengthBar exposing (..)
import Config.ToolTip exposing (..) import Config.ToolTip exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Inferences.Abortion exposing (..)
import Debate.Arguments.Inferences.Agnosticism exposing (..)
import Debate.Arguments.Inferences.AgriculturalPredation exposing (..)
import Debate.Arguments.Inferences.AnabolicKeto exposing (..)
import Debate.Arguments.Inferences.AnimalRights exposing (..)
import Debate.Arguments.Inferences.AntagonisticPleiotropy exposing (..)
import Debate.Arguments.Inferences.AntiRewilding exposing (..)
import Debate.Arguments.Inferences.AntiVandalism exposing (..)
import Debate.Arguments.Inferences.ApoBCVD exposing (..)
import Debate.Arguments.Inferences.BoobyTrapPagers exposing (..)
import Debate.Arguments.Inferences.CarbsObesity exposing (..)
import Debate.Arguments.Inferences.ColonizingNature exposing (..)
import Debate.Arguments.Inferences.CropDeaths exposing (..)
import Debate.Arguments.Inferences.DairyCowRape exposing (..)
import Debate.Arguments.Inferences.DietaryCholesterol exposing (..)
import Debate.Arguments.Inferences.EfilismPatrolSquad exposing (..)
import Debate.Arguments.Inferences.EpidemiologyCausality exposing (..)
import Debate.Arguments.Inferences.EthicalSlurs exposing (..)
import Debate.Arguments.Inferences.FineTuning exposing (..)
import Debate.Arguments.Inferences.FlatEarthDebunk exposing (..)
import Debate.Arguments.Inferences.FructoseNAFLD exposing (..)
import Debate.Arguments.Inferences.HealthPromotingFoods exposing (..)
import Debate.Arguments.Inferences.HealthSeeker exposing (..)
import Debate.Arguments.Inferences.HealthyChocolate exposing (..)
import Debate.Arguments.Inferences.HealthyDairy exposing (..)
import Debate.Arguments.Inferences.HealthyFattyFish exposing (..)
import Debate.Arguments.Inferences.HealthyFibre exposing (..)
import Debate.Arguments.Inferences.HealthyFood exposing (..)
import Debate.Arguments.Inferences.HealthyPlantFoods exposing (..)
import Debate.Arguments.Inferences.HealthySeedOils exposing (..)
import Debate.Arguments.Inferences.HealthySoy exposing (..)
import Debate.Arguments.Inferences.ImmortalityReductio exposing (..)
import Debate.Arguments.Inferences.Malondialdehyde exposing (..)
import Debate.Arguments.Inferences.OddOrderPredators exposing (..)
import Debate.Arguments.Inferences.Omega3Omega6Ratio exposing (..)
import Debate.Arguments.Inferences.Ostroveganism exposing (..)
import Debate.Arguments.Inferences.PlantBasedCVDReversal exposing (..)
import Debate.Arguments.Inferences.PollinationReductio exposing (..)
import Debate.Arguments.Inferences.PolyphenolReductio exposing (..)
import Debate.Arguments.Inferences.ScratcherPioneers exposing (..)
import Debate.Arguments.Inferences.SodiumCVD exposing (..)
import Debate.Arguments.Inferences.TMAOCausality exposing (..)
import Debate.Arguments.Inferences.Template exposing (argument)
import Debate.Arguments.Inferences.TransPeople exposing (..)
import Debate.Arguments.Inferences.TruncatedMeta exposing (..)
import Debate.Arguments.Inferences.UnhealthyCoconutOil exposing (..)
import Debate.Arguments.Inferences.UnhealthyProcessedMeat exposing (..)
import Debate.Arguments.Inferences.UnhealthyRedMeat exposing (..)
import Debate.Arguments.Inferences.UnhealthySaturatedFat exposing (..)
import Debate.Arguments.Inferences.VeganSocietyReductio exposing (..)
import Debate.Arguments.Types exposing (..)
import Effect exposing (Effect) import Effect exposing (Effect)
import Element as E exposing (..) import Element as E exposing (..)
import Element.Background as B exposing (..) import Element.Background as B exposing (..)
@ -547,9 +597,8 @@ proofTreeMaker argument =
, E.alignRight , E.alignRight
, transitionStyle , transitionStyle
, mouseOver , mouseOver
[ B.color colourTheme.textDarkOrange [ B.color colourTheme.textDeepDarkOrange
, F.color colourTheme.textLightGrey , F.color colourTheme.textDarkGrey
, D.color colourTheme.textDarkOrange
] ]
] ]
) )
@ -558,3 +607,62 @@ proofTreeMaker argument =
} }
] ]
] ]
argumentList : List Argument
argumentList =
[ argumentApoBCVD
, argumentAnabolicKeto
, argumentAntagonisticPleiotropy
, argumentCarbsObesity
, argumentDietaryCholesterol
, argumentFructoseNAFLD
, argumentHealthPromotingFoods
, argumentHealthSeeker
, argumentHealthyChocolate
, argumentHealthyDairy
, argumentHealthyFattyFish
, argumentHealthyFibre
, argumentHealthyFood
, argumentHealthyPlantFoods
, argumentHealthySeedOils
, argumentHealthySoy
, argumentMalondialdehyde
, argumentOmega3Omega6Ratio
, argumentPlantBasedCVDReversal
, argumentPolyphenolReductio
, argumentSodiumCVD
, argumentTMAOCausality
, argumentUnhealthyCoconutOil
, argumentUnhealthyProcessedMeat
, argumentUnhealthyRedMeat
, argumentUnhealthySaturatedFat
, argumentAbortion
, argumentAgnosticism
, argumentAgriculturalPredation
, argumentAnimalRights
, argumentAntiRewilding
, argumentAntiVandalism
, argumentColonizingNature
, argumentCropDeaths
, argumentDairyCowRape
, argumentEfilismPatrolSquad
, argumentEthicalSlurs
, argumentFineTuning
, argumentImmortalityReductio
, argumentOddOrderPredators
, argumentOstroveganism
, argumentPollinationReductio
, argumentScratcherPioneers
, argumentTransPeople
, argumentVeganSocietyReductio
, argumentBoobyTrapPagers
, argumentEpidemiologyCausality
, argumentFlatEarthDebunk
, argumentTruncatedMeta
]
argumentListNumber : Int
argumentListNumber =
List.length argumentList

View file

@ -1,6 +1,6 @@
module Debate.Arguments.Abortion exposing (..) module Debate.Arguments.Inferences.Abortion exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAbortion : Argument argumentAbortion : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.Agnosticism exposing (..) module Debate.Arguments.Inferences.Agnosticism exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAgnosticism : Argument argumentAgnosticism : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.AgriculturalPredation exposing (..) module Debate.Arguments.Inferences.AgriculturalPredation exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAgriculturalPredation : Argument argumentAgriculturalPredation : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.AnabolicKeto exposing (..) module Debate.Arguments.Inferences.AnabolicKeto exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAnabolicKeto : Argument argumentAnabolicKeto : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.AnimalRights exposing (..) module Debate.Arguments.Inferences.AnimalRights exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAnimalRights : Argument argumentAnimalRights : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.AntagonisticPleiotropy exposing (..) module Debate.Arguments.Inferences.AntagonisticPleiotropy exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAntagonisticPleiotropy : Argument argumentAntagonisticPleiotropy : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.AntiRewilding exposing (..) module Debate.Arguments.Inferences.AntiRewilding exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAntiRewilding : Argument argumentAntiRewilding : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.AntiVandalism exposing (..) module Debate.Arguments.Inferences.AntiVandalism exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentAntiVandalism : Argument argumentAntiVandalism : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.ApoBCVD exposing (..) module Debate.Arguments.Inferences.ApoBCVD exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentApoBCVD : Argument argumentApoBCVD : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.BoobyTrapPagers exposing (..) module Debate.Arguments.Inferences.BoobyTrapPagers exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentBoobyTrapPagers : Argument argumentBoobyTrapPagers : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.CarbsObesity exposing (..) module Debate.Arguments.Inferences.CarbsObesity exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentCarbsObesity : Argument argumentCarbsObesity : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.ColonizingNature exposing (..) module Debate.Arguments.Inferences.ColonizingNature exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentColonizingNature : Argument argumentColonizingNature : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.CropDeaths exposing (..) module Debate.Arguments.Inferences.CropDeaths exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentCropDeaths : Argument argumentCropDeaths : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.DairyCowRape exposing (..) module Debate.Arguments.Inferences.DairyCowRape exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentDairyCowRape : Argument argumentDairyCowRape : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.DietaryCholesterol exposing (..) module Debate.Arguments.Inferences.DietaryCholesterol exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentDietaryCholesterol : Argument argumentDietaryCholesterol : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.EfilismPatrolSquad exposing (..) module Debate.Arguments.Inferences.EfilismPatrolSquad exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentEfilismPatrolSquad : Argument argumentEfilismPatrolSquad : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.EpidemiologyCausality exposing (..) module Debate.Arguments.Inferences.EpidemiologyCausality exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentEpidemiologyCausality : Argument argumentEpidemiologyCausality : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.EthicalSlurs exposing (..) module Debate.Arguments.Inferences.EthicalSlurs exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentEthicalSlurs : Argument argumentEthicalSlurs : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.FineTuning exposing (..) module Debate.Arguments.Inferences.FineTuning exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentFineTuning : Argument argumentFineTuning : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.FlatEarthDebunk exposing (..) module Debate.Arguments.Inferences.FlatEarthDebunk exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentFlatEarthDebunk : Argument argumentFlatEarthDebunk : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.FructoseNAFLD exposing (..) module Debate.Arguments.Inferences.FructoseNAFLD exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentFructoseNAFLD : Argument argumentFructoseNAFLD : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthPromotingFoods exposing (..) module Debate.Arguments.Inferences.HealthPromotingFoods exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthPromotingFoods : Argument argumentHealthPromotingFoods : Argument
argumentHealthPromotingFoods = argumentHealthPromotingFoods =

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthSeeker exposing (..) module Debate.Arguments.Inferences.HealthSeeker exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthSeeker : Argument argumentHealthSeeker : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthyChocolate exposing (..) module Debate.Arguments.Inferences.HealthyChocolate exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthyChocolate : Argument argumentHealthyChocolate : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthyDairy exposing (..) module Debate.Arguments.Inferences.HealthyDairy exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthyDairy : Argument argumentHealthyDairy : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthyFattyFish exposing (..) module Debate.Arguments.Inferences.HealthyFattyFish exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthyFattyFish : Argument argumentHealthyFattyFish : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthyFibre exposing (..) module Debate.Arguments.Inferences.HealthyFibre exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthyFibre : Argument argumentHealthyFibre : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthyFood exposing (..) module Debate.Arguments.Inferences.HealthyFood exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthyFood : Argument argumentHealthyFood : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthyPlantFoods exposing (..) module Debate.Arguments.Inferences.HealthyPlantFoods exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthyPlantFoods : Argument argumentHealthyPlantFoods : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthySeedOils exposing (..) module Debate.Arguments.Inferences.HealthySeedOils exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthySeedOils : Argument argumentHealthySeedOils : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.HealthySoy exposing (..) module Debate.Arguments.Inferences.HealthySoy exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentHealthySoy : Argument argumentHealthySoy : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.ImmortalityReductio exposing (..) module Debate.Arguments.Inferences.ImmortalityReductio exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentImmortalityReductio : Argument argumentImmortalityReductio : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.Malondialdehyde exposing (..) module Debate.Arguments.Inferences.Malondialdehyde exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentMalondialdehyde : Argument argumentMalondialdehyde : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.OddOrderPredators exposing (..) module Debate.Arguments.Inferences.OddOrderPredators exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentOddOrderPredators : Argument argumentOddOrderPredators : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.Omega3Omega6Ratio exposing (..) module Debate.Arguments.Inferences.Omega3Omega6Ratio exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentOmega3Omega6Ratio : Argument argumentOmega3Omega6Ratio : Argument
argumentOmega3Omega6Ratio = argumentOmega3Omega6Ratio =

View file

@ -1,6 +1,6 @@
module Debate.Arguments.Ostroveganism exposing (..) module Debate.Arguments.Inferences.Ostroveganism exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentOstroveganism : Argument argumentOstroveganism : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.PlantBasedCVDReversal exposing (..) module Debate.Arguments.Inferences.PlantBasedCVDReversal exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentPlantBasedCVDReversal : Argument argumentPlantBasedCVDReversal : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.PollinationReductio exposing (..) module Debate.Arguments.Inferences.PollinationReductio exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentPollinationReductio : Argument argumentPollinationReductio : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.PolyphenolReductio exposing (..) module Debate.Arguments.Inferences.PolyphenolReductio exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentPolyphenolReductio : Argument argumentPolyphenolReductio : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.ScratcherPioneers exposing (..) module Debate.Arguments.Inferences.ScratcherPioneers exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentScratcherPioneers : Argument argumentScratcherPioneers : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.SodiumCVD exposing (..) module Debate.Arguments.Inferences.SodiumCVD exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentSodiumCVD : Argument argumentSodiumCVD : Argument
argumentSodiumCVD = argumentSodiumCVD =

View file

@ -1,6 +1,6 @@
module Debate.Arguments.TMAOCausality exposing (..) module Debate.Arguments.Inferences.TMAOCausality exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentTMAOCausality : Argument argumentTMAOCausality : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.Template exposing (..) module Debate.Arguments.Inferences.Template exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argument : Argument argument : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.TransPeople exposing (..) module Debate.Arguments.Inferences.TransPeople exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentTransPeople : Argument argumentTransPeople : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.TruncatedMeta exposing (..) module Debate.Arguments.Inferences.TruncatedMeta exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentTruncatedMeta : Argument argumentTruncatedMeta : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.UnhealthyCoconutOil exposing (..) module Debate.Arguments.Inferences.UnhealthyCoconutOil exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentUnhealthyCoconutOil : Argument argumentUnhealthyCoconutOil : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.UnhealthyProcessedMeat exposing (..) module Debate.Arguments.Inferences.UnhealthyProcessedMeat exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentUnhealthyProcessedMeat : Argument argumentUnhealthyProcessedMeat : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.UnhealthyRedMeat exposing (..) module Debate.Arguments.Inferences.UnhealthyRedMeat exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentUnhealthyRedMeat : Argument argumentUnhealthyRedMeat : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.UnhealthySaturatedFat exposing (..) module Debate.Arguments.Inferences.UnhealthySaturatedFat exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentUnhealthySaturatedFat : Argument argumentUnhealthySaturatedFat : Argument

View file

@ -1,6 +1,6 @@
module Debate.Arguments.VeganSocietyReductio exposing (..) module Debate.Arguments.Inferences.VeganSocietyReductio exposing (..)
import Debate.Types exposing (..) import Debate.Arguments.Types exposing (..)
argumentVeganSocietyReductio : Argument argumentVeganSocietyReductio : Argument

View file

@ -1,4 +1,4 @@
module Debate.Types exposing (..) module Debate.Arguments.Types exposing (..)
-- ARGUMENTS -- ARGUMENTS

View file

@ -1,7 +1,6 @@
module Cuckery.CuckList.AdamSinger.AdamSinger exposing (..) module Debate.Cuckery.CuckList.AdamSinger exposing (..)
import Cuckery.Helpers exposing (..) import Debate.Cuckery.Types exposing (..)
import Cuckery.Types exposing (..)
cuckAdamSinger : Cuck cuckAdamSinger : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.AmberOHearn.AmberOHearn exposing (..) module Debate.Cuckery.CuckList.AmberOHearn exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckAmberOHearn : Cuck cuckAmberOHearn : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.AnnChilders.AnnChilders exposing (..) module Debate.Cuckery.CuckList.AnnChilders exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckAnnChilders : Cuck cuckAnnChilders : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.AnthonyGustin.AnthonyGustin exposing (..) module Debate.Cuckery.CuckList.AnthonyGustin exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckAnthonyGustin : Cuck cuckAnthonyGustin : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.AshwaniGarg.AshwaniGarg exposing (..) module Debate.Cuckery.CuckList.AshwaniGarg exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckAshwaniGarg : Cuck cuckAshwaniGarg : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.AustinHerbert.AustinHerbert exposing (..) module Debate.Cuckery.CuckList.AustinHerbert exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckAustinHerbert : Cuck cuckAustinHerbert : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BartKay.BartKay exposing (..) module Debate.Cuckery.CuckList.BartKay exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBartKay : Cuck cuckBartKay : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BenBikman.BenBikman exposing (..) module Debate.Cuckery.CuckList.BenBikman exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBenBikman : Cuck cuckBenBikman : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BennyMalone.BennyMalone exposing (..) module Debate.Cuckery.CuckList.BennyMalone exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBennyMalone : Cuck cuckBennyMalone : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BradCampbell.BradCampbell exposing (..) module Debate.Cuckery.CuckList.BradCampbell exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBradCampbell : Cuck cuckBradCampbell : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BradCohn.BradCohn exposing (..) module Debate.Cuckery.CuckList.BradCohn exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBradCohn : Cuck cuckBradCohn : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BradMarshall.BradMarshall exposing (..) module Debate.Cuckery.CuckList.BradMarshall exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBradMarshall : Cuck cuckBradMarshall : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BretWeinstein.BretWeinstein exposing (..) module Debate.Cuckery.CuckList.BretWeinstein exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBretWeinstein : Cuck cuckBretWeinstein : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.BrianKerley.BrianKerley exposing (..) module Debate.Cuckery.CuckList.BrianKerley exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckBrianKerley : Cuck cuckBrianKerley : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.CarnivoreAurelius.CarnivoreAurelius exposing (..) module Debate.Cuckery.CuckList.CarnivoreAurelius exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckCarnivoreAurelius : Cuck cuckCarnivoreAurelius : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.CateShanahan.CateShanahan exposing (..) module Debate.Cuckery.CuckList.CateShanahan exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckCateShanahan : Cuck cuckCateShanahan : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.ChrisBoettcher.ChrisBoettcher exposing (..) module Debate.Cuckery.CuckList.ChrisBoettcher exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckChrisBoettcher : Cuck cuckChrisBoettcher : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.ClaraAboel.ClaraAboel exposing (..) module Debate.Cuckery.CuckList.ClaraAboel exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckClaraAboel : Cuck cuckClaraAboel : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.CliffHarvey.CliffHarvey exposing (..) module Debate.Cuckery.CuckList.CliffHarvey exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckCliffHarvey : Cuck cuckCliffHarvey : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.DaveFeldman.DaveFeldman exposing (..) module Debate.Cuckery.CuckList.DaveFeldman exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckDaveFeldman : Cuck cuckDaveFeldman : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.DavidDiamond.DavidDiamond exposing (..) module Debate.Cuckery.CuckList.DavidDiamond exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckDavidDiamond : Cuck cuckDavidDiamond : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.DavidGornoski.DavidGornoski exposing (..) module Debate.Cuckery.CuckList.DavidGornoski exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckDavidGornoski : Cuck cuckDavidGornoski : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.DianaRodgers.DianaRodgers exposing (..) module Debate.Cuckery.CuckList.DianaRodgers exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckDianaRodgers : Cuck cuckDianaRodgers : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.EdwardGoeke.EdwardGoeke exposing (..) module Debate.Cuckery.CuckList.EdwardGoeke exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckEdwardGoeke : Cuck cuckEdwardGoeke : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.ElieJarrouge.ElieJarrouge exposing (..) module Debate.Cuckery.CuckList.ElieJarrouge exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckElieJarrouge : Cuck cuckElieJarrouge : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.GaryBrecka.GaryBrecka exposing (..) module Debate.Cuckery.CuckList.GaryBrecka exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckGaryBrecka : Cuck cuckGaryBrecka : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.GaryFettke.GaryFettke exposing (..) module Debate.Cuckery.CuckList.GaryFettke exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckGaryFettke : Cuck cuckGaryFettke : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.GaryTaubes.GaryTaubes exposing (..) module Debate.Cuckery.CuckList.GaryTaubes exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckGaryTaubes : Cuck cuckGaryTaubes : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.GeorgeMartin.GeorgeMartin exposing (..) module Debate.Cuckery.CuckList.GeorgeMartin exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckGeorgeMartin : Cuck cuckGeorgeMartin : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.GuyAustin.GuyAustin exposing (..) module Debate.Cuckery.CuckList.GuyAustin exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckGuyAustin : Cuck cuckGuyAustin : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.IvorCummins.IvorCummins exposing (..) module Debate.Cuckery.CuckList.IvorCummins exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckIvorCummins : Cuck cuckIvorCummins : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.JakeMey.JakeMey exposing (..) module Debate.Cuckery.CuckList.JakeMey exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckJakeMey : Cuck cuckJakeMey : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.JamesDiNicolantonio.JamesDiNicolantonio exposing (..) module Debate.Cuckery.CuckList.JamesDiNicolantonio exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckJamesDiNicolantonio : Cuck cuckJamesDiNicolantonio : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.JosephEverett.JosephEverett exposing (..) module Debate.Cuckery.CuckList.JosephEverett exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckJosephEverett : Cuck cuckJosephEverett : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.JustinMares.JustinMares exposing (..) module Debate.Cuckery.CuckList.JustinMares exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckJustinMares : Cuck cuckJustinMares : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.KaitMalthaner.KaitMalthaner exposing (..) module Debate.Cuckery.CuckList.KaitMalthaner exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckKaitMalthaner : Cuck cuckKaitMalthaner : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.KemMinnick.KemMinnick exposing (..) module Debate.Cuckery.CuckList.KemMinnick exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckKemMinnick : Cuck cuckKemMinnick : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.KenBerry.KenBerry exposing (..) module Debate.Cuckery.CuckList.KenBerry exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckKenBerry : Cuck cuckKenBerry : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.KevinStock.KevinStock exposing (..) module Debate.Cuckery.CuckList.KevinStock exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckKevinStock : Cuck cuckKevinStock : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.KyleMamounis.KyleMamounis exposing (..) module Debate.Cuckery.CuckList.KyleMamounis exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckKyleMamounis : Cuck cuckKyleMamounis : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.MarkSisson.MarkSisson exposing (..) module Debate.Cuckery.CuckList.MarkSisson exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckMarkSisson : Cuck cuckMarkSisson : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.MartyKendall.MartyKendall exposing (..) module Debate.Cuckery.CuckList.MartyKendall exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckMartyKendall : Cuck cuckMartyKendall : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.MaxLugavere.MaxLugavere exposing (..) module Debate.Cuckery.CuckList.MaxLugavere exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckMaxLugavere : Cuck cuckMaxLugavere : Cuck

View file

@ -1,6 +1,6 @@
module Cuckery.CuckList.MichaelKummer.MichaelKummer exposing (..) module Debate.Cuckery.CuckList.MichaelKummer exposing (..)
import Cuckery.Types exposing (..) import Debate.Cuckery.Types exposing (..)
cuckMichaelKummer : Cuck cuckMichaelKummer : Cuck

Some files were not shown because too many files have changed in this diff Show more