User contributions for Couchor

Search for contributionsExpandCollapse
⧼contribs-top⧽
⧼contribs-date⧽
(newest | oldest) View ( | older 500) (20 | 50 | 100 | 250 | 500)

7 September 2022

6 September 2022

5 September 2022

4 September 2022

2 September 2022

31 August 2022

30 August 2022

29 August 2022

25 August 2022

24 August 2022

23 August 2022

22 August 2022

  • 21:4921:49, 22 August 2022 diff hist +187 Module:ArgumentsNo edit summary current
  • 18:0218:02, 22 August 2022 diff hist +9,040 N Module:Team/overrideCreated page with "local overrides = { ['game'] = {}, ['games'] = {}, ['templates'] = { ['definitions'] = { ['team'] = '<span data-highlightingclass="TBD" class="team-template-team-standard"><span class="team-template-image-legacy">link=</span> <span class="team-template-text"><abbr title="To Be Determined">TBD</abbr></span></span>', ['team2'] = '<span data-highlightingclass="TBD" class="team-template-team-standard"><span class="team-template-text"><..." current
  • 15:3015:30, 22 August 2022 diff hist +1,889 N Module:TeamCard/QualifierCreated page with "local Class = require('Module:Class') local Variables = require('Module:Variables') local Qualifier = {} -- Returns the tuple (linkText, linkInternal, linkExternal) -- Link internal and link external is mutually exclusive function Qualifier.parseQualifier(rawQualifier) if not rawQualifier then return nil end local cleanQualifier = rawQualifier:gsub('%[', ''):gsub('%]', '') if cleanQualifier:find('|') then -- Internal link local qualifier = mw.text.split(clea..." current
  • 15:2915:29, 22 August 2022 diff hist +3,749 N Module:TeamCard/StorageCreated page with "local Custom = require('Module:TeamCard/Custom') local String = require('Module:StringUtils') -- TODO: Once the Template calls are not needed (when RL has been moved to Module), deprecate Qualifier Module local Qualifier = require('Module:TeamCard/Qualifier') local Variables = require('Module:Variables') local TeamCardStorage = {} function TeamCardStorage.saveToLpdb(args, teamObject, players, playerPrize) local team, teamTemplateName if type(teamObject) == 'table' t..." current
  • 15:2815:28, 22 August 2022 diff hist +1,675 N Module:TeamCard/CustomCreated page with "local p = {} local Flag = require('Module:Flags') local String = require('Module:StringUtils') local Variables = require('Module:Variables') function p._Players(args, PLAYERS, prefix, prefixVar, prefixLPDB, teamAlias) local name = string.gsub(mw.ext.TeamLiquidIntegration.resolve_redirect(args[prefix .. 'link']), ' ', '_') local displayname = args[prefix] local flag = Flag.CountryName(args[prefix .. 'flag']) PLAYERS[prefixLPDB] = name PLAYERS[prefixLPDB .. 'flag']..." current
  • 15:2815:28, 22 August 2022 diff hist +1,598 N Module:OrdinalCreated page with "--[[ This template will add the appropriate ordinal suffix to a given integer. Please do not modify this code without applying the changes first at Module:Ordinal/sandbox and testing at Module:Ordinal/sandbox/testcases and Module talk:Ordinal/sandbox/testcases. ]] local p = {} local yesno = require('Module:Yesno') -- boolean value interpretation --[[ This function converts an integer value into a numeral followed by ordinal indicator. The output string mig..." current
  • 15:2715:27, 22 August 2022 diff hist +5,845 N Module:PlacementCreated page with "--- -- @Liquipedia -- wiki=commons -- page=Module:Placement -- -- Please see https://github.com/Liquipedia/Lua-Modules to contribute -- local Arguments = require('Module:Arguments') local Class = require('Module:Class') local Ordinal = require('Module:Ordinal') local Placement = {} --[[ Returns a text label for a range of placements. Example: Placement.RangeLabel({1, 2}) -- Returns 1st–2nd ]] function Placement.RangeLabel(range) local zeroWidthSpace = '​' l..." current
  • 15:2715:27, 22 August 2022 diff hist +13,675 N Module:TeamCreated page with "local function getGlobalDate() local globalDate = mw.ext.VariablesLua.var('date') if not(globalDate and globalDate ~= '') then globalDate = mw.ext.VariablesLua.var('tournament_edate') if not(globalDate and globalDate ~= '') then globalDate = mw.ext.VariablesLua.var('tournament_enddate') if not(globalDate and globalDate ~= '') then globalDate = mw.ext.VariablesLua.var('tournament_startdate') if not(globalDate and globalDate ~= '') then globalDate..." current
  • 15:2615:26, 22 August 2022 diff hist +34,323 N Module:TeamCardCreated page with "local p = {} local getArgs = require('Module:Arguments').getArgs local Logic = require('Module:Logic') local Variables = require('Module:Variables') local Flag = require('Module:Flags') local Icon local Team = require('Module:Team') local placementCell = require('Module:Placement')._placement local Custom = require('Module:TeamCard/Custom') local Storage = require('Module:TeamCard/Storage') local Table = require('Module:Table') local args local GLOBALDATE local TABLE_HE..." current
  • 15:0915:09, 22 August 2022 diff hist −1 Module:JsonNo edit summary current
  • 15:0915:09, 22 August 2022 diff hist +1 Module:JsonNo edit summary
  • 15:0815:08, 22 August 2022 diff hist +17 Module:JsonNo edit summary
  • 14:5414:54, 22 August 2022 diff hist −13 Module:Squad/RowNo edit summary current Tag: Manual revert
  • 14:5314:53, 22 August 2022 diff hist −1 Module:Squad/RowNo edit summary Tag: Reverted
  • 14:5314:53, 22 August 2022 diff hist +14 Module:Squad/RowNo edit summary Tag: Reverted
  • 14:5214:52, 22 August 2022 diff hist −13 Module:JsonNo edit summary Tag: Manual revert
  • 14:4714:47, 22 August 2022 diff hist +13 Module:JsonNo edit summary Tag: Reverted

