Wikifunctions
wikifunctionswiki
https://www.wikifunctions.org/wiki/Wikifunctions:Main_Page
MediaWiki 1.47.0-wmf.5
first-letter
Media
Special
Talk
User
User talk
Wikifunctions
Wikifunctions talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
TimedText
TimedText talk
Module
Module talk
Translations
Translations talk
Event
Event talk
User:Ameisenigel/Gadget-markAdmins.js
2
16022
280260
205407
2026-06-03T18:46:23Z
Ameisenigel
44
Update Ombuds
280260
javascript
text/javascript
//***********************************************************************
// Adaptiert von [[:d:MediaWiki:Gadget-markAdmins.js]]
// Skript ursprünglich von [[Benutzer:Euku]], 28. Dez. 2005
// Adaptierung/zusätzliche Markierungen/Fixes: [[Benutzer:PDD]]
// Aufgeräumt & beschleunigt: [[Benutzer:Littl]]
// Etwas umgeräumt und potentielle Skinabhängigkeit entfernt: [[Benutzer:Guandalug]]
// Anpassung an WikiData: [[User:NordNordWest]]
// Anpassung an Wikifunctions: [[User:Ameisenigel]]
//***********************************************************************
( function ( mw, $ ) {
function markAdmins( $content ) {
// static list
var admins = [ '99of9', 'Ameisenigel', 'Bunnypranav', 'DVrandecic_(WMF)', 'Jdforrester_(WMF)', 'Mdaniels5757', 'Quiddity_(WMF)', 'Sannita_(WMF)' ];
var admins_str = '|' + admins.join( '|' ) + '|';
var botadmins = [ 'WikiLambda_system' ];
var botadmins_str = '|' + botadmins.join( '|' ) + '|';
var renadmins = [ ];
var renadmins_str = '|' + renadmins.join( '|' ) + '|';
var bureaucrats = [ ];
var bureaucrats_str = '|' + bureaucrats.join( '|' ) + '|';
var checkusers = [ ];
var checkusers_str = '|' + checkusers.join( '|' ) + '|';
var oversights = [ ];
var oversights_str = '|' + oversights.join( '|' ) + '|';
// Wikifunctions staff members
var staff = [ 'ATsay-WMF', 'CMassaro_(WMF)', 'DMartin_(WMF)', 'DSmit-WMF', 'DVrandecic_(WMF)', 'Etonkovidova_(WMF)', 'GChoi-WMF', 'Geno_(WMF)', 'Jdforrester_(WMF)', 'Sannita_(WMF)' ];
var staff_str = '|' + staff.join( '|' ) + '|';
// Stewards
var stewards = ['1234qwer1234qwer4', 'Ajraddatz', 'Albertoleoncio', 'AntiCompositeNumber', 'AramilFeraxa', 'Base', 'Bsadowski1', 'Daniuu', 'DerHexer', 'Elton', 'EPIC', 'HakanIST', 'Hoo_man', 'Johannnes89', 'Jon_Kolbert', 'KonstantinaG07', 'MarcGarver', 'Martin_Urbanec', 'Masti', 'MdsShakil', 'Melos', 'Mykola7', 'RadiX', 'Sakretsu', 'Schniggendiller', 'Sotiale', 'Stryn', 'Tegel', 'Vermont', 'Wim_b', 'Xaosflux', 'XXBlackburnXx', 'Yahya', '%D8%B9%D9%84%D8%A7%D8%A1' ];
var stewards_str = '|' + stewards.join( '|' ) + '|';
// Ombudsmen
var ombudsmen = [ 'Ameisenigel', 'Arcticocean', 'Chinmayee_Mishra', 'Faendalimas', 'Jnanaranjan sahu', 'Mehman', 'MrJaroslavik', 'Nehaoua', 'Revi_C.', 'RoySmith', 'Teles', 'Zafer' ];
var ombudsmen_str = '|' + ombudsmen.join( '|' ) + '|';
if (
mw.config.get( 'wgCanonicalNamespace' ) === 'Special' ||
mw.config.get( 'wgAction' ) === 'history' ||
mw.config.get( 'wgNamespaceNumber' ) % 2 === 1 ||
mw.config.get( 'wgCanonicalNamespace' ) === 'User' ||
mw.config.get( 'wgCanonicalNamespace' ) === 'Project' ||
mw.config.get( 'wgCanonicalNamespace' ) === 'Help' ||
mw.util.getParamValue( 'diff' ) !== null
) {
var i;
var aNode;
var allanchors = $content.get( 0 ).getElementsByTagName( 'A' );
var searchExp = /.wiki.User.(.+)/;
var trenn = mw.config.get( 'wgArticlePath' ).replace( '$1', mw.config.get( 'wgFormattedNamespaces' )[ 2 ] );
var marker;
var mainpageanchor;
var href;
mw.util.addCSS( 'span.adminMark { font-weight: bold; }' );
for ( i = 0; i < allanchors.length; i++ ) {
aNode = allanchors[ i ];
mainpageanchor = true;
// if it's a link to a user
if ( ( href = aNode.getAttribute( 'href' ) ) && ( href.indexOf( trenn ) !== -1 ) ) {
var exec = searchExp.exec( href );
if(!exec) {
continue;
}
var currUser = exec[ 1 ];
var currUserClean = currUser.replace( /\/.*/, '' );
if ( currUserClean !== currUser ) {
mainpageanchor = false;
}
currUser= '|' + currUserClean + '|';
marker = [];
// is this user an admin?
if ( admins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A' );
}
// is this user an adminbot?
if ( botadmins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A-Bot' );
}
// is this user a renamed admin?
if ( renadmins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A-Ren' );
}
// is this user a bureaucrat?
if ( bureaucrats_str.indexOf( currUser ) !== -1 ) {
marker.push( 'B' );
}
// is this user a checkuser?
if ( checkusers_str.indexOf( currUser ) !== -1 ) {
marker.push( 'CU' );
}
// is this user an oversighter?
if ( oversights_str.indexOf( currUser ) !== -1 ) {
marker.push( 'OS' );
}
// is this user a staff member?
if ( staff_str.indexOf( currUser ) !== -1 ) {
marker.push( 'Staff' );
}
// is this user a steward?
if ( stewards_str.indexOf( currUser ) !== -1 ) {
marker.push( 'S' );
}
// is this user an ombudsman?
if ( ombudsmen_str.indexOf( currUser ) !== -1 ) {
marker.push( 'Omb' );
}
// don't mark certain pages, except link to user main page
if ( mainpageanchor &&
// check finished, now append node
marker.length > 0
) {
// Variante 1 (traditionell)
// var aMark = document.createElement( 'b' );
// Variante 2 (vom Erzbschof)
var aMark = document.createElement( 'span' );
aMark.className = 'adminMark';
var aMarkText = document.createTextNode( ' (' + marker.join( '/' ) + ')' );
aMark.appendChild( aMarkText );
aNode.appendChild( aMark );
}
}
}
}
}
mw.hook( 'wikipage.content' ).add( markAdmins );
}( mediaWiki, jQuery ) );
ci35el4be0e0x03siol7tivogx64s6i
280261
280260
2026-06-03T18:51:25Z
Ameisenigel
44
Update Stewards
280261
javascript
text/javascript
//***********************************************************************
// Adaptiert von [[:d:MediaWiki:Gadget-markAdmins.js]]
// Skript ursprünglich von [[Benutzer:Euku]], 28. Dez. 2005
// Adaptierung/zusätzliche Markierungen/Fixes: [[Benutzer:PDD]]
// Aufgeräumt & beschleunigt: [[Benutzer:Littl]]
// Etwas umgeräumt und potentielle Skinabhängigkeit entfernt: [[Benutzer:Guandalug]]
// Anpassung an WikiData: [[User:NordNordWest]]
// Anpassung an Wikifunctions: [[User:Ameisenigel]]
//***********************************************************************
( function ( mw, $ ) {
function markAdmins( $content ) {
// static list
var admins = [ '99of9', 'Ameisenigel', 'Bunnypranav', 'DVrandecic_(WMF)', 'Jdforrester_(WMF)', 'Mdaniels5757', 'Quiddity_(WMF)', 'Sannita_(WMF)' ];
var admins_str = '|' + admins.join( '|' ) + '|';
var botadmins = [ 'WikiLambda_system' ];
var botadmins_str = '|' + botadmins.join( '|' ) + '|';
var renadmins = [ ];
var renadmins_str = '|' + renadmins.join( '|' ) + '|';
var bureaucrats = [ ];
var bureaucrats_str = '|' + bureaucrats.join( '|' ) + '|';
var checkusers = [ ];
var checkusers_str = '|' + checkusers.join( '|' ) + '|';
var oversights = [ ];
var oversights_str = '|' + oversights.join( '|' ) + '|';
// Wikifunctions staff members
var staff = [ 'ATsay-WMF', 'CMassaro_(WMF)', 'DMartin_(WMF)', 'DSmit-WMF', 'DVrandecic_(WMF)', 'Etonkovidova_(WMF)', 'GChoi-WMF', 'Geno_(WMF)', 'Jdforrester_(WMF)', 'Sannita_(WMF)' ];
var staff_str = '|' + staff.join( '|' ) + '|';
// Stewards
var stewards = ['1234qwer1234qwer4', 'A09', 'Ajraddatz', 'Albertoleoncio', 'AmandaNP', 'AntiCompositeNumber', 'AramilFeraxa', 'Barras', 'Base', 'Bsadowski1', 'Count_Count', 'Daniuu', 'DerHexer', 'Elton', 'EPIC', 'HakanIST', 'Hoo_man', 'Johannnes89', 'Jon_Kolbert', 'KonstantinaG07', 'M7', 'MarcGarver', 'Martin_Urbanec', 'Masti', 'MdsShakil', 'Melos', 'Mykola7', 'RadiX', 'Sakretsu', 'Schniggendiller', 'SHB2000', 'Sotiale', 'Tegel', 'Teles', 'Vermont', 'VIGNERON', 'Wim_b', 'Xaosflux', 'XXBlackburnXx', 'Yahya', '%D8%B9%D9%84%D8%A7%D8%A1' ];
var stewards_str = '|' + stewards.join( '|' ) + '|';
// Ombudsmen
var ombudsmen = [ 'Ameisenigel', 'Arcticocean', 'Chinmayee_Mishra', 'Faendalimas', 'Jnanaranjan sahu', 'Mehman', 'MrJaroslavik', 'Nehaoua', 'Revi_C.', 'RoySmith', 'Teles', 'Zafer' ];
var ombudsmen_str = '|' + ombudsmen.join( '|' ) + '|';
if (
mw.config.get( 'wgCanonicalNamespace' ) === 'Special' ||
mw.config.get( 'wgAction' ) === 'history' ||
mw.config.get( 'wgNamespaceNumber' ) % 2 === 1 ||
mw.config.get( 'wgCanonicalNamespace' ) === 'User' ||
mw.config.get( 'wgCanonicalNamespace' ) === 'Project' ||
mw.config.get( 'wgCanonicalNamespace' ) === 'Help' ||
mw.util.getParamValue( 'diff' ) !== null
) {
var i;
var aNode;
var allanchors = $content.get( 0 ).getElementsByTagName( 'A' );
var searchExp = /.wiki.User.(.+)/;
var trenn = mw.config.get( 'wgArticlePath' ).replace( '$1', mw.config.get( 'wgFormattedNamespaces' )[ 2 ] );
var marker;
var mainpageanchor;
var href;
mw.util.addCSS( 'span.adminMark { font-weight: bold; }' );
for ( i = 0; i < allanchors.length; i++ ) {
aNode = allanchors[ i ];
mainpageanchor = true;
// if it's a link to a user
if ( ( href = aNode.getAttribute( 'href' ) ) && ( href.indexOf( trenn ) !== -1 ) ) {
var exec = searchExp.exec( href );
if(!exec) {
continue;
}
var currUser = exec[ 1 ];
var currUserClean = currUser.replace( /\/.*/, '' );
if ( currUserClean !== currUser ) {
mainpageanchor = false;
}
currUser= '|' + currUserClean + '|';
marker = [];
// is this user an admin?
if ( admins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A' );
}
// is this user an adminbot?
if ( botadmins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A-Bot' );
}
// is this user a renamed admin?
if ( renadmins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A-Ren' );
}
// is this user a bureaucrat?
if ( bureaucrats_str.indexOf( currUser ) !== -1 ) {
marker.push( 'B' );
}
// is this user a checkuser?
if ( checkusers_str.indexOf( currUser ) !== -1 ) {
marker.push( 'CU' );
}
// is this user an oversighter?
if ( oversights_str.indexOf( currUser ) !== -1 ) {
marker.push( 'OS' );
}
// is this user a staff member?
if ( staff_str.indexOf( currUser ) !== -1 ) {
marker.push( 'Staff' );
}
// is this user a steward?
if ( stewards_str.indexOf( currUser ) !== -1 ) {
marker.push( 'S' );
}
// is this user an ombudsman?
if ( ombudsmen_str.indexOf( currUser ) !== -1 ) {
marker.push( 'Omb' );
}
// don't mark certain pages, except link to user main page
if ( mainpageanchor &&
// check finished, now append node
marker.length > 0
) {
// Variante 1 (traditionell)
// var aMark = document.createElement( 'b' );
// Variante 2 (vom Erzbschof)
var aMark = document.createElement( 'span' );
aMark.className = 'adminMark';
var aMarkText = document.createTextNode( ' (' + marker.join( '/' ) + ')' );
aMark.appendChild( aMarkText );
aNode.appendChild( aMark );
}
}
}
}
}
mw.hook( 'wikipage.content' ).add( markAdmins );
}( mediaWiki, jQuery ) );
1y3h8hfpg66s5wqnmmb5990trfld6xz
280262
280261
2026-06-03T18:53:23Z
Ameisenigel
44
280262
javascript
text/javascript
//***********************************************************************
// Adaptiert von [[:d:MediaWiki:Gadget-markAdmins.js]]
// Skript ursprünglich von [[Benutzer:Euku]], 28. Dez. 2005
// Adaptierung/zusätzliche Markierungen/Fixes: [[Benutzer:PDD]]
// Aufgeräumt & beschleunigt: [[Benutzer:Littl]]
// Etwas umgeräumt und potentielle Skinabhängigkeit entfernt: [[Benutzer:Guandalug]]
// Anpassung an WikiData: [[User:NordNordWest]]
// Anpassung an Wikifunctions: [[User:Ameisenigel]]
//***********************************************************************
( function ( mw, $ ) {
function markAdmins( $content ) {
// static list
var admins = [ '99of9', 'Ameisenigel', 'Bunnypranav', 'DVrandecic_(WMF)', 'Jdforrester_(WMF)', 'Mdaniels5757', 'Quiddity_(WMF)', 'Sannita_(WMF)' ];
var admins_str = '|' + admins.join( '|' ) + '|';
var botadmins = [ 'WikiLambda_system' ];
var botadmins_str = '|' + botadmins.join( '|' ) + '|';
var renadmins = [ ];
var renadmins_str = '|' + renadmins.join( '|' ) + '|';
var bureaucrats = [ ];
var bureaucrats_str = '|' + bureaucrats.join( '|' ) + '|';
var checkusers = [ ];
var checkusers_str = '|' + checkusers.join( '|' ) + '|';
var oversights = [ ];
var oversights_str = '|' + oversights.join( '|' ) + '|';
// Wikifunctions staff members
var staff = [ 'ATsay-WMF', 'CMassaro_(WMF)', 'DMartin_(WMF)', 'DSmit-WMF', 'DVrandecic_(WMF)', 'Etonkovidova_(WMF)', 'GChoi-WMF', 'Geno_(WMF)', 'Jdforrester_(WMF)', 'Sannita_(WMF)' ];
var staff_str = '|' + staff.join( '|' ) + '|';
// Stewards
var stewards = ['1234qwer1234qwer4', 'A09', 'Ajraddatz', 'Albertoleoncio', 'AmandaNP', 'AntiCompositeNumber', 'AramilFeraxa', 'Barras', 'Base', 'Bsadowski1', 'Count_Count', 'Daniuu', 'DerHexer', 'Elton', 'EPIC', 'HakanIST', 'Hoo_man', 'Johannnes89', 'Jon_Kolbert', 'KonstantinaG07', 'M7', 'MarcGarver', 'Martin_Urbanec', 'Masti', 'MdsShakil', 'Melos', 'Mykola7', 'RadiX', 'Sakretsu', 'Schniggendiller', 'SHB2000', 'Sotiale', 'Tegel', 'Teles', 'Vermont', 'VIGNERON', 'Wim_b', 'Xaosflux', 'XXBlackburnXx', 'Yahya', '%D8%B9%D9%84%D8%A7%D8%A1' ];
var stewards_str = '|' + stewards.join( '|' ) + '|';
// Ombudsmen
var ombudsmen = [ 'Ameisenigel', 'Arcticocean', 'Chinmayee_Mishra', 'Faendalimas', 'Jnanaranjan_sahu', 'Mehman', 'MrJaroslavik', 'Nehaoua', 'Revi_C.', 'RoySmith', 'Teles', 'Zafer' ];
var ombudsmen_str = '|' + ombudsmen.join( '|' ) + '|';
if (
mw.config.get( 'wgCanonicalNamespace' ) === 'Special' ||
mw.config.get( 'wgAction' ) === 'history' ||
mw.config.get( 'wgNamespaceNumber' ) % 2 === 1 ||
mw.config.get( 'wgCanonicalNamespace' ) === 'User' ||
mw.config.get( 'wgCanonicalNamespace' ) === 'Project' ||
mw.config.get( 'wgCanonicalNamespace' ) === 'Help' ||
mw.util.getParamValue( 'diff' ) !== null
) {
var i;
var aNode;
var allanchors = $content.get( 0 ).getElementsByTagName( 'A' );
var searchExp = /.wiki.User.(.+)/;
var trenn = mw.config.get( 'wgArticlePath' ).replace( '$1', mw.config.get( 'wgFormattedNamespaces' )[ 2 ] );
var marker;
var mainpageanchor;
var href;
mw.util.addCSS( 'span.adminMark { font-weight: bold; }' );
for ( i = 0; i < allanchors.length; i++ ) {
aNode = allanchors[ i ];
mainpageanchor = true;
// if it's a link to a user
if ( ( href = aNode.getAttribute( 'href' ) ) && ( href.indexOf( trenn ) !== -1 ) ) {
var exec = searchExp.exec( href );
if(!exec) {
continue;
}
var currUser = exec[ 1 ];
var currUserClean = currUser.replace( /\/.*/, '' );
if ( currUserClean !== currUser ) {
mainpageanchor = false;
}
currUser= '|' + currUserClean + '|';
marker = [];
// is this user an admin?
if ( admins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A' );
}
// is this user an adminbot?
if ( botadmins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A-Bot' );
}
// is this user a renamed admin?
if ( renadmins_str.indexOf( currUser ) !== -1 ) {
marker.push( 'A-Ren' );
}
// is this user a bureaucrat?
if ( bureaucrats_str.indexOf( currUser ) !== -1 ) {
marker.push( 'B' );
}
// is this user a checkuser?
if ( checkusers_str.indexOf( currUser ) !== -1 ) {
marker.push( 'CU' );
}
// is this user an oversighter?
if ( oversights_str.indexOf( currUser ) !== -1 ) {
marker.push( 'OS' );
}
// is this user a staff member?
if ( staff_str.indexOf( currUser ) !== -1 ) {
marker.push( 'Staff' );
}
// is this user a steward?
if ( stewards_str.indexOf( currUser ) !== -1 ) {
marker.push( 'S' );
}
// is this user an ombudsman?
if ( ombudsmen_str.indexOf( currUser ) !== -1 ) {
marker.push( 'Omb' );
}
// don't mark certain pages, except link to user main page
if ( mainpageanchor &&
// check finished, now append node
marker.length > 0
) {
// Variante 1 (traditionell)
// var aMark = document.createElement( 'b' );
// Variante 2 (vom Erzbschof)
var aMark = document.createElement( 'span' );
aMark.className = 'adminMark';
var aMarkText = document.createTextNode( ' (' + marker.join( '/' ) + ')' );
aMark.appendChild( aMarkText );
aNode.appendChild( aMark );
}
}
}
}
}
mw.hook( 'wikipage.content' ).add( markAdmins );
}( mediaWiki, jQuery ) );
5ctsj7odkyykoy7isftj77pbl869nmh
Z12775
0
21156
280329
236938
2026-06-04T08:03:35Z
Sun8908
9804
Added Z36027 and Z36028 to the approved list of test cases
280329
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z12775"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z12775K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "글자"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "character"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Mkpụrụ edemede"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Zeichen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Jay"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z12776",
"Z36027",
"Z36028"
],
"Z8K4": [
"Z14",
"Z12777"
],
"Z8K5": "Z12775"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "종성"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Korean jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": " Jongseong Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Jongseong aus Hangul"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong dari Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Park Jong Seong saking Korea"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"jongseong",
"Hangul jongseong",
"jongseong from Hangul"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1078",
"Z31K2": [
"Z6",
"Jay"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1362",
"Z31K2": [
"Z6",
"Jay"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "한글 한 글자에서 종성을 떼어 냅니다. 없을 경우 빈 문자열을 출력합니다"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Extract jongseong from a Hangul character. Returns an empty string when there is no jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Wepụ jongseong na mkpụrụ edemede Hangul. Na-eweghachi eriri efu mgbe enweghị jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "extrahiert den Jongseong aus Hangul und gibt eine leere Zeichenkette aus, wenn kein Jongseong enthalten ist"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong adalah nama asli dari Jay ENHYPEN artis K-Pop dari Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Park Jong Seong jeneng asline yaiku Jay ENHYPEN"
}
]
}
}
p8ez0lm1xlv5kthe67jidgo4k24xc40
280333
280329
2026-06-04T08:18:16Z
Sun8908
9804
Removed Z12777 from the approved list of implementations
280333
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z12775"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z12775K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "글자"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "character"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Mkpụrụ edemede"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Zeichen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Jay"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z12776",
"Z36027",
"Z36028"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z12775"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "종성"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Korean jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": " Jongseong Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Jongseong aus Hangul"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong dari Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Park Jong Seong saking Korea"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"jongseong",
"Hangul jongseong",
"jongseong from Hangul"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1078",
"Z31K2": [
"Z6",
"Jay"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1362",
"Z31K2": [
"Z6",
"Jay"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "한글 한 글자에서 종성을 떼어 냅니다. 없을 경우 빈 문자열을 출력합니다"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Extract jongseong from a Hangul character. Returns an empty string when there is no jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Wepụ jongseong na mkpụrụ edemede Hangul. Na-eweghachi eriri efu mgbe enweghị jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "extrahiert den Jongseong aus Hangul und gibt eine leere Zeichenkette aus, wenn kein Jongseong enthalten ist"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong adalah nama asli dari Jay ENHYPEN artis K-Pop dari Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Park Jong Seong jeneng asline yaiku Jay ENHYPEN"
}
]
}
}
nb8zp6a1sdzkwr3xm09zltalt3kwnf5
280334
280333
2026-06-04T08:18:18Z
Sun8908
9804
Added Z36029 to the approved list of implementations
280334
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z12775"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z12775K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "글자"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "character"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Mkpụrụ edemede"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Zeichen"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Jay"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z12776",
"Z36027",
"Z36028"
],
"Z8K4": [
"Z14",
"Z36029"
],
"Z8K5": "Z12775"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "종성"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Korean jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": " Jongseong Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Jongseong aus Hangul"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong dari Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Park Jong Seong saking Korea"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"jongseong",
"Hangul jongseong",
"jongseong from Hangul"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1078",
"Z31K2": [
"Z6",
"Jay"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1362",
"Z31K2": [
"Z6",
"Jay"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1643",
"Z11K2": "한글 한 글자에서 종성을 떼어 냅니다. 없을 경우 빈 문자열을 출력합니다"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Extract jongseong from a Hangul character. Returns an empty string when there is no jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Wepụ jongseong na mkpụrụ edemede Hangul. Na-eweghachi eriri efu mgbe enweghị jongseong"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "extrahiert den Jongseong aus Hangul und gibt eine leere Zeichenkette aus, wenn kein Jongseong enthalten ist"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "Park Jong Seong adalah nama asli dari Jay ENHYPEN artis K-Pop dari Korea"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1362",
"Z11K2": "Park Jong Seong jeneng asline yaiku Jay ENHYPEN"
}
]
}
}
a3sv8yrzzimvkhq9ftuo5agowogr76l
Z13955
0
25651
280228
164487
2026-06-03T15:14:23Z
YoshiRulz
10156
Added Z31679 to the approved list of implementations
280228
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z13955"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z13955K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "n"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "n"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "n"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "nombre"
}
]
}
}
],
"Z8K2": "Z13518",
"Z8K3": [
"Z20",
"Z14829",
"Z14830",
"Z14831"
],
"Z8K4": [
"Z14",
"Z13956",
"Z14854",
"Z31679"
],
"Z8K5": "Z13955"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Euler totient function"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Euler totient ọrụ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Eulersche Phi-Funktion"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "indicatrice d'Euler"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"A000010",
"Euler's totient function",
"Euler's phi function"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
glfugvpdh84jplne8mwl33uy1inrxvt
Z14124
0
26030
280202
155356
2026-06-03T13:16:47Z
YoshiRulz
10156
Added Z36006 to the approved list of implementations
280202
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z14124"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z14124K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "unicode of first character in sequence"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Unicode nke agwa mbụ n'usoro"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "erstes Zeichen von Unicode-Bereich"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z14124K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "unicode of last character in sequence"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Unicode nke agwa ikpeazụ n'usoro"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "letztes Zeichen von Unicode-Bereich"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z14125"
],
"Z8K4": [
"Z14",
"Z14126",
"Z36006"
],
"Z8K5": "Z14124"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "string of characters from unicode range"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "Eriri mkpụrụedemede sitere na oke Unicode"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Zeichenkette von Zeichen aus Unicode-Bereich"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"alphabetic string",
"character range"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns a string of characters sequentially according to the unicode range specified"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "weghachie eriri mkpụrụedemede n'usoro dabere na oke unicode akọwapụtara"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gibt eine Zeichenkette von Zeichen aus dem angegebenen Unicode-Bereich aus"
}
]
}
}
0vm6587mmgmpae094msfxxprzjc6kz3
Z15946
0
29784
280231
202491
2026-06-03T15:25:56Z
YoshiRulz
10156
Added Z36015 to the approved list of test cases
280231
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z15946"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z15946K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "digit string1"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "erste Zahl"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "première chaîne numérique"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z15946K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "digit string2"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "zweite Zahl"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "seconde chaîne numérique"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20",
"Z15947",
"Z15948",
"Z36015"
],
"Z8K4": [
"Z14",
"Z15949"
],
"Z8K5": "Z15946"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "are two numeric strings in descending order"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "ist die zweite Eingabe kleiner als die erste Eingabe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "sont-ce 2 chaînes numériques par ordre décroissant"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns True only if the first string is numerically greater than the second string and both strings contain only digits"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "prüft, ob die zweite Zahl kleiner als die erste Zahl ist"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "renvoie \"vrai\" uniquement si la première chaîne est numériquement supérieure à la seconde chaîne et que les deux chaînes ne contiennent que des chiffres, sinon \"faux\""
}
]
}
}
s4236g07l5nnpq2wnn4yacug7ca36ol
280233
280231
2026-06-03T15:29:08Z
YoshiRulz
10156
Added Z36016 to the approved list of implementations
280233
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z15946"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z15946K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "digit string1"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "erste Zahl"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "première chaîne numérique"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z15946K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "digit string2"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "zweite Zahl"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "seconde chaîne numérique"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20",
"Z15947",
"Z15948",
"Z36015"
],
"Z8K4": [
"Z14",
"Z15949",
"Z36016"
],
"Z8K5": "Z15946"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "are two numeric strings in descending order"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "ist die zweite Eingabe kleiner als die erste Eingabe"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "sont-ce 2 chaînes numériques par ordre décroissant"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "returns True only if the first string is numerically greater than the second string and both strings contain only digits"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "prüft, ob die zweite Zahl kleiner als die erste Zahl ist"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "renvoie \"vrai\" uniquement si la première chaîne est numériquement supérieure à la seconde chaîne et que les deux chaînes ne contiennent que des chiffres, sinon \"faux\""
}
]
}
}
tvbir76tx7mbwkhnhrtigqkbhv56tty
Z18784
0
37202
280198
280153
2026-06-03T12:04:03Z
WikiLambda system
3
Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]])
280198
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z18784"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z18784K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "שם השפה"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "название языка"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language name"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "aha asụsụ: Ụdọ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Sprachenname"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z18786",
"Z18800",
"Z18799",
"Z18801",
"Z18802",
"Z19660",
"Z18785",
"Z33840"
],
"Z8K4": [
"Z14",
"Z18787",
"Z18825"
],
"Z8K5": "Z18784"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "שם שפה ברוסית לתואר פועל שמתאר שפה"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "русское наречие по названию языка"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "convert a language name in Russian to an adverb"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1622",
"Z11K2": "ператварыць рускую назву мовы ў прыслоўе"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "tọgharia aha asụsụ na Russian ka ọ bụrụ nkwuwa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Russischer Sprachenname in Adverb"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "מקבלת שם של שפה ומחזירה תואר פועל שאומר „בשפה” עם תחילית מתאימה."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "получает название языка и возвращает наречие, описывающее этот язык"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "gets a language name in Russian and returns a proverb that means \"in [this language]\""
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gibt für einen russischen Sprachennamen das entsprechende Proverb aus"
}
]
}
}
hfsxoa8uaep3u6433t63skiifc9mw7f
280254
280198
2026-06-03T17:23:42Z
WikiLambda system
3
Updated the implementation list (see [[Help:Wikifunctions/Implementation_ordering_and_choosing|About implementation selection]])
280254
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z18784"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z18784K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "שם השפה"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "название языка"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language name"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "aha asụsụ: Ụdọ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Sprachenname"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z18786",
"Z18800",
"Z18799",
"Z18801",
"Z18802",
"Z19660",
"Z18785",
"Z33840"
],
"Z8K4": [
"Z14",
"Z18825",
"Z18787"
],
"Z8K5": "Z18784"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "שם שפה ברוסית לתואר פועל שמתאר שפה"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "русское наречие по названию языка"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "convert a language name in Russian to an adverb"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1622",
"Z11K2": "ператварыць рускую назву мовы ў прыслоўе"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1014",
"Z11K2": "tọgharia aha asụsụ na Russian ka ọ bụrụ nkwuwa"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Russischer Sprachenname in Adverb"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1186",
"Z11K2": "מקבלת שם של שפה ומחזירה תואר פועל שאומר „בשפה” עם תחילית מתאימה."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1005",
"Z11K2": "получает название языка и возвращает наречие, описывающее этот язык"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "gets a language name in Russian and returns a proverb that means \"in [this language]\""
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gibt für einen russischen Sprachennamen das entsprechende Proverb aus"
}
]
}
}
2loc20zpf8ezq84pmd81vqeaq6hqlve
Z19081
0
40399
280273
173784
2026-06-03T20:35:59Z
Ameisenigel
44
de
280273
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19081"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z16829",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z16829",
"Z16829K1": "Z6005"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z19084",
"Z19084K2": "Z4"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata lexeme is a Type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "le type de lexème Wikidata est type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Wikidata-Lexem ist ein Typ"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1360",
"Z31K2": [
"Z6",
"Z6005.Z1K1 == Z4"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
4sha3jzu6jvzzoa8o58mgvlxj8p1i1q
Z19082
0
40473
280274
131198
2026-06-03T20:36:29Z
Ameisenigel
44
de
280274
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19082"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19023",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19023",
"Z19023K1": "FI123ABC78"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z844",
"Z844K2": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1051",
"Z11K2": "FI123ABC78"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "FI123ABC78"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "FI123ABC78 ist ungültig"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
d8kbwucdl4haqzk6u34r68xc3e69l93
Z19083
0
40480
280275
158674
2026-06-03T20:36:49Z
Ameisenigel
44
de
280275
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19083"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z19077",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z19077(Z19077K1):\n\treturn Z19077K1.Z4K1"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "identity of Type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "identité de type, en Python"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Typidentität in Python"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1360",
"Z31K2": [
"Z6",
"Z4K1"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
d69qzcaarp4rdevgf9tbrwhfqwaymz5
Z19084
0
40481
280276
228539
2026-06-03T20:37:27Z
Ameisenigel
44
280276
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19084"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z4",
"Z17K2": "Z19084K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "this Type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "premier type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "একটি ধরণ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "primo tipo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "dieser Typ"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z4",
"Z17K2": "Z19084K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "that Type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "second type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "আরেকটি ধরণ"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "secondo tipo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "dieser andere Typ"
}
]
}
}
],
"Z8K2": "Z40",
"Z8K3": [
"Z20",
"Z19087",
"Z19092",
"Z19096",
"Z19097",
"Z19099",
"Z23438",
"Z29405"
],
"Z8K4": [
"Z14",
"Z28731",
"Z19088",
"Z19101"
],
"Z8K5": "Z19084"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "same Type"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "est-ce le même type ?"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ধরনের সমতা"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "stesso tipo"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gleicher Typ"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Type identities are equal",
"Type equality",
"==Z4",
"equal types",
"both types are the same"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1360",
"Z31K2": [
"Z6",
"==Z4"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1011",
"Z31K2": [
"Z6",
"ধরনের পরিচয় এক",
"একই ধরণ"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1430",
"Z31K2": [
"Z6",
"Typgleichheit",
"Beide Typen sind gleich"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "two Types are the same if their Z4K1/identities are the same or the Z2K2/value of the Type referenced in one identity is the same as the full Type supplied by the other"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "যাচাই করে যে প্রদত্ত দুটি ধরণ কি একই না ভিন্ন। "
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Beide Typen sind gleich, wenn ihre Z4K1/Identitäten das gleiche sind oder wenn der Z2K2/Wert des Typ, auf den in einer Identität verwiesen wird, der gleiche ist wie der vollständige Typ vom Anderen"
}
]
}
}
ckrna7ygyyewgohjo23aqnapffrek79
Z19085
0
40482
280277
213153
2026-06-03T20:38:25Z
Ameisenigel
44
de
280277
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19085"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z19085K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "number"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1037",
"Z11K2": "número"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Zahl"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20",
"Z19086",
"Z19089",
"Z19090",
"Z19091",
"Z27797",
"Z27798",
"Z27799",
"Z27800"
],
"Z8K4": [
"Z14",
"Z19103"
],
"Z8K5": "Z19085"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Number to scientific notation (strings)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1037",
"Z11K2": "Número para notação científica"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Zahl in wissenschaftliche Notation (Zeichenketten)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Converts a number to scientific notation form."
},
{
"Z1K1": "Z11",
"Z11K1": "Z1037",
"Z11K2": "Converte um número para notação científica"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "wandelt eine Zahl in die wissenschaftliche Notation um"
}
]
}
}
p7a9m3jkzvcan10de65698slw09jfa9
Z19086
0
40483
280278
131700
2026-06-03T20:39:29Z
Ameisenigel
44
de
280278
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19086"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19085",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19085",
"Z19085K1": "2"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "2e0"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "2 = 2e0"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "2 → 2e0"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
3ce4h879mz8lys9pr9sgozo0b0jleiy
Z19087
0
40484
280279
131300
2026-06-03T20:41:42Z
Ameisenigel
44
de
280279
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19087"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19084",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19084",
"Z19084K1": {
"Z1K1": "Z7",
"Z7K1": "Z18626",
"Z18626K1": [
"Z40",
{
"Z1K1": "Z40",
"Z40K1": "Z42"
}
]
},
"Z19084K2": {
"Z1K1": "Z7",
"Z7K1": "Z16829",
"Z16829K1": "Z42"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z844",
"Z844K2": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Type for Boolean list is Type of False"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "boolesche Liste hat gleichen Typ wie falsch"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ahbhdj680tf5p4yhkw361xg6m4kg80k
Z19088
0
40485
280280
195046
2026-06-03T20:42:00Z
Ameisenigel
44
de
280280
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19088"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z19084",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z19084(Z19084K1, Z19084K2):\n\treturn Z19084K1.Z4K1 == Z19084K2.Z4K1"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "same Type, Python"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "est-ce le même type ?, en Python"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1011",
"Z11K2": "ধরনের সমতা, পাইথন"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "gleicher Typ in Python"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
88hrklryhztxhuytrke34em9z1l9hgd
Z19089
0
40486
280281
131701
2026-06-03T20:42:47Z
Ameisenigel
44
de
280281
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19089"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19085",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19085",
"Z19085K1": "16"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "1.6e1"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "16 = 1.6e1"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "16 → 1.6e1"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
pwgxm5j92867g64gs4d0dttfpx8ow34
Z19090
0
40487
280282
131702
2026-06-03T20:43:47Z
Ameisenigel
44
de
280282
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z19090"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z19085",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z19085",
"Z19085K1": "0.4"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "4e-1"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "0.4 = 4e-1"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "0.4 → 4e-1"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Test if a number smaller than 1 outputs a negative exponent"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1430",
"Z11K2": "Test mit einer kleineren Zahl als 1 ergibt einen negativen Exponenten"
}
]
}
}
57hwyeo2eteltxwm933yitg9nrubaum
Wikifunctions:Catalogue/List operations
4
41955
280259
277477
2026-06-03T17:34:01Z
YoshiRulz
10156
/* Generation */ Add arithmetic progression functions
280259
wikitext
text/x-wiki
* {{Z+|Z881}}
== Properties ==
<!-- type -->
* {{Z+|Z18636}}
<!-- length -->
* {{Z+|Z12681}}
** {{Z+|Z30164}}
*** {{Z+|Z813}}
**** {{Z+|Z23120}}
**** {{Z+|Z30075}}
*** {{Z+|Z32302}}
*** {{Z+|Z12755}}
*** {{Z+|Z12759}}
*** {{Z+|Z12864}}
**** {{Z+|Z13310}}
**** {{Z+|Z21212}}
**** {{Z+|Z12851}}
** {{Z+|Z31612}}
*** {{Z+|Z35587}}
** {{Z+|Z31605}}
* {{Z+|Z31592}}
<!-- contains -->
* {{Z+|Z12696}}
** {{Z+|Z34367}}
** {{Z+|Z12738}}
*** {{Z+|Z13752}}
*** {{Z+|Z12698}}
** {{Z+|Z12735}}
*** {{Z+|Z12684}}
** {{Z+|Z34378}}
** {{Z+|Z12846}}
*** {{Z+|Z34380}}
*** {{Z+|Z12741}}
<!-- equals -->
* {{Z+|Z889}}
** {{Z+|Z18646}}
*** {{Z+|Z24166}}
** {{Z+|Z34273}}
** {{Z+|Z31013}}
*** {{Z+|Z31019}}
*** {{Z+|Z10393}}
*** {{Z+|Z31026}}
<!-- count -->
* {{Z+|Z29413}}
** {{Z+|Z31600}}
** {{Z+|Z22874}}
** {{Z+|Z34793}}
*** {{Z+|Z29409}}
<!-- indexOf -->
* {{Z+|Z13708}}
** {{Z+|Z28715}}
** {{Z+|Z19536}}
** {{Z+|Z31575}}
*** {{Z+|Z31583}}
<!-- startsWith -->
* {{Z+|Z21613}}
** {{Z+|Z31294}}
** {{Z+|Z30975}}
*** {{Z+|Z30977}}
*** {{Z+|Z31002}}
<!-- endsWith -->
* {{Z+|Z31758}}
** {{Z+|Z31763}}
** {{Z+|Z30976}}
*** {{Z+|Z30978}}
*** {{Z+|Z31003}}
== Indexing/slicing ==
<!-- first -->
* {{Z+|Z811}}
** {{Z+|Z22839}}
** {{Z+|Z13366}}
*** {{Z+|Z24203}}
* {{Z+|Z29446}}
** {{Z+|Z16360}}
<!-- last -->
* {{Z+|Z12964}}
** {{Z+|Z13362}}
<!-- nth -->
* {{Z+|Z13397}}
** {{Z+|Z26904}}
** {{Z+|Z30282}}
*** {{Z+|Z31587}}
** {{Z+|Z26556}}
** {{Z+|Z31809}}
*** {{Z+|Z28735}}
<!-- dropFirst -->
* {{Z+|Z812}}
** {{Z+|Z13369}}
*** {{Z+|Z31874}}
<!-- dropLast -->
* {{Z+|Z12967}}
** {{Z+|Z13373}}
** {{Z|Z18284}}
== Removal/filtering ==
<!-- remove -->
* {{Z+|Z12856}}
** {{Z+|Z13081}}
*** {{Z|Z18291}}
** {{Z+|Z22865}}
** {{Z+|Z34538}}
** {{Z+|Z19205}}
*** {{Z+|Z13078}}
*** {{Z+|Z19202}}
** {{Z+|Z31874}}
<!-- removeAt -->
* {{Z+|Z31364}}
** {{Z+|Z13429}}
** {{Z+|Z35597}}
** {{Z+|Z13369}}
** {{Z+|Z13373}}
** {{Z+|Z29400}}
*** {{Z+|Z18194}}
<!-- filter with predicate -->
* {{Z+|Z872}}
** {{Z+|Z33453}}
** {{Z+|Z21809}}
** {{Z+|Z28316}}
<!-- filter by key -->
* {{Z+|Z27413}}
** {{Z+|Z33105}}
*** {{Z+|Z24849}}
**** {{Z+|Z24855}}
== Substitution/transformation ==
<!-- un/type -->
* {{Z|Z15142}} (no-op)
* {{Z+|Z18729}}
** {{Z+|Z18475}}
** {{Z+|Z17895}}
*** {{Z+|Z28691}}
<!-- substituteAt -->
* {{Z+|Z31369}}
<!-- map -->
* {{Z+|Z873}}
** {{Z+|Z24846}}
** {{Z+|Z32453}}
** {{Z+|Z32806}}
== Insertion ==
<!-- prepend -->
* {{Z+|Z810}}
** {{Z+|Z24285}}
** {{Z+|Z31721}}
<!-- append -->
* {{Z+|Z18597}}
** {{Z+|Z12961}}
*** {{Z+|Z24150}}
*** {{Z|Z18276}}
** {{Z+|Z34519}}
** {{Z+|Z24655}}
** {{Z+|Z33720}}
<!-- insert -->
* {{Z+|Z31345}}
** {{Z+|Z31340}}
** {{Z+|Z33646}}
<!-- concat -->
* {{Z+|Z12767}}
** {{Z+|Z18755}}
*** {{Z|Z18288}}
** {{Z+|Z27665}}
** {{Z+|Z34538}}
== Generation ==
<!-- list from element -->
* {{Z+|Z14046}}
** {{Z+|Z27685}}
** {{Z+|Z24291}}
** {{Z+|Z21389}}
<!-- from range -->
* {{Z+|Z21821}}
** {{Z+|Z23921}}
*** {{Z+|Z24387}}
*** {{Z+|Z24382}}
** {{Z+|Z13831}}
** {{Z+|Z31619}}
*** {{Z+|Z36018}}
<!-- product of lists -->
* {{Z+|Z29286}}
** {{Z+|Z29324}}
<!-- power set -->
* {{Z+|Z18194}}
== Ordering and grouping ==
<!-- reverse -->
* {{Z+|Z18759}}
** {{Z+|Z12668}}
** {{Z+|Z18479}}
** {{Z|Z17770}}
** {{Z|Z17774}}
** {{Z|Z17778}}
* {{Z+|Z24176}}
<!-- cycle -->
* {{Z+|Z31355}}
** {{Z+|Z25526}}
** {{Z+|Z22179}}
<!-- sort by key -->
* {{Z+|Z29725}}
* {{Z+|Z19510}}
<!-- sort with comparator -->
* {{Z+|Z27612}}
** {{Z+|Z17873}}
*** {{Z+|Z29429}}
** {{Z+|Z17869}}
** {{Z+|Z12671}}
** {{Z+|Z18281}}
<!-- shuffle -->
* {{Z+|Z29400}}
* {{Z+|Z13247}}
<!-- group -->
* {{Z+|Z30157}}
** {{Z+|Z32585}}
* {{Z+|Z34790}}
** {{Z+|Z30865}}
<!-- chunk -->
* {{Z+|Z29795}}
* {{Z+|Z13224}}
<!-- reduce -->
* {{Z|Z876}} (actually left-associative ''fold'')
** {{Z|Z12781}} (actually left-associative ''reduce'')
*** {{Z|Z20089}} w/ initial empty check
** {{Z|Z12753}} (actually right-associative ''reduce'')
<!-- flatten -->
* {{Z+|Z12676}}
** {{Z+|Z23606}}
** {{Z+|Z27665}}
*** {{Z+|Z32453}}
** {{Z+|Z13155}}
== Matrix math ==
Since we don't have specific types for vectors or matrices, vectors are represented as a list and matrices as a list of lists (to be interpreted as a list of rows).
<!-- properties -->
* {{Z+|Z31612}}
** {{Z+|Z35587}}
* {{Z+|Z31747}}
** {{Z+|Z31752}}
* {{Z+|Z35585}}
* {{Z+|Z24166}}
** {{Z+|Z24171}}
<!-- indexing -->
* {{Z+|Z13397}}
** {{Z+|Z30282}}
** {{Z+|Z31587}}
*** {{Z+|Z31585}}
<!-- removal -->
* {{Z+|Z31364}}
** {{Z+|Z35597}}
<!-- transformation -->
* {{Z+|Z32806}}
* {{Z+|Z31818}}
* {{Z+|Z24055}}
** {{Z+|Z17670}}
*** {{Z+|Z17675}}
** {{Z+|Z24162}}
* {{Z+|Z24060}}
** {{Z+|Z24436}}
* {{Z+|Z24185}}
** {{Z+|Z20659}}
* {{Z+|Z21903}}
* {{Z+|Z24239}}
** {{Z+|Z31749}}
* {{Z+|Z24346}}
** {{Z+|Z24342}}
* {{Z+|Z14046}}
** {{Z+|Z24177}}
* {{Z+|Z29301}}
** {{Z+|Z24182}}
* {{Z+|Z24191}}
* {{Z+|Z24236}}
* {{Z+|Z29308}}
<!-- insertion -->
* {{Z+|Z810}}
** {{Z+|Z24285}}
** {{Z+|Z24299}}
* {{Z+|Z18597}}
<!-- ordering -->
* {{Z+|Z18759}}
* {{Z+|Z24176}}
<!-- generation -->
* {{Z+|Z24291}} (useful for creating 1x1 matrixes)
** {{Z+|Z24251}}
* {{Z+|Z24290}}
* {{Z+|Z29286}}
** {{Z+|Z29324}}
== Functions expecting a list argument ==
* [[Special:Search/: "Z17K1 Z1K1 Z7 Z7K1 Z881 Z881K1"|Complete list of functions]]
** [[Special:Search/: "Z17K1 Z1K1 Z7 Z7K1 Z881 Z881K1" !"Z17K1 Z1K1 Z7 Z7K1 Z881 Z881K1 Z1"| Functions specifying a “properly typed” list argument]]
** [[Special:Search/: "Z17K1 Z1K1 Z7 Z7K1 Z881 Z881K1 Z1"|Functions not specifying the type for their list argument (Z1-typed or “untyped”)]]
== Functions with list outputs ==
*[[Special:Search/: "Z8K2 Z1K1 Z7 Z7K1 Z881 Z881K1"|Complete list of functions]]
**[[Special:Search/: "Z8K2 Z1K1 Z7 Z7K1 Z881 Z881K1" !"Z8K2 Z1K1 Z7 Z7K1 Z881 Z881K1 Z1|Functions specifying a “properly typed” output list]]
**[[Special:Search/: "Z8K2 Z1K1 Z7 Z7K1 Z881 Z881K1 Z1"|Functions not specifying the type for the output list (Z1-typed or “untyped”)]]
# If a function specifies an output list with a type other than [[Z1]] (that is, it specifies a "properly typed" list), mismatched elements cause an error if the implementation is in code.
# If all objects in an output list have the same type, the list takes that type instead of being Z1-typed. This only happens if the implementation is in code. For compositions, you can use {{Z|Z18475}} to get the same result.
#If a code implementation needs custom-converted objects (provided by a {{Z|Z46}}), any list input must be properly typed (objects in a Z1-typed list are not converted). Similarly, any list output must be properly typed (not [[Z1]] in the function specification) or else conversion into a Wikifunctions object will fail.
#If a code implementation does not need converted objects, you can use {{Z|Z28691}} to convert a properly typed list to Z1-typed (but this is [[Wikifunctions:Project_chat/Archive/2024/07#Typed_lists_now_open_beyond_Booleans_and_Strings|not officially supported]]). (The list will remain properly typed if there are no custom converters to code. Use {{Z|Z17895}} to make the list Z1-typed unconditionally.)
[[Category:Lists of functions]]
nh06kcx0u24ayxxeaqdxf4g6jlrlsda
User talk:Theki
3
47935
280245
270444
2026-06-03T16:47:54Z
Feeglgeef
8776
/* Z32234 */ new section
280245
wikitext
text/x-wiki
__NOINDEX__
__TOC__
== Welcome ==
{{Welcome/lang|user=Theki|welcominguser=VIGNERON|1=[[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 18:43, 15 January 2025 (UTC)}}
== Z24608 ==
You've created [[Z24608]]. It doesn't have any tests or implementations. Do you plan to do anything with it? [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 00:09, 22 March 2026 (UTC)
:Yes. It has a definite use, I just haven't gotten around to implementing it yet. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 06:12, 22 March 2026 (UTC)
== [[Z22571]] ==
To be clear, is this only meant to be used for individual words? [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 14:08, 28 April 2026 (UTC)
:No, you can provide it a chain of space-separated Latin-alphabet words and it will convert all of them to UCSUR glyphs. I connected a test to demonstrate it: {{Z|Z34447}}. This is intended behavior, so you shouldn't have to worry about it being prone to breakage. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 14:58, 28 April 2026 (UTC)
::Do you intend to interop this with [[Z34200]]? Currently, "jan Suni li lili." returns undefinedundefined. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:19, 28 April 2026 (UTC)
:::Also, does the sitelen pona render on your end? I installed a font for it, but it isn't displaying. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:34, 28 April 2026 (UTC)
::::You need to define it as a fallback directly in your CSS, I think. I'm not sure how to accomplish this outside of a Web browser, so until sitelen pona glyphs are added to Unicode (and a Noto font is made for it, I guess) this will probably remain an issue. In the interim, you can add this to your userstyles in your browser if you are able to:
::::<syntaxhighlight lang=css>
body {
font-family: inherit, "nasin-nanpa"; /* or whatever your SP system font name is */
}
</syntaxhighlight>
::::I ''think'' this will work, but I'm not sure. I have ligatures disabled in my userstyles for SP fonts except for <code>.sitelenpona, .sitelen-pona, .sp, .sp-static</code> elements or similar (as is common on e.g. sona pona and official(?) websites). I'd give you my custom CSS but I'm not at home so I can't access it. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:07, 28 April 2026 (UTC)
:::I do intend to work together some kind of function that performs both functionalities, not sure if it would be its own function or if it would be merged into another. {{Z|Z34200}} currently contains verbatim the code from {{Z|Z22571}}, so I think it would be easiest to merge that script's functionality into the latter function and have Z22571 be the be-all end-all. I want to know your thoughts, though, because doing that merge would mean leaving Z34200 behind, and I don't ''know'' if it would be appropriate to delete it afterwards for being unused? or if it would/should remain up as a specialized function. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:12, 28 April 2026 (UTC)
== [[Z32234]] ==
Hi! On the 29th, you disconnected the python implementation of this function. If you look at the execution times, the composition takes about 2000 ms more than the python implementation, which is about 20% of the time the orchestrator allows. Was there some functionality that the composition includes that the python implementation does not? Thanks, [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 16:47, 3 June 2026 (UTC)
nbou74wght14rb5yva6s91ghpq1upcc
280283
280245
2026-06-03T23:09:54Z
Theki
2389
/* Z32234 */
280283
wikitext
text/x-wiki
__NOINDEX__
__TOC__
== Welcome ==
{{Welcome/lang|user=Theki|welcominguser=VIGNERON|1=[[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 18:43, 15 January 2025 (UTC)}}
== Z24608 ==
You've created [[Z24608]]. It doesn't have any tests or implementations. Do you plan to do anything with it? [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 00:09, 22 March 2026 (UTC)
:Yes. It has a definite use, I just haven't gotten around to implementing it yet. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 06:12, 22 March 2026 (UTC)
== [[Z22571]] ==
To be clear, is this only meant to be used for individual words? [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 14:08, 28 April 2026 (UTC)
:No, you can provide it a chain of space-separated Latin-alphabet words and it will convert all of them to UCSUR glyphs. I connected a test to demonstrate it: {{Z|Z34447}}. This is intended behavior, so you shouldn't have to worry about it being prone to breakage. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 14:58, 28 April 2026 (UTC)
::Do you intend to interop this with [[Z34200]]? Currently, "jan Suni li lili." returns undefinedundefined. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:19, 28 April 2026 (UTC)
:::Also, does the sitelen pona render on your end? I installed a font for it, but it isn't displaying. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:34, 28 April 2026 (UTC)
::::You need to define it as a fallback directly in your CSS, I think. I'm not sure how to accomplish this outside of a Web browser, so until sitelen pona glyphs are added to Unicode (and a Noto font is made for it, I guess) this will probably remain an issue. In the interim, you can add this to your userstyles in your browser if you are able to:
::::<syntaxhighlight lang=css>
body {
font-family: inherit, "nasin-nanpa"; /* or whatever your SP system font name is */
}
</syntaxhighlight>
::::I ''think'' this will work, but I'm not sure. I have ligatures disabled in my userstyles for SP fonts except for <code>.sitelenpona, .sitelen-pona, .sp, .sp-static</code> elements or similar (as is common on e.g. sona pona and official(?) websites). I'd give you my custom CSS but I'm not at home so I can't access it. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:07, 28 April 2026 (UTC)
:::I do intend to work together some kind of function that performs both functionalities, not sure if it would be its own function or if it would be merged into another. {{Z|Z34200}} currently contains verbatim the code from {{Z|Z22571}}, so I think it would be easiest to merge that script's functionality into the latter function and have Z22571 be the be-all end-all. I want to know your thoughts, though, because doing that merge would mean leaving Z34200 behind, and I don't ''know'' if it would be appropriate to delete it afterwards for being unused? or if it would/should remain up as a specialized function. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:12, 28 April 2026 (UTC)
== [[Z32234]] ==
Hi! On the 29th, you disconnected the python implementation of this function. If you look at the execution times, the composition takes about 2000 ms more than the python implementation, which is about 20% of the time the orchestrator allows. Was there some functionality that the composition includes that the python implementation does not? Thanks, [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 16:47, 3 June 2026 (UTC)
:Um... did I? I don't remember doing that. I might have disconnected it because it wasn't able to format monolingual text in the way the composition does... the text is expected to be wrapped in a <code><nowiki><span></nowiki></code> with the <code>lang</code> attribute set to the language code of the natural language object in the text's Z11K1 key, but I wasn't able to get the language code because the value was just a string and I still don't think non-Composition implementations can fetch other Wikifunctions data outside of what they're given. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 23:09, 3 June 2026 (UTC)
dnr5zlmdpzfvhcmqq1n8y0wia64ea20
280284
280283
2026-06-03T23:10:54Z
Theki
2389
/* Z32234 */
280284
wikitext
text/x-wiki
__NOINDEX__
__TOC__
== Welcome ==
{{Welcome/lang|user=Theki|welcominguser=VIGNERON|1=[[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 18:43, 15 January 2025 (UTC)}}
== Z24608 ==
You've created [[Z24608]]. It doesn't have any tests or implementations. Do you plan to do anything with it? [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 00:09, 22 March 2026 (UTC)
:Yes. It has a definite use, I just haven't gotten around to implementing it yet. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 06:12, 22 March 2026 (UTC)
== [[Z22571]] ==
To be clear, is this only meant to be used for individual words? [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 14:08, 28 April 2026 (UTC)
:No, you can provide it a chain of space-separated Latin-alphabet words and it will convert all of them to UCSUR glyphs. I connected a test to demonstrate it: {{Z|Z34447}}. This is intended behavior, so you shouldn't have to worry about it being prone to breakage. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 14:58, 28 April 2026 (UTC)
::Do you intend to interop this with [[Z34200]]? Currently, "jan Suni li lili." returns undefinedundefined. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:19, 28 April 2026 (UTC)
:::Also, does the sitelen pona render on your end? I installed a font for it, but it isn't displaying. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:34, 28 April 2026 (UTC)
::::You need to define it as a fallback directly in your CSS, I think. I'm not sure how to accomplish this outside of a Web browser, so until sitelen pona glyphs are added to Unicode (and a Noto font is made for it, I guess) this will probably remain an issue. In the interim, you can add this to your userstyles in your browser if you are able to:
::::<syntaxhighlight lang=css>
body {
font-family: inherit, "nasin-nanpa"; /* or whatever your SP system font name is */
}
</syntaxhighlight>
::::I ''think'' this will work, but I'm not sure. I have ligatures disabled in my userstyles for SP fonts except for <code>.sitelenpona, .sitelen-pona, .sp, .sp-static</code> elements or similar (as is common on e.g. sona pona and official(?) websites). I'd give you my custom CSS but I'm not at home so I can't access it. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:07, 28 April 2026 (UTC)
:::I do intend to work together some kind of function that performs both functionalities, not sure if it would be its own function or if it would be merged into another. {{Z|Z34200}} currently contains verbatim the code from {{Z|Z22571}}, so I think it would be easiest to merge that script's functionality into the latter function and have Z22571 be the be-all end-all. I want to know your thoughts, though, because doing that merge would mean leaving Z34200 behind, and I don't ''know'' if it would be appropriate to delete it afterwards for being unused? or if it would/should remain up as a specialized function. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:12, 28 April 2026 (UTC)
== [[Z32234]] ==
Hi! On the 29th, you disconnected the python implementation of this function. If you look at the execution times, the composition takes about 2000 ms more than the python implementation, which is about 20% of the time the orchestrator allows. Was there some functionality that the composition includes that the python implementation does not? Thanks, [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 16:47, 3 June 2026 (UTC)
:Um... did I? I don't remember doing that. I might have disconnected it because it wasn't able to format monolingual text in the way the composition does... the text is expected to be wrapped in a <code><nowiki><span></nowiki></code> with the <code>lang</code> attribute set to the language code of the natural language object in the text's Z11K1 key, but I wasn't able to get the language code because the Z11K1 value was just a string rather than the Z60 object itself, and I still don't think non-Composition implementations can fetch other Wikifunctions data outside of what they're given. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 23:09, 3 June 2026 (UTC)
mkovgpnhkaqt6gwtrt1onq61uu2n6yx
280285
280284
2026-06-04T01:07:46Z
Feeglgeef
8776
/* Z32234 */ Reply
280285
wikitext
text/x-wiki
__NOINDEX__
__TOC__
== Welcome ==
{{Welcome/lang|user=Theki|welcominguser=VIGNERON|1=[[User:VIGNERON|VIGNERON]] ([[User talk:VIGNERON|talk]]) 18:43, 15 January 2025 (UTC)}}
== Z24608 ==
You've created [[Z24608]]. It doesn't have any tests or implementations. Do you plan to do anything with it? [[User:Amire80|Amir E. Aharoni]] ([[User talk:Amire80|talk]]) 00:09, 22 March 2026 (UTC)
:Yes. It has a definite use, I just haven't gotten around to implementing it yet. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 06:12, 22 March 2026 (UTC)
== [[Z22571]] ==
To be clear, is this only meant to be used for individual words? [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 14:08, 28 April 2026 (UTC)
:No, you can provide it a chain of space-separated Latin-alphabet words and it will convert all of them to UCSUR glyphs. I connected a test to demonstrate it: {{Z|Z34447}}. This is intended behavior, so you shouldn't have to worry about it being prone to breakage. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 14:58, 28 April 2026 (UTC)
::Do you intend to interop this with [[Z34200]]? Currently, "jan Suni li lili." returns undefinedundefined. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:19, 28 April 2026 (UTC)
:::Also, does the sitelen pona render on your end? I installed a font for it, but it isn't displaying. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 15:34, 28 April 2026 (UTC)
::::You need to define it as a fallback directly in your CSS, I think. I'm not sure how to accomplish this outside of a Web browser, so until sitelen pona glyphs are added to Unicode (and a Noto font is made for it, I guess) this will probably remain an issue. In the interim, you can add this to your userstyles in your browser if you are able to:
::::<syntaxhighlight lang=css>
body {
font-family: inherit, "nasin-nanpa"; /* or whatever your SP system font name is */
}
</syntaxhighlight>
::::I ''think'' this will work, but I'm not sure. I have ligatures disabled in my userstyles for SP fonts except for <code>.sitelenpona, .sitelen-pona, .sp, .sp-static</code> elements or similar (as is common on e.g. sona pona and official(?) websites). I'd give you my custom CSS but I'm not at home so I can't access it. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:07, 28 April 2026 (UTC)
:::I do intend to work together some kind of function that performs both functionalities, not sure if it would be its own function or if it would be merged into another. {{Z|Z34200}} currently contains verbatim the code from {{Z|Z22571}}, so I think it would be easiest to merge that script's functionality into the latter function and have Z22571 be the be-all end-all. I want to know your thoughts, though, because doing that merge would mean leaving Z34200 behind, and I don't ''know'' if it would be appropriate to delete it afterwards for being unused? or if it would/should remain up as a specialized function. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 16:12, 28 April 2026 (UTC)
== [[Z32234]] ==
Hi! On the 29th, you disconnected the python implementation of this function. If you look at the execution times, the composition takes about 2000 ms more than the python implementation, which is about 20% of the time the orchestrator allows. Was there some functionality that the composition includes that the python implementation does not? Thanks, [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 16:47, 3 June 2026 (UTC)
:Um... did I? I don't remember doing that. I might have disconnected it because it wasn't able to format monolingual text in the way the composition does... the text is expected to be wrapped in a <code><nowiki><span></nowiki></code> with the <code>lang</code> attribute set to the language code of the natural language object in the text's Z11K1 key, but I wasn't able to get the language code because the Z11K1 value was just a string rather than the Z60 object itself, and I still don't think non-Composition implementations can fetch other Wikifunctions data outside of what they're given. — [[User:Theki|rae<sup>5e</sup>]] <[[User talk:Theki|talk]]> 23:09, 3 June 2026 (UTC)
::Yeah. I believe the only solution to this would be a thousand-plus-key dictionary, where you take each ZObject and get the language code. Ideally, though, Wikilambda should be resolving these references, so perhaps a Phabricator task is in order? [[User:Feeglgeef|Feeglgeef]] ([[User talk:Feeglgeef|talk]]) 01:07, 4 June 2026 (UTC)
g0xo9vz77rj0o0grhmurkov1t169krl
Wikifunctions:Function of the Week/submissions
4
48263
280326
181843
2026-06-04T07:34:27Z
99of9
1622
start pitch
280326
wikitext
text/x-wiki
Add the Wikitext of a full written submission for Function of the Week in a new section at the bottom of this page. If considered ready, it may be chosen for inclusion by the editors of the weekly status update.
==Guidelines==
Generally a submission should cover:
* The purpose of the function and the uses it is expected to have.
* Sufficient context or links to explain the background to unfamiliar readers.
* The general methodology of each implementation.
* What each test achieves that others don't.
* Anything interesting and special about the function.
==Sample ==
Below is a stripped down minimal sample
=== Function of the Week: minimum of a list of natural numbers ===
This week we are discussing: [[Z19509|minimum of a list of natural numbers]].
The function takes _ inputs... and returns...
_ tests are available:
* [[Z19518|An empty list returns 0]]
_ implementations are available:
* One [[Z19526|implementation in JavaScript]]. It first ...
This function is/will be used for ...
This function is a great example function, because it demonstrates...
== Submissions ==
=== Function of the Week: main articles ===
[[Z33842|main articles]] is a function for Abstract Wikipedia, to be used after a section heading to link to a separate article with more information about that subtopic. These links help the reader to quickly navigate to the topics they are most interested in, and are widely used across most language editions of Wikipedia. This abstract version is modelled after the English Wikipedia [[w:Template:Main|Template:Main]], which takes a (usually short) set of articles to link to, optional alternative label strings for those links, and a parameter to denote and slightly change the behaviour of self-references. It returns a short inset referring to this link as the Main article for the subsection, for example in the History section of the article about [[:w:Australia|Australia]] it returns: ''Main article:'' [[w:History of Australia|History of Australia]].
Our function, [[Z33842|main articles]] is set up to accept three similar inputs and the language in which it should be rendered. The link items are entered as a list of [[Z6091|QIDs]]. The alternate labels cannot simply be strings, because they would not work in all languages. For now, we accept a list of objects, but do not yet support any functionality on these objects. In the future they may be populated with function references or other data structures with the information required to generate alternate labels. The self-reference parameter is a Boolean.
The function returns an [[Z89|HTML fragment]], and the [[Z33847|composition implementation]] deals with wrapping the each language's output with an HTML <code>div role="note" class="hatnote navigation-not-searchable"</code>.
6 tests are available:
* [[Z33843|''Main article:'' History of Australia]]
* [[Z33867|''Main articles:'' Geography of Australia and Australian continent]]
* [[Z35805|''Main articles:'' Australian Government, Politics of Australia and Monarchy of Australia]] currently failing due to a tracked bug [https://phabricator.wikimedia.org/T427454 T427454] affecting [[Z13464]] which the composition relies on.
* [[Z36025|''Hoofdartikel:'' Geografie van Australië]] in Belgian Dutch.
* [[Z33853|''→ Hauptartikel:'' Klima in Australien]] awaiting an implementation in German.
* [[Z36026|a test of the default function]] testing in Arabic, a right-to-left language and successfully generating <code><span dir="rtl">← تاريخ أستراليا</span></code> with a link.
I chose this example as Function of the Week to encourage further language configuration. Supporting simple links with labels in a consistent scheme is a very clearly defined purpose, and is a reasonably easy starting point compared to other natural language functions. It is currently only configured in English and Dutch, so contributions would be welcome.
pcu7hbf5oyepijdy7729e56o8kjok5q
280327
280326
2026-06-04T07:42:36Z
99of9
1622
/* Function of the Week: main articles */
280327
wikitext
text/x-wiki
Add the Wikitext of a full written submission for Function of the Week in a new section at the bottom of this page. If considered ready, it may be chosen for inclusion by the editors of the weekly status update.
==Guidelines==
Generally a submission should cover:
* The purpose of the function and the uses it is expected to have.
* Sufficient context or links to explain the background to unfamiliar readers.
* The general methodology of each implementation.
* What each test achieves that others don't.
* Anything interesting and special about the function.
==Sample ==
Below is a stripped down minimal sample
=== Function of the Week: minimum of a list of natural numbers ===
This week we are discussing: [[Z19509|minimum of a list of natural numbers]].
The function takes _ inputs... and returns...
_ tests are available:
* [[Z19518|An empty list returns 0]]
_ implementations are available:
* One [[Z19526|implementation in JavaScript]]. It first ...
This function is/will be used for ...
This function is a great example function, because it demonstrates...
== Submissions ==
=== Function of the Week: main articles ===
[[Z33842|main articles]] is a function for Abstract Wikipedia, to be used after a section heading to link to a separate article with more information about that subtopic. These links help the reader to quickly navigate to the topics they are most interested in, and are widely used across most language editions of Wikipedia. This abstract version is modelled after the English Wikipedia [[w:Template:Main|Template:Main]], which takes a (usually short) set of articles to link to, optional alternative label strings for those links, and a parameter to denote and slightly change the behaviour of self-references. It returns a short inset referring to this link as the Main article for the subsection.
Our function, [[Z33842|main articles]] is set up to accept three similar inputs and the language in which it should be rendered. The link items are entered as a list of [[Z6091|Wikidata item references]]. The alternate labels cannot simply be strings, because they would not work in all languages. For now, we accept a list of objects, but do not yet support any functionality on these objects. In the future they may be populated with function references or other data structures with the information required to generate alternate labels. The self-reference parameter is a Boolean.
The function returns an [[Z89|HTML fragment]], and the [[Z33847|composition implementation]] deals with wrapping the each language's output with an HTML <code>div role="note" class="hatnote navigation-not-searchable"</code>, so the language sub-functions are just responsible for fetching and formatting the link name.
6 tests are available, based on the prolific use of this function in structuring the abstract article [[:abstract:Q408|Australia (Q408)]]:
* [[Z33843|''Main article:'' History of Australia]]
* [[Z33867|''Main articles:'' Geography of Australia and Australian continent]]
* [[Z35805|''Main articles:'' Australian Government, Politics of Australia and Monarchy of Australia]] currently failing due to a tracked bug [https://phabricator.wikimedia.org/T427454 T427454] affecting [[Z13464]] which the composition relies on.
* [[Z36025|''Hoofdartikel:'' Geografie van Australië]] in Belgian Dutch.
* [[Z33853|''→ Hauptartikel:'' Klima in Australien]] awaiting an implementation in German.
* [[Z36026|a test of the default function]] testing in Arabic, a right-to-left language and successfully generating <code><span dir="rtl">← تاريخ أستراليا</span></code> with a link.
I chose this example as Function of the Week to encourage further language configuration. Supporting simple links with labels in a consistent scheme is a very clearly defined purpose, and is a reasonably easy starting point compared to other natural language functions. It is currently only configured in English and Dutch, so further contributions would be welcome. It would also be interesting to discuss theoretical directions for the currently unused label-configuring argument.
dsbqgs5k2jx2qzy36bof2f4g51tpz8f
280330
280327
2026-06-04T08:13:21Z
99of9
1622
/* Function of the Week: main articles */
280330
wikitext
text/x-wiki
Add the Wikitext of a full written submission for Function of the Week in a new section at the bottom of this page. If considered ready, it may be chosen for inclusion by the editors of the weekly status update.
==Guidelines==
Generally a submission should cover:
* The purpose of the function and the uses it is expected to have.
* Sufficient context or links to explain the background to unfamiliar readers.
* The general methodology of each implementation.
* What each test achieves that others don't.
* Anything interesting and special about the function.
==Sample ==
Below is a stripped down minimal sample
=== Function of the Week: minimum of a list of natural numbers ===
This week we are discussing: [[Z19509|minimum of a list of natural numbers]].
The function takes _ inputs... and returns...
_ tests are available:
* [[Z19518|An empty list returns 0]]
_ implementations are available:
* One [[Z19526|implementation in JavaScript]]. It first ...
This function is/will be used for ...
This function is a great example function, because it demonstrates...
== Submissions ==
=== Function of the Week: main articles ===
[[Z33842|main articles]] is a function for Abstract Wikipedia, to be used after a section heading to link to a separate article with more information about that subtopic. These links help the reader to quickly navigate to the topics they are most interested in, and are widely used across most language editions of Wikipedia. This abstract version is modelled after the English Wikipedia [[w:Template:Main|Template:Main]], which takes a (usually short) set of articles to link to, optional alternative label strings for those links, and a parameter to denote and slightly change the behaviour of self-references. It returns a short inset referring to this link as the Main article for the subsection.
Our function, [[Z33842|main articles]] is set up to accept three similar inputs and the language in which it should be rendered. The link items are entered as a list of [[Z6091|Wikidata item references]]. The alternate labels cannot simply be strings, because they would not work in all languages. For now, we accept a list of objects, but do not yet support any functionality on these objects. In the future they may be populated with function references or other data structures with the information required to generate alternate labels. The self-reference parameter is a Boolean.
The function returns an [[Z89|HTML fragment]] as required for Abstract Wikipedia, and the [[Z33847|composition implementation]] deals with wrapping the each language's output with an HTML <code>div role="note" class="hatnote navigation-not-searchable"</code>, so the language sub-functions are just responsible for fetching and formatting the link name.
6 tests are available, based on the prolific use of this function to structure the abstract article [[:abstract:Q408|Australia (Q408)]]:
* [[Z33843|''Main article:'' History of Australia]]
* [[Z33867|''Main articles:'' Geography of Australia and Australian continent]]
* [[Z35805|''Main articles:'' Australian Government, Politics of Australia and Monarchy of Australia]] currently failing due to a tracked bug [https://phabricator.wikimedia.org/T427454 T427454] affecting [[Z13464]] which the composition relies on.
* [[Z36025|''Hoofdartikel:'' Geografie van Australië]] in Belgian Dutch.
* [[Z33853|''→ Hauptartikel:'' Klima in Australien]] awaiting an implementation in German.
* [[Z36026|a test of the default function]] testing in Arabic, a right-to-left language and successfully generating <code><span dir="rtl">← تاريخ أستراليا</span></code> with a link.
I chose this example as Function of the Week to encourage further language configuration. Supporting simple links with labels in a consistent scheme is a very clearly defined purpose, and is a reasonably easy starting point compared to other natural language functions. It is currently only configured in English and Dutch, so further contributions would be welcome. It would also be interesting to discuss theoretical directions for the currently unused label-configuring argument.
gaza15ozmz7hxca9qukapqisq0sn32o
280331
280330
2026-06-04T08:14:09Z
99of9
1622
/* Function of the Week: main articles */
280331
wikitext
text/x-wiki
Add the Wikitext of a full written submission for Function of the Week in a new section at the bottom of this page. If considered ready, it may be chosen for inclusion by the editors of the weekly status update.
==Guidelines==
Generally a submission should cover:
* The purpose of the function and the uses it is expected to have.
* Sufficient context or links to explain the background to unfamiliar readers.
* The general methodology of each implementation.
* What each test achieves that others don't.
* Anything interesting and special about the function.
==Sample ==
Below is a stripped down minimal sample
=== Function of the Week: minimum of a list of natural numbers ===
This week we are discussing: [[Z19509|minimum of a list of natural numbers]].
The function takes _ inputs... and returns...
_ tests are available:
* [[Z19518|An empty list returns 0]]
_ implementations are available:
* One [[Z19526|implementation in JavaScript]]. It first ...
This function is/will be used for ...
This function is a great example function, because it demonstrates...
== Submissions ==
=== Function of the Week: main articles ===
[[Z33842|main articles]] is a function for Abstract Wikipedia, to be used after a section heading to link to a separate article with more information about that subtopic. These links help the reader to quickly navigate to the topics they are most interested in, and are widely used across most language editions of Wikipedia. This abstract version is modelled after the English Wikipedia [[w:Template:Main|Template:Main]], which takes a (usually short) set of articles to link to, optional alternative label strings for those links, and a parameter to denote and slightly change the behaviour of self-references. It returns a short inset referring to this link as the Main article for the subsection.
Our function, [[Z33842|main articles]] is set up to accept three similar inputs and the language in which it should be rendered. The link items are entered as a list of [[Z6091|Wikidata item references]]. The alternate labels cannot simply be strings, because they would not work in all languages. For now, we accept a list of objects, but do not yet support any functionality on these objects. In the future they may be populated with function references or other data structures with the information required to generate alternate labels. The self-reference parameter is a Boolean.
The function returns an [[Z89|HTML fragment]] as required for Abstract Wikipedia. The [[Z33847|composition implementation]] deals with wrapping the each language's output with an HTML <code>div role="note" class="hatnote navigation-not-searchable"</code>, so the language sub-functions are just responsible for fetching and formatting the link name.
6 tests are available, based on the prolific use of this function to structure the abstract article [[:abstract:Q408|Australia (Q408)]]:
* [[Z33843|''Main article:'' History of Australia]]
* [[Z33867|''Main articles:'' Geography of Australia and Australian continent]]
* [[Z35805|''Main articles:'' Australian Government, Politics of Australia and Monarchy of Australia]] currently failing due to a tracked bug [https://phabricator.wikimedia.org/T427454 T427454] affecting [[Z13464]] which the composition relies on.
* [[Z36025|''Hoofdartikel:'' Geografie van Australië]] in Belgian Dutch.
* [[Z33853|''→ Hauptartikel:'' Klima in Australien]] awaiting an implementation in German.
* [[Z36026|a test of the default function]] testing in Arabic, a right-to-left language and successfully generating <code><span dir="rtl">← تاريخ أستراليا</span></code> with a link.
I chose this example as Function of the Week to encourage further language configuration. Supporting simple links with labels in a consistent scheme is a very clearly defined purpose, and is a reasonably easy starting point compared to other natural language functions. It is currently only configured in English and Dutch, so further contributions would be welcome. It would also be interesting to discuss theoretical directions for the currently unused label-configuring argument.
8mvld928r57qpz5jqe33oiorer8xc0i
Z27873
0
64539
280316
280134
2026-06-04T01:51:07Z
99of9
1622
alias
280316
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z27873"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z89",
"Z17K2": "Z27873K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "content"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "contenuto"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z27873K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tag name"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "nome del tag"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z17K2": "Z27873K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "attribute names"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "nomi degli attributi"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z17K2": "Z27873K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "attribute values"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "valori degli attributi"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z27874",
"Z27876"
],
"Z8K4": [
"Z14",
"Z27877",
"Z35992"
],
"Z8K5": "Z27873"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "racchiudi frammento HTML in un tag"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "wrap an HTML fragment in a tag"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"wrap HTML with another tag"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
7anvxwdl51jigocz442etw8yk0my8xn
280324
280316
2026-06-04T05:28:45Z
99of9
1622
280324
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z27873"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z89",
"Z17K2": "Z27873K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "content"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "contenuto"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z27873K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "tag name"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "nome del tag"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z17K2": "Z27873K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "attribute names"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "nomi degli attributi"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z17K2": "Z27873K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "attribute values"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "valori degli attributi"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z27874",
"Z27876"
],
"Z8K4": [
"Z14",
"Z27877",
"Z35992"
],
"Z8K5": "Z27873"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1787",
"Z11K2": "racchiudi frammento HTML in un tag"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "wrap an HTML fragment in a tag"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"wrap HTML with another tag",
"insert HTML fragment into another HTML tag"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
i4y0pet1fvoshep98mwpyxtv7g1ljk3
Z30774
0
71180
280236
239765
2026-06-03T16:09:30Z
YoshiRulz
10156
Disambiguate en label
280236
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z30774"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z20838",
"Z17K2": "Z30774K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "a (first term)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "a (Suku pertama)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z20838",
"Z17K2": "Z30774K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "b (difference)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "b (selisih/beda)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z30774K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "n (many tribes)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "n (banyak suku)"
}
]
}
}
],
"Z8K2": "Z20838",
"Z8K3": [
"Z20",
"Z30776"
],
"Z8K4": [
"Z14",
"Z30775"
],
"Z8K5": "Z30774"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "nth term of arithmetic sequence"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "barisan aritmetika"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Un"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1078",
"Z31K2": [
"Z6",
"Un",
"Sn"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "determine the nth term of an arithmetic sequence"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1078",
"Z11K2": "menentukan suku ke-n barisan aritmetika "
}
]
}
}
6li9jlwg3hcclhwlrl3fbu7rfj2vnm2
Z32234
0
78394
280239
270938
2026-06-03T16:38:43Z
Feeglgeef
8776
Removed Z32885 from the approved list of implementations
280239
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z32234"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z32234K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "seznam"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "liste"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z32236"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z32234"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "join text-like objects into HTML fragment"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "spojit textové objekty do fragmentu HTML"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "joindre plusieurs objets texte en un fragment HTML"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
kogg11hey4b9m30qdhkjtuc4ebpyaih
280240
280239
2026-06-03T16:38:45Z
Feeglgeef
8776
Added Z32235 to the approved list of implementations
280240
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z32234"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z32234K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "seznam"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "liste"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z32236"
],
"Z8K4": [
"Z14",
"Z32235"
],
"Z8K5": "Z32234"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "join text-like objects into HTML fragment"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "spojit textové objekty do fragmentu HTML"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "joindre plusieurs objets texte en un fragment HTML"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
tmapzhwbytzlcr8y1uzojlslmys6bf1
280242
280240
2026-06-03T16:41:43Z
Feeglgeef
8776
Added Z32885 to the approved list of implementations
280242
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z32234"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z32234K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "seznam"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "liste"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z32236"
],
"Z8K4": [
"Z14",
"Z32235",
"Z32885"
],
"Z8K5": "Z32234"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "join text-like objects into HTML fragment"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "spojit textové objekty do fragmentu HTML"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "joindre plusieurs objets texte en un fragment HTML"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
h80sxzj5d4r26zvm1f84axnkacqnaqm
280243
280242
2026-06-03T16:41:45Z
Feeglgeef
8776
Removed Z32235 from the approved list of implementations
280243
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z32234"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z32234K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "seznam"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "liste"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z32236"
],
"Z8K4": [
"Z14",
"Z32885"
],
"Z8K5": "Z32234"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "join text-like objects into HTML fragment"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1062",
"Z11K2": "spojit textové objekty do fragmentu HTML"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "joindre plusieurs objets texte en un fragment HTML"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
i9ndawi4siqs7alul9blau19z8ah406
Z33842
0
80852
280286
278925
2026-06-04T01:27:45Z
99of9
1622
nudge
280286
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z33843",
"Z33867",
"Z35805"
],
"Z8K4": [
"Z14",
"Z33847"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
8wmtfvojfzplyhxw5lt51p69ae0h7vj
280296
280286
2026-06-04T01:35:08Z
99of9
1622
Removed Z33847 from the approved list of implementations
280296
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z33843",
"Z33867",
"Z35805"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
4sb0ij3c8gnbprxmh1ubo4rezhhfahd
280297
280296
2026-06-04T01:35:10Z
99of9
1622
Removed Z33843, Z33867 and Z35805 from the approved list of test cases
280297
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
jw7eufojqef2mou4ts5p228ec99onoc
280298
280297
2026-06-04T01:35:57Z
99of9
1622
for label configurators, switch to object type for future flexibility
280298
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
lpnttmv4z59b07ajhx60byu1nbnjfr8
280299
280298
2026-06-04T01:36:09Z
99of9
1622
Added Z33847 to the approved list of implementations
280299
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z33847"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
syz91yb1b4x79r66bf31o483n9jr615
280300
280299
2026-06-04T01:36:15Z
99of9
1622
Added Z33843, Z33867 and Z35805 to the approved list of test cases
280300
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z33843",
"Z33867",
"Z35805"
],
"Z8K4": [
"Z14",
"Z33847"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
20hqf11x4h0u96rgrh3d426ylvxga1a
280321
280300
2026-06-04T02:08:27Z
99of9
1622
Added Z36025 to the approved list of test cases
280321
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z33843",
"Z33867",
"Z35805",
"Z36025"
],
"Z8K4": [
"Z14",
"Z33847"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
fzxhj0cejf6a81aok6o5l3jd2weqdmh
280323
280321
2026-06-04T02:10:46Z
99of9
1622
Added Z36026 to the approved list of test cases
280323
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33842"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33842K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33842K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33842K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33842K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z33843",
"Z33867",
"Z35805",
"Z36025",
"Z36026"
],
"Z8K4": [
"Z14",
"Z33847"
],
"Z8K5": "Z33842"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Main",
"Template:Main",
"subtopic link",
"abstract wikipedia link for section",
"Main articles link for top of subsection",
"see also",
"relevant articles"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
g9dxdlsdcbp77c0bcyf8w3ovdv647zc
Z33844
0
80854
280287
278656
2026-06-04T01:30:36Z
99of9
1622
Removed Z33846 from the approved list of implementations
280287
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33844"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33844K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33844K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33844K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33844K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of English"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z33845",
"Z33851",
"Z33869",
"Z35770"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33844"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, English"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, English"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
ck59ow2znmlyvd9xuitq5xod2oif5cr
280288
280287
2026-06-04T01:30:40Z
99of9
1622
Removed Z33869, Z33851, Z33845 and Z35770 from the approved list of test cases
280288
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33844"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33844K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33844K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33844K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33844K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of English"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33844"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, English"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, English"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
cliqv9hrijfu2y0oppbc4fl3l1shcdx
280289
280288
2026-06-04T01:31:38Z
99of9
1622
for label configurators, switch to object type for future flexibility
280289
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33844"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33844K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33844K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33844K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33844K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of English"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33844"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, English"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, English"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
qv6uj1kz5g1rxz7igm541tc09lckye6
280290
280289
2026-06-04T01:31:47Z
99of9
1622
Added Z33846 to the approved list of implementations
280290
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33844"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33844K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33844K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33844K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33844K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of English"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z33846"
],
"Z8K5": "Z33844"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, English"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, English"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
cxhqzzaa9nqv6mk5qh3q6kof53fyn0w
280291
280290
2026-06-04T01:31:50Z
99of9
1622
Added Z33869, Z33851, Z33845 and Z35770 to the approved list of test cases
280291
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33844"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33844K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33844K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33844K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33844K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of English"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z33869",
"Z33851",
"Z33845",
"Z35770"
],
"Z8K4": [
"Z14",
"Z33846"
],
"Z8K5": "Z33844"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, English"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, English"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
tpysdz0hz82qnf5jdpt8vov242ipmsh
Z33845
0
80855
280295
268492
2026-06-04T01:34:39Z
99of9
1622
280295
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33845"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33844",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33844",
"Z33844K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1134461"
}
],
"Z33844K2": [
"Z1"
],
"Z33844K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33844K4": "Z1113"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EMain article: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1134461\"\u003EGeography of Australia\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Q1134461: \"Main article: Geography of Australia\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ozwbddst2bx9kx0m0hbtmsc5qcfmweu
Z33851
0
80861
280294
267398
2026-06-04T01:34:10Z
99of9
1622
switch to object type after signature change
280294
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33851"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33844",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33844",
"Z33844K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q3660742"
}
],
"Z33844K2": [
"Z1"
],
"Z33844K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33844K4": "Z1689"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EMain article: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q3660742\"\u003EPolitical career of Arnold Schwarzenegger\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Main article: Political career of Arnold S"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
4c5os3efs7pz965aabmk37qx5m9usxw
Z33852
0
80862
280309
280165
2026-06-04T01:39:47Z
99of9
1622
Removed Z35996 from the approved list of implementations
280309
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33852"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33852K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33852K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33852K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33852K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z35997",
"Z35998"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33852"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "The default function for Z33842 to serve languages which do not have a specific configuration."
}
]
}
}
67capix7y433u2nlbl7t782m86b3rwr
280310
280309
2026-06-04T01:39:51Z
99of9
1622
Removed Z35997 and Z35998 from the approved list of test cases
280310
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33852"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33852K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33852K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33852K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33852K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33852"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "The default function for Z33842 to serve languages which do not have a specific configuration."
}
]
}
}
ftnohmut2yy9adin7f3agkrvikmmx8m
280311
280310
2026-06-04T01:40:12Z
99of9
1622
280311
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33852"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33852K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33852K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33852K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33852K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z33852"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "The default function for Z33842 to serve languages which do not have a specific configuration."
}
]
}
}
elbrdcy15l80z6ol46kwuezve5v4bae
280312
280311
2026-06-04T01:40:26Z
99of9
1622
Added Z35996 to the approved list of implementations
280312
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33852"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33852K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33852K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33852K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33852K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z35996"
],
"Z8K5": "Z33852"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "The default function for Z33842 to serve languages which do not have a specific configuration."
}
]
}
}
srwbessuwutiqi7kvy262yjqfdh5494
280313
280312
2026-06-04T01:40:30Z
99of9
1622
Added Z35997 and Z35998 to the approved list of test cases
280313
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33852"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z33852K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z33852K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z33852K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z33852K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "language"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z35997",
"Z35998"
],
"Z8K4": [
"Z14",
"Z35996"
],
"Z8K5": "Z33852"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, default"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "The default function for Z33842 to serve languages which do not have a specific configuration."
}
]
}
}
nmxo10lq2uojyjnsr1dfawr0c8gg7ux
Z33869
0
80881
280293
267391
2026-06-04T01:33:37Z
99of9
1622
switch to object type after signature change
280293
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z33869"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33844",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33844",
"Z33844K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1134461"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3960"
}
],
"Z33844K2": [
"Z1"
],
"Z33844K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33844K4": "Z1002"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EMain articles: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1134461\"\u003EGeography of Australia\u003C/a\u003E and \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q3960\"\u003EAustralian continent\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Main articles: Geography and Continent"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ahic2qgqu6kjf14rbb2f9833r7je8qf
Z34077
0
81214
280301
268513
2026-06-04T01:36:32Z
99of9
1622
Removed Z34085 from the approved list of implementations
280301
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34077"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z34077K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z34077K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z34077K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z34077K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of Dutch"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z34083",
"Z34087",
"Z34089"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z34077"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, Dutch"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, Dutch"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
hzg7oufxeksgc0b3bnmw26w6qy7wl91
280302
280301
2026-06-04T01:36:35Z
99of9
1622
Removed Z34087, Z34083 and Z34089 from the approved list of test cases
280302
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34077"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z34077K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z34077K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic labels (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z34077K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z34077K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of Dutch"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z34077"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, Dutch"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, Dutch"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
o593pd60g7buwlwymla42ngy64tgvz2
280303
280302
2026-06-04T01:37:01Z
99of9
1622
for label configurators, switch to object type for future flexibility
280303
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34077"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z34077K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z34077K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z34077K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z34077K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of Dutch"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z34077"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, Dutch"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, Dutch"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
7w7ctznzqdgo3gdbrwzh0gdpw1h19kf
280304
280303
2026-06-04T01:37:08Z
99of9
1622
Added Z34085 to the approved list of implementations
280304
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34077"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z34077K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z34077K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z34077K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z34077K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of Dutch"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z34085"
],
"Z8K5": "Z34077"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, Dutch"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, Dutch"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
1gv297iks1edaoznjkrdm1t4pbv2ius
280305
280304
2026-06-04T01:37:11Z
99of9
1622
Added Z34087, Z34083 and Z34089 to the approved list of test cases
280305
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34077"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6091"
},
"Z17K2": "Z34077K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of subtopic article[s] (QIDs)"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z1"
},
"Z17K2": "Z34077K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] list of subtopic label configurators"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z34077K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[#] self reference?"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z60",
"Z17K2": "Z34077K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "variant of Dutch"
}
]
}
}
],
"Z8K2": "Z89",
"Z8K3": [
"Z20",
"Z34087",
"Z34083",
"Z34089"
],
"Z8K4": [
"Z14",
"Z34085"
],
"Z8K5": "Z34077"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, Dutch"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"subtopic links, Dutch"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Used after the heading of the summary, to link to the subtopic article that has been summarized. Modelled after en-wiki Template:Main. If different QIDs are used for labels, list should be same length"
}
]
}
}
62g11910cr7xms1186ke6rl1ij0yzyb
Z34083
0
81220
280307
268508
2026-06-04T01:38:00Z
99of9
1622
switch to object type after signature change
280307
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34083"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z34077",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z34077",
"Z34077K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1134461"
}
],
"Z34077K2": [
"Z1"
],
"Z34077K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z34077K4": "Z1517"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EHoofdartikel: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1134461\"\u003EGeografie van Australië\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Q1134461: \"Hoofdartikel: Geografie van Australië\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
dk5ze66oiioc2c6gradjnk6bzkplwzj
Z34087
0
81224
280306
268507
2026-06-04T01:37:30Z
99of9
1622
280306
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34087"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z34077",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z34077",
"Z34077K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1134461"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3960"
}
],
"Z34077K2": [
"Z1"
],
"Z34077K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z34077K4": "Z1157"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EHoofdartikelen: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1134461\"\u003EGeografie van Australië\u003C/a\u003E en \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q3960\"\u003EAustralië\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1157",
"Z11K2": "Hoofdartikelen: Aardrijkskunde en Continent"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
8uhrdczrriiv46lw52pl1d9ezau09st
Z34089
0
81226
280308
268512
2026-06-04T01:38:32Z
99of9
1622
switch to object type after signature change
280308
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z34089"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z34077",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z34077",
"Z34077K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q3660742"
}
],
"Z34077K2": [
"Z1"
],
"Z34077K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z34077K4": "Z1774"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EHoofdartikel: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q3660742\"\u003EPolitieke carrière van Arnold Schwarzenegger\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Hoofdartikel: Politieke carrière van Arnold Schwar"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
habc4mb7inmj5ip4wwc7r1s5uyhbhet
Talk:Z13955
1
81576
280229
269686
2026-06-03T15:16:09Z
YoshiRulz
10156
Remove from category
280229
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Talk:Z14124
1
81715
280203
270088
2026-06-03T13:17:37Z
YoshiRulz
10156
Remove from category
280203
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Talk:Z15946
1
82028
280234
271164
2026-06-03T15:29:32Z
YoshiRulz
10156
Remove from category
280234
wikitext
text/x-wiki
phoiac9h4m842xq45sp7s6u21eteeq1
Z35770
0
84440
280292
278655
2026-06-04T01:32:30Z
99of9
1622
switch to object type after signature change
280292
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z35770"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33844",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33844",
"Z33844K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q826274"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q1429325"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q3775844"
}
],
"Z33844K2": [
"Z1"
],
"Z33844K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33844K4": "Z1002"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EMain articles: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1429325\"\u003EFauna of Australia\u003C/a\u003E, \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1429325\"\u003EFlora of Australia\u003C/a\u003E and \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q3775844\"\u003EFungi of Australia\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "3 items with comma-space separator"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
4m4pmdcmuq8sv3qro61320w044ac805
Wikifunctions:Status updates/2026-05-30/de
4
84741
280200
280116
2026-06-03T12:40:27Z
Ameisenigel
44
280200
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-05-23
| nextlabel = Nächstes Update
| next =
}}
<span id="Looking_back_and_forward"></span>
=== Rückblick und Ausblick ===
:'''''Die Abstrakte Wikipedia wird ein langer Weg sein, und ich gehe davon aus, dass sich das Projekt im Laufe der Zeit verändern und neu ausrichten wird. Unser übergeordnetes Ziel ist klar: ein System, das es mehr Menschen ermöglicht, mehr Wissen mit mehr Menschen über Sprachen hinweg zu teilen. Und wir haben eine Vorstellung davon, welchen Weg wir einschlagen werden.'''''
So starteten wir die [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-09-30|erste Ausgabe dieses Newsletters im Jahr 2020]] und seither begleitet dieser Newsletter in einem überwiegend wöchentlichen Rhythmus die Entwicklung und den Fortschritt des Projekts der Abstrakten Wikipedia.
Dies ist die 250. Ausgabe des Newsletters zur Abstrakten Wikipedia. Wir nutzen diese willkürliche runde Zahl als Gelegenheit, auf einige der Meilensteine zurückzublicken, die wir mit diesem Newsletter begleitet haben:
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-11-17|Benennung des Wikis der Funktionen als Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-04-08|Ein Leitbild für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-10-27|Das Logo für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-12-21|Lizenzentscheidung für Wikifunctions und die Abstrakte Wikipedia]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2023-08-07|Start von Wikifunctions]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-10-08|Der Ort des Abstrakten Inhalts]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-12-04|Benennung des Wikis der abstrakten Inhalte als Abstrakte Wikipedia]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2026-03-19|Abstrakte Wikipedia in früher Beta-Version]]
Wie wir ursprünglich erwartet hatten, hat sich das System weiterentwickelt und gegenüber dem ursprünglichen Plan verändert. Und mittlerweile sind die meisten Teile an ihrem Platz:
* Wikifunctions ist vorhanden für die Verwaltung einer Bibliothek von Funktionen, die von einigen Wikimedia-Projekten aufgerufen werden können
* Funktionen auf Wikifunctions können auf Daten und lexikografische Daten aus Wikidata zugreifen und diese verarbeiten
* Die Abstrakte Wikipedia kann Artikel aus Funktionen auf Wikifunctions zusammenstellen
Was fehlt noch? Wir arbeiten am nächsten wesentlichen Schritt, um das gesamte Projekt zu ermöglichen: Die Integration von Artikeln aus der Abstrakten Wikipedia in die Sprach-Wikipedias.
Damit werden alle wesentlichen Funktionalitäten der Architektur vorhanden sein.
Es gibt noch viele weitere Dinge, an denen gearbeitet werden muss: Die Skalierung der verschiedenen Systemteile, das Hinzufügen weiterer Funktionen (Bilder, Kategorien), die Entwicklung zusätzlicher Funktionalitäten, das Definieren der richtigen Typen sowie das Finden der richtigen Abstraktionen.
Sobald alle Teile an ihrem Platz sind, wird die Gesamtstruktur des Puzzles deutlicher sichtbar, und der Wert des Systems beginnt, greifbar zu werden.
Vielen Dank, dass ihr uns auf dieser Reise begleitet habt!
<span id="Recent_Changes_in_the_software"></span>
=== Letzte Änderungen an der Software ===
Auf Seiten mit abstrakten Artikeln wird nun neben der QID auch die Bezeichnung des Wikidata-Datenobjekts im Seitentitel angezeigt. Dies erleichtert es, den Themeninhalt des Artikels zu erkennen, ohne sich dabei ausschließlich auf die QID verlassen zu müssen ([[:phab:T423651|T423651]]). Zudem lässt sich die QID durch Anklicken kopieren. Dasselbe Titelformat wird nun auch während des Erstellungsprozesses für abstrakte Artikel durchgängig angewendet ([[:phab:T425408|T425408]]).
Darüber hinaus haben wir ein Problem behoben, bei dem Nachschlagefelder mitunter Ergebnisse anzeigten, die auf deiner kurz zuvor getätigten Eingabe basierten, anstatt auf deiner aktuellsten Eingabe.
Wir arbeiten zudem daran, Unterstützung für Bilder in abstrakten Artikeln hinzuzufügen ([[:phab:T421841|T421841]]). Der erste für Nutzer sichtbare Teil, Z310/Commons-Medienreferenz, wird noch in dieser Woche eingeführt, und die Unterstützung für dessen Nutzung wird bald darauf folgen.
<span id="Recording_of_University_of_Washington_Roundtable"></span>
=== Aufzeichnung des Runden Tisches bei der University of Washington ===
Crystal Yragui hat an der Information School der University of Washington einen Runden Tisch organisiert: '''Künstliche Intelligenz und Maschinelles Lernen in Metadaten: Möglichkeiten, Grenzen und ethische Implikationen'''. Die Diskussionsteilnehmer waren:
* Morag Boyd (Leiterin für Metadatenanwendungen und Engagement beim OCLC)
* Charlene Chou (Leiterin der Abteilung für Wissenszugang an den Bibliotheken der New York University)
* Jeremy Nelson (Bibliotheken der Stanford University)
* Philippe Saadé (AI/ML-Projektmanager bei Wikimedia Deutschland)
* Osma Suominen (Spezialist für Informationssysteme bei der Finnischen Nationalbibliothek)
* Denny Vrandečić (Wikimedia Foundation)
Mehr als 300 Personen nahmen am runden Tisch teil, hörten sich die kurzen Einführungen der Diskussionsteilnehmer an und stellten anschließend Fragen. Eine [https://calma.ischool.uw.edu/uw-event/artificial-intelligence-and-machine-learning-in-metadata-possibilities-limitations-and-ethical-implications/ Aufzeichnung des runden Tisches zu KI und Maschinellem Lernen für Metadaten] ist nun verfügbar.
<span id="Volunteers’_Corner_on_June_8"></span>
=== Freiwilligentreffen am 8. Juni ===
<div lang="en" dir="ltr" class="mw-content-ltr">
The next Volunteers’ Corner will be on [https://zonestamp.toolforge.org/1780939800 Monday, 8 June 2026 at 17:30 UTC]. We plan to have the following agenda: there will be time to ask questions and discuss all matters arising. If we have time, we will write a function together. Everyone is welcome to join us on [https://meet.google.com/xuy-njxh-rkw Google Meet].
</div>
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 67 new Functions ===
</div>
[[File:67 Meme Performance (6-7, 6 7).webm|thumb|<span lang="en" dir="ltr" class="mw-content-ltr">67 new functions!</span>]]
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 67 new functions. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z35273}}
* {{Z|Z35278}}
* {{Z|Z35288}}
* {{Z|Z35292}}
* {{Z|Z35303}}
* {{Z|Z35312}}
* {{Z|Z35314}}
* {{Z|Z35331}}
* {{Z|Z35334}}
* {{Z|Z35338}}
* {{Z|Z35352}}
* {{Z|Z35362}}
* {{Z|Z35364}}
* {{Z|Z35370}}
* {{Z|Z35374}}
* {{Z|Z35376}}
* {{Z|Z35392}}
* {{Z|Z35399}}
* {{Z|Z35402}}
* {{Z|Z35418}}
* {{Z|Z35428}}
* {{Z|Z35437}}
* {{Z|Z35449}}
* {{Z|Z35472}}
* {{Z|Z35475}}
* {{Z|Z35482}}
* {{Z|Z35494}}
* {{Z|Z35505}}
* {{Z|Z35524}}
* {{Z|Z35528}}
* {{Z|Z35544}}
* {{Z|Z35550}}
* {{Z|Z35557}}
* {{Z|Z35568}}
* {{Z|Z35580}}
* {{Z|Z35587}}
* {{Z|Z35589}}
* {{Z|Z35606}}
* {{Z|Z35611}}
* {{Z|Z35615}}
<div lang="en" dir="ltr" class="mw-content-ltr">
A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.
</div>
[[Category:Status updates{{#translation:}}|2026-05-30]]
2c6msj1k11zf6xn60yclutjcwhub2oj
280264
280200
2026-06-03T19:22:39Z
Ameisenigel
44
Created page with "Das nächste Freiwilligentreffen findet am [$1 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [$2 Google Meet] teilzunehmen."
280264
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-05-23
| nextlabel = Nächstes Update
| next =
}}
<span id="Looking_back_and_forward"></span>
=== Rückblick und Ausblick ===
:'''''Die Abstrakte Wikipedia wird ein langer Weg sein, und ich gehe davon aus, dass sich das Projekt im Laufe der Zeit verändern und neu ausrichten wird. Unser übergeordnetes Ziel ist klar: ein System, das es mehr Menschen ermöglicht, mehr Wissen mit mehr Menschen über Sprachen hinweg zu teilen. Und wir haben eine Vorstellung davon, welchen Weg wir einschlagen werden.'''''
So starteten wir die [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-09-30|erste Ausgabe dieses Newsletters im Jahr 2020]] und seither begleitet dieser Newsletter in einem überwiegend wöchentlichen Rhythmus die Entwicklung und den Fortschritt des Projekts der Abstrakten Wikipedia.
Dies ist die 250. Ausgabe des Newsletters zur Abstrakten Wikipedia. Wir nutzen diese willkürliche runde Zahl als Gelegenheit, auf einige der Meilensteine zurückzublicken, die wir mit diesem Newsletter begleitet haben:
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-11-17|Benennung des Wikis der Funktionen als Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-04-08|Ein Leitbild für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-10-27|Das Logo für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-12-21|Lizenzentscheidung für Wikifunctions und die Abstrakte Wikipedia]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2023-08-07|Start von Wikifunctions]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-10-08|Der Ort des Abstrakten Inhalts]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-12-04|Benennung des Wikis der abstrakten Inhalte als Abstrakte Wikipedia]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2026-03-19|Abstrakte Wikipedia in früher Beta-Version]]
Wie wir ursprünglich erwartet hatten, hat sich das System weiterentwickelt und gegenüber dem ursprünglichen Plan verändert. Und mittlerweile sind die meisten Teile an ihrem Platz:
* Wikifunctions ist vorhanden für die Verwaltung einer Bibliothek von Funktionen, die von einigen Wikimedia-Projekten aufgerufen werden können
* Funktionen auf Wikifunctions können auf Daten und lexikografische Daten aus Wikidata zugreifen und diese verarbeiten
* Die Abstrakte Wikipedia kann Artikel aus Funktionen auf Wikifunctions zusammenstellen
Was fehlt noch? Wir arbeiten am nächsten wesentlichen Schritt, um das gesamte Projekt zu ermöglichen: Die Integration von Artikeln aus der Abstrakten Wikipedia in die Sprach-Wikipedias.
Damit werden alle wesentlichen Funktionalitäten der Architektur vorhanden sein.
Es gibt noch viele weitere Dinge, an denen gearbeitet werden muss: Die Skalierung der verschiedenen Systemteile, das Hinzufügen weiterer Funktionen (Bilder, Kategorien), die Entwicklung zusätzlicher Funktionalitäten, das Definieren der richtigen Typen sowie das Finden der richtigen Abstraktionen.
Sobald alle Teile an ihrem Platz sind, wird die Gesamtstruktur des Puzzles deutlicher sichtbar, und der Wert des Systems beginnt, greifbar zu werden.
Vielen Dank, dass ihr uns auf dieser Reise begleitet habt!
<span id="Recent_Changes_in_the_software"></span>
=== Letzte Änderungen an der Software ===
Auf Seiten mit abstrakten Artikeln wird nun neben der QID auch die Bezeichnung des Wikidata-Datenobjekts im Seitentitel angezeigt. Dies erleichtert es, den Themeninhalt des Artikels zu erkennen, ohne sich dabei ausschließlich auf die QID verlassen zu müssen ([[:phab:T423651|T423651]]). Zudem lässt sich die QID durch Anklicken kopieren. Dasselbe Titelformat wird nun auch während des Erstellungsprozesses für abstrakte Artikel durchgängig angewendet ([[:phab:T425408|T425408]]).
Darüber hinaus haben wir ein Problem behoben, bei dem Nachschlagefelder mitunter Ergebnisse anzeigten, die auf deiner kurz zuvor getätigten Eingabe basierten, anstatt auf deiner aktuellsten Eingabe.
Wir arbeiten zudem daran, Unterstützung für Bilder in abstrakten Artikeln hinzuzufügen ([[:phab:T421841|T421841]]). Der erste für Nutzer sichtbare Teil, Z310/Commons-Medienreferenz, wird noch in dieser Woche eingeführt, und die Unterstützung für dessen Nutzung wird bald darauf folgen.
<span id="Recording_of_University_of_Washington_Roundtable"></span>
=== Aufzeichnung des Runden Tisches bei der University of Washington ===
Crystal Yragui hat an der Information School der University of Washington einen Runden Tisch organisiert: '''Künstliche Intelligenz und Maschinelles Lernen in Metadaten: Möglichkeiten, Grenzen und ethische Implikationen'''. Die Diskussionsteilnehmer waren:
* Morag Boyd (Leiterin für Metadatenanwendungen und Engagement beim OCLC)
* Charlene Chou (Leiterin der Abteilung für Wissenszugang an den Bibliotheken der New York University)
* Jeremy Nelson (Bibliotheken der Stanford University)
* Philippe Saadé (AI/ML-Projektmanager bei Wikimedia Deutschland)
* Osma Suominen (Spezialist für Informationssysteme bei der Finnischen Nationalbibliothek)
* Denny Vrandečić (Wikimedia Foundation)
Mehr als 300 Personen nahmen am runden Tisch teil, hörten sich die kurzen Einführungen der Diskussionsteilnehmer an und stellten anschließend Fragen. Eine [https://calma.ischool.uw.edu/uw-event/artificial-intelligence-and-machine-learning-in-metadata-possibilities-limitations-and-ethical-implications/ Aufzeichnung des runden Tisches zu KI und Maschinellem Lernen für Metadaten] ist nun verfügbar.
<span id="Volunteers’_Corner_on_June_8"></span>
=== Freiwilligentreffen am 8. Juni ===
Das nächste Freiwilligentreffen findet am [https://zonestamp.toolforge.org/1780939800 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [https://meet.google.com/xuy-njxh-rkw Google Meet] teilzunehmen.
<div lang="en" dir="ltr" class="mw-content-ltr">
=== Fresh Functions weekly: 67 new Functions ===
</div>
[[File:67 Meme Performance (6-7, 6 7).webm|thumb|<span lang="en" dir="ltr" class="mw-content-ltr">67 new functions!</span>]]
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 67 new functions. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z35273}}
* {{Z|Z35278}}
* {{Z|Z35288}}
* {{Z|Z35292}}
* {{Z|Z35303}}
* {{Z|Z35312}}
* {{Z|Z35314}}
* {{Z|Z35331}}
* {{Z|Z35334}}
* {{Z|Z35338}}
* {{Z|Z35352}}
* {{Z|Z35362}}
* {{Z|Z35364}}
* {{Z|Z35370}}
* {{Z|Z35374}}
* {{Z|Z35376}}
* {{Z|Z35392}}
* {{Z|Z35399}}
* {{Z|Z35402}}
* {{Z|Z35418}}
* {{Z|Z35428}}
* {{Z|Z35437}}
* {{Z|Z35449}}
* {{Z|Z35472}}
* {{Z|Z35475}}
* {{Z|Z35482}}
* {{Z|Z35494}}
* {{Z|Z35505}}
* {{Z|Z35524}}
* {{Z|Z35528}}
* {{Z|Z35544}}
* {{Z|Z35550}}
* {{Z|Z35557}}
* {{Z|Z35568}}
* {{Z|Z35580}}
* {{Z|Z35587}}
* {{Z|Z35589}}
* {{Z|Z35606}}
* {{Z|Z35611}}
* {{Z|Z35615}}
<div lang="en" dir="ltr" class="mw-content-ltr">
A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.
</div>
[[Category:Status updates{{#translation:}}|2026-05-30]]
bn9syxlsh7dyuwhm716rikuzmfwlxkd
280266
280264
2026-06-03T19:22:46Z
Ameisenigel
44
Created page with "=== Wöchentliche neue Funktionen: 67 neue Funktionen ==="
280266
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-05-23
| nextlabel = Nächstes Update
| next =
}}
<span id="Looking_back_and_forward"></span>
=== Rückblick und Ausblick ===
:'''''Die Abstrakte Wikipedia wird ein langer Weg sein, und ich gehe davon aus, dass sich das Projekt im Laufe der Zeit verändern und neu ausrichten wird. Unser übergeordnetes Ziel ist klar: ein System, das es mehr Menschen ermöglicht, mehr Wissen mit mehr Menschen über Sprachen hinweg zu teilen. Und wir haben eine Vorstellung davon, welchen Weg wir einschlagen werden.'''''
So starteten wir die [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-09-30|erste Ausgabe dieses Newsletters im Jahr 2020]] und seither begleitet dieser Newsletter in einem überwiegend wöchentlichen Rhythmus die Entwicklung und den Fortschritt des Projekts der Abstrakten Wikipedia.
Dies ist die 250. Ausgabe des Newsletters zur Abstrakten Wikipedia. Wir nutzen diese willkürliche runde Zahl als Gelegenheit, auf einige der Meilensteine zurückzublicken, die wir mit diesem Newsletter begleitet haben:
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-11-17|Benennung des Wikis der Funktionen als Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-04-08|Ein Leitbild für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-10-27|Das Logo für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-12-21|Lizenzentscheidung für Wikifunctions und die Abstrakte Wikipedia]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2023-08-07|Start von Wikifunctions]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-10-08|Der Ort des Abstrakten Inhalts]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-12-04|Benennung des Wikis der abstrakten Inhalte als Abstrakte Wikipedia]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2026-03-19|Abstrakte Wikipedia in früher Beta-Version]]
Wie wir ursprünglich erwartet hatten, hat sich das System weiterentwickelt und gegenüber dem ursprünglichen Plan verändert. Und mittlerweile sind die meisten Teile an ihrem Platz:
* Wikifunctions ist vorhanden für die Verwaltung einer Bibliothek von Funktionen, die von einigen Wikimedia-Projekten aufgerufen werden können
* Funktionen auf Wikifunctions können auf Daten und lexikografische Daten aus Wikidata zugreifen und diese verarbeiten
* Die Abstrakte Wikipedia kann Artikel aus Funktionen auf Wikifunctions zusammenstellen
Was fehlt noch? Wir arbeiten am nächsten wesentlichen Schritt, um das gesamte Projekt zu ermöglichen: Die Integration von Artikeln aus der Abstrakten Wikipedia in die Sprach-Wikipedias.
Damit werden alle wesentlichen Funktionalitäten der Architektur vorhanden sein.
Es gibt noch viele weitere Dinge, an denen gearbeitet werden muss: Die Skalierung der verschiedenen Systemteile, das Hinzufügen weiterer Funktionen (Bilder, Kategorien), die Entwicklung zusätzlicher Funktionalitäten, das Definieren der richtigen Typen sowie das Finden der richtigen Abstraktionen.
Sobald alle Teile an ihrem Platz sind, wird die Gesamtstruktur des Puzzles deutlicher sichtbar, und der Wert des Systems beginnt, greifbar zu werden.
Vielen Dank, dass ihr uns auf dieser Reise begleitet habt!
<span id="Recent_Changes_in_the_software"></span>
=== Letzte Änderungen an der Software ===
Auf Seiten mit abstrakten Artikeln wird nun neben der QID auch die Bezeichnung des Wikidata-Datenobjekts im Seitentitel angezeigt. Dies erleichtert es, den Themeninhalt des Artikels zu erkennen, ohne sich dabei ausschließlich auf die QID verlassen zu müssen ([[:phab:T423651|T423651]]). Zudem lässt sich die QID durch Anklicken kopieren. Dasselbe Titelformat wird nun auch während des Erstellungsprozesses für abstrakte Artikel durchgängig angewendet ([[:phab:T425408|T425408]]).
Darüber hinaus haben wir ein Problem behoben, bei dem Nachschlagefelder mitunter Ergebnisse anzeigten, die auf deiner kurz zuvor getätigten Eingabe basierten, anstatt auf deiner aktuellsten Eingabe.
Wir arbeiten zudem daran, Unterstützung für Bilder in abstrakten Artikeln hinzuzufügen ([[:phab:T421841|T421841]]). Der erste für Nutzer sichtbare Teil, Z310/Commons-Medienreferenz, wird noch in dieser Woche eingeführt, und die Unterstützung für dessen Nutzung wird bald darauf folgen.
<span id="Recording_of_University_of_Washington_Roundtable"></span>
=== Aufzeichnung des Runden Tisches bei der University of Washington ===
Crystal Yragui hat an der Information School der University of Washington einen Runden Tisch organisiert: '''Künstliche Intelligenz und Maschinelles Lernen in Metadaten: Möglichkeiten, Grenzen und ethische Implikationen'''. Die Diskussionsteilnehmer waren:
* Morag Boyd (Leiterin für Metadatenanwendungen und Engagement beim OCLC)
* Charlene Chou (Leiterin der Abteilung für Wissenszugang an den Bibliotheken der New York University)
* Jeremy Nelson (Bibliotheken der Stanford University)
* Philippe Saadé (AI/ML-Projektmanager bei Wikimedia Deutschland)
* Osma Suominen (Spezialist für Informationssysteme bei der Finnischen Nationalbibliothek)
* Denny Vrandečić (Wikimedia Foundation)
Mehr als 300 Personen nahmen am runden Tisch teil, hörten sich die kurzen Einführungen der Diskussionsteilnehmer an und stellten anschließend Fragen. Eine [https://calma.ischool.uw.edu/uw-event/artificial-intelligence-and-machine-learning-in-metadata-possibilities-limitations-and-ethical-implications/ Aufzeichnung des runden Tisches zu KI und Maschinellem Lernen für Metadaten] ist nun verfügbar.
<span id="Volunteers’_Corner_on_June_8"></span>
=== Freiwilligentreffen am 8. Juni ===
Das nächste Freiwilligentreffen findet am [https://zonestamp.toolforge.org/1780939800 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [https://meet.google.com/xuy-njxh-rkw Google Meet] teilzunehmen.
<span id="Fresh_Functions_weekly:_67_new_Functions"></span>
=== Wöchentliche neue Funktionen: 67 neue Funktionen ===
[[File:67 Meme Performance (6-7, 6 7).webm|thumb|<span lang="en" dir="ltr" class="mw-content-ltr">67 new functions!</span>]]
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 67 new functions. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z35273}}
* {{Z|Z35278}}
* {{Z|Z35288}}
* {{Z|Z35292}}
* {{Z|Z35303}}
* {{Z|Z35312}}
* {{Z|Z35314}}
* {{Z|Z35331}}
* {{Z|Z35334}}
* {{Z|Z35338}}
* {{Z|Z35352}}
* {{Z|Z35362}}
* {{Z|Z35364}}
* {{Z|Z35370}}
* {{Z|Z35374}}
* {{Z|Z35376}}
* {{Z|Z35392}}
* {{Z|Z35399}}
* {{Z|Z35402}}
* {{Z|Z35418}}
* {{Z|Z35428}}
* {{Z|Z35437}}
* {{Z|Z35449}}
* {{Z|Z35472}}
* {{Z|Z35475}}
* {{Z|Z35482}}
* {{Z|Z35494}}
* {{Z|Z35505}}
* {{Z|Z35524}}
* {{Z|Z35528}}
* {{Z|Z35544}}
* {{Z|Z35550}}
* {{Z|Z35557}}
* {{Z|Z35568}}
* {{Z|Z35580}}
* {{Z|Z35587}}
* {{Z|Z35589}}
* {{Z|Z35606}}
* {{Z|Z35611}}
* {{Z|Z35615}}
<div lang="en" dir="ltr" class="mw-content-ltr">
A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.
</div>
[[Category:Status updates{{#translation:}}|2026-05-30]]
sk5u9djf60vh1682vb4b4bcnokxs8zp
280268
280266
2026-06-03T19:22:50Z
Ameisenigel
44
Created page with "67 neue Funktionen!"
280268
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-05-23
| nextlabel = Nächstes Update
| next =
}}
<span id="Looking_back_and_forward"></span>
=== Rückblick und Ausblick ===
:'''''Die Abstrakte Wikipedia wird ein langer Weg sein, und ich gehe davon aus, dass sich das Projekt im Laufe der Zeit verändern und neu ausrichten wird. Unser übergeordnetes Ziel ist klar: ein System, das es mehr Menschen ermöglicht, mehr Wissen mit mehr Menschen über Sprachen hinweg zu teilen. Und wir haben eine Vorstellung davon, welchen Weg wir einschlagen werden.'''''
So starteten wir die [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-09-30|erste Ausgabe dieses Newsletters im Jahr 2020]] und seither begleitet dieser Newsletter in einem überwiegend wöchentlichen Rhythmus die Entwicklung und den Fortschritt des Projekts der Abstrakten Wikipedia.
Dies ist die 250. Ausgabe des Newsletters zur Abstrakten Wikipedia. Wir nutzen diese willkürliche runde Zahl als Gelegenheit, auf einige der Meilensteine zurückzublicken, die wir mit diesem Newsletter begleitet haben:
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-11-17|Benennung des Wikis der Funktionen als Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-04-08|Ein Leitbild für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-10-27|Das Logo für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-12-21|Lizenzentscheidung für Wikifunctions und die Abstrakte Wikipedia]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2023-08-07|Start von Wikifunctions]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-10-08|Der Ort des Abstrakten Inhalts]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-12-04|Benennung des Wikis der abstrakten Inhalte als Abstrakte Wikipedia]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2026-03-19|Abstrakte Wikipedia in früher Beta-Version]]
Wie wir ursprünglich erwartet hatten, hat sich das System weiterentwickelt und gegenüber dem ursprünglichen Plan verändert. Und mittlerweile sind die meisten Teile an ihrem Platz:
* Wikifunctions ist vorhanden für die Verwaltung einer Bibliothek von Funktionen, die von einigen Wikimedia-Projekten aufgerufen werden können
* Funktionen auf Wikifunctions können auf Daten und lexikografische Daten aus Wikidata zugreifen und diese verarbeiten
* Die Abstrakte Wikipedia kann Artikel aus Funktionen auf Wikifunctions zusammenstellen
Was fehlt noch? Wir arbeiten am nächsten wesentlichen Schritt, um das gesamte Projekt zu ermöglichen: Die Integration von Artikeln aus der Abstrakten Wikipedia in die Sprach-Wikipedias.
Damit werden alle wesentlichen Funktionalitäten der Architektur vorhanden sein.
Es gibt noch viele weitere Dinge, an denen gearbeitet werden muss: Die Skalierung der verschiedenen Systemteile, das Hinzufügen weiterer Funktionen (Bilder, Kategorien), die Entwicklung zusätzlicher Funktionalitäten, das Definieren der richtigen Typen sowie das Finden der richtigen Abstraktionen.
Sobald alle Teile an ihrem Platz sind, wird die Gesamtstruktur des Puzzles deutlicher sichtbar, und der Wert des Systems beginnt, greifbar zu werden.
Vielen Dank, dass ihr uns auf dieser Reise begleitet habt!
<span id="Recent_Changes_in_the_software"></span>
=== Letzte Änderungen an der Software ===
Auf Seiten mit abstrakten Artikeln wird nun neben der QID auch die Bezeichnung des Wikidata-Datenobjekts im Seitentitel angezeigt. Dies erleichtert es, den Themeninhalt des Artikels zu erkennen, ohne sich dabei ausschließlich auf die QID verlassen zu müssen ([[:phab:T423651|T423651]]). Zudem lässt sich die QID durch Anklicken kopieren. Dasselbe Titelformat wird nun auch während des Erstellungsprozesses für abstrakte Artikel durchgängig angewendet ([[:phab:T425408|T425408]]).
Darüber hinaus haben wir ein Problem behoben, bei dem Nachschlagefelder mitunter Ergebnisse anzeigten, die auf deiner kurz zuvor getätigten Eingabe basierten, anstatt auf deiner aktuellsten Eingabe.
Wir arbeiten zudem daran, Unterstützung für Bilder in abstrakten Artikeln hinzuzufügen ([[:phab:T421841|T421841]]). Der erste für Nutzer sichtbare Teil, Z310/Commons-Medienreferenz, wird noch in dieser Woche eingeführt, und die Unterstützung für dessen Nutzung wird bald darauf folgen.
<span id="Recording_of_University_of_Washington_Roundtable"></span>
=== Aufzeichnung des Runden Tisches bei der University of Washington ===
Crystal Yragui hat an der Information School der University of Washington einen Runden Tisch organisiert: '''Künstliche Intelligenz und Maschinelles Lernen in Metadaten: Möglichkeiten, Grenzen und ethische Implikationen'''. Die Diskussionsteilnehmer waren:
* Morag Boyd (Leiterin für Metadatenanwendungen und Engagement beim OCLC)
* Charlene Chou (Leiterin der Abteilung für Wissenszugang an den Bibliotheken der New York University)
* Jeremy Nelson (Bibliotheken der Stanford University)
* Philippe Saadé (AI/ML-Projektmanager bei Wikimedia Deutschland)
* Osma Suominen (Spezialist für Informationssysteme bei der Finnischen Nationalbibliothek)
* Denny Vrandečić (Wikimedia Foundation)
Mehr als 300 Personen nahmen am runden Tisch teil, hörten sich die kurzen Einführungen der Diskussionsteilnehmer an und stellten anschließend Fragen. Eine [https://calma.ischool.uw.edu/uw-event/artificial-intelligence-and-machine-learning-in-metadata-possibilities-limitations-and-ethical-implications/ Aufzeichnung des runden Tisches zu KI und Maschinellem Lernen für Metadaten] ist nun verfügbar.
<span id="Volunteers’_Corner_on_June_8"></span>
=== Freiwilligentreffen am 8. Juni ===
Das nächste Freiwilligentreffen findet am [https://zonestamp.toolforge.org/1780939800 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [https://meet.google.com/xuy-njxh-rkw Google Meet] teilzunehmen.
<span id="Fresh_Functions_weekly:_67_new_Functions"></span>
=== Wöchentliche neue Funktionen: 67 neue Funktionen ===
[[File:67 Meme Performance (6-7, 6 7).webm|thumb|67 neue Funktionen!]]
<div lang="en" dir="ltr" class="mw-content-ltr">
This week we had 67 new functions. Here is an incomplete list of functions with implementations and passing tests to get a taste of what functions have been created. Thanks everybody for contributing!
</div>
* {{Z|Z35273}}
* {{Z|Z35278}}
* {{Z|Z35288}}
* {{Z|Z35292}}
* {{Z|Z35303}}
* {{Z|Z35312}}
* {{Z|Z35314}}
* {{Z|Z35331}}
* {{Z|Z35334}}
* {{Z|Z35338}}
* {{Z|Z35352}}
* {{Z|Z35362}}
* {{Z|Z35364}}
* {{Z|Z35370}}
* {{Z|Z35374}}
* {{Z|Z35376}}
* {{Z|Z35392}}
* {{Z|Z35399}}
* {{Z|Z35402}}
* {{Z|Z35418}}
* {{Z|Z35428}}
* {{Z|Z35437}}
* {{Z|Z35449}}
* {{Z|Z35472}}
* {{Z|Z35475}}
* {{Z|Z35482}}
* {{Z|Z35494}}
* {{Z|Z35505}}
* {{Z|Z35524}}
* {{Z|Z35528}}
* {{Z|Z35544}}
* {{Z|Z35550}}
* {{Z|Z35557}}
* {{Z|Z35568}}
* {{Z|Z35580}}
* {{Z|Z35587}}
* {{Z|Z35589}}
* {{Z|Z35606}}
* {{Z|Z35611}}
* {{Z|Z35615}}
<div lang="en" dir="ltr" class="mw-content-ltr">
A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.
</div>
[[Category:Status updates{{#translation:}}|2026-05-30]]
jasy70u2lnj50glhe4j3z9yi2445fs4
280270
280268
2026-06-03T19:23:04Z
Ameisenigel
44
Created page with "Diese Woche hatten wir 67 neue Funktionen. Hier ist eine unvollständige Liste von Funktionen mit Implementierungen und bestandenen Tests, um einen Eindruck davon zu bekommen, welche Funktionen erstellt wurden. Vielen Dank an alle für ihre Beiträge!"
280270
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-05-23
| nextlabel = Nächstes Update
| next =
}}
<span id="Looking_back_and_forward"></span>
=== Rückblick und Ausblick ===
:'''''Die Abstrakte Wikipedia wird ein langer Weg sein, und ich gehe davon aus, dass sich das Projekt im Laufe der Zeit verändern und neu ausrichten wird. Unser übergeordnetes Ziel ist klar: ein System, das es mehr Menschen ermöglicht, mehr Wissen mit mehr Menschen über Sprachen hinweg zu teilen. Und wir haben eine Vorstellung davon, welchen Weg wir einschlagen werden.'''''
So starteten wir die [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-09-30|erste Ausgabe dieses Newsletters im Jahr 2020]] und seither begleitet dieser Newsletter in einem überwiegend wöchentlichen Rhythmus die Entwicklung und den Fortschritt des Projekts der Abstrakten Wikipedia.
Dies ist die 250. Ausgabe des Newsletters zur Abstrakten Wikipedia. Wir nutzen diese willkürliche runde Zahl als Gelegenheit, auf einige der Meilensteine zurückzublicken, die wir mit diesem Newsletter begleitet haben:
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-11-17|Benennung des Wikis der Funktionen als Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-04-08|Ein Leitbild für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-10-27|Das Logo für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-12-21|Lizenzentscheidung für Wikifunctions und die Abstrakte Wikipedia]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2023-08-07|Start von Wikifunctions]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-10-08|Der Ort des Abstrakten Inhalts]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-12-04|Benennung des Wikis der abstrakten Inhalte als Abstrakte Wikipedia]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2026-03-19|Abstrakte Wikipedia in früher Beta-Version]]
Wie wir ursprünglich erwartet hatten, hat sich das System weiterentwickelt und gegenüber dem ursprünglichen Plan verändert. Und mittlerweile sind die meisten Teile an ihrem Platz:
* Wikifunctions ist vorhanden für die Verwaltung einer Bibliothek von Funktionen, die von einigen Wikimedia-Projekten aufgerufen werden können
* Funktionen auf Wikifunctions können auf Daten und lexikografische Daten aus Wikidata zugreifen und diese verarbeiten
* Die Abstrakte Wikipedia kann Artikel aus Funktionen auf Wikifunctions zusammenstellen
Was fehlt noch? Wir arbeiten am nächsten wesentlichen Schritt, um das gesamte Projekt zu ermöglichen: Die Integration von Artikeln aus der Abstrakten Wikipedia in die Sprach-Wikipedias.
Damit werden alle wesentlichen Funktionalitäten der Architektur vorhanden sein.
Es gibt noch viele weitere Dinge, an denen gearbeitet werden muss: Die Skalierung der verschiedenen Systemteile, das Hinzufügen weiterer Funktionen (Bilder, Kategorien), die Entwicklung zusätzlicher Funktionalitäten, das Definieren der richtigen Typen sowie das Finden der richtigen Abstraktionen.
Sobald alle Teile an ihrem Platz sind, wird die Gesamtstruktur des Puzzles deutlicher sichtbar, und der Wert des Systems beginnt, greifbar zu werden.
Vielen Dank, dass ihr uns auf dieser Reise begleitet habt!
<span id="Recent_Changes_in_the_software"></span>
=== Letzte Änderungen an der Software ===
Auf Seiten mit abstrakten Artikeln wird nun neben der QID auch die Bezeichnung des Wikidata-Datenobjekts im Seitentitel angezeigt. Dies erleichtert es, den Themeninhalt des Artikels zu erkennen, ohne sich dabei ausschließlich auf die QID verlassen zu müssen ([[:phab:T423651|T423651]]). Zudem lässt sich die QID durch Anklicken kopieren. Dasselbe Titelformat wird nun auch während des Erstellungsprozesses für abstrakte Artikel durchgängig angewendet ([[:phab:T425408|T425408]]).
Darüber hinaus haben wir ein Problem behoben, bei dem Nachschlagefelder mitunter Ergebnisse anzeigten, die auf deiner kurz zuvor getätigten Eingabe basierten, anstatt auf deiner aktuellsten Eingabe.
Wir arbeiten zudem daran, Unterstützung für Bilder in abstrakten Artikeln hinzuzufügen ([[:phab:T421841|T421841]]). Der erste für Nutzer sichtbare Teil, Z310/Commons-Medienreferenz, wird noch in dieser Woche eingeführt, und die Unterstützung für dessen Nutzung wird bald darauf folgen.
<span id="Recording_of_University_of_Washington_Roundtable"></span>
=== Aufzeichnung des Runden Tisches bei der University of Washington ===
Crystal Yragui hat an der Information School der University of Washington einen Runden Tisch organisiert: '''Künstliche Intelligenz und Maschinelles Lernen in Metadaten: Möglichkeiten, Grenzen und ethische Implikationen'''. Die Diskussionsteilnehmer waren:
* Morag Boyd (Leiterin für Metadatenanwendungen und Engagement beim OCLC)
* Charlene Chou (Leiterin der Abteilung für Wissenszugang an den Bibliotheken der New York University)
* Jeremy Nelson (Bibliotheken der Stanford University)
* Philippe Saadé (AI/ML-Projektmanager bei Wikimedia Deutschland)
* Osma Suominen (Spezialist für Informationssysteme bei der Finnischen Nationalbibliothek)
* Denny Vrandečić (Wikimedia Foundation)
Mehr als 300 Personen nahmen am runden Tisch teil, hörten sich die kurzen Einführungen der Diskussionsteilnehmer an und stellten anschließend Fragen. Eine [https://calma.ischool.uw.edu/uw-event/artificial-intelligence-and-machine-learning-in-metadata-possibilities-limitations-and-ethical-implications/ Aufzeichnung des runden Tisches zu KI und Maschinellem Lernen für Metadaten] ist nun verfügbar.
<span id="Volunteers’_Corner_on_June_8"></span>
=== Freiwilligentreffen am 8. Juni ===
Das nächste Freiwilligentreffen findet am [https://zonestamp.toolforge.org/1780939800 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [https://meet.google.com/xuy-njxh-rkw Google Meet] teilzunehmen.
<span id="Fresh_Functions_weekly:_67_new_Functions"></span>
=== Wöchentliche neue Funktionen: 67 neue Funktionen ===
[[File:67 Meme Performance (6-7, 6 7).webm|thumb|67 neue Funktionen!]]
Diese Woche hatten wir 67 neue Funktionen. Hier ist eine unvollständige Liste von Funktionen mit Implementierungen und bestandenen Tests, um einen Eindruck davon zu bekommen, welche Funktionen erstellt wurden. Vielen Dank an alle für ihre Beiträge!
* {{Z|Z35273}}
* {{Z|Z35278}}
* {{Z|Z35288}}
* {{Z|Z35292}}
* {{Z|Z35303}}
* {{Z|Z35312}}
* {{Z|Z35314}}
* {{Z|Z35331}}
* {{Z|Z35334}}
* {{Z|Z35338}}
* {{Z|Z35352}}
* {{Z|Z35362}}
* {{Z|Z35364}}
* {{Z|Z35370}}
* {{Z|Z35374}}
* {{Z|Z35376}}
* {{Z|Z35392}}
* {{Z|Z35399}}
* {{Z|Z35402}}
* {{Z|Z35418}}
* {{Z|Z35428}}
* {{Z|Z35437}}
* {{Z|Z35449}}
* {{Z|Z35472}}
* {{Z|Z35475}}
* {{Z|Z35482}}
* {{Z|Z35494}}
* {{Z|Z35505}}
* {{Z|Z35524}}
* {{Z|Z35528}}
* {{Z|Z35544}}
* {{Z|Z35550}}
* {{Z|Z35557}}
* {{Z|Z35568}}
* {{Z|Z35580}}
* {{Z|Z35587}}
* {{Z|Z35589}}
* {{Z|Z35606}}
* {{Z|Z35611}}
* {{Z|Z35615}}
<div lang="en" dir="ltr" class="mw-content-ltr">
A [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest complete list of all functions sorted by when they were created] is available.
</div>
[[Category:Status updates{{#translation:}}|2026-05-30]]
cu5zsu4u3qykrb4so9c0aty9spdqtrc
280272
280270
2026-06-03T19:23:34Z
Ameisenigel
44
Created page with "Eine [$1 vollständige Liste aller Funktionen, sortiert nach ihrem Erstellungszeitpunkt], ist verfügbar."
280272
wikitext
text/x-wiki
<languages/>
{{Wikifunctions updates
| prevlabel = Vorheriges Update
| prev = 2026-05-23
| nextlabel = Nächstes Update
| next =
}}
<span id="Looking_back_and_forward"></span>
=== Rückblick und Ausblick ===
:'''''Die Abstrakte Wikipedia wird ein langer Weg sein, und ich gehe davon aus, dass sich das Projekt im Laufe der Zeit verändern und neu ausrichten wird. Unser übergeordnetes Ziel ist klar: ein System, das es mehr Menschen ermöglicht, mehr Wissen mit mehr Menschen über Sprachen hinweg zu teilen. Und wir haben eine Vorstellung davon, welchen Weg wir einschlagen werden.'''''
So starteten wir die [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-09-30|erste Ausgabe dieses Newsletters im Jahr 2020]] und seither begleitet dieser Newsletter in einem überwiegend wöchentlichen Rhythmus die Entwicklung und den Fortschritt des Projekts der Abstrakten Wikipedia.
Dies ist die 250. Ausgabe des Newsletters zur Abstrakten Wikipedia. Wir nutzen diese willkürliche runde Zahl als Gelegenheit, auf einige der Meilensteine zurückzublicken, die wir mit diesem Newsletter begleitet haben:
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2020-11-17|Benennung des Wikis der Funktionen als Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-04-08|Ein Leitbild für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-10-27|Das Logo für Wikifunctions]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2021-12-21|Lizenzentscheidung für Wikifunctions und die Abstrakte Wikipedia]]
* [[:meta:Special:MyLanguage/Abstract Wikipedia/Updates/2023-08-07|Start von Wikifunctions]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-10-08|Der Ort des Abstrakten Inhalts]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2025-12-04|Benennung des Wikis der abstrakten Inhalte als Abstrakte Wikipedia]]
* [[Special:MyLanguage/Wikifunctions:Status updates/2026-03-19|Abstrakte Wikipedia in früher Beta-Version]]
Wie wir ursprünglich erwartet hatten, hat sich das System weiterentwickelt und gegenüber dem ursprünglichen Plan verändert. Und mittlerweile sind die meisten Teile an ihrem Platz:
* Wikifunctions ist vorhanden für die Verwaltung einer Bibliothek von Funktionen, die von einigen Wikimedia-Projekten aufgerufen werden können
* Funktionen auf Wikifunctions können auf Daten und lexikografische Daten aus Wikidata zugreifen und diese verarbeiten
* Die Abstrakte Wikipedia kann Artikel aus Funktionen auf Wikifunctions zusammenstellen
Was fehlt noch? Wir arbeiten am nächsten wesentlichen Schritt, um das gesamte Projekt zu ermöglichen: Die Integration von Artikeln aus der Abstrakten Wikipedia in die Sprach-Wikipedias.
Damit werden alle wesentlichen Funktionalitäten der Architektur vorhanden sein.
Es gibt noch viele weitere Dinge, an denen gearbeitet werden muss: Die Skalierung der verschiedenen Systemteile, das Hinzufügen weiterer Funktionen (Bilder, Kategorien), die Entwicklung zusätzlicher Funktionalitäten, das Definieren der richtigen Typen sowie das Finden der richtigen Abstraktionen.
Sobald alle Teile an ihrem Platz sind, wird die Gesamtstruktur des Puzzles deutlicher sichtbar, und der Wert des Systems beginnt, greifbar zu werden.
Vielen Dank, dass ihr uns auf dieser Reise begleitet habt!
<span id="Recent_Changes_in_the_software"></span>
=== Letzte Änderungen an der Software ===
Auf Seiten mit abstrakten Artikeln wird nun neben der QID auch die Bezeichnung des Wikidata-Datenobjekts im Seitentitel angezeigt. Dies erleichtert es, den Themeninhalt des Artikels zu erkennen, ohne sich dabei ausschließlich auf die QID verlassen zu müssen ([[:phab:T423651|T423651]]). Zudem lässt sich die QID durch Anklicken kopieren. Dasselbe Titelformat wird nun auch während des Erstellungsprozesses für abstrakte Artikel durchgängig angewendet ([[:phab:T425408|T425408]]).
Darüber hinaus haben wir ein Problem behoben, bei dem Nachschlagefelder mitunter Ergebnisse anzeigten, die auf deiner kurz zuvor getätigten Eingabe basierten, anstatt auf deiner aktuellsten Eingabe.
Wir arbeiten zudem daran, Unterstützung für Bilder in abstrakten Artikeln hinzuzufügen ([[:phab:T421841|T421841]]). Der erste für Nutzer sichtbare Teil, Z310/Commons-Medienreferenz, wird noch in dieser Woche eingeführt, und die Unterstützung für dessen Nutzung wird bald darauf folgen.
<span id="Recording_of_University_of_Washington_Roundtable"></span>
=== Aufzeichnung des Runden Tisches bei der University of Washington ===
Crystal Yragui hat an der Information School der University of Washington einen Runden Tisch organisiert: '''Künstliche Intelligenz und Maschinelles Lernen in Metadaten: Möglichkeiten, Grenzen und ethische Implikationen'''. Die Diskussionsteilnehmer waren:
* Morag Boyd (Leiterin für Metadatenanwendungen und Engagement beim OCLC)
* Charlene Chou (Leiterin der Abteilung für Wissenszugang an den Bibliotheken der New York University)
* Jeremy Nelson (Bibliotheken der Stanford University)
* Philippe Saadé (AI/ML-Projektmanager bei Wikimedia Deutschland)
* Osma Suominen (Spezialist für Informationssysteme bei der Finnischen Nationalbibliothek)
* Denny Vrandečić (Wikimedia Foundation)
Mehr als 300 Personen nahmen am runden Tisch teil, hörten sich die kurzen Einführungen der Diskussionsteilnehmer an und stellten anschließend Fragen. Eine [https://calma.ischool.uw.edu/uw-event/artificial-intelligence-and-machine-learning-in-metadata-possibilities-limitations-and-ethical-implications/ Aufzeichnung des runden Tisches zu KI und Maschinellem Lernen für Metadaten] ist nun verfügbar.
<span id="Volunteers’_Corner_on_June_8"></span>
=== Freiwilligentreffen am 8. Juni ===
Das nächste Freiwilligentreffen findet am [https://zonestamp.toolforge.org/1780939800 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [https://meet.google.com/xuy-njxh-rkw Google Meet] teilzunehmen.
<span id="Fresh_Functions_weekly:_67_new_Functions"></span>
=== Wöchentliche neue Funktionen: 67 neue Funktionen ===
[[File:67 Meme Performance (6-7, 6 7).webm|thumb|67 neue Funktionen!]]
Diese Woche hatten wir 67 neue Funktionen. Hier ist eine unvollständige Liste von Funktionen mit Implementierungen und bestandenen Tests, um einen Eindruck davon zu bekommen, welche Funktionen erstellt wurden. Vielen Dank an alle für ihre Beiträge!
* {{Z|Z35273}}
* {{Z|Z35278}}
* {{Z|Z35288}}
* {{Z|Z35292}}
* {{Z|Z35303}}
* {{Z|Z35312}}
* {{Z|Z35314}}
* {{Z|Z35331}}
* {{Z|Z35334}}
* {{Z|Z35338}}
* {{Z|Z35352}}
* {{Z|Z35362}}
* {{Z|Z35364}}
* {{Z|Z35370}}
* {{Z|Z35374}}
* {{Z|Z35376}}
* {{Z|Z35392}}
* {{Z|Z35399}}
* {{Z|Z35402}}
* {{Z|Z35418}}
* {{Z|Z35428}}
* {{Z|Z35437}}
* {{Z|Z35449}}
* {{Z|Z35472}}
* {{Z|Z35475}}
* {{Z|Z35482}}
* {{Z|Z35494}}
* {{Z|Z35505}}
* {{Z|Z35524}}
* {{Z|Z35528}}
* {{Z|Z35544}}
* {{Z|Z35550}}
* {{Z|Z35557}}
* {{Z|Z35568}}
* {{Z|Z35580}}
* {{Z|Z35587}}
* {{Z|Z35589}}
* {{Z|Z35606}}
* {{Z|Z35611}}
* {{Z|Z35615}}
Eine [https://www.wikifunctions.org/wiki/Special:ListObjectsByType?type=Z8&orderby=latest vollständige Liste aller Funktionen, sortiert nach ihrem Erstellungszeitpunkt], ist verfügbar.
[[Category:Status updates{{#translation:}}|2026-05-30]]
fd6tjntyyp6to5jgu4a30s75v6isiu4
Z35986
0
84869
280204
280069
2026-06-03T13:17:50Z
YoshiRulz
10156
Use char range function
280204
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z35986"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z10761",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z10761",
"Z10761K1": {
"Z1K1": "Z7",
"Z7K1": "Z14124",
"Z14124K1": {
"Z1K1": "Z13518",
"Z13518K1": "32"
},
"Z14124K2": {
"Z1K1": "Z13518",
"Z13518K1": "126"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "%20!%22#$%25\u0026'()*+,-./0123456789:;%3C=%3E?@ABCDEFGHIJKLMNOPQRSTUVWXYZ%5B%5C%5D%5E_%60abcdefghijklmnopqrstuvwxyz%7B%7C%7D~"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "check percent-encoding over printable ASCII range"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
fdavz7q6312onj2bw6ecp81nl3f40a3
Translations:Wikifunctions:Status updates/2026-05-30/30/de
1198
84875
280199
280094
2026-06-03T12:40:26Z
Ameisenigel
44
280199
wikitext
text/x-wiki
Morag Boyd (Leiterin für Metadatenanwendungen und Engagement beim OCLC)
5akvj6sb67y95cjwbuawg1ozj9oa9y0
Z35996
0
84890
280317
280159
2026-06-04T01:55:03Z
99of9
1622
better
280317
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z35996"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z33852",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K1": {
"Z1K1": "Z7",
"Z7K1": "Z25974",
"Z25974K1": {
"Z1K1": "Z18",
"Z18K1": "Z33852K4"
}
},
"Z866K2": "ltr"
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z27849",
"Z27849K1": {
"Z1K1": "Z89",
"Z89K1": "→ "
},
"Z27849K2": {
"Z1K1": "Z7",
"Z7K1": "Z33848",
"Z33848K1": {
"Z1K1": "Z7",
"Z7K1": "Z811",
"Z811K1": {
"Z1K1": "Z18",
"Z18K1": "Z33852K1"
}
},
"Z33848K2": {
"Z1K1": "Z18",
"Z18K1": "Z33852K4"
}
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z27873",
"Z27873K1": {
"Z1K1": "Z7",
"Z7K1": "Z27849",
"Z27849K1": {
"Z1K1": "Z89",
"Z89K1": "← "
},
"Z27849K2": {
"Z1K1": "Z7",
"Z7K1": "Z33848",
"Z33848K1": {
"Z1K1": "Z7",
"Z7K1": "Z811",
"Z811K1": {
"Z1K1": "Z18",
"Z18K1": "Z33852K1"
}
},
"Z33848K2": {
"Z1K1": "Z18",
"Z18K1": "Z33852K4"
}
}
},
"Z27873K2": "span",
"Z27873K3": [
"Z6",
"dir"
],
"Z27873K4": [
"Z6",
"rtl"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "main articles, default, consider rtl"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
h8jvhhh6qjrjucqaf9p9w2eo6v33zjq
Z35997
0
84891
280314
280162
2026-06-04T01:40:52Z
99of9
1622
switch to object type after signature change
280314
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z35997"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33852",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33852",
"Z33852K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q11756"
}
],
"Z33852K2": [
"Z1"
],
"Z33852K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33852K4": "Z1001"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Cspan dir=\"rtl\"\u003E← \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q11756\"\u003Eعصر ما قبل التاريخ\u003C/a\u003E\u003C/span\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "prehistory in rtl Arabic"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
p8iab5hxz2haofgwtxtq9rlrbywugjl
Z35998
0
84892
280315
280164
2026-06-04T01:41:26Z
99of9
1622
280315
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z35998"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33852",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33852",
"Z33852K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q309"
}
],
"Z33852K2": [
"Z1"
],
"Z33852K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33852K4": "Z1147"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Cspan dir=\"ltr\"\u003E→ \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q309\"\u003Eབྱུང་རབས\u003C/a\u003E\u003C/span\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "history, Dzongkha"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
1el7ohh6ee32hmhfxtft8y4tam1pe34
280318
280315
2026-06-04T01:56:05Z
99of9
1622
no need for direction when ltr
280318
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z35998"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33852",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33852",
"Z33852K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q309"
}
],
"Z33852K2": [
"Z1"
],
"Z33852K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33852K4": "Z1147"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "→ \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q309\"\u003Eབྱུང་རབས\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "history, Dzongkha"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
q67bbwymm3xnilkfcvfwh1wz5jzk2as
Z36006
0
84900
280201
2026-06-03T13:16:32Z
YoshiRulz
10156
Create implementation
280201
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36006"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z14124",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z22693",
"Z22693K1": {
"Z1K1": "Z7",
"Z7K1": "Z18475",
"Z18475K1": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z23022",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z13831",
"Z13831K1": {
"Z1K1": "Z18",
"Z18K1": "Z14124K1"
},
"Z13831K2": {
"Z1K1": "Z18",
"Z18K1": "Z14124K2"
}
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "String of chars from Unicode range, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
syx19nqvc315pa4d9rg0z3abkifmo23
Z36007
0
84901
280205
2026-06-03T13:30:24Z
YoshiRulz
10156
Create function
280205
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
88axn4rqg5ksqoxz6fassnox80tdj1y
280206
280205
2026-06-03T13:32:56Z
YoshiRulz
10156
Add default value param
280206
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6001",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
9kc329l048997pmslpfj9so4fpw1q08
280211
280206
2026-06-03T13:42:05Z
YoshiRulz
10156
Added Z36008, Z36009 and Z36010 to the approved list of test cases
280211
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6001",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20",
"Z36008",
"Z36009",
"Z36010"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
abipsmnuo0z3p0dvdeh9glwg7yvt0kj
280220
280211
2026-06-03T14:48:45Z
YoshiRulz
10156
Added Z36013 to the approved list of implementations
280220
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6001",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20",
"Z36008",
"Z36009",
"Z36010"
],
"Z8K4": [
"Z14",
"Z36013"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
n2cw0b7y7svlmwk3b3718j4uhadqv5g
280221
280220
2026-06-03T14:58:09Z
YoshiRulz
10156
Removed Z36013 from the approved list of implementations
280221
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6001",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20",
"Z36008",
"Z36009",
"Z36010"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
abipsmnuo0z3p0dvdeh9glwg7yvt0kj
280222
280221
2026-06-03T14:58:10Z
YoshiRulz
10156
Removed Z36008, Z36010 and Z36009 from the approved list of test cases
280222
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z6001",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
9kc329l048997pmslpfj9so4fpw1q08
280223
280222
2026-06-03T14:58:35Z
YoshiRulz
10156
Widen type for default value
280223
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z1",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
42fqgnmgf68b1kmamfd7g1vj6chipd0
280224
280223
2026-06-03T14:58:44Z
YoshiRulz
10156
Added Z36008, Z36010 and Z36009 to the approved list of test cases
280224
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z1",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20",
"Z36008",
"Z36010",
"Z36009"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
gmnw8d27bsnshud3zqmdycqhwf89nrn
280225
280224
2026-06-03T14:58:45Z
YoshiRulz
10156
Added Z36013 to the approved list of implementations
280225
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36007"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z6",
"Z17K2": "Z36007K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "label"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6001"
},
"Z17K2": "Z36007K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "items"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z1",
"Z17K2": "Z36007K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "default if none found"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z40",
"Z17K2": "Z36007K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "case-sensitive?"
}
]
}
}
],
"Z8K2": "Z6001",
"Z8K3": [
"Z20",
"Z36008",
"Z36010",
"Z36009"
],
"Z8K4": [
"Z14",
"Z36013"
],
"Z8K5": "Z36007"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "select Wikidata item with matching label"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
n30egqthabeo3yhw1jkftnx5kyjgw66
Z36008
0
84902
280207
2026-06-03T13:36:28Z
YoshiRulz
10156
Create test
280207
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36008"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36007",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": "red",
"Z36007K2": [
"Z6001",
{
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q3142"
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q3133"
}
},
{
"Z1K1": "Z7",
"Z7K1": "Z6821",
"Z6821K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q1088"
}
}
],
"Z36007K3": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q1396399"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z6801",
"Z6801K2": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q3142"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"red\", [ red, green, blue ], colorless, T) -\u003E red"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
sha28vecot0x65lcux96x0q7p5ewkm2
280208
280207
2026-06-03T13:38:16Z
YoshiRulz
10156
Optimise fetching
280208
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36008"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36007",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": "red",
"Z36007K2": [
"Z6001",
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q3142"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q3133"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q1088"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
}
],
"Z36007K3": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q1396399"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z6801",
"Z6801K2": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q3142"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"red\", [ red, green, blue ], colorless, T) -\u003E red"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
nrifuwznytrrcvbdeynx7qigruacu80
Z36009
0
84903
280209
2026-06-03T13:41:41Z
YoshiRulz
10156
Create test
280209
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36009"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36007",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": "mars",
"Z36007K2": [
"Z6001",
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q37530492"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
],
"Z36007K3": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z6801",
"Z6801K2": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"mars\", planets, Sun, T) -\u003E Sun"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
6vxqbmepc12ts5xwjodp62g5vybtgu8
280216
280209
2026-06-03T14:08:33Z
YoshiRulz
10156
Actually fetch labels
280216
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36009"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36007",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": "mars",
"Z36007K2": [
"Z6001",
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q37530492"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
}
],
"Z36007K3": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z6801",
"Z6801K2": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"mars\", planets, Sun, T) -\u003E Sun"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
fpss34h5ajjyewtohg8i55lr31fz9ce
280218
280216
2026-06-03T14:19:26Z
YoshiRulz
10156
Fix expected value
280218
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36009"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36007",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": "mars",
"Z36007K2": [
"Z6001",
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q37530492"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
}
],
"Z36007K3": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z41"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z6801",
"Z6801K2": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"mars\", planets, Sun, T) -\u003E Sun"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
anexelcxh6bgwq1772xz3zzgr3dl9i6
Z36010
0
84904
280210
2026-06-03T13:41:48Z
YoshiRulz
10156
Create test
280210
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36010"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36007",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": "mars",
"Z36007K2": [
"Z6001",
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q37530492"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
],
"Z36007K3": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z6801",
"Z6801K2": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"mars\", planets, Sun, F) -\u003E Mars"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
mbpsve2y7t2mubcoe69zeq353t93xzd
280217
280210
2026-06-03T14:08:56Z
YoshiRulz
10156
Actually fetch labels
280217
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36010"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36007",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": "mars",
"Z36007K2": [
"Z6001",
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q37530492"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
},
{
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
"Z30120K2": [
"Z6030",
"Z6033"
],
"Z30120K3": [
"Z60",
"Z1002"
],
"Z30120K4": [
"Z6092"
]
}
],
"Z36007K3": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
},
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z6801",
"Z6801K2": {
"Z1K1": "Z7",
"Z7K1": "Z30120",
"Z30120K1": {
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
"Z30120K2": [
"Z6030",
"Z6031"
],
"Z30120K3": [
"Z60"
],
"Z30120K4": [
"Z6092"
]
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"mars\", planets, Sun, F) -\u003E Mars"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
762i916014j777d9r1sh983b72hwrm8
Z36011
0
84905
280212
2026-06-03T13:52:34Z
YoshiRulz
10156
Create function
280212
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36011"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z12",
"Z17K2": "Z36011K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "texts"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36011"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of Strings from Multilingual text"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
o8lx5o5dkk5henzufmmd3gralikn5si
280214
280212
2026-06-03T13:55:32Z
YoshiRulz
10156
Added Z36012 to the approved list of implementations
280214
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36011"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z12",
"Z17K2": "Z36011K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "texts"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14",
"Z36012"
],
"Z8K5": "Z36011"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "list of Strings from Multilingual text"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
dsl6n0i9otlm7ii8mr5m1r6eyzo7e4p
Z36012
0
84906
280213
2026-06-03T13:55:11Z
YoshiRulz
10156
Create implementation
280213
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36012"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36011",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z14396",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z19279",
"Z19279K1": {
"Z1K1": "Z18",
"Z18K1": "Z36011K1"
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Strings from Multilingual text, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
h8qre2lsgi2pl58tnmmb39k1a0kzd9p
Z36013
0
84907
280215
2026-06-03T14:03:23Z
YoshiRulz
10156
Create implementation
280215
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36013"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36007",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z22839",
"Z22839K1": {
"Z1K1": "Z7",
"Z7K1": "Z22820",
"Z22820K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K2"
},
"Z22820K2": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z12696",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K4"
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z36011",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z22853",
"Z873K2": {
"Z1K1": "Z18",
"Z18K1": "Z36007K2"
}
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z10018",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z36011",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z22853",
"Z873K2": {
"Z1K1": "Z18",
"Z18K1": "Z36007K2"
}
}
}
}
},
"Z13464K3": {
"Z1K1": "Z7",
"Z7K1": "Z27068",
"Z27068K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K1"
},
"Z27068K2": "Z10018",
"Z27068K3": {
"Z1K1": "Z7",
"Z7K1": "Z10216",
"Z10216K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K4"
}
}
}
}
},
"Z22839K2": {
"Z1K1": "Z18",
"Z18K1": "Z36007K3"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata item with matching label, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ltizzzzk8k3738va1ikbmpgpdteiprr
280219
280215
2026-06-03T14:48:05Z
YoshiRulz
10156
Fix map over list of lists
280219
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36013"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36007",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z22839",
"Z22839K1": {
"Z1K1": "Z7",
"Z7K1": "Z22820",
"Z22820K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K2"
},
"Z22820K2": {
"Z1K1": "Z7",
"Z7K1": "Z13464",
"Z13464K1": "Z12696",
"Z13464K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K4"
},
"Z802K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z36011",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z22853",
"Z873K2": {
"Z1K1": "Z18",
"Z18K1": "Z36007K2"
}
}
},
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z32806",
"Z32806K1": "Z10018",
"Z32806K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z36011",
"Z873K2": {
"Z1K1": "Z7",
"Z7K1": "Z873",
"Z873K1": "Z22853",
"Z873K2": {
"Z1K1": "Z18",
"Z18K1": "Z36007K2"
}
}
}
}
},
"Z13464K3": {
"Z1K1": "Z7",
"Z7K1": "Z27068",
"Z27068K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K1"
},
"Z27068K2": "Z10018",
"Z27068K3": {
"Z1K1": "Z7",
"Z7K1": "Z10216",
"Z10216K1": {
"Z1K1": "Z18",
"Z18K1": "Z36007K4"
}
}
}
}
},
"Z22839K2": {
"Z1K1": "Z18",
"Z18K1": "Z36007K3"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Wikidata item with matching label, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
cz6xyl33j1e2136zcof680fzjawzegj
Z36014
0
84908
280226
2026-06-03T15:11:22Z
YoshiRulz
10156
Create implementation
280226
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36014"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z14159",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z17180",
"Z17180K1": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": {
"Z1K1": "Z18",
"Z18K1": "Z14159K1"
},
"Z36007K2": {
"Z1K1": "Z7",
"Z7K1": "Z30172",
"Z30172K1": {
"Z1K1": "Z7",
"Z7K1": "Z30248",
"Z30248K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16877383"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q319"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q339"
}
],
"Z30248K2": [
"Z6030",
"Z6033",
"Z6036"
],
"Z30248K3": [
"Z60",
"Z1430",
"Z1002",
"Z1005"
],
"Z30248K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P487"
}
]
}
},
"Z36007K3": "Z24",
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
},
"Z802K2": "Z11853",
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z19308",
"Z19308K1": {
"Z1K1": "Z7",
"Z7K1": "Z23451",
"Z23451K1": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": {
"Z1K1": "Z18",
"Z18K1": "Z14159K1"
},
"Z36007K2": {
"Z1K1": "Z7",
"Z7K1": "Z30172",
"Z30172K1": {
"Z1K1": "Z7",
"Z7K1": "Z30248",
"Z30248K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16877383"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q319"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q339"
}
],
"Z30248K2": [
"Z6030",
"Z6033",
"Z6036"
],
"Z30248K3": [
"Z60",
"Z1430",
"Z1002",
"Z1005"
],
"Z30248K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P487"
}
]
}
},
"Z36007K3": "Z24",
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
"Z23451K2": {
"Z1K1": "Z6092",
"Z6092K1": "P487"
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
pjyo2h3lhlgapjagxjivtlf1b9slikw
280227
280226
2026-06-03T15:12:28Z
YoshiRulz
10156
Add en label and desc
280227
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36014"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z14159",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z802",
"Z802K1": {
"Z1K1": "Z7",
"Z7K1": "Z17180",
"Z17180K1": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": {
"Z1K1": "Z18",
"Z18K1": "Z14159K1"
},
"Z36007K2": {
"Z1K1": "Z7",
"Z7K1": "Z30172",
"Z30172K1": {
"Z1K1": "Z7",
"Z7K1": "Z30248",
"Z30248K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16877383"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q319"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q339"
}
],
"Z30248K2": [
"Z6030",
"Z6033",
"Z6036"
],
"Z30248K3": [
"Z60",
"Z1430",
"Z1002",
"Z1005"
],
"Z30248K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P487"
}
]
}
},
"Z36007K3": "Z24",
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
},
"Z802K2": "Z11853",
"Z802K3": {
"Z1K1": "Z7",
"Z7K1": "Z19308",
"Z19308K1": {
"Z1K1": "Z7",
"Z7K1": "Z23451",
"Z23451K1": {
"Z1K1": "Z7",
"Z7K1": "Z36007",
"Z36007K1": {
"Z1K1": "Z18",
"Z18K1": "Z14159K1"
},
"Z36007K2": {
"Z1K1": "Z7",
"Z7K1": "Z30172",
"Z30172K1": {
"Z1K1": "Z7",
"Z7K1": "Z30248",
"Z30248K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q525"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q16877383"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q613883"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q47652"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q2"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q111"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q319"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q134388"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q324"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q107636904"
},
{
"Z1K1": "Z6091",
"Z6091K1": "Q339"
}
],
"Z30248K2": [
"Z6030",
"Z6033",
"Z6036"
],
"Z30248K3": [
"Z60",
"Z1430",
"Z1002",
"Z1005"
],
"Z30248K4": [
"Z6092",
{
"Z1K1": "Z6092",
"Z6092K1": "P487"
}
]
}
},
"Z36007K3": "Z24",
"Z36007K4": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
},
"Z23451K2": {
"Z1K1": "Z6092",
"Z6092K1": "P487"
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "astronomical symbols, via-Wikidata composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "data missing"
}
]
}
}
h9rr2wfrr6cw3a856d3mqf2eeuicas1
Z36015
0
84909
280230
2026-06-03T15:25:42Z
YoshiRulz
10156
Create test
280230
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36015"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z15946",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z15946",
"Z15946K1": "-3",
"Z15946K2": "-3"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z844",
"Z844K2": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(\"-3\", \"-3\") -\u003E F"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
3hatdrd9h5a56g12q79oeubwm8blgaq
Z36016
0
84910
280232
2026-06-03T15:28:39Z
YoshiRulz
10156
Create implementation
280232
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36016"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z15946",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z850",
"Z850K1": {
"Z1K1": "Z7",
"Z7K1": "Z17132",
"Z17132K1": {
"Z1K1": "Z7",
"Z7K1": "Z16705",
"Z16705K1": {
"Z1K1": "Z18",
"Z18K1": "Z15946K1"
},
"Z16705K2": "Z1002"
},
"Z17132K2": {
"Z1K1": "Z7",
"Z7K1": "Z16705",
"Z16705K1": {
"Z1K1": "Z18",
"Z18K1": "Z15946K2"
},
"Z16705K2": "Z1002"
}
},
"Z850K2": "Z500",
"Z850K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "numeric String greater than other, composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
servcl5xckhj8ickn9lwtn86g52pvo6
User:YoshiRulz/Missing compositions
2
84911
280235
2026-06-03T15:37:13Z
YoshiRulz
10156
Create page
280235
wikitext
text/x-wiki
* [[Z10018]]
* [[Z10022]] Turkish
* [[Z10047]]
* [[Z10057]]
* [[Z10067]]
* [[Z10124]]
* [[Z10132]]
* [[Z10148]]
* [[Z10149]]
* [[Z10178]]
* [[Z10181]]
* [[Z10185]]
* [[Z10188]]
* [[Z10196]]
* [[Z10309]]
* [[Z10357]]
* [[Z10366]]
* [[Z10373]]
* [[Z10384]]
* [[Z10387]]
* [[Z10390]]
* [[Z10394]]
* [[Z10397]]
* [[Z10398]]
* [[Z10399]]
* [[Z10410]]
* [[Z10441]]
* [[Z10450]] Esperanto
* [[Z10458]] Esperanto
* [[Z10459]] Esperanto
* [[Z10482]] Esperanto
* [[Z10491]] Esperanto
* [[Z10507]]
* [[Z10514]] Esperanto
* [[Z10524]]
* [[Z10574]]
* [[Z10587]] Bangla
* [[Z10591]] Bangla
* [[Z10608]]
* [[Z10682]] Turkish
* [[Z10689]] Turkish
* [[Z10761]] composition exists but fails
* [[Z10765]]
* [[Z10812]]
* [[Z10816]]
* [[Z10821]]
* [[Z10894]] Hebrew
* [[Z10938]]
* [[Z10970]]
* [[Z10975]] Javanese
* [[Z10987]]
* [[Z11003]]
* [[Z11007]]
* [[Z11011]] Jalali calendar
* [[Z11022]]
* [[Z11023]]
* [[Z11049]]
* [[Z11077]] Bangla
* [[Z11089]] English
* [[Z11094]]
* [[Z11193]]
* [[Z11208]] SMILES
* [[Z11235]]
* [[Z11353]] Igbo
* [[Z11390]] English
* [[Z11461]]
* [[Z11501]]
* [[Z11548]] French
* [[Z11553]]
* [[Z11589]] French
* [[Z11590]] French
* [[Z11619]] Breton
* [[Z11627]] Breton
* [[Z11632]] Breton
* [[Z11642]]
* [[Z11646]] English
* [[Z11651]] English
* [[Z11668]]
* [[Z11672]]
* [[Z11676]]
* [[Z11678]]
* [[Z11700]] Breton
* [[Z11705]]
* [[Z11722]] German
* [[Z11739]] German
* [[Z11762]] German
* [[Z11834]] German
* [[Z11884]] SMILES
* [[Z11899]] SMILES
* [[Z11929]] Punjabi
* [[Z11938]] Rohingya
* [[Z12036]] Punjabi
* [[Z12058]] Punjabi
* [[Z12078]] Persian
* [[Z12082]] Perso-Arabic
* [[Z12116]] Rohingya
* [[Z12130]] Rohingya
* [[Z12134]] Rohingya
* [[Z12186]] Rohingya
* [[Z12189]] Turkish
* [[Z12194]] Rohingya
* [[Z12198]] Punjabi
* [[Z12217]]
* [[Z12219]]
* [[Z12228]] Urdu
* [[Z12240]] Urdu
* [[Z12268]] Breton
* [[Z12316]]
* [[Z12408]] Igbo
* [[Z12497]]
* [[Z12500]]
* [[Z12505]]
* [[Z12509]]
* [[Z12608]] Chinese
* [[Z12611]] SMILES
* [[Z12627]] Dutch
* [[Z12665]]
* [[Z12671]]
* [[Z12678]] Bangla
* [[Z12689]] German
* [[Z12729]]
* [[Z12745]]
* [[Z12770]] Igbo
* [[Z12775]] Korean
* [[Z12794]]
* [[Z12806]] Igbo
* [[Z12818]] Sudanese
* [[Z12884]] Sudanese
* [[Z12908]] Esperanto
* [[Z12919]] Bangla
* [[Z12926]] Bangla
* [[Z12941]]
* [[Z12992]]
* [[Z13006]]
* [[Z13017]] colour
* [[Z13023]] colour
* [[Z13028]] colour
* [[Z13040]] Serbian
* [[Z13060]]
* [[Z13124]] Japanese
* [[Z13138]] Hebrew
* [[Z13151]] Bangla
* [[Z13156]] Bangla
* [[Z13195]] Bangla
* [[Z13206]] English
* [[Z13238]] Bangla
* [[Z13254]] English
* [[Z13270]] Bangla
* [[Z13300]] Japanese
* [[Z13335]] Japanese
* [[Z13587]] English
* [[Z13617]] Finnish
* [[Z13806]]
* [[Z13871]]
* [[Z13934]]
* [[Z14018]]
* [[Z14066]]
* [[Z14083]]
* [[Z14159]] composition exists but fails
* [[Z14189]]
* [[Z14195]]
* [[Z14200]]
* [[Z14226]]
* [[Z14374]]
* [[Z14473]]
* [[Z14523]] English
* [[Z14562]]
* [[Z14576]]
* [[Z14613]]
* [[Z14643]]
* [[Z14648]]
* [[Z14653]]
* [[Z14657]]
* [[Z14662]]
* [[Z14680]]
* [[Z14683]]
* [[Z14917]]
* [[Z14961]]
* [[Z14980]]
* [[Z15007]]
* [[Z15092]]
* [[Z15098]]
* [[Z15251]] composition exists but fails
* [[Z15256]]
* [[Z15347]]
* [[Z15356]]
* [[Z15362]]
* [[Z15391]]
* [[Z15553]] composition exists but fails
* [[Z15564]]
* [[Z15567]] Malay
* [[Z15708]] Korean
* [[Z15937]]
* [[Z15963]] German
* [[Z15974]]
* [[Z16008]] Swedish
* [[Z16053]] Igbo
* [[Z16074]] Igbo
* [[Z16093]] French
* [[Z16114]] Chinese
* [[Z16150]] Bangla
* [[Z16153]]
* [[Z16163]] Low German
* [[Z16172]] Moroccan
* [[Z16184]] Arabic
* [[Z16185]] Klingon
* [[Z16221]] Portuguese
* [[Z16394]]
* [[Z16409]] Luxembourgish
* [[Z16431]] Spanish
* [[Z16443]] Moroccan
* [[Z16475]]
* [[Z16608]] Breton
* [[Z16741]] SMILES
* [[Z16812]] Ukranian
* [[Z16904]] Bangla
* [[Z16908]]
* [[Z16919]] English
* [[Z17030]]
* [[Z17036]]
* [[Z17081]] Vietnamese
* [[Z17506]]
* [[Z17511]]
* [[Z17516]]
* [[Z17534]]
* [[Z17563]] Bangla
* [[Z17564]] Bangla
* [[Z17639]] Spanish
* [[Z17654]] English
* [[Z17664]] colour
* [[Z17685]] Igbo
* [[Z17713]] colour
* [[Z17721]] Swedish
* [[Z17727]] Swedish
* [[Z17745]] Swedish
* [[Z17822]] Swedish
* [[Z17866]] Spanish
* [[Z17966]] Swedish
* [[Z18002]] Swedish
* [[Z18006]] Swedish
* [[Z18131]] Bangla
* [[Z18140]] Russian
* [[Z18160]] Swedish
* [[Z18163]] Swedish
* [[Z18169]] Bangla
* [[Z18175]] Swedish
* [[Z18181]]
* [[Z18184]] colour
* [[Z18189]] colour
* [[Z18196]] colour
* [[Z18199]] Kurdish
* [[Z18204]] colour
* [[Z18208]] colour
* [[Z18212]] colour
* [[Z18216]] Persian
* [[Z18220]] Swedish
* [[Z18226]] Swedish
* [[Z18233]] Swedish
* [[Z18238]] Swedish
* [[Z18263]] colour
* [[Z18268]] colour
* [[Z18281]] composition exists but fails
* [[Z18296]] colour
* [[Z18300]] colour
* [[Z18319]]
* [[Z18331]]
* [[Z18336]]
* [[Z18339]]
* [[Z18346]]
* [[Z18365]] German
* [[Z18387]] Bangla
* [[Z18397]] Bangla
* [[Z18424]]
* [[Z18435]] Bangla
* [[Z18440]] Judeo-Persian
* [[Z18459]]
* [[Z18462]] Bangla
* [[Z18467]]
* [[Z18489]]
* [[Z18504]]
* [[Z18515]]
* [[Z18529]]
* [[Z18531]]
* [[Z18541]] Basque
* [[Z18546]] Indonesian
* [[Z18573]] Bangla
* [[Z18592]]
* [[Z18603]] Kurdish
* [[Z18662]] Bangla
* [[Z18670]] Basque
* [[Z18679]] Malay
* [[Z18699]] Kurdish
* [[Z18708]] Kurdish
* [[Z18722]]
* [[Z18733]] Basque
* [[Z18742]] Basque
* [[Z18766]]
* [[Z18768]]
* [[Z18771]]
* [[Z18775]]
* [[Z18779]]
* [[Z18784]] Russian
* [[Z18790]] Kurdish
* [[Z18793]]
* [[Z18796]] English
* [[Z18807]] Kurdish
* [[Z18826]] Basque
* [[Z18828]] Balochi
* [[Z18831]] Bangla
* [[Z18837]] Bangla
* [[Z18852]]
* [[Z18859]]
* [[Z18867]] Malay
* [[Z18877]] Balochi
* [[Z18881]] Bangla
* [[Z18893]] Malay
* [[Z18922]]
* [[Z18932]]
* [[Z18957]]
* [[Z18961]]
* [[Z18988]] Arabic
* [[Z19009]] Tunisian
* [[Z19011]] Arabic
* [[Z19013]] Tunisian
* [[Z19020]]
* [[Z19023]]
* [[Z19046]] Latvian
* [[Z19085]]
* [[Z19135]] Moroccan
* [[Z19191]]
* [[Z19217]]
* [[Z19223]]
* [[Z19334]] Hindi
* [[Z19344]]
* [[Z19370]]
* [[Z19380]] SMILES
* [[Z19403]]
* [[Z19421]]
* [[Z19441]]
* [[Z19460]]
* [[Z19472]] Malayalam
* [[Z19479]]
* [[Z19484]] Malayalam
* [[Z19486]]
* [[Z19489]]
* [[Z19503]] Malayalam
* [[Z19533]] Malayalam
* [[Z19583]]
* [[Z19629]] Arabic
* [[Z19637]]
* [[Z19641]]
* [[Z19800]]
* [[Z19886]]
* [[Z19901]]
* [[Z19933]]
* [[Z19943]]
* [[Z19953]]
* [[Z20013]] Syrian
* [[Z20020]]
* [[Z20024]] Syrian
* [[Z20132]]
* [[Z20198]]
* [[Z20285]]
* [[Z20362]]
* [[Z20426]] English
* [[Z20449]]
* [[Z20465]] Basque
* [[Z20467]] Basque
* [[Z20468]] Basque
* [[Z20469]] Basque
* [[Z20511]] Basque
* [[Z20573]]
* [[Z20597]] English
* [[Z20617]] Hijri calendar
* [[Z20665]] Gaelic
* [[Z20687]]
* [[Z20706]] Persian
* [[Z20727]] German
* [[Z20730]]
* [[Z20741]]
* [[Z20750]]
* [[Z20773]] English
* [[Z20776]] German
* [[Z20782]] English
* [[Z20788]]
* [[Z20791]] Hungarian
* [[Z20801]] Russian
* [[Z20816]]
* [[Z20841]]
* [[Z20844]]
* [[Z20849]]
* [[Z20850]]
* [[Z20854]]
* [[Z20915]]
* [[Z20924]]
* [[Z21009]]
* [[Z21031]]
* [[Z21043]]
* [[Z21047]]
* [[Z21071]]
* [[Z21100]]
* [[Z21121]]
* [[Z21148]]
* [[Z21187]]
* [[Z21198]]
* [[Z21245]]
* [[Z21267]] Bangla
* [[Z21278]]
* [[Z21360]]
* [[Z21486]]
* [[Z21503]]
* [[Z21514]]
* [[Z21539]]
* [[Z21554]] colour
* [[Z21562]]
* [[Z21572]] Bangla
* [[Z21587]]
* [[Z21599]] French
* [[Z21617]] French
* [[Z21624]] French
* [[Z21632]] French
* [[Z21682]]
* [[Z21796]]
* [[Z21814]]
* [[Z21842]] English
* [[Z21934]]
* [[Z21939]]
* [[Z21961]] Arabic
* [[Z22002]]
* [[Z22007]]
* [[Z22107]]
* [[Z22155]]
* [[Z22162]]
* [[Z22214]] Arabic
* [[Z22236]]
* [[Z22302]]
* [[Z22455]] toki pona
* [[Z22571]] toki pona
* [[Z22576]] Russian
* [[Z22623]] Church Slavonic
* [[Z22693]]
* [[Z22699]]
* [[Z22717]]
* [[Z22725]]
* [[Z22728]]
* [[Z22764]]
* [[Z22786]] Italian
* [[Z22791]] Italian
* [[Z22796]]
* [[Z22844]] Julian calendar
* [[Z22849]]
* [[Z22903]]
* [[Z23003]] Italian
* [[Z23109]]
* [[Z23153]]
* [[Z23197]] Italian
* [[Z23219]]
* [[Z23246]]
* [[Z23254]]
* [[Z23269]] Julian calendar
* [[Z23283]]
* [[Z23561]]
* [[Z23619]] Italian
* [[Z23782]] Quechua
* [[Z23783]]
* [[Z23788]] Quechua
* [[Z23790]] Quechua
* [[Z23792]] Quechua
* [[Z23795]] Quechua
* [[Z23798]] Quechua
* [[Z23800]] Quechua
* [[Z23808]]
* [[Z23827]] English
* [[Z23848]]
* [[Z23851]]
* [[Z23855]] Luxembourgish
* [[Z23865]]
* [[Z23869]]
* [[Z23896]]
* [[Z23953]]
* [[Z23956]]
* [[Z23961]] Italian
* [[Z23976]]
* [[Z23984]] English
* [[Z23990]] Dagbani
* [[Z23997]]
* [[Z24007]]
* [[Z24025]] Arabic
* [[Z24081]]
* [[Z24139]]
* [[Z24450]]
* [[Z24459]]
* [[Z24460]]
* [[Z24497]]
* [[Z24505]]
* [[Z24632]]
* [[Z24681]]
* [[Z24698]]
* [[Z24721]] toki pona
* [[Z24880]] Dagbani
* [[Z24979]] Italian
* [[Z24984]] Dagbani
* [[Z24987]] Spanish
* [[Z25007]]
* [[Z25016]]
* [[Z25022]]
* [[Z25032]] Italian
* [[Z25038]] English
* [[Z25043]] Dagbani
* [[Z25127]]
* [[Z25128]]
* [[Z25152]]
* [[Z25158]]
* [[Z25220]]
* [[Z25271]]
* [[Z25376]]
* [[Z25393]]
* [[Z25399]]
* [[Z25404]]
* [[Z25416]]
* [[Z25419]]
* [[Z25457]]
* [[Z25491]]
* [[Z25510]]
* [[Z25557]]
* [[Z25565]]
* [[Z25683]] English
* [[Z25763]] Spanish
* [[Z25792]]
* [[Z25829]]
* [[Z25833]]
* [[Z25847]]
* [[Z25853]]
* [[Z25901]]
* [[Z25924]] Serbian
* [[Z25930]]
* [[Z25963]]
* [[Z25966]]
* [[Z25982]]
* [[Z25991]]
* [[Z26004]]
* [[Z26011]]
* [[Z26017]] Italian
* [[Z26029]] English
* [[Z26033]] Dagbani
* [[Z26046]] Chinese
* [[Z26059]]
* [[Z26076]] Chinese
* [[Z26081]] Chinese
* [[Z26121]] Serbian
* [[Z26214]]
* [[Z26328]] Spanish
* [[Z26354]] Malayalam
* [[Z26369]]
* [[Z26428]]
* [[Z26432]] Bangla
* [[Z26444]]
* [[Z26452]]
* [[Z26487]]
* [[Z26491]]
* [[Z26495]]
* [[Z26499]]
* [[Z26629]] Bangla
* [[Z26638]] Bangla
* [[Z26643]] Bangla
* [[Z26648]] Bangla
* [[Z26652]] Bangla
* [[Z26729]]
* [[Z26756]]
* [[Z26760]]
* [[Z26774]] Hijri calendar
* [[Z26779]]
* [[Z26785]]
* [[Z26817]] Hijri calendar
* [[Z26830]]
* [[Z27014]]
* [[Z27022]]
* [[Z27028]]
* [[Z27057]]
* [[Z27131]] Italian
* [[Z27254]] Luxembourgish
* [[Z27298]] Arabic
* [[Z27332]]
* [[Z27340]]
* [[Z27376]]
* [[Z27406]] Italian
* [[Z27417]] Breton
* [[Z27574]] Breton
* [[Z27632]]
* [[Z27655]] Luxembourgish
* [[Z27705]]
* [[Z27737]]
* [[Z27778]]
* [[Z27783]]
* [[Z27791]]
* [[Z27811]]
* [[Z27815]]
* [[Z27861]]
* [[Z27868]]
* [[Z27878]]
* [[Z27908]]
* [[Z28009]]
* [[Z28094]]
* [[Z28119]] Julian calendar
* [[Z28219]]
* [[Z28378]] Bangla
* [[Z28387]]
* [[Z28422]] Bangla
* [[Z28467]]
* [[Z28482]]
* [[Z28513]]
* [[Z28539]] German
* [[Z28548]]
* [[Z28562]] French
* [[Z28565]]
* [[Z28600]] Hijri calendar
* [[Z28661]]
* [[Z28741]]
* [[Z28846]]
* [[Z28911]] Hijri calendar
* [[Z28917]]
* [[Z28940]]
* [[Z28945]]
* [[Z28986]]
* [[Z29031]]
* [[Z29079]]
* [[Z29108]]
* [[Z29183]]
* [[Z29267]]
* [[Z29294]]
* [[Z29443]]
* [[Z29518]]
* [[Z29725]]
* [[Z29890]]
* [[Z29940]] English
* [[Z30177]]
* [[Z30217]]
* [[Z30306]] Serbian
* [[Z30367]]
* [[Z30389]] Armenian
* [[Z30473]] Armenian
* [[Z30549]] Armenian
* [[Z30638]] Malay
* [[Z30837]]
* [[Z30901]] toki pona
* [[Z31108]]
* [[Z31145]]
* [[Z31192]]
* [[Z31211]]
* [[Z31241]] Dutch
* [[Z31322]] Dutch
* [[Z31398]]
* [[Z31454]] Japanese
* [[Z31456]] Russian
* [[Z31572]] Arabic
* [[Z31648]] Indonesian
* [[Z31670]] Malay
* [[Z31729]]
* [[Z31754]]
* [[Z31772]] Portuguese
* [[Z31907]]
* [[Z31944]]
* [[Z31965]]
* [[Z32031]] Latin
* [[Z32085]]
* [[Z32314]] English
* [[Z32330]] Latin
* [[Z32340]] Latin
* [[Z32343]] Latin
* [[Z32347]] Latin
* [[Z32436]] Portuguese
* [[Z32456]]
* [[Z32527]]
* [[Z32537]]
* [[Z32573]]
* [[Z32577]]
* [[Z32588]] Czech
* [[Z32715]]
* [[Z32734]]
* [[Z32780]] Czech
* [[Z32793]] Japanese
* [[Z32953]]
* [[Z33105]]
* [[Z33151]] toki pona
* [[Z33165]] Malay
* [[Z33245]] Japanese
* [[Z33340]] Luxembourgish
* [[Z33399]]
* [[Z33415]]
* [[Z33440]] Tagalog
* [[Z33509]] pinyin
* [[Z33691]]
* [[Z33696]] pinyin
* [[Z33727]]
* [[Z33778]]
* [[Z33785]]
* [[Z33788]]
* [[Z33797]] pinyin
* [[Z33818]]
* [[Z33836]]
* [[Z33878]]
* [[Z33955]] pinyin
* [[Z33983]]
* [[Z33986]] Hebrew
* [[Z34009]] pinyin
* [[Z34139]] Bulgarian
* [[Z34200]] toki poka
* [[Z34212]] pinyin
* [[Z34308]] Bulgarian
* [[Z34463]]
* [[Z34797]] pinyin
* [[Z34854]]
* [[Z34943]]
* [[Z34993]]
* [[Z35010]] Bengali
* [[Z35175]]
* [[Z35278]]
* [[Z35388]]
* [[Z35390]] SignWriting
* [[Z35392]] SignWriting
* [[Z35395]] SignWriting
* [[Z35397]] SignWriting
* [[Z35408]] SignWriting
* [[Z35528]] Chinese
* [[Z35608]] Bangla
* [[Z35780]] Igbo
* [[Z35797]]
* [[Z35828]]
* [[Z35879]] SignWriting
* [[Z35886]] SignWriting
* [[Z35888]] SignWriting
* [[Z35893]] SignWriting
* [[Z35896]] SignWriting
ia045501oxc1b2wetvece90sgw6jbea
Z36017
0
84912
280237
2026-06-03T16:23:58Z
Vintagecomp
84065
Ajout d'une fonction calculant le déterminant d'une matrice carrée
280237
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36017"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17"
],
"Z8K2": "Z16683",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36017"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Calcul du déterminant d'une matrice"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"déterminant matrice"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Calcule récursivement le déterminant d'une matrice"
}
]
}
}
7dw6ewlmmscmdq4boun6x007z08i7dv
280238
280237
2026-06-03T16:25:13Z
Vintagecomp
84065
Ajout d'un label
280238
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36017"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17"
],
"Z8K2": "Z16683",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36017"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Calcul du déterminant d'une matrice"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Calcul récursif du déterminant d'une matrice carré"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"déterminant matrice"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Calcule récursivement le déterminant d'une matrice"
}
]
}
}
ka4wabtm12vxbc4pvixm718mn1qejwv
Z36018
0
84913
280241
2026-06-03T16:40:02Z
YoshiRulz
10156
Create function
280241
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36018"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of first term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of last term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "offset of 0th term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "difference between terms"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z16683"
},
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36018"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "generate finite arithmetic progression of Integers"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"generate arithmetic sequence of Integers"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
kktlejccgsszx5dxpsdqekji5pkkpfj
280247
280241
2026-06-03T16:50:08Z
YoshiRulz
10156
Added Z36019 and Z36020 to the approved list of test cases
280247
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36018"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of first term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of last term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "offset of 0th term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "difference between terms"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z16683"
},
"Z8K3": [
"Z20",
"Z36019",
"Z36020"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36018"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "generate finite arithmetic progression of Integers"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"generate arithmetic sequence of Integers"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
fu5r73ucng4nbx4abl23qsnphwvvtzd
280249
280247
2026-06-03T16:54:19Z
YoshiRulz
10156
Added Z36021 to the approved list of implementations
280249
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36018"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of first term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of last term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "offset of 0th term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "difference between terms"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z16683"
},
"Z8K3": [
"Z20",
"Z36019",
"Z36020"
],
"Z8K4": [
"Z14",
"Z36021"
],
"Z8K5": "Z36018"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "generate finite arithmetic progression of Integers"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"generate arithmetic sequence of Integers"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
9ds2sl3zxwtge2hgliaas1j0roz537f
280251
280249
2026-06-03T16:55:09Z
YoshiRulz
10156
Added Z36022 to the approved list of test cases
280251
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36018"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of first term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of last term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "offset of 0th term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "difference between terms"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z16683"
},
"Z8K3": [
"Z20",
"Z36019",
"Z36020",
"Z36022"
],
"Z8K4": [
"Z14",
"Z36021"
],
"Z8K5": "Z36018"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "generate finite arithmetic progression of Integers"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"generate arithmetic sequence of Integers"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
pkbztm8fd7uly5au1bsj6rmslkzi45e
280253
280251
2026-06-03T17:01:36Z
YoshiRulz
10156
Added Z36023 to the approved list of implementations
280253
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36018"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of first term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z13518",
"Z17K2": "Z36018K2",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "index of last term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K3",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "offset of 0th term"
}
]
}
},
{
"Z1K1": "Z17",
"Z17K1": "Z16683",
"Z17K2": "Z36018K4",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "difference between terms"
}
]
}
}
],
"Z8K2": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z16683"
},
"Z8K3": [
"Z20",
"Z36019",
"Z36020",
"Z36022"
],
"Z8K4": [
"Z14",
"Z36021",
"Z36023"
],
"Z8K5": "Z36018"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "generate finite arithmetic progression of Integers"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"generate arithmetic sequence of Integers"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
0kx42je0u2vtpw0lxcaggwcdviehgis
Z36019
0
84914
280244
2026-06-03T16:47:12Z
YoshiRulz
10156
Create test
280244
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36019"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36018",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36018",
"Z36018K1": {
"Z1K1": "Z13518",
"Z13518K1": "0"
},
"Z36018K2": {
"Z1K1": "Z13518",
"Z13518K1": "4"
},
"Z36018K3": {
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "2"
}
},
"Z36018K4": {
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "3"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z889",
"Z889K2": [
"Z16683",
{
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "2"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "5"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "8"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "11"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "14"
}
}
],
"Z889K3": "Z16688"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(0, 4, 2, 3) -\u003E [ 2, 5, 8, 11, 14 ]"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
748tx86hnt9kk27e3rd05slyx3z57ex
Z36020
0
84915
280246
2026-06-03T16:49:09Z
YoshiRulz
10156
Create test
280246
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36020"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36018",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36018",
"Z36018K1": {
"Z1K1": "Z13518",
"Z13518K1": "2"
},
"Z36018K2": {
"Z1K1": "Z13518",
"Z13518K1": "6"
},
"Z36018K3": {
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "10"
}
},
"Z36018K4": {
"Z1K1": "Z16683",
"Z16683K1": "Z16662",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "3"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z889",
"Z889K2": [
"Z16683",
{
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "4"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16662",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "2"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16662",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "5"
}
},
{
"Z1K1": "Z16683",
"Z16683K1": "Z16662",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "8"
}
}
],
"Z889K3": "Z16688"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(2, 6, 10, -3) -\u003E [ 4, 1, -2, -5, -8 ]"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
qfy1w3zdijbznp7o0krp6ctc8m6z9rt
Z36021
0
84916
280248
2026-06-03T16:53:57Z
YoshiRulz
10156
Create implementation
280248
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36021"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36018",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z600",
"Z16K2": "function Z36018( Z36018K1, Z36018K2, Z36018K3, Z36018K4 ) {\n\treturn Z36018K2 \u003C Z36018K1\n\t\t? []\n\t\t: Array.from({ length: 1 + Number(Z36018K2) }, (_, i) =\u003E Z36018K3 + BigInt(i) * Z36018K4)\n\t\t\t.slice(Number(Z36018K1));\n}"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "generate arithmetic progression of Integers, JS"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
fi2einaxlw78ukxevvmjmjp1yp0x7at
Z36022
0
84917
280250
2026-06-03T16:54:58Z
YoshiRulz
10156
Create test
280250
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36022"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z36018",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z36018",
"Z36018K1": {
"Z1K1": "Z13518",
"Z13518K1": "1"
},
"Z36018K2": {
"Z1K1": "Z13518",
"Z13518K1": "0"
},
"Z36018K3": {
"Z1K1": "Z16683",
"Z16683K1": "Z16661",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "0"
}
},
"Z36018K4": {
"Z1K1": "Z16683",
"Z16683K1": "Z16660",
"Z16683K2": {
"Z1K1": "Z13518",
"Z13518K1": "1"
}
}
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z30164",
"Z30164K2": {
"Z1K1": "Z13518",
"Z13518K1": "0"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "(1, 0, 0, 1) -\u003E []"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
poph77gv785vgohdbqp46e6oecmwfzk
Z36023
0
84918
280252
2026-06-03T17:01:19Z
YoshiRulz
10156
Create implementation
280252
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36023"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36018",
"Z14K2": {
"Z1K1": "Z7",
"Z7K1": "Z13436",
"Z13436K1": "Z16693",
"Z13436K2": {
"Z1K1": "Z18",
"Z18K1": "Z36018K3"
},
"Z13436K3": {
"Z1K1": "Z7",
"Z7K1": "Z13436",
"Z13436K1": "Z17120",
"Z13436K2": {
"Z1K1": "Z18",
"Z18K1": "Z36018K4"
},
"Z13436K3": {
"Z1K1": "Z7",
"Z7K1": "Z31619",
"Z31619K1": {
"Z1K1": "Z18",
"Z18K1": "Z36018K1"
},
"Z31619K2": {
"Z1K1": "Z18",
"Z18K1": "Z36018K2"
}
}
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "gen arithmetic progression (Integer), composition"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
loblsuqydazkjmoadbdsuinml11r0hk
Z36024
0
84919
280255
2026-06-03T17:27:28Z
Vintagecomp
84065
Ajout d'un code Python permettant le calcul récursif d'une matrice
280255
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36024"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36017",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z36017(Z36017K1):\n ##Pour copier proprement une matrice\n def copier_matrice(matrice):\n matrice2=[]\n for ligne in matrice:\n matrice2.append(list(ligne))\n return matrice2\n ##Supprimer la ligne i et la colonne j\n def supprimer_ligne_colonne(matrice,i,j):\n matrice2=copier_matrice(matrice)\n matrice2.pop(i)\n for ligne in matrice2:\n ligne.pop(j)\n return matrice2\n \n determinant=0\n \n #Si matrice vide, retourner 0\n if Z36017K1==[] or Z36017K1==[[]]:\n return 0\n \n ##Vérifier que la matrice soit bien carrée\n assert len(Z36017K1)==len(Z36017K1[0]),\"Cette matrice n'est pas carrée\"\n \n ##Récursion\n if len(Z36017K1)==1:\n #Si la longueur de la matrice est égale à 1, retourner la valeur de celle-ci\n return Z36017[0][0]\n elif len(Z36017K1)==2:\n #Si la longueur de la matrice est égale à 2, retourner son déterminant\n return Z36017K1[0][0]*Z36017K1[1][1]-Z36017K1[0][1]*Z36017K1[1][0]\n else:\n for j in range(len(Z36017K1)):\n determinant+=(-1)**j*Z36017K1[0][j]*Z36017(supprimer_ligne_colonne(Z36017K1,0,j))\n return determinant"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ahu0z6w2i5cp2s4da7gkseeh0b1bxsp
280256
280255
2026-06-03T17:29:06Z
Vintagecomp
84065
280256
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36024"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36017",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z36024(Z36024K1):\n ##Pour copier proprement une matrice\n def copier_matrice(matrice):\n matrice2=[]\n for ligne in matrice:\n matrice2.append(list(ligne))\n return matrice2\n ##Supprimer la ligne i et la colonne j\n def supprimer_ligne_colonne(matrice,i,j):\n matrice2=copier_matrice(matrice)\n matrice2.pop(i)\n for ligne in matrice2:\n ligne.pop(j)\n return matrice2\n \n determinant=0\n \n #Si matrice vide, retourner 0\n if Z36024K1==[] or Z36024K1==[[]]:\n return 0\n \n ##Vérifier que la matrice soit bien carrée\n assert len(Z36024K1)==len(Z36024K1[0]),\"Cette matrice n'est pas carrée\"\n \n ##Récursion\n if len(Z36024K1)==1:\n #Si la longueur de la matrice est égale à 1, retourner la valeur de celle-ci\n return Z36024[0][0]\n elif len(Z36024K1)==2:\n #Si la longueur de la matrice est égale à 2, retourner son déterminant\n return Z36024K1[0][0]*Z36024K1[1][1]-Z36024K1[0][1]*Z36024K1[1][0]\n else:\n for j in range(len(Z36024K1)):\n determinant+=(-1)**j*Z36024K1[0][j]*Z36024(supprimer_ligne_colonne(Z36024K1,0,j))\n return determinant"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
sxclwxr0x5zibv6rzjyrx6m6g7bx2c1
280257
280256
2026-06-03T17:29:31Z
Vintagecomp
84065
280257
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36024"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36017",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z36024(Z36024K1):\n ##Pour copier proprement une matrice\n def copier_matrice(matrice):\n matrice2=[]\n for ligne in matrice:\n matrice2.append(list(ligne))\n return matrice2\n ##Supprimer la ligne i et la colonne j\n def supprimer_ligne_colonne(matrice,i,j):\n matrice2=copier_matrice(matrice)\n matrice2.pop(i)\n for ligne in matrice2:\n ligne.pop(j)\n return matrice2\n \n determinant=0\n \n #Si matrice vide, retourner 0\n if Z36024K1==[] or Z36024K1==[[]]:\n return 0\n \n ##Vérifier que la matrice soit bien carrée\n assert len(Z36024K1)==len(Z36024K1[0]),\"Cette matrice n'est pas carrée\"\n \n ##Récursion\n if len(Z36024K1)==1:\n #Si la longueur de la matrice est égale à 1, retourner la valeur de celle-ci\n return Z36024[0][0]\n elif len(Z36024K1)==2:\n #Si la longueur de la matrice est égale à 2, retourner son déterminant\n return Z36024K1[0][0]*Z36024K1[1][1]-Z36024K1[0][1]*Z36024K1[1][0]\n else:\n for j in range(len(Z36024K1)):\n determinant+=(-1)**j*Z36024K1[0][j]*Z36024(supprimer_ligne_colonne(Z36024K1,0,j))\n return determinant"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Calcul récursif du déterminant d'une matrice carré"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
19xcfsiiwdj7hw41y52f83deecuies4
280258
280257
2026-06-03T17:30:57Z
Vintagecomp
84065
280258
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36024"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36017",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z36024(Z36024K1):\n ##Pour copier proprement une matrice\n def copier_matrice(matrice):\n matrice2=[]\n for ligne in matrice:\n matrice2.append(list(ligne))\n return matrice2\n ##Supprimer la ligne i et la colonne j\n def supprimer_ligne_colonne(matrice,i,j):\n matrice2=copier_matrice(matrice)\n matrice2.pop(i)\n for ligne in matrice2:\n ligne.pop(j)\n return matrice2\n \n determinant=0\n \n #Si matrice vide, retourner 0\n if Z36024K1==[] or Z36024K1==[[]]:\n return 0\n \n ##Vérifier que la matrice soit bien carrée\n assert len(Z36024K1)==len(Z36024K1[0]),\"Cette matrice n'est pas carrée\"\n \n ##Récursion\n if len(Z36024K1)==1:\n #Si la longueur de la matrice est égale à 1, retourner la valeur de celle-ci\n return Z36024[0][0]\n elif len(Z36024K1)==2:\n #Si la longueur de la matrice est égale à 2, retourner son déterminant\n return Z36024K1[0][0]*Z36024K1[1][1]-Z36024K1[0][1]*Z36024K1[1][0]\n else:\n for j in range(len(Z36024K1)):\n determinant+=(-1)**j*Z36024K1[0][j]*Z36024(supprimer_ligne_colonne(Z36024K1,0,j))\n return determinant"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Calcul récursif du déterminant d'une matrice carré"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Recursive calculation of determ of squared matrix"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
g691lryvkrtv9529nr3ae73po3ia8ou
Translations:Wikifunctions:Status updates/2026-05-30/38/de
1198
84920
280263
2026-06-03T19:22:38Z
Ameisenigel
44
Created page with "Das nächste Freiwilligentreffen findet am [$1 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [$2 Google Meet] teilzunehmen."
280263
wikitext
text/x-wiki
Das nächste Freiwilligentreffen findet am [$1 Montag, dem 8. Juni 2026, um 19:30 Uhr MESZ] statt. Wir planen folgende Tagesordnung: Es wird Zeit geben, Fragen zu stellen und alle anstehenden Themen zu besprechen. Sofern die Zeit reicht, werden wir gemeinsam eine Funktion erstellen. Jeder ist herzlich eingeladen, über [$2 Google Meet] teilzunehmen.
tc11g4bisql2zlv6vqzpk0oqvbccakg
Translations:Wikifunctions:Status updates/2026-05-30/39/de
1198
84921
280265
2026-06-03T19:22:45Z
Ameisenigel
44
Created page with "=== Wöchentliche neue Funktionen: 67 neue Funktionen ==="
280265
wikitext
text/x-wiki
=== Wöchentliche neue Funktionen: 67 neue Funktionen ===
bhsbioeq7783ocjb9tgtpil2xevg9z2
Translations:Wikifunctions:Status updates/2026-05-30/40/de
1198
84922
280267
2026-06-03T19:22:49Z
Ameisenigel
44
Created page with "67 neue Funktionen!"
280267
wikitext
text/x-wiki
67 neue Funktionen!
rxdzbv92wq1nmxv8kw6puylwkiq7w6x
Translations:Wikifunctions:Status updates/2026-05-30/41/de
1198
84923
280269
2026-06-03T19:23:03Z
Ameisenigel
44
Created page with "Diese Woche hatten wir 67 neue Funktionen. Hier ist eine unvollständige Liste von Funktionen mit Implementierungen und bestandenen Tests, um einen Eindruck davon zu bekommen, welche Funktionen erstellt wurden. Vielen Dank an alle für ihre Beiträge!"
280269
wikitext
text/x-wiki
Diese Woche hatten wir 67 neue Funktionen. Hier ist eine unvollständige Liste von Funktionen mit Implementierungen und bestandenen Tests, um einen Eindruck davon zu bekommen, welche Funktionen erstellt wurden. Vielen Dank an alle für ihre Beiträge!
fx9lfyl7v6v7xvuwpnsw141kdkzeyk3
Translations:Wikifunctions:Status updates/2026-05-30/42/de
1198
84924
280271
2026-06-03T19:23:34Z
Ameisenigel
44
Created page with "Eine [$1 vollständige Liste aller Funktionen, sortiert nach ihrem Erstellungszeitpunkt], ist verfügbar."
280271
wikitext
text/x-wiki
Eine [$1 vollständige Liste aller Funktionen, sortiert nach ihrem Erstellungszeitpunkt], ist verfügbar.
iqqd8xtxnaqavmvf4afdevp8w7p7bfc
Z36025
0
84925
280319
2026-06-04T02:07:20Z
99of9
1622
280319
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36025"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33842",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33842",
"Z33842K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1134461"
}
],
"Z33842K2": [
"Z1"
],
"Z33842K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33842K4": "Z1517"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Ci\u003EHoofdartikel: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1134461\"\u003EGeografie van Australië\u003C/a\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[nl-be] Hoofdartikel: Geografie van Australië"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
nwraqxl94ymkn4hgcd5b9lie0oq7ob5
280320
280319
2026-06-04T02:08:12Z
99of9
1622
wrap with role metadata
280320
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36025"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33842",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33842",
"Z33842K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q1134461"
}
],
"Z33842K2": [
"Z1"
],
"Z33842K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33842K4": "Z1517"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Cdiv role=\"note\" class=\"hatnote navigation-not-searchable\"\u003E\u003Ci\u003EHoofdartikel: \u003C/i\u003E\u003Ca href=\"https://abstract.wikipedia.org/wiki/Q1134461\"\u003EGeografie van Australië\u003C/a\u003E\u003C/div\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[nl-be] Hoofdartikel: Geografie van Australië"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
9og9dhd2zcfx6f6so0qf1fwu5ptbwf6
Z36026
0
84926
280322
2026-06-04T02:10:28Z
99of9
1622
280322
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36026"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z33842",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z33842",
"Z33842K1": [
"Z6091",
{
"Z1K1": "Z6091",
"Z6091K1": "Q174825"
}
],
"Z33842K2": [
"Z1"
],
"Z33842K3": {
"Z1K1": "Z40",
"Z40K1": "Z42"
},
"Z33842K4": "Z1001"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z877",
"Z877K2": {
"Z1K1": "Z89",
"Z89K1": "\u003Cdiv role=\"note\" class=\"hatnote navigation-not-searchable\"\u003E\u003Cspan dir=\"rtl\"\u003E← \u003Ca href=\"https://abstract.wikipedia.org/wiki/Q174825\"\u003Eتاريخ أستراليا\u003C/a\u003E\u003C/span\u003E\u003C/div\u003E"
}
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "[ar] History of Australia, rtl using default func"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
i7a85m0o2v7hqchpojs0a3wqa3vk3ad
Z36027
0
84927
280325
2026-06-04T07:20:22Z
Sun8908
9804
test for character with no jongseong
280325
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36027"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z12775",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z12775",
"Z12775K1": "가"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": ""
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "가 → \"\""
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
56mh8e3uaos7v3vlvx7aat77tauro39
Z36028
0
84928
280328
2026-06-04T08:03:01Z
Sun8908
9804
280328
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36028"
},
"Z2K2": {
"Z1K1": "Z20",
"Z20K1": "Z12775",
"Z20K2": {
"Z1K1": "Z7",
"Z7K1": "Z12775",
"Z12775K1": "값"
},
"Z20K3": {
"Z1K1": "Z7",
"Z7K1": "Z866",
"Z866K2": "ㅄ"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "값→ㅄ"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
oulckkpvdrzyonlt17hdn3wku4mhdsk
Z36029
0
84929
280332
2026-06-04T08:17:22Z
Sun8908
9804
add new implementation
280332
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36029"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z12775",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z600",
"Z16K2": "function Z12775( Z12775K1 ) {\n\tif (Z12775K1.length !== 1) return '';\n\t\n\tconst index = (Z12775K1.charCodeAt(0) - 44032) % 28;\n\tif (index === 0) return '';\n\t\n\tconst jongseong = [\n\t\t'', 'ㄱ', 'ㄲ', 'ㄳ', 'ㄴ', 'ㄵ', 'ㄶ', 'ㄷ', 'ㄹ', 'ㄺ', 'ㄻ', 'ㄼ', 'ㄽ', 'ㄾ', 'ㄿ', 'ㅀ', 'ㅁ', 'ㅂ', 'ㅄ', 'ㅅ', 'ㅆ', 'ㅇ', 'ㅈ', 'ㅊ', 'ㅋ', 'ㅌ', 'ㅍ', 'ㅎ'\n\t];\n\treturn jongseong[index];\n}"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Korean jongseong, javascript direct mapping"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
ejtfosf8nzzaj3jyqjoi6mmcpqzhxnb
User:Just a random guy on the internet/monobook.css
2
84930
280335
2026-06-04T10:05:14Z
Just a random guy on the internet
84566
Created page with "html { overscroll-behavior: none; } #column-one { margin-top: .8em; } #sidebar .pBody { border-left: none; }"
280335
css
text/css
html {
overscroll-behavior: none;
}
#column-one {
margin-top: .8em;
}
#sidebar .pBody {
border-left: none;
}
7nc35lwjliltrqikcqlf83ee2lslw9e
Z36030
0
84931
280336
2026-06-04T10:09:09Z
Vintagecomp
84065
Ajout d'une fonction sur la méthode de vote Borda
280336
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36030"
},
"Z2K2": {
"Z1K1": "Z8",
"Z8K1": [
"Z17",
{
"Z1K1": "Z17",
"Z17K1": {
"Z1K1": "Z7",
"Z7K1": "Z881",
"Z881K1": "Z6"
},
"Z17K2": "Z36030K1",
"Z17K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Classements données par chaque électeur"
}
]
}
}
],
"Z8K2": "Z6",
"Z8K3": [
"Z20"
],
"Z8K4": [
"Z14"
],
"Z8K5": "Z36030"
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Méthode de vote de Borda"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31"
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11"
]
}
}
mtyhcd88nko7ebd2kd3l7ft4201yrz6
Z36031
0
84932
280337
2026-06-04T10:38:26Z
Vintagecomp
84065
Implémentation de la méthode de vote de Borda
280337
zobject
text/plain
{
"Z1K1": "Z2",
"Z2K1": {
"Z1K1": "Z6",
"Z6K1": "Z36031"
},
"Z2K2": {
"Z1K1": "Z14",
"Z14K1": "Z36030",
"Z14K3": {
"Z1K1": "Z16",
"Z16K1": "Z610",
"Z16K2": "def Z36030(Z36030K1,Z36030K2):\n #Pour obtenir le candidat qui a eu le plus de points une fois le dictionnaire candidat/Nombre de votes constitué\n def maximum(dictionnaire):\n maximum=0\n cle_maximum=\"\"\n for key in dictionnaire:\n if dictionnaire[key]\u003Emaximum:\n maximum=dictionnaire[key]\n cle_maximum=key\n return cle_maximum\n \n #Cas de la liste vide\n if Z36030K1==[] or Z36030K1==[[]]:\n return \"\"\n #Nombre de candidats\n nb_candidats=len(Z36030K2)\n \n #Dictionnaire candidat/votes\n candidats={}\n \n #Collecte des résultats\n for vote in Z36030K1:\n if len(vote)!=nb_candidats:\n return \"ERREUR: Au moins un vote ne présente pas tous les candidats\"\n for i in range(nb_candidats):\n candidat=vote[i]\n if candidat not in Z36030K2:\n return \"Un vote contient un candidat qui n'est pas dans la liste!\"\n if candidat in candidats:\n candidats[candidat]+=(nb_candidats-i)\n else:\n candidats[candidat]=(nb_candidats-i)\n\n return maximum(candidats)\n\n"
}
},
"Z2K3": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Borda's vote method"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Méthode de vote(Borda)"
}
]
},
"Z2K4": {
"Z1K1": "Z32",
"Z32K1": [
"Z31",
{
"Z1K1": "Z31",
"Z31K1": "Z1002",
"Z31K2": [
"Z6",
"Borda",
"Vote method"
]
},
{
"Z1K1": "Z31",
"Z31K1": "Z1004",
"Z31K2": [
"Z6",
"méthode de vote",
"Borda"
]
}
]
},
"Z2K5": {
"Z1K1": "Z12",
"Z12K1": [
"Z11",
{
"Z1K1": "Z11",
"Z11K1": "Z1004",
"Z11K2": "Prend en paramètre une liste de classements et une liste de candidats et retourne le gagnant suivant la méthode de Borda(pour i candidats, chaque vote, pour une position j, rapporte i-j+1 points)"
},
{
"Z1K1": "Z11",
"Z11K1": "Z1002",
"Z11K2": "Takes a list of rankings and list of candidates and returns the winner from Borda's method(for i candidates, each vote earns i-j+1 points for a j position in ranking of the vote)"
}
]
}
}
rz5j21pin3d82w56dlum2alyykalx8k
User:FUNKcioner
2
84933
280338
2026-06-04T11:44:47Z
FUNKcioner
84596
Created page with "How does one keep the FUNK while inside institutions @wikimedia or elsewhere?"
280338
wikitext
text/x-wiki
How does one
keep the FUNK
while inside institutions
@wikimedia or elsewhere?
prgrvz6xjdyvf7b7nqfj8w6m22yxaeu