{"results":{"result":{"added-files":{"code-health":9.730290640483434,"old-code-health":0.0,"files":[{"file":"app/src/main/java/org/akanework/gramophone/logic/GramophoneAlbumArtProvider.kt","loc":141,"code-health":9.6882083290695},{"file":"app/src/main/java/org/akanework/gramophone/logic/utils/PlayerListHelp.kt","loc":22,"code-health":10.0}]},"external-review-url":"https://github.com/FoedusProgramme/Gramophone/pull/842","old-code-health":5.555278417745947,"modified-files":{"code-health":4.826002586487275,"old-code-health":5.555278417745947,"files":[{"file":"app/src/main/java/org/akanework/gramophone/logic/GramophonePlaybackService.kt","loc":1454,"old-loc":1306,"code-health":4.097091690613773,"old-code-health":4.826729491574492},{"file":"app/src/main/java/org/akanework/gramophone/ui/components/PlaylistQueueSheet.kt","loc":225,"old-loc":239,"code-health":9.536386775820924,"old-code-health":9.536386775820924}]},"removed-files":{"code-health":0.0,"old-code-health":0.0,"files":[]},"external-review-id":"842","analysis-time":"2026-02-18T03:44:48Z","negative-impact-count":3,"suppressions":{"number-of-types":0,"number-of-files-touched":0,"findings":[]},"affected-hotspots":1,"commits":["352dded758e986d3b4006bfe581e26909f5ee3b4","dab7607cc94b5c180a958e57af77090f3cadb85e"],"is-negative-review":true,"negative-findings":{"number-of-types":3,"number-of-files-touched":1,"findings":[{"why-it-occurs":"Cohesion is a measure of how well the elements in a file belong together. CodeScene measures cohesion using the LCOM4 metric (Lack of Cohesion Measure). With LCOM4, the functions inside a module are related if a) they access the same data members, or b) they call each other. High Cohesion is desirable as it means that all functions are related and likely to represent the same responsibility. Low Cohesion is problematic since it means that the module contains multiple behaviors. Low Cohesion leads to code that's harder to understand, requires more tests, and very often become a coordination magnet for developers.","name":"Low Cohesion","file":"app/src/main/java/org/akanework/gramophone/logic/GramophonePlaybackService.kt","refactoring-examples":[{"diff":"diff --git a/low_cohesion_example.js b/low_cohesion_example.js\nindex 1ae56cf85b..209fc02c73 100644\n--- a/low_cohesion_example.js\n+++ b/low_cohesion_example.js\n@@ -2,8 +2,10 @@\n \n var userLayer = connectUsers(myConnectionProperties);\n \n-var chessEngine = startEngine(gameProperties);\n+// [Refactoring: moved the data related to chess to a new chessGame.js module]\n \n+// The module contains login related functionality that forms one behaviour: all\n+// code is related since it either a) uses the same data, or b) calls the same functions.\n export function login(newUser) {\n   val authenticated = userLayer.authenticate(newUser);\n   traceLoginFor(authenticated);\n@@ -19,11 +21,6 @@ function traceLogin(user) {\n    // ...some code...\n }\n \n-// playChess seems like a very unrelated responsibility.\n-// Should it really be within the same module?\n-\n-export function playChess(loggedInUser) {\n-   var board = chessEngine.newBoard();\n-\n-   return newGameOn(board, loggedInUser);\n-}\n+// [Refactoring: moved playChess to a new chessGame.js module\n+// As a result of this refactoring, the module maintains a\n+// single behavior where all code and data is related: high cohesion.]\n","language":"kotlin","improvement-type":"Low Cohesion"}],"change-level":"warning","is-hotspot?":true,"what-changed":"This module has at least 3 different responsibilities amongst its 51 functions, threshold = 3","how-to-fix":"Look to modularize the code by splitting the file into more cohesive units; functions that belong together should still be located together. A common refactoring is [EXTRACT CLASS](https://refactoring.com/catalog/extractClass.html).","change-type":"introduced"},{"method":"GramophonePlaybackService.onAddMediaItems","why-it-occurs":"A complex conditional is an expression inside a branch such as an <code>if</code>-statmeent which consists of multiple, logical operations. Example: <code>if (x.started() && y.running())</code>.Complex conditionals make the code even harder to read, and contribute to the Complex Method code smell. Encapsulate them.","name":"Complex Conditional","file":"app/src/main/java/org/akanework/gramophone/logic/GramophonePlaybackService.kt","refactoring-examples":[{"diff":"diff --git a/complex_conditional.js b/complex_conditional.js\nindex c43da09584..94259ce874 100644\n--- a/complex_conditional.js\n+++ b/complex_conditional.js\n@@ -1,16 +1,34 @@\n function messageReceived(message, timeReceived) {\n-   // Ignore all messages which aren't from known customers:\n-   if (!message.sender &&\n-       customers.getId(message.name) == null) {\n+   // Refactoring #1: encapsulate the business rule in a\n+   // function. A clear name replaces the need for the comment:\n+   if (!knownCustomer(message)) {\n      log('spam received -- ignoring');\n      return;\n    }\n \n-  // Provide an auto-reply when outside business hours:\n-  if ((timeReceived.getHours() > 17) ||\n-      (timeReceived.getHours() < 8)) {\n+  // Refactoring #2: encapsulate the business rule.\n+  // Again, note how a clear function name replaces the\n+  // need for a code comment:\n+  if (outsideBusinessHours(timeReceived)) {\n     return autoReplyTo(message);\n   }\n \n   pingAgentFor(message);\n+}\n+\n+function outsideBusinessHours(timeReceived) {\n+  // Refactoring #3: replace magic numbers with\n+  // symbols that communicate with the code reader:\n+  const closingHour = 17;\n+  const openingHour = 8;\n+\n+  const hours = timeReceived.getHours();\n+\n+  // Refactoring #4: simple conditional rules can\n+  // be further clarified by introducing a variable:\n+  const afterClosing = hours > closingHour;\n+  const beforeOpening = hours < openingHour;\n+\n+  // Yeah -- look how clear the business rule is now!\n+  return afterClosing || beforeOpening;\n }\n\\ No newline at end of file\n","language":"kotlin","improvement-type":"Complex Conditional"}],"change-level":"warning","is-hotspot?":true,"line":1388,"what-changed":"GramophonePlaybackService.onAddMediaItems has 1 complex conditionals with 2 branches, threshold = 2","how-to-fix":"Apply the [DECOMPOSE CONDITIONAL](https://refactoring.com/catalog/decomposeConditional.html) refactoring so that the complex conditional is encapsulated in a separate function with a good name that captures the business rule. Optionally, for simple expressions, introduce a new variable which holds the result of the complex conditional.","change-type":"introduced"},{"method":"GramophonePlaybackService.onGetChildren","why-it-occurs":"Functions with many arguments indicate either a) low cohesion where the function has too many responsibilities, or b) a missing abstraction that encapsulates those arguments.\n\nThe threshold for the Kotlin language is 4 function arguments.","name":"Excess Number of Function Arguments","file":"app/src/main/java/org/akanework/gramophone/logic/GramophonePlaybackService.kt","refactoring-examples":[{"architectural-component-id":null,"author-name":"Nick","training-data":{"loc-added":"3","loc-deleted":"21","delta-cc-mean":"0.0","delta-cc-total":"0","delta-penalties":"1.0","delta-n-functions":"0","current-file-score":"9.1914109204282"},"author-email":"nift4@protonmail.com","commit-full-message":"nobody ever used it, and nobody ever will use it.","commit-date":"2026-01-03T22:46:51Z","current-rev":"fc1ce7df","filename":"Gramophone/app/src/main/java/org/akanework/gramophone/ui/components/LyricsView.kt","previous-rev":"789a8a8b","commit-title":"Remove Walaoke extension support","language":"Kotlin","id":"ee69b3c88fdb6663c468412eddd279a0b76b7ccf","model-score":0.45,"author-id":null,"project-id":64193,"delta-file-score":0.5577275,"diff":"diff --git a/app/src/main/java/org/akanework/gramophone/ui/components/LyricsView.kt b/app/src/main/java/org/akanework/gramophone/ui/components/LyricsView.kt\nindex b4f21f50..afeb8d1b 100644\n--- a/app/src/main/java/org/akanework/gramophone/ui/components/LyricsView.kt\n+++ b/app/src/main/java/org/akanework/gramophone/ui/components/LyricsView.kt\n@@ -25,8 +25,2 @@ class LyricsView(context: Context, attrs: AttributeSet?) : FrameLayout(context,\n     private var highlightTextColor = 0\n-    private var defaultTextColorM = 0\n-    private var highlightTextColorM = 0\n-    private var defaultTextColorF = 0\n-    private var highlightTextColorF = 0\n-    private var defaultTextColorD = 0\n-    private var highlightTextColorD = 0\n     private var lyrics: SemanticLyrics? = null\n@@ -70,5 +64,3 @@ class LyricsView(context: Context, attrs: AttributeSet?) : FrameLayout(context,\n             newView!!.updateTextColor(\n-                defaultTextColor, highlightTextColor, defaultTextColorM,\n-                highlightTextColorM, defaultTextColorF, highlightTextColorF, defaultTextColorD,\n-                highlightTextColorD\n+                defaultTextColor, highlightTextColor\n             )\n@@ -126,5 +118,3 @@ class LyricsView(context: Context, attrs: AttributeSet?) : FrameLayout(context,\n     fun updateTextColor(\n-        newColor: Int, newHighlightColor: Int, newColorM: Int,\n-        newHighlightColorM: Int, newColorF: Int, newHighlightColorF: Int,\n-        newColorD: Int, newHighlightColorD: Int\n+        newColor: Int, newHighlightColor: Int\n     ) {\n@@ -132,13 +122,5 @@ class LyricsView(context: Context, attrs: AttributeSet?) : FrameLayout(context,\n         highlightTextColor = newHighlightColor\n-        defaultTextColorM = newColorM\n-        highlightTextColorM = newHighlightColorM\n-        defaultTextColorF = newColorF\n-        highlightTextColorF = newHighlightColorF\n-        defaultTextColorD = newColorD\n-        highlightTextColorD = newHighlightColorD\n         adapter?.updateTextColor(defaultTextColor, highlightTextColor)\n         newView?.updateTextColor(\n-            defaultTextColor, highlightTextColor, defaultTextColorM,\n-            highlightTextColorM, defaultTextColorF, highlightTextColorF, defaultTextColorD,\n-            highlightTextColorD\n+            defaultTextColor, highlightTextColor\n         )\n","improvement-type":"Excess Number of Function Arguments"},{"architectural-component-id":null,"author-name":"Light summer","training-data":{"loc-added":"79","loc-deleted":"84","delta-cc-mean":"0.0","delta-cc-total":"0","delta-penalties":"1.0","delta-n-functions":"0","current-file-score":"10.0"},"author-email":"93428659+lightsummer233@users.noreply.github.com","commit-full-message":"","commit-date":"2025-09-20T14:47:22Z","current-rev":"296bf3c","filename":"libPhonograph/libPhonograph/src/main/java/uk/akane/libphonograph/Extensions.kt","previous-rev":"a38b6fe","commit-title":"libPhonograph: Changes from Gramophone","language":"Kotlin","id":"db7b374615169a97822a31080fb78af0fd8d9410","model-score":0.22,"author-id":null,"project-id":64193,"delta-file-score":0.61278176,"diff":"diff --git a/libPhonograph/src/main/java/uk/akane/libphonograph/Extensions.kt b/libPhonograph/src/main/java/uk/akane/libphonograph/Extensions.kt\nindex 97fc6f4..2a44247 100644\n--- a/libPhonograph/src/main/java/uk/akane/libphonograph/Extensions.kt\n+++ b/libPhonograph/src/main/java/uk/akane/libphonograph/Extensions.kt\n@@ -10,2 +10,3 @@ import android.os.Build\n import android.os.Handler\n+import android.os.ext.SdkExtensions\n import androidx.annotation.ChecksSdkIntAtLeast\n@@ -13,5 +14,6 @@ import androidx.annotation.RequiresApi\n import androidx.core.content.ContextCompat\n+import androidx.core.net.toFile\n+import androidx.media3.common.MediaItem\n import kotlinx.coroutines.CoroutineScope\n import kotlinx.coroutines.ExperimentalCoroutinesApi\n-import kotlinx.coroutines.channels.BufferOverflow\n import kotlinx.coroutines.channels.ProducerScope\n@@ -19,13 +21,3 @@ import kotlinx.coroutines.channels.awaitClose\n import kotlinx.coroutines.flow.Flow\n-import kotlinx.coroutines.flow.MutableSharedFlow\n-import kotlinx.coroutines.flow.SharedFlow\n-import kotlinx.coroutines.flow.SharingCommand\n-import kotlinx.coroutines.flow.SharingStarted\n-import kotlinx.coroutines.flow.StateFlow\n import kotlinx.coroutines.flow.callbackFlow\n-import kotlinx.coroutines.flow.collect\n-import kotlinx.coroutines.flow.distinctUntilChanged\n-import kotlinx.coroutines.flow.emptyFlow\n-import kotlinx.coroutines.flow.flatMapLatest\n-import kotlinx.coroutines.flow.map\n import kotlinx.coroutines.launch\n@@ -33,2 +25,4 @@ import java.io.File\n import java.util.concurrent.atomic.AtomicLong\n+import kotlin.contracts.ExperimentalContracts\n+import kotlin.contracts.contract\n import kotlin.experimental.ExperimentalTypeInference\n@@ -61,3 +55,3 @@ abstract class ContentObserverCompat(handler: Handler?) : ContentObserver(handle\n \n-    abstract override fun onChange(selfChange: Boolean, uris: Collection<Uri?>, flags: Int)\n+    abstract override fun onChange(selfChange: Boolean, uris: Collection<Uri>, flags: Int)\n     abstract override fun deliverSelfNotifications(): Boolean\n@@ -70,3 +64,3 @@ internal fun versioningCallbackFlow(\n     val versionTracker = AtomicLong()\n-    return callbackFlow<Long> { block(versionTracker::incrementAndGet) }\n+    return callbackFlow { block(versionTracker::incrementAndGet) }\n }\n@@ -80,5 +74,5 @@ internal fun contentObserverVersioningFlow(\n         val listener = object : ContentObserverCompat(null) {\n-            override fun onChange(selfChange: Boolean, uris: Collection<Uri?>, flags: Int) {\n+            override fun onChange(selfChange: Boolean, uris: Collection<Uri>, flags: Int) {\n                 // TODO can we use those uris and flags for incremental reload at least on newer\n-                //  platform versions?\n+                //  platform versions? completely since R+, Q has no flags, before we get meh deletion handling\n                 scope.launch {\n@@ -92,4 +86,5 @@ internal fun contentObserverVersioningFlow(\n         }\n-        // TODO is content observer reliable if process gets cached? or are we forced to re-register\n-        //  and reload everything when regaining active state since Android 13?\n+        // Notifications may get delayed while we are frozen, but they do not get lost. Though, if\n+        // too many of them pile up, we will get killed for eating too much space with our async\n+        // binder transactions and we will have to restart in a new process later.\n         context.contentResolver.registerContentObserver(uri, notifyForDescendants, listener)\n@@ -102,35 +97,5 @@ internal fun contentObserverVersioningFlow(\n \n-internal fun <T> MutableSharedFlow<T>.collectOtherFlowWhenBeingCollected(\n-    scope: CoroutineScope, flow: Flow<*>\n-): MutableSharedFlow<T> {\n-    scope.launch {\n-        subscriptionCount\n-            .map { count -> count > 0 }\n-            .distinctUntilChanged()\n-            .collect { hasCollectors ->\n-                if (hasCollectors) {\n-                    flow.collect()\n-                }\n-            }\n-    }\n-    return this\n-}\n-\n-// https://bladecoder.medium.com/smarter-shared-kotlin-flows-d6b75fc66754\n-internal inline fun <T> sharedFlow(\n-    scope: CoroutineScope,\n-    replay: Int = 0,\n-    extraBufferCapacity: Int = 0,\n-    onBufferOverflow: BufferOverflow = BufferOverflow.SUSPEND,\n-    producer: (subscriptionCount: StateFlow<Int>) -> Flow<T>\n-): SharedFlow<T> {\n-    val shared = MutableSharedFlow<T>(replay, extraBufferCapacity, onBufferOverflow)\n-    val f = producer(shared.subscriptionCount)\n-    scope.launch { f.collect(shared) }\n-    return shared\n-}\n-\n fun File.toUriCompat(): Uri {\n     val tmp = Uri.fromFile(this)\n-    return if (tmp.scheme != \"file\") // This ONLY happens on Samsung and Ximi devices...\n+    return if (tmp.scheme != \"file\") // weird os bug workaround, found on Samsung and Xiaomi\n         tmp.buildUpon().scheme(\"file\").build()\n@@ -139,39 +104,12 @@ fun File.toUriCompat(): Uri {\n \n-// https://bladecoder.medium.com/smarter-shared-kotlin-flows-d6b75fc66754\n-@OptIn(ExperimentalCoroutinesApi::class)\n-internal fun <T> Flow<T>.flowWhileShared(\n-    subscriptionCount: StateFlow<Int>,\n-    started: SharingStarted\n-): Flow<T> {\n-    return started.command(subscriptionCount)\n-        .distinctUntilChanged()\n-        .flatMapLatest {\n-            when (it) {\n-                SharingCommand.START -> this\n-                SharingCommand.STOP,\n-                SharingCommand.STOP_AND_RESET_REPLAY_CACHE -> emptyFlow()\n-            }\n-        }\n+fun MediaItem.getUri(): Uri? {\n+    return localConfiguration?.uri\n }\n \n-@Suppress(\"NOTHING_TO_INLINE\")\n-internal inline fun Cursor.getColumnIndexOrNull(columnName: String): Int? =\n-    getColumnIndex(columnName).let { if (it == -1) null else it }\n-\n-@ChecksSdkIntAtLeast(api = Build.VERSION_CODES.R)\n-@Suppress(\"NOTHING_TO_INLINE\")\n-internal inline fun hasImprovedMediaStore(): Boolean =\n-    Build.VERSION.SDK_INT >= Build.VERSION_CODES.R\n-\n-@ChecksSdkIntAtLeast(api = Build.VERSION_CODES.R)\n-@Suppress(\"NOTHING_TO_INLINE\")\n-internal inline fun hasScopedStorageV2(): Boolean =\n-    Build.VERSION.SDK_INT >= Build.VERSION_CODES.R\n+fun MediaItem.getFile(): File? {\n+    return getUri()?.toFile()\n+}\n \n-@ChecksSdkIntAtLeast(api = Build.VERSION_CODES.TIRAMISU)\n @Suppress(\"NOTHING_TO_INLINE\")\n-internal inline fun hasScopedStorageWithMediaTypes(): Boolean =\n-    Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU\n-\n-internal fun Context.hasAudioPermission() =\n+inline fun Context.hasAudioPermission() =\n     hasScopedStorageWithMediaTypes() && ContextCompat.checkSelfPermission(\n@@ -190,5 +128,25 @@ internal fun Context.hasAudioPermission() =\n @RequiresApi(Build.VERSION_CODES.TIRAMISU)\n-internal fun Context.hasImagePermission() =\n-    checkSelfPermission(Manifest.permission.READ_MEDIA_IMAGES) ==\n-            PackageManager.PERMISSION_GRANTED\n+fun Context.hasImagePermission() =\n+    checkSelfPermission(Manifest.permission.READ_MEDIA_IMAGES) == PackageManager.PERMISSION_GRANTED\n+\n+@ChecksSdkIntAtLeast(api = Build.VERSION_CODES.R)\n+@Suppress(\"NOTHING_TO_INLINE\")\n+inline fun hasImprovedMediaStore(): Boolean =\n+    Build.VERSION.SDK_INT >= Build.VERSION_CODES.R\n+\n+@Suppress(\"NOTHING_TO_INLINE\")\n+inline fun hasMarkIsFavouriteStatus(): Boolean =\n+    Build.VERSION.SDK_INT >= Build.VERSION_CODES.BAKLAVA ||\n+            (Build.VERSION.SDK_INT >= Build.VERSION_CODES.R &&\n+                    SdkExtensions.getExtensionVersion(Build.VERSION_CODES.R) >= 16)\n+\n+@ChecksSdkIntAtLeast(api = Build.VERSION_CODES.R)\n+@Suppress(\"NOTHING_TO_INLINE\")\n+inline fun hasScopedStorageV2(): Boolean =\n+    Build.VERSION.SDK_INT >= Build.VERSION_CODES.R\n+\n+@ChecksSdkIntAtLeast(api = Build.VERSION_CODES.TIRAMISU)\n+@Suppress(\"NOTHING_TO_INLINE\")\n+inline fun hasScopedStorageWithMediaTypes(): Boolean =\n+    Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU\n \n@@ -216,2 +174,39 @@ internal inline fun Cursor.getIntOrNullIfThrow(index: Int): Int? =\n         null\n-    }\n\\ No newline at end of file\n+    }\n+\n+@Suppress(\"NOTHING_TO_INLINE\")\n+internal inline fun Cursor.getColumnIndexOrNull(columnName: String): Int? =\n+    getColumnIndex(columnName).let { if (it == -1) null else it }\n+\n+// From https://cs.android.com/androidx/platform/frameworks/support/+/androidx-main:compose/ui/ui-util/src/commonMain/kotlin/androidx/compose/ui/util/\n+\n+/**\n+ * Iterates through a [List] using the index and calls [action] for each item. This does not\n+ * allocate an iterator like [Iterable.forEach].\n+ *\n+ * **Do not use for collections that come from public APIs**, since they may not support random\n+ * access in an efficient way, and this method may actually be a lot slower. Only use for\n+ * collections that are created by code we control and are known to support random access.\n+ */\n+@Suppress(\"BanInlineOptIn\")\n+@OptIn(ExperimentalContracts::class)\n+inline fun <T> List<T>.fastForEach(action: (T) -> Unit) {\n+    contract { callsInPlace(action) }\n+    for (index in indices) {\n+        val item = get(index)\n+        action(item)\n+    }\n+}\n+\n+/**\n+ * Returns a list containing all elements that are not null\n+ *\n+ * **Do not use for collections that come from public APIs**, since they may not support random\n+ * access in an efficient way, and this method may actually be a lot slower. Only use for\n+ * collections that are created by code we control and are known to support random access.\n+ */\n+fun <T : Any> List<T?>.fastFilterNotNull(): List<T> {\n+    val target = ArrayList<T>(size)\n+    fastForEach { if ((it) != null) target += (it) }\n+    return target\n+}\n","improvement-type":"Excess Number of Function Arguments"}],"change-level":"warning","is-hotspot?":true,"line":623,"what-changed":"GramophonePlaybackService.onGetChildren has 6 arguments, max arguments = 4","how-to-fix":"Start by investigating the responsibilities of the function. Make sure it doesn't do too many things, in which case it should be split into smaller and more cohesive functions. Consider the refactoring [INTRODUCE PARAMETER OBJECT](https://refactoring.com/catalog/introduceParameterObject.html) to encapsulate arguments that refer to the same logical concept.","change-type":"introduced"}]},"positive-impact-count":1,"repo":"Gramophone","code-health":5.259986817106913,"version":"3.0","authors":["Akane Beneckendorff"],"directives":{"added":[],"removed":[]},"positive-findings":{"number-of-types":1,"number-of-files-touched":1,"findings":[{"name":"Overall Code Complexity","file":"app/src/main/java/org/akanework/gramophone/logic/GramophonePlaybackService.kt","change-type":"improved","change-level":"improvement","is-hotspot?":true,"why-it-occurs":"Overall Code Complexity is measured by the mean cyclomatic complexity across all functions in the file. The lower the number, the better.\n\nCyclomatic complexity is a function level metric that measures the number of logical branches (if-else, loops, etc.). Cyclomatic complexity is a rough complexity measure, but useful as a way of estimating the minimum number of unit tests you would need. As such, prefer functions with low cyclomatic complexity (2-3 branches).","how-to-fix":"You address the overall cyclomatic complexity by a) modularizing the code, and b) abstract away the complexity. Let's look at some examples:\n\nModularizing the Code: Do an X-Ray and inspect the local hotspots. Are there any complex conditional expressions? If yes, then do a [DECOMPOSE CONDITIONAL](https://refactoring.com/catalog/decomposeConditional.html) refactoring. Extract the conditional logic into a separate function and put a good name on that function. This clarifies the intent and makes the original function easier to read. Repeat until all complex conditional expressions have been simplified.\n\n","what-changed":"The mean cyclomatic complexity decreases from 4.59 to 4.27, threshold = 4"}]},"notices":{"number-of-types":0,"number-of-files-touched":0,"findings":[]},"external-review-provider":"GitHub"},"analysistime":"2026-02-18T03:44:48.000Z","project-name":"Gramophone","repository":"https://github.com/FoedusProgramme/Gramophone.git"}}