<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://stockhub.co/index.php?action=history&amp;feed=atom&amp;title=Module%3AInfobox_gridiron_football_person%2Fconvert</id>
	<title>Module:Infobox gridiron football person/convert - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://stockhub.co/index.php?action=history&amp;feed=atom&amp;title=Module%3AInfobox_gridiron_football_person%2Fconvert"/>
	<link rel="alternate" type="text/html" href="https://stockhub.co/index.php?title=Module:Infobox_gridiron_football_person/convert&amp;action=history"/>
	<updated>2026-05-28T11:59:26Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://stockhub.co/index.php?title=Module:Infobox_gridiron_football_person/convert&amp;diff=136934&amp;oldid=prev</id>
		<title>imported&gt;Renamed user mou89p43twvqcvm8ut9w3: Make high_school, CIS, college, CFL, NFL, and all draft parameters optional</title>
		<link rel="alternate" type="text/html" href="https://stockhub.co/index.php?title=Module:Infobox_gridiron_football_person/convert&amp;diff=136934&amp;oldid=prev"/>
		<updated>2015-09-10T03:55:34Z</updated>

		<summary type="html">&lt;p&gt;Make high_school, CIS, college, CFL, NFL, and all draft parameters optional&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;-- [SublimeLinter luacheck-globals:mw]&lt;br /&gt;
