A Kotlin object (singleton) declares a function with @JvmStatic. What does @JvmStatic actually emit in bytecode, and how does it differ from the default?object Config { @JvmStatic fun load() {} fun reset() {} }