19 August 2022

  • 22:3622:36, 19 August 2022 diff hist +710 N Module:YesnoCreated page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val =..." current
  • 22:3522:35, 19 August 2022 diff hist +307 N Module:No globalsCreated page with "local mt = getmetatable(_G) or {} function mt.__index (t, k) if k ~= 'arg' then error('Tried to read nil global ' .. tostring(k), 2) end return nil end function mt.__newindex(t, k, v) if k ~= 'arg' then error('Tried to write global ' .. tostring(k), 2) end rawset(t, k, v) end setmetatable(_G, mt)" current
  • 22:3422:34, 19 August 2022 diff hist +2,569 N Module:Namespace detect/dataCreated page with "-------------------------------------------------------------------------------- -- Namespace detect data -- -- This module holds data for Module:Namespace detect to be loaded per -- -- page, rather than per #invoke, for performance reasons. -- -------------------------------------------------------------------------------- local cfg = require('Module:Namespace detect/config') local function..." current
  • 22:3422:34, 19 August 2022 diff hist +3,545 N Module:Namespace detect/configCreated page with "-------------------------------------------------------------------------------- -- Namespace detect configuration data -- -- -- -- This module stores configuration data for Module:Namespace detect. Here -- -- you can localise the module to your wiki's language. -- --..." current
  • 22:3322:33, 19 August 2022 diff hist +6,091 N Module:Message box/configurationCreated page with "-------------------------------------------------------------------------------- -- Message box configuration -- -- -- -- This module contains configuration data for Module:Message box. -- -------------------------------------------------------------------------------- return { ambox = { types = { speedy = { class = 'ambox-spee..." current
  • 22:3322:33, 19 August 2022 diff hist +16,807 N Module:Message boxCreated page with "-- This is a meta-module for producing message box templates, including -- {{mbox}}, {{ambox}}, {{imbox}}, {{tmbox}}, {{ombox}}, {{cmbox}} and {{fmbox}}. -- Load necessary modules. require('Module:No globals') local getArgs local categoryHandler = require('Module:Category handler')._main local yesno = require('Module:Yesno') -- Get a language object for formatDate and ucfirst. local lang = mw.language.getContentLanguage() -- Define constants local CONFIG_MODULE = 'Mod..." current
  • 22:3222:32, 19 August 2022 diff hist +787 N Module:Category handler/sharedCreated page with "local p = {} function p.matchesBlacklist(page, blacklist) for i, pattern in ipairs(blacklist) do local match = mw.ustring.match(page, pattern) if match then return true end end return false end function p.getParamMappings(useLoadData) local dataPage = 'Module:Namespace detect/data' if useLoadData then return mw.loadData(dataPage).mappings else return require(dataPage).mappings end end function p.getNamespaceParameters(titleObj, mappings) -- We don..." current
  • 22:2722:27, 19 August 2022 diff hist +436 N Module:Category handler/dataCreated page with "local data = require('Module:Category handler/config') local mShared = require('Module:Category handler/shared') local blacklist = require('Module:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist( title.prefixedText, blacklist ) data.currentTitleNamespaceParameters = mShared.getNamespaceParameters( title, mShared.getParamMappings() ) return data" current
  • 22:2722:27, 19 August 2022 diff hist +5,349 N Module:Category handler/configCreated page with "local cfg = {} -- Don't edit this line. -------------------------------------------------------------------------------- -- Start configuration data -- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -- Parameter names -- -- These configuration items..." current
  • 22:2722:27, 19 August 2022 diff hist +581 N Module:Category handler/blacklistCreated page with "return { '^Main Page$', -- don't categorise the main page. -- Don't categorise the following pages or their subpages. -- "%f[/\0]" matches if the next character is "/" or the end of the string. '^Liquipedia:Cascade%-protected items%f[/\0]', '^User:UBX%f[/\0]', -- The userbox "template" space. '^User talk:UBX%f[/\0]', -- Don't categorise subpages of these pages, but allow -- categorisation of the base page. '^Wikipedia:Template messages/.*$', -- Don't categor..." current
  • 22:2622:26, 19 August 2022 diff hist +6,736 N Module:Category handlerCreated page with "-- Load required modules local yesno = require('Module:Yesno') -- Lazily load things we don't always need local mShared, mappings local p = {} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function trimWhitespace(s, removeBlanks) if type(s) ~= 'string' then return s end s = s:match('^%s*(.-)%s*$') if removeBlanks then i..." current
  • 22:0722:07, 19 August 2022 diff hist −27 Module:Squad/RowNo edit summary Tag: Manual revert
  • 22:0322:03, 19 August 2022 diff hist +12 Module:Squad/RowNo edit summary Tag: Reverted
  • 21:4821:48, 19 August 2022 diff hist +15 Module:Squad/RowNo edit summary Tag: Reverted
  • 21:4821:48, 19 August 2022 diff hist −14 Module:Squad/CustomNo edit summary current Tag: Manual revert
  • 21:4621:46, 19 August 2022 diff hist +14 Module:Squad/CustomNo edit summary Tag: Reverted
  • 21:4121:41, 19 August 2022 diff hist −18 Module:Squad/RowNo edit summary
  • 21:3121:31, 19 August 2022 diff hist +6 Module:Squad/RowNo edit summary
  • 21:2921:29, 19 August 2022 diff hist +13 Module:Squad/RowNo edit summary
  • 21:2721:27, 19 August 2022 diff hist +1,444 N Module:VariablesCreated page with "local Class = require('Module:Class') local Variables = {} ---Stores a wiki-variable and returns the empty string ---@param name string Key of the wiki-variable ---@param value string Value of the wiki-variable ---@return string #always the empty string function Variables.varDefine(name, value) return mw.ext.VariablesLua.vardefine(name, value) end ---Stores a wiki-variable and returns the stored value ---@param name string Key of the wiki-variable ---@param value str..." current
  • 21:2721:27, 19 August 2022 diff hist +2,409 N Module:LocalisationCreated page with "local Class = require('Module:Class') local Localisation = {} local String = require('Module:StringUtils') local Logic = require('Module:Logic') function Localisation.getCountryName(country, noentry) local data = mw.loadData('Module:Localisation/data/country') -- clean the entered country value country = Localisation._cleanCountry(country) -- First try to look it up local countryname = data[country] -- Return message if none is found if countryname == nil then..." current
  • 21:2621:26, 19 August 2022 diff hist +4,603 N Module:PlayerCreated page with "local getFlag = require('Module:Localisation').getCountryName local p = {} function p._cleanInput(name) local arrayLink local arrayName if (name or '') ~= '' then name = name:gsub("%b{}", "") name = name:gsub("%b<>", "") name = name:gsub("%b[]", "") name = mw.text.trim(name) arrayLink, arrayName = p._split(name) end return arrayLink, arrayName end function p._split(name) local link = '' if (name or '') ~= '' then local nameArray =..." current
  • 21:2621:26, 19 August 2022 diff hist +1,355 N Module:FnUtilCreated page with "local FnUtil = {} -- Creates a memoized copy of a 0 or 1 param function. function FnUtil.memoize(f) local called = {} local results = {} local nilCalled = false local nilResult return function(x) if x == nil then if not nilCalled then nilCalled = true nilResult = f(x) end return nilResult else if not called[x] then called[x] = true results[x] = f(x) end return results[x] end end end --[[ Memoized variant of the Y combinator..." current
  • 21:2521:25, 19 August 2022 diff hist +10,367 N Module:TableCreated page with "local Table = {} function Table.randomize(tbl) math.randomseed(os.time()) for i = #tbl, 2, -1 do local j = math.random(i) tbl[i], tbl[j] = tbl[j], tbl[i] end return tbl end function Table.size(tbl) local i = 0 for _ in pairs(tbl) do i = i + 1 end return i end function Table.includes(tbl, value) for _, entry in ipairs(tbl) do if entry == value then return true end end return false end function Table.filter(tbl, predicate, argument) local filt..." current
  • 21:2521:25, 19 August 2022 diff hist +1,763 N Module:LogicCreated page with "local Logic = {} function Logic.emptyOr(val1, val2, default) if not Logic.isEmpty(val1) then return val1 elseif not Logic.isEmpty(val2) then return val2 else return default end end function Logic.nilOr(...) local args = require('Module:Table').pack(...) for i = 1, args.n do local arg = args[i] local val if type(arg) == 'function' then val = arg() else val = arg end if val ~= nil then return val end end return nil end function Logic..." current
  • 21:2421:24, 19 August 2022 diff hist +2,078 N Module:TemplateCreated page with "local Arguments = require('Module:Arguments') local Json = require('Module:Json') local PageVariableNamespace = require('Module:PageVariableNamespace') local Template = {} function Template.safeExpand(frame, title, args, defaultTemplate) local result, value = pcall(frame.expandTemplate, frame, {title = title, args = args}) if result then return value else local templateName = 'Template:' .. (title or '') .. '' return defaultTemplate or templateName end en..." current
  • 21:2321:23, 19 August 2022 diff hist +38,247 N Module:Flags/MasterDataCreated page with "-- There are four tables: -- data (contains flag images. Should have one entry per image) -- twoLetter (two-letter country codes as per ISO 3166-1 alpha-2) -- threeLetter (three-letter country codes) -- aliases (redirects to the appropriate index in the data table) -- This table includes: -- ISO 3166-1 alpha-2 -- ISO 3166-1 alpha-2 User-assigned Code Elements -- ISO 3166-1 alpha-2 Exceptional Reservations -- ISO 3166-1 alpha-2 Traditional Reservations --..."
  • 21:2221:22, 19 August 2022 diff hist +778 N Module:ReferenceCleanerCreated page with "local Class = require('Module:Class') local ReferenceCleaner = {} function ReferenceCleaner.clean(dateWithRef) if dateWithRef == nil then return '' end -- due to '-' and '?' being part of the 'magic' characters for patterns -- we have to escape them with '%' dateWithRef = dateWithRef:gsub('%-%?%?', '-01') dateWithRef = dateWithRef:gsub('%-XX', '-01') local correctDate = string.match(dateWithRef, '(%d+-%d+-%d+)') if correctDate then return correctDate end..." current
  • 21:2021:20, 19 August 2022 diff hist +4 Template:SquadNo edit summary Tags: Manual revert Reverted
  • 21:2021:20, 19 August 2022 diff hist +3,879 N Module:Squad/CustomCreated page with "local Class = require('Module:Class') local Json = require('Module:Json') local ReferenceCleaner = require('Module:ReferenceCleaner') local Squad = require('Module:Squad') local SquadRow = require('Module:Squad/Row') local String = require('Module:StringUtils') local Variables = require('Module:Variables') local CustomSquad = {} function CustomSquad.header(self) local makeHeader = function(wikiText) local headerCell = mw.html.create('th') if wikiText == nil then..."
  • 21:1821:18, 19 August 2022 diff hist +2 Template:SquadNo edit summary Tag: Reverted
  • 21:1021:10, 19 August 2022 diff hist +1,143 N Module:JsonCreated page with "local Json = {} local Arguments = require('Module:Arguments') function Json.fromArgs(frame) local args = Arguments.getArgs(frame) return Json.stringify(args) end function Json.stringify(obj, pretty) return mw.text.jsonEncode(obj, pretty == true and mw.text.JSON_PRETTY or nil) end function Json.parse(obj) local parse = function(object) return mw.text.jsonDecode(object, mw.text.JSON_TRY_FIXING) end local status, res = pcall(parse, obj); if status then return re..."
  • 21:0321:03, 19 August 2022 diff hist −1 Template:SquadNo edit summary Tag: Reverted
  • 21:0321:03, 19 August 2022 diff hist 0 Template:SquadNo edit summary Tag: Reverted
  • 21:0221:02, 19 August 2022 diff hist +6 Template:SquadNo edit summary Tag: Reverted
  • 21:0121:01, 19 August 2022 diff hist −1 Template:SquadNo edit summary Tag: Reverted
  • 21:0121:01, 19 August 2022 diff hist −3 Template:SquadNo edit summary Tag: Reverted
  • 20:5820:58, 19 August 2022 diff hist +9,867 N Module:ArgumentsCreated page with "local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string' then val = val:match('^%s*(.-)%s*$') if val == '' then return nil else return val end else return val end end local function tidyValTrimOnly(key, val) if type(val) ==..."
  • 20:5720:57, 19 August 2022 diff hist +3,450 N Module:ClassCreated page with "local Arguments = require('Module:Arguments') local Class = {} Class.PRIVATE_FUNCTION_SPECIFIER = '_' function Class.new(base, init) local instance = {} if not init and type(base) == 'function' then init = base base = nil elseif type(base) == 'table' then for index, value in pairs(base) do instance[index] = value end instance._base = base end instance.__index = instance local metatable = {} metatable.__call = function(class_tbl, ...) local o..." current
  • 20:5720:57, 19 August 2022 diff hist −7 Template:SquadNo edit summary Tag: Reverted
  • 20:5320:53, 19 August 2022 diff hist +1,891 N Module:StringUtilsCreated page with "local String = {} function String.startsWith(str, start) return str:sub(1, #start) == start --str:find('^' .. start) ~= nil end function String.endsWith(str, ending) return ending == '' or str:sub(-#ending) == ending end function String.split(inputstr, sep) if inputstr ~= nil then if sep == nil then sep = '%s' end inputstr = inputstr:gsub(sep, '&') local t = {} local i = 1 for str in string.gmatch(inputstr, '([^&]+)') do t[i] = str i = i + 1..." current
  • 20:5320:53, 19 August 2022 diff hist +2,656 N Module:SquadCreated page with "local Class = require('Module:Class') local Arguments = require('Module:Arguments') local String = require('Module:StringUtils') local Squad = Class.new() Squad.TYPE_ACTIVE = 0 Squad.TYPE_INACTIVE = 1 Squad.TYPE_FORMER = 2 Squad.TYPE_FORMER_INACTIVE = 3 function Squad:init(frame) self.frame = frame self.args = Arguments.getArgs(frame) self.root = mw.html.create('div') self.root :addClass('table-responsive') -- TODO: is this needed? :css('margin-bottom', '1..."
  • 20:5020:50, 19 August 2022 diff hist +4,797 N Module:FlagsCreated page with "local MasterData = mw.loadData('Module:Flags/MasterData') local Template = require('Module:Template') local Logic = require('Module:Logic') local Table = require('Module:Table') local String = require('Module:StringUtils') local FnUtil = require('Module:FnUtil') local Class = require('Module:Class') local Flags = {} -- Returns a flag --[[ supported args are: flag - country name, flag code, or alias of the Flag shouldLink - boolean that decides if the flag should link..."
  • 20:5020:50, 19 August 2022 diff hist −137 Module:Squad/RowNo edit summary
  • 20:5020:50, 19 August 2022 diff hist +5,643 N Module:Squad/RowCreated page with "--- -- @Liquipedia -- wiki=commons -- page=Module:Squad/Row -- -- Please see https://github.com/Liquipedia/Lua-Modules to contribute -- local Class = require('Module:Class') local Flags = require('Module:Flags') local Player = require('Module:Player') local ReferenceCleaner = require('Module:ReferenceCleaner') local String = require('Module:StringUtils') local Template = require('Module:Template') local Table = require('Module:Table') -- TODO: Decided on all valid type..."