&lt;br /&gt;
-- This module serves to convert &amp;lt;br&amp;gt;-delimited teams/years parameters in&lt;br /&gt;
-- [[Template:Infobox gridiron football person]] to their equivalent numbered pairs. Simply&lt;br /&gt;
-- replace &amp;quot;{{Infobox gridiron football person&amp;quot; with&lt;br /&gt;
-- &amp;quot;{{subst:#invoke:Infobox gridiron football person/convert|main&amp;quot; and press &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
local getBuffer, print = require(&amp;quot;Module:OutputBuffer&amp;quot;)()&lt;br /&gt;
&lt;br /&gt;
local function printfd(formatString, ...)&lt;br /&gt;
	local default = &amp;quot;&amp;quot;&lt;br /&gt;
&lt;br /&gt;
	local args, argsNum = {...}, select(&amp;quot;#&amp;quot;, ...)&lt;br /&gt;
	local newArgs = {}&lt;br /&gt;
	for i = 1, argsNum do&lt;br /&gt;
		if args[i] ~= nil then&lt;br /&gt;
			table.insert(newArgs, args[i])&lt;br /&gt;
		else&lt;br /&gt;
			table.insert(newArgs, default)&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	print(string.format(formatString, unpack(newArgs)))&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function processTeamsYears(prefix, teams, years)&lt;br /&gt;
	local function extractItems(s, t)&lt;br /&gt;
		local sentinel = &amp;quot;😂&amp;quot;	-- WTF, Lua?&lt;br /&gt;
		string.gsub(string.gsub(s, &amp;quot;&amp;lt;[Bb][Rr] */?&amp;gt;&amp;quot;, &amp;quot; &amp;quot; .. sentinel .. &amp;quot; &amp;quot;),&lt;br /&gt;
			&amp;quot;[^&amp;quot; .. sentinel .. &amp;quot;]+&amp;quot;,&lt;br /&gt;
			function(c) table.insert(t, string.match(c, &amp;quot;^%s*(.-)%s*$&amp;quot;)) end)&lt;br /&gt;
	end&lt;br /&gt;
	local newTeams = {}&lt;br /&gt;
	extractItems(teams, newTeams)&lt;br /&gt;
	local newYears = {}&lt;br /&gt;
	extractItems(years, newYears)&lt;br /&gt;
&lt;br /&gt;
	if #newTeams ~= #newYears then&lt;br /&gt;
		printfd(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
			&amp;quot;%s_teams and %s_years are not of equal length. --&amp;gt;&amp;quot;,&lt;br /&gt;
			prefix, prefix)&lt;br /&gt;
		printfd(&amp;quot;| %s_teams = %s&amp;quot;, prefix, teams)&lt;br /&gt;
		printfd(&amp;quot;| %s_years = %s&amp;quot;, prefix, years)&lt;br /&gt;
		return&lt;br /&gt;
	end&lt;br /&gt;
&lt;br /&gt;
	c = 1&lt;br /&gt;
	for i = 1, #newTeams do&lt;br /&gt;
		if newYears[i] ~= &amp;quot;&amp;quot; or newTeams[i] ~= &amp;quot;&amp;quot; then&lt;br /&gt;
			printfd(&amp;quot;| %s_years%s = %s&amp;quot;, prefix, c,&lt;br /&gt;
				newYears[i] ~= &amp;quot;&amp;quot; and newYears[i] or&lt;br /&gt;
				&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
				&amp;quot;years missing. --&amp;gt;&amp;quot;)&lt;br /&gt;
			printfd(&amp;quot;| %s_team%s = %s&amp;quot;, prefix, c,&lt;br /&gt;
				newTeams[i] ~= &amp;quot;&amp;quot; and newTeams[i] or&lt;br /&gt;
				&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
				&amp;quot;team missing. --&amp;gt;&amp;quot;)&lt;br /&gt;
			c = c + 1&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p._main(args)&lt;br /&gt;
	print(&amp;quot;{{Infobox gridiron football person&amp;quot;)&lt;br /&gt;
	if args.embed then&lt;br /&gt;
		printfd(&amp;quot;| embed = %s&amp;quot;, args.embed)&lt;br /&gt;
	end&lt;br /&gt;
	printfd(&amp;quot;| name = %s&amp;quot;, args.name)&lt;br /&gt;
	printfd(&amp;quot;| image = %s&amp;quot;, args.image)&lt;br /&gt;
	if args.image_upright then&lt;br /&gt;
		printfd(&amp;quot;| image_upright = %s&amp;quot;, args.image_upright)&lt;br /&gt;
	end&lt;br /&gt;
	printfd(&amp;quot;| alt = %s&amp;quot;, args.alt)&lt;br /&gt;
	printfd(&amp;quot;| caption = %s&amp;quot;, args.caption)&lt;br /&gt;
	if args.nickname then&lt;br /&gt;
		printfd(&amp;quot;| nickname = %s&amp;quot;, args.nickname)&lt;br /&gt;
	end&lt;br /&gt;
	printfd(&amp;quot;| birth_date = %s&amp;quot;, args.birth_date)&lt;br /&gt;
	printfd(&amp;quot;| birth_place = %s&amp;quot;, args.birth_place)&lt;br /&gt;
	printfd(&amp;quot;| death_date = %s&amp;quot;, args.death_date)&lt;br /&gt;
	printfd(&amp;quot;| death_place = %s&amp;quot;, args.death_place)&lt;br /&gt;
	printfd(&amp;quot;| team = %s&amp;quot;, args.team)&lt;br /&gt;
	printfd(&amp;quot;| number = %s&amp;quot;, args.number)&lt;br /&gt;
	printfd(&amp;quot;| status = %s&amp;quot;, args.status)&lt;br /&gt;
	if args.import then&lt;br /&gt;
		printfd(&amp;quot;| import = %s&amp;quot;, args.import)&lt;br /&gt;
	end&lt;br /&gt;
	printfd(&amp;quot;| position1 = %s&amp;quot;, args.position1 or args.position or&lt;br /&gt;
	        args.Position)&lt;br /&gt;
	if args.position2 then&lt;br /&gt;
		printfd(&amp;quot;| position2 = %s&amp;quot;, args.position2)&lt;br /&gt;
	end&lt;br /&gt;
	if args.position3 then&lt;br /&gt;
		printfd(&amp;quot;| position3 = %s&amp;quot;, args.position3)&lt;br /&gt;
	end&lt;br /&gt;
	if args.position4 then&lt;br /&gt;
		printfd(&amp;quot;| position4 = %s&amp;quot;, args.position4)&lt;br /&gt;
	end&lt;br /&gt;
	if args.position5 then&lt;br /&gt;
		printfd(&amp;quot;| position5 = %s&amp;quot;, args.position5)&lt;br /&gt;
	end&lt;br /&gt;
	if args.uniform_number or args.jersey then&lt;br /&gt;
		printfd(&amp;quot;| uniform_number = %s&amp;quot;, args.uniform_number or args.jersey)&lt;br /&gt;
	end&lt;br /&gt;
	printfd(&amp;quot;| height_ft = %s&amp;quot;, args.height_ft or args.Height_ft)&lt;br /&gt;
	printfd(&amp;quot;| height_in = %s&amp;quot;, args.height_in or args.Height_in)&lt;br /&gt;
	printfd(&amp;quot;| weight_lb = %s&amp;quot;, args.weight_lb or args.weight_lbs or&lt;br /&gt;
	        args.Weight_lb or args.Weight_lbs)&lt;br /&gt;
	if args.college or args.College then&lt;br /&gt;
		printfd(&amp;quot;| college = %s&amp;quot;, args.college or args.College)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CIS then&lt;br /&gt;
		printfd(&amp;quot;| CIS = %s&amp;quot;, args.CIS)&lt;br /&gt;
	end&lt;br /&gt;
	if args.amateur_title or args.amateur_team then&lt;br /&gt;
		printfd(&amp;quot;| amateur_title = %s&amp;quot;, args.amateur_title)&lt;br /&gt;
		printfd(&amp;quot;| amateur_team = %s&amp;quot;, args.amateur_team)&lt;br /&gt;
	end&lt;br /&gt;
	if args.high_school then&lt;br /&gt;
		printfd(&amp;quot;| high_school = %s&amp;quot;, args.high_school)&lt;br /&gt;
	end&lt;br /&gt;
	if args.AFLRookieYear then&lt;br /&gt;
		printfd(&amp;quot;| AFLRookieYear = %s&amp;quot;, args.AFLRookieYear)&lt;br /&gt;
	end&lt;br /&gt;
	if args.AFLDraftedYear or args.AFLDraftedRound or args.AFLDraftedPick or&lt;br /&gt;
			args.AFLDraftedTeam then&lt;br /&gt;
		printfd(&amp;quot;| AFLDraftedYear = %s&amp;quot;, args.AFLDraftedYear)&lt;br /&gt;
		printfd(&amp;quot;| AFLDraftedRound = %s&amp;quot;, args.AFLDraftedRound)&lt;br /&gt;
		printfd(&amp;quot;| AFLDraftedPick = %s&amp;quot;, args.AFLDraftedPick)&lt;br /&gt;
		printfd(&amp;quot;| AFLDraftedTeam = %s&amp;quot;, args.AFLDraftedTeam)&lt;br /&gt;
	end&lt;br /&gt;
	if args.BAFLRookieYear or args.BAFLDraftedTeam then&lt;br /&gt;
		printfd(&amp;quot;| BAFLRookieYear = %s&amp;quot;, args.BAFLRookieYear)&lt;br /&gt;
		printfd(&amp;quot;| BAFLDraftedTeam = %s&amp;quot;, args.BAFLDraftedTeam)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CFLDraftedYear or args.CFLDraftedRound or args.CFLDraftedPick or args.CFLDraftedTeam then&lt;br /&gt;
		printfd(&amp;quot;| CFLDraftedYear = %s&amp;quot;, args.CFLDraftedYear)&lt;br /&gt;
		printfd(&amp;quot;| CFLDraftedRound = %s&amp;quot;, args.CFLDraftedRound)&lt;br /&gt;
		printfd(&amp;quot;| CFLDraftedPick = %s&amp;quot;, args.CFLDraftedPick)&lt;br /&gt;
		printfd(&amp;quot;| CFLDraftedTeam = %s&amp;quot;, args.CFLDraftedTeam)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CommonDraftedYear or args.CommonDraftedRound or&lt;br /&gt;
			args.CommonDraftedPick or args.CommonDraftedTeam then&lt;br /&gt;
		printfd(&amp;quot;| CommonDraftedYear = %s&amp;quot;, args.CommonDraftedYear)&lt;br /&gt;
		printfd(&amp;quot;| CommonDraftedRound = %s&amp;quot;, args.CommonDraftedRound)&lt;br /&gt;
		printfd(&amp;quot;| CommonDraftedPick = %s&amp;quot;, args.CommonDraftedPick)&lt;br /&gt;
		printfd(&amp;quot;| CommonDraftedTeam = %s&amp;quot;, args.CommonDraftedTeam)&lt;br /&gt;
	end&lt;br /&gt;
	if args.ExpDraftedYear or args.ExpDraftedRound or args.ExpDraftedPick or&lt;br /&gt;
			args.ExpDraftedTeam then&lt;br /&gt;
		printfd(&amp;quot;| ExpDraftedYear = %s&amp;quot;, args.ExpDraftedYear)&lt;br /&gt;
		printfd(&amp;quot;| ExpDraftedRound = %s&amp;quot;, args.ExpDraftedRound)&lt;br /&gt;
		printfd(&amp;quot;| ExpDraftedPick = %s&amp;quot;, args.ExpDraftedPick)&lt;br /&gt;
		printfd(&amp;quot;| ExpDraftedTeam = %s&amp;quot;, args.ExpDraftedTeam)&lt;br /&gt;
	end&lt;br /&gt;
	if args.NFLDraftedYear or args.NFLDraftedRound or args.NFLDraftedPick or args.NFLDraftedTeam or&lt;br /&gt;
			args.DraftedYear or args.DraftedRound or args.DraftedPick then&lt;br /&gt;
		printfd(&amp;quot;| NFLDraftedYear = %s&amp;quot;, args.NFLDraftedYear or args.DraftedYear)&lt;br /&gt;
		printfd(&amp;quot;| NFLDraftedRound = %s&amp;quot;, args.NFLDraftedRound or args.DraftedRound)&lt;br /&gt;
		printfd(&amp;quot;| NFLDraftedPick = %s&amp;quot;, args.NFLDraftedPick or args.DraftedPick)&lt;br /&gt;
		printfd(&amp;quot;| NFLDraftedTeam = %s&amp;quot;, args.NFLDraftedTeam)&lt;br /&gt;
	end&lt;br /&gt;
	if args.NFLSuppDraftedYear or args.NFLSuppDraftedRound or&lt;br /&gt;
		args.NFLSuppDraftedPick then&lt;br /&gt;
	printfd(&amp;quot;| NFLSuppDraftedYear = %s&amp;quot;, args.NFLSuppDraftedYear)&lt;br /&gt;
	printfd(&amp;quot;| NFLSuppDraftedRound = %s&amp;quot;, args.NFLSuppDraftedRound)&lt;br /&gt;
	printfd(&amp;quot;| NFLSuppDraftedPick = %s&amp;quot;, args.NFLSuppDraftedPick)&lt;br /&gt;
	end&lt;br /&gt;
	if args.hand then&lt;br /&gt;
		printfd(&amp;quot;| hand = %s&amp;quot;, args.hand)&lt;br /&gt;
	end&lt;br /&gt;
	if args.pass_style then&lt;br /&gt;
		printfd(&amp;quot;| pass_style = %s&amp;quot;, args.pass_style)&lt;br /&gt;
	end&lt;br /&gt;
	if args.administrating_teams and args.administrating_years then&lt;br /&gt;
		processTeamsYears(&amp;quot;administrating&amp;quot;, args.administrating_teams,&lt;br /&gt;
		                  args.administrating_years)&lt;br /&gt;
	elseif args.administrating_teams then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has administrating_teams but no administrating_years. --&amp;gt;&amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| administrating_teams = %s&amp;quot;, args.administrating_teams)&lt;br /&gt;
		print(&amp;quot;| administrating_years = &amp;quot;)&lt;br /&gt;
	elseif args.administrating_years then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has administrating_years but no administrating_teams. --&amp;gt;&amp;quot;)&lt;br /&gt;
		print(&amp;quot;| administrating_teams = &amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| administrating_years = %s&amp;quot;, args.administrating_years)&lt;br /&gt;
	end&lt;br /&gt;
	if args.coaching_teams and args.coaching_years then&lt;br /&gt;
		processTeamsYears(&amp;quot;coaching&amp;quot;, args.coaching_teams, args.coaching_years)&lt;br /&gt;
	elseif args.coaching_teams then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has coaching_teams but no coaching_years. --&amp;gt;&amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| coaching_teams = %s&amp;quot;, args.coaching_teams)&lt;br /&gt;
		print(&amp;quot;| coaching_years = &amp;quot;)&lt;br /&gt;
	elseif args.coaching_years then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has coaching_years but no coaching_teams. --&amp;gt;&amp;quot;)&lt;br /&gt;
		print(&amp;quot;| coaching_teams = &amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| coaching_years = %s&amp;quot;, args.coaching_years)&lt;br /&gt;
	end&lt;br /&gt;
	if args.playing_teams and args.playing_years or&lt;br /&gt;
			args.teams and args.years then&lt;br /&gt;
		processTeamsYears(&amp;quot;playing&amp;quot;, args.playing_teams or args.teams,&lt;br /&gt;
		                  args.playing_years or args.years)&lt;br /&gt;
	elseif args.playing_teams or args.teams then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has playing_teams but no playing_years. --&amp;gt;&amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| playing_teams = %s&amp;quot;, args.playing_teams or args.teams)&lt;br /&gt;
		print(&amp;quot;| playing_years = &amp;quot;)&lt;br /&gt;
	elseif args.playing_years or args.years then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has playing_years but no playing_teams. --&amp;gt;&amp;quot;)&lt;br /&gt;
		print(&amp;quot;| playing_teams = &amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| playing_years = %s&amp;quot;, args.playing_years or args.years)&lt;br /&gt;
	end&lt;br /&gt;
	if args.other_teams and args.other_years then&lt;br /&gt;
		printfd(&amp;quot;| other_title = %s&amp;quot;, args.other_title)&lt;br /&gt;
		processTeamsYears(&amp;quot;other&amp;quot;, args.other_teams, args.other_years)&lt;br /&gt;
	elseif args.other_teams then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has other_teams but no other_years. --&amp;gt;&amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| other_title = %s&amp;quot;, args.other_title)&lt;br /&gt;
		printfd(&amp;quot;| other_teams = %s&amp;quot;, args.other_teams)&lt;br /&gt;
		print(&amp;quot;| other_years = &amp;quot;)&lt;br /&gt;
	elseif args.other_years then&lt;br /&gt;
		print(&amp;quot;&amp;lt;!-- Template:Infobox gridiron football person conversion error: &amp;quot; ..&lt;br /&gt;
		      &amp;quot;Template has other_years but no other_teams. --&amp;gt;&amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| other_title = %s&amp;quot;, args.other_title)&lt;br /&gt;
		print(&amp;quot;| other_teams = &amp;quot;)&lt;br /&gt;
		printfd(&amp;quot;| other_years = %s&amp;quot;, args.other_years)&lt;br /&gt;
	end&lt;br /&gt;
	if args.career_footnotes then&lt;br /&gt;
		printfd(&amp;quot;| career_footnotes = %s&amp;quot;, args.career_footnotes)&lt;br /&gt;
	end&lt;br /&gt;
	printfd(&amp;quot;| career_highlights = %s&amp;quot;, args.career_highlights)&lt;br /&gt;
	if args.AFLAllStar then&lt;br /&gt;
		printfd(&amp;quot;| AFLAllStar = %s&amp;quot;, args.AFLAllStar)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CFLAllStar then&lt;br /&gt;
		printfd(&amp;quot;| CFLAllStar = %s&amp;quot;, args.CFLAllStar)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CFLEastAllStar then&lt;br /&gt;
		printfd(&amp;quot;| CFLEastAllStar = %s&amp;quot;, args.CFLEastAllStar)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CFLWestAllStar then&lt;br /&gt;
		printfd(&amp;quot;| CFLWestAllStar = %s&amp;quot;, args.CFLWestAllStar)&lt;br /&gt;
	end&lt;br /&gt;
	if args.ProBowls then&lt;br /&gt;
		printfd(&amp;quot;| ProBowls = %s&amp;quot;, args.ProBowls)&lt;br /&gt;
	end&lt;br /&gt;
	if args.awards or args.Awards then&lt;br /&gt;
		printfd(&amp;quot;| awards = %s&amp;quot;, args.awards or args.Awards)&lt;br /&gt;
	end&lt;br /&gt;
	if args.honors or args.Honors then&lt;br /&gt;
		printfd(&amp;quot;| honors = %s&amp;quot;, args.honors or args.Honors)&lt;br /&gt;
	elseif args.honours or args.Honours then&lt;br /&gt;
		printfd(&amp;quot;| honours = %s&amp;quot;, args.honours or args.Honours)&lt;br /&gt;
	end&lt;br /&gt;
	if args[&amp;quot;retired #s&amp;quot;] or args[&amp;quot;Retired #s&amp;quot;] then&lt;br /&gt;
		printfd(&amp;quot;| awards = %s&amp;quot;, args[&amp;quot;retired #s&amp;quot;] or args[&amp;quot;Retired #s&amp;quot;])&lt;br /&gt;
	end&lt;br /&gt;
	if args.records or args.Records then&lt;br /&gt;
		printfd(&amp;quot;| records = %s&amp;quot;, args.records or args.Records)&lt;br /&gt;
	end&lt;br /&gt;
	if args.statlabel1 or args.statvalue1 then&lt;br /&gt;
		printfd(&amp;quot;| statlabel1 = %s&amp;quot;, args.statlabel1)&lt;br /&gt;
		printfd(&amp;quot;| statvalue1 = %s&amp;quot;, args.statvalue1)&lt;br /&gt;
		printfd(&amp;quot;| statlabel2 = %s&amp;quot;, args.statlabel2)&lt;br /&gt;
		printfd(&amp;quot;| statvalue2 = %s&amp;quot;, args.statvalue2)&lt;br /&gt;
		printfd(&amp;quot;| statlabel3 = %s&amp;quot;, args.statlabel3)&lt;br /&gt;
		printfd(&amp;quot;| statvalue3 = %s&amp;quot;, args.statvalue3)&lt;br /&gt;
		printfd(&amp;quot;| statlabel4 = %s&amp;quot;, args.statlabel4)&lt;br /&gt;
		printfd(&amp;quot;| statvalue4 = %s&amp;quot;, args.statvalue4)&lt;br /&gt;
		printfd(&amp;quot;| statlabel5 = %s&amp;quot;, args.statlabel5)&lt;br /&gt;
		printfd(&amp;quot;| statvalue5 = %s&amp;quot;, args.statvalue5)&lt;br /&gt;
	end&lt;br /&gt;
	if args.AFL then&lt;br /&gt;
		printfd(&amp;quot;| AFL = %s&amp;quot;, args.AFL)&lt;br /&gt;
	end&lt;br /&gt;
	if args.ArenaFan then&lt;br /&gt;
		printfd(&amp;quot;| ArenaFan = %s&amp;quot;, args.ArenaFan)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CFL then&lt;br /&gt;
		printfd(&amp;quot;| CFL = %s&amp;quot;, args.CFL)&lt;br /&gt;
	end&lt;br /&gt;
	if args.NFL then&lt;br /&gt;
		printfd(&amp;quot;| NFL = %s&amp;quot;, args.NFL)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CBS then&lt;br /&gt;
		printfd(&amp;quot;| CBS = %s&amp;quot;, args.CBS)&lt;br /&gt;
	end&lt;br /&gt;
	if args.DatabaseFootball then&lt;br /&gt;
		printfd(&amp;quot;| DatabaseFootball = %s&amp;quot;, args.DatabaseFootball)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CoachPFR then&lt;br /&gt;
		printfd(&amp;quot;| CoachPFR = %s&amp;quot;, args.CoachPFR)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CFHOF then&lt;br /&gt;
		printfd(&amp;quot;| CFHOF = %s&amp;quot;, args.CFHOF)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CFHOFYear then&lt;br /&gt;
		printfd(&amp;quot;| CFHOFYear = %s&amp;quot;, args.CFHOFYear)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CollegeHOF then&lt;br /&gt;
		printfd(&amp;quot;| CollegeHOF = %s&amp;quot;, args.CollegeHOF)&lt;br /&gt;
	end&lt;br /&gt;
	if args.CollegeHOFYear then&lt;br /&gt;
		printfd(&amp;quot;| CollegeHOFYear = %s&amp;quot;, args.CollegeHOFYear)&lt;br /&gt;
	end&lt;br /&gt;
	if args.PFHOF or args.HOF then&lt;br /&gt;
		printfd(&amp;quot;| PFHOF = %s&amp;quot;, args.PFHOF or args.HOF)&lt;br /&gt;
	end&lt;br /&gt;
	if args.PFHOFYear or args.HOFYear then&lt;br /&gt;
		printfd(&amp;quot;| PFHOFYear = %s&amp;quot;, args.PFHOFYear or args.HOFYear)&lt;br /&gt;
	end&lt;br /&gt;
	if args.module then&lt;br /&gt;
		printfd(&amp;quot;| module = %s&amp;quot;, args.module)&lt;br /&gt;
	end&lt;br /&gt;
	print(&amp;quot;}}&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
	return getBuffer(&amp;quot;\n&amp;quot;)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
	local args = require(&amp;quot;Module:Arguments&amp;quot;).getArgs(frame)&lt;br /&gt;
	return p._main(args)&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>imported&gt;Renamed user mou89p43twvqcvm8ut9w3</name></author>
	</entry>
</feed>