Hello Jenkins Builder,
I'd like you to reexamine a change. Please visit
https://gerrit.osmocom.org/3162
to look at the new patch set (#2).
Add pseudo-random bit sequence generator to libosmcoore
These PRBS sequences are specified in ITU-T O.150. They are typically
used as test data to be transmitted for BER (bit error rate) testing.
Change-Id: I227b6a6e86a251460ecb816afa9a7439d5fb94d1
---
M include/Makefile.am
A include/osmocom/core/prbs.h
M src/Makefile.am
A src/prbs.c
M tests/Makefile.am
A tests/prbs/prbs_test.c
A tests/prbs/prbs_test.ok
M tests/testsuite.at
8 files changed, 174 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/62/3162/2
diff --git a/include/Makefile.am b/include/Makefile.am
index e0c1a2b..4e92d55 100644
--- a/include/Makefile.am
+++ b/include/Makefile.am
@@ -31,6 +31,7 @@
osmocom/core/macaddr.h \
osmocom/core/msgb.h \
osmocom/core/panic.h \
+ osmocom/core/prbs.h \
osmocom/core/prim.h \
osmocom/core/process.h \
osmocom/core/rate_ctr.h \
diff --git a/include/osmocom/core/prbs.h b/include/osmocom/core/prbs.h
new file mode 100644
index 0000000..aaca17d
--- /dev/null
+++ b/include/osmocom/core/prbs.h
@@ -0,0 +1,25 @@
+#pragma once
+#include <stdint.h>
+#include <osmocom/core/bits.h>
+
+/*! \brief definition of a PRBS sequence */
+struct osmo_prbs {
+ const char *name; /*!< human-readable name */
+ unsigned int len; /*!< length in bits */
+ uint64_t coeff; /*!< coefficients */
+};
+
+/*! \brief state of a given PRBS sequence generator */
+struct osmo_prbs_state {
+ const struct osmo_prbs *prbs;
+ uint64_t state;
+};
+
+extern const struct osmo_prbs osmo_prbs7;
+extern const struct osmo_prbs osmo_prbs9;
+extern const struct osmo_prbs osmo_prbs11;
+extern const struct osmo_prbs osmo_prbs15;
+
+void osmo_prbs_state_init(struct osmo_prbs_state *st, const struct osmo_prbs
*prbs);
+ubit_t osmo_prbs_get_ubit(struct osmo_prbs_state *state);
+int osmo_prbs_get_ubits(ubit_t *out, unsigned int out_len, struct
osmo_prbs_state *state);
diff --git a/src/Makefile.am b/src/Makefile.am
index d8fceca..8e7ef4b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -21,7 +21,7 @@
conv.c application.c rbtree.c strrb.c \
loggingrb.c crc8gen.c crc16gen.c crc32gen.c crc64gen.c
\
macaddr.c stat_item.c stats.c stats_statsd.c prim.c \
- conv_acc.c conv_acc_generic.c sercomm.c
+ conv_acc.c conv_acc_generic.c sercomm.c prbs.c
if HAVE_SSE3
libosmocore_la_SOURCES += conv_acc_sse.c
diff --git a/src/prbs.c b/src/prbs.c
new file mode 100644
index 0000000..be52fd4
--- /dev/null
+++ b/src/prbs.c
@@ -0,0 +1,74 @@
+/* Osmocom implementation of pseudo-random bit sequence generation */
+/* (C) 2017 by Harald Welte <[email protected]> */
+
+#include <stdint.h>
+#include <string.h>
+#include <osmocom/core/bits.h>
+#include <osmocom/core/prbs.h>
+
+/*! \brief PRBS-7 according ITU-T O.150 */
+const struct osmo_prbs osmo_prbs7 = {
+ /* x^7 + x^6 + 1 */
+ .name = "PRBS-7",
+ .len = 7,
+ .coeff = (1<<6) | (1<<5),
+};
+
+/*! \brief PRBS-9 according ITU-T O.150 */
+const struct osmo_prbs osmo_prbs9 = {
+ /* x^9 + x^5 + 1 */
+ .name = "PRBS-9",
+ .len = 9,
+ .coeff = (1<<8) | (1<<4),
+};
+
+/*! \brief PRBS-11 according ITU-T O.150 */
+const struct osmo_prbs osmo_prbs11 = {
+ /* x^11 + x^9 + 1 */
+ .name = "PRBS-11",
+ .len = 11,
+ .coeff = (1<<10) | (1<<8),
+};
+
+/*! \brief PRBS-15 according ITU-T O.150 */
+const struct osmo_prbs osmo_prbs15 = {
+ /* x^15 + x^14+ 1 */
+ .name = "PRBS-15",
+ .len = 15,
+ .coeff = (1<<14) | (1<<13),
+};
+
+/*! \brief Initialize the given caller-allocated PRBS state */
+void osmo_prbs_state_init(struct osmo_prbs_state *st, const struct osmo_prbs
*prbs)
+{
+ memset(st, 0, sizeof(*st));
+ st->prbs = prbs;
+ st->state = 1;
+}
+
+static void osmo_prbs_process_bit(struct osmo_prbs_state *state, ubit_t bit)
+{
+ state->state >>= 1;
+ if (bit)
+ state->state ^= state->prbs->coeff;
+}
+
+/*! \brief Get the next bit out of given PRBS instance */
+ubit_t osmo_prbs_get_ubit(struct osmo_prbs_state *state)
+{
+ ubit_t result = state->state & 0x1;
+ osmo_prbs_process_bit(state, result);
+
+ return result;
+}
+
+/*! \brief Fill buffer of unpacked bits with next bits out of given PRBS
instance */
+int osmo_prbs_get_ubits(ubit_t *out, unsigned int out_len, struct
osmo_prbs_state *state)
+{
+ unsigned int i;
+
+ for (i = 0; i < out_len; i++)
+ out[i] = osmo_prbs_get_ubit(state);
+
+ return i;
+}
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 158c37e..37378fb 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -15,7 +15,7 @@
write_queue/wqueue_test socket/socket_test \
coding/coding_test conv/conv_gsm0503_test \
abis/abis_test endian/endian_test sercomm/sercomm_test \
- stats/stats_test
+ stats/stats_test prbs/prbs_test
if ENABLE_MSGFILE
check_PROGRAMS += msgfile/msgfile_test
@@ -183,6 +183,9 @@
sercomm_sercomm_test_SOURCES = sercomm/sercomm_test.c
sercomm_sercomm_test_LDADD = $(top_builddir)/src/libosmocore.la
+prbs_prbs_test_SOURCES = prbs/prbs_test.c
+prbs_prbs_test_LDADD = $(top_builddir)/src/libosmocore.la
+
# The `:;' works around a Bash 3.2 bug when the output is not writeable.
$(srcdir)/package.m4: $(top_srcdir)/configure.ac
:;{ \
@@ -226,7 +229,7 @@
osmo-auc-gen/osmo-auc-gen_test.ok \
osmo-auc-gen/osmo-auc-gen_test.err \
conv/conv_gsm0503_test.ok endian/endian_test.ok \
- sercomm/sercomm_test.ok
+ sercomm/sercomm_test.ok prbs/prbs_test.ok
DISTCLEANFILES = atconfig atlocal conv/gsm0503_test_vectors.c
BUILT_SOURCES = conv/gsm0503_test_vectors.c
diff --git a/tests/prbs/prbs_test.c b/tests/prbs/prbs_test.c
new file mode 100644
index 0000000..b57401d
--- /dev/null
+++ b/tests/prbs/prbs_test.c
@@ -0,0 +1,46 @@
+#include <stdio.h>
+#include <string.h>
+#include <osmocom/core/prbs.h>
+
+static void dump_bits(const ubit_t *bits, unsigned int num_bits)
+{
+ unsigned int i;
+
+ for (i = 0; i < num_bits; i++) {
+ if (bits[i])
+ fputc('1', stdout);
+ else
+ fputc('0', stdout);
+ }
+ fputc('\n',stdout);
+}
+
+static void test_prbs(const struct osmo_prbs *prbs)
+{
+ struct osmo_prbs_state st;
+ unsigned int i;
+
+ printf("Testing PRBS sequence generation '%s'\n", prbs->name);
+ osmo_prbs_state_init(&st, prbs);
+
+ /* 2 lines */
+ for (i = 0; i < 2; i++) {
+ unsigned int seq_len = (1 << prbs->len)-1;
+ ubit_t bits[seq_len];
+ memset(bits, 0, sizeof(bits));
+ osmo_prbs_get_ubits(bits, sizeof(bits), &st);
+ dump_bits(bits, sizeof(bits));
+ }
+
+ printf("\n");
+}
+
+int main(int argc, char **argv)
+{
+ test_prbs(&osmo_prbs7);
+ test_prbs(&osmo_prbs9);
+ test_prbs(&osmo_prbs11);
+ test_prbs(&osmo_prbs15);
+
+ exit(0);
+}
diff --git a/tests/prbs/prbs_test.ok b/tests/prbs/prbs_test.ok
new file mode 100644
index 0000000..e0c587c
--- /dev/null
+++ b/tests/prbs/prbs_test.ok
@@ -0,0 +1,16 @@
+Testing PRBS sequence generation 'PRBS-7'
+1000001100001010001111001000101100111010100111110100001110001001001101101011011110110001101001011101110011001010101111111000000
+1000001100001010001111001000101100111010100111110100001110001001001101101011011110110001101001011101110011001010101111111000000
+
+Testing PRBS sequence generation 'PRBS-9'
+1000010001100001001110010101011000011011110100110111001000101000010101101001111110110010010010110111111001001101010011001100000001100011001010001101001011111110100010110001110101100101100111100011111011101000001101011011011101100000101101011111010101010000001010010101111001011101110000001110011101001001111010111010100010010000110011100001011110110110011010000111011110000111111111000001111011111000101110011001000001001010011101101000111100111110011011000101010010001110001101101010111000100110001000100000000
+1000010001100001001110010101011000011011110100110111001000101000010101101001111110110010010010110111111001001101010011001100000001100011001010001101001011111110100010110001110101100101100111100011111011101000001101011011011101100000101101011111010101010000001010010101111001011101110000001110011101001001111010111010100010010000110011100001011110110110011010000111011110000111111111000001111011111000101110011001000001001010011101101000111100111110011011000101010010001110001101101010111000100110001000100000000
+
+Testing PRBS sequence generation 'PRBS-11'
+1000000001010000001000100001010101001000000011010000011100100011011101011101010001010000101000100100010101101010000110000100111100101110011100101111011100100101011101100001010111001000010111010010010100110110001111011101100101010111100000010011000010111110010010001110110101101011000110001110111101101010010110000110011100111111011110000101001100100011111101011000010001110010101101110000110101100111000111110110110001011011101001101010011110000111001100110111111111010000000100100000101101000100110010101111110000100001100101001111100011100011011011011101101101010110110000011011100011101011011010001101100101110111100101010011100000111011000110101110111000101010110100000011001000011111010011000100111110101110001000101101010100110000001111100001100011001111011111100101000011100010011011010111101100010010111010110010100011110001011001101001111110011100001111011001100101111111100100000011101000011010010011100110111011111010101000100000010101000010000010010100010110001010011101000111010010110
1001100110011111111111000000000110000000111100000110011000111111110110000001011100001001011001011001111001111100111100011110011011001111101111100010100011010001011100101001011100011001011011111001101000111110010110001110011101101111010110100100011001101011111110001000001101010001110000101101100100110111101111010010100100110001101111101110100010101001010000011000100011110101011001000001111010001100100101111101100100010111101010010010000110110100111011001110101111101000100010010101010110000000011100000011011000011101110011010101111100000100011000101011110100001001001001011011011001101101111110110100001011001001001111011011100101101011100110001011111101001000010011010010111100110010011111110111000001010110001000011101010011010000111100100110011101111111010100000100001000101001010100011000001011110001001001101011011110001101001101110011110101111001000100111010101110100000101001000100011010101011100000001011000001001110001011101101001010110011000011111110011000001111110001100001101111001
11010011110100111001001110111011101010101010000000000
+1000000001010000001000100001010101001000000011010000011100100011011101011101010001010000101000100100010101101010000110000100111100101110011100101111011100100101011101100001010111001000010111010010010100110110001111011101100101010111100000010011000010111110010010001110110101101011000110001110111101101010010110000110011100111111011110000101001100100011111101011000010001110010101101110000110101100111000111110110110001011011101001101010011110000111001100110111111111010000000100100000101101000100110010101111110000100001100101001111100011100011011011011101101101010110110000011011100011101011011010001101100101110111100101010011100000111011000110101110111000101010110100000011001000011111010011000100111110101110001000101101010100110000001111100001100011001111011111100101000011100010011011010111101100010010111010110010100011110001011001101001111110011100001111011001100101111111100100000011101000011010010011100110111011111010101000100000010101000010000010010100010110001010011101000111010010110
1001100110011111111111000000000110000000111100000110011000111111110110000001011100001001011001011001111001111100111100011110011011001111101111100010100011010001011100101001011100011001011011111001101000111110010110001110011101101111010110100100011001101011111110001000001101010001110000101101100100110111101111010010100100110001101111101110100010101001010000011000100011110101011001000001111010001100100101111101100100010111101010010010000110110100111011001110101111101000100010010101010110000000011100000011011000011101110011010101111100000100011000101011110100001001001001011011011001101101111110110100001011001001001111011011100101101011100110001011111101001000010011010010111100110010011111110111000001010110001000011101010011010000111100100110011101111111010100000100001000101001010100011000001011110001001001101011011110001101001101110011110101111001000100111010101110100000101001000100011010101011100000001011000001001110001011101101001010110011000011111110011000001111110001100001101111001
11010011110100111001001110111011101010101010000000000
+
+Testing PRBS sequence generation 'PRBS-15'
+1000000000000011000000000000101000000000001111000000000010001000000000110011000000001010101000000011111111000000100000001000001100000011000010100000101000111100001111001000100010001011001100110011101010101010100111111111111101000000000000111000000000001001000000000011011000000000101101000000001110111000000010011001000000110101011000001011111101000011100000111000100100001001001101100011011010110100101101111011101110110001100110011010010101010101110111111111110011000000000010101000000000111111000000001000001000000011000011000000101000101000001111001111000010001010001000110011110011001010100010101011111100111111100000101000000100001111000001100010001000010100110011000111101010101001000111111111011001000000001101011000000010111101000000111000111000001001001001000011011011011000101101101101001110110110111010011011011001110101101101010011110110111110100011011000011100101101000100101110111001101110011001010110010101011111010111111100001111000000100010001000001100110011000010101010101000111
1111111110010000000000010110000000000111010000000001001110000000011010010000000101110110000001110011010000010010101110000110111110010001011000010110011101000111010100111001001111101001011010000111011101110001001100110010011010101010110101111111111011110000000001100010000000010100110000000111101010000001000111110000011001000010000101011000110001111101001010010000111011110110001001100011010011010100101110101111101110011110000110010100010001010111100110011111000101010100001001111111100011010000000100101110000001101110010000010110010110000111010111010001001111001110011010001010010101110011110111110010100011000010111100101000111000101111001001001110001011011010010011101101110110100110110011011101011010101100111101111110101000110000011111001010000100001011110001100011100010010100100100110111101101101011000110110111101001011011000111011101101001001100110111011010101011001101111111101010110000000111111010000001000001110000011000010010000101000110110001111001011010010001011101110110011100110
0110101001010101011111011111111100001100000000100010100000001100111100000010101000100000111111001100001000001010100011000011111100101000100000101111001100001110001010100010010011111100110110100000101011011100001111101100100010000110101100110001011110101010011100011111110100100100000011101101100000100110110100001101011011100010111101100100111000110101101001001011110111011011100011001101100100101010110101101111111011110110000001100011010000010100101110000111101110010001000110010110011001010111010101011111001111111100001010000000100011110000001100100010000010101100110000111110101010001000011111110011000100000010101001100000111111010100001000001111100011000010000100101000110001101111001010010110001011110111010011100011001110100100101010011101101111110100110110000011101011010000100111101110001101000110010010111001010110111001011111011001011100001101011100100010111100101100111000101110101001001110011111011010010100001101110111100010110011000100111010101001101001111111010111010000001111001
1100000100010100100001100111101100010101000110100111111001011101000001011100111000011100101001000100101111011001101110001101010110010010111111010110111000001111011001000010001101011000110010111101001010111000111011111001001001100001011011010100011101101111100100110110000101101011010001110111101110010011000110010110101001010111011111011111001100001100001010100010100011111100111100100000101000101100001111001110100010001010011100110011110100101010100011101111111100100110000000101101010000001110111110000010011000010000110101000110001011111001010011100001011110100100011100011101100100100100110101101101101011110110110111100011011011000100101101101001101110110111010110011011001111010101101010001111110111110010000011000010110000101000111010001111001001110010001011010010110011101110111010100110011001111101010101010000111111111110001000000000010011000000000110101000000001011111000000011100001000000100100011000001101100101000010110101111000111011110001001001100010011011010100110101101111101011
1101100001111000110100010001001011100110011011100101010101100101111111110101110000000011110010000000100010110000001100111010000010101001110000111111010010001000001110110011000010011010101000110101111111001011110000001011100010000011100100110000100101101010001101110111110010110011000010111010101000111001111111001001010000001011011110000011101100010000100110100110001101011101010010111100111110111000101000011001001111000101011010001001111101110011010000110010101110001010111110010011111000010110100001000111011100011001001100100101011010101101111101111110110000110000011010001010000101110011110001110010100010010010111100110110111000101011011001001111101101011010000110111101110001011000110010011101001010110100111011111011101001100001100111010100010101001111100111111010000101000001110001111000010010010001000110110110011001011011010101011101101111111100110110000000101011010000001111101110000010000110010000110001010110001010011111010011110100001110100011100010011100100100110100101101101011101
1101101111001100110110001010101011010011111111101110100000000110011100000001010100100000011111101100000100000110100001100001011100010100011100100111100100101101000101101110111001110110011001010011010101011110101111111100011110000000100100010000001101100110000010110101010000111011111110001001100000010011010100000110101111100001011110000100011100010001100100100110010101101101010111110110111111000011011000001000101101000011001110111000101010011001001111110101011010000011111101110000100000110010001100001010110010100011111010111100100001111000101100010001001110100110011010011101010101110100111111110011101000000010100111000000111101001000001000111011000011001001101000101011010111001111101111001010000110001011110001010011100010011110100100110100011101101011100100110111100101101011000101110111101001110011000111010010101001001110111111011010011000001101110101000010110011111000111010100001001001111100011011010000100101101110001101110110010010110011010110111010101111011001111110001101010000010
0101111100001101110000100010110010001100111010110010101001111010111111010001111000001110010001000010010110011000110111010101001011001111111011101010000001100111110000010101000010000111111000110001000001001010011000011011110101000101100011111001110100100001010011101100011110100110100100011101011101100100111100110101101000101011110111001111100011001010000100101011110001101111100010010110000100110111010001101011001110010111101010010111000111110111001001000011001011011000101011101101001111100110111010000101011001110001111101010010010000111110110110001000011011010011000101101110101001110110011111010011010100001110101111100010011110000100110100010001101011100110010111100101010111000101111111001001110000001011010010000011101110110000100110011010001101010101110010111111110010111000000010111001000000111001011000001001011101000011011100111000101100101001001110101111011010011110001101110100010010110011100110111010100101011001111101111101010000110000111110001010001000010011110011000110100010101
0010111001111110111001010000011001011110000101011100010001111100100110010000101101010110001110111111010010011000001110110101000010011011111000110101100001001011110100011011100011100101100100100101110101101101110011110110110010100011011010111100101101111000101110110001001110011010011010010101110101110111110011110011000010100010101000111100111111001000101000001011001111000011101010001000100111110011001101000010101010111000111111111001001000000001011011000000011101101000000100110111000001101011001000010111101011000111000111101001001001000111011011011001001101101101011010110110111101111011011000110001101101001010010110111011110111011001100011001101010100101010111111101111111000000110000001000001010000011000011110000101000100010001111001100110010001010101010110011111111111010100000000001111100000000010000100000000110001100000001010010100000011110111100000100011000100001100101001100010101111010100111110001111101000010010000111000110110001001001011010011011011101110101101100110011110110101
0101000110111111111001011000000001011101000000011100111000000100101001000001101111011000010110001101000111010010111001001110111001011010011001011101110101011100110011111100101010100000101111111100001110000000100010010000001100110110000010101011010000111111101110001000000110010011000001010110101000011111011111000100001100001001100010100011010100111100101111101000101110000111001110010001001010010110011011110111010101100011001111110100101010000011101111110000100110000010001101010000110010111110001010111000010011111001000110100001011001011100011101011100100100111100101101101000101110110111001110011011001010010101101011110111110111100011000011000100101000101001101111001111010110001010001111010011110010001110100010110010011100111010110100101001111011101111010001100110001110010101010010010111111110110111000000011011001000000101101011000001110111101000010011000111000110101001001001011111011011011100001101101100100010110110101100111011011110101001101100011111010110100100001111011101100010001
1001101001100101010111010101111111001111110000001010000010000011110000110000100010001010001100110011110010101010100010111111111100111000000000101001000000001111011000000010001101000000110010111000001010111001000011111001011000100001011101001100011100111010100100101001111101101111010000110110001110001011010010010011101110110110100110011011011101010101101100111111110110101000000011011111000000101100001000001110100011000010011100101000110100101111001011101110001011100110010011100101010110100101111111011101110000001100110010000010101010110000111111111010001000000001110011000000010010101000000110111111000001011000001000011101000011000100111000101001101001001111010111011010001111001101110010001010110010110011111010111010100001111001111100010001010000100110011110001101010100010010111111100110111000000101011001000001111101011000010000111101000110001000111001010011001001011110101011011100011111101100100100000110101101100001011110110100011100011011100100100101100101101101110101110110110011110
0110110101000101011011111001111101100001010000110100011110001011100100010011100101100110100101110101011101110011111100110010100000101010111100001111111000100010000001001100110000011010101010000101111111110001110000000010010010000000110110110000001011011010000011101101110000100110110010001101011010110010111101111010111000110001111001001010010001011011110110011101100011010100110100101111101011101110000111100110010001000101010110011001111111010101010000001111111110000010000000010000110000000110001010000001010011110000011110100010000100011100110001100100101010010101101111110111110110000011000011010000101000101110001111001110010010001010010110110011110111011010100011001101111100101010110000101111111010001110000001110010010000010010110110000110111011010001011001101110011101010110010100111111010111101000001111000111000010001001001000110011011011001010101101101011111110110111100000011011000100000101101001100001110111010100010011001111100110101010000101011111110001111100000010010000100000110
1100011000010110100101000111011101111001001100110001011010101010011101111111110100110000000011101010000000100111110000001101000010000010111000110000111001001010001001011011110011011101100010101100110100111110101011101000011111100111000100000101001001100001111011010100010001101111100110010110000101010111010001111111001110010000001010010110000011110111010000100011001110001100101010010010101111110110111110000011011000010000101101000110001110111001010010011001011110110101011100011011111100100101100000101101110100001110110011100010011010100100110101111101101011110000110111100010001011000100110011101001101010100111010111111101001111000000111010001000001001110011000011010010101000101110111111001110011000001010010101000011110111111000100011000001001100101000011010101111000101111110001001110000010011010010000110101110110001011110011010011100010101110100100111110011101101000010100110111000111101011001001000111101011011001000111101101011001000110111101011001011000111101011101001000111100111011
0010001010011010110011110101111010100011110001111100100010010000101100110110001110101011010010011111101110110100000110011011100001010101100100011111110101100100000011110101100000100011110100001100100011100010101100100100111110101101101000011110110111000100011011001001100101101011010101110111101111110011000110000010101001010000111111011110001000001100010011000010100110101000111101011111001000111100001011001000100011101011001100100111101010101101000111111110111001000000011001011000000101011101000001111100111000010000101001000110001111011001010010001101011110110010111100011010111000100101111001001101110001011010110010011101111010110100110001111011101010010001100111110110010101000011010111111000101111000001001110001000011010010011000101110110101001110011011111010010101100001110111110100010011000011100110101000100101011111001101111100001010110000100011111010001100100001110010101100010010111110100110111000011101011001000100111101011001101000111101010111001000111111001011001000001011101011
0000111001111010001001010001110011011110010010101100010110111110100111011000011101001101000100111010111001101001111001010111010001011111001110011100001010010100100011110111101100100011000110101100101001011110101111011100011110001100100100010010101101100110111110110101011000011011111101000101100000111001110100001001010011100011011110100100101100011101101110100100110110011101101011010100110111101111101011000110000111101001010001000111011110011001001100010101011010100111111101111101000000110000111000001010001001000011110011011000100010101101001100111110111010101000011001111111000101010000001001111110000011010000010000101110000110001110010001010010010110011110110111010100011011001111100101101010000101110111110001110011000010010010101000110110111111001011011000001011101101000011100110111000100101011001001101111101011010110000111101111010001000110001110011001010010010101011110110111111100011011000000100101101000001101110111000010110011001000111010101011001001111111101011010000000111101110
0000010001100100000110010101100001010111110100011111000011100100001000100101100011001101110100101010110011101111111010100110000001111101010000010000111110000110001000010001010011000110011110101001010100011111011111100100001100000101100010100001110100111100010011101000100110100111001101011101001010111100111011111000101001100001001111010100011010001111100101110010000101110010110001110010111010010010111001110110111001010011011001011110101101011100011110111100100100011000101101100101001110110101111010011011110001110101100010010011110100110110100011101011011100100111101100101101000110101110111001011110011001011100010101011100100111111100101101000000101110111000001110011001000010010101011000110111111101001011000000111011101000001001100111000011010101001000101111111011001110000001101010010000010111110110000111000011010001001000101110011011001110010101101010010111110111110111000011000011001000101000101011001111001111101010001010000111110011110001000010100010011000111100110101001000101011111
0110011111000011010100001000101111100011001110000100101010010001101111110110010110000011010111010000101111001110001110001010010010010011110110110110100011011011011100101101101100101110110110101110011011011110010101101100010111110110100111000011011101001000101100111011001110101001101010011111010111110100001111000011100010001000100100110011001101101010101010110111111111111011000000000001101000000000010111000000000111001000000001001011000000011011101000000101100111000001110101001000010011111011000110100001101001011100010111011100100111001100101101001010101110111011111110011001100000010101010100000111111111100001000000000100011000000001100101000000010101111000000111110001000001000010011000011000110101000101001011111001111011100001010001100100011110010101100100010111110101100111000011110101001000100011111011001100100001101010101100010111111110100111000000011101001000000100111011000001101001101000010111010111000111001111001001001010001011011011110011101101100010100110110100111101011011101
0001111011001110010001101010010110010111110111010111000011001111001000101010001011001111110011101010000010100111110000111101000010001000111000110011001001001010101011011011111111101101100000000110110100000001011011100000011101100100000100110101100001101011110100010111100011100111000100100101001001101101111011010110110001101111011010010110001101110111010010110011001110111010101010011001111111110101010000000011111110000000100000010000001100000110000010100001010000111100011110001000100100010011001101100110101010110101011111111011111100000001100000100000010100001100000111100010100001000100111100011001101000100101010111001101111111001010110000001011111010000011100001110000100100010010001101100110110010110101011010111011111101111001100000110001010100001010011111100011110100000100100011100001101100100100010110101101100111011110110101001100011011111010100101100001111101110100010000110011100110001010100101010011111101111110100000110000011100001010000100100011110001101100100010010110101100110
1110111101010110011000111111010101001000001111111011000010000001101000110000010111001010000111001011110001001011100010011011100100110101100101101011110101110111100011110011000100100010101001101100111111010110101000001111011111000010001100001000110010100011001010111100101011111000101111100001001110000100011010010001100101110110010101110011010111110010101111000010111110001000111000010011001001000110101011011001011111101101011100000110111100100001011000101100011101001110100100111010011101101001110100110111010011101011001110100111101010011101000111110100111001000011101001011000100111011101001101001100111010111010101001111001111111010001010000001110011110000010010100010000110111100110001011000101010011101001111110100111010000011101001110000100111010010001101001110110010111010011010111001110101111001010011110001011110100010011100011100110100100100101011101101101111100110110110000101011011010001111101101110010000110110010110001011010111010011101111001110100110001010011101010011110100111110
1000111010000111001001110001001011010010011011101110110101100110011011110101010101100011111111110100100000000011101100000000100110100000001101011100000010111100100000111000101100001001001110100011011010011100101101110100101110110011101110011010100110010101111101010111110000111111000010001000001000110011000011001010101000101011111111001111100000001010000100000011110001100000100010010100001100110111100010101011000100111111101001101000000111010111000001001111001000011010001011000101110011101001110010100111010010111101001110111000111010011001001001110101011011010011111101101110100000110110011100001011010100100011101111101100100110000110101101010001011110111110011100011000010100100101000111101101111001000110110001011001011010011101011101110100111100110011101000101010100111001111111101001010000000111011110000001001100010000011010100110000101111101010001110000111110010010001000010110110011000111011010101001001101111111011010110000001101111010000010110001110000111010010010001001110110110011
0100110110101011101011011111100111101100000101000110100001111001011100010001011100100110011100101101010100101110111111101110011000000110010101000001010111111000011111000001000100001000011001100011000101010100101001111111101111010000000110001110000001010010010000011110110110000100011011010001100101101110010101110110010111110011010111000010101111001000111110001011001000010011101011000110100111101001011101000111011100111001001100101001011010101111011101111110001100110000010010101010000110111111110001011000000010011101000000110100111000001011101001000011100111011000100101001101001101111010111010110001111001111010010001010001110110011110010011010100010110101111100111011110000101001100010001111010100110010001111101010110010000111111010110001000001111010011000010001110101000110010011111001010110100001011111011100011100001100100100100010101101101100111110110110101000011011011111000101101100001001110110100011010011011100101110101100101110011110101110010100011110010111100100010111000101100111
0010011101010010110100111110111011101000011001100111000101010101001001111111111011010000000001101110000000010110010000000111010110000001001111010000011010001110000101110010010001110010110110010010111011010110111001101111011001010110001101011111010010111100001110111000100010011001001100110101011010101011111101111111100000110000000100001010000001100011110000010100100010000111101100110001000110101010011001011111110101011100000011111100100000100000101100001100001110100010100010011100111100110100101000101011101111001111100110001010000101010011110001111110100010010000011100110110000100101011010001101111101110010110000110010111010001010111001110011111001010010100001011110111100011100011000100100100101001101101101111010110110110001111011011010010001101101110110010110110011010111011010101111001101111110001010110000010011111010000110100001110001011100010010011100100110110100101101011011101110111101100110011000110101010101001011111111111011100000000001100100000000010101100000000111110100000001
0000111000000110001001000001010011011000011110101101000100011110111001100100011001010101100101011111110101111100000011110000100000100010001100001100110010100010101010111100111111111000101000000001001111000000011010001000000101110011000001110010101000010010111111000110111000001001011001000011011101011000101100111101001110101000111010011111001001110100001011010011100011101110100100100110011101101101010100110110111111101011011000000111101101000001000110111000011001011001000101011101011001111100111101010000101000111110001111001000010010001011000110110011101001011010100111011101111101001100110000111010101010001001111111110011010000000010101110000000111110010000001000010110000011000111010000101001001110001111011010010010001101110110110010110011011010111010101101111001111110110001010000011010011110000101110100010001110011100110010010100101010110111101111111011000110000001101001010000010111011110000111001100010001001010100110011011111101010101100000111111110100001000000011100011000000100100
1010000011011011110000101101100010001110110100110010011011101010110101100111111011110101000001100011111000010100100001000111101100011001000110100101011001011101111101011100110000111100101010001000101111110011001110000010101010010000111111110110001000000011010011000000101110101000001110011111000010010100001000110111100011001011000100101011101001101111100111010110000101001111010001111010001110010001110010010110010010110111010110111011001111011001101010001101010111110010111111000010111000001000111001000011001001011000101011011101001111101100111010000110101001110001011111010010011100001110110100100010011011101100110101100110101011110101011111100011111100000100100000100001101100001100010110100010100111011100111101001100101000111010101111001001111110001011010000010011101110000110100110010001011101010110011100111111010100101000001111101111000010000110001000110001010011001010011110101011110100011111100011100100000100100101100001101101110100010110110011100111011010100101001101111101111010110
0001100011110100010100100011100111101100100101000110101101111001011110110001011100011010011100100101110100101101110011101110110010100110011010111101010101111000111111110001001000000010011011000000110101101000001011110111000011100011001000100100101011001101101111101010110110000111111011010001000001101110011000010110010101000111010111111001001111000001011010001000011101110011000100110010101001101010111111010111111000001111000001000010001000011000110011000101001010101001111011111111010001100000001110010100000010010111100000110111000100001011001001100011101011010100100111101111101101000110000110111001010001011001011110011101011100010100111100100111101000101101000111001110111001001010011001011011110101011101100011111100110100100000101011101100001111100110100010000101011100110001111100101010010000101111110110001110000011010010010000101110110110001110011011010010010101101110110111110110011011000011010101101000101111110111001110000011001010010000101011110110001111100011010010000100101110110
0011011100110100101100101011101110101111100110011110000101010100010001111111100110010000000101010110000001111111010000010000001110000110000010010001010000110110011110001011010100010011101111100110100110000101011101010001111100111110010000101000010110001111000111010010001001001110110011011010011010101101110101111110110011110000011010100010000101111100110001110000101010010010001111110110110010000011011010110000101101111010001110110001110010011010010010110101110110111011110011011001100010101101010100111110111111101000011000000111000101000001001001111000011011010001000101101110011001110110010101010011010111111110101111000000011110001000000100010011000001100110101000010101011111000111111100001001000000100011011000001100101101000010101110111000111110011001001000010101011011000111111101101001000000110111011000001011001101000011101010111000100111111001001101000001011010111000011101111001000100110001011001101010011101010111110100111111000011101000001000100111000011001101001000101010111011001
1111110011010100000010101111100000111110000100001000010001100011000110010100101001010111101111011111000110001100001001010010100011011110111100101100011000101110100101001110011101111010010100110001110111101010010011000111110110101001000011011111011000101100001101001110100010111010011100111001110100101001010011101111011110100110001100011101010010100100111110111101101000011000110111000101001011001001111011101011010001100111101110010101000110010111111001010111000001011111001000011100001011000100100011101001101100100111010110101101001111011110111010001100011001110010100101010010111101111110111000110000011001001010000101011011110001111101100010010000110100110110001011101011010011100111101110100101000110011101111001010100110001011111101010011100000111110100100001000011101100011000100110100101001101011101111010111100110001111000101010010001001111110110011010000011010101110000101111110010001110000010110010010000111010110110001001111011010011010001101110101110010110011110010111010100010111001
1111001110010100001010010111100011110111000100100011001001101100101011010110101111101111011110000110001100010001010010100110011110111101010100011000111111100101001000000101111011000001110001101000010010010111000110110111001001011011001011011101101011101100110111100110101011000101011111101001111100000111010000100001001110001100011010010010100101110110111101110011011000110010101101001010111110111011111000011001100001000101010100011001111111100101010000000101111110000001110000010000010010000110000110110001010001011010011110011101110100010100110011100111101010100101000111111101111001000000110001011000001010011101000011110100111000100011101001001100100111011010101101001101111110111010110000011001111010000101010001110001111110010010010000010110110110000111011011010001001101101110011010110110010101111011010111110001101111000010010110001000110111010011001011001110101011101010011111100111110100000101000011100001111000100100010001001101100110011010110101010101111011111111110001100000000010010
1000000001101111000000010110001000000111010011000001001110101000011010011111000101110100001001110011100011010010100100101110111101101110011000110110010101001011010111111011101111000001100110001000010101010011000111111110101001000000011111011000000100001101000001100010111000010100111001000111101001011001000111011101011001001100111101011010101000111101111111001000110000001011001010000011101011110000100111100010001101000100110010111001101010111001010111111001011111000001011100001000011100100011000100101100101001101110101111010110011110001111010100010010001111100110110010000101011010110001111101111010010000110001110110001010010011010011110110101110100011011110011100101100010100101110100111101110011101000110010100111001010111101001011111000111011100001001001100100011011010101100101101111110101110110000011110011010000100010101110001100111110010010101000010110111111000111011000001001001101000011011010111000101101111001001110110001011010011010011101110101110100110011110011101010100010100111
1111001111010000001010001110000011110010010000100010110110001100111011010010101001101110111111010110011000001111010101000010001111111000110010000001001010110000011011111010000101100001110001110100010010010011100110110110100101011011011101111101101100110000110110101010001011011111110011101100000010100110100000111101011100001000111100100011001000101100101011001110101111101010011110000111110100010001000011100110011000100101010101001101111111111010110000000001111010000000010001110000000110010010000001010110110000011111011010000100001101110001100010110010010100111010110111101001111011000111010001101001001110010111011010010111001101110111001010110011001011111010101011100001111111100100010000000101100110000001110101010000010011111110000110100000010001011100000110011100100001010100101100011111101110100100000110011101100001010100110100011111101011100100000111100101100001000101110100011001110011100101010010100101111110111101110000011000110010000101001010110001111011111010010001100001110110010
1000100110101111001101011110001010111100010011111000100110100001001101011100011010111100100101111000101101110001001110110010011010011010110101110101111011110011110001100010100010010100111100110111101000101011000111001111101001001010000111011011110001001101100010011010110100110101111011101011110001100111100010010101000100110111111001101011000001010111101000011111000111000100001001001001100011011011010100101101101111101110110110000110011011010001010101101110011111110110010100000011010111100000101111000100001110001001100010010011010100110110101111101011011110000111101100010001000110100110011001011101010101011100111111111100101000000000101111000000001110001000000010010011000000110110101000001011011111000011101100001000100110100011001101011100101010111100101111111000101110000001001110010000011010010110000101110111010001110011001110010010101010010110111111110111011000000011001101000000101010111000001111111001000010000001011000110000011101001010000100111011110001101001100010010111010100110
1110011111010110010100001111010111100010001111000100110010001001101010110011010111111010101111000001111110001000010000010011000110000110101001010001011111011110011100001100010100100010100111101100111101000110101000111001011111001001011100001011011100100011101100101100100110101110101101011110011110111100010100011000100111100101001101000101111010111001110001111001010010010001011110110110011100011011010100100101101111101101110110000110110011010001011010101110011101111110010100110000010111101010000111000111110001001001000010011011011000110101101101001011110110111011100011011001100100101101010101101110111111110110011000000011010101000000101111111000001110000001000010010000011000110110000101001011010001111011101110010001100110010110010101010111010111111111001111000000001010001000000011110011000000100010101000001100111111000010101000001000111111000011001000001000101011000011001111101000101010000111001111110001001010000010011011110000110101100010001011110100110011100011101010100100100111111
1011011010000001101101110000010110110010000111011010110001001101111010011010110001110101111010010011110001110110100010010011011100110110101100101011011110101111101100011110000110100100010001011101100110011100110101010100101011111111101111100000000110000100000001010001100000011110010100000100010111100001100111000100010101001001100111111011010101000001101111111000010110000001000111010000011001001110000101011010010001111101110110010000110011010110001010101111010011111110001110100000010010011100000110110100100001011011101100011101100110100100110101011101101011111100110111100000101011000100001111101001100010000111010100110001001111101010011010000111110101110001000011110010011000100010110101001100111011111010101001100001111111010100010000001111100110000010000101010000110001111110001010010000010011110110000110100011010001011100101110011100101110010100101110010111101110010111000110010111001001010111001011011111001011101100001011100110100011100101011100100101111100101101110000101110110010001
11001101011001001010111101011011111000111101100001001000110100011011001011100101101011100101110111100101110011000101110010101001110010111111010010111000001110111001000010011001011000110101011101001011111100111011100000101001100100001111010101100010001111110100110010000011101010110000100111111010001101000001110010111000010010111001000110111001011001011001011101011101011100111100111100101000101000101111001111001110001010001010010011110011110110100010100011011100111100101100101000101110101111001110011110001010010100010011110111100110100011000101011100101001111100101111010000101110001110001110010010010010010110110110110111011011011011001101101101101010110110110111111011011011000001101101101000010110110111000111011011001001001101101011011010110111101101111011000110110001101001011010010111011101110111001100110011001010101010101011111111111111100000000000000
+1000000000000011000000000000101000000000001111000000000010001000000000110011000000001010101000000011111111000000100000001000001100000011000010100000101000111100001111001000100010001011001100110011101010101010100111111111111101000000000000111000000000001001000000000011011000000000101101000000001110111000000010011001000000110101011000001011111101000011100000111000100100001001001101100011011010110100101101111011101110110001100110011010010101010101110111111111110011000000000010101000000000111111000000001000001000000011000011000000101000101000001111001111000010001010001000110011110011001010100010101011111100111111100000101000000100001111000001100010001000010100110011000111101010101001000111111111011001000000001101011000000010111101000000111000111000001001001001000011011011011000101101101101001110110110111010011011011001110101101101010011110110111110100011011000011100101101000100101110111001101110011001010110010101011111010111111100001111000000100010001000001100110011000010101010101000111
1111111110010000000000010110000000000111010000000001001110000000011010010000000101110110000001110011010000010010101110000110111110010001011000010110011101000111010100111001001111101001011010000111011101110001001100110010011010101010110101111111111011110000000001100010000000010100110000000111101010000001000111110000011001000010000101011000110001111101001010010000111011110110001001100011010011010100101110101111101110011110000110010100010001010111100110011111000101010100001001111111100011010000000100101110000001101110010000010110010110000111010111010001001111001110011010001010010101110011110111110010100011000010111100101000111000101111001001001110001011011010010011101101110110100110110011011101011010101100111101111110101000110000011111001010000100001011110001100011100010010100100100110111101101101011000110110111101001011011000111011101101001001100110111011010101011001101111111101010110000000111111010000001000001110000011000010010000101000110110001111001011010010001011101110110011100110
0110101001010101011111011111111100001100000000100010100000001100111100000010101000100000111111001100001000001010100011000011111100101000100000101111001100001110001010100010010011111100110110100000101011011100001111101100100010000110101100110001011110101010011100011111110100100100000011101101100000100110110100001101011011100010111101100100111000110101101001001011110111011011100011001101100100101010110101101111111011110110000001100011010000010100101110000111101110010001000110010110011001010111010101011111001111111100001010000000100011110000001100100010000010101100110000111110101010001000011111110011000100000010101001100000111111010100001000001111100011000010000100101000110001101111001010010110001011110111010011100011001110100100101010011101101111110100110110000011101011010000100111101110001101000110010010111001010110111001011111011001011100001101011100100010111100101100111000101110101001001110011111011010010100001101110111100010110011000100111010101001101001111111010111010000001111001
1100000100010100100001100111101100010101000110100111111001011101000001011100111000011100101001000100101111011001101110001101010110010010111111010110111000001111011001000010001101011000110010111101001010111000111011111001001001100001011011010100011101101111100100110110000101101011010001110111101110010011000110010110101001010111011111011111001100001100001010100010100011111100111100100000101000101100001111001110100010001010011100110011110100101010100011101111111100100110000000101101010000001110111110000010011000010000110101000110001011111001010011100001011110100100011100011101100100100100110101101101101011110110110111100011011011000100101101101001101110110111010110011011001111010101101010001111110111110010000011000010110000101000111010001111001001110010001011010010110011101110111010100110011001111101010101010000111111111110001000000000010011000000000110101000000001011111000000011100001000000100100011000001101100101000010110101111000111011110001001001100010011011010100110101101111101011
1101100001111000110100010001001011100110011011100101010101100101111111110101110000000011110010000000100010110000001100111010000010101001110000111111010010001000001110110011000010011010101000110101111111001011110000001011100010000011100100110000100101101010001101110111110010110011000010111010101000111001111111001001010000001011011110000011101100010000100110100110001101011101010010111100111110111000101000011001001111000101011010001001111101110011010000110010101110001010111110010011111000010110100001000111011100011001001100100101011010101101111101111110110000110000011010001010000101110011110001110010100010010010111100110110111000101011011001001111101101011010000110111101110001011000110010011101001010110100111011111011101001100001100111010100010101001111100111111010000101000001110001111000010010010001000110110110011001011011010101011101101111111100110110000000101011010000001111101110000010000110010000110001010110001010011111010011110100001110100011100010011100100100110100101101101011101
1101101111001100110110001010101011010011111111101110100000000110011100000001010100100000011111101100000100000110100001100001011100010100011100100111100100101101000101101110111001110110011001010011010101011110101111111100011110000000100100010000001101100110000010110101010000111011111110001001100000010011010100000110101111100001011110000100011100010001100100100110010101101101010111110110111111000011011000001000101101000011001110111000101010011001001111110101011010000011111101110000100000110010001100001010110010100011111010111100100001111000101100010001001110100110011010011101010101110100111111110011101000000010100111000000111101001000001000111011000011001001101000101011010111001111101111001010000110001011110001010011100010011110100100110100011101101011100100110111100101101011000101110111101001110011000111010010101001001110111111011010011000001101110101000010110011111000111010100001001001111100011011010000100101101110001101110110010010110011010110111010101111011001111110001101010000010
0101111100001101110000100010110010001100111010110010101001111010111111010001111000001110010001000010010110011000110111010101001011001111111011101010000001100111110000010101000010000111111000110001000001001010011000011011110101000101100011111001110100100001010011101100011110100110100100011101011101100100111100110101101000101011110111001111100011001010000100101011110001101111100010010110000100110111010001101011001110010111101010010111000111110111001001000011001011011000101011101101001111100110111010000101011001110001111101010010010000111110110110001000011011010011000101101110101001110110011111010011010100001110101111100010011110000100110100010001101011100110010111100101010111000101111111001001110000001011010010000011101110110000100110011010001101010101110010111111110010111000000010111001000000111001011000001001011101000011011100111000101100101001001110101111011010011110001101110100010010110011100110111010100101011001111101111101010000110000111110001010001000010011110011000110100010101
0010111001111110111001010000011001011110000101011100010001111100100110010000101101010110001110111111010010011000001110110101000010011011111000110101100001001011110100011011100011100101100100100101110101101101110011110110110010100011011010111100101101111000101110110001001110011010011010010101110101110111110011110011000010100010101000111100111111001000101000001011001111000011101010001000100111110011001101000010101010111000111111111001001000000001011011000000011101101000000100110111000001101011001000010111101011000111000111101001001001000111011011011001001101101101011010110110111101111011011000110001101101001010010110111011110111011001100011001101010100101010111111101111111000000110000001000001010000011000011110000101000100010001111001100110010001010101010110011111111111010100000000001111100000000010000100000000110001100000001010010100000011110111100000100011000100001100101001100010101111010100111110001111101000010010000111000110110001001001011010011011011101110101101100110011110110101
0101000110111111111001011000000001011101000000011100111000000100101001000001101111011000010110001101000111010010111001001110111001011010011001011101110101011100110011111100101010100000101111111100001110000000100010010000001100110110000010101011010000111111101110001000000110010011000001010110101000011111011111000100001100001001100010100011010100111100101111101000101110000111001110010001001010010110011011110111010101100011001111110100101010000011101111110000100110000010001101010000110010111110001010111000010011111001000110100001011001011100011101011100100100111100101101101000101110110111001110011011001010010101101011110111110111100011000011000100101000101001101111001111010110001010001111010011110010001110100010110010011100111010110100101001111011101111010001100110001110010101010010010111111110110111000000011011001000000101101011000001110111101000010011000111000110101001001001011111011011011100001101101100100010110110101100111011011110101001101100011111010110100100001111011101100010001
1001101001100101010111010101111111001111110000001010000010000011110000110000100010001010001100110011110010101010100010111111111100111000000000101001000000001111011000000010001101000000110010111000001010111001000011111001011000100001011101001100011100111010100100101001111101101111010000110110001110001011010010010011101110110110100110011011011101010101101100111111110110101000000011011111000000101100001000001110100011000010011100101000110100101111001011101110001011100110010011100101010110100101111111011101110000001100110010000010101010110000111111111010001000000001110011000000010010101000000110111111000001011000001000011101000011000100111000101001101001001111010111011010001111001101110010001010110010110011111010111010100001111001111100010001010000100110011110001101010100010010111111100110111000000101011001000001111101011000010000111101000110001000111001010011001001011110101011011100011111101100100100000110101101100001011110110100011100011011100100100101100101101101110101110110110011110
0110110101000101011011111001111101100001010000110100011110001011100100010011100101100110100101110101011101110011111100110010100000101010111100001111111000100010000001001100110000011010101010000101111111110001110000000010010010000000110110110000001011011010000011101101110000100110110010001101011010110010111101111010111000110001111001001010010001011011110110011101100011010100110100101111101011101110000111100110010001000101010110011001111111010101010000001111111110000010000000010000110000000110001010000001010011110000011110100010000100011100110001100100101010010101101111110111110110000011000011010000101000101110001111001110010010001010010110110011110111011010100011001101111100101010110000101111111010001110000001110010010000010010110110000110111011010001011001101110011101010110010100111111010111101000001111000111000010001001001000110011011011001010101101101011111110110111100000011011000100000101101001100001110111010100010011001111100110101010000101011111110001111100000010010000100000110
1100011000010110100101000111011101111001001100110001011010101010011101111111110100110000000011101010000000100111110000001101000010000010111000110000111001001010001001011011110011011101100010101100110100111110101011101000011111100111000100000101001001100001111011010100010001101111100110010110000101010111010001111111001110010000001010010110000011110111010000100011001110001100101010010010101111110110111110000011011000010000101101000110001110111001010010011001011110110101011100011011111100100101100000101101110100001110110011100010011010100100110101111101101011110000110111100010001011000100110011101001101010100111010111111101001111000000111010001000001001110011000011010010101000101110111111001110011000001010010101000011110111111000100011000001001100101000011010101111000101111110001001110000010011010010000110101110110001011110011010011100010101110100100111110011101101000010100110111000111101011001001000111101011011001000111101101011001000110111101011001011000111101011101001000111100111011
0010001010011010110011110101111010100011110001111100100010010000101100110110001110101011010010011111101110110100000110011011100001010101100100011111110101100100000011110101100000100011110100001100100011100010101100100100111110101101101000011110110111000100011011001001100101101011010101110111101111110011000110000010101001010000111111011110001000001100010011000010100110101000111101011111001000111100001011001000100011101011001100100111101010101101000111111110111001000000011001011000000101011101000001111100111000010000101001000110001111011001010010001101011110110010111100011010111000100101111001001101110001011010110010011101111010110100110001111011101010010001100111110110010101000011010111111000101111000001001110001000011010010011000101110110101001110011011111010010101100001110111110100010011000011100110101000100101011111001101111100001010110000100011111010001100100001110010101100010010111110100110111000011101011001000100111101011001101000111101010111001000111111001011001000001011101011
0000111001111010001001010001110011011110010010101100010110111110100111011000011101001101000100111010111001101001111001010111010001011111001110011100001010010100100011110111101100100011000110101100101001011110101111011100011110001100100100010010101101100110111110110101011000011011111101000101100000111001110100001001010011100011011110100100101100011101101110100100110110011101101011010100110111101111101011000110000111101001010001000111011110011001001100010101011010100111111101111101000000110000111000001010001001000011110011011000100010101101001100111110111010101000011001111111000101010000001001111110000011010000010000101110000110001110010001010010010110011110110111010100011011001111100101101010000101110111110001110011000010010010101000110110111111001011011000001011101101000011100110111000100101011001001101111101011010110000111101111010001000110001110011001010010010101011110110111111100011011000000100101101000001101110111000010110011001000111010101011001001111111101011010000000111101110
0000010001100100000110010101100001010111110100011111000011100100001000100101100011001101110100101010110011101111111010100110000001111101010000010000111110000110001000010001010011000110011110101001010100011111011111100100001100000101100010100001110100111100010011101000100110100111001101011101001010111100111011111000101001100001001111010100011010001111100101110010000101110010110001110010111010010010111001110110111001010011011001011110101101011100011110111100100100011000101101100101001110110101111010011011110001110101100010010011110100110110100011101011011100100111101100101101000110101110111001011110011001011100010101011100100111111100101101000000101110111000001110011001000010010101011000110111111101001011000000111011101000001001100111000011010101001000101111111011001110000001101010010000010111110110000111000011010001001000101110011011001110010101101010010111110111110111000011000011001000101000101011001111001111101010001010000111110011110001000010100010011000111100110101001000101011111
0110011111000011010100001000101111100011001110000100101010010001101111110110010110000011010111010000101111001110001110001010010010010011110110110110100011011011011100101101101100101110110110101110011011011110010101101100010111110110100111000011011101001000101100111011001110101001101010011111010111110100001111000011100010001000100100110011001101101010101010110111111111111011000000000001101000000000010111000000000111001000000001001011000000011011101000000101100111000001110101001000010011111011000110100001101001011100010111011100100111001100101101001010101110111011111110011001100000010101010100000111111111100001000000000100011000000001100101000000010101111000000111110001000001000010011000011000110101000101001011111001111011100001010001100100011110010101100100010111110101100111000011110101001000100011111011001100100001101010101100010111111110100111000000011101001000000100111011000001101001101000010111010111000111001111001001001010001011011011110011101101100010100110110100111101011011101
0001111011001110010001101010010110010111110111010111000011001111001000101010001011001111110011101010000010100111110000111101000010001000111000110011001001001010101011011011111111101101100000000110110100000001011011100000011101100100000100110101100001101011110100010111100011100111000100100101001001101101111011010110110001101111011010010110001101110111010010110011001110111010101010011001111111110101010000000011111110000000100000010000001100000110000010100001010000111100011110001000100100010011001101100110101010110101011111111011111100000001100000100000010100001100000111100010100001000100111100011001101000100101010111001101111111001010110000001011111010000011100001110000100100010010001101100110110010110101011010111011111101111001100000110001010100001010011111100011110100000100100011100001101100100100010110101101100111011110110101001100011011111010100101100001111101110100010000110011100110001010100101010011111101111110100000110000011100001010000100100011110001101100100010010110101100110
1110111101010110011000111111010101001000001111111011000010000001101000110000010111001010000111001011110001001011100010011011100100110101100101101011110101110111100011110011000100100010101001101100111111010110101000001111011111000010001100001000110010100011001010111100101011111000101111100001001110000100011010010001100101110110010101110011010111110010101111000010111110001000111000010011001001000110101011011001011111101101011100000110111100100001011000101100011101001110100100111010011101101001110100110111010011101011001110100111101010011101000111110100111001000011101001011000100111011101001101001100111010111010101001111001111111010001010000001110011110000010010100010000110111100110001011000101010011101001111110100111010000011101001110000100111010010001101001110110010111010011010111001110101111001010011110001011110100010011100011100110100100100101011101101101111100110110110000101011011010001111101101110010000110110010110001011010111010011101111001110100110001010011101010011110100111110
1000111010000111001001110001001011010010011011101110110101100110011011110101010101100011111111110100100000000011101100000000100110100000001101011100000010111100100000111000101100001001001110100011011010011100101101110100101110110011101110011010100110010101111101010111110000111111000010001000001000110011000011001010101000101011111111001111100000001010000100000011110001100000100010010100001100110111100010101011000100111111101001101000000111010111000001001111001000011010001011000101110011101001110010100111010010111101001110111000111010011001001001110101011011010011111101101110100000110110011100001011010100100011101111101100100110000110101101010001011110111110011100011000010100100101000111101101111001000110110001011001011010011101011101110100111100110011101000101010100111001111111101001010000000111011110000001001100010000011010100110000101111101010001110000111110010010001000010110110011000111011010101001001101111111011010110000001101111010000010110001110000111010010010001001110110110011
0100110110101011101011011111100111101100000101000110100001111001011100010001011100100110011100101101010100101110111111101110011000000110010101000001010111111000011111000001000100001000011001100011000101010100101001111111101111010000000110001110000001010010010000011110110110000100011011010001100101101110010101110110010111110011010111000010101111001000111110001011001000010011101011000110100111101001011101000111011100111001001100101001011010101111011101111110001100110000010010101010000110111111110001011000000010011101000000110100111000001011101001000011100111011000100101001101001101111010111010110001111001111010010001010001110110011110010011010100010110101111100111011110000101001100010001111010100110010001111101010110010000111111010110001000001111010011000010001110101000110010011111001010110100001011111011100011100001100100100100010101101101100111110110110101000011011011111000101101100001001110110100011010011011100101110101100101110011110101110010100011110010111100100010111000101100111
0010011101010010110100111110111011101000011001100111000101010101001001111111111011010000000001101110000000010110010000000111010110000001001111010000011010001110000101110010010001110010110110010010111011010110111001101111011001010110001101011111010010111100001110111000100010011001001100110101011010101011111101111111100000110000000100001010000001100011110000010100100010000111101100110001000110101010011001011111110101011100000011111100100000100000101100001100001110100010100010011100111100110100101000101011101111001111100110001010000101010011110001111110100010010000011100110110000100101011010001101111101110010110000110010111010001010111001110011111001010010100001011110111100011100011000100100100101001101101101111010110110110001111011011010010001101101110110010110110011010111011010101111001101111110001010110000010011111010000110100001110001011100010010011100100110110100101101011011101110111101100110011000110101010101001011111111111011100000000001100100000000010101100000000111110100000001
0000111000000110001001000001010011011000011110101101000100011110111001100100011001010101100101011111110101111100000011110000100000100010001100001100110010100010101010111100111111111000101000000001001111000000011010001000000101110011000001110010101000010010111111000110111000001001011001000011011101011000101100111101001110101000111010011111001001110100001011010011100011101110100100100110011101101101010100110110111111101011011000000111101101000001000110111000011001011001000101011101011001111100111101010000101000111110001111001000010010001011000110110011101001011010100111011101111101001100110000111010101010001001111111110011010000000010101110000000111110010000001000010110000011000111010000101001001110001111011010010010001101110110110010110011011010111010101101111001111110110001010000011010011110000101110100010001110011100110010010100101010110111101111111011000110000001101001010000010111011110000111001100010001001010100110011011111101010101100000111111110100001000000011100011000000100100
1010000011011011110000101101100010001110110100110010011011101010110101100111111011110101000001100011111000010100100001000111101100011001000110100101011001011101111101011100110000111100101010001000101111110011001110000010101010010000111111110110001000000011010011000000101110101000001110011111000010010100001000110111100011001011000100101011101001101111100111010110000101001111010001111010001110010001110010010110010010110111010110111011001111011001101010001101010111110010111111000010111000001000111001000011001001011000101011011101001111101100111010000110101001110001011111010010011100001110110100100010011011101100110101100110101011110101011111100011111100000100100000100001101100001100010110100010100111011100111101001100101000111010101111001001111110001011010000010011101110000110100110010001011101010110011100111111010100101000001111101111000010000110001000110001010011001010011110101011110100011111100011100100000100100101100001101101110100010110110011100111011010100101001101111101111010110
0001100011110100010100100011100111101100100101000110101101111001011110110001011100011010011100100101110100101101110011101110110010100110011010111101010101111000111111110001001000000010011011000000110101101000001011110111000011100011001000100100101011001101101111101010110110000111111011010001000001101110011000010110010101000111010111111001001111000001011010001000011101110011000100110010101001101010111111010111111000001111000001000010001000011000110011000101001010101001111011111111010001100000001110010100000010010111100000110111000100001011001001100011101011010100100111101111101101000110000110111001010001011001011110011101011100010100111100100111101000101101000111001110111001001010011001011011110101011101100011111100110100100000101011101100001111100110100010000101011100110001111100101010010000101111110110001110000011010010010000101110110110001110011011010010010101101110110111110110011011000011010101101000101111110111001110000011001010010000101011110110001111100011010010000100101110110
0011011100110100101100101011101110101111100110011110000101010100010001111111100110010000000101010110000001111111010000010000001110000110000010010001010000110110011110001011010100010011101111100110100110000101011101010001111100111110010000101000010110001111000111010010001001001110110011011010011010101101110101111110110011110000011010100010000101111100110001110000101010010010001111110110110010000011011010110000101101111010001110110001110010011010010010110101110110111011110011011001100010101101010100111110111111101000011000000111000101000001001001111000011011010001000101101110011001110110010101010011010111111110101111000000011110001000000100010011000001100110101000010101011111000111111100001001000000100011011000001100101101000010101110111000111110011001001000010101011011000111111101101001000000110111011000001011001101000011101010111000100111111001001101000001011010111000011101111001000100110001011001101010011101010111110100111111000011101000001000100111000011001101001000101010111011001
1111110011010100000010101111100000111110000100001000010001100011000110010100101001010111101111011111000110001100001001010010100011011110111100101100011000101110100101001110011101111010010100110001110111101010010011000111110110101001000011011111011000101100001101001110100010111010011100111001110100101001010011101111011110100110001100011101010010100100111110111101101000011000110111000101001011001001111011101011010001100111101110010101000110010111111001010111000001011111001000011100001011000100100011101001101100100111010110101101001111011110111010001100011001110010100101010010111101111110111000110000011001001010000101011011110001111101100010010000110100110110001011101011010011100111101110100101000110011101111001010100110001011111101010011100000111110100100001000011101100011000100110100101001101011101111010111100110001111000101010010001001111110110011010000011010101110000101111110010001110000010110010010000111010110110001001111011010011010001101110101110010110011110010111010100010111001
1111001110010100001010010111100011110111000100100011001001101100101011010110101111101111011110000110001100010001010010100110011110111101010100011000111111100101001000000101111011000001110001101000010010010111000110110111001001011011001011011101101011101100110111100110101011000101011111101001111100000111010000100001001110001100011010010010100101110110111101110011011000110010101101001010111110111011111000011001100001000101010100011001111111100101010000000101111110000001110000010000010010000110000110110001010001011010011110011101110100010100110011100111101010100101000111111101111001000000110001011000001010011101000011110100111000100011101001001100100111011010101101001101111110111010110000011001111010000101010001110001111110010010010000010110110110000111011011010001001101101110011010110110010101111011010111110001101111000010010110001000110111010011001011001110101011101010011111100111110100000101000011100001111000100100010001001101100110011010110101010101111011111111110001100000000010010
1000000001101111000000010110001000000111010011000001001110101000011010011111000101110100001001110011100011010010100100101110111101101110011000110110010101001011010111111011101111000001100110001000010101010011000111111110101001000000011111011000000100001101000001100010111000010100111001000111101001011001000111011101011001001100111101011010101000111101111111001000110000001011001010000011101011110000100111100010001101000100110010111001101010111001010111111001011111000001011100001000011100100011000100101100101001101110101111010110011110001111010100010010001111100110110010000101011010110001111101111010010000110001110110001010010011010011110110101110100011011110011100101100010100101110100111101110011101000110010100111001010111101001011111000111011100001001001100100011011010101100101101111110101110110000011110011010000100010101110001100111110010010101000010110111111000111011000001001001101000011011010111000101101111001001110110001011010011010011101110101110100110011110011101010100010100111
1111001111010000001010001110000011110010010000100010110110001100111011010010101001101110111111010110011000001111010101000010001111111000110010000001001010110000011011111010000101100001110001110100010010010011100110110110100101011011011101111101101100110000110110101010001011011111110011101100000010100110100000111101011100001000111100100011001000101100101011001110101111101010011110000111110100010001000011100110011000100101010101001101111111111010110000000001111010000000010001110000000110010010000001010110110000011111011010000100001101110001100010110010010100111010110111101001111011000111010001101001001110010111011010010111001101110111001010110011001011111010101011100001111111100100010000000101100110000001110101010000010011111110000110100000010001011100000110011100100001010100101100011111101110100100000110011101100001010100110100011111101011100100000111100101100001000101110100011001110011100101010010100101111110111101110000011000110010000101001010110001111011111010010001100001110110010
1000100110101111001101011110001010111100010011111000100110100001001101011100011010111100100101111000101101110001001110110010011010011010110101110101111011110011110001100010100010010100111100110111101000101011000111001111101001001010000111011011110001001101100010011010110100110101111011101011110001100111100010010101000100110111111001101011000001010111101000011111000111000100001001001001100011011011010100101101101111101110110110000110011011010001010101101110011111110110010100000011010111100000101111000100001110001001100010010011010100110110101111101011011110000111101100010001000110100110011001011101010101011100111111111100101000000000101111000000001110001000000010010011000000110110101000001011011111000011101100001000100110100011001101011100101010111100101111111000101110000001001110010000011010010110000101110111010001110011001110010010101010010110111111110111011000000011001101000000101010111000001111111001000010000001011000110000011101001010000100111011110001101001100010010111010100110
1110011111010110010100001111010111100010001111000100110010001001101010110011010111111010101111000001111110001000010000010011000110000110101001010001011111011110011100001100010100100010100111101100111101000110101000111001011111001001011100001011011100100011101100101100100110101110101101011110011110111100010100011000100111100101001101000101111010111001110001111001010010010001011110110110011100011011010100100101101111101101110110000110110011010001011010101110011101111110010100110000010111101010000111000111110001001001000010011011011000110101101101001011110110111011100011011001100100101101010101101110111111110110011000000011010101000000101111111000001110000001000010010000011000110110000101001011010001111011101110010001100110010110010101010111010111111111001111000000001010001000000011110011000000100010101000001100111111000010101000001000111111000011001000001000101011000011001111101000101010000111001111110001001010000010011011110000110101100010001011110100110011100011101010100100100111111
1011011010000001101101110000010110110010000111011010110001001101111010011010110001110101111010010011110001110110100010010011011100110110101100101011011110101111101100011110000110100100010001011101100110011100110101010100101011111111101111100000000110000100000001010001100000011110010100000100010111100001100111000100010101001001100111111011010101000001101111111000010110000001000111010000011001001110000101011010010001111101110110010000110011010110001010101111010011111110001110100000010010011100000110110100100001011011101100011101100110100100110101011101101011111100110111100000101011000100001111101001100010000111010100110001001111101010011010000111110101110001000011110010011000100010110101001100111011111010101001100001111111010100010000001111100110000010000101010000110001111110001010010000010011110110000110100011010001011100101110011100101110010100101110010111101110010111000110010111001001010111001011011111001011101100001011100110100011100101011100100101111100101101110000101110110010001
11001101011001001010111101011011111000111101100001001000110100011011001011100101101011100101110111100101110011000101110010101001110010111111010010111000001110111001000010011001011000110101011101001011111100111011100000101001100100001111010101100010001111110100110010000011101010110000100111111010001101000001110010111000010010111001000110111001011001011001011101011101011100111100111100101000101000101111001111001110001010001010010011110011110110100010100011011100111100101100101000101110101111001110011110001010010100010011110111100110100011000101011100101001111100101111010000101110001110001110010010010010010110110110110111011011011011001101101101101010110110110111111011011011000001101101101000010110110111000111011011001001001101101011011010110111101101111011000110110001101001011010010111011101110111001100110011001010101010101011111111111111100000000000000
+
diff --git a/tests/testsuite.at b/tests/testsuite.at
index 63027d9..f148cf5 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -280,3 +280,9 @@
cat $abs_srcdir/sercomm/sercomm_test.ok > expout
AT_CHECK([$abs_top_builddir/tests/sercomm/sercomm_test], [0], [expout],
[ignore])
AT_CLEANUP
+
+AT_SETUP([prbs])
+AT_KEYWORDS([prbs])
+cat $abs_srcdir/prbs/prbs_test.ok > expout
+AT_CHECK([$abs_top_builddir/tests/prbs/prbs_test], [0], [expout], [ignore])
+AT_CLEANUP
--
To view, visit https://gerrit.osmocom.org/3162
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I227b6a6e86a251460ecb816afa9a7439d5fb94d1
Gerrit-PatchSet: 2
Gerrit-Project: libosmocore
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <[email protected]>
Gerrit-Reviewer: Jenkins Builder