18 August 2022

17 August 2022

16 August 2022

12 August 2022

  • 10:3810:38, 12 August 2022 diff hist +125 Template:Infobox companyNo edit summary
  • 08:4308:43, 12 August 2022 diff hist +808 N Template:ReflistCreated page with "<div class="reflist <!-- -->{{#if: {{{1|}}} | {{#iferror: {{#ifexpr: {{{1|1}}} > 1 }} | references-column-width | references-column-count references-column-count-{{#if:1|{{{1}}}}} }} | {{#if: {{{colwidth|}}} | references-column-width }} }}" style="<!-- -->{{#if: {{{1|}}} | {{#iferror: {{#ifexpr: {{{1|1}}} > 1 }} | {{column-width|{{#if:1|{{{1}}}}}}} | {{column-count|{{#if:1|{{{1}}}}}}} }} | {{#if: {{{colwidth|}}} | {{..." current
  • 08:4108:41, 12 August 2022 diff hist +579 N Template:Citation/make linkCreated page with "{{#if:{{{1|}}} |[{{{1}}} {{{2}}}] |{{{2}}} }}<noinclude><!-- Code notes (here so that people /read/ it) 1. Parameter #2 is always nonempty when called from {{Citation/core}}. 2. It's up to {{Citation/core}} to stop italicized "'foo' & 'bar'" from becoming "'''foo' & 'bar'''". Citation/core does this by having a <nowiki></nowiki> at both beginning and end of the call to this template. Since this is only needed once, it's more efficient to do it in {..." current
  • 08:4008:40, 12 August 2022 diff hist +5,402 N Template:Cite webCreated page with "<includeonly>{{Citation/core |Citation class=web |Surname1 = {{{last|{{{surname|{{{last1|{{{surname1|{{{author1|{{{author|{{{authors|}}}}}}}}}}}}}}}}}}}}} |Surname2 = {{{last2|{{{surname2|{{{author2|}}}}}}}}} |Surname3 = {{{last3|{{{surname3|{{{author3|}}}}}}}}} |Surname4 = {{{last4|{{{surname4|{{{author4|}}}}}}}}} |Surname5 = {{{last5|{{{surname5|{{{author5|}}}}}}}}} |Surname6 = {{{last6|{{{surname6|{{{author6|}}}}}}}}} |Surname7 = {{{last7|{{{surname7|{..." current
  • 08:4008:40, 12 August 2022 diff hist +22,125 N Template:Citation/coreCreated page with "<span class="citation {{{Citation class|{{{Citation type|}}}}}}" {{ #switch:{{{Ref|}}} ||none = |#default = id="{{anchorencode:{{{Ref}}}}}" |harv = {{#if:{{{Surname1|}}}{{{EditorSurname1|}}} |id="CITEREF{{anchorencode:{{#if:{{{Surname1|}}} |{{{Surname1}}}{{{Surname2|}}}{{{Surname3|}}}{{{Surname4|}}} |{{{EditorSurname1|}}}{{{EditorSurname2|}}}{{{EditorSurname3|}}}{{{EditorSurname4|}}} }}{{{Year|{{{Date|}}}}}}}}" }} }}>{{ <!--============ Aut..." current

8 August 2022

6 August 2022

5 August 2022

4 August 2022

4 July 2022

(newest | oldest) View ( | older 500) (20 | 50 | 100 | 250 | 500)