livepilot 1.9.24 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. package/.claude-plugin/marketplace.json +3 -3
  2. package/AGENTS.md +3 -3
  3. package/CHANGELOG.md +73 -0
  4. package/CONTRIBUTING.md +1 -1
  5. package/README.md +56 -19
  6. package/bin/livepilot.js +87 -0
  7. package/installer/codex.js +147 -0
  8. package/livepilot/.Codex-plugin/plugin.json +2 -2
  9. package/livepilot/.claude-plugin/plugin.json +2 -2
  10. package/livepilot/skills/livepilot-core/SKILL.md +21 -4
  11. package/livepilot/skills/livepilot-core/references/device-knowledge/00-index.md +34 -0
  12. package/livepilot/skills/livepilot-core/references/device-knowledge/automation-as-music.md +204 -0
  13. package/livepilot/skills/livepilot-core/references/device-knowledge/chains-genre.md +173 -0
  14. package/livepilot/skills/livepilot-core/references/device-knowledge/creative-thinking.md +211 -0
  15. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-distortion.md +188 -0
  16. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-space.md +162 -0
  17. package/livepilot/skills/livepilot-core/references/device-knowledge/effects-spectral.md +229 -0
  18. package/livepilot/skills/livepilot-core/references/device-knowledge/instruments-synths.md +243 -0
  19. package/livepilot/skills/livepilot-core/references/overview.md +13 -9
  20. package/livepilot/skills/livepilot-core/references/sample-manipulation.md +724 -0
  21. package/livepilot/skills/livepilot-core/references/sound-design-deep.md +140 -0
  22. package/livepilot/skills/livepilot-devices/SKILL.md +16 -2
  23. package/livepilot/skills/livepilot-evaluation/references/capability-modes.md +1 -1
  24. package/livepilot/skills/livepilot-release/SKILL.md +5 -5
  25. package/livepilot/skills/livepilot-sample-engine/SKILL.md +104 -0
  26. package/livepilot/skills/livepilot-sample-engine/references/sample-critics.md +87 -0
  27. package/livepilot/skills/livepilot-sample-engine/references/sample-philosophy.md +51 -0
  28. package/livepilot/skills/livepilot-sample-engine/references/sample-techniques.md +131 -0
  29. package/livepilot/skills/livepilot-sound-design-engine/SKILL.md +45 -0
  30. package/livepilot/skills/livepilot-wonder/SKILL.md +15 -0
  31. package/livepilot.mcpb +0 -0
  32. package/m4l_device/livepilot_bridge.js +1 -1
  33. package/manifest.json +2 -2
  34. package/mcp_server/__init__.py +1 -1
  35. package/mcp_server/atlas/__init__.py +357 -0
  36. package/mcp_server/atlas/device_atlas.json +44067 -0
  37. package/mcp_server/atlas/enrichments/__init__.py +111 -0
  38. package/mcp_server/atlas/enrichments/audio_effects/auto_filter.yaml +162 -0
  39. package/mcp_server/atlas/enrichments/audio_effects/beat_repeat.yaml +183 -0
  40. package/mcp_server/atlas/enrichments/audio_effects/channel_eq.yaml +126 -0
  41. package/mcp_server/atlas/enrichments/audio_effects/chorus_ensemble.yaml +149 -0
  42. package/mcp_server/atlas/enrichments/audio_effects/color_limiter.yaml +109 -0
  43. package/mcp_server/atlas/enrichments/audio_effects/compressor.yaml +159 -0
  44. package/mcp_server/atlas/enrichments/audio_effects/convolution_reverb.yaml +143 -0
  45. package/mcp_server/atlas/enrichments/audio_effects/convolution_reverb_pro.yaml +178 -0
  46. package/mcp_server/atlas/enrichments/audio_effects/delay.yaml +151 -0
  47. package/mcp_server/atlas/enrichments/audio_effects/drum_buss.yaml +142 -0
  48. package/mcp_server/atlas/enrichments/audio_effects/dynamic_tube.yaml +147 -0
  49. package/mcp_server/atlas/enrichments/audio_effects/echo.yaml +167 -0
  50. package/mcp_server/atlas/enrichments/audio_effects/eq_eight.yaml +148 -0
  51. package/mcp_server/atlas/enrichments/audio_effects/eq_three.yaml +121 -0
  52. package/mcp_server/atlas/enrichments/audio_effects/erosion.yaml +103 -0
  53. package/mcp_server/atlas/enrichments/audio_effects/filter_delay.yaml +173 -0
  54. package/mcp_server/atlas/enrichments/audio_effects/gate.yaml +130 -0
  55. package/mcp_server/atlas/enrichments/audio_effects/gated_delay.yaml +133 -0
  56. package/mcp_server/atlas/enrichments/audio_effects/glue_compressor.yaml +142 -0
  57. package/mcp_server/atlas/enrichments/audio_effects/grain_delay.yaml +141 -0
  58. package/mcp_server/atlas/enrichments/audio_effects/hybrid_reverb.yaml +160 -0
  59. package/mcp_server/atlas/enrichments/audio_effects/limiter.yaml +97 -0
  60. package/mcp_server/atlas/enrichments/audio_effects/multiband_dynamics.yaml +174 -0
  61. package/mcp_server/atlas/enrichments/audio_effects/overdrive.yaml +119 -0
  62. package/mcp_server/atlas/enrichments/audio_effects/pedal.yaml +145 -0
  63. package/mcp_server/atlas/enrichments/audio_effects/phaser_flanger.yaml +161 -0
  64. package/mcp_server/atlas/enrichments/audio_effects/redux.yaml +114 -0
  65. package/mcp_server/atlas/enrichments/audio_effects/reverb.yaml +190 -0
  66. package/mcp_server/atlas/enrichments/audio_effects/roar.yaml +159 -0
  67. package/mcp_server/atlas/enrichments/audio_effects/saturator.yaml +146 -0
  68. package/mcp_server/atlas/enrichments/audio_effects/shifter.yaml +154 -0
  69. package/mcp_server/atlas/enrichments/audio_effects/spectral_resonator.yaml +141 -0
  70. package/mcp_server/atlas/enrichments/audio_effects/spectral_time.yaml +164 -0
  71. package/mcp_server/atlas/enrichments/audio_effects/vector_delay.yaml +140 -0
  72. package/mcp_server/atlas/enrichments/audio_effects/vinyl_distortion.yaml +141 -0
  73. package/mcp_server/atlas/enrichments/instruments/analog.yaml +222 -0
  74. package/mcp_server/atlas/enrichments/instruments/bass.yaml +202 -0
  75. package/mcp_server/atlas/enrichments/instruments/collision.yaml +150 -0
  76. package/mcp_server/atlas/enrichments/instruments/drift.yaml +167 -0
  77. package/mcp_server/atlas/enrichments/instruments/electric.yaml +137 -0
  78. package/mcp_server/atlas/enrichments/instruments/emit.yaml +163 -0
  79. package/mcp_server/atlas/enrichments/instruments/meld.yaml +164 -0
  80. package/mcp_server/atlas/enrichments/instruments/operator.yaml +197 -0
  81. package/mcp_server/atlas/enrichments/instruments/poli.yaml +192 -0
  82. package/mcp_server/atlas/enrichments/instruments/sampler.yaml +218 -0
  83. package/mcp_server/atlas/enrichments/instruments/simpler.yaml +217 -0
  84. package/mcp_server/atlas/enrichments/instruments/tension.yaml +156 -0
  85. package/mcp_server/atlas/enrichments/instruments/tree_tone.yaml +162 -0
  86. package/mcp_server/atlas/enrichments/instruments/vector_fm.yaml +165 -0
  87. package/mcp_server/atlas/enrichments/instruments/vector_grain.yaml +166 -0
  88. package/mcp_server/atlas/enrichments/instruments/wavetable.yaml +162 -0
  89. package/mcp_server/atlas/enrichments/midi_effects/arpeggiator.yaml +156 -0
  90. package/mcp_server/atlas/enrichments/midi_effects/bouncy_notes.yaml +93 -0
  91. package/mcp_server/atlas/enrichments/midi_effects/chord.yaml +147 -0
  92. package/mcp_server/atlas/enrichments/midi_effects/melodic_steps.yaml +97 -0
  93. package/mcp_server/atlas/enrichments/midi_effects/note_echo.yaml +108 -0
  94. package/mcp_server/atlas/enrichments/midi_effects/note_length.yaml +97 -0
  95. package/mcp_server/atlas/enrichments/midi_effects/pitch.yaml +76 -0
  96. package/mcp_server/atlas/enrichments/midi_effects/random.yaml +117 -0
  97. package/mcp_server/atlas/enrichments/midi_effects/rhythmic_steps.yaml +103 -0
  98. package/mcp_server/atlas/enrichments/midi_effects/scale.yaml +83 -0
  99. package/mcp_server/atlas/enrichments/midi_effects/step_arp.yaml +112 -0
  100. package/mcp_server/atlas/enrichments/midi_effects/velocity.yaml +119 -0
  101. package/mcp_server/atlas/enrichments/utility/amp.yaml +159 -0
  102. package/mcp_server/atlas/enrichments/utility/cabinet.yaml +109 -0
  103. package/mcp_server/atlas/enrichments/utility/corpus.yaml +150 -0
  104. package/mcp_server/atlas/enrichments/utility/resonators.yaml +131 -0
  105. package/mcp_server/atlas/enrichments/utility/spectrum.yaml +63 -0
  106. package/mcp_server/atlas/enrichments/utility/tuner.yaml +51 -0
  107. package/mcp_server/atlas/enrichments/utility/utility.yaml +136 -0
  108. package/mcp_server/atlas/enrichments/utility/vocoder.yaml +160 -0
  109. package/mcp_server/atlas/scanner.py +236 -0
  110. package/mcp_server/atlas/tools.py +224 -0
  111. package/mcp_server/composer/__init__.py +1 -0
  112. package/mcp_server/composer/engine.py +452 -0
  113. package/mcp_server/composer/layer_planner.py +427 -0
  114. package/mcp_server/composer/prompt_parser.py +329 -0
  115. package/mcp_server/composer/tools.py +201 -0
  116. package/mcp_server/connection.py +53 -8
  117. package/mcp_server/corpus/__init__.py +377 -0
  118. package/mcp_server/device_forge/__init__.py +1 -0
  119. package/mcp_server/device_forge/builder.py +377 -0
  120. package/mcp_server/device_forge/models.py +142 -0
  121. package/mcp_server/device_forge/templates.py +483 -0
  122. package/mcp_server/device_forge/tools.py +162 -0
  123. package/mcp_server/m4l_bridge.py +1 -0
  124. package/mcp_server/preview_studio/tools.py +4 -4
  125. package/mcp_server/runtime/capability_probe.py +21 -2
  126. package/mcp_server/runtime/execution_router.py +4 -0
  127. package/mcp_server/runtime/live_version.py +102 -0
  128. package/mcp_server/runtime/remote_commands.py +9 -4
  129. package/mcp_server/runtime/tools.py +18 -4
  130. package/mcp_server/sample_engine/__init__.py +1 -0
  131. package/mcp_server/sample_engine/analyzer.py +216 -0
  132. package/mcp_server/sample_engine/critics.py +390 -0
  133. package/mcp_server/sample_engine/models.py +193 -0
  134. package/mcp_server/sample_engine/moves.py +127 -0
  135. package/mcp_server/sample_engine/planner.py +186 -0
  136. package/mcp_server/sample_engine/sources.py +540 -0
  137. package/mcp_server/sample_engine/techniques.py +908 -0
  138. package/mcp_server/sample_engine/tools.py +442 -0
  139. package/mcp_server/semantic_moves/__init__.py +3 -0
  140. package/mcp_server/semantic_moves/device_creation_moves.py +237 -0
  141. package/mcp_server/semantic_moves/sample_compilers.py +372 -0
  142. package/mcp_server/server.py +51 -0
  143. package/mcp_server/sound_design/critics.py +89 -1
  144. package/mcp_server/splice_client/__init__.py +1 -0
  145. package/mcp_server/splice_client/client.py +347 -0
  146. package/mcp_server/splice_client/models.py +96 -0
  147. package/mcp_server/splice_client/protos/__init__.py +1 -0
  148. package/mcp_server/splice_client/protos/app_pb2.py +319 -0
  149. package/mcp_server/splice_client/protos/app_pb2.pyi +1153 -0
  150. package/mcp_server/splice_client/protos/app_pb2_grpc.py +1946 -0
  151. package/mcp_server/tools/arrangement.py +69 -0
  152. package/mcp_server/tools/automation.py +15 -2
  153. package/mcp_server/tools/devices.py +117 -6
  154. package/mcp_server/tools/notes.py +37 -4
  155. package/mcp_server/wonder_mode/diagnosis.py +5 -0
  156. package/mcp_server/wonder_mode/engine.py +85 -1
  157. package/package.json +12 -2
  158. package/remote_script/LivePilot/__init__.py +8 -1
  159. package/remote_script/LivePilot/arrangement.py +114 -0
  160. package/remote_script/LivePilot/browser.py +56 -1
  161. package/remote_script/LivePilot/devices.py +236 -6
  162. package/remote_script/LivePilot/mixing.py +8 -3
  163. package/remote_script/LivePilot/server.py +5 -1
  164. package/remote_script/LivePilot/transport.py +3 -0
  165. package/remote_script/LivePilot/version_detect.py +78 -0
