song_list.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  1. /* Any song or sound without a license explicitly stated is:
  2. *
  3. * Copyright 2016 Jack Humbert
  4. * Copyright 2017 Zach White
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #pragma once
  20. #include "musical_notes.h"
  21. #if __has_include("user_song_list.h")
  22. # include "user_song_list.h"
  23. #endif // if file exists
  24. #define NO_SOUND
  25. /* Ode to Joy
  26. * Author: Friedrich Schiller
  27. + License: Public Domain
  28. */
  29. #define ODE_TO_JOY Q__NOTE(_E4), Q__NOTE(_E4), Q__NOTE(_F4), Q__NOTE(_G4), Q__NOTE(_G4), Q__NOTE(_F4), Q__NOTE(_E4), Q__NOTE(_D4), Q__NOTE(_C4), Q__NOTE(_C4), Q__NOTE(_D4), Q__NOTE(_E4), QD_NOTE(_E4), E__NOTE(_D4), H__NOTE(_D4),
  30. /* Rock-a-bye Baby
  31. * Author: Unknown
  32. + License: Public Domain
  33. */
  34. #define ROCK_A_BYE_BABY QD_NOTE(_B4), E__NOTE(_D4), Q__NOTE(_B5), H__NOTE(_A5), Q__NOTE(_G5), QD_NOTE(_B4), E__NOTE(_D5), Q__NOTE(_G5), H__NOTE(_FS5),
  35. #define CLUEBOARD_SOUND HD_NOTE(_C3), HD_NOTE(_D3), HD_NOTE(_E3), HD_NOTE(_F3), HD_NOTE(_G3), HD_NOTE(_A4), HD_NOTE(_B4), HD_NOTE(_C4)
  36. /*
  37. HD_NOTE(_G3), HD_NOTE(_E3), HD_NOTE(_C3), \
  38. Q__NOTE(_E3), Q__NOTE(_C3), Q__NOTE(_G3), \
  39. Q__NOTE(_E3)
  40. */
  41. /*
  42. HD_NOTE(_C3), HD_NOTE(_G3), HD_NOTE(_E3), \
  43. Q__NOTE(_G3), Q__NOTE(_E3), Q__NOTE(_G3), \
  44. Q__NOTE(_F3)
  45. */
  46. #define STARTUP_SOUND E__NOTE(_E6), E__NOTE(_A6), ED_NOTE(_E7),
  47. #define GOODBYE_SOUND E__NOTE(_E7), E__NOTE(_A6), ED_NOTE(_E6),
  48. #define PLANCK_SOUND ED_NOTE(_E7), E__NOTE(_CS7), E__NOTE(_E6), E__NOTE(_A6), M__NOTE(_CS7, 20),
  49. #define PREONIC_SOUND M__NOTE(_B5, 20), E__NOTE(_B6), M__NOTE(_DS6, 20), E__NOTE(_B6),
  50. #define QWERTY_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), Q__NOTE(_E7),
  51. #define COLEMAK_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_E7), S__NOTE(_REST), ED_NOTE(_GS7),
  52. #define DVORAK_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), E__NOTE(_E7), S__NOTE(_REST), E__NOTE(_FS7), S__NOTE(_REST), E__NOTE(_E7),
  53. #define WORKMAN_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_FS7), S__NOTE(_REST), ED_NOTE(_A7),
  54. #define PLOVER_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_E7), S__NOTE(_REST), ED_NOTE(_A7),
  55. #define PLOVER_GOODBYE_SOUND E__NOTE(_GS6), E__NOTE(_A6), S__NOTE(_REST), ED_NOTE(_A7), S__NOTE(_REST), ED_NOTE(_E7),
  56. #define MUSIC_ON_SOUND E__NOTE(_A5), E__NOTE(_B5), E__NOTE(_CS6), E__NOTE(_D6), E__NOTE(_E6), E__NOTE(_FS6), E__NOTE(_GS6), E__NOTE(_A6),
  57. #define AUDIO_ON_SOUND E__NOTE(_A5), E__NOTE(_A6),
  58. #define AUDIO_OFF_SOUND E__NOTE(_A6), E__NOTE(_A5),
  59. #define MUSIC_SCALE_SOUND MUSIC_ON_SOUND
  60. #define MUSIC_OFF_SOUND E__NOTE(_A6), E__NOTE(_GS6), E__NOTE(_FS6), E__NOTE(_E6), E__NOTE(_D6), E__NOTE(_CS6), E__NOTE(_B5), E__NOTE(_A5),
  61. #define VOICE_CHANGE_SOUND Q__NOTE(_A5), Q__NOTE(_CS6), Q__NOTE(_E6), Q__NOTE(_A6),
  62. #define CHROMATIC_SOUND Q__NOTE(_A5), Q__NOTE(_AS5), Q__NOTE(_B5), Q__NOTE(_C6), Q__NOTE(_CS6),
  63. #define MAJOR_SOUND Q__NOTE(_A5), Q__NOTE(_B5), Q__NOTE(_CS6), Q__NOTE(_D6), Q__NOTE(_E6),
  64. #define MINOR_SOUND Q__NOTE(_A5), Q__NOTE(_B5), Q__NOTE(_C6), Q__NOTE(_D6), Q__NOTE(_E6),
  65. #define GUITAR_SOUND Q__NOTE(_E5), Q__NOTE(_A5), Q__NOTE(_D6), Q__NOTE(_G6),
  66. #define VIOLIN_SOUND Q__NOTE(_G5), Q__NOTE(_D6), Q__NOTE(_A6), Q__NOTE(_E7),
  67. #define CAPS_LOCK_ON_SOUND E__NOTE(_A3), E__NOTE(_B3),
  68. #define CAPS_LOCK_OFF_SOUND E__NOTE(_B3), E__NOTE(_A3),
  69. #define SCROLL_LOCK_ON_SOUND E__NOTE(_D4), E__NOTE(_E4),
  70. #define SCROLL_LOCK_OFF_SOUND E__NOTE(_E4), E__NOTE(_D4),
  71. #define NUM_LOCK_ON_SOUND E__NOTE(_D5), E__NOTE(_E5),
  72. #define NUM_LOCK_OFF_SOUND E__NOTE(_E5), E__NOTE(_D5),
  73. #define AG_NORM_SOUND E__NOTE(_A5), E__NOTE(_A5),
  74. #define AG_SWAP_SOUND SD_NOTE(_B5), SD_NOTE(_A5), SD_NOTE(_B5), SD_NOTE(_A5),
  75. #define UNICODE_WINDOWS E__NOTE(_B5), S__NOTE(_E6),
  76. #define UNICODE_LINUX E__NOTE(_E6), S__NOTE(_B5),
  77. #define TERMINAL_SOUND E__NOTE(_C5)
  78. /* Title: La Campanella
  79. * Author/Composer: Frank Lizst
  80. * License: Public Domain
  81. */
  82. #define CAMPANELLA \
  83. Q__NOTE(_DS4), E__NOTE(_DS4), E__NOTE(_DS5), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_CS5), E__NOTE(_CS5), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_AS4), E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_G4), E__NOTE(_G4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_AS4), E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_DS4), E__NOTE(_DS4), E__NOTE(_DS6), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_E5), E__NOTE(_E5), E__NOTE(_DS6), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_CS5), E__NOTE(_CS5), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_B4), E__NOTE(_B4), E__NOTE(_DS6), Q__NOTE(_AS4), E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_G4), E__NOTE(_G4), E__NOTE(_DS6), Q__NOTE(_GS4), E__NOTE(_GS4), E__NOTE(_DS6), Q__NOTE(_AS4), \
  84. E__NOTE(_AS4), E__NOTE(_DS6), Q__NOTE(_DS4), E__NOTE(_DS4), E__NOTE(_DS5), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS6), Q__NOTE(_DS6), E__NOTE(_DS6), E__NOTE(_DS7), Q__NOTE(_DS6), E__NOTE(_DS6), E__NOTE(_DS7), Q__NOTE(_CS6), E__NOTE(_CS6), E__NOTE(_DS7), Q__NOTE(_B5), E__NOTE(_B5), E__NOTE(_DS7), Q__NOTE(_B5), E__NOTE(_B5), E__NOTE(_DS7), Q__NOTE(_AS5), E__NOTE(_AS5), E__NOTE(_DS7), Q__NOTE(_GS5), E__NOTE(_GS5), E__NOTE(_DS7), Q__NOTE(_G5), E__NOTE(_G5), E__NOTE(_DS7), Q__NOTE(_GS5), E__NOTE(_GS5), E__NOTE(_DS7), Q__NOTE(_AS5), E__NOTE(_AS5), E__NOTE(_DS7), Q__NOTE(_DS5), E__NOTE(_DS5), E__NOTE(_DS7), W__NOTE(_DS6), W__NOTE(_GS5),
  85. /* Title: Fantaisie-Impromptu
  86. * Author/Composer: Chopin
  87. * License: Public Domain
  88. */
  89. #define FANTASIE_IMPROMPTU \
  90. E__NOTE(_GS4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_GS4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_A4), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_FS5), E__NOTE(_A5), E__NOTE(_CS6), E__NOTE(_DS6), E__NOTE(_B6), E__NOTE(_A6), E__NOTE(_GS6), E__NOTE(_FS6), E__NOTE(_E6), E__NOTE(_DS6), E__NOTE(_FS6), E__NOTE(_CS6), E__NOTE(_C5), E__NOTE(_DS6), E__NOTE(_A5), E__NOTE(_GS5), E__NOTE(_FS5), E__NOTE(_A5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_FS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_DS5), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_B4), E__NOTE(_A4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_A4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), \
  91. E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_GS4), E__NOTE(_AS4), E__NOTE(_GS4), E__NOTE(_REST), E__NOTE(_GS4), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_DS5), E__NOTE(_CS5), E__NOTE(_C5), E__NOTE(_CS5), E__NOTE(_E5), E__NOTE(_GS5), E__NOTE(_DS5), E__NOTE(_E5), E__NOTE(_DS5), E__NOTE(_REST), E__NOTE(_DS5), E__NOTE(_B5), E__NOTE(_AS5), E__NOTE(_GS5), E__NOTE(_REST), E__NOTE(_E6), E__NOTE(_DS6), E__NOTE(_CS6), E__NOTE(_B5), E__NOTE(_AS5), E__NOTE(_GS5), E__NOTE(_REST), E__NOTE(_AS5), WD_NOTE(_GS5),
  92. /* Title: Nocturne Op. 9 No. 1 in B flat minor
  93. * Author/Composer: Chopin
  94. * License: Public Domain
  95. */
  96. #define NOCTURNE_OP_9_NO_1 \
  97. H__NOTE(_BF5), H__NOTE(_C6), H__NOTE(_DF6), H__NOTE(_A5), H__NOTE(_BF5), H__NOTE(_GF5), W__NOTE(_F5), W__NOTE(_F5), W__NOTE(_F5), W__NOTE(_F5), H__NOTE(_GF5), H__NOTE(_F5), H__NOTE(_EF5), H__NOTE(_C5), B__NOTE(_DF5), W__NOTE(_BF4), Q__NOTE(_BF5), Q__NOTE(_C6), Q__NOTE(_DF6), Q__NOTE(_A5), Q__NOTE(_BF5), Q__NOTE(_A5), Q__NOTE(_GS5), Q__NOTE(_A5), Q__NOTE(_C6), Q__NOTE(_BF5), Q__NOTE(_GF5), Q__NOTE(_F5), Q__NOTE(_GF5), Q__NOTE(_E5), Q__NOTE(_F5), Q__NOTE(_BF5), Q__NOTE(_A5), Q__NOTE(_AF5), Q__NOTE(_G5), Q__NOTE(_GF5), Q__NOTE(_F5), Q__NOTE(_E5), Q__NOTE(_EF5), Q__NOTE(_D5), Q__NOTE(_DF5), Q__NOTE(_C5), Q__NOTE(_DF5), Q__NOTE(_C5), Q__NOTE(_B4), Q__NOTE(_C5), Q__NOTE(_F5), Q__NOTE(_E5), Q__NOTE(_EF5), B__NOTE(_DF5), W__NOTE(_BF4), W__NOTE(_BF5), W__NOTE(_BF5), W__NOTE(_BF5), BD_NOTE(_AF5), W__NOTE(_DF5), H__NOTE(_BF4), H__NOTE(_C5), H__NOTE(_DF5), H__NOTE(_GF5), H__NOTE(_GF5), BD_NOTE(_F5), W__NOTE(_EF5), H__NOTE(_F5), H__NOTE(_EF5), H__NOTE(_DF5), H__NOTE(_A4), B__NOTE(_AF4), \
  98. W__NOTE(_DF5), W__NOTE(_EF5), H__NOTE(_F5), H__NOTE(_EF5), H__NOTE(_DF5), H__NOTE(_EF5), BD_NOTE(_F5),
  99. /* Title: State Anthem of the Soviet Union
  100. * Author/Composer: Alexander Alexandrov
  101. * License: Public Domain
  102. */
  103. #define USSR_ANTHEM B__NOTE(_G6), B__NOTE(_C7), W__NOTE(_G6), H__NOTE(_A6), B__NOTE(_B6), W__NOTE(_E6), W__NOTE(_E6), B__NOTE(_A6), W__NOTE(_G6), H__NOTE(_F6), B__NOTE(_G6), W__NOTE(_C6), W__NOTE(_C6), B__NOTE(_D6), W__NOTE(_D6), W__NOTE(_E6), B__NOTE(_D6), W__NOTE(_D6), W__NOTE(_G6), B__NOTE(_F6), W__NOTE(_G6), W__NOTE(_A6), B__NOTE(_B6),
  104. /* Title: Hymn Risen
  105. * Author/Composer: Terrance Andrew Davis
  106. * License: Public Domain
  107. */
  108. #define TOS_HYMN_RISEN H__NOTE(_D5), H__NOTE(_E5), HD_NOTE(_F5), HD_NOTE(_F5), H__NOTE(_F5), HD_NOTE(_D5), E__NOTE(_E5), E__NOTE(_E5), H__NOTE(_C5), Q__NOTE(_D5), Q__NOTE(_D5), H__NOTE(_E5), H__NOTE(_C5), Q__NOTE(_G5), Q__NOTE(_F5), H__NOTE(_D5), H__NOTE(_E5), HD_NOTE(_F5), HD_NOTE(_F5), H__NOTE(_F5), HD_NOTE(_D5), E__NOTE(_E5), E__NOTE(_E5), H__NOTE(_C5), Q__NOTE(_D5), Q__NOTE(_D5), H__NOTE(_E5), H__NOTE(_C5), Q__NOTE(_G5), Q__NOTE(_F5), H__NOTE(_D5), H__NOTE(_C5), W__NOTE(_D5), W__NOTE(_E5), Q__NOTE(_A4), H__NOTE(_A4), Q__NOTE(_E5), Q__NOTE(_E5), Q__NOTE(_F5), Q__NOTE(_E5), Q__NOTE(_D5), Q__NOTE(_G5), Q__NOTE(_B4), Q__NOTE(_D5), Q__NOTE(_C5), M__NOTE(_F5, 80), H__NOTE(_D5), H__NOTE(_C5), W__NOTE(_D5), W__NOTE(_E5), Q__NOTE(_A4), H__NOTE(_A4), Q__NOTE(_E5), Q__NOTE(_E5), Q__NOTE(_F5), Q__NOTE(_E5), Q__NOTE(_D5), Q__NOTE(_G5), Q__NOTE(_B4), Q__NOTE(_D5), Q__NOTE(_C5), M__NOTE(_F5, 80)
  109. /* Removed sounds
  110. + This list is here solely for compatibility, so that removed songs don't just break things
  111. * If you think that any of these songs were wrongfully removed, let us know and provide
  112. * proof of permission to use them, or public domain status.
  113. */
  114. #ifndef CLOSE_ENCOUNTERS_5_NOTE
  115. # define CLOSE_ENCOUNTERS_5_NOTE
  116. #endif
  117. #ifndef DOE_A_DEER
  118. # define DOE_A_DEER
  119. #endif
  120. #ifndef IN_LIKE_FLINT
  121. # define IN_LIKE_FLINT
  122. #endif
  123. #ifndef IMPERIAL_MARCH
  124. # define IMPERIAL_MARCH
  125. #endif
  126. #ifndef BASKET_CASE
  127. # define BASKET_CASE
  128. #endif
  129. #ifndef COIN_SOUND
  130. # define COIN_SOUND
  131. #endif
  132. #ifndef ONE_UP_SOUND
  133. # define ONE_UP_SOUND
  134. #endif
  135. #ifndef SONIC_RING
  136. # define SONIC_RING
  137. #endif
  138. #ifndef ZELDA_PUZZLE
  139. # define ZELDA_PUZZLE
  140. #endif
  141. #ifndef ZELDA_TREASURE
  142. # define ZELDA_TREASURE
  143. #endif
  144. #ifndef OVERWATCH_THEME
  145. # define OVERWATCH_THEME
  146. #endif
  147. #ifndef MARIO_THEME
  148. # define MARIO_THEME
  149. #endif
  150. #ifndef MARIO_GAMEOVER
  151. # define MARIO_GAMEOVER
  152. #endif
  153. #ifndef MARIO_MUSHROOM
  154. # define MARIO_MUSHROOM
  155. #endif
  156. #ifndef E1M1_DOOM
  157. # define E1M1_DOOM
  158. #endif
  159. #ifndef DISNEY_SONG
  160. # define DISNEY_SONG
  161. #endif
  162. #ifndef NUMBER_ONE
  163. # define NUMBER_ONE
  164. #endif
  165. #ifndef CABBAGE_SONG
  166. # define CABBAGE_SONG
  167. #endif
  168. #ifndef OLD_SPICE
  169. # define OLD_SPICE
  170. #endif
  171. #ifndef VICTORY_FANFARE_SHORT
  172. # define VICTORY_FANFARE_SHORT
  173. #endif
  174. #ifndef ALL_STAR
  175. # define ALL_STAR
  176. #endif
  177. #ifndef RICK_ROLL
  178. # define RICK_ROLL
  179. #endif
  180. #ifndef FF_PRELUDE
  181. # define FF_PRELUDE
  182. #endif
  183. #ifndef TO_BOLDLY_GO
  184. # define TO_BOLDLY_GO
  185. #endif
  186. #ifndef KATAWARE_DOKI
  187. # define KATAWARE_DOKI
  188. #endif
  189. #ifndef MEGALOVANIA
  190. # define MEGALOVANIA
  191. #endif
  192. #ifndef MICHISHIRUBE
  193. # define MICHISHIRUBE
  194. #endif
  195. #ifndef LIEBESLEID
  196. # define LIEBESLEID
  197. #endif
  198. #ifndef MELODIES_OF_LIFE
  199. # define MELODIES_OF_LIFE
  200. #endif
  201. #ifndef EYES_ON_ME
  202. # define EYES_ON_ME
  203. #endif
  204. #ifndef SONG_OF_THE_ANCIENTS
  205. # define SONG_OF_THE_ANCIENTS
  206. #endif
  207. #ifndef NIER_AMUSEMENT_PARK
  208. # define NIER_AMUSEMENT_PARK
  209. #endif
  210. #ifndef COPIED_CITY
  211. # define COPIED_CITY
  212. #endif
  213. #ifndef VAGUE_HOPE_COLD_RAIN
  214. # define VAGUE_HOPE_COLD_RAIN
  215. #endif
  216. #ifndef KAINE_SALVATION
  217. # define KAINE_SALVATION
  218. #endif
  219. #ifndef WEIGHT_OF_THE_WORLD
  220. # define WEIGHT_OF_THE_WORLD
  221. #endif
  222. #ifndef ISABELLAS_LULLABY
  223. # define ISABELLAS_LULLABY
  224. #endif
  225. #ifndef TERRAS_THEME
  226. # define TERRAS_THEME
  227. #endif
  228. #ifndef RENAI_CIRCULATION
  229. # define RENAI_CIRCULATION
  230. #endif
  231. #ifndef PLATINUM_DISCO
  232. # define PLATINUM_DISCO
  233. #endif
  234. #ifndef LP_NUMB
  235. # define LP_NUMB
  236. #endif