summaryrefslogtreecommitdiffstats
path: root/keyboards/planck/keymaps/synth_sample
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/synth_sample')
-rw-r--r--keyboards/planck/keymaps/synth_sample/config.h56
-rw-r--r--keyboards/planck/keymaps/synth_sample/keymap.c296
-rw-r--r--keyboards/planck/keymaps/synth_sample/rules.mk2
-rw-r--r--keyboards/planck/keymaps/synth_sample/sample.h3797
4 files changed, 4151 insertions, 0 deletions
diff --git a/keyboards/planck/keymaps/synth_sample/config.h b/keyboards/planck/keymaps/synth_sample/config.h
new file mode 100644
index 0000000000..930b26b000
--- /dev/null
+++ b/keyboards/planck/keymaps/synth_sample/config.h
@@ -0,0 +1,56 @@
+/*
+Copyright 2020 Jack Humbert
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#pragma once
+
+#ifdef AUDIO_ENABLE
+ #define AUDIO_PIN A5
+ #define STARTUP_SONG SONG(PLANCK_SOUND)
+ // #define STARTUP_SONG SONG(NO_SOUND)
+
+ #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
+ SONG(COLEMAK_SOUND), \
+ SONG(DVORAK_SOUND) \
+ }
+#endif
+
+/*
+ * MIDI options
+ */
+
+/* Prevent use of disabled MIDI features in the keymap */
+//#define MIDI_ENABLE_STRICT 1
+
+/* enable basic MIDI features:
+ - MIDI notes can be sent when in Music mode is on
+*/
+
+#define MIDI_BASIC
+
+/* enable advanced MIDI features:
+ - MIDI notes can be added to the keymap
+ - Octave shift and transpose
+ - Virtual sustain, portamento, and modulation wheel
+ - etc.
+*/
+//#define MIDI_ADVANCED
+
+/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
+//#define MIDI_TONE_KEYCODE_OCTAVES 2
+
+// Most tactile encoders have detents every 4 stages
+#define ENCODER_RESOLUTION 4
diff --git a/keyboards/planck/keymaps/synth_sample/keymap.c b/keyboards/planck/keymaps/synth_sample/keymap.c
new file mode 100644
index 0000000000..87a7479cef
--- /dev/null
+++ b/keyboards/planck/keymaps/synth_sample/keymap.c
@@ -0,0 +1,296 @@
+/* Copyright 2019 Jack Humbert
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include QMK_KEYBOARD_H
+
+enum planck_layers {
+ _QWERTY,
+ _COLEMAK,
+ _DVORAK,
+ _LOWER,
+ _RAISE,
+ _PLOVER,
+ _ADJUST
+};
+
+enum planck_keycodes {
+ QWERTY = SAFE_RANGE,
+ COLEMAK,
+ DVORAK,
+ PLOVER,
+ BACKLIT,
+ EXT_PLV
+};
+
+#define LOWER MO(_LOWER)
+#define RAISE MO(_RAISE)
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+
+/* Qwerty
+ * ,-----------------------------------------------------------------------------------.
+ * | Tab | Q | W | E | R | T | Y | U | I | O | P | Bksp |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | Esc | A | S | D | F | G | H | J | K | L | ; | " |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | Shift| Z | X | C | V | B | N | M | , | . | / |Enter |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | Brite| Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right |
+ * `-----------------------------------------------------------------------------------'
+ */
+[_QWERTY] = LAYOUT_planck_grid(
+ KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC,
+ KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT ,
+ BACKLIT, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
+),
+
+/* Colemak
+ * ,-----------------------------------------------------------------------------------.
+ * | Tab | Q | W | F | P | G | J | L | U | Y | ; | Bksp |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | Esc | A | R | S | T | D | H | N | E | I | O | " |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | Shift| Z | X | C | V | B | K | M | , | . | / |Enter |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | Brite| Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right |
+ * `-----------------------------------------------------------------------------------'
+ */
+[_COLEMAK] = LAYOUT_planck_grid(
+ KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC,
+ KC_ESC, KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT,
+ KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_ENT ,
+ BACKLIT, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
+),
+
+/* Dvorak
+ * ,-----------------------------------------------------------------------------------.
+ * | Tab | " | , | . | P | Y | F | G | C | R | L | Bksp |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | Esc | A | O | E | U | I | D | H | T | N | S | / |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | Shift| ; | Q | J | K | X | B | M | W | V | Z |Enter |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | Brite| Ctrl | Alt | GUI |Lower | Space |Raise | Left | Down | Up |Right |
+ * `-----------------------------------------------------------------------------------'
+ */
+[_DVORAK] = LAYOUT_planck_grid(
+ KC_TAB, KC_QUOT, KC_COMM, KC_DOT, KC_P, KC_Y, KC_F, KC_G, KC_C, KC_R, KC_L, KC_BSPC,
+ KC_ESC, KC_A, KC_O, KC_E, KC_U, KC_I, KC_D, KC_H, KC_T, KC_N, KC_S, KC_SLSH,
+ KC_LSFT, KC_SCLN, KC_Q, KC_J, KC_K, KC_X, KC_B, KC_M, KC_W, KC_V, KC_Z, KC_ENT ,
+ BACKLIT, KC_LCTL, KC_LALT, KC_LGUI, LOWER, KC_SPC, KC_SPC, RAISE, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT
+),
+
+/* Lower
+ * ,-----------------------------------------------------------------------------------.
+ * | ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | Bksp |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | Del | F1 | F2 | F3 | F4 | F5 | F6 | _ | + | { | } | | |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO ~ |ISO | | Home | End | |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | | | | | | | | Next | Vol- | Vol+ | Play |
+ * `-----------------------------------------------------------------------------------'
+ */
+[_LOWER] = LAYOUT_planck_grid(
+ KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC,
+ KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE,
+ _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, S(KC_NUHS), S(KC_NUBS), KC_HOME, KC_END, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
+),
+
+/* Raise
+ * ,-----------------------------------------------------------------------------------.
+ * | ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | Bksp |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | Del | F1 | F2 | F3 | F4 | F5 | F6 | - | = | [ | ] | \ |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | | F7 | F8 | F9 | F10 | F11 | F12 |ISO # |ISO / |Pg Up |Pg Dn | |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | | | | | | | | Next | Vol- | Vol+ | Play |
+ * `-----------------------------------------------------------------------------------'
+ */
+[_RAISE] = LAYOUT_planck_grid(
+ KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC,
+ KC_DEL, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS,
+ _______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, KC_NUHS, KC_NUBS, KC_PGUP, KC_PGDN, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, KC_MNXT, KC_VOLD, KC_VOLU, KC_MPLY
+),
+
+/* Plover layer (http://opensteno.org)
+ * ,-----------------------------------------------------------------------------------.
+ * | # | # | # | # | # | # | # | # | # | # | # | # |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | | S | T | P | H | * | * | F | P | L | T | D |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | | S | K | W | R | * | * | R | B | G | S | Z |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | Exit | | | A | O | | E | U | | | |
+ * `-----------------------------------------------------------------------------------'
+ */
+[_PLOVER] = LAYOUT_planck_grid(
+ KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1, KC_1 ,
+ XXXXXXX, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC,
+ XXXXXXX, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
+ EXT_PLV, XXXXXXX, XXXXXXX, KC_C, KC_V, XXXXXXX, XXXXXXX, KC_N, KC_M, XXXXXXX, XXXXXXX, XXXXXXX
+),
+
+/* Adjust (Lower + Raise)
+ * ,-----------------------------------------------------------------------------------.
+ * | | Reset| | | | | | | | | | Del |
+ * |------+------+------+------+------+-------------+------+------+------+------+------|
+ * | | | |Aud on|Audoff|AGnorm|AGswap|Qwerty|Colemk|Dvorak|Plover| |
+ * |------+------+------+------+------+------|------+------+------+------+------+------|
+ * | |Voice-|Voice+|Mus on|Musoff|MIDIon|MIDIof| | | | | |
+ * |------+------+------+------+------+------+------+------+------+------+------+------|
+ * | | | | | | | | | | | |
+ * `-----------------------------------------------------------------------------------'
+ */
+[_ADJUST] = LAYOUT_planck_grid(
+ _______, RESET, DEBUG, RGB_TOG, RGB_MOD, RGB_HUI, RGB_HUD, RGB_SAI, RGB_SAD, RGB_VAI, RGB_VAD, KC_DEL ,
+ _______, _______, MU_MOD, AU_ON, AU_OFF, AG_NORM, AG_SWAP, QWERTY, COLEMAK, DVORAK, PLOVER, _______,
+ _______, MUV_DE, MUV_IN, MU_ON, MU_OFF, MI_ON, MI_OFF, TERM_ON, TERM_OFF, _______, _______, _______,
+ _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______
+)
+
+};
+
+#ifdef AUDIO_ENABLE
+ float plover_song[][2] = SONG(PLOVER_SOUND);
+ float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND);
+#endif
+
+uint32_t layer_state_set_user(uint32_t state) {
+ return update_tri_layer_state(state, _LOWER, _RAISE, _ADJUST);
+}
+
+bool process_record_user(uint16_t keycode, keyrecord_t *record) {
+ switch (keycode) {
+ case QWERTY:
+ if (record->event.pressed) {
+ print("mode just switched to qwerty and this is a huge string\n");
+ set_single_persistent_default_layer(_QWERTY);
+ }
+ return false;
+ break;
+ case COLEMAK:
+ if (record->event.pressed) {
+ set_single_persistent_default_layer(_COLEMAK);
+ }
+ return false;
+ break;
+ case DVORAK:
+ if (record->event.pressed) {
+ set_single_persistent_default_layer(_DVORAK);
+ }
+ return false;
+ break;
+ case BACKLIT:
+ if (record->event.pressed) {
+ register_code(KC_RSFT);
+ #ifdef BACKLIGHT_ENABLE
+ backlight_step();
+ #endif
+ #ifdef KEYBOARD_planck_rev5
+ PORTE &= ~(1<<6);
+ #endif
+ } else {
+ unregister_code(KC_RSFT);
+ #ifdef KEYBOARD_planck_rev5
+ PORTE |= (1<<6);
+ #endif
+ }
+ return false;
+ break;
+ case PLOVER:
+ if (record->event.pressed) {
+ #ifdef AUDIO_ENABLE
+ stop_all_notes();
+ PLAY_SONG(plover_song);
+ #endif
+ layer_off(_RAISE);
+ layer_off(_LOWER);
+ layer_off(_ADJUST);
+ layer_on(_PLOVER);
+ if (!eeconfig_is_enabled()) {
+ eeconfig_init();
+ }
+ keymap_config.raw = eeconfig_read_keymap();
+ keymap_config.nkro = 1;
+ eeconfig_update_keymap(keymap_config.raw);
+ }
+ return false;
+ break;
+ case EXT_PLV:
+ if (record->event.pressed) {
+ #ifdef AUDIO_ENABLE
+ PLAY_SONG(plover_gb_song);
+ #endif
+ layer_off(_PLOVER);
+ }
+ return false;
+ break;
+ }
+ return true;
+}
+
+void encoder_update(bool clockwise) {
+ if (clockwise) {
+ #ifdef MOUSEKEY_ENABLE
+ register_code(KC_MS_WH_DOWN);
+ unregister_code(KC_MS_WH_DOWN);
+ #else
+ register_code(KC_PGDN);
+ unregister_code(KC_PGDN);
+ #endif
+ } else {
+ #ifdef MOUSEKEY_ENABLE
+ register_code(KC_MS_WH_UP);
+ unregister_code(KC_MS_WH_UP);
+ #else
+ register_code(KC_PGUP);
+ unregister_code(KC_PGUP);
+ #endif
+ }
+}
+
+void matrix_scan_user(void) {
+
+}
+
+bool music_mask_user(uint16_t keycode) {
+ switch (keycode) {
+ case RAISE:
+ case LOWER:
+ return false;
+ default:
+ return true;
+ }
+}
+
+#include "sample.h"
+
+uint32_t dac_sample_custom_counter = 0;
+
+uint16_t dac_value_generate(void) {
+ if (is_playing_note()) {
+ uint16_t sample = dac_sample_custom[dac_sample_custom_counter];
+ dac_sample_custom_counter = (dac_sample_custom_counter + 1) % AUDIO_DAC_SAMPLE_CUSTOM_LENGTH;
+ return sample;
+ } else {
+ return AUDIO_DAC_OFF_VALUE;
+ }
+}
diff --git a/keyboards/planck/keymaps/synth_sample/rules.mk b/keyboards/planck/keymaps/synth_sample/rules.mk
new file mode 100644
index 0000000000..ebfcda2214
--- /dev/null
+++ b/keyboards/planck/keymaps/synth_sample/rules.mk
@@ -0,0 +1,2 @@
+AUDIO_ENABLE = yes
+AUDIO_DRIVER = dac_additive
diff --git a/keyboards/planck/keymaps/synth_sample/sample.h b/keyboards/planck/keymaps/synth_sample/sample.h
new file mode 100644
index 0000000000..71c1b87e76
--- /dev/null
+++ b/keyboards/planck/keymaps/synth_sample/sample.h
@@ -0,0 +1,3797 @@
+/*
+Copyright 2020 Jack Humbert
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#define AUDIO_DAC_SAMPLE_CUSTOM_LENGTH 30208
+
+static const dacsample_t dac_sample_custom[30208] = {
+ 2041, 2039, 2039, 2037, 2035, 2037, 2037, 2037,
+ 2038, 2037, 2037, 2040, 2039, 2038, 2036, 2035,
+ 2036, 2036, 2036, 2034, 2034, 2034, 2032, 2032,
+ 2033, 2034, 2032, 2030, 2029, 2031, 2030, 2029,
+ 2029, 2030, 2029, 2030, 2030, 2031, 2028, 2028,
+ 2028, 2027, 2025, 2026, 2027, 2026, 2025, 2026,
+ 2026, 2025, 2023, 2022, 2023, 2021, 2021, 2023,
+ 2020, 2023, 2023, 2022, 2022, 2021, 2021, 2020,
+ 2022, 2020, 2017, 2016, 2015, 2018, 2017, 2015,
+ 2013, 2012, 2015, 2013, 2011, 2012, 2011, 2011,
+ 2010, 2008, 2008, 2010, 2010, 2006, 2006, 2006,
+ 2004, 2005, 2006, 2006, 2005, 2002, 2005, 2003,
+ 2003, 2004, 2002, 2001, 2003, 2003, 2002, 2003,
+ 2003, 2000, 2000, 2000, 1998, 1997, 1998, 1999,
+ 1997, 1995, 1995, 1996, 1996, 1992, 1995, 1995,
+ 1994, 1994, 1995, 1997, 1996, 1996, 1997, 1997,
+ 1997, 1996, 1996, 1995, 1997, 1997, 1996, 1998,
+ 1995, 1996, 1996, 1996, 1996, 1994, 1990, 1991,
+ 1992, 1991, 1994, 1992, 1993, 1995, 1994, 1995,
+ 1992, 1991, 1991, 1992, 1993, 1992, 1992, 1993,
+ 1993, 1992, 1990, 1989, 1991, 1992, 1991, 1991,
+ 1990, 1990, 1992, 1992, 1991, 1992, 1992, 1994,
+ 1992, 1992, 1992, 1993, 1993, 1994, 1995, 1993,
+ 1991, 1992, 1990, 1989, 1990, 1988, 1988, 1987,
+ 1989, 1989, 1985, 1986, 1987, 1985, 1986, 1986,
+ 1987, 1988, 1988, 1989, 1989, 1988, 1988, 1990,
+ 1991, 1991, 1990, 1991, 1992, 1994, 1994, 1995,
+ 1994, 1995, 1997, 1995, 1995, 1995, 1997, 1997,
+ 1997, 1996, 1999, 2000, 1997, 1998, 1999, 2002,
+ 2001, 2001, 2001, 2002, 2000, 1998, 2000, 2004,
+ 2002, 2001, 2003, 2005, 2004, 2004, 2002, 2004,
+ 2004, 2001, 2000, 2001, 2003, 2005, 2005, 2005,
+ 2005, 2006, 2010, 2010, 2009, 2007, 2006, 2008,
+ 2006, 2007, 2007, 2005, 2005, 2005, 2007, 2005,
+ 2006, 2007, 2009, 2010, 2008, 2007, 2006, 2006,
+ 2005, 2005, 2005, 2004, 2005, 2004, 2004, 2003,
+ 2007, 2006, 2006, 2004, 2005, 2006, 2007, 2007,
+ 2006, 2010, 2007, 2008, 2009, 2012, 2012, 2010,
+ 2011, 2010, 2014, 2012, 2013, 2013, 2014, 2014,
+ 2013, 2012, 2012, 2012, 2010, 2013, 2012, 2010,
+ 2011, 2011, 2012, 2012, 2013, 2013, 2015, 2016,
+ 2015, 2015, 2015, 2015, 2015, 2014, 2012, 2014,
+ 2016, 2017, 2016, 2015, 2018, 2019, 2017, 2017,
+ 2017, 2017, 2016, 2016, 2017, 2017, 2018, 2021,
+ 2020, 2019, 2019, 2022, 2022, 2024, 2024, 2023,
+ 2023, 2023, 2024, 2025, 2026, 2025, 2024, 2025,
+ 2025, 2026, 2026, 2023, 2023, 2023, 2023, 2023,
+ 2023, 2024, 2024, 2025, 2024, 2022, 2022, 2021,
+ 2021, 2022, 2022, 2024, 2023, 2023, 2023, 2021,
+ 2023, 2023, 2024, 2024, 2025, 2024, 2026, 2027,
+ 2025, 2026, 2028, 2026, 2027, 2027, 2025, 2024,
+ 2027, 2028, 2027, 2028, 2027, 2027, 2028, 2028,
+ 2030, 2029, 2032, 2031, 2030, 2029, 2028, 2030,
+ 2027, 2028, 2028, 2028, 2026, 2027, 2028, 2027,
+ 2029, 2032, 2030, 2030, 2032, 2033, 2030, 2030,
+ 2032, 2030, 2030, 2030, 2032, 2032, 2033, 2031,
+ 2034, 2032, 2029, 2028, 2028, 2030, 2028, 2029,
+ 2030, 2028, 2029, 2029, 2029, 2030, 2032, 2033,
+ 2031, 2036, 2034, 2032, 2032, 2031, 2032, 2031,
+ 2032, 2033, 2035, 2033, 2032, 2034, 2035, 2036,
+ 2037, 2038, 2039, 2038, 2038, 2038, 2040, 2040,
+ 2041, 2041, 2041, 2043, 2041, 2041, 2043, 2043,
+ 2041, 2040, 2042, 2042, 2042, 2044, 2044, 2041,
+ 2042, 2043, 2042, 2044, 2043, 2044, 2044, 2045,
+ 2045, 2044, 2045, 2044, 2045, 2043, 2042, 2043,
+ 2043, 2043, 2043, 2044, 2044, 2044, 2045, 2044,
+ 2044, 2043, 2042, 2045, 2046, 2045, 2046, 2048,
+ 2048, 2046, 2046, 2046, 2049, 2048, 2050, 2049,
+ 2049, 2050, 2053, 2051, 2049, 2050, 2047, 2050,
+ 2048, 2052, 2050, 2051, 2053, 2051, 2051, 2048,
+ 2051, 2050, 2049, 2051, 2052, 2051, 2050, 2051,
+ 2050, 2050, 2051, 2050, 2048, 2049, 2049, 2048,
+ 2050, 2050, 2050, 2049, 2048, 2048, 2048, 2048,
+ 2049, 2049, 2049, 2050, 2051, 2050, 2053, 2051,
+ 2051, 2053, 2052, 2052, 2052, 2051, 2053, 2055,
+ 2056, 2056, 2055, 2056, 2056, 2056, 2059, 2058,
+ 2055, 2057, 2059, 2057, 2056, 2056, 2056, 2057,
+ 2059, 2060, 2060, 2059, 2059, 2059, 2059, 2061,
+ 2059, 2059, 2060, 2061, 2059, 2057, 2058, 2060,
+ 2060, 2061, 2060, 2061, 2062, 2063, 2062, 2060,
+ 2062, 2060, 2061, 2061, 2060, 2060, 2061, 2062,
+ 2062, 2062, 2061, 2059, 2062, 2063, 2062, 2063,
+ 2063, 2063, 2063, 2063, 2063, 2063, 2065, 2063,
+ 2063, 2065, 2065, 2066, 2065, 2067, 2067, 2066,
+ 2065, 2065, 2065, 2066, 2066, 2063, 2064, 2062,
+ 2063, 2062, 2062, 2061, 2062, 2063, 2062, 2061,
+ 2061, 2062, 2058, 2059, 2061, 2062, 2062, 2062,
+ 2062, 2064, 2063, 2063, 2062, 2061, 2061, 2063,
+ 2060, 2059, 2059, 2058, 2059, 2059, 2059, 2062,
+ 2063, 2063, 2062, 2061, 2061, 2061, 2061, 2062,
+ 2060, 2058, 2059, 2060, 2060, 2059, 2059, 2057,
+ 2059, 2059, 2056, 2057, 2056, 2057, 2056, 2056,
+ 2056, 2057, 2057, 2057, 2055, 2055, 2055, 2053,
+ 2054, 2054, 2054, 2054, 2052, 2051, 2054, 2055,
+ 2055, 2053, 2055, 2054, 2055, 2055, 2053, 2053,
+ 2054, 2052, 2051, 2053, 2051, 2052, 2052, 2054,
+ 2054, 2053, 2051, 2051, 2053, 2052, 2051, 2050,
+ 2049, 2049, 2048, 2049, 2049, 2047, 2046, 2047,
+ 2047, 2047, 2046, 2048, 2046, 2046, 2046, 2044,
+ 2043, 2044, 2045, 2046, 2043, 2044, 2043, 2046,
+ 2044, 2044, 2043, 2043, 2042, 2039, 2037, 2039,
+ 2038, 2039, 2039, 2038, 2038, 2038, 2039, 2036,
+ 2034, 2034, 2033, 2035, 2034, 2032, 2031, 2034,
+ 2035, 2033, 2034, 2032, 2032, 2033, 2031, 2031,
+ 2031, 2032, 2032, 2032, 2030, 2030, 2029, 2029,
+ 2029, 2025, 2024, 2024, 2024, 2025, 2025, 2028,
+ 2028, 2025, 2024, 2026, 2025, 2022, 2023, 2021,
+ 2018, 2019, 2020, 2020, 2020, 2021, 2021, 2018,
+ 2017, 2019, 2017, 2016, 2018, 2019, 2018, 2016,
+ 2017, 2016, 2014, 2017, 2017, 2017, 2016, 2014,
+ 2012, 2011, 2011, 2011, 2011, 2012, 2011, 2009,
+ 2011, 2011, 2011, 2012, 2009, 2009, 2010, 2011,
+ 2011, 2011, 2008, 2008, 2010, 2009, 2009, 2008,
+ 2007, 2010, 2009, 2011, 2012, 2011, 2012, 2012,
+ 2010, 2010, 2011, 2009, 2010, 2010, 2010, 2012,
+ 2011, 2011, 2011, 2010, 2010, 2009, 2012, 2008,
+ 2009, 2010, 2010, 2008, 2008, 2009, 2007, 2007,
+ 2007, 2007, 2009, 2008, 2006, 2006, 2010, 2011,
+ 2011, 2009, 2010, 2007, 2008, 2007, 2009, 2011,
+ 2009, 2009, 2008, 2009, 2009, 2009, 2007, 2010,
+ 2008, 2009, 2013, 2011, 2011, 2009, 2010, 2009,
+ 2007, 2007, 2008, 2008, 2009, 2010, 2008, 2009,
+ 2009, 2010, 2010, 2010, 2009, 2007, 2008, 2007,
+ 2011, 2012, 2010, 2009, 2009, 2010, 2008, 2010,
+ 2011, 2010, 2010, 2012, 2011, 2010, 2013, 2014,
+ 2013, 2014, 2016, 2015, 2016, 2017, 2016, 2020,
+ 2022, 2022, 2020, 2022, 2023, 2024, 2023, 2022,
+ 2021, 2020, 2023, 2022, 2023, 2022, 2023, 2024,
+ 2022, 2021, 2021, 2021, 2021, 2021, 2021, 2023,
+ 2024, 2024, 2022, 2022, 2023, 2026, 2027, 2024,
+ 2025, 2029, 2027, 2029, 2030, 2029, 2029, 2028,
+ 2029, 2029, 2028, 2031, 2031, 2029, 2027, 2026,
+ 2026, 2028, 2025, 2025, 2021, 2022, 2025, 2025,
+ 2028, 2026, 2025, 2025, 2023, 2024, 2024, 2027,
+ 2027, 2029, 2028, 2025, 2027, 2029, 2031, 2028,
+ 2026, 2028, 2028, 2028, 2028, 2030, 2026, 2028,
+ 2029, 2029, 2030, 2030, 2030, 2032, 2032, 2032,
+ 2031, 2030, 2031, 2031, 2033, 2035, 2033, 2032,
+ 2031, 2032, 2032, 2032, 2032, 2031, 2030, 2030,
+ 2028, 2030, 2029, 2027, 2029, 2028, 2027, 2029,
+ 2032, 2031, 2031, 2032, 2030, 2029, 2032, 2033,
+ 2032, 2027, 2026, 2029, 2030, 2031, 2033, 2033,
+ 2033, 2035, 2035, 2034, 2035, 2034, 2035, 2036,
+ 2037, 2035, 2035, 2034, 2034, 2034, 2037, 2036,
+ 2035, 2033, 2033, 2034, 2033, 2035, 2035, 2036,
+ 2038, 2037, 2035, 2038, 2038, 2033, 2033, 2035,
+ 2036, 2036, 2038, 2037, 2037, 2038, 2038, 2039,
+ 2039, 2038, 2038, 2040, 2041, 2040, 2042, 2042,
+ 2042, 2043, 2042, 2040, 2041, 2040, 2041, 2043,
+ 2040, 2042, 2042, 2041, 2044, 2045, 2043, 2043,
+ 2045, 2045, 2047, 2045, 2044, 2046, 2045, 2048,
+ 2049, 2050, 2050, 2050, 2050, 2048, 2050, 2051,
+ 2050, 2050, 2052, 2053, 2053, 2055, 2054, 2053,
+ 2055, 2053, 2053, 2052, 2050, 2052, 2052, 2053,
+ 2053, 2054, 2053, 2055, 2056, 2055, 2053, 2053,
+ 2054, 2054, 2056, 2054, 2054, 2056, 2054, 2053,
+ 2054, 2057, 2055, 2054, 2056, 2057, 2056, 2058,
+ 2057, 2058, 2059, 2057, 2058, 2057, 2057, 2055,
+ 2056, 2056, 2055, 2059, 2057, 2055, 2052, 2050,
+ 2053, 2054, 2052, 2053, 2055, 2056, 2055, 2054,
+ 2055, 2055, 2053, 2053, 2053, 2054, 2055, 2055,
+ 2055, 2052, 2054, 2056, 2057, 2059, 2058, 2055,
+ 2056, 2057, 2056, 2056, 2056, 2057, 2057, 2056,
+ 2057, 2056, 2057, 2055, 2056, 2057, 2057, 2058,
+ 2057, 2055, 2055, 2056, 2057, 2056, 2056, 2056,
+ 2057, 2057, 2058, 2058, 2058, 2059, 2057, 2056,
+ 2057, 2055, 2053, 2055, 2056, 2056, 2056, 2057,
+ 2059, 2058, 2058, 2058, 2057, 2060, 2058, 2058,
+ 2058, 2059, 2059, 2060, 2061, 2060, 2058, 2059,
+ 2060, 2060, 2058, 2058, 2059, 2058, 2056, 2058,
+ 2059, 2059, 2058, 2058, 2057, 2059, 2060, 2058,
+ 2058, 2058, 2057, 2059, 2058, 2056, 2061, 2061,
+ 2060, 2059, 2061, 2062, 2062, 2062, 2059, 2061,
+ 2059, 2058, 2060, 2061, 2058, 2058, 2058, 2059,
+ 2059, 2057, 2060, 2058, 2058, 2057, 2055, 2054,
+ 2056, 2056, 2059, 2056, 2056, 2059, 2059, 2057,
+ 2055, 2052, 2051, 2052, 2052, 2052, 2053, 2051,
+ 2052, 2052, 2051, 2050, 2048, 2049, 2050, 2052,
+ 2050, 2052, 2051, 2052, 2053, 2052, 2050, 2050,
+ 2052, 2051, 2051, 2053, 2052, 2051, 2053, 2055,
+ 2055, 2054, 2053, 2054, 2051, 2052, 2052, 2053,
+ 2053, 2052, 2052, 2053, 2053, 2049, 2048, 2051,
+ 2048, 2048, 2049, 2050, 2051, 2049, 2047, 2047,
+ 2049, 2050, 2051, 2049, 2048, 2045, 2045, 2046,
+ 2046, 2046, 2045, 2046, 2045, 2043, 2044, 2043,
+ 2043, 2043, 2044, 2042, 2042, 2042, 2044, 2046,
+ 2044, 2039, 2040, 2039, 2038, 2040, 2040, 2040,
+ 2040, 2039, 2039, 2039, 2037, 2036, 2036, 2037,
+ 2037, 2034, 2036, 2035, 2034, 2033, 2033, 2031,
+ 2029, 2027, 2029, 2028, 2028, 2029, 2030, 2029,
+ 2027, 2027, 2026, 2028, 2028, 2026, 2026, 2024,
+ 2025, 2028, 2027, 2025, 2026, 2027, 2023, 2018,
+ 2017, 2021, 2020, 2019, 2018, 2016, 2014, 2013,
+ 2011, 2010, 2007, 2010, 2009, 2006, 2008, 2008,
+ 2004, 2005, 2006, 2009, 2009, 2010, 2009, 2007,
+ 2007, 2008, 2007, 2006, 2008, 2009, 2008, 2008,
+ 2006, 2007, 2009, 2008, 2007, 2007, 2008, 2007,
+ 2007, 2009, 2008, 2007, 2008, 2009, 2007, 2006,
+ 2005, 2004, 2007, 2006, 2006, 2004, 2004, 2003,
+ 2001, 2001, 2002, 2004, 2003, 2003, 2001, 2001,
+ 2002, 1998, 2000, 1999, 2000, 2001, 2001, 1999,
+ 2000, 1999, 1998, 1998, 2001, 2000, 1998, 1997,
+ 1996, 1995, 1994, 1994, 1995, 1995, 1993, 1996,
+ 1996, 1994, 1992, 1992, 1993, 1991, 1990, 1989,
+ 1991, 1987, 1988, 1989, 1989, 1989, 1992, 1990,
+ 1992, 1993, 1992, 1993, 1992, 1990, 1989, 1991,
+ 1990, 1990, 1988, 1989, 1991, 1991, 1992, 1991,
+ 1994, 1993, 1991, 1991, 1991, 1991, 1989, 1990,
+ 1990, 1991, 1989, 1991, 1990, 1991, 1989, 1988,
+ 1988, 1987, 1987, 1990, 1990, 1988, 1988, 1988,
+ 1988, 1987, 1987, 1984, 1986, 1985, 1986, 1988,
+ 1988, 1987, 1987, 1988, 1987, 1988, 1989, 1988,
+ 1989, 1991, 1990, 1988, 1990, 1989, 1987, 1987,
+ 1987, 1985, 1986, 1987, 1988, 1985, 1987, 1985,
+ 1986, 1988, 1988, 1988, 1988, 1987, 1988, 1988,
+ 1988, 1988, 1989, 1987, 1988, 1989, 1989, 1991,
+ 1990, 1992, 1990, 1990, 1991, 1991, 1993, 1994,
+ 1994, 1996, 1993, 1995, 1995, 1998, 1997, 1996,
+ 1997, 1997, 1998, 1998, 1997, 1999, 1999, 2000,
+ 2001, 2003, 2004, 2004, 2006, 2005, 2003, 2008,
+ 2006, 2005, 2005, 2005, 2008, 2009, 2011, 2011,
+ 2009, 2008, 2010, 2010, 2012, 2013, 2014, 2015,
+ 2015, 2014, 2015, 2015, 2013, 2013, 2013, 2013,
+ 2014, 2015, 2018, 2018, 2016, 2016, 2018, 2019,
+ 2017, 2015, 2017, 2016, 2016, 2016, 2015, 2017,
+ 2018, 2018, 2017, 2016, 2018, 2017, 2019, 2018,
+ 2016, 2015, 2014, 2014, 2016, 2018, 2018, 2015,
+ 2016, 2016, 2017, 2017, 2016, 2015, 2015, 2015,
+ 2015, 2018, 2016, 2017, 2016, 2014, 2016, 2017,
+ 2020, 2019, 2018, 2018, 2016, 2017, 2019, 2017,
+ 2017, 2013, 2015, 2016, 2015, 2015, 2016, 2016,
+ 2017, 2015, 2013, 2016, 2016, 2017, 2018, 2017,
+ 2016, 2017, 2016, 2016, 2017, 2019, 2019, 2021,
+ 2020, 2018, 2019, 2019, 2019, 2018, 2018, 2018,
+ 2020, 2021, 2022, 2023, 2019, 2018, 2022, 2022,
+ 2022, 2022, 2023, 2024, 2021, 2022, 2023, 2024,
+ 2024, 2024, 2025, 2027, 2028, 2029, 2030, 2028,
+ 2029, 2027, 2028, 2026, 2029, 2028, 2029, 2030,
+ 2029, 2031, 2029, 2030, 2029, 2028, 2028, 2030,
+ 2029, 2029, 2031, 2029, 2029, 2030, 2029, 2030,
+ 2030, 2029, 2027, 2026, 2025, 2024, 2024, 2023,
+ 2024, 2024, 2024, 2023, 2024, 2024, 2025, 2029,
+ 2027, 2025, 2027, 2029, 2029, 2033, 2034, 2035,
+ 2034, 2036, 2038, 2035, 2035, 2036, 2037, 2038,
+ 2036, 2038, 2038, 2037, 2038, 2039, 2039, 2033,
+ 2031, 2031, 2030, 2030, 2029, 2031, 2031, 2031,
+ 2031, 2032, 2034, 2034, 2037, 2038, 2038, 2039,
+ 2038, 2037, 2040, 2039, 2041, 2040, 2039, 2039,
+ 2038, 2041, 2038, 2035, 2037, 2037, 2037, 2035,
+ 2033, 2036, 2037, 2037, 2037, 2036, 2036, 2037,
+ 2035, 2036, 2038, 2039, 2040, 2039, 2039, 2038,
+ 2039, 2041, 2042, 2042, 2044, 2042, 2042, 2041,
+ 2041, 2040, 2041, 2041, 2040, 2041, 2041, 2042,
+ 2042, 2039, 2041, 2040, 2040, 2038, 2030, 2025,
+ 2024, 2015, 1982, 1933, 1910, 1911, 1896, 1878,
+ 1888, 1889, 1882, 1894, 1915, 1938, 1950, 1959,
+ 1977, 1987, 1989, 2008, 2032, 2054, 2074, 2093,
+ 2112, 2129, 2145, 2158, 2166, 2164, 2146, 2135,
+ 2129, 2105, 2079, 2064, 2040, 2017, 1999, 1987,
+ 1980, 1972, 1963, 1962, 1963, 1965, 1968, 1974,
+ 1982, 1991, 2001, 2014, 2031, 2043, 2058, 2074,
+ 2089, 2102, 2120, 2136, 2134, 2127, 2123, 2121,
+ 2116, 2102, 2092, 2087, 2073, 2048, 2032, 2017,
+ 1998, 1986, 1973, 1960, 1956, 1949, 1945, 1951,
+ 1957, 1960, 1964, 1976, 1985, 1994, 2014, 2031,
+ 2039, 2059, 2079, 2089, 2104, 2113, 2117, 2118,
+ 2114, 2115, 2117, 2112, 2108, 2106, 2085, 2057,
+ 2049, 2039, 2026, 2019, 2006, 1988, 1975, 1961,
+ 1958, 1961, 1957, 1956, 1962, 1965, 1966, 1975,
+ 1988, 1997, 2008, 2012, 2018, 2029, 2036, 2047,
+ 2059, 2063, 2061, 2057, 2059, 2065, 2062, 2053,
+ 2048, 2042, 2029, 2024, 2023, 2023, 2023, 2020,
+ 2015, 2015, 2020, 2021, 2028, 2040, 2042, 2043,
+ 2049, 2053, 2053, 2058, 2066, 2068, 2061, 2071,
+ 2089, 2081, 2072, 2088, 2089, 2074, 2061, 2052,
+ 2049, 2041, 2027, 2014, 2011, 2007, 2010, 2025,
+ 2026, 2000, 1982, 1984, 1991, 1993, 1992, 1998,
+ 1997, 2001, 2015, 2038, 2052, 2052, 2057, 2068,
+ 2070, 2067, 2071, 2084, 2092, 2087, 2079, 2086,
+ 2089, 2076, 2091, 2106, 2076, 2063, 2079, 2070,
+ 2058, 2064, 2060, 2040, 2022, 2035, 2043, 2023,
+ 2024, 2042, 2037, 2022, 2026, 2044, 2030, 2014,
+ 2025, 2029, 2023, 2034, 2043, 2048, 2051, 2031,
+ 2030, 2043, 2037, 2039, 2046, 2041, 2033, 2026,
+ 2038, 2050, 2044, 2050, 2056, 2047, 2041, 2035,
+ 2036, 2044, 2035, 2028, 2033, 2028, 2029, 2031,
+ 2038, 2048, 2027, 2017, 2036, 2036, 2033, 2036,
+ 2039, 2039, 2031, 2034, 2049, 2050, 2045, 2033,
+ 2032, 2037, 2022, 2021, 2036, 2032, 2031, 2028,
+ 2032, 2038, 2028, 2028, 2036, 2025, 2017, 2013,
+ 2017, 2021, 2014, 2018, 2027, 2020, 2021, 2038,
+ 2042, 2032, 2021, 2026, 2036, 2026, 2014, 2021,
+ 2023, 2009, 2001, 2003, 2002, 1998, 1986, 1985,
+ 1992, 1981, 1979, 2006, 2013, 2003, 2013, 2026,
+ 2027, 2029, 2047, 2064, 2055, 2040, 2052, 2069,
+ 2069, 2063, 2053, 2052, 2046, 2028, 2007, 1999,
+ 1993, 1985, 1981, 1977, 1976, 1971, 1976, 1986,
+ 1977, 1973, 1984, 1996, 2006, 2018, 2029, 2038,
+ 2045, 2052, 2073, 2092, 2105, 2115, 2106, 2063,
+ 2025, 2028, 2033, 1998, 1963, 1962, 1957, 1928,
+ 1932, 1964, 1977, 1980, 1979, 1996, 2011, 2003,
+ 2001, 2012, 2028, 2039, 2041, 2060, 2086, 2091,
+ 2093, 2112, 2108, 2078, 2072, 2073, 2047, 2018,
+ 1989, 1972, 1968, 1939, 1916, 1928, 1925, 1906,
+ 1904, 1923, 1950, 1953, 1945, 1974, 2006, 2012,
+ 2042, 2095, 2105, 2098, 2110, 2108, 2097, 2111,
+ 2111, 2067, 2035, 2022, 1989, 1970, 1956, 1929,
+ 1915, 1889, 1861, 1867, 1873, 1875, 1893, 1898,
+ 1916, 1937, 1945, 1985, 2034, 2062, 2080, 2101,
+ 2113, 2117, 2142, 2178, 2174, 2152, 2142, 2126,
+ 2110, 2077, 2040, 2046, 2017, 1943, 1932, 1944,
+ 1911, 1882, 1892, 1928, 1922, 1899, 1949, 1987,
+ 1968, 1974, 2010, 2042, 2041, 2024, 2063, 2094,
+ 2082, 2105, 2114, 2114, 2123, 2111, 2131, 2121,
+ 2064, 2060, 2046, 2015, 2001, 1965, 1958, 1953,
+ 1938, 1957, 1955, 1979, 2008, 1983, 2027, 2079,
+ 2038, 2052, 2115, 2120, 2093, 2092, 2122, 2126,
+ 2103, 2103, 2109, 2106, 2073, 2025, 2035, 2018,
+ 1956, 1950, 1939, 1887, 1861, 1850, 1851, 1873,
+ 1863, 1870, 1912, 1936, 1960, 1994, 2022, 2060,
+ 2082, 2081, 2114, 2142, 2132, 2146, 2165, 2166,
+ 2156, 2137, 2143, 2144, 2100, 2076, 2083, 2051,
+ 2018, 2004, 1984, 1971, 1946, 1935, 1955, 1962,
+ 1973, 1991, 1990, 2012, 2041, 2054, 2094, 2122,
+ 2104, 2120, 2135, 2114, 2136, 2152, 2137, 2137,
+ 2123, 2128, 2127, 2082, 2083, 2077, 2017, 1986,
+ 1969, 1938, 1910, 1894, 1901, 1896, 1905, 1928,
+ 1921, 1958, 2016, 2007, 2012, 2046, 2031, 2038,
+ 2079, 2074, 2074, 2093, 2091, 2102, 2131, 2117,
+ 2102, 2109, 2101, 2084, 2076, 2073, 2058, 2032,
+ 2016, 2006, 2004, 2009, 1990, 1981, 2006, 1996,
+ 1982, 2010, 2035, 2023, 2021, 2040, 2045, 2035,
+ 2033, 2065, 2079, 2050, 2047, 2074, 2093, 2116,
+ 2124, 2123, 2129, 2117, 2126, 2145, 2157, 2161,
+ 2115, 2056, 2011, 1943, 1899, 1882, 1861, 1837,
+ 1795, 1781, 1812, 1825, 1842, 1895, 1920, 1929,
+ 1948, 1966, 1998, 2039, 2072, 2100, 2139, 2179,
+ 2230, 2299, 2359, 2371, 2355, 2347, 2345, 2314,
+ 2274, 2244, 2183, 2096, 2018, 1968, 1954, 1911,
+ 1860, 1868, 1870, 1850, 1854, 1874, 1916, 1951,
+ 1948, 1976, 2058, 2103, 2106, 2166, 2246, 2250,
+ 2237, 2292, 2361, 2357, 2314, 2333, 2334, 2254,
+ 2225, 2223, 2161, 2099, 2047, 2009, 2004, 1971,
+ 1936, 1926, 1887, 1852, 1883, 1911, 1896, 1942,
+ 1999, 1955, 1965, 2055, 2063, 2096, 2166, 2165,
+ 2156, 2152, 2153, 2179, 2174, 2160, 2142, 2090,
+ 2086, 2085, 2045, 2052, 2047, 2003, 1985, 1996,
+ 2024, 2019, 2009, 2035, 2003, 1957, 1988, 2028,
+ 2047, 2039, 2015, 2029, 2040, 2024, 2046, 2086,
+ 2086, 2049, 2036, 2066, 2056, 2031, 2046, 2058,
+ 2024, 2008, 2029, 2032, 2023, 2038, 2043, 2026,
+ 2034, 2052, 2059, 2071, 2082, 2069, 2042, 2059,
+ 2091, 2079, 2065, 2085, 2086, 2066, 2100, 2140,
+ 2106, 2090, 2131, 2120, 2080, 2087, 2088, 2031,
+ 1987, 1986, 1965, 1930, 1928, 1957, 1972, 1962,
+ 1969, 2023, 2075, 2066, 2085, 2149, 2139, 2113,
+ 2166, 2204, 2159, 2145, 2185, 2183, 2164, 2192,
+ 2207, 2198, 2220, 2226, 2194, 2186, 2185, 2160,
+ 2127, 2116, 2092, 2018, 1990, 2024, 2011, 1975,
+ 2015, 2069, 2056, 2051, 2112, 2149, 2131, 2136,
+ 2165, 2167, 2147, 2143, 2161, 2183, 2178, 2173,
+ 2217, 2237, 2217, 2227, 2217, 2182, 2153, 2107,
+ 2080, 2073, 2026, 1969, 1939, 1909, 1879, 1869,
+ 1888, 1899, 1891, 1904, 1935, 1966, 1995, 2030,
+ 2069, 2105, 2107, 2085, 2107, 2134, 2109, 2104,
+ 2149, 2159, 2133, 2156, 2196, 2187, 2184, 2200,
+ 2191, 2162, 2140, 2110, 2059, 1991, 1940, 1916,
+ 1882, 1870, 1864, 1831, 1829, 1866, 1889, 1900,
+ 1928, 1948, 1934, 1917, 1941, 1954, 1934, 1942,
+ 1953, 1937, 1957, 1998, 2036, 2076, 2104, 2124,
+ 2126, 2111, 2113, 2116, 2079, 2029, 1992, 1945,
+ 1883, 1881, 1918, 1894, 1878, 1928, 1936, 1936,
+ 1997, 2025, 2012, 2037, 2053, 2045, 2058, 2068,
+ 2078, 2105, 2120, 2110, 2107, 2116, 2123, 2133,
+ 2150, 2145, 2135, 2139, 2111, 2106, 2141, 2125,
+ 2099, 2107, 2100, 2097, 2109, 2113, 2126, 2133,
+ 2135, 2158, 2179, 2177, 2167, 2177, 2189, 2156,
+ 2127, 2146, 2115, 2068, 2098, 2095, 2055, 2055,
+ 2064, 2077, 2086, 2096, 2135, 2152, 2148, 2171,
+ 2176, 2162, 2172, 2168, 2159, 2144, 2126, 2121,
+ 2095, 2097, 2110, 2083, 2090, 2108, 2094, 2086,
+ 2083, 2064, 2042, 2027, 2022, 2000, 1986, 1994,
+ 1989, 1997, 2002, 2004, 2048, 2075, 2066, 2096,
+ 2114, 2096, 2102, 2113, 2081, 2049, 2051, 2061,
+ 2039, 2025, 2034, 2017, 2016, 2032, 2055, 2065,
+ 2063, 2080, 2084, 2063, 2042, 2053, 2030, 1987,
+ 2002, 1986, 1928, 1937, 1953, 1924, 1937, 1982,
+ 1985, 1973, 1983, 1989, 1971, 1963, 1975, 1953,
+ 1915, 1900, 1906, 1928, 1934, 1936, 1935, 1944,
+ 1964, 1966, 1954, 1945, 1926, 1895, 1876, 1856,
+ 1826, 1814, 1808, 1791, 1785, 1797, 1802, 1819,
+ 1840, 1849, 1875, 1900, 1890, 1886, 1908, 1923,
+ 1913, 1891, 1897, 1915, 1902, 1902, 1923, 1935,
+ 1960, 1988, 2021, 2066, 2093, 2121, 2153, 2175,
+ 2204, 2227, 2229, 2241, 2257, 2266, 2270, 2291,
+ 2314, 2318, 2338, 2362, 2337, 2306, 2310, 2309,
+ 2272, 2231, 2194, 2176, 2193, 2173, 2148, 2166,
+ 2180, 2188, 2212, 2244, 2271, 2300, 2316, 2313,
+ 2346, 2371, 2353, 2356, 2371, 2361, 2340, 2332,
+ 2340, 2330, 2322, 2329, 2336, 2339, 2331, 2337,
+ 2354, 2328, 2297, 2297, 2276, 2254, 2251, 2251,
+ 2267, 2287, 2299, 2312, 2353, 2396, 2393, 2380,
+ 2388, 2374, 2323, 2274, 2243, 2211, 2164, 2120,
+ 2103, 2099, 2073, 2055, 2068, 2065, 2049, 2043,
+ 2037, 2025, 2017, 2011, 2000, 1995, 1992, 1977,
+ 1967, 1979, 1977, 1955, 1948, 1951, 1946, 1923,
+ 1905, 1895, 1864, 1815, 1765, 1733, 1683, 1627,
+ 1593, 1563, 1542, 1544, 1551, 1563, 1590, 1613,
+ 1631, 1654, 1676, 1692, 1698, 1703, 1716, 1731,
+ 1743, 1767, 1789, 1802, 1817, 1839, 1859, 1863,
+ 1856, 1843, 1827, 1801, 1774, 1754, 1727, 1695,
+ 1677, 1654, 1635, 1635, 1625, 1610, 1618, 1634,
+ 1634, 1643, 1665, 1681, 1689, 1711, 1726, 1742,
+ 1774, 1815, 1880, 1951, 2022, 2119, 2197, 2263,
+ 2363, 2462, 2534, 2609, 2666, 2684, 2710, 2746,
+ 2766, 2776, 2767, 2757, 2763, 2765, 2770, 2760,
+ 2731, 2718, 2701, 2673, 2666, 2653, 2622, 2604,
+ 2616, 2632, 2630, 2655, 2718, 2777, 2832, 2873,
+ 2915, 2982, 3039, 3059, 3076, 3083, 3031, 2947,
+ 2886, 2790, 2659, 2541, 2422, 2298, 2187, 2089,
+ 2012, 1960, 1912, 1862, 1820, 1812, 1835, 1854,
+ 1884, 1926, 1963, 1992, 2034, 2093, 2133, 2162,
+ 2205, 2232, 2233, 2245, 2258, 2252, 2247, 2228,
+ 2184, 2136, 2088, 2040, 1994, 1963, 1932, 1898,
+ 1889, 1908, 1931, 1964, 2010, 2050, 2083, 2116,
+ 2151, 2177, 2197, 2209, 2200, 2178, 2150, 2115,
+ 2066, 2015, 1957, 1883, 1804, 1730, 1654, 1568,