@@ -0,0 +1,319 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: app.proto
5
+ # Protobuf Python Version: 6.31.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 6,
15
+ 31,
16
+ 1,
17
+ '',
18
+ 'app.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\tapp.proto\x12\x05proto\"\x0f\n\rLogoutRequest\"\x10\n\x0eLogoutResponse\"\x16\n\x14ValidateLoginRequest\"2\n\x15ValidateLoginResponse\x12\x19\n\x04User\x18\x01 \x01(\x0b\x32\x0b.proto.User\"\x13\n\x11GetSessionRequest\"/\n\x12GetSessionResponse\x12\x19\n\x04\x41uth\x18\x01 \x01(\x0b\x32\x0b.proto.Auth\"\\\n\x04\x41uth\x12\r\n\x05Token\x18\x01 \x01(\t\x12\x0e\n\x06SubKey\x18\x02 \x01(\t\x12\x12\n\nSubChannel\x18\x03 \x01(\t\x12!\n\x08\x41uthType\x18\x04 \x01(\x0e\x32\x0f.proto.AuthType\"\x8c\x02\n\x04User\x12\n\n\x02ID\x18\x01 \x01(\x04\x12\x10\n\x08Username\x18\x02 \x01(\t\x12\x0b\n\x03\x42io\x18\x03 \x01(\t\x12\x11\n\tAvatarURL\x18\x04 \x01(\t\x12\x10\n\x08Location\x18\x05 \x01(\t\x12\r\n\x05\x45mail\x18\x06 \x01(\t\x12\x14\n\x0cSoundsStatus\x18\x07 \x01(\t\x12\x0f\n\x07\x43redits\x18\x08 \x01(\x04\x12+\n\x08\x46\x65\x61tures\x18\t \x03(\x0b\x32\x19.proto.User.FeaturesEntry\x12\x12\n\nSoundsPlan\x18\n \x01(\x05\x12\x0c\n\x04UUID\x18\x0b \x01(\t\x1a/\n\rFeaturesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x08:\x02\x38\x01\"G\n\x0fLoggedInRequest\x12\x19\n\x04\x41uth\x18\x01 \x01(\x0b\x32\x0b.proto.Auth\x12\x19\n\x04User\x18\x02 \x01(\x0b\x32\x0b.proto.User\"\x12\n\x10LoggedInResponse\"M\n\x15UpdatedSessionRequest\x12\x19\n\x04\x61uth\x18\x01 \x01(\x0b\x32\x0b.proto.Auth\x12\x19\n\x04user\x18\x02 \x01(\x0b\x32\x0b.proto.User\"\x18\n\x16UpdatedSessionResponse\"\'\n\x12ListSamplesRequest\x12\x11\n\tNextToken\x18\x01 \x01(\x05\"H\n\x13ListSamplesResponse\x12\x11\n\tNextToken\x18\x01 \x01(\x05\x12\x1e\n\x07Samples\x18\x02 \x03(\x0b\x32\r.proto.Sample\"K\n\x11SampleInfoRequest\x12\x11\n\tLocalPath\x18\x01 \x01(\t\x12\x10\n\x08\x46ileHash\x18\x02 \x01(\t\x12\x11\n\tAudioHash\x18\x03 \x01(\t\"3\n\x12SampleInfoResponse\x12\x1d\n\x06Sample\x18\x01 \x01(\x0b\x32\r.proto.Sample\"C\n\x1aImportedSampleInfoResponse\x12%\n\x06Sample\x18\x01 \x01(\x0b\x32\x15.proto.ImportedSample\"+\n\x16ListSamplePacksRequest\x12\x11\n\tNextToken\x18\x01 \x01(\x05\"T\n\x17ListSamplePacksResponse\x12\x11\n\tNextToken\x18\x01 \x01(\x05\x12&\n\x0bSamplePacks\x18\x02 \x03(\x0b\x32\x11.proto.SamplePack\")\n\x15\x44ownloadSampleRequest\x12\x10\n\x08\x46ileHash\x18\x01 \x01(\t\"\x18\n\x16\x44ownloadSampleResponse\"\x13\n\x11SyncSoundsRequest\"\x14\n\x12SyncSoundsResponse\"/\n\x1b\x43\x61ncelSampleDownloadRequest\x12\x10\n\x08\x46ileHash\x18\x01 \x01(\t\"\x1e\n\x1c\x43\x61ncelSampleDownloadResponse\"\xd8\x03\n\x13SearchSampleRequest\x12\r\n\x05Liked\x18\x01 \x01(\x08\x12<\n\tPurchased\x18\x02 \x01(\x0e\x32).proto.SearchSampleRequest.PurchasedTypes\x12\x1c\n\x14MatchingTagsAndPacks\x18\x03 \x01(\x08\x12\x12\n\nSearchTerm\x18\x04 \x01(\t\x12\x16\n\x0e\x43ollectionUUID\x18\x05 \x01(\t\x12\x0e\n\x06SortFn\x18\x06 \x01(\t\x12\x0e\n\x06\x42PMMin\x18\x07 \x01(\x05\x12\x0e\n\x06\x42PMMax\x18\x08 \x01(\x05\x12\x0c\n\x04Tags\x18\t \x03(\t\x12\x10\n\x08\x46ileHash\x18\n \x01(\t\x12\r\n\x05Genre\x18\x0b \x01(\t\x12\x12\n\nInstrument\x18\x0c \x01(\t\x12\x0b\n\x03Key\x18\r \x01(\t\x12\x12\n\nSampleType\x18\x0e \x01(\t\x12\x10\n\x08PackUUID\x18\x0f \x01(\t\x12\x11\n\tChordType\x18\x10 \x01(\t\x12\x0f\n\x07PerPage\x18\x11 \x01(\x05\x12\x0c\n\x04Page\x18\x12 \x01(\x05\x12\x12\n\nRandomSeed\x18\x13 \x01(\t\">\n\x0ePurchasedTypes\x12\x07\n\x03\x41ll\x10\x00\x12\x11\n\rOnlyPurchased\x10\x01\x12\x10\n\x0cNotPurchased\x10\x02\"\xed\x01\n\x14SearchSampleResponse\x12\x11\n\tTotalHits\x18\x01 \x01(\x05\x12\x1e\n\x07Samples\x18\x02 \x03(\x0b\x32\r.proto.Sample\x12(\n\rMatchingPacks\x18\x03 \x03(\x0b\x32\x11.proto.SamplePack\x12\x43\n\x0cMatchingTags\x18\x04 \x03(\x0b\x32-.proto.SearchSampleResponse.MatchingTagsEntry\x1a\x33\n\x11MatchingTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"\xdf\x03\n\x06Sample\x12\x11\n\tLocalPath\x18\x01 \x01(\t\x12\x10\n\x08\x46ileHash\x18\x02 \x01(\t\x12\x10\n\x08\x46ilename\x18\x03 \x01(\t\x12\x11\n\tAudioHash\x18\x04 \x01(\t\x12\x14\n\x0cModifiedTime\x18\x05 \x01(\x03\x12\x11\n\tIsPremium\x18\x06 \x01(\x08\x12\x10\n\x08\x41udioKey\x18\x08 \x01(\t\x12\x0b\n\x03\x42PM\x18\t \x01(\x03\x12\x11\n\tChordType\x18\n \x01(\t\x12\x0b\n\x03\x44ir\x18\x0b \x01(\t\x12\x10\n\x08\x44uration\x18\x0c \x01(\x03\x12\r\n\x05Genre\x18\r \x01(\t\x12\x12\n\nPreviewURL\x18\x0e \x01(\t\x12\r\n\x05Price\x18\x0f \x01(\x03\x12\x14\n\x0cProviderName\x18\x10 \x01(\t\x12\x14\n\x0cProviderUuid\x18\x11 \x01(\t\x12\x19\n\x11ProviderPermalink\x18\x12 \x01(\t\x12\x12\n\nSampleType\x18\x13 \x01(\t\x12\x0c\n\x04Tags\x18\x14 \x03(\t\x12\x13\n\x0bWaveformURL\x18\x15 \x01(\t\x12\x11\n\tPublished\x18\x16 \x01(\x08\x12\x12\n\nPopularity\x18\x17 \x01(\x03\x12\x13\n\x0bPublishedAt\x18\x18 \x01(\x03\x12\x13\n\x0bPurchasedAt\x18\x19 \x01(\x03\x12\x10\n\x08PackUUID\x18\x1a \x01(\t\"\x83\x02\n\x0eImportedSample\x12\x11\n\tLocalPath\x18\x01 \x01(\t\x12\x10\n\x08\x46ilename\x18\x02 \x01(\t\x12\x11\n\tAudioHash\x18\x03 \x01(\t\x12\x11\n\tIsPremium\x18\x04 \x01(\x08\x12\x10\n\x08\x41udioKey\x18\x05 \x01(\t\x12\x0b\n\x03\x42PM\x18\x06 \x01(\x03\x12\x11\n\tChordType\x18\x07 \x01(\t\x12\x0b\n\x03\x44ir\x18\x08 \x01(\t\x12\x10\n\x08\x44uration\x18\t \x01(\x03\x12\r\n\x05Genre\x18\n \x01(\t\x12\x12\n\nSampleType\x18\x0b \x01(\t\x12\x0c\n\x04Tags\x18\x0c \x03(\t\x12\x10\n\x08PackUUID\x18\r \x01(\t\x12\x12\n\nFileExists\x18\x0e \x01(\x08\"r\n\nSamplePack\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0c\n\x04Name\x18\x02 \x01(\t\x12\x10\n\x08\x43overURL\x18\x03 \x01(\t\x12\r\n\x05Genre\x18\x04 \x01(\t\x12\x11\n\tPermalink\x18\x05 \x01(\t\x12\x14\n\x0cProviderName\x18\x06 \x01(\t\"R\n\nPCMWavFile\x12\x0c\n\x04Path\x18\x01 \x01(\t\x12\x10\n\x08\x43hannels\x18\x02 \x01(\x05\x12\x12\n\nSampleRate\x18\x03 \x01(\x05\x12\x10\n\x08\x42itDepth\x18\x04 \x01(\x05\"#\n\x13\x43onvertToWavRequest\x12\x0c\n\x04Path\x18\x01 \x01(\t\":\n\x14\x43onvertToWavResponse\x12\"\n\x07WavFile\x18\x01 \x01(\x0b\x32\x11.proto.PCMWavFile\"\x14\n\x12ListPluginsRequest\"5\n\x13ListPluginsResponse\x12\x1e\n\x07Plugins\x18\x01 \x03(\x0b\x32\r.proto.Plugin\"\x17\n\x15RefreshPluginsRequest\"\x18\n\x16RefreshPluginsResponse\"2\n\x14InstallPluginRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0c\n\x04Name\x18\x02 \x01(\t\"\x17\n\x15InstallPluginResponse\"B\n\x13UpdatePluginRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0c\n\x04Name\x18\x02 \x01(\t\x12\x0f\n\x07Version\x18\x03 \x01(\t\"\x16\n\x14UpdatePluginResponse\"+\n\x1b\x43\x61ncelPluginDownloadRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\"\x1e\n\x1c\x43\x61ncelPluginDownloadResponse\"\xe7\x01\n\x06Plugin\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0c\n\x04Name\x18\x02 \x01(\t\x12\x0e\n\x06\x41uthor\x18\x03 \x01(\t\x12\x0f\n\x07Version\x18\x04 \x01(\t\x12\r\n\x05Image\x18\x05 \x01(\t\x12\x12\n\nPlanStatus\x18\x06 \x01(\t\x12\x13\n\x0bIsInstalled\x18\x07 \x01(\x08\x12\x18\n\x10InstallationPath\x18\x08 \x01(\t\x12\x12\n\nInstallURL\x18\t \x01(\t\x12\x11\n\tUpdateURL\x18\n \x01(\t\x12\x15\n\rUpdateVersion\x18\x0b \x01(\t\x12\x10\n\x08IsSplice\x18\x0c \x01(\x08\"\xff\x01\n\x0fUserPreferences\x12\x18\n\x10SpliceFolderPath\x18\x01 \x01(\t\x12\x1f\n\x17SaveOutsideSpliceFolder\x18\x02 \x01(\x08\x12\x1f\n\x17SampleImportDirectories\x18\x07 \x03(\t\x12\x34\n\x07Presets\x18\x08 \x03(\x0b\x32#.proto.UserPreferences.PresetsEntry\x1aH\n\x0cPresetsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\'\n\x05value\x18\x02 \x01(\x0b\x32\x18.proto.PresetConfigEntry:\x02\x38\x01J\x04\x08\x03\x10\x04J\x04\x08\x04\x10\x05J\x04\x08\x05\x10\x06\"!\n\x11PresetConfigEntry\x12\x0c\n\x04Path\x18\x01 \x01(\t\"\x18\n\x16UserPreferencesRequest\"F\n\x17UserPreferencesResponse\x12+\n\x0bPreferences\x18\x01 \x01(\x0b\x32\x16.proto.UserPreferences\"K\n\x1cUpdateUserPreferencesRequest\x12+\n\x0bPreferences\x18\x01 \x01(\x0b\x32\x16.proto.UserPreferences\"\x1f\n\x1dUpdateUserPreferencesResponse\"\x15\n\x13\x44ownloadLogsRequest\"(\n\x14\x44ownloadLogsResponse\x12\x10\n\x08\x46ilename\x18\x01 \x01(\t\".\n\x1a\x43opyFileToClipboardRequest\x12\x10\n\x08\x46ilename\x18\x01 \x01(\t\"\x1d\n\x1b\x43opyFileToClipboardResponse\"\x18\n\x16ProjectDiskScanRequest\"\x19\n\x17ProjectDiskScanResponse\"\x1e\n\x1c\x43\x61ncelProjectDiskScanRequest\"\x1f\n\x1d\x43\x61ncelProjectDiskScanResponse\"\x11\n\x0fShutdownRequest\"\x12\n\x10ShutdownResponse\"\x1b\n\x19\x43onvertSoundsTrialRequest\"\x1c\n\x1a\x43onvertSoundsTrialResponse\"#\n\x13SendFeedbackRequest\x12\x0c\n\x04Text\x18\x01 \x01(\t\"\x16\n\x14SendFeedbackResponse\"/\n\x1cInstallAppFromChannelRequest\x12\x0f\n\x07\x43hannel\x18\x01 \x01(\t\"\x1f\n\x1dInstallAppFromChannelResponse\"#\n\x05\x45vent\x12\x0c\n\x04Name\x18\x01 \x01(\t\x12\x0c\n\x04\x44\x61ta\x18\x02 \x01(\t\"+\n\x1bImportedAddDirectoryRequest\x12\x0c\n\x04Path\x18\x01 \x01(\t\"\x1e\n\x1cImportedAddDirectoryResponse\"\xbc\x01\n\x1cImportedSearchSamplesRequest\x12\x0c\n\x04Text\x18\x01 \x01(\t\x12\x0c\n\x04Tags\x18\x02 \x03(\t\x12\x10\n\x08\x41udioKey\x18\x03 \x01(\t\x12\x11\n\tChordType\x18\x04 \x01(\t\x12\x1f\n\x04Loop\x18\x05 \x01(\x0e\x32\x11.proto.SampleType\x12\x0e\n\x06MinBPM\x18\x06 \x01(\x05\x12\x0e\n\x06MaxBPM\x18\x07 \x01(\x05\x12\x0c\n\x04\x46rom\x18\x08 \x01(\x05\x12\x0c\n\x04Size\x18\t \x01(\x05\"\xd7\x01\n\x1bImportedListSamplesResponse\x12&\n\x07Results\x18\x01 \x03(\x0b\x32\x15.proto.ImportedSample\x12:\n\x04Tags\x18\x02 \x03(\x0b\x32,.proto.ImportedListSamplesResponse.TagsEntry\x12\x14\n\x0cTotalResults\x18\x03 \x01(\x05\x12\x11\n\tNextToken\x18\x04 \x01(\x05\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"8\n\x1aImportedListSamplesRequest\x12\x0c\n\x04\x46rom\x18\x01 \x01(\x05\x12\x0c\n\x04Size\x18\x02 \x01(\x05\"6\n!ImportedCancelAddDirectoryRequest\x12\x11\n\tDirectory\x18\x01 \x01(\t\"$\n\"ImportedCancelAddDirectoryResponse\"8\n#ImportedDeleteSampleMetadataRequest\x12\x11\n\tLocalPath\x18\x01 \x01(\t\"&\n$ImportedDeleteSampleMetadataResponse\"5\n\x17ImportedListTagsRequest\x12\x0c\n\x04\x46rom\x18\x01 \x01(\x05\x12\x0c\n\x04Size\x18\x02 \x01(\x05\"\x93\x01\n\x18ImportedListTagsResponse\x12\x37\n\x04Tags\x18\x01 \x03(\x0b\x32).proto.ImportedListTagsResponse.TagsEntry\x12\x11\n\tNextToken\x18\x02 \x01(\x05\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\"%\n\x15SamplePackInfoRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\"9\n\x16SamplePackInfoResponse\x12\x1f\n\x04Pack\x18\x01 \x01(\x0b\x32\x11.proto.SamplePack\"5\n#ImportedMatchSetPausedStatusRequest\x12\x0e\n\x06Paused\x18\x01 \x01(\x08\"&\n$ImportedMatchSetPausedStatusResponse\"!\n\x1fImportedMatchGetProgressRequest\"R\n ImportedMatchGetProgressResponse\x12\r\n\x05total\x18\x01 \x01(\x05\x12\x0f\n\x07\x63urrent\x18\x02 \x01(\x05\x12\x0e\n\x06status\x18\x03 \x01(\t\"\x17\n\x15ImportedRescanRequest\"\x18\n\x16ImportedRescanResponse\"$\n\x14\x43ollectionAddRequest\x12\x0c\n\x04Name\x18\x01 \x01(\t\">\n\x15\x43ollectionAddResponse\x12%\n\nCollection\x18\x01 \x01(\x0b\x32\x11.proto.Collection\"7\n\x16\x43ollectionsListRequest\x12\x0c\n\x04Page\x18\x01 \x01(\x05\x12\x0f\n\x07PerPage\x18\x02 \x01(\x05\"U\n\x17\x43ollectionsListResponse\x12\x12\n\nTotalCount\x18\x01 \x01(\x05\x12&\n\x0b\x43ollections\x18\x02 \x03(\x0b\x32\x11.proto.Collection\":\n\x19\x43ollectionAddItemsRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0f\n\x07Samples\x18\x02 \x03(\t\"\x1c\n\x1a\x43ollectionAddItemsResponse\"=\n\x1c\x43ollectionDeleteItemsRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0f\n\x07Samples\x18\x02 \x03(\t\"\x1f\n\x1d\x43ollectionDeleteItemsResponse\"s\n\x17\x43ollectionUpdateRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0c\n\x04Name\x18\x02 \x01(\t\x12\x13\n\x0b\x44\x65scription\x18\x03 \x01(\t\x12\'\n\x06\x41\x63\x63\x65ss\x18\x04 \x01(\x0e\x32\x17.proto.CollectionAccess\"A\n\x18\x43ollectionUpdateResponse\x12%\n\nCollection\x18\x01 \x01(\x0b\x32\x11.proto.Collection\"\'\n\x17\x43ollectionDeleteRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\"\x1a\n\x18\x43ollectionDeleteResponse\"D\n\x11\x43ollectionCreator\x12\n\n\x02ID\x18\x01 \x01(\x05\x12\x10\n\x08Username\x18\x02 \x01(\t\x12\x11\n\tAvatarURL\x18\x03 \x01(\t\"\xd2\x02\n\nCollection\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0c\n\x04Name\x18\x02 \x01(\t\x12\x13\n\x0b\x44\x65scription\x18\x03 \x01(\t\x12\'\n\x06\x41\x63\x63\x65ss\x18\x04 \x01(\x0e\x32\x17.proto.CollectionAccess\x12\x11\n\tPermalink\x18\x05 \x01(\t\x12\x10\n\x08\x43overURL\x18\x06 \x01(\t\x12\x13\n\x0bSampleCount\x18\x07 \x01(\x05\x12\x13\n\x0bPresetCount\x18\x08 \x01(\x05\x12\x11\n\tPackCount\x18\t \x01(\x05\x12\x19\n\x11SubscriptionCount\x18\n \x01(\x05\x12\x1c\n\x14\x43reatedByCurrentUser\x18\x0b \x01(\x08\x12)\n\x07\x43reator\x18\x0c \x01(\x0b\x32\x18.proto.CollectionCreator\x12\x11\n\tCreatedAt\x18\r \x01(\t\x12\x11\n\tUpdatedAt\x18\x0e \x01(\t\"K\n\x1c\x43ollectionListSamplesRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x0c\n\x04Page\x18\x02 \x01(\x05\x12\x0f\n\x07PerPage\x18\x03 \x01(\x05\"\xf8\x03\n\x10\x43ollectionSample\x12\x11\n\tLocalPath\x18\x01 \x01(\t\x12\x10\n\x08\x46ileHash\x18\x02 \x01(\t\x12\x10\n\x08\x46ilename\x18\x03 \x01(\t\x12\x11\n\tAudioHash\x18\x04 \x01(\t\x12\x14\n\x0cModifiedTime\x18\x05 \x01(\x03\x12\x11\n\tIsPremium\x18\x06 \x01(\x08\x12\x10\n\x08\x41udioKey\x18\x08 \x01(\t\x12\x0b\n\x03\x42PM\x18\t \x01(\x03\x12\x11\n\tChordType\x18\n \x01(\t\x12\x0b\n\x03\x44ir\x18\x0b \x01(\t\x12\x10\n\x08\x44uration\x18\x0c \x01(\x03\x12\r\n\x05Genre\x18\r \x01(\t\x12\x12\n\nPreviewURL\x18\x0e \x01(\t\x12\r\n\x05Price\x18\x0f \x01(\x03\x12\x14\n\x0cProviderName\x18\x10 \x01(\t\x12\x14\n\x0cProviderUuid\x18\x11 \x01(\t\x12\x19\n\x11ProviderPermalink\x18\x12 \x01(\t\x12\x12\n\nSampleType\x18\x13 \x01(\t\x12\x0c\n\x04Tags\x18\x14 \x03(\t\x12\x13\n\x0bWaveformURL\x18\x15 \x01(\t\x12\x11\n\tPublished\x18\x16 \x01(\x08\x12\x12\n\nPopularity\x18\x17 \x01(\x03\x12\x13\n\x0bPublishedAt\x18\x18 \x01(\x03\x12\x13\n\x0bPurchasedAt\x18\x19 \x01(\x03\x12\x1f\n\x04Pack\x18\x1a \x01(\x0b\x32\x11.proto.SamplePack\"\\\n\x1d\x43ollectionListSamplesResponse\x12\x11\n\tTotalHits\x18\x01 \x01(\x05\x12(\n\x07Samples\x18\x02 \x03(\x0b\x32\x17.proto.CollectionSample\"\xac\x04\n\x06Preset\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x10\n\x08\x46ileHash\x18\x02 \x01(\t\x12\x10\n\x08\x46ilename\x18\x03 \x01(\t\x12\x11\n\tLocalPath\x18\x04 \x01(\t\x12\x0c\n\x04Tags\x18\x05 \x03(\t\x12\r\n\x05Price\x18\x06 \x01(\x05\x12\x11\n\tIsDefault\x18\x07 \x01(\x08\x12\x1b\n\x13PluginDescriptionID\x18\x08 \x01(\x05\x12\x12\n\nPluginName\x18\t \x01(\t\x12\x15\n\rPluginVersion\x18\n \x01(\t\x12\x11\n\tPublished\x18\x0b \x01(\x08\x12\x13\n\x0bPublishedAt\x18\x0c \x01(\x03\x12\x14\n\x0cProviderName\x18\r \x01(\t\x12\x10\n\x08Trending\x18\x0e \x01(\x01\x12\x14\n\x0cProviderUuid\x18\x0f \x01(\t\x12\x19\n\x11ProviderPermalink\x18\x10 \x01(\t\x12\x1f\n\x04Pack\x18\x11 \x01(\x0b\x32\x11.proto.SamplePack\x12\x12\n\nPreviewURL\x18\x12 \x01(\t\x12\x18\n\x10PreviewURLMonoG1\x18\x13 \x01(\t\x12\x18\n\x10PreviewURLMonoG3\x18\x14 \x01(\t\x12\x18\n\x10PreviewURLMonoG5\x18\x15 \x01(\t\x12\x18\n\x10PreviewURLPolyG1\x18\x16 \x01(\t\x12\x18\n\x10PreviewURLPolyG3\x18\x17 \x01(\t\x12\x18\n\x10PreviewURLPolyG5\x18\x18 \x01(\t\x12\x13\n\x0bPurchasedAt\x18\x19 \x01(\x03\"_\n\x1bPresetsListPurchasedRequest\x12\x0e\n\x06SortFn\x18\x01 \x01(\t\x12\x11\n\tSortOrder\x18\x02 \x01(\t\x12\x0f\n\x07PerPage\x18\x03 \x01(\x05\x12\x0c\n\x04Page\x18\x04 \x01(\x05\"Q\n\x1cPresetsListPurchasedResponse\x12\x11\n\tTotalHits\x18\x01 \x01(\x05\x12\x1e\n\x07Presets\x18\x02 \x03(\x0b\x32\r.proto.Preset\"%\n\x15PresetDownloadRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\"\x18\n\x16PresetDownloadResponse\"\x1e\n\x1cPresetsDownloadCancelRequest\"\x1f\n\x1dPresetsDownloadCancelResponse\"u\n\x1fUnlicensedPresetDownloadRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x1d\n\x15UnlicensedSignedS3Url\x18\x02 \x01(\t\x12\x11\n\tTemporary\x18\x03 \x01(\x08\x12\x12\n\nPluginName\x18\x04 \x01(\t\"0\n UnlicensedPresetDownloadResponse\x12\x0c\n\x04Path\x18\x01 \x01(\t\"%\n\x15PresetPurchaseRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\"\x18\n\x16PresetPurchaseResponse\"G\n\x11PresetInfoRequest\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x10\n\x08\x46ileHash\x18\x02 \x01(\t\x12\x12\n\nPluginName\x18\x03 \x01(\t\"?\n\nPresetInfo\x12\x0c\n\x04UUID\x18\x01 \x01(\t\x12\x10\n\x08\x46ileHash\x18\x02 \x01(\t\x12\x11\n\tLocalPath\x18\x03 \x01(\t\"7\n\x12PresetInfoResponse\x12!\n\x06Preset\x18\x01 \x01(\x0b\x32\x11.proto.PresetInfo\"e\n\tFlagValue\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\"\n\x04type\x18\x02 \x01(\x0e\x32\x14.proto.FlagValueType\x12\x11\n\tboolValue\x18\x03 \x01(\x08\x12\x13\n\x0bstringValue\x18\x04 \x01(\t\"6\n\x13UpdatedFlagsRequest\x12\x1f\n\x05\x66lags\x18\x01 \x03(\x0b\x32\x10.proto.FlagValue\"\x16\n\x14UpdatedFlagsResponse\"\x1c\n\x1a\x43ountPresetsToCleanRequest\",\n\x1b\x43ountPresetsToCleanResponse\x12\r\n\x05\x63ount\x18\x01 \x01(\x05\"\x15\n\x13\x43leanPresetsRequest\"$\n\x14\x43leanPresetsResponse\x12\x0c\n\x04path\x18\x01 \x01(\t\"\x14\n\x12SyncPresetsRequest\"\x15\n\x13SyncPresetsResponse*!\n\x08\x41uthType\x12\n\n\x06SPLICE\x10\x00\x12\t\n\x05\x41UTH0\x10\x01*,\n\nSampleType\x12\x07\n\x03\x41ll\x10\x00\x12\x08\n\x04Loop\x10\x01\x12\x0b\n\x07OneShot\x10\x02*O\n\x10\x43ollectionAccess\x12\x16\n\x12\x41\x63\x63\x65ssNotSpecified\x10\x00\x12\x11\n\rAccessPrivate\x10\x01\x12\x10\n\x0c\x41\x63\x63\x65ssPublic\x10\x02*(\n\rFlagValueType\x12\x0b\n\x07\x42oolean\x10\x00\x12\n\n\x06String\x10\x01\x32\xea\x1b\n\x03\x41pp\x12.\n\x0cStreamEvents\x12\x0c.proto.Event\x1a\x0c.proto.Event(\x01\x30\x01\x12J\n\rValidateLogin\x12\x1b.proto.ValidateLoginRequest\x1a\x1c.proto.ValidateLoginResponse\x12;\n\x08LoggedIn\x12\x16.proto.LoggedInRequest\x1a\x17.proto.LoggedInResponse\x12\x41\n\nGetSession\x12\x18.proto.GetSessionRequest\x1a\x19.proto.GetSessionResponse\x12\x35\n\x06Logout\x12\x14.proto.LogoutRequest\x1a\x15.proto.LogoutResponse\x12\x44\n\x0bListSamples\x12\x19.proto.ListSamplesRequest\x1a\x1a.proto.ListSamplesResponse\x12H\n\rSearchSamples\x12\x1a.proto.SearchSampleRequest\x1a\x1b.proto.SearchSampleResponse\x12\x41\n\nSampleInfo\x12\x18.proto.SampleInfoRequest\x1a\x19.proto.SampleInfoResponse\x12P\n\x0fListSamplePacks\x12\x1d.proto.ListSamplePacksRequest\x1a\x1e.proto.ListSamplePacksResponse\x12M\n\x0e\x44ownloadSample\x12\x1c.proto.DownloadSampleRequest\x1a\x1d.proto.DownloadSampleResponse\x12\x41\n\nSyncSounds\x12\x18.proto.SyncSoundsRequest\x1a\x19.proto.SyncSoundsResponse\x12_\n\x14\x43\x61ncelSampleDownload\x12\".proto.CancelSampleDownloadRequest\x1a#.proto.CancelSampleDownloadResponse\x12J\n\rInstallPlugin\x12\x1b.proto.InstallPluginRequest\x1a\x1c.proto.InstallPluginResponse\x12G\n\x0cUpdatePlugin\x12\x1a.proto.UpdatePluginRequest\x1a\x1b.proto.UpdatePluginResponse\x12_\n\x14\x43\x61ncelPluginDownload\x12\".proto.CancelPluginDownloadRequest\x1a#.proto.CancelPluginDownloadResponse\x12P\n\x0fUserPreferences\x12\x1d.proto.UserPreferencesRequest\x1a\x1e.proto.UserPreferencesResponse\x12\x62\n\x15UpdateUserPreferences\x12#.proto.UpdateUserPreferencesRequest\x1a$.proto.UpdateUserPreferencesResponse\x12G\n\x0c\x44ownloadLogs\x12\x1a.proto.DownloadLogsRequest\x1a\x1b.proto.DownloadLogsResponse\x12\\\n\x13\x43opyFileToClipboard\x12!.proto.CopyFileToClipboardRequest\x1a\".proto.CopyFileToClipboardResponse\x12G\n\x0c\x43onvertToWav\x12\x1a.proto.ConvertToWavRequest\x1a\x1b.proto.ConvertToWavResponse\x12P\n\x0fProjectDiskScan\x12\x1d.proto.ProjectDiskScanRequest\x1a\x1e.proto.ProjectDiskScanResponse\x12\x62\n\x15\x43\x61ncelProjectDiskScan\x12#.proto.CancelProjectDiskScanRequest\x1a$.proto.CancelProjectDiskScanResponse\x12;\n\x08Shutdown\x12\x16.proto.ShutdownRequest\x1a\x17.proto.ShutdownResponse\x12Y\n\x12\x43onvertSoundsTrial\x12 .proto.ConvertSoundsTrialRequest\x1a!.proto.ConvertSoundsTrialResponse\x12G\n\x0cSendFeedback\x12\x1a.proto.SendFeedbackRequest\x1a\x1b.proto.SendFeedbackResponse\x12\x62\n\x15InstallAppFromChannel\x12#.proto.InstallAppFromChannelRequest\x1a$.proto.InstallAppFromChannelResponse\x12J\n\rCollectionAdd\x12\x1b.proto.CollectionAddRequest\x1a\x1c.proto.CollectionAddResponse\x12Y\n\x12\x43ollectionAddItems\x12 .proto.CollectionAddItemsRequest\x1a!.proto.CollectionAddItemsResponse\x12P\n\x0f\x43ollectionsList\x12\x1d.proto.CollectionsListRequest\x1a\x1e.proto.CollectionsListResponse\x12S\n\x10\x43ollectionUpdate\x12\x1e.proto.CollectionUpdateRequest\x1a\x1f.proto.CollectionUpdateResponse\x12S\n\x10\x43ollectionDelete\x12\x1e.proto.CollectionDeleteRequest\x1a\x1f.proto.CollectionDeleteResponse\x12\x62\n\x15\x43ollectionDeleteItems\x12#.proto.CollectionDeleteItemsRequest\x1a$.proto.CollectionDeleteItemsResponse\x12\x62\n\x15\x43ollectionListSamples\x12#.proto.CollectionListSamplesRequest\x1a$.proto.CollectionListSamplesResponse\x12_\n\x14PresetsListPurchased\x12\".proto.PresetsListPurchasedRequest\x1a#.proto.PresetsListPurchasedResponse\x12M\n\x0ePresetDownload\x12\x1c.proto.PresetDownloadRequest\x1a\x1d.proto.PresetDownloadResponse\x12k\n\x18UnlicensedPresetDownload\x12&.proto.UnlicensedPresetDownloadRequest\x1a\'.proto.UnlicensedPresetDownloadResponse\x12\x62\n\x15PresetsDownloadCancel\x12#.proto.PresetsDownloadCancelRequest\x1a$.proto.PresetsDownloadCancelResponse\x12M\n\x0ePresetPurchase\x12\x1c.proto.PresetPurchaseRequest\x1a\x1d.proto.PresetPurchaseResponse\x12\x41\n\nPresetInfo\x12\x18.proto.PresetInfoRequest\x1a\x19.proto.PresetInfoResponse\x12M\n\x0eUpdatedSession\x12\x1c.proto.UpdatedSessionRequest\x1a\x1d.proto.UpdatedSessionResponse\x12G\n\x0cUpdatedFlags\x12\x1a.proto.UpdatedFlagsRequest\x1a\x1b.proto.UpdatedFlagsResponse\x12\\\n\x13\x43ountPresetsToClean\x12!.proto.CountPresetsToCleanRequest\x1a\".proto.CountPresetsToCleanResponse\x12G\n\x0c\x43leanPresets\x12\x1a.proto.CleanPresetsRequest\x1a\x1b.proto.CleanPresetsResponse\x12\x44\n\x0bSyncPresets\x12\x19.proto.SyncPresetsRequest\x1a\x1a.proto.SyncPresetsResponseB/Z-github.com/splice/platform/desktop/core/protob\x06proto3')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'app_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ _globals['DESCRIPTOR']._loaded_options = None
34
+ _globals['DESCRIPTOR']._serialized_options = b'Z-github.com/splice/platform/desktop/core/proto'
35
+ _globals['_USER_FEATURESENTRY']._loaded_options = None
36
+ _globals['_USER_FEATURESENTRY']._serialized_options = b'8\001'
37
+ _globals['_SEARCHSAMPLERESPONSE_MATCHINGTAGSENTRY']._loaded_options = None
38
+ _globals['_SEARCHSAMPLERESPONSE_MATCHINGTAGSENTRY']._serialized_options = b'8\001'
39
+ _globals['_USERPREFERENCES_PRESETSENTRY']._loaded_options = None
40
+ _globals['_USERPREFERENCES_PRESETSENTRY']._serialized_options = b'8\001'
41
+ _globals['_IMPORTEDLISTSAMPLESRESPONSE_TAGSENTRY']._loaded_options = None
42
+ _globals['_IMPORTEDLISTSAMPLESRESPONSE_TAGSENTRY']._serialized_options = b'8\001'
43
+ _globals['_IMPORTEDLISTTAGSRESPONSE_TAGSENTRY']._loaded_options = None
44
+ _globals['_IMPORTEDLISTTAGSRESPONSE_TAGSENTRY']._serialized_options = b'8\001'
45
+ _globals['_AUTHTYPE']._serialized_start=9548
46
+ _globals['_AUTHTYPE']._serialized_end=9581
47
+ _globals['_SAMPLETYPE']._serialized_start=9583
48
+ _globals['_SAMPLETYPE']._serialized_end=9627
49
+ _globals['_COLLECTIONACCESS']._serialized_start=9629
50
+ _globals['_COLLECTIONACCESS']._serialized_end=9708
51
+ _globals['_FLAGVALUETYPE']._serialized_start=9710
52
+ _globals['_FLAGVALUETYPE']._serialized_end=9750
53
+ _globals['_LOGOUTREQUEST']._serialized_start=20
54
+ _globals['_LOGOUTREQUEST']._serialized_end=35
55
+ _globals['_LOGOUTRESPONSE']._serialized_start=37
56
+ _globals['_LOGOUTRESPONSE']._serialized_end=53
57
+ _globals['_VALIDATELOGINREQUEST']._serialized_start=55
58
+ _globals['_VALIDATELOGINREQUEST']._serialized_end=77
59
+ _globals['_VALIDATELOGINRESPONSE']._serialized_start=79
60
+ _globals['_VALIDATELOGINRESPONSE']._serialized_end=129
61
+ _globals['_GETSESSIONREQUEST']._serialized_start=131
62
+ _globals['_GETSESSIONREQUEST']._serialized_end=150
63
+ _globals['_GETSESSIONRESPONSE']._serialized_start=152
64
+ _globals['_GETSESSIONRESPONSE']._serialized_end=199
65
+ _globals['_AUTH']._serialized_start=201
66
+ _globals['_AUTH']._serialized_end=293
67
+ _globals['_USER']._serialized_start=296
68
+ _globals['_USER']._serialized_end=564
69
+ _globals['_USER_FEATURESENTRY']._serialized_start=517
70
+ _globals['_USER_FEATURESENTRY']._serialized_end=564
71
+ _globals['_LOGGEDINREQUEST']._serialized_start=566
72
+ _globals['_LOGGEDINREQUEST']._serialized_end=637
73
+ _globals['_LOGGEDINRESPONSE']._serialized_start=639
74
+ _globals['_LOGGEDINRESPONSE']._serialized_end=657
75
+ _globals['_UPDATEDSESSIONREQUEST']._serialized_start=659
76
+ _globals['_UPDATEDSESSIONREQUEST']._serialized_end=736
77
+ _globals['_UPDATEDSESSIONRESPONSE']._serialized_start=738
78
+ _globals['_UPDATEDSESSIONRESPONSE']._serialized_end=762
79
+ _globals['_LISTSAMPLESREQUEST']._serialized_start=764
80
+ _globals['_LISTSAMPLESREQUEST']._serialized_end=803
81
+ _globals['_LISTSAMPLESRESPONSE']._serialized_start=805
82
+ _globals['_LISTSAMPLESRESPONSE']._serialized_end=877
83
+ _globals['_SAMPLEINFOREQUEST']._serialized_start=879
84
+ _globals['_SAMPLEINFOREQUEST']._serialized_end=954
85
+ _globals['_SAMPLEINFORESPONSE']._serialized_start=956
86
+ _globals['_SAMPLEINFORESPONSE']._serialized_end=1007
87
+ _globals['_IMPORTEDSAMPLEINFORESPONSE']._serialized_start=1009
88
+ _globals['_IMPORTEDSAMPLEINFORESPONSE']._serialized_end=1076
89
+ _globals['_LISTSAMPLEPACKSREQUEST']._serialized_start=1078
90
+ _globals['_LISTSAMPLEPACKSREQUEST']._serialized_end=1121
91
+ _globals['_LISTSAMPLEPACKSRESPONSE']._serialized_start=1123
92
+ _globals['_LISTSAMPLEPACKSRESPONSE']._serialized_end=1207
93
+ _globals['_DOWNLOADSAMPLEREQUEST']._serialized_start=1209
94
+ _globals['_DOWNLOADSAMPLEREQUEST']._serialized_end=1250
95
+ _globals['_DOWNLOADSAMPLERESPONSE']._serialized_start=1252
96
+ _globals['_DOWNLOADSAMPLERESPONSE']._serialized_end=1276
97
+ _globals['_SYNCSOUNDSREQUEST']._serialized_start=1278
98
+ _globals['_SYNCSOUNDSREQUEST']._serialized_end=1297
99
+ _globals['_SYNCSOUNDSRESPONSE']._serialized_start=1299
100
+ _globals['_SYNCSOUNDSRESPONSE']._serialized_end=1319
101
+ _globals['_CANCELSAMPLEDOWNLOADREQUEST']._serialized_start=1321
102
+ _globals['_CANCELSAMPLEDOWNLOADREQUEST']._serialized_end=1368
103
+ _globals['_CANCELSAMPLEDOWNLOADRESPONSE']._serialized_start=1370
104
+ _globals['_CANCELSAMPLEDOWNLOADRESPONSE']._serialized_end=1400
105
+ _globals['_SEARCHSAMPLEREQUEST']._serialized_start=1403
106
+ _globals['_SEARCHSAMPLEREQUEST']._serialized_end=1875
107
+ _globals['_SEARCHSAMPLEREQUEST_PURCHASEDTYPES']._serialized_start=1813
108
+ _globals['_SEARCHSAMPLEREQUEST_PURCHASEDTYPES']._serialized_end=1875
109
+ _globals['_SEARCHSAMPLERESPONSE']._serialized_start=1878
110
+ _globals['_SEARCHSAMPLERESPONSE']._serialized_end=2115
111
+ _globals['_SEARCHSAMPLERESPONSE_MATCHINGTAGSENTRY']._serialized_start=2064
112
+ _globals['_SEARCHSAMPLERESPONSE_MATCHINGTAGSENTRY']._serialized_end=2115
113
+ _globals['_SAMPLE']._serialized_start=2118
114
+ _globals['_SAMPLE']._serialized_end=2597
115
+ _globals['_IMPORTEDSAMPLE']._serialized_start=2600
116
+ _globals['_IMPORTEDSAMPLE']._serialized_end=2859
117
+ _globals['_SAMPLEPACK']._serialized_start=2861
118
+ _globals['_SAMPLEPACK']._serialized_end=2975
119
+ _globals['_PCMWAVFILE']._serialized_start=2977
120
+ _globals['_PCMWAVFILE']._serialized_end=3059
121
+ _globals['_CONVERTTOWAVREQUEST']._serialized_start=3061
122
+ _globals['_CONVERTTOWAVREQUEST']._serialized_end=3096
123
+ _globals['_CONVERTTOWAVRESPONSE']._serialized_start=3098
124
+ _globals['_CONVERTTOWAVRESPONSE']._serialized_end=3156
125
+ _globals['_LISTPLUGINSREQUEST']._serialized_start=3158
126
+ _globals['_LISTPLUGINSREQUEST']._serialized_end=3178
127
+ _globals['_LISTPLUGINSRESPONSE']._serialized_start=3180
128
+ _globals['_LISTPLUGINSRESPONSE']._serialized_end=3233
129
+ _globals['_REFRESHPLUGINSREQUEST']._serialized_start=3235
130
+ _globals['_REFRESHPLUGINSREQUEST']._serialized_end=3258
131
+ _globals['_REFRESHPLUGINSRESPONSE']._serialized_start=3260
132
+ _globals['_REFRESHPLUGINSRESPONSE']._serialized_end=3284
133
+ _globals['_INSTALLPLUGINREQUEST']._serialized_start=3286
134
+ _globals['_INSTALLPLUGINREQUEST']._serialized_end=3336
135
+ _globals['_INSTALLPLUGINRESPONSE']._serialized_start=3338
136
+ _globals['_INSTALLPLUGINRESPONSE']._serialized_end=3361
137
+ _globals['_UPDATEPLUGINREQUEST']._serialized_start=3363
138
+ _globals['_UPDATEPLUGINREQUEST']._serialized_end=3429
139
+ _globals['_UPDATEPLUGINRESPONSE']._serialized_start=3431
140
+ _globals['_UPDATEPLUGINRESPONSE']._serialized_end=3453
141
+ _globals['_CANCELPLUGINDOWNLOADREQUEST']._serialized_start=3455
142
+ _globals['_CANCELPLUGINDOWNLOADREQUEST']._serialized_end=3498
143
+ _globals['_CANCELPLUGINDOWNLOADRESPONSE']._serialized_start=3500
144
+ _globals['_CANCELPLUGINDOWNLOADRESPONSE']._serialized_end=3530
145
+ _globals['_PLUGIN']._serialized_start=3533
146
+ _globals['_PLUGIN']._serialized_end=3764
147
+ _globals['_USERPREFERENCES']._serialized_start=3767
148
+ _globals['_USERPREFERENCES']._serialized_end=4022
149
+ _globals['_USERPREFERENCES_PRESETSENTRY']._serialized_start=3932
150
+ _globals['_USERPREFERENCES_PRESETSENTRY']._serialized_end=4004
151
+ _globals['_PRESETCONFIGENTRY']._serialized_start=4024
152
+ _globals['_PRESETCONFIGENTRY']._serialized_end=4057
153
+ _globals['_USERPREFERENCESREQUEST']._serialized_start=4059
154
+ _globals['_USERPREFERENCESREQUEST']._serialized_end=4083
155
+ _globals['_USERPREFERENCESRESPONSE']._serialized_start=4085
156
+ _globals['_USERPREFERENCESRESPONSE']._serialized_end=4155
157
+ _globals['_UPDATEUSERPREFERENCESREQUEST']._serialized_start=4157
158
+ _globals['_UPDATEUSERPREFERENCESREQUEST']._serialized_end=4232
159
+ _globals['_UPDATEUSERPREFERENCESRESPONSE']._serialized_start=4234
160
+ _globals['_UPDATEUSERPREFERENCESRESPONSE']._serialized_end=4265
161
+ _globals['_DOWNLOADLOGSREQUEST']._serialized_start=4267
162
+ _globals['_DOWNLOADLOGSREQUEST']._serialized_end=4288
163
+ _globals['_DOWNLOADLOGSRESPONSE']._serialized_start=4290
164
+ _globals['_DOWNLOADLOGSRESPONSE']._serialized_end=4330
165
+ _globals['_COPYFILETOCLIPBOARDREQUEST']._serialized_start=4332
166
+ _globals['_COPYFILETOCLIPBOARDREQUEST']._serialized_end=4378
167
+ _globals['_COPYFILETOCLIPBOARDRESPONSE']._serialized_start=4380
168
+ _globals['_COPYFILETOCLIPBOARDRESPONSE']._serialized_end=4409
169
+ _globals['_PROJECTDISKSCANREQUEST']._serialized_start=4411
170
+ _globals['_PROJECTDISKSCANREQUEST']._serialized_end=4435
171
+ _globals['_PROJECTDISKSCANRESPONSE']._serialized_start=4437
172
+ _globals['_PROJECTDISKSCANRESPONSE']._serialized_end=4462
173
+ _globals['_CANCELPROJECTDISKSCANREQUEST']._serialized_start=4464
174
+ _globals['_CANCELPROJECTDISKSCANREQUEST']._serialized_end=4494
175
+ _globals['_CANCELPROJECTDISKSCANRESPONSE']._serialized_start=4496
176
+ _globals['_CANCELPROJECTDISKSCANRESPONSE']._serialized_end=4527
177
+ _globals['_SHUTDOWNREQUEST']._serialized_start=4529
178
+ _globals['_SHUTDOWNREQUEST']._serialized_end=4546
179
+ _globals['_SHUTDOWNRESPONSE']._serialized_start=4548
180
+ _globals['_SHUTDOWNRESPONSE']._serialized_end=4566
181
+ _globals['_CONVERTSOUNDSTRIALREQUEST']._serialized_start=4568
182
+ _globals['_CONVERTSOUNDSTRIALREQUEST']._serialized_end=4595
183
+ _globals['_CONVERTSOUNDSTRIALRESPONSE']._serialized_start=4597
184
+ _globals['_CONVERTSOUNDSTRIALRESPONSE']._serialized_end=4625
185
+ _globals['_SENDFEEDBACKREQUEST']._serialized_start=4627
186
+ _globals['_SENDFEEDBACKREQUEST']._serialized_end=4662
187
+ _globals['_SENDFEEDBACKRESPONSE']._serialized_start=4664
188
+ _globals['_SENDFEEDBACKRESPONSE']._serialized_end=4686
189
+ _globals['_INSTALLAPPFROMCHANNELREQUEST']._serialized_start=4688
190
+ _globals['_INSTALLAPPFROMCHANNELREQUEST']._serialized_end=4735
191
+ _globals['_INSTALLAPPFROMCHANNELRESPONSE']._serialized_start=4737
192
+ _globals['_INSTALLAPPFROMCHANNELRESPONSE']._serialized_end=4768
193
+ _globals['_EVENT']._serialized_start=4770
194
+ _globals['_EVENT']._serialized_end=4805
195
+ _globals['_IMPORTEDADDDIRECTORYREQUEST']._serialized_start=4807
196
+ _globals['_IMPORTEDADDDIRECTORYREQUEST']._serialized_end=4850
197
+ _globals['_IMPORTEDADDDIRECTORYRESPONSE']._serialized_start=4852
198
+ _globals['_IMPORTEDADDDIRECTORYRESPONSE']._serialized_end=4882
199
+ _globals['_IMPORTEDSEARCHSAMPLESREQUEST']._serialized_start=4885
200
+ _globals['_IMPORTEDSEARCHSAMPLESREQUEST']._serialized_end=5073
201
+ _globals['_IMPORTEDLISTSAMPLESRESPONSE']._serialized_start=5076
202
+ _globals['_IMPORTEDLISTSAMPLESRESPONSE']._serialized_end=5291
203
+ _globals['_IMPORTEDLISTSAMPLESRESPONSE_TAGSENTRY']._serialized_start=5248
204
+ _globals['_IMPORTEDLISTSAMPLESRESPONSE_TAGSENTRY']._serialized_end=5291
205
+ _globals['_IMPORTEDLISTSAMPLESREQUEST']._serialized_start=5293
206
+ _globals['_IMPORTEDLISTSAMPLESREQUEST']._serialized_end=5349
207
+ _globals['_IMPORTEDCANCELADDDIRECTORYREQUEST']._serialized_start=5351
208
+ _globals['_IMPORTEDCANCELADDDIRECTORYREQUEST']._serialized_end=5405
209
+ _globals['_IMPORTEDCANCELADDDIRECTORYRESPONSE']._serialized_start=5407
210
+ _globals['_IMPORTEDCANCELADDDIRECTORYRESPONSE']._serialized_end=5443
211
+ _globals['_IMPORTEDDELETESAMPLEMETADATAREQUEST']._serialized_start=5445
212
+ _globals['_IMPORTEDDELETESAMPLEMETADATAREQUEST']._serialized_end=5501
213
+ _globals['_IMPORTEDDELETESAMPLEMETADATARESPONSE']._serialized_start=5503
214
+ _globals['_IMPORTEDDELETESAMPLEMETADATARESPONSE']._serialized_end=5541
215
+ _globals['_IMPORTEDLISTTAGSREQUEST']._serialized_start=5543
216
+ _globals['_IMPORTEDLISTTAGSREQUEST']._serialized_end=5596
217
+ _globals['_IMPORTEDLISTTAGSRESPONSE']._serialized_start=5599
218
+ _globals['_IMPORTEDLISTTAGSRESPONSE']._serialized_end=5746
219
+ _globals['_IMPORTEDLISTTAGSRESPONSE_TAGSENTRY']._serialized_start=5248
220
+ _globals['_IMPORTEDLISTTAGSRESPONSE_TAGSENTRY']._serialized_end=5291
221
+ _globals['_SAMPLEPACKINFOREQUEST']._serialized_start=5748
222
+ _globals['_SAMPLEPACKINFOREQUEST']._serialized_end=5785
223
+ _globals['_SAMPLEPACKINFORESPONSE']._serialized_start=5787
224
+ _globals['_SAMPLEPACKINFORESPONSE']._serialized_end=5844
225
+ _globals['_IMPORTEDMATCHSETPAUSEDSTATUSREQUEST']._serialized_start=5846
226
+ _globals['_IMPORTEDMATCHSETPAUSEDSTATUSREQUEST']._serialized_end=5899
227
+ _globals['_IMPORTEDMATCHSETPAUSEDSTATUSRESPONSE']._serialized_start=5901
228
+ _globals['_IMPORTEDMATCHSETPAUSEDSTATUSRESPONSE']._serialized_end=5939
229
+ _globals['_IMPORTEDMATCHGETPROGRESSREQUEST']._serialized_start=5941
230
+ _globals['_IMPORTEDMATCHGETPROGRESSREQUEST']._serialized_end=5974
231
+ _globals['_IMPORTEDMATCHGETPROGRESSRESPONSE']._serialized_start=5976
232
+ _globals['_IMPORTEDMATCHGETPROGRESSRESPONSE']._serialized_end=6058
233
+ _globals['_IMPORTEDRESCANREQUEST']._serialized_start=6060
234
+ _globals['_IMPORTEDRESCANREQUEST']._serialized_end=6083
235
+ _globals['_IMPORTEDRESCANRESPONSE']._serialized_start=6085
236
+ _globals['_IMPORTEDRESCANRESPONSE']._serialized_end=6109
237
+ _globals['_COLLECTIONADDREQUEST']._serialized_start=6111
238
+ _globals['_COLLECTIONADDREQUEST']._serialized_end=6147
239
+ _globals['_COLLECTIONADDRESPONSE']._serialized_start=6149
240
+ _globals['_COLLECTIONADDRESPONSE']._serialized_end=6211
241
+ _globals['_COLLECTIONSLISTREQUEST']._serialized_start=6213
242
+ _globals['_COLLECTIONSLISTREQUEST']._serialized_end=6268
243
+ _globals['_COLLECTIONSLISTRESPONSE']._serialized_start=6270
244
+ _globals['_COLLECTIONSLISTRESPONSE']._serialized_end=6355
245
+ _globals['_COLLECTIONADDITEMSREQUEST']._serialized_start=6357
246
+ _globals['_COLLECTIONADDITEMSREQUEST']._serialized_end=6415
247
+ _globals['_COLLECTIONADDITEMSRESPONSE']._serialized_start=6417
248
+ _globals['_COLLECTIONADDITEMSRESPONSE']._serialized_end=6445
249
+ _globals['_COLLECTIONDELETEITEMSREQUEST']._serialized_start=6447
250
+ _globals['_COLLECTIONDELETEITEMSREQUEST']._serialized_end=6508
251
+ _globals['_COLLECTIONDELETEITEMSRESPONSE']._serialized_start=6510
252
+ _globals['_COLLECTIONDELETEITEMSRESPONSE']._serialized_end=6541
253
+ _globals['_COLLECTIONUPDATEREQUEST']._serialized_start=6543
254
+ _globals['_COLLECTIONUPDATEREQUEST']._serialized_end=6658
255
+ _globals['_COLLECTIONUPDATERESPONSE']._serialized_start=6660
256
+ _globals['_COLLECTIONUPDATERESPONSE']._serialized_end=6725
257
+ _globals['_COLLECTIONDELETEREQUEST']._serialized_start=6727
258
+ _globals['_COLLECTIONDELETEREQUEST']._serialized_end=6766
259
+ _globals['_COLLECTIONDELETERESPONSE']._serialized_start=6768
260
+ _globals['_COLLECTIONDELETERESPONSE']._serialized_end=6794
261
+ _globals['_COLLECTIONCREATOR']._serialized_start=6796
262
+ _globals['_COLLECTIONCREATOR']._serialized_end=6864
263
+ _globals['_COLLECTION']._serialized_start=6867
264
+ _globals['_COLLECTION']._serialized_end=7205
265
+ _globals['_COLLECTIONLISTSAMPLESREQUEST']._serialized_start=7207
266
+ _globals['_COLLECTIONLISTSAMPLESREQUEST']._serialized_end=7282
267
+ _globals['_COLLECTIONSAMPLE']._serialized_start=7285
268
+ _globals['_COLLECTIONSAMPLE']._serialized_end=7789
269
+ _globals['_COLLECTIONLISTSAMPLESRESPONSE']._serialized_start=7791
270
+ _globals['_COLLECTIONLISTSAMPLESRESPONSE']._serialized_end=7883
271
+ _globals['_PRESET']._serialized_start=7886
272
+ _globals['_PRESET']._serialized_end=8442
273
+ _globals['_PRESETSLISTPURCHASEDREQUEST']._serialized_start=8444
274
+ _globals['_PRESETSLISTPURCHASEDREQUEST']._serialized_end=8539
275
+ _globals['_PRESETSLISTPURCHASEDRESPONSE']._serialized_start=8541
276
+ _globals['_PRESETSLISTPURCHASEDRESPONSE']._serialized_end=8622
277
+ _globals['_PRESETDOWNLOADREQUEST']._serialized_start=8624
278
+ _globals['_PRESETDOWNLOADREQUEST']._serialized_end=8661
279
+ _globals['_PRESETDOWNLOADRESPONSE']._serialized_start=8663
280
+ _globals['_PRESETDOWNLOADRESPONSE']._serialized_end=8687
281
+ _globals['_PRESETSDOWNLOADCANCELREQUEST']._serialized_start=8689
282
+ _globals['_PRESETSDOWNLOADCANCELREQUEST']._serialized_end=8719
283
+ _globals['_PRESETSDOWNLOADCANCELRESPONSE']._serialized_start=8721
284
+ _globals['_PRESETSDOWNLOADCANCELRESPONSE']._serialized_end=8752
285
+ _globals['_UNLICENSEDPRESETDOWNLOADREQUEST']._serialized_start=8754
286
+ _globals['_UNLICENSEDPRESETDOWNLOADREQUEST']._serialized_end=8871
287
+ _globals['_UNLICENSEDPRESETDOWNLOADRESPONSE']._serialized_start=8873
288
+ _globals['_UNLICENSEDPRESETDOWNLOADRESPONSE']._serialized_end=8921
289
+ _globals['_PRESETPURCHASEREQUEST']._serialized_start=8923
290
+ _globals['_PRESETPURCHASEREQUEST']._serialized_end=8960
291
+ _globals['_PRESETPURCHASERESPONSE']._serialized_start=8962
292
+ _globals['_PRESETPURCHASERESPONSE']._serialized_end=8986
293
+ _globals['_PRESETINFOREQUEST']._serialized_start=8988
294
+ _globals['_PRESETINFOREQUEST']._serialized_end=9059
295
+ _globals['_PRESETINFO']._serialized_start=9061
296
+ _globals['_PRESETINFO']._serialized_end=9124
297
+ _globals['_PRESETINFORESPONSE']._serialized_start=9126
298
+ _globals['_PRESETINFORESPONSE']._serialized_end=9181
299
+ _globals['_FLAGVALUE']._serialized_start=9183
300
+ _globals['_FLAGVALUE']._serialized_end=9284
301
+ _globals['_UPDATEDFLAGSREQUEST']._serialized_start=9286
302
+ _globals['_UPDATEDFLAGSREQUEST']._serialized_end=9340
303
+ _globals['_UPDATEDFLAGSRESPONSE']._serialized_start=9342
304
+ _globals['_UPDATEDFLAGSRESPONSE']._serialized_end=9364
305
+ _globals['_COUNTPRESETSTOCLEANREQUEST']._serialized_start=9366
306
+ _globals['_COUNTPRESETSTOCLEANREQUEST']._serialized_end=9394
307
+ _globals['_COUNTPRESETSTOCLEANRESPONSE']._serialized_start=9396
308
+ _globals['_COUNTPRESETSTOCLEANRESPONSE']._serialized_end=9440
309
+ _globals['_CLEANPRESETSREQUEST']._serialized_start=9442
310
+ _globals['_CLEANPRESETSREQUEST']._serialized_end=9463
311
+ _globals['_CLEANPRESETSRESPONSE']._serialized_start=9465
312
+ _globals['_CLEANPRESETSRESPONSE']._serialized_end=9501
313
+ _globals['_SYNCPRESETSREQUEST']._serialized_start=9503
314
+ _globals['_SYNCPRESETSREQUEST']._serialized_end=9523
315
+ _globals['_SYNCPRESETSRESPONSE']._serialized_start=9525
316
+ _globals['_SYNCPRESETSRESPONSE']._serialized_end=9546
317
+ _globals['_APP']._serialized_start=9753
318
+ _globals['_APP']._serialized_end=13315
319
+ # @@protoc_insertion_point(module_scope)