From 51d6bea95e9008c6a2e6a21780bd4564abc279ce Mon Sep 17 00:00:00 2001 From: Kizarm Date: Fri, 31 Jan 2025 16:38:37 +0100 Subject: [PATCH] add thermometer as counter --- V203F6P6/thermometer/GsmDecoder.cpp | 44 + V203F6P6/thermometer/GsmDecoder.h | 21 + V203F6P6/thermometer/Makefile | 61 + V203F6P6/thermometer/ch32v203 | 1 + V203F6P6/thermometer/common | 1 + V203F6P6/thermometer/extdata.c | 46 + V203F6P6/thermometer/extflash/Makefile | 27 + V203F6P6/thermometer/extflash/gsmdata.c | 1398 +++++++++++++++++++++++ V203F6P6/thermometer/extflash/main.cpp | 127 ++ V203F6P6/thermometer/extflash/script.ld | 40 + V203F6P6/thermometer/extflash/texts.c | 47 + V203F6P6/thermometer/extflash/texts.h | 26 + V203F6P6/thermometer/gsmdata.h | 62 + V203F6P6/thermometer/lib | 1 + V203F6P6/thermometer/main.cpp | 30 + V203F6P6/thermometer/norflash.cpp | 45 + V203F6P6/thermometer/norflash.h | 13 + V203F6P6/thermometer/player.cpp | 153 +++ V203F6P6/thermometer/player.h | 30 + V203F6P6/thermometer/pwmclass.cpp | 107 ++ V203F6P6/thermometer/pwmclass.h | 35 + V203F6P6/thermometer/spiblocked.cpp | 66 ++ V203F6P6/thermometer/spiblocked.h | 12 + V203F6P6/thermometer/wrap.c | 22 + 24 files changed, 2415 insertions(+) create mode 100644 V203F6P6/thermometer/GsmDecoder.cpp create mode 100644 V203F6P6/thermometer/GsmDecoder.h create mode 100644 V203F6P6/thermometer/Makefile create mode 120000 V203F6P6/thermometer/ch32v203 create mode 120000 V203F6P6/thermometer/common create mode 100644 V203F6P6/thermometer/extdata.c create mode 100644 V203F6P6/thermometer/extflash/Makefile create mode 100644 V203F6P6/thermometer/extflash/gsmdata.c create mode 100644 V203F6P6/thermometer/extflash/main.cpp create mode 100644 V203F6P6/thermometer/extflash/script.ld create mode 100644 V203F6P6/thermometer/extflash/texts.c create mode 100644 V203F6P6/thermometer/extflash/texts.h create mode 100644 V203F6P6/thermometer/gsmdata.h create mode 120000 V203F6P6/thermometer/lib create mode 100644 V203F6P6/thermometer/main.cpp create mode 100644 V203F6P6/thermometer/norflash.cpp create mode 100644 V203F6P6/thermometer/norflash.h create mode 100644 V203F6P6/thermometer/player.cpp create mode 100644 V203F6P6/thermometer/player.h create mode 100644 V203F6P6/thermometer/pwmclass.cpp create mode 100644 V203F6P6/thermometer/pwmclass.h create mode 100644 V203F6P6/thermometer/spiblocked.cpp create mode 100644 V203F6P6/thermometer/spiblocked.h create mode 100644 V203F6P6/thermometer/wrap.c diff --git a/V203F6P6/thermometer/GsmDecoder.cpp b/V203F6P6/thermometer/GsmDecoder.cpp new file mode 100644 index 0000000..75c9955 --- /dev/null +++ b/V203F6P6/thermometer/GsmDecoder.cpp @@ -0,0 +1,44 @@ +#include "pwmclass.h" +#include "GsmDecoder.h" + +GsmDecoder::GsmDecoder(FIFO & f) noexcept : + OneWay(), fifo(f), enable(GPIOB, 1u), flash(), gsm(), idle(0u) { +} +static constexpr int INPUT_BIT_RANGE = 16; +static constexpr unsigned SIGMA_MASK = (1u << (INPUT_BIT_RANGE + 0)) - 1u; +static constexpr unsigned SIGNED_OFFEST = (1u << (INPUT_BIT_RANGE - 1)); + // Předpokládá se na vstupu signed int o šířce INPUT_BIT_RANGE + // přičemž 0 na vstupu odpovídá MAXPWM / 2 na výstupu. Vypadá to divně, ale funguje. +static unsigned pwm_sd (const int input) { + static unsigned sigma = 0; // podstatné je, že proměnná je statická + const unsigned sample = (input + SIGNED_OFFEST) * MAXPWM; + sigma &= SIGMA_MASK; // v podstatě se odečte hodnota PWM + sigma += sample; // integrace prostým součtem + return sigma >> INPUT_BIT_RANGE; +} +unsigned GsmDecoder::Send(uint16_t * dptr, const unsigned len) { + uint32_t source; + if (fifo.Read(source)) { + enable << true; // zapni budič + idle = 0u; + gsm_frame tmp; + flash.ReadBlock(source, tmp, sizeof(gsm_frame)); + gsm.decode(tmp, tmpbuf); + for (unsigned n=0u, k=0u; k 3u) { // pro vypnutí budiče je lépe chvilinku počkat + idle = 3u; + enable << false; + } + for (unsigned n=0u; n> 1; + } + return 0; +} diff --git a/V203F6P6/thermometer/GsmDecoder.h b/V203F6P6/thermometer/GsmDecoder.h new file mode 100644 index 0000000..bb50f90 --- /dev/null +++ b/V203F6P6/thermometer/GsmDecoder.h @@ -0,0 +1,21 @@ +#ifndef GSMDECODER_H +#define GSMDECODER_H +#include "gpio.h" +#include "player.h" +#include "oneway.h" +#include "gsm.h" +#include "norflash.h" + +class GsmDecoder : public OneWay { + FIFO & fifo; + GpioClass enable; + NorFlash flash; + GsmStatic gsm; + gsm_signal tmpbuf [GSMLEN]; + unsigned idle; + public: + explicit GsmDecoder(FIFO & f) noexcept; + unsigned Send (uint16_t * ptr, const unsigned len) override; +}; + +#endif // GSMDECODER_H diff --git a/V203F6P6/thermometer/Makefile b/V203F6P6/thermometer/Makefile new file mode 100644 index 0000000..c6a4a07 --- /dev/null +++ b/V203F6P6/thermometer/Makefile @@ -0,0 +1,61 @@ +TARGET?= ch32v203 + +#TOOL ?= gcc +TOOL ?= clang + +PRJ = example + +VPATH = . ./$(TARGET) +BLD = ./build/ +DFLAGS = -d +LFLAGS = -g +LDLIBS = +BFLAGS = --strip-unneeded + +CFLAGS = -MMD -Wall -Wno-parentheses -ggdb -fno-exceptions -ffunction-sections -fdata-sections +CFLAGS+= -I. -I./$(TARGET) -I./common -I./lib/gsm/inc -DEXTROM=1 +DEL = rm -f + +# zdrojaky +OBJS = main.o pwmclass.o +OBJS += GsmDecoder.o wrap.o +OBJS += spiblocked.o norflash.o +OBJS += extdata.o player.o + +include $(TARGET)/$(TOOL).mk +BOBJS = $(addprefix $(BLD),$(OBJS)) + +all: $(BLD) $(PRJ).elf +# ... atd. +-include $(BLD)*.d +LDLIBS += -L./lib -lgsm +# linker +$(PRJ).elf: $(BOBJS) ./lib/libgsm.a + -@echo [LD $(TOOL),$(TARGET)] $@ + @$(LD) $(LFLAGS) -o $(PRJ).elf $(BOBJS) $(LDLIBS) + -@echo "size:" + @$(SIZE) $(PRJ).elf + -@echo "listing:" + $(DUMP) $(DFLAGS) $(PRJ).elf > $(PRJ).lst + -@echo "OK." + $(COPY) $(BFLAGS) -O binary $(PRJ).elf $(PRJ).bin +# preloz co je potreba +$(BLD)%.o: %.c + -@echo [CC $(TOOL),$(TARGET)] $@ + @$(CC) -std=gnu99 -c $(CFLAGS) $< -o $@ +$(BLD)%.o: %.cpp + -@echo [CX $(TOOL),$(TARGET)] $@ + @$(CXX) -std=c++17 -fno-rtti -c $(CFLAGS) $< -o $@ +$(BLD)%.o: %.s + -@echo [AS $(TOOL),$(TARGET)] $@ + @$(AS) $(CCPU) $< -o $@ +$(BLD): + mkdir $(BLD) +./lib/libgsm.a: + cd ./lib/gsm/src && $(MAKE) TARGET=$(TARGET) all +flash: $(PRJ).elf + minichlink -w $(PRJ).bin flash -b +# vycisti +clean: + $(DEL) $(BLD)* *.lst *.bin *.elf *.map *~ +.PHONY: all clean flash run diff --git a/V203F6P6/thermometer/ch32v203 b/V203F6P6/thermometer/ch32v203 new file mode 120000 index 0000000..7650c85 --- /dev/null +++ b/V203F6P6/thermometer/ch32v203 @@ -0,0 +1 @@ +../ch32v203/ \ No newline at end of file diff --git a/V203F6P6/thermometer/common b/V203F6P6/thermometer/common new file mode 120000 index 0000000..8332399 --- /dev/null +++ b/V203F6P6/thermometer/common @@ -0,0 +1 @@ +../common/ \ No newline at end of file diff --git a/V203F6P6/thermometer/extdata.c b/V203F6P6/thermometer/extdata.c new file mode 100644 index 0000000..9d7b0ed --- /dev/null +++ b/V203F6P6/thermometer/extdata.c @@ -0,0 +1,46 @@ +/* GENERATED FILE DO NOT EDIT */ +#ifndef EXTROM +#error "Compile with -DEXTROM=1" +#endif +#include "gsmdata.h" +const SayedTexts sayed_texts = { + .nula = { 0x0000a2a0u, 22 }, + .jedna = { 0x00009f60u, 25 }, + .dva = { 0x00009c80u, 22 }, + .dve = { 0x00009920u, 26 }, + .tri = { 0x00009680u, 20 }, + .ctyri = { 0x00009300u, 27 }, + .pet = { 0x00009080u, 19 }, + .sest = { 0x00008d20u, 26 }, + .sedm = { 0x00008a20u, 23 }, + .osm = { 0x000087e0u, 17 }, + .devet = { 0x00008460u, 27 }, + .deset = { 0x000080e0u, 27 }, + .jedenact = { 0x00007c00u, 37 }, + .dvanact = { 0x00007740u, 36 }, + .trinact = { 0x00007280u, 36 }, + .ctrnact = { 0x00006da0u, 37 }, + .patnact = { 0x00006920u, 34 }, + .sestnact = { 0x00006300u, 47 }, + .sedmnact = { 0x00005d40u, 44 }, + .osmnact = { 0x00005840u, 38 }, + .devatenact = { 0x000052a0u, 43 }, + .dvacet = { 0x00004ea0u, 31 }, + .tricet = { 0x00004ae0u, 29 }, + .ctyricet = { 0x00004640u, 35 }, + .padesat = { 0x000041c0u, 34 }, + .sedesat = { 0x00003c80u, 40 }, + .sedmdesat = { 0x000036a0u, 45 }, + .osmdesat = { 0x00003180u, 39 }, + .devadesat = { 0x00002c20u, 41 }, + .sto = { 0x00002940u, 22 }, + .dveste = { 0x00002440u, 38 }, + .sta = { 0x00002180u, 21 }, + .set = { 0x00001ec0u, 21 }, + .tisic = { 0x00001ac0u, 31 }, + .tisice = { 0x000015a0u, 39 }, + .minus = { 0x000011e0u, 29 }, + .point = { 0x00000e20u, 29 }, + .hafo = { 0x00000ac0u, 26 }, + .units = { 0x00000280u, 64 }, +}; diff --git a/V203F6P6/thermometer/extflash/Makefile b/V203F6P6/thermometer/extflash/Makefile new file mode 100644 index 0000000..baa9d7c --- /dev/null +++ b/V203F6P6/thermometer/extflash/Makefile @@ -0,0 +1,27 @@ +PR = test +VPATH = . +CXX = g++ +CC = gcc +CFLAGS = -Wall -Os -I.. -I../lib/gsm/inc +#CFLAGS+= -DDEBUG +MFLAGS = -o $(PR) +LFLAGS = +#arm-none-eabi- + +all: data.elf $(PR) + +OBJECTS = main.o gsmdata.o texts.o + +$(PR): $(OBJECTS) + $(CXX) $(MFLAGS) $(OBJECTS) $(LFLAGS) +clean: + rm -f *.o *~ data.elf data.map data.hex $(PR) +%.o: %.cpp + $(CXX) -std=c++14 -c $(CFLAGS) -o $@ $< +%.o: %.c + $(CC) -c $(CFLAGS) -o $@ $< +data.elf: gsmdata.c + gcc -Wall -Os -I.. -I../lib/gsm/inc -Wl,-Map=data.map,--gc-sections -nostdlib -nostartfiles -o data.elf gsmdata.c -L. -T script.ld + objcopy -O binary data.elf data.bin + #objcopy -O ihex data.elf data.hex +.PHONY: all clean diff --git a/V203F6P6/thermometer/extflash/gsmdata.c b/V203F6P6/thermometer/extflash/gsmdata.c new file mode 100644 index 0000000..9efe99e --- /dev/null +++ b/V203F6P6/thermometer/extflash/gsmdata.c @@ -0,0 +1,1398 @@ +/* GENERATED FILE DO NOT EDIT !!! */ +#include "gsmdata.h" +static const gsm_frame gsm_data_nula[] = { + {0xd2,0x9a,0x93,0xea,0x19,0x50,0x61,0x49,0x2d,0xb7,0x6b,0x2c,0x67,0x60,0xe9,0x1b,0x8d,0xb4,0x9a,0x78,0xc0,0xa7,0x1c,0x6c,0xb6,0xea,0xcc,0x81,0x6a,0xf4,0x4c,0xa2,0x49,}, + {0xd0,0xeb,0xd4,0x6d,0xe3,0x57,0x41,0xb8,0xf5,0xdf,0x5b,0x09,0x65,0x62,0x83,0x15,0xd2,0xed,0x1a,0x69,0xc9,0x24,0x9f,0xae,0x39,0x74,0x53,0x26,0x8a,0xcd,0xca,0x25,0xa5,}, + {0xd1,0x2c,0xc3,0xe6,0x23,0xa5,0xc5,0x09,0x03,0x8e,0x21,0x9c,0x57,0x07,0x58,0x99,0x3c,0x38,0xae,0xa9,0xca,0x5a,0xe3,0x58,0x4a,0xd5,0x55,0xa4,0x59,0x93,0xc2,0x8d,0x9a,}, + {0xd1,0x2d,0x93,0x65,0xac,0x55,0x25,0xe9,0xa1,0x09,0x69,0x3a,0xa8,0x88,0xad,0x34,0x28,0x9e,0xa7,0x55,0xa6,0xc3,0x5c,0x8a,0x2e,0xcd,0x55,0x09,0x45,0x2c,0xad,0x33,0xdb,}, + {0xd2,0x28,0x9b,0x29,0xa2,0x57,0xa8,0xd1,0xe4,0xc5,0xa2,0x81,0x55,0xab,0x7d,0x34,0x96,0xb6,0x5b,0x57,0x8e,0xb8,0xe3,0x91,0xda,0x2c,0x55,0x6c,0xb9,0x0b,0xd5,0x43,0x18,}, + {0xd2,0x27,0xc3,0x2a,0x9a,0xaa,0x8c,0xf5,0xa3,0x37,0xf7,0x0b,0x57,0x4b,0xc3,0x0d,0x3b,0xc9,0x13,0xab,0x2c,0xc4,0xa1,0xad,0xf7,0x9a,0x57,0xcc,0x45,0x5c,0x91,0x76,0xda,}, + {0xd2,0x29,0xa2,0x22,0x2b,0x55,0x09,0x32,0xa9,0xed,0xa5,0x7b,0xa6,0xcb,0x02,0xa2,0xe6,0xb1,0x9c,0xb8,0xed,0x36,0xd4,0x3b,0x8a,0xde,0x61,0x6b,0xa9,0x13,0x4d,0x4e,0x1e,}, + {0xd3,0x2f,0x81,0x89,0xf3,0x5f,0x69,0x39,0x94,0xb1,0xb0,0x22,0x5e,0xc9,0xd6,0xe3,0xce,0xd6,0x90,0xbc,0xaa,0x8f,0x1b,0x71,0xe7,0x63,0x5f,0x48,0xb2,0x7b,0x71,0xc9,0x5b,}, + {0xd3,0x30,0x59,0xd9,0xac,0x5f,0x29,0x46,0x61,0x3d,0xba,0xe4,0xbf,0x28,0x39,0x92,0x48,0x68,0xac,0x5f,0xa4,0xa8,0xa4,0x5c,0x39,0x24,0x5f,0xc5,0x98,0xdd,0x55,0x55,0xd8,}, + {0xd3,0xee,0x81,0x86,0xb2,0x5f,0x88,0xf5,0x5c,0x75,0xc9,0x1c,0x5f,0x29,0x01,0xe9,0xad,0xd9,0x24,0x61,0x4b,0x26,0x4f,0x6e,0x47,0x24,0x5f,0xa4,0x47,0x97,0x9e,0xa5,0xa5,}, + {0xd4,0xeb,0xe8,0xca,0x70,0xbf,0xa8,0xb7,0x5b,0x4c,0x18,0xaf,0x5f,0xea,0xc7,0x34,0xb6,0x36,0x8f,0x59,0x4c,0xbc,0xd5,0xa7,0xda,0x79,0x5f,0xaf,0xbe,0x0d,0xaa,0x36,0xe3,}, + {0xd4,0xeb,0xf9,0x96,0x28,0x61,0x4c,0x42,0x3b,0x8f,0x38,0xf5,0xbf,0x2e,0xc7,0x11,0x16,0x57,0x5c,0x5f,0x6c,0xdd,0x64,0x80,0x64,0xec,0xbf,0x6d,0x37,0xdd,0x89,0x89,0xcd,}, + {0xd4,0xea,0xcb,0x4e,0x18,0xbd,0x6d,0xd7,0x1d,0x91,0x40,0xe1,0x5f,0x0f,0x76,0xdc,0x75,0xc7,0x5c,0x63,0xac,0x43,0xc5,0x76,0x23,0xa2,0xbf,0x6c,0x42,0x15,0x72,0x58,0x6c,}, + {0xd5,0x26,0xd3,0x4a,0x20,0x5f,0x8c,0x56,0x5b,0x8b,0x97,0x63,0xbd,0xac,0x3a,0xe1,0x72,0x3e,0x1d,0xbd,0x88,0xa7,0x2c,0x1c,0xc9,0x29,0xbd,0x48,0xce,0x6c,0x95,0xe4,0x90,}, + {0xd4,0xe9,0xca,0x4a,0x98,0xbd,0x2a,0x8e,0xe6,0x72,0x37,0x5d,0xbd,0x6a,0x36,0x32,0x7d,0xc7,0x1d,0xbf,0x65,0xa4,0xc8,0x91,0xf5,0xea,0x5f,0x89,0x1b,0x4f,0x71,0x8a,0x97,}, + {0xd3,0x2a,0xa1,0x99,0x90,0x5e,0xa9,0xc7,0x65,0x2d,0x87,0x2b,0xba,0xc7,0xe9,0x5b,0x54,0xb7,0x08,0xc0,0xc8,0x37,0xdb,0xb5,0x48,0xcf,0x60,0xaa,0x06,0x95,0x97,0x49,0x1a,}, + {0xd2,0xe5,0x90,0xda,0x62,0xb0,0x88,0xd4,0x84,0x6e,0x4a,0xec,0xaa,0xe5,0xd7,0x4b,0x11,0x1b,0x26,0xd4,0xe5,0x36,0x60,0x84,0x5d,0x5f,0x5e,0xc7,0x43,0xa2,0xac,0xc8,0x26,}, + {0xd5,0x64,0xb0,0x65,0x22,0xd7,0x43,0x9f,0x9d,0x92,0x02,0x18,0xac,0x87,0x08,0xd4,0x8e,0x49,0x54,0xce,0x84,0x04,0xce,0x74,0x64,0xa1,0xce,0x83,0xa4,0x32,0x1e,0x1d,0x0d,}, + {0xd5,0xda,0xd9,0xe0,0xc2,0x6c,0x01,0x9a,0x94,0x03,0xa3,0xa9,0xc6,0x41,0xc8,0x5d,0x82,0x43,0x8d,0xdc,0x20,0xa5,0xa4,0x76,0x37,0x1c,0xd8,0x00,0x49,0x54,0x89,0x48,0xdc,}, + {0xd0,0x5d,0x9a,0xe1,0x5a,0xca,0x20,0x56,0xe3,0xae,0x46,0xe4,0xe4,0x20,0x37,0x23,0x92,0x39,0x24,0x50,0x00,0x49,0x24,0x92,0x48,0xdc,0x88,0x00,0x49,0x24,0x8d,0xc9,0x24,}, + {0xd0,0x5d,0x9a,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xc3,0xa5,0x5a,0x50,0x60,0x49,0x1b,0x6d,0xb6,0xdb,0x50,0x20,0x22,0x4a,0x6d,0xb6,0xdb,0x52,0x00,0x36,0xdb,0x6d,0xb6,0xdb,0xd9,0xc2,0xc9,0x24,0x92,0x49,0x20,}, +}; +static const gsm_frame gsm_data_jedna[] = { + {0xd5,0x53,0x69,0x50,0x22,0x50,0x60,0x34,0x8a,0x91,0x38,0x9f,0x50,0xc0,0x84,0xd4,0x8d,0xba,0x94,0x56,0xa0,0x55,0xd9,0xa5,0xc9,0x8c,0x93,0x40,0x71,0x76,0x6c,0xf8,0x5e,}, + {0xd6,0x90,0x84,0x21,0xe2,0xd1,0x60,0x2a,0x91,0xb1,0x48,0x23,0x8c,0xc0,0xa8,0x62,0x6d,0xa6,0xa3,0xc7,0xa0,0xb9,0x15,0xad,0xa6,0x63,0x61,0x41,0xc9,0x6d,0xd1,0xb4,0x41,}, + {0xd5,0x53,0x65,0x3e,0x91,0x59,0xc4,0x26,0xed,0xdb,0x58,0x88,0x53,0x27,0x01,0xdf,0xe8,0xcd,0x72,0x59,0x6a,0x0e,0xbd,0x46,0x5b,0x19,0x53,0x0c,0x31,0x5b,0xb2,0x49,0x24,}, + {0xd6,0x15,0x45,0x3e,0x58,0x59,0xa9,0x97,0x30,0xf5,0xa9,0x5c,0x53,0x4b,0x32,0x3a,0xb5,0xc9,0x23,0x55,0x6c,0xa4,0x3a,0xd9,0x29,0x24,0x53,0x8b,0x44,0xcf,0x36,0x9b,0x24,}, + {0xd7,0x5b,0x43,0xfa,0xa9,0x53,0xb0,0x38,0xd8,0xae,0x5b,0x25,0x53,0xed,0xb6,0x85,0x4a,0x4f,0x9a,0x59,0xb1,0xaa,0x9b,0x5e,0xa7,0x13,0x53,0xb1,0x66,0xda,0x7d,0x27,0x14,}, + {0xd6,0x5e,0x6b,0x22,0x70,0x53,0x8c,0x4a,0x25,0x3e,0xf9,0x94,0x53,0x4e,0x68,0x52,0x1a,0x0d,0x94,0xb1,0x10,0x6a,0xeb,0x0d,0x23,0xe1,0x5f,0xce,0x67,0x36,0x12,0x97,0xc2,}, + {0xd6,0x20,0x88,0x2a,0xf1,0x5f,0x6c,0x1a,0xe6,0xda,0xc4,0xa0,0x5f,0x4e,0x1e,0xd5,0x6e,0x39,0x1a,0x60,0x8c,0xd8,0x23,0x0e,0xdc,0xeb,0xbe,0x4c,0xb6,0x91,0x4e,0xeb,0xfe,}, + {0xd0,0xe5,0xcc,0x32,0x21,0xc0,0x8a,0x4a,0x94,0x21,0x23,0x34,0xac,0x03,0xfc,0xc3,0xcc,0xd2,0xfd,0xae,0x22,0xa5,0xaa,0x13,0x47,0x18,0xf0,0x03,0x5f,0x65,0xde,0xa7,0x10,}, + {0xd0,0xe9,0xac,0x3a,0x19,0xc4,0xc2,0x21,0xfb,0x53,0x40,0xab,0x5e,0xa1,0xc2,0x83,0xda,0x49,0xd8,0xbc,0xc2,0x48,0xd1,0x52,0x59,0x27,0xbc,0xa1,0xb0,0xeb,0x48,0xa8,0xee,}, + {0xd9,0x15,0x7a,0x0e,0x7c,0x93,0xf2,0x69,0x92,0xa8,0x90,0x21,0x54,0xd1,0x3a,0xe5,0xd6,0xd6,0xd0,0x56,0xb4,0x2f,0x1b,0x52,0x5b,0x12,0x5f,0x53,0x34,0xfc,0x2e,0xdb,0x23,}, + {0xd3,0x9e,0x82,0xa3,0x20,0x5e,0xaf,0xb2,0x02,0x1e,0x28,0xf4,0xbc,0xb0,0x39,0x9a,0xa1,0xe2,0xfb,0xc6,0x0d,0xb9,0xa3,0xb4,0x06,0xdc,0xb4,0x4f,0xc9,0x6d,0xb5,0xb2,0x13,}, + {0xd1,0x2c,0x9b,0xb5,0xd2,0x5e,0xa8,0x1f,0x9f,0x9b,0x58,0xda,0x6e,0x48,0x7a,0xfb,0x56,0x6d,0x1a,0xba,0x67,0x01,0xe9,0xc5,0x67,0xac,0xbf,0x03,0xb4,0x9a,0x1d,0xbc,0x56,}, + {0xd1,0xe6,0x93,0x7a,0x61,0xbf,0xc4,0xbb,0x13,0x29,0xc6,0xf9,0x61,0xc7,0xd9,0xa3,0x8d,0xa9,0xc5,0x5f,0x49,0x55,0x24,0xd5,0x38,0x1e,0x5f,0xc8,0xaa,0xd4,0x71,0xb6,0xe0,}, + {0xd5,0x29,0x81,0x3d,0xd0,0x71,0xf0,0x36,0xac,0x72,0xf9,0x2f,0x59,0x11,0x27,0x20,0x15,0x39,0x23,0x5d,0x2d,0xeb,0x6b,0x20,0xf2,0xf3,0x5f,0x4d,0xc9,0xa3,0xad,0x13,0xc4,}, + {0xd5,0x2a,0x82,0x32,0x08,0x5f,0x2f,0x49,0x1c,0xb5,0xc4,0x80,0x61,0x0d,0x05,0x6d,0x6f,0x69,0x1b,0xbf,0x4f,0x89,0x16,0x8e,0xba,0xe3,0xc1,0x31,0x25,0x1f,0x8f,0x19,0x23,}, + {0xd4,0xab,0xc2,0xd2,0x18,0xbf,0x2f,0x28,0xd3,0xaf,0xb6,0xda,0x61,0xaa,0x57,0xab,0xab,0xa0,0xf9,0x5f,0x2b,0xf8,0x9e,0xce,0x52,0x1e,0x5d,0x6a,0x39,0xd3,0x99,0xd8,0x10,}, + {0xd5,0x28,0xdb,0x4a,0x20,0xbb,0xe8,0xa9,0x65,0x76,0x43,0xcd,0x5f,0xe8,0xaa,0x2b,0x52,0x3c,0x6c,0x5f,0xa9,0x9e,0xa4,0x71,0x56,0xea,0x61,0x0a,0x69,0x62,0x24,0x73,0x2d,}, + {0xd4,0xe9,0xba,0x4a,0x58,0xbf,0x48,0xe5,0xd5,0x65,0x89,0xa3,0x5f,0x49,0x65,0x1d,0x72,0x35,0x01,0x61,0x09,0x07,0x72,0xb2,0x4a,0xa2,0xbf,0x28,0x91,0x55,0xb2,0xc8,0xb8,}, + {0xd3,0xa8,0xb1,0x9d,0xc8,0xbf,0x49,0xaa,0x0d,0x59,0xe8,0xa3,0xba,0xaa,0x45,0x11,0x47,0xad,0x9c,0xbc,0xc9,0x57,0x22,0x74,0xb1,0x25,0xc0,0xa8,0xdf,0x63,0x4d,0x86,0xaa,}, + {0xd3,0x63,0x91,0x19,0xaa,0xb6,0xa7,0x59,0xec,0xad,0xe3,0x1b,0xb6,0x83,0x2e,0x4d,0x4f,0xce,0xf3,0xca,0xc6,0xa3,0x74,0x5d,0x9b,0x4c,0xd5,0x28,0x31,0x19,0x9d,0xcc,0xe3,}, + {0xd5,0x27,0x98,0xa4,0xd9,0xbe,0xa4,0x48,0x9a,0x88,0x7a,0xb3,0xb4,0x63,0x3a,0xe1,0x61,0x83,0x8e,0x65,0x43,0x44,0xd4,0x6b,0x33,0xc4,0xd2,0xc2,0xe5,0xd0,0xe1,0xb4,0xd9,}, + {0xd6,0x5a,0xd9,0xe8,0x92,0x6c,0x82,0x3e,0xa6,0x65,0x48,0x5c,0xca,0x41,0x86,0xc6,0x51,0x2a,0xdc,0xee,0x20,0x44,0xdd,0x56,0x4b,0x26,0x66,0x00,0x39,0x24,0x92,0x49,0x24,}, + {0xd0,0x9b,0x6b,0x65,0x9a,0xf0,0x40,0x59,0x2a,0x8e,0x47,0x23,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x60,0xa2,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x23,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa3,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x85,0xa9,0xb6,0xdb,0x7d,0xb6,0xdb,}, +}; +static const gsm_frame gsm_data_dva[] = { + {0xd2,0x99,0xc2,0xad,0xa2,0x50,0x60,0x49,0x6d,0x96,0x3b,0x27,0x51,0x40,0x39,0x28,0xa6,0xb2,0xb3,0x57,0x40,0xba,0xdb,0x89,0x95,0x1b,0x61,0xa0,0xc9,0x5b,0xa8,0xb0,0x81,}, + {0xd0,0xeb,0xdc,0xae,0x22,0x54,0xc1,0x2b,0xbe,0xd1,0xb6,0x49,0x55,0x62,0x3b,0x61,0x7d,0xcc,0x65,0x58,0xc2,0x19,0xd2,0x75,0xe6,0x62,0x8a,0xc2,0x46,0xbb,0x13,0x4b,0x12,}, + {0xd1,0x27,0xd4,0x6d,0xea,0xde,0x60,0x90,0xff,0xb6,0xcc,0xd9,0x96,0xe1,0x22,0xd5,0xd5,0x55,0x2b,0x54,0xa0,0xc5,0x53,0x7b,0xd4,0x92,0xa4,0xe0,0xc5,0x1b,0x52,0xe4,0x92,}, + {0xd7,0xab,0xd1,0xca,0x11,0xaf,0xa3,0xa2,0x9a,0x72,0xef,0xe1,0x54,0xa6,0x00,0xe5,0xb6,0x47,0x24,0x79,0xb0,0xb6,0xdc,0xbd,0x48,0xdc,0x6c,0x48,0x42,0xd2,0x71,0x3b,0x7e,}, + {0xd5,0xa7,0x6a,0x6b,0x20,0xb2,0xd2,0xb6,0x41,0x7b,0x5b,0x64,0x52,0xd5,0x34,0x97,0x6e,0x39,0x2c,0x53,0x51,0xb8,0x4f,0x4e,0x46,0xe5,0xa3,0x10,0xd7,0x48,0xf1,0x4a,0x9c,}, + {0xd5,0x26,0x7a,0xa2,0x9a,0x53,0xe9,0xc1,0x0b,0x94,0xc9,0x62,0x53,0x0d,0xc7,0x03,0xb4,0xcc,0xad,0xa2,0xec,0xc6,0x41,0xe3,0x48,0xbd,0xa2,0xcc,0x3b,0x08,0x12,0x65,0x6d,}, + {0xd2,0x27,0xaa,0xed,0xea,0xa2,0xca,0xc9,0x53,0x09,0xb7,0x2c,0xa2,0x26,0xbb,0x09,0x7d,0x28,0xe5,0xf0,0x43,0x58,0xc2,0x3c,0x38,0x76,0xea,0x64,0x59,0x08,0x3c,0xb8,0xed,}, + {0xd1,0xa7,0xca,0xee,0x6b,0x53,0x62,0x5a,0x53,0x3e,0x8a,0x9d,0x53,0xc1,0xd8,0xb4,0x9b,0x09,0x23,0xa1,0x23,0x77,0x30,0x8e,0x46,0xe3,0xa3,0x03,0x67,0x63,0x68,0xf8,0x63,}, + {0xd2,0xe9,0xb2,0x99,0xa0,0x53,0x44,0xc9,0x14,0x06,0x19,0xb5,0xa5,0xc8,0x59,0x1b,0x20,0x47,0xe5,0x53,0x48,0xcb,0x22,0x80,0xf7,0x24,0x53,0xed,0x3a,0xa3,0x6a,0x75,0x1d,}, + {0xd3,0xee,0xc2,0xe1,0xa0,0x53,0xec,0x3b,0x24,0x80,0x49,0x1d,0x53,0xcc,0xe9,0x35,0x54,0x0e,0xa2,0x51,0xab,0xd6,0x3d,0xa6,0x31,0x5c,0x53,0x2e,0x57,0x25,0x6d,0x95,0xcd,}, + {0xd4,0x6f,0xa3,0x6e,0x10,0xa5,0xca,0xd3,0x5d,0x52,0x21,0xd4,0x55,0xcf,0xd8,0xec,0x71,0xa9,0x85,0xa3,0xad,0xe7,0x24,0x7c,0xc6,0x83,0x53,0xcc,0xc8,0xe7,0x4a,0x95,0xcd,}, + {0xd4,0x2c,0xc3,0x19,0xd9,0x52,0xce,0x5b,0x2d,0xac,0xb2,0xfa,0xa4,0xec,0xd6,0xb3,0x8c,0xc3,0x39,0xa3,0xab,0xd6,0x54,0x12,0xae,0xcf,0xa5,0xaa,0xf7,0x4d,0x75,0xf1,0x8b,}, + {0xd4,0xab,0xd3,0x55,0xa0,0xa7,0x4d,0xbb,0x14,0x92,0x44,0x17,0x51,0x6c,0x39,0x64,0xb6,0x44,0x17,0xa1,0xc9,0xa5,0x39,0xae,0xd7,0xcb,0xa1,0xcc,0x19,0x23,0x72,0x47,0xc8,}, + {0xd4,0xab,0xca,0x59,0xd8,0xa3,0x0e,0x07,0x2b,0x92,0x38,0x92,0x53,0xe7,0xcd,0x54,0x8f,0x8f,0x59,0x53,0xc8,0x0c,0xcd,0xa7,0x1a,0x9e,0x53,0x49,0xb7,0x33,0x93,0x3a,0x48,}, + {0xd4,0x6c,0xb2,0x56,0x10,0xa3,0x68,0xf6,0xfa,0x8e,0xd4,0xe2,0xa3,0xa9,0x8f,0x14,0x85,0xb7,0x2f,0xa5,0x48,0x8c,0xb5,0xca,0xd3,0x20,0x53,0x48,0xaa,0xe4,0xd2,0x55,0x18,}, + {0xd3,0x29,0xb2,0x19,0x89,0xa2,0xa7,0x13,0xd7,0xf2,0xe6,0xc5,0xa4,0xc6,0x8b,0x57,0xd6,0x56,0x8f,0xf0,0xa8,0x80,0x9d,0x9b,0x36,0xa1,0xa4,0xe8,0x28,0xbc,0xd6,0x46,0x68,}, + {0xd3,0x25,0x89,0xa1,0xe2,0xe4,0xa7,0x20,0xc3,0x9a,0x6d,0x25,0xa8,0xa5,0xb1,0x64,0x3c,0xba,0xe2,0xa2,0xc6,0x42,0xba,0x75,0xc5,0x61,0x52,0xa5,0xc6,0x2c,0x36,0xbb,0x53,}, + {0xd5,0x68,0xa8,0x65,0x1a,0xa1,0x63,0xc8,0x2d,0x19,0x4a,0x65,0x94,0xa3,0xb2,0x14,0x19,0x47,0x24,0x65,0x63,0x0c,0x66,0x93,0x35,0x0c,0x52,0xc3,0x1c,0x4f,0x62,0xd1,0x5b,}, + {0xd6,0x9a,0xd9,0xe4,0xd2,0x6e,0xa1,0xe0,0x3b,0x56,0xb0,0xea,0xbe,0x01,0xc2,0xd8,0xc6,0x45,0x63,0xc2,0x00,0x5b,0x6d,0xd3,0x67,0x74,0x66,0x20,0x4b,0x64,0xb6,0x59,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x59,0xa6,0x20,0x49,0x2c,0x92,0x47,0x1b,0xf0,0x00,0x37,0x1b,0x6d,0xb7,0x1b,0xe2,0x00,0x38,0xdb,0x8e,0x49,0x1c,0x6c,0x00,0x47,0x1c,0x92,0x49,0x24,}, + {0xd0,0x5e,0x9b,0x21,0x5a,0x76,0x00,0x49,0x24,0x92,0x49,0x24,0xc0,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x23,0x92,0x49,0x24,}, + {0xd9,0xe1,0x91,0xd4,0x50,0xa7,0x80,0x46,0xdc,0x92,0x49,0x24,0xb7,0xc1,0xc9,0x24,0x8c,0x78,0xe4,0x60,0x20,0x49,0x24,0x92,0x49,0x9c,0x9c,0x00,0x49,0x24,0x93,0x39,0x24,}, +}; +static const gsm_frame gsm_data_dve[] = { + {0xd2,0x99,0xc2,0xad,0xa2,0x50,0x60,0x49,0x6d,0x96,0x3b,0x27,0x51,0x40,0x39,0x28,0xa6,0xb2,0xb3,0x57,0x40,0xba,0xdb,0x89,0x95,0x1b,0x61,0xa0,0xc9,0x5b,0xa8,0xb0,0x81,}, + {0xd0,0xeb,0xdc,0xae,0x22,0x54,0xc1,0x2b,0xbe,0xd1,0xb6,0x49,0x55,0x62,0x3b,0x61,0x7d,0xcc,0x65,0x58,0xc2,0x19,0xd2,0x75,0xe6,0x62,0x8a,0xc2,0x46,0xbb,0x13,0x4b,0x12,}, + {0xd1,0x26,0xd4,0xe9,0xeb,0xde,0x60,0x90,0xff,0xb6,0x3c,0xd9,0x96,0x81,0x54,0x62,0xbe,0xa7,0x53,0xe6,0xa1,0x42,0xa1,0xbe,0x28,0xe5,0x54,0xc0,0xb7,0x53,0x77,0xc4,0x92,}, + {0xd7,0x2b,0xa8,0xd2,0x4a,0xb3,0x44,0x24,0x93,0x97,0x6f,0xa2,0x50,0xa5,0x00,0x5c,0x92,0xed,0x59,0x50,0xa2,0x82,0xee,0xd6,0x25,0x2e,0xcb,0xcf,0x36,0xdc,0x9d,0x58,0xdc,}, + {0xd5,0xa8,0x5a,0x2b,0x20,0x70,0x64,0xd0,0xda,0x50,0x65,0xa6,0xbe,0xed,0xc6,0x01,0x7a,0xed,0x66,0xe5,0xd3,0x34,0x07,0xaa,0xc8,0xed,0x53,0x0f,0x97,0x09,0xe5,0xbb,0x1d,}, + {0xd5,0x23,0x83,0x27,0x18,0xa5,0x10,0xd4,0xd0,0xe9,0x48,0xe5,0xa5,0x2f,0xe6,0x90,0xe6,0xe8,0x9d,0x52,0x8f,0xca,0xd8,0x0a,0x77,0x15,0xa6,0xcd,0xd8,0xc8,0x82,0xf6,0xde,}, + {0xd2,0x26,0xdb,0x25,0x72,0xa4,0xeb,0x58,0xc0,0x8d,0xb9,0x35,0xa0,0xc8,0x14,0xed,0x7c,0x92,0xed,0xf0,0x45,0x4a,0xda,0x1c,0xb8,0x3d,0xf0,0x23,0xfa,0xd8,0x11,0x58,0x37,}, + {0xd1,0x68,0xd2,0xea,0x2b,0xf0,0xe3,0xfc,0xd3,0x55,0xe5,0x1b,0xea,0xc2,0xd3,0x51,0xcf,0xba,0x1e,0xa3,0x61,0xd8,0x73,0x3a,0x3b,0x18,0xa4,0xe3,0xea,0xe3,0x13,0xb7,0x22,}, + {0xd2,0xe2,0x9a,0xae,0x69,0xa5,0xe5,0xd8,0xdb,0x63,0xc5,0x65,0x53,0xc4,0xfd,0x24,0x40,0x51,0x65,0x55,0xcb,0xda,0xa3,0x69,0xf6,0xdb,0x53,0xec,0x49,0x13,0x6d,0xf6,0xa3,}, + {0xd4,0xa2,0x69,0xe7,0x71,0x53,0xed,0xcb,0x12,0x88,0xf6,0x9d,0x53,0xcb,0x4e,0xd5,0x6a,0x3c,0x54,0xa0,0xad,0x49,0x63,0x4a,0x21,0x2d,0xa8,0x4c,0xed,0x64,0x68,0x16,0x66,}, + {0xd5,0x16,0x65,0x7d,0x59,0x53,0x0a,0x22,0xee,0x88,0x17,0x3d,0xa4,0xe9,0xc9,0x2d,0x68,0x07,0x2f,0xa9,0x4b,0x29,0x2c,0x40,0x5b,0xac,0x53,0x28,0x99,0xac,0x48,0x88,0xe6,}, + {0xd5,0x16,0x75,0xbd,0x58,0xab,0x49,0x37,0xad,0x85,0x10,0xdc,0xf1,0x0c,0x5b,0x24,0x9a,0xc0,0x0b,0x53,0x0b,0x68,0xe4,0xb5,0xb2,0x2c,0x53,0x87,0x8c,0x9c,0x95,0x92,0x7c,}, + {0xd4,0x59,0x95,0x3d,0x69,0x53,0xe9,0xb6,0xe6,0xa8,0xb4,0xe8,0x51,0xc9,0x25,0x26,0xd2,0x48,0x7f,0x57,0xcc,0x58,0xee,0xa9,0x37,0x27,0x53,0xf0,0x34,0xec,0x6d,0x5a,0x9f,}, + {0xd4,0x5b,0xa4,0x31,0x58,0x50,0xb0,0x13,0x24,0xb6,0xd6,0x88,0x53,0x6e,0xd9,0x5c,0xb2,0xc4,0x42,0xa5,0x10,0x78,0xed,0x71,0xd8,0x51,0x53,0x10,0x74,0x75,0x72,0xd8,0x9a,}, + {0xd5,0x1f,0x83,0xb1,0x50,0xa3,0xcc,0xf2,0x7b,0x6b,0x66,0xc8,0x53,0x10,0x0d,0x63,0x92,0xc5,0x1c,0x52,0xcc,0x9b,0xe3,0x77,0x46,0x49,0xa2,0xcc,0x0d,0xe3,0x77,0x46,0xc1,}, + {0xd4,0xda,0xab,0xb4,0xd8,0x53,0x49,0x8f,0x6b,0x8e,0xe9,0x0c,0xa5,0x2b,0xa5,0xcb,0xb5,0xc9,0x0c,0xa3,0xca,0xaa,0xc4,0xcd,0xa9,0x22,0x55,0x4c,0x17,0xc4,0xae,0x48,0xd2,}, + {0xd3,0x5f,0xb3,0xe9,0x59,0xa5,0x68,0x25,0xd1,0xd1,0xcb,0x12,0xa3,0x08,0x3a,0xe6,0x12,0xa9,0x2d,0xa5,0x25,0x36,0xb4,0x1b,0xa5,0xf0,0x53,0x28,0x26,0x3b,0x7a,0x39,0x64,}, + {0xd2,0xa6,0xba,0xf1,0x11,0xa5,0x46,0x32,0x78,0xd9,0xb9,0x13,0x51,0xaa,0x59,0x1a,0xe2,0x64,0xab,0xa4,0xe7,0x20,0x6b,0x57,0xb9,0xa5,0xa4,0xe8,0x22,0x5d,0x1b,0x2b,0xa5,}, + {0xd2,0x22,0xe1,0xed,0x59,0x53,0x44,0xa1,0x07,0x67,0x55,0x5b,0xa0,0xe5,0x85,0x0f,0x6b,0xc7,0x5c,0xf0,0xc3,0xa3,0x04,0xcd,0x6b,0x61,0xf0,0xc4,0x2c,0x1a,0x79,0xdd,0x21,}, + {0xd1,0x69,0x8b,0x3e,0xa8,0xea,0x43,0xc2,0x29,0x6e,0xcd,0x1b,0xd2,0xa2,0x60,0x9b,0x05,0x3f,0xbd,0xe2,0x20,0x8c,0x65,0x04,0x8b,0x3f,0x98,0xc1,0x26,0xa4,0xac,0x44,0xeb,}, + {0xd4,0x67,0x50,0x5d,0x73,0xe4,0xc1,0x34,0x9b,0x54,0x8c,0x5b,0xba,0xc0,0x94,0x21,0x96,0xc7,0x21,0xd4,0xe0,0xe6,0xa4,0x17,0xa9,0xe2,0xf0,0xa0,0xba,0xe6,0x75,0xba,0xdf,}, + {0xd4,0xa2,0x70,0x50,0xaa,0xb2,0xa1,0x2b,0x0d,0x8e,0x4c,0xd3,0xee,0xa0,0xa7,0x65,0xab,0x34,0xe3,0x86,0xe0,0xdb,0x1d,0xb9,0xd6,0x9a,0x53,0x60,0xc9,0x24,0x92,0xc6,0xa2,}, + {0xd5,0xa0,0x70,0xd1,0xa1,0x9f,0x40,0xa8,0xec,0x6c,0x9d,0x5c,0x6a,0x00,0x78,0x6a,0x8d,0xb7,0x1c,0x72,0x40,0x46,0xdb,0x6d,0xb6,0xdb,0xc6,0x20,0x48,0xdb,0x6d,0xb6,0xdb,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0x8a,0x00,0x46,0xdb,0x6d,0xb7,0x24,0xce,0x00,0x49,0x24,0x92,0x49,0x24,0xe4,0x00,0x49,0x24,0x92,0x49,0x24,0x58,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0x65,0x5a,0xc6,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa2,0x55,0xef,0x36,0xdb,0x6d,0xb8,0x24,0x5c,0x44,0x76,0xdb,0x6d,0xb6,0xdd,0xaa,0x42,0x36,0xdb,0x6d,0xb6,0xd7,0xec,0x22,0x46,0xdb,0x6d,0xb5,0xd2,}, +}; +static const gsm_frame gsm_data_tri[] = { + {0xd8,0x5e,0x91,0xd8,0xd1,0x50,0x20,0xb6,0xdb,0x6d,0x36,0xd9,0x52,0xc0,0x37,0x85,0x92,0x77,0x1b,0x52,0x80,0x33,0xa3,0xb9,0xaa,0xa2,0x50,0xe0,0x3d,0x1b,0x2a,0xd6,0x77,}, + {0xd5,0x16,0x62,0x1d,0x19,0x58,0xc0,0x30,0x1c,0x69,0xaa,0x9a,0x6c,0x40,0x64,0xf3,0x8d,0xc4,0xab,0x9e,0xa0,0x66,0xb3,0x8a,0x29,0x14,0x7c,0x80,0xb9,0x19,0x71,0xa7,0x1b,}, + {0xd5,0x16,0x71,0xd8,0xd9,0x50,0x80,0x26,0x63,0xd1,0x3a,0xda,0x9e,0x80,0x35,0x2c,0x9e,0x29,0x33,0xd8,0xc0,0x5c,0xa1,0xaf,0x4e,0x5c,0x7a,0xa0,0x4a,0x2f,0x9c,0xa9,0x6a,}, + {0xd7,0xaa,0xea,0xdd,0x12,0x9e,0xc0,0xb8,0xe2,0x51,0x94,0xd3,0xb3,0xaf,0x49,0x26,0x7f,0x48,0xec,0x51,0x33,0x48,0xe6,0x8d,0x2b,0xd1,0x58,0xd0,0x7f,0x06,0x78,0xa4,0x8a,}, + {0xd5,0xa9,0x50,0x10,0x18,0x5c,0x50,0x12,0x12,0x4d,0x2a,0xe3,0xc0,0x4a,0x3d,0x22,0xb2,0xf0,0xf6,0xf0,0x26,0xf5,0x60,0xfa,0xeb,0x64,0xf0,0x44,0xef,0xdb,0xb2,0xc5,0x1b,}, + {0xd8,0xa5,0x69,0xc9,0x21,0xea,0x01,0xa7,0xf3,0xb5,0xc9,0xe5,0xee,0x42,0x3b,0xbb,0x96,0xe9,0xe5,0x7c,0xa1,0xd7,0xf4,0x93,0x57,0x27,0xd9,0xe8,0xb7,0x24,0x6d,0x36,0x17,}, + {0xdc,0xaa,0x69,0x9c,0x49,0x61,0xb1,0x38,0x6b,0x12,0xb9,0x2d,0x60,0xcd,0xd7,0xec,0xfe,0x77,0x2d,0x66,0xcd,0xa9,0x65,0x8d,0x5c,0x27,0xf0,0x8f,0x27,0x9c,0x8f,0x38,0x3c,}, + {0xdd,0xae,0xbc,0x21,0x12,0x59,0x6f,0x57,0x15,0xbc,0xbd,0xe9,0x58,0xae,0xeb,0x67,0xcb,0xdd,0x6c,0x76,0xcc,0x5f,0x1d,0xaa,0xbc,0x2d,0xc6,0x8d,0x5a,0xe3,0x8a,0x9a,0x2b,}, + {0xdd,0x6d,0xec,0xa5,0x4b,0xc0,0xcd,0x24,0xd8,0x88,0x61,0x0a,0x58,0x8c,0x24,0x81,0x86,0x28,0x4c,0x7a,0xab,0x84,0xdd,0x08,0xb5,0x4c,0xf0,0xcb,0x0e,0x0c,0x88,0x94,0x64,}, + {0xd7,0x58,0x70,0xea,0xba,0xd5,0x4b,0x3a,0x6c,0x8c,0x58,0xea,0x52,0xe6,0x5d,0x54,0x60,0x0a,0xdf,0xad,0x4f,0xc9,0x64,0x69,0x17,0xe4,0x51,0x10,0xc8,0xe4,0x8d,0x23,0xdc,}, + {0xd6,0x1c,0x53,0x6f,0xb0,0x53,0x0b,0xb7,0x36,0xd4,0x15,0x0b,0xa3,0x4e,0xc9,0x6d,0x8e,0x31,0x13,0xa3,0x8e,0xe9,0x24,0x6e,0x58,0x34,0x53,0x4d,0xb5,0x37,0x49,0xb4,0xa8,}, + {0xd3,0x9b,0xa4,0x3e,0x58,0x51,0x0a,0x0f,0x63,0xf5,0xc4,0x6a,0xa3,0x0b,0x99,0x1a,0x92,0x36,0xb9,0x53,0x8a,0xf7,0x23,0x8a,0x2a,0xe4,0xa3,0x6a,0x2b,0x25,0xb1,0x46,0x3b,}, + {0xd3,0x9c,0x84,0xfe,0x10,0xa2,0xab,0x37,0x24,0xd5,0xa6,0x47,0xa5,0x4a,0x39,0x1c,0x8d,0xb4,0x97,0x51,0x87,0x0a,0xe3,0x73,0x47,0x31,0xa3,0x47,0x39,0x1c,0x99,0xc1,0x0e,}, + {0xd3,0x5d,0x94,0xfd,0xd8,0xa3,0x49,0xc8,0xe3,0x76,0x46,0xd8,0xa5,0x09,0x07,0x24,0x96,0x56,0xd2,0x53,0x44,0x09,0x65,0x96,0x34,0x91,0xa5,0x04,0xe1,0x34,0xb1,0xc6,0x92,}, + {0xd2,0xde,0xb4,0xb1,0x21,0xa5,0x42,0xc9,0x2b,0x5a,0xc6,0x10,0xa2,0xc3,0xbb,0x24,0x96,0xc6,0x50,0xa0,0xe2,0xbb,0x36,0xb2,0x31,0xc1,0xf0,0x82,0x85,0x16,0xf5,0xa2,0xb1,}, + {0xd3,0xe6,0x63,0x28,0x22,0x96,0xe8,0xb6,0xe4,0x9c,0x5a,0xdc,0xa4,0xa1,0x95,0xe3,0xeb,0xeb,0x0a,0xb0,0x42,0x05,0x1b,0xb6,0xd5,0x11,0xea,0x01,0xa4,0x93,0x6f,0xc9,0x5a,}, + {0xd2,0xd9,0x9b,0x6d,0xe3,0xa4,0xa0,0x1e,0x81,0xaa,0xa4,0xa2,0xe8,0x40,0x1b,0x01,0x8e,0x39,0x25,0xbe,0x20,0x47,0x24,0x92,0x49,0x1b,0xd2,0x00,0x46,0xdb,0x92,0x48,0xe4,}, + {0xd0,0x5d,0x9a,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0xb0,0x00,0x49,0x24,0x92,0x49,0x24,0xea,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5d,0x9a,0xe1,0x5a,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa3,0x57,0xa0,0x36,0xdb,0x6d,0xb9,0x24,0x53,0xd0,0xc9,0x24,0x12,0x49,0x24,0x7e,0x20,0x7f,0xff,0xff,0xb6,0xdb,0x78,0x00,0x26,0xdb,0x6f,0xff,0xff,}, +}; +static const gsm_frame gsm_data_ctyri[] = { + {0xd8,0x4e,0x68,0xd8,0xdb,0x50,0x60,0x34,0x9a,0x68,0xce,0x56,0x54,0x00,0xb6,0x74,0x71,0xb7,0x25,0x5a,0xa0,0xbc,0x89,0x8d,0xc8,0xda,0x96,0xa0,0xb8,0xd6,0x91,0xb8,0xdc,}, + {0xd4,0x97,0x69,0x19,0x12,0x72,0xe0,0x3e,0x92,0x7d,0xb6,0xdd,0xc0,0x80,0xb7,0x1b,0xb2,0xb8,0xa6,0xba,0xc0,0x36,0xf1,0xef,0x3e,0x9d,0x7c,0xa0,0x3b,0x67,0x67,0x44,0xe5,}, + {0xd2,0x95,0x61,0xe1,0x91,0x90,0xc0,0x26,0xd9,0x94,0xab,0x52,0xe6,0xc0,0x5d,0xa4,0x8d,0xad,0x28,0x8a,0xe0,0x3b,0x2b,0x6e,0x37,0x15,0x72,0xe0,0xc7,0x24,0x92,0x38,0xf3,}, + {0xdc,0x23,0x7b,0x0c,0x89,0x57,0x01,0xc9,0x1c,0xb6,0x4b,0xec,0x5d,0x21,0x7f,0x65,0xda,0xdb,0x6c,0x7b,0xac,0x49,0x1b,0x93,0x87,0x54,0x50,0x05,0xfc,0xdc,0x72,0xc9,0x23,}, + {0xdc,0xef,0xd5,0x24,0x9b,0xb0,0x88,0xc9,0x5c,0x92,0xee,0xe7,0x51,0x49,0xfd,0xbb,0x67,0xbb,0x6c,0x6f,0x2d,0x99,0x65,0x7d,0x1f,0x5e,0x7d,0xaf,0x35,0x22,0x51,0x71,0x4b,}, + {0xdc,0x29,0xcc,0x69,0x24,0x5d,0x6f,0x51,0x84,0x70,0x26,0x9f,0x59,0x4d,0xb5,0x03,0x30,0xae,0x81,0xcf,0x34,0x37,0xce,0x73,0xe8,0x64,0x54,0x94,0x4f,0x12,0x2d,0xa9,0x5a,}, + {0xdb,0x21,0xfb,0x90,0x18,0x98,0x4e,0x67,0xe4,0x96,0xd9,0x64,0xcc,0x26,0xc4,0xe7,0x92,0xad,0x7e,0x98,0x23,0x57,0x7f,0xad,0x57,0x2c,0xca,0x21,0x26,0xe2,0x65,0x12,0xe2,}, + {0xd7,0x55,0x62,0x0c,0xca,0xea,0x20,0x86,0xca,0x65,0x16,0xc8,0xc0,0x60,0x06,0x9d,0x6d,0x3d,0xb9,0xd8,0xc0,0xc6,0x5d,0x91,0xb8,0xe3,0xee,0xc0,0x2a,0xea,0xa9,0xa3,0x5b,}, + {0xd8,0xa5,0x80,0x95,0xab,0x63,0x00,0x95,0x12,0x0e,0x40,0x09,0x53,0x8c,0xb6,0xdb,0x73,0xe1,0x63,0x50,0xaa,0xdd,0x70,0x5d,0x0a,0x83,0x76,0x4a,0x12,0x92,0x11,0x49,0x6c,}, + {0xd4,0x1d,0x5c,0x3d,0xd9,0x5b,0xce,0x46,0xc9,0x06,0x5b,0xa5,0x5e,0xcf,0x56,0xdb,0x89,0x7b,0x23,0xb5,0x30,0xb9,0x24,0x71,0xbf,0x64,0x56,0xcd,0x39,0x2d,0x8d,0x03,0xe5,}, + {0xd5,0x18,0x73,0xba,0xf0,0x57,0xea,0x28,0xb6,0x8d,0x11,0x8a,0x57,0x6c,0x39,0x35,0xb1,0xa4,0x4f,0xa7,0x72,0xc8,0xdb,0x97,0xc8,0xd2,0xb9,0xb3,0x55,0x28,0xb2,0x4b,0x2c,}, + {0xd5,0x59,0x5a,0xba,0xa8,0x63,0x6e,0xd0,0x5d,0xc2,0x39,0xb7,0xc1,0x51,0x34,0xda,0x53,0xa6,0xdc,0x61,0x32,0x4c,0x1c,0x51,0x43,0x9b,0x60,0x90,0x49,0x3b,0xb1,0xb4,0x91,}, + {0xd4,0xd2,0x6a,0xba,0xb0,0xbe,0xac,0xe2,0xbc,0xcb,0x40,0xe3,0xc2,0xad,0xc9,0x78,0xb2,0xb7,0x09,0xd6,0xb1,0x34,0xdb,0xf5,0xd5,0x1b,0x62,0x88,0x18,0xc1,0x3d,0x73,0x54,}, + {0xdd,0x27,0xcb,0x10,0x0a,0xab,0xd3,0xd9,0x1b,0x80,0x32,0x34,0xde,0xb1,0x39,0x26,0xdf,0xeb,0x24,0xa6,0xd2,0x5b,0x26,0xaf,0x7e,0x3b,0xd4,0xd2,0x68,0x7b,0x91,0x63,0x95,}, + {0xde,0xa7,0xe4,0x18,0x5a,0x55,0x72,0x2e,0x0d,0x4d,0x20,0x98,0x5c,0xf1,0x30,0xa1,0x8a,0x24,0xe7,0xc4,0xcd,0x8c,0x28,0xc6,0x8e,0xbb,0x56,0xcc,0xb7,0x73,0xb2,0x38,0x7f,}, + {0xdd,0xde,0x90,0xcc,0xe2,0xbb,0x4c,0xe3,0xc3,0xb4,0xe2,0xe5,0x68,0xcc,0x39,0x0a,0xed,0xd2,0xd6,0xba,0xcf,0x38,0x24,0x72,0x5b,0x6c,0x59,0x30,0xb4,0x93,0x05,0x17,0xbf,}, + {0xd4,0x54,0x63,0xfe,0x29,0x5a,0xd0,0x7f,0xed,0x69,0x04,0x0a,0xce,0xac,0x2d,0x94,0x8e,0x8b,0x12,0xb8,0x4d,0x7a,0xa3,0x76,0xd9,0x4b,0xc4,0xd1,0xb6,0xfd,0x6d,0xbb,0x24,}, + {0xd3,0x99,0x84,0x3a,0x60,0x62,0xcd,0x32,0x4b,0x5d,0x9c,0xef,0xc1,0x0c,0xbd,0x64,0x49,0x1c,0x1e,0x62,0xcc,0xcb,0x8d,0xf1,0x16,0x7c,0xb0,0x8c,0xa4,0x9c,0x96,0x7a,0xc1,}, + {0xd4,0x9a,0x83,0x7a,0x91,0xc3,0x09,0xaf,0x11,0xb2,0x2b,0x2d,0x61,0x6b,0x90,0x24,0x92,0x47,0x5a,0xc3,0x2c,0xda,0xd2,0x11,0x4a,0xe4,0x61,0x48,0x5b,0x9e,0x28,0x8f,0x14,}, + {0xd4,0x9b,0x5b,0x7e,0xd0,0x61,0xe7,0x34,0x62,0xaa,0x9f,0x26,0xb2,0xaa,0xa5,0x1c,0x91,0xfd,0x48,0xc1,0x49,0xaf,0x1c,0x6e,0x38,0xeb,0x61,0x28,0x40,0xcf,0x51,0xd7,0x63,}, + {0xd3,0x5b,0x84,0x7e,0x18,0xc2,0x89,0x5c,0xd8,0x47,0xa8,0xe4,0xc2,0xc8,0x47,0x24,0x65,0x1e,0x9a,0xc3,0x03,0xf9,0xa4,0x92,0xb2,0xc5,0x62,0x84,0xa7,0x5d,0xb6,0x48,0xd0,}, + {0xd2,0x9a,0xd4,0x2d,0x58,0xc0,0xa4,0x85,0x25,0x92,0xca,0xdb,0xbe,0x82,0x12,0xc0,0xbb,0x79,0x24,0xae,0x84,0xbd,0x13,0x02,0xb5,0x6b,0x70,0xa3,0x58,0xa1,0x30,0x39,0x2c,}, + {0xd4,0xa6,0x6b,0x28,0x09,0xb3,0x28,0x49,0xc7,0xaa,0xc5,0x13,0x56,0x61,0xd9,0xa5,0x9e,0x36,0x4a,0xc0,0x41,0x82,0xdb,0x76,0x77,0x2a,0xce,0x01,0x44,0x0a,0x51,0xc9,0x65,}, + {0xd3,0x19,0x7b,0x2e,0x62,0xc8,0xc0,0x37,0x13,0x5b,0xd5,0x6e,0xea,0x20,0x4a,0xd4,0xad,0xb7,0x1c,0xd0,0x40,0x49,0x23,0x92,0x49,0x24,0x58,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0xee,0x00,0x47,0x24,0x6e,0x49,0x23,0xca,0x20,0x37,0x1b,0x92,0x46,0xdb,0xae,0x00,0x37,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x1c,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa3,0xa7,0xa0,0x46,0xdc,0x92,0x4b,0xbf,0x51,0xc0,0xef,0xfe,0xdb,0x6d,0x6d,0x50,0xa0,0xed,0xb6,0xdb,0x6d,0xb6,0x9d,0xcf,0x89,0x24,0x92,0x36,0xdc,}, +}; +static const gsm_frame gsm_data_pet[] = { + {0xd5,0x96,0x89,0xd8,0x51,0x50,0x40,0x49,0x24,0xb2,0x39,0x6c,0x59,0xc0,0xe6,0xe3,0x4d,0xb9,0x1b,0x63,0x00,0x73,0x21,0x97,0xa7,0xa7,0xa8,0x80,0x3a,0x9b,0xf1,0x0b,0xa0,}, + {0xd7,0x5b,0x72,0x98,0xd9,0x8e,0xe0,0x3d,0x0d,0x72,0xb9,0x59,0xba,0xc0,0x39,0x18,0x69,0x9d,0x15,0xdc,0x40,0x54,0xeb,0x96,0xd5,0x1e,0xc2,0xc0,0x76,0xe2,0xaa,0x54,0x66,}, + {0xd5,0x67,0xc2,0xa5,0x88,0xad,0xc0,0xdb,0x2c,0xae,0xcb,0x35,0x5d,0x40,0x7f,0xe5,0xda,0x79,0xa7,0x91,0xd2,0x49,0x24,0x92,0x4e,0xe6,0x8c,0xac,0x83,0xf5,0x70,0x94,0xd1,}, + {0xd2,0xe8,0x82,0x9d,0xaa,0x54,0x69,0x82,0x01,0x21,0x34,0x52,0xc2,0x67,0x00,0x51,0x51,0x29,0x0b,0xa4,0x0a,0xb4,0x12,0x7f,0xcb,0xa1,0x53,0x13,0xb6,0xdf,0x6d,0xc8,0xe4,}, + {0xd5,0x97,0x63,0xfe,0x60,0x51,0x50,0x22,0x44,0xd5,0xb9,0x63,0x9f,0x4f,0xa2,0x0c,0xb9,0xab,0x6d,0xa5,0x70,0x32,0xbb,0xb1,0xb9,0x6d,0x53,0x8a,0xa3,0x17,0x76,0x35,0x34,}, + {0xd4,0xda,0x75,0x7e,0x20,0x53,0xcb,0xa7,0x23,0x09,0xdd,0x9a,0xa3,0x4d,0xc6,0xc5,0x2e,0x59,0x2c,0xa7,0xee,0xb9,0x1d,0x18,0x47,0x34,0x53,0x6e,0xb6,0xd1,0xf4,0xd6,0xed,}, + {0xd5,0x9a,0x64,0xbe,0x60,0xa9,0xb0,0x32,0xa2,0x7e,0x08,0xf6,0xa5,0x32,0xc6,0xe2,0x5c,0xb8,0xe5,0x51,0x50,0xb9,0x1a,0x3d,0x49,0x25,0x53,0xab,0xe5,0x1c,0x43,0x85,0x63,}, + {0xd5,0xdb,0x93,0xfd,0x60,0xa5,0xcd,0xb9,0x5a,0x14,0xcb,0x1c,0x53,0xce,0x4c,0xd9,0x6d,0x76,0xdc,0x53,0xb0,0xa9,0x23,0x6b,0xb5,0x24,0x55,0xca,0xb6,0x73,0x5d,0xf4,0x64,}, + {0xd4,0x9d,0x7b,0xf6,0x98,0xa2,0xcc,0xbf,0x9b,0x68,0x75,0x2b,0xa0,0xc9,0xec,0x0a,0xa9,0xf6,0xf3,0xf0,0x8e,0xb9,0x52,0x91,0x9e,0x9d,0xa3,0xac,0xa7,0x24,0x8e,0x8a,0xdc,}, + {0xd2,0xe0,0xba,0xfd,0xd8,0x53,0x07,0x2b,0xec,0x68,0x38,0x74,0xa2,0x88,0x29,0xa3,0x2a,0x31,0x22,0xd6,0x23,0xbb,0x75,0xc7,0x13,0x43,0xd6,0x23,0x4d,0x7d,0xc7,0x24,0x92,}, + {0xd2,0x56,0x9a,0xfa,0x18,0xec,0x02,0x2b,0xbd,0xde,0xa9,0x6a,0xa4,0x40,0xcd,0xe1,0x6a,0xa9,0xe9,0xe4,0x40,0xec,0xaa,0x6e,0x59,0x32,0xe6,0x41,0x2a,0xdb,0x8d,0x78,0xe2,}, + {0xd5,0xe9,0xc3,0x31,0x99,0x66,0xa0,0x44,0xae,0x75,0x92,0xa1,0xa6,0xe1,0x22,0x51,0x28,0x80,0x9b,0x52,0xc1,0x10,0x01,0x49,0x24,0x91,0x99,0xad,0x36,0xe4,0x92,0x76,0xdc,}, + {0xd8,0x25,0xa1,0xa1,0xe2,0x62,0x4c,0xcd,0xf2,0x4e,0x4d,0x1a,0x84,0xa8,0x18,0x72,0x91,0x48,0x18,0xc6,0x8a,0xc2,0xca,0x44,0x9c,0x03,0x50,0xc9,0x86,0xce,0x49,0x4a,0x7a,}, + {0xd9,0x28,0x9a,0x94,0x61,0xcf,0x28,0xab,0x03,0x68,0xb7,0x17,0xc4,0xa7,0x94,0x6b,0xfc,0x3b,0x55,0xae,0xe6,0xca,0xee,0x95,0xde,0xb6,0xe4,0x28,0xc7,0xea,0xba,0xc9,0xe7,}, + {0xd5,0x55,0x58,0x90,0xe1,0xe4,0x83,0xaf,0xe6,0xba,0xb8,0xfb,0x8e,0x42,0x89,0x1d,0x69,0xb5,0x9c,0xc6,0x21,0x61,0x23,0x2d,0xab,0xa2,0xe6,0x01,0x32,0x6c,0x8d,0x16,0xa4,}, + {0xd3,0xd9,0x69,0xdd,0x8b,0xe8,0x00,0x98,0xa3,0x6e,0x35,0x1d,0xa0,0x40,0x28,0xca,0xa9,0xc4,0xe3,0xee,0x00,0x48,0xdb,0x72,0x46,0xdb,0xd2,0x20,0x36,0xdb,0x6d,0xb6,0xdb,}, + {0xd0,0x5f,0xaa,0xe1,0x5a,0xf0,0x00,0x48,0xdb,0x6d,0xb7,0x24,0x60,0x00,0x49,0x24,0x92,0x49,0x24,0x9c,0x00,0x49,0x24,0x92,0x49,0x24,0xd2,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0xaa,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x62,0x00,0x49,0x24,0x92,0x49,0x24,0x70,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa2,0x50,0x40,0xb6,0xdb,0x6d,0xa2,0x49,0x51,0xd6,0xb6,0xd8,0x92,0x36,0xdb,0x52,0x08,0x36,0xdc,0xe9,0x29,0x24,0x9e,0x28,0x46,0xdf,0x4d,0xc9,0x24,}, +}; +static const gsm_frame gsm_data_sest[] = { + {0xd3,0xd5,0x61,0xcc,0xdb,0x50,0x40,0x49,0x6d,0xb2,0xc5,0xe1,0x59,0x40,0x4c,0xe9,0x6e,0x47,0x92,0x82,0xc0,0x46,0x72,0xaf,0x4a,0x65,0xa6,0xa0,0x57,0x2b,0x92,0x2a,0xab,}, + {0xd4,0x5f,0x58,0x0c,0xd2,0xb3,0x00,0x3b,0x59,0x59,0x44,0xe6,0x67,0x60,0x49,0x35,0xd3,0xc5,0x0d,0x7c,0x80,0xe7,0x63,0x6c,0xc4,0xda,0x6d,0x21,0x64,0xa2,0x6e,0x28,0x5e,}, + {0xd9,0xab,0xd3,0x24,0xc8,0x7b,0x82,0x39,0xd6,0xca,0x3e,0xdb,0x53,0xc8,0x3d,0xf6,0x2d,0xd9,0x65,0x54,0xe8,0xa2,0x9b,0x50,0x12,0xd6,0x51,0x29,0x84,0xfd,0x62,0x3b,0x1a,}, + {0xd9,0xf5,0xf1,0x5c,0x49,0x58,0x8a,0x95,0x58,0x7d,0x36,0x8b,0x5f,0xec,0xa8,0xfd,0x24,0xd9,0x86,0x69,0x4e,0x9a,0xdc,0x80,0x59,0x23,0x54,0xcd,0x90,0x24,0xf0,0xa7,0x24,}, + {0xdb,0x2b,0xdb,0x50,0x08,0xe1,0x6d,0x10,0xa2,0x67,0x1a,0x60,0xda,0xeb,0xd9,0xd0,0x47,0x8d,0x1b,0xa2,0xef,0xc8,0xe4,0x0e,0x26,0xa2,0x75,0x0f,0xc6,0x23,0x56,0x91,0x66,}, + {0xda,0xb0,0xec,0x18,0x00,0x5a,0x8c,0x2a,0x1c,0x51,0x81,0x4b,0xb0,0xf2,0x57,0x13,0xc2,0xaa,0x9a,0xf1,0x30,0x3b,0x4b,0x70,0x2f,0x0b,0x7c,0x8f,0x9a,0x9b,0x82,0x31,0x51,}, + {0xdb,0xad,0xd4,0x5d,0x08,0xce,0x8f,0xaa,0xc9,0x47,0x86,0xc5,0x57,0x0f,0xd1,0x1e,0x09,0xe8,0x6d,0xd5,0x0f,0x98,0xe3,0x91,0x68,0xc7,0xe0,0xb1,0x46,0xeb,0x16,0x4a,0xec,}, + {0xdb,0x6d,0xf3,0x58,0x08,0x87,0x30,0x47,0xea,0x73,0xcd,0x65,0x67,0x4f,0x7b,0xb4,0xa6,0x63,0xbb,0xd2,0xae,0xeb,0x6b,0xbe,0x8b,0x37,0xa6,0xcd,0xb5,0x5b,0x35,0xf4,0xa9,}, + {0xd9,0xe1,0x80,0x4c,0x2c,0x88,0x8b,0x58,0xa6,0x4c,0x3a,0xdb,0xee,0x0c,0x37,0x1c,0xae,0x97,0xdc,0xdc,0x4b,0x39,0x2d,0xb1,0x59,0xe9,0x78,0xea,0xc8,0xdc,0x72,0xff,0xfc,}, + {0xd6,0x1c,0x72,0xf1,0xe8,0x57,0x92,0x5b,0x23,0x44,0x15,0xec,0x63,0x58,0x49,0x23,0x69,0xbf,0x1b,0x51,0x4f,0xbf,0x57,0x9c,0x0f,0x25,0xa3,0x72,0x3d,0x56,0x94,0x9e,0xde,}, + {0xd6,0x1d,0x8b,0x35,0xb0,0x53,0x8d,0x88,0x75,0x7e,0x01,0x54,0x53,0x32,0x59,0x6d,0xb1,0xa1,0xd2,0xa3,0xf0,0xd8,0xa5,0xa9,0xc1,0x22,0x52,0xb1,0xe8,0xe6,0xad,0xb0,0x24,}, + {0xd5,0x20,0x7b,0x2e,0x20,0xa4,0xf0,0x46,0xe7,0x66,0x01,0x9a,0xe4,0xd1,0x36,0xdd,0xf6,0x00,0x3c,0xa3,0x0e,0x17,0x63,0x59,0x8a,0x4f,0x53,0x6d,0x48,0xde,0xa9,0xc2,0x39,}, + {0xd4,0xdf,0x8a,0xae,0x20,0x53,0x89,0x77,0x15,0x6a,0x4a,0xac,0xa5,0x6b,0x1b,0x24,0xed,0xb4,0x2a,0xa2,0xae,0x47,0x2b,0x9a,0x28,0x44,0xf0,0x8b,0x55,0x32,0xbd,0xaa,0x40,}, + {0xd5,0x19,0x7a,0x22,0xb1,0xee,0x8c,0xb8,0xe3,0xb6,0x39,0x10,0xf0,0xe8,0x29,0x17,0xa5,0xd7,0x51,0xf0,0xe8,0x8b,0x2b,0x71,0x4e,0xd4,0xaa,0xaa,0xd1,0x54,0x8e,0x28,0xeb,}, + {0xda,0x2a,0xcb,0x2c,0xe2,0xe1,0x4c,0x08,0x5a,0x8f,0x3d,0x22,0xdb,0xcd,0x30,0x93,0x92,0x53,0x9b,0xeb,0xae,0xbd,0x03,0x76,0x55,0xa4,0x52,0xad,0x3e,0xab,0x75,0xa7,0x65,}, + {0xdb,0x2b,0xd3,0xb5,0x22,0xd2,0xcd,0x09,0xe3,0xb3,0x25,0xab,0xc3,0x0d,0x0b,0xda,0x99,0x59,0x56,0x84,0xad,0x75,0x31,0xd5,0xb7,0x9b,0x9f,0x6e,0x17,0xe4,0x71,0x5a,0x6f,}, + {0xda,0xac,0xb4,0x75,0xf3,0x56,0xef,0x8b,0x31,0x6f,0x53,0xeb,0x62,0xd0,0x49,0x82,0x8e,0x8c,0xd2,0x54,0xcc,0xfa,0x51,0x4d,0x35,0xa1,0xac,0x8e,0xa6,0x66,0x09,0xd4,0x65,}, + {0xda,0xa6,0xbc,0x2e,0x6b,0xc8,0xed,0x5a,0xc4,0xb9,0x41,0x50,0x97,0x2e,0xf5,0x12,0xf4,0x39,0x59,0x60,0xcc,0xa8,0x97,0x6a,0x27,0x59,0xa2,0xed,0xc1,0xae,0x32,0x49,0x55,}, + {0xd9,0xea,0xd4,0x29,0x62,0xdc,0xcc,0xca,0xa5,0x6c,0x6b,0x4b,0xe0,0xec,0x17,0x84,0xae,0x28,0xe6,0x5b,0x2a,0xbd,0xd8,0x32,0x97,0x43,0xda,0x25,0x04,0x54,0xdf,0xf8,0xdb,}, + {0xd4,0xd4,0x82,0xa1,0x9a,0xb8,0x41,0xdb,0x77,0xba,0x4e,0xde,0xd8,0x41,0xce,0x9d,0x76,0x2b,0x2c,0xea,0x60,0xd8,0xd8,0x09,0x29,0x23,0xa8,0x00,0x36,0xda,0x78,0x25,0x5b,}, + {0xda,0xa2,0x92,0x9c,0xe3,0xe5,0xc1,0xc5,0x1f,0x29,0xa2,0x8a,0x6b,0xf2,0x36,0xec,0x56,0x67,0x7b,0x68,0xb0,0x0f,0x97,0x8d,0x44,0xd2,0x56,0xb0,0xb6,0xca,0x69,0xd4,0x80,}, + {0xd6,0xd9,0xa3,0x15,0x70,0xac,0x29,0x6a,0xd8,0x29,0x48,0x0d,0x5c,0xa9,0x07,0x55,0x85,0x3a,0xdb,0xe4,0x22,0x1e,0xe0,0x23,0xbf,0x89,0xcc,0x41,0x86,0xa4,0xab,0xb1,0x1a,}, + {0xd7,0x1f,0xeb,0x10,0x4a,0xf0,0x22,0x68,0x64,0x9c,0xc3,0x63,0xe2,0x41,0x3c,0xdb,0x0a,0xda,0x4a,0xe0,0x80,0x8b,0x57,0x75,0x98,0x9f,0xc0,0xa0,0x55,0xe1,0xec,0x6b,0x3c,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0x50,0x20,0x38,0xdc,0x6e,0x39,0x24,0x50,0x00,0x49,0x24,0x92,0x46,0xdc,0xe8,0x00,0x46,0xe3,0x71,0xc9,0x23,0x50,0x00,0x49,0x24,0x92,0x36,0xe4,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x9b,0x9a,0xe1,0x58,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_sedm[] = { + {0xd2,0x18,0x7b,0x65,0xa1,0x50,0x40,0x4b,0x75,0xba,0xfd,0xe6,0x53,0xe0,0x46,0x9b,0x49,0x94,0x60,0x84,0xe0,0x46,0x9b,0x11,0xb2,0x90,0x58,0xe0,0x24,0x91,0x89,0xb2,0x1d,}, + {0xd6,0x99,0x3a,0x11,0x18,0x67,0x60,0x94,0x52,0x8d,0x90,0x25,0x5c,0xc2,0x16,0x79,0xb2,0x23,0x3d,0x5f,0x22,0x34,0xf9,0x4a,0x56,0xea,0x9d,0xc5,0x54,0xab,0x7d,0x0e,0xdb,}, + {0xda,0xa8,0xeb,0x65,0x19,0x71,0x27,0x39,0x13,0x91,0x49,0x03,0xad,0xca,0x5a,0xa4,0x91,0xda,0xdf,0x50,0xea,0xab,0x2f,0x52,0xd7,0x6d,0x7f,0x0c,0x2c,0xec,0x76,0x3b,0x57,}, + {0xd9,0xe8,0xe3,0x29,0xaa,0x71,0xcb,0x9c,0xd3,0xcb,0xac,0xf8,0x58,0xcc,0x4e,0xdd,0x9a,0x69,0x6a,0xef,0x2c,0x70,0xf3,0x35,0xf3,0x6c,0xd1,0x4f,0x2b,0x28,0x75,0xc7,0x61,}, + {0xdb,0x67,0xbc,0xe8,0xeb,0xbb,0x0d,0x79,0xd3,0xb6,0x4c,0xc6,0xcb,0xae,0xd7,0x97,0x2b,0x95,0x63,0x56,0xcf,0x54,0xac,0xa1,0xcc,0xaa,0x57,0x51,0xbb,0xca,0xd6,0x37,0x63,}, + {0xdb,0x66,0xed,0x25,0x33,0x84,0xcd,0xb7,0x27,0x56,0xb5,0x46,0xb2,0xed,0xca,0xe0,0xa2,0x38,0xa2,0xe4,0xcf,0x39,0x0d,0x4e,0x1b,0x03,0xe1,0x2e,0xaa,0xec,0x53,0xc1,0x75,}, + {0xdb,0xa6,0xdc,0xf5,0x6b,0xa7,0x6d,0x6d,0xe0,0xbd,0xb5,0x0e,0x8a,0xd1,0x36,0x9c,0x4e,0xb2,0xe7,0x6b,0x0e,0x32,0x3a,0x6e,0xbc,0x1f,0x98,0x8f,0x93,0x2b,0xed,0x36,0xdd,}, + {0xda,0x68,0xd3,0xdc,0xe2,0x86,0xc9,0x20,0x9e,0x62,0xe7,0xc9,0xe2,0x69,0xd9,0x40,0x72,0xc8,0x5b,0xcc,0xc9,0x98,0x15,0xfe,0x46,0xd5,0xd4,0xab,0xb5,0xf6,0x91,0xdb,0xac,}, + {0xd4,0xe3,0x6a,0xa7,0x98,0x84,0xa9,0x23,0x1a,0x57,0x6f,0xef,0xc3,0xcd,0xc8,0xd8,0x12,0xd9,0xb6,0x52,0xd4,0x36,0x8a,0xf1,0x49,0x2c,0x57,0xd0,0xca,0xec,0x78,0x56,0xe0,}, + {0xd4,0xe5,0x92,0xee,0xd8,0x57,0x90,0x6a,0xdc,0x23,0x2c,0xe3,0x57,0x91,0x37,0x35,0x6d,0x0b,0x0c,0x57,0xb0,0xc8,0xe4,0x51,0xbc,0x17,0x61,0x11,0x76,0xee,0x6d,0x25,0x1a,}, + {0xd6,0x1f,0x81,0x1e,0x78,0xbc,0xcd,0x2f,0x96,0xfb,0x32,0x11,0xc0,0xf4,0xae,0xd3,0x72,0x49,0x1a,0x61,0x6e,0x28,0x87,0xb2,0xb8,0xe4,0xc4,0x8c,0x58,0x83,0x62,0x85,0xb7,}, + {0xd1,0x9c,0xd3,0xb6,0xe8,0xc0,0x6a,0x7c,0xe3,0x48,0x93,0x6d,0xdc,0x45,0xd7,0x63,0x89,0x30,0x95,0xb4,0x46,0xf6,0x9c,0x8c,0xca,0xcd,0xbe,0x24,0x27,0xf1,0x93,0xe6,0x9c,}, + {0xd0,0xa9,0xcb,0xfa,0x20,0x64,0xa3,0x34,0xd8,0x9e,0x2b,0x2b,0xc0,0xc2,0x3b,0x22,0xa2,0x7c,0xa1,0xbf,0x41,0xd8,0x1d,0x8d,0xd5,0x34,0xda,0xe2,0xd5,0x58,0x51,0xa6,0x8d,}, + {0xda,0x94,0x72,0x8e,0x64,0x7b,0xcd,0xc9,0x6e,0xff,0x44,0x49,0x61,0xf5,0x36,0xe4,0x92,0x0e,0x9e,0x50,0xb3,0xa1,0x50,0xb2,0x58,0xed,0x96,0xd2,0x58,0xc9,0x01,0x6f,0x15,}, + {0xd4,0x9c,0x8a,0x22,0xf8,0xc2,0x71,0xdb,0x6b,0x24,0x11,0xe4,0x64,0x8c,0x8d,0xf5,0xae,0x20,0xca,0xb8,0xb1,0xf6,0x9b,0xb6,0x49,0x72,0xd0,0x2e,0xc0,0x79,0x72,0x3d,0xb6,}, + {0xd1,0x68,0xca,0xee,0x29,0x56,0xee,0x32,0x02,0x2d,0xc9,0x25,0xb6,0x09,0xe7,0x8a,0x23,0x3a,0x62,0xc0,0x8a,0x78,0xe1,0xca,0x25,0xe5,0x61,0x46,0x36,0xed,0xd2,0x94,0x87,}, + {0xd1,0x68,0xbb,0x2a,0x69,0xc0,0xa7,0x2a,0x9b,0xba,0xf7,0x82,0x61,0xa2,0xf8,0x36,0x85,0x67,0x5c,0x61,0x26,0x34,0x06,0x6e,0x47,0x2d,0xc3,0x26,0xe7,0x8a,0x03,0xb9,0x1b,}, + {0xd0,0xea,0xbb,0xea,0x69,0x61,0x46,0xd9,0x6b,0xc6,0x25,0xe4,0xc3,0x24,0x10,0x73,0xad,0xc1,0x14,0xc3,0xe4,0x75,0x12,0x8c,0xb4,0x57,0x61,0xa8,0x29,0x79,0x71,0xc8,0x5c,}, + {0xd2,0xe2,0xa9,0x2e,0xa8,0x69,0xcd,0xc9,0x19,0x9c,0xa9,0x6c,0x61,0xac,0xc9,0x9b,0x2a,0x88,0xdd,0x61,0x6a,0xcb,0x9e,0x52,0x14,0x3d,0x65,0xcb,0x2e,0xe4,0x8a,0x9a,0x22,}, + {0xd3,0xe0,0xa1,0x6a,0x28,0x61,0xe9,0x8b,0x65,0x92,0x3e,0xa9,0xc3,0x2d,0x14,0x07,0x8e,0xd9,0x5a,0x54,0x24,0x96,0x67,0x32,0x26,0xdb,0xe8,0x03,0x07,0x5a,0x69,0x35,0x1e,}, + {0xd0,0x5d,0xa2,0xdd,0xa2,0xe0,0x44,0x70,0xea,0x4d,0x39,0x24,0xe8,0x20,0x5f,0x44,0x92,0x36,0xe3,0xc4,0x20,0x36,0xe3,0x8d,0xc9,0x24,0xea,0x00,0x37,0x24,0x92,0x36,0xdc,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0xc2,0x00,0x38,0xe4,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x72,0x49,0x24,0xe6,0x00,0x39,0x24,0x8d,0xc9,0x24,0x72,0x00,0x49,0x24,0x8d,0xc9,0x24,}, + {0xd0,0x5d,0x9a,0xe1,0x5a,0xe2,0x00,0x49,0x24,0x92,0x49,0x23,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_osm[] = { + {0xd4,0xd6,0x71,0x9c,0xda,0x50,0x20,0x26,0x93,0x4d,0xb0,0x94,0x62,0x80,0xcb,0x34,0x89,0xb9,0x1d,0x70,0xc0,0xd6,0xd3,0x90,0xa5,0x23,0x62,0xa0,0x68,0x92,0x16,0x0b,0x23,}, + {0xd4,0x1f,0xfc,0x08,0xbb,0x94,0xe0,0xc6,0x9a,0x69,0xa6,0x8b,0x57,0xaa,0x36,0xdb,0x6d,0xb6,0xdf,0x6f,0x07,0xd1,0xda,0x66,0x39,0x25,0x81,0x6f,0x48,0xda,0x0f,0x34,0xed,}, + {0xd3,0xa5,0xfa,0x09,0xba,0x53,0xb0,0x5a,0xec,0x50,0x76,0xac,0x57,0x4b,0x9e,0xe5,0x68,0x3d,0x04,0xac,0x8e,0x58,0xe5,0xad,0x21,0xb0,0xbe,0x4d,0xd9,0x64,0x92,0x34,0x85,}, + {0xd3,0xae,0xc8,0x8a,0x69,0xc8,0x29,0xf1,0x2b,0xb2,0xdb,0x59,0xc2,0xa7,0x11,0xdf,0xaa,0xab,0xa7,0x61,0x26,0x38,0x01,0x96,0x3b,0x1f,0xc3,0x27,0x3c,0x61,0x62,0x27,0x56,}, + {0xd3,0x26,0xc9,0x4a,0x30,0x61,0xc6,0xba,0x6b,0x4a,0xb9,0xca,0x60,0x87,0x76,0xf5,0x76,0x35,0x08,0xa2,0xc7,0x75,0x23,0xff,0xcc,0x50,0xc8,0xe6,0x49,0x95,0xd7,0x45,0x44,}, + {0xd9,0x9e,0x7a,0x18,0x99,0xc9,0x6d,0x24,0xdc,0x71,0xbf,0x63,0x5e,0x8c,0x90,0xc1,0xa6,0x44,0xe9,0xa9,0xce,0xa7,0x21,0xb2,0x84,0xd8,0x55,0x4d,0x45,0x8b,0xb0,0x4d,0x0c,}, + {0xdb,0x72,0xa3,0x64,0x49,0x59,0x0d,0x2a,0xa2,0x75,0x88,0xd1,0xbe,0xad,0x64,0x12,0xa2,0x41,0x64,0xe6,0xaf,0x0b,0x23,0x72,0x61,0x73,0x5b,0x2e,0x3c,0xfc,0x3e,0x35,0xdf,}, + {0xda,0xe9,0xba,0x20,0x10,0xab,0x30,0xc9,0xd5,0x92,0xad,0x5b,0x82,0xcc,0xc5,0xea,0xc7,0xbb,0x1d,0xcc,0xae,0x2c,0xf3,0x78,0xdb,0x1f,0xe7,0x30,0x9e,0x5f,0x92,0xab,0x64,}, + {0xda,0xaa,0x91,0xd0,0x58,0x5e,0xcf,0x39,0x9a,0xea,0x9b,0x5c,0xae,0xad,0xb5,0xdc,0x92,0x47,0x84,0x9e,0xa9,0xe7,0x5d,0x59,0x5d,0x47,0xaa,0xeb,0x1b,0x62,0xc9,0xac,0xf0,}, + {0xdb,0x28,0x92,0x9c,0xd0,0xea,0xcb,0x73,0x32,0x99,0x49,0xa2,0x82,0xca,0xda,0xfb,0x8e,0x3b,0x53,0xaa,0xa8,0xbf,0x16,0x6d,0xc8,0xe5,0xcc,0xcb,0x28,0xe3,0x4e,0x47,0x02,}, + {0xd0,0xe8,0xcc,0x6a,0x5a,0x77,0x4e,0x4b,0x6e,0x91,0x00,0x43,0x5a,0x28,0x07,0x24,0x8e,0x45,0x13,0xb4,0x45,0x77,0xe2,0x52,0xeb,0x28,0xba,0x29,0xb4,0xbc,0x91,0xa9,0x6d,}, + {0xd1,0x29,0xc3,0xa9,0xe2,0x61,0x23,0xc6,0xc0,0x9c,0xda,0x36,0xc3,0x45,0xdd,0x22,0x60,0xf2,0xec,0x63,0xe3,0x57,0x1a,0xab,0x09,0x18,0xc1,0x63,0x4e,0x5d,0xd7,0x48,0xc2,}, + {0xd1,0x29,0xcb,0xa5,0xa3,0x61,0x43,0x1f,0x25,0x52,0x6d,0x64,0xc3,0x43,0x30,0x32,0xd2,0x3b,0x6e,0xc3,0xa3,0xb6,0xd4,0x7c,0x56,0xe4,0xc3,0xc3,0xd6,0xe2,0x82,0xce,0x5c,}, + {0xd2,0x5f,0x8b,0xa5,0x63,0xb6,0xe6,0x97,0x24,0x6e,0xc9,0x27,0xd6,0x84,0x8a,0xdb,0x6e,0x34,0x93,0xd2,0x41,0x4b,0x69,0xad,0xb8,0xdb,0xd8,0x40,0x29,0x64,0x85,0x9d,0x14,}, + {0xd0,0x5f,0xa2,0xe1,0x22,0xc0,0x20,0x48,0xe3,0x72,0x48,0xe3,0x94,0x00,0x49,0x23,0x92,0x39,0x24,0xbc,0x00,0x47,0x24,0x72,0x39,0x24,0xa2,0x00,0x49,0x24,0x8d,0xb8,0xe4,}, + {0xd0,0x5f,0xa2,0xa1,0x5a,0xe4,0x00,0x49,0x23,0x72,0x39,0x24,0x7e,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xc3,0xa9,0xa2,0x50,0x40,0x36,0xdb,0x6d,0xb2,0x00,0x53,0x20,0x92,0x49,0x24,0x92,0x52,0x55,0x8c,0xb6,0xc4,0x91,0xb6,0xe3,0x62,0x01,0x24,0x92,0x58,0x92,0x92,}, +}; +static const gsm_frame gsm_data_devet[] = { + {0xd3,0x58,0x48,0x19,0x61,0x50,0x40,0x5b,0x76,0xd7,0xbc,0xde,0x69,0xe0,0x34,0xf4,0x44,0x76,0x74,0x9f,0x80,0xd5,0x0b,0x71,0x52,0xe5,0x58,0xa0,0xc8,0xab,0x6e,0x1d,0x51,}, + {0xd1,0xe1,0xd4,0x2d,0xa2,0x75,0xc0,0xc5,0xf1,0x6d,0xc7,0x5e,0x71,0x21,0x55,0x63,0xf3,0x90,0x2c,0x54,0x40,0xd9,0x6f,0x91,0x22,0x5a,0x92,0x21,0xcb,0xad,0x8d,0xa2,0x42,}, + {0xd0,0xec,0xec,0x2d,0x62,0x52,0xe1,0xcd,0xf3,0x55,0x4a,0x12,0xa6,0xc1,0xaf,0x9b,0x4a,0xd4,0xe1,0x94,0xa1,0x2e,0xe4,0x56,0xc8,0xc2,0xe4,0xe1,0x39,0x13,0xf1,0xc6,0x91,}, + {0xd1,0x29,0xdc,0x6d,0xe3,0xec,0xc1,0x47,0x1c,0xd1,0xb6,0x58,0x50,0x80,0xe3,0x25,0x72,0x29,0x09,0xa6,0x80,0xd8,0xdc,0x8d,0xb4,0xa0,0xa4,0xa0,0xc7,0x1e,0xc9,0xb6,0x9b,}, + {0xd6,0x1d,0x59,0xf6,0xb0,0x5f,0xc2,0xb6,0xe5,0xfa,0xc2,0x48,0x57,0xee,0xce,0x33,0xb3,0x39,0x05,0x56,0xf2,0x35,0x2c,0xb2,0x26,0x42,0x97,0xb1,0xfa,0xa1,0x77,0x23,0x40,}, + {0xd5,0x1b,0x8b,0x76,0x60,0x51,0x11,0xf6,0xa4,0x72,0xc9,0x11,0xa1,0x0f,0xf2,0xed,0x92,0xc9,0x08,0xf1,0x11,0x74,0xad,0x92,0x49,0x11,0xf1,0x8f,0xf3,0x2d,0xcd,0x48,0xe3,}, + {0xd5,0x5e,0x82,0xb5,0xe0,0x51,0x31,0x76,0xa3,0x92,0xb6,0xd2,0x51,0xac,0x2f,0x95,0x71,0x4b,0x13,0xa1,0x30,0xd8,0xe4,0x91,0xdf,0xb5,0x5f,0x10,0xb4,0x22,0x5a,0xbb,0x6c,}, + {0xd3,0xe2,0x72,0x2e,0xd8,0x5f,0x2e,0xb6,0x22,0xcd,0x66,0xe3,0xbf,0x6d,0xa4,0xa0,0xf6,0x39,0x1b,0xbc,0xef,0xc7,0x1c,0x49,0x3e,0xd1,0xbf,0x2d,0xc9,0x24,0xae,0x24,0x97,}, + {0xd2,0xa3,0x7a,0xed,0xe1,0x61,0x6b,0x0b,0x65,0x91,0x35,0x45,0x5f,0x08,0x78,0xa2,0xb1,0x46,0x9b,0xbc,0xa8,0x0b,0x05,0x8f,0xad,0x1b,0xbe,0x27,0x94,0x12,0x38,0xed,0x7b,}, + {0xd2,0x9a,0xaa,0x69,0xfb,0xbe,0xa7,0x4a,0x21,0xb0,0x57,0x23,0xe6,0xc8,0x55,0x99,0xa0,0x94,0xe5,0xa6,0xc4,0xcb,0x26,0x86,0x50,0xda,0xac,0xe3,0xf9,0x2e,0x69,0xf8,0x8f,}, + {0xd4,0x97,0x91,0xe1,0xf4,0xde,0x85,0x24,0x9b,0xfa,0xec,0x17,0x60,0xa8,0x0a,0xd3,0x8a,0x67,0x6c,0xbd,0x44,0x3a,0xc5,0x4f,0x85,0x5e,0xe7,0x66,0x4c,0x18,0x50,0x58,0xbe,}, + {0xd4,0x97,0x81,0x62,0x3b,0x67,0x46,0xb8,0xea,0x3a,0x09,0xc3,0x54,0xa6,0xf1,0xa6,0xa1,0xc4,0x9c,0x8e,0x66,0x2d,0x66,0xd2,0x18,0x13,0xb0,0xa6,0x08,0xa5,0x7e,0xbb,0xa6,}, + {0xd4,0x94,0x64,0xfe,0x20,0x59,0xe9,0x24,0x02,0xd2,0x4a,0xed,0x65,0x4a,0x36,0x9d,0x47,0xbd,0x22,0x5b,0x28,0x17,0xbf,0x64,0xa9,0x8e,0xbd,0x4a,0x26,0xe5,0xb6,0x10,0x7b,}, + {0xd4,0xd5,0x6c,0xfd,0x60,0x5e,0xc7,0x4c,0x5f,0xd2,0xbd,0xca,0x65,0x88,0x22,0x57,0x9e,0xa5,0x26,0x5f,0x28,0xb4,0x0e,0x5a,0xc7,0x24,0xbf,0xac,0x58,0x9a,0x5d,0xd8,0x9c,}, + {0xd4,0x57,0x84,0xfd,0xe0,0x5f,0xa8,0xb9,0x1d,0x6d,0x8a,0x93,0x61,0x8c,0x29,0x24,0x91,0xa4,0xba,0x5f,0xc8,0x0b,0x4c,0xda,0x21,0x56,0xbf,0xb0,0x77,0x13,0x92,0x47,0x14,}, + {0xd4,0xd9,0x93,0x3d,0x58,0x65,0xad,0xd4,0xbb,0x12,0xd9,0x25,0x5f,0x0c,0xe6,0x90,0x1b,0x1d,0x1d,0xbd,0xce,0x59,0xa1,0x68,0x6a,0x34,0x5f,0xed,0x38,0xdc,0x6e,0x47,0x88,}, + {0xd4,0xdc,0x82,0xf6,0x18,0x61,0x30,0xf8,0xe3,0x96,0x34,0x93,0x5f,0x13,0xf6,0xec,0x6e,0x48,0xdc,0x5e,0xa9,0x83,0xff,0x4a,0xeb,0x2b,0xbe,0xcd,0x36,0x97,0x76,0x29,0x6b,}, + {0xd3,0xda,0xaa,0x72,0xa8,0xbf,0x6b,0x36,0xdb,0x3d,0x19,0x1c,0xbc,0x8a,0xd9,0x2b,0x69,0x25,0xda,0xbe,0xe6,0x3f,0xb6,0x48,0x26,0x5a,0xdc,0x04,0xc1,0xe2,0x91,0xeb,0x45,}, + {0xd2,0x9a,0x62,0x6f,0x22,0xb0,0x02,0x88,0xaa,0x56,0x69,0xad,0xbc,0x21,0xc5,0xed,0x92,0x4b,0x64,0xf0,0x40,0xe8,0xf2,0xd9,0xab,0xdd,0xe2,0x20,0xba,0xe3,0x72,0xbc,0xd4,}, + {0xd7,0x1e,0x9a,0x9d,0x19,0x76,0x80,0xd4,0xdc,0x89,0xa6,0xdc,0x56,0x80,0xa2,0x9a,0x45,0x24,0x53,0x54,0xc0,0xc2,0x48,0x29,0xa8,0x9a,0xa0,0xe9,0x36,0xdb,0x6d,0xb7,0x27,}, + {0xd8,0xa4,0xc2,0x99,0xa0,0xd9,0x8d,0x2e,0x1d,0x72,0xdf,0x53,0x6e,0x89,0x29,0x2d,0xea,0x04,0xde,0x9c,0x48,0xc6,0xdc,0x6d,0xc0,0x84,0xea,0x4a,0x24,0x9a,0x4e,0x41,0x1a,}, + {0xd9,0x66,0xca,0xd0,0x92,0xa8,0xa7,0x3a,0x13,0x09,0x22,0xd8,0x7c,0x86,0xf8,0x93,0x2b,0x29,0x04,0xec,0xc5,0xe4,0xee,0x6a,0xeb,0x97,0xac,0xc9,0x29,0x97,0x8f,0x57,0x26,}, + {0xd6,0x96,0x61,0x0c,0x50,0x5c,0xa4,0xe9,0x6d,0x52,0x44,0x2e,0x88,0x22,0x4e,0x84,0x6f,0xc9,0x14,0xb6,0x41,0x46,0x92,0x92,0xec,0x51,0xb4,0x21,0x16,0xd2,0x21,0x22,0x94,}, + {0xd4,0x98,0x68,0x09,0x9a,0x54,0x21,0x04,0xa3,0x71,0xb6,0xa4,0x9e,0x00,0x4a,0xe4,0xb6,0x49,0x23,0xc4,0x00,0x49,0x24,0x72,0x49,0x24,0xf0,0x20,0x59,0x1c,0x92,0x49,0x1c,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0xaa,0x40,0x36,0xdb,0x6d,0xb9,0x24,0xee,0x00,0x49,0x24,0x92,0x49,0x24,0xde,0x40,0x49,0x1c,0x92,0x37,0x24,0xbe,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0x9b,0x21,0x5a,0x6c,0x00,0x49,0x24,0x92,0x49,0x24,0x68,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xdd,0x9a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x7c,0x00,0x49,0x24,0x92,0x49,0x24,0x78,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_deset[] = { + {0xd3,0x1a,0x38,0x59,0xd9,0x50,0x20,0xc9,0x6d,0xba,0x57,0x6b,0x70,0xe0,0xd8,0xde,0xa6,0x53,0x6a,0x90,0xa0,0xe7,0x54,0x52,0x4b,0x5a,0x84,0xe0,0xbd,0x1a,0xad,0xc8,0x9a,}, + {0xd2,0x1e,0xac,0xaa,0x1a,0x8d,0xa0,0xe8,0xd4,0x1a,0xcb,0x23,0x7d,0xa2,0x39,0x1d,0x92,0xa7,0x2f,0x50,0xa1,0xb6,0x45,0x95,0xdb,0x23,0x56,0x41,0x34,0x8a,0x6a,0xef,0xfd,}, + {0xd0,0xae,0xe3,0xe5,0x6b,0x58,0xc1,0x38,0x52,0x25,0xb9,0xae,0x9c,0x81,0xa3,0x9a,0xcc,0x34,0xb5,0x50,0xc1,0x31,0x54,0xc9,0x27,0x75,0x50,0xa1,0x36,0xa5,0x71,0xa0,0xed,}, + {0xd0,0xaa,0xec,0x69,0x63,0x53,0x40,0xc2,0xec,0x6e,0x3a,0x8d,0x7e,0xc0,0xf8,0xe4,0x49,0x2a,0x8a,0x54,0x80,0xc7,0xa4,0x4d,0x45,0x23,0xb0,0xe0,0x6c,0xde,0x61,0x95,0x1e,}, + {0xd8,0xa4,0x60,0x55,0xb3,0xc3,0xe4,0xa4,0xe5,0xdf,0xf8,0x89,0x50,0xa7,0x04,0x93,0x92,0x5b,0x1a,0x95,0xd2,0x36,0xdb,0xc6,0xb9,0x67,0x64,0x90,0x21,0x81,0x8a,0x6b,0xa5,}, + {0xd5,0x5d,0x6b,0x3a,0xa0,0xa3,0x13,0x36,0x90,0x13,0xba,0xd4,0x56,0xf2,0x56,0xd9,0x5d,0x3a,0xe3,0x57,0x0f,0xec,0xe4,0x45,0x74,0xe4,0x57,0xd1,0xc6,0xdc,0x8d,0x72,0xe4,}, + {0xd5,0x1c,0x8b,0xb2,0x18,0x57,0x6e,0xd9,0x2c,0x69,0x2f,0x9b,0xad,0x2d,0xc7,0x67,0x6d,0x03,0x66,0xad,0x4f,0xb8,0xe5,0x8d,0xb0,0xb9,0xbc,0x8d,0x71,0xac,0xba,0x46,0x52,}, + {0xd3,0xdb,0xaa,0x6e,0x18,0x62,0xa8,0xd8,0xec,0x93,0xba,0xe9,0xc2,0x2b,0x30,0x5f,0x92,0xc9,0x65,0xc1,0x06,0xa2,0x99,0x0f,0x65,0x95,0x63,0x45,0xe7,0x48,0x60,0x5b,0x25,}, + {0xd3,0x19,0x8a,0x6b,0x78,0xc2,0xe6,0xdf,0x3a,0x68,0xc0,0xf5,0xd6,0x46,0x91,0x2e,0xb5,0x30,0xc8,0xe0,0x44,0xf7,0x7b,0x1f,0x1e,0xd4,0x6d,0x45,0xa1,0x5f,0x69,0x4f,0x0a,}, + {0xd8,0xa5,0xa8,0xd8,0x9a,0xbd,0x28,0xc8,0x8a,0x02,0xc3,0xac,0x5f,0x2a,0xd6,0x85,0x6b,0x15,0xd5,0x79,0x68,0x81,0x30,0x48,0xf7,0xb0,0xa3,0x4b,0x62,0xbb,0xe5,0x65,0x91,}, + {0xd9,0x2a,0xf3,0xe8,0xf3,0x62,0xeb,0xa7,0x9c,0x5c,0xb5,0x30,0x91,0x50,0x75,0x25,0x16,0xc2,0xe4,0x58,0xaa,0x14,0x1b,0xc3,0xa5,0x8d,0xa0,0xac,0x08,0x63,0xed,0xb5,0xf3,}, + {0xd9,0xe6,0xe3,0xe9,0xe3,0x7a,0xab,0xbb,0x33,0x72,0xce,0xcb,0x83,0x4d,0xe8,0xd7,0xe5,0x6e,0x63,0xeb,0x4d,0x6a,0xb6,0x1e,0x49,0xe7,0xa6,0xae,0x2a,0xf5,0xb6,0x3b,0xeb,}, + {0xd9,0xe5,0xc3,0xe5,0x63,0xdc,0xcc,0xea,0x9f,0x7f,0x4e,0xeb,0x6c,0xac,0xe1,0xdb,0xb7,0x4b,0xab,0xbc,0xed,0xb9,0x2c,0xae,0x4b,0x39,0xc6,0xcd,0xaf,0xc6,0xad,0xea,0xd7,}, + {0xd9,0xa7,0xe3,0xb1,0xe2,0x82,0xce,0x55,0x5f,0x56,0xe8,0xf5,0xae,0xd0,0x2b,0xf3,0x7e,0xc7,0x95,0x6e,0xca,0xe3,0x27,0x1e,0x87,0x64,0xd8,0xab,0x8e,0xcb,0x4d,0x35,0x09,}, + {0xda,0xa4,0xe2,0xe5,0xd3,0xca,0xc9,0x74,0xdb,0x34,0x09,0x4d,0xce,0xe9,0x99,0x43,0x41,0x24,0x0a,0xac,0xad,0x40,0xa2,0x6a,0x46,0xe3,0x72,0x2b,0x18,0xc4,0x45,0xcb,0xb7,}, + {0xd5,0x22,0x71,0xea,0xd8,0x5b,0xcf,0x49,0x14,0x20,0x05,0x2c,0x5a,0xcf,0xc9,0x24,0x6e,0x34,0x7d,0xc0,0xac,0xac,0xdd,0xaa,0xf6,0x61,0x63,0x2f,0x3e,0x9c,0x91,0xc9,0x1b,}, + {0xd5,0x5f,0x82,0xaa,0x58,0x61,0xcd,0x36,0x7a,0x75,0xab,0x1c,0x61,0x8c,0x54,0x93,0x23,0xc4,0xf3,0xc1,0x6c,0x4d,0x60,0x2c,0x9f,0x5f,0xc1,0x6b,0xbb,0x75,0x74,0x96,0xcf,}, + {0xd4,0x9e,0x6a,0xfd,0x99,0x5e,0xe9,0x4a,0xd6,0xb7,0xc4,0x92,0xc1,0x4b,0x2e,0x53,0x6e,0x37,0x23,0xc1,0x2b,0x4b,0x0f,0x2a,0x49,0x23,0xc3,0x07,0x56,0xcb,0x13,0x99,0xc4,}, + {0xd3,0x9b,0x9b,0x69,0x58,0xa4,0x24,0x7c,0x96,0x6b,0x08,0x5a,0xbe,0x02,0x5d,0x3d,0xf3,0x6b,0x28,0xc6,0x02,0x09,0x55,0xb2,0x59,0x5b,0xe0,0x60,0xd7,0x5d,0xf7,0xdb,0x1b,}, + {0xd6,0x15,0x69,0x6d,0x21,0xde,0x40,0xa4,0xe4,0xd2,0x4c,0xeb,0xee,0xa1,0x26,0x98,0xb9,0x52,0x9a,0x60,0x20,0xb9,0x24,0x48,0xc6,0xea,0xc6,0xa0,0xa4,0xc9,0xad,0xc6,0xa1,}, + {0xd8,0x25,0xab,0x64,0x61,0x89,0xed,0xb7,0x1b,0x6d,0xba,0xf9,0x8b,0xac,0x9a,0xdd,0xbe,0xb6,0xdc,0x72,0xc7,0xf9,0xe8,0x41,0x2c,0x89,0xa2,0xa8,0x64,0xe4,0x05,0x12,0x98,}, + {0xd9,0x25,0xa9,0xa0,0xda,0x81,0x4c,0xc4,0xdb,0x79,0x85,0x0a,0x60,0xea,0x37,0x1b,0x6d,0x4c,0x32,0x80,0xe5,0x8b,0xc9,0xab,0x26,0x84,0xbe,0xa8,0x68,0x73,0x72,0x4d,0x0f,}, + {0xd7,0x9d,0x68,0xc8,0x59,0xb2,0xa8,0x3b,0x65,0x6f,0xb5,0x24,0xe4,0xe8,0x6a,0xe7,0x52,0x49,0x6c,0xc4,0x22,0x47,0x53,0xab,0xe8,0xdd,0x82,0x01,0x5b,0x64,0x96,0x5f,0x9b,}, + {0xd3,0x91,0x6a,0xe1,0x5c,0xe0,0x00,0xa3,0x2d,0x52,0x41,0x2b,0xd2,0x40,0xd4,0x64,0x4d,0x26,0xd4,0x72,0x00,0x52,0xe3,0x6e,0x36,0xdb,0xa6,0x40,0x37,0x23,0x6d,0xb6,0xdb,}, + {0xd0,0x60,0xa2,0xe1,0x59,0xec,0x00,0x38,0xdb,0x8d,0xc6,0xdb,0xea,0x00,0x49,0x24,0x92,0x49,0x24,0xdc,0x00,0x49,0x24,0x92,0x49,0x24,0x58,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xaa,0xe1,0x5a,0x82,0x00,0x49,0x24,0x92,0x49,0x24,0x78,0x00,0x49,0x24,0x92,0x49,0x24,0x64,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0x22,0x92,0x18,0x90,0x50,0x20,0x36,0xda,0x49,0x22,0x09,0x52,0xc0,0x00,0x4a,0x49,0x24,0x93,0x62,0xe0,0x24,0x92,0x49,0x24,0xdb,0xd5,0x84,0x36,0xdb,0x92,0x4e,0x1d,}, +}; +static const gsm_frame gsm_data_jedenact[] = { + {0xd5,0x14,0x59,0xd4,0x22,0x50,0x00,0x26,0x91,0x52,0x33,0x5b,0x55,0x20,0xe2,0xa2,0xad,0xb9,0x52,0x56,0xa0,0x76,0xfa,0x74,0xda,0xb2,0xbf,0x40,0xc8,0x64,0x92,0x57,0x23,}, + {0xd3,0x4e,0xc5,0xb1,0x9c,0xf0,0xe0,0x59,0x5b,0x86,0xa6,0x70,0x90,0xa0,0x66,0x32,0x89,0x9c,0x23,0x77,0x60,0xd3,0x5c,0x92,0xc7,0x1b,0x65,0xc1,0xa4,0xa3,0xf7,0xe9,0x1a,}, + {0xd6,0xcf,0x64,0xfe,0x5b,0x55,0xa8,0xb4,0x90,0xef,0x59,0x36,0x57,0x89,0xd9,0x5c,0x0c,0xcd,0x01,0x51,0x48,0x7f,0x80,0x0b,0x57,0x24,0x55,0xc7,0x76,0xd3,0x1d,0x37,0x66,}, + {0xd6,0xd6,0x4b,0xbe,0x21,0x5b,0xca,0x58,0xd4,0x68,0x73,0xf3,0x55,0xe8,0xda,0xea,0x45,0x9a,0xbd,0x55,0xe9,0xa7,0x1d,0x70,0x9f,0x23,0x55,0xee,0x38,0xe3,0x71,0xd1,0xdd,}, + {0xd6,0x9a,0x54,0x32,0xa9,0x55,0xed,0x3a,0xe4,0x91,0xb4,0x20,0x5b,0xf5,0x47,0x24,0x6e,0x36,0xd7,0x54,0xd0,0xd5,0xa4,0xb6,0xd4,0x88,0x55,0x4e,0xf8,0x2c,0xb2,0xd6,0x58,}, + {0xd6,0x5c,0x72,0xf2,0x20,0xab,0x73,0xf6,0x6b,0x72,0x46,0x9a,0x55,0x4e,0x0d,0x6e,0x6b,0x58,0xf2,0xae,0xd0,0x20,0xac,0x8d,0xcb,0xdb,0xb3,0x2d,0xb8,0x4a,0x90,0xc8,0xf7,}, + {0xd4,0xde,0x63,0x7d,0x98,0x59,0x4c,0x48,0x93,0x3d,0x48,0xe3,0xb3,0x4a,0xb4,0xe3,0x9b,0x8b,0x1b,0x5b,0x0b,0xdb,0x1d,0x2d,0x2e,0x66,0xb2,0xc9,0x27,0xfc,0x41,0x26,0xc4,}, + {0xd1,0x60,0xe4,0x35,0x1b,0xc4,0x49,0xf7,0x6d,0x8d,0x26,0xdd,0xee,0x63,0x25,0x2e,0x96,0x86,0x8a,0xb8,0x21,0xfd,0x92,0xd2,0x32,0x52,0xec,0x01,0x84,0xdc,0x92,0x5a,0xd9,}, + {0xd1,0x23,0xd4,0x69,0xe2,0xae,0xc0,0xa8,0x0b,0xd9,0x74,0xdb,0xc2,0x80,0xa7,0x24,0x9a,0xb5,0x65,0xee,0xa0,0xc2,0x8a,0x76,0x26,0xe5,0x95,0x20,0xcb,0x12,0x4e,0x16,0xe4,}, + {0xd5,0xd7,0x7a,0xa1,0x61,0xd7,0xa2,0xc6,0xdc,0x69,0xbe,0x93,0x51,0xee,0xc6,0xf0,0xb1,0xa7,0x23,0x74,0x4a,0x45,0x1c,0x68,0x92,0x15,0x5b,0xed,0xeb,0x64,0x8a,0x40,0x88,}, + {0xd5,0x5c,0x7c,0x31,0xa0,0x51,0x52,0x7c,0xdb,0x77,0x59,0x1c,0x5a,0x8d,0x01,0x92,0xd5,0xcb,0xeb,0xb2,0xb0,0x40,0x2b,0x56,0x39,0x74,0x5b,0x2e,0xc4,0xd2,0xed,0xc7,0x25,}, + {0xd5,0x5f,0x7b,0xa5,0xa0,0x59,0xeb,0x58,0x9b,0x17,0x38,0xde,0xb3,0x4c,0xd9,0x1a,0x01,0xec,0xdb,0xb3,0xcc,0x49,0x13,0x6e,0xd4,0xba,0x5f,0xb3,0xa9,0x5a,0x96,0x38,0x9f,}, + {0xd5,0xe5,0x72,0xa6,0x50,0x60,0xb0,0x17,0x64,0x99,0xea,0x81,0x61,0x8f,0x20,0xf3,0x96,0x25,0xe0,0x5d,0x0f,0x26,0x47,0x73,0x27,0xaa,0xbd,0x8f,0xd7,0x2b,0x42,0xbb,0x1c,}, + {0xd4,0xe0,0x72,0xa6,0x98,0x5f,0xed,0x58,0x6c,0x77,0x83,0x59,0x5f,0xec,0xc6,0x9a,0x6f,0x5b,0xa8,0xb6,0x10,0xcc,0xdd,0xb2,0xc6,0x41,0x68,0x6d,0x4f,0x6e,0xbb,0x4a,0x81,}, + {0xd1,0xe6,0xac,0x26,0x8a,0x64,0xaf,0x06,0xde,0x72,0xc9,0x1c,0xbc,0xc9,0xb8,0xbc,0x55,0x28,0xdc,0xbc,0xea,0xc4,0xd3,0xf5,0xd4,0xaa,0x5f,0x26,0x6a,0xa4,0x68,0x66,0xb2,}, + {0xd3,0xa1,0x82,0x26,0xd0,0xbf,0xcb,0xd7,0x63,0xb1,0xa0,0x53,0x5f,0x2b,0xff,0x63,0x96,0x36,0x88,0x5f,0x2c,0x66,0xfb,0x5e,0x99,0x24,0x65,0xb2,0xc6,0xfa,0x51,0xc6,0xec,}, + {0xd5,0xa4,0xa2,0xe6,0x58,0x61,0xd0,0x36,0xd3,0xe2,0x75,0x24,0x5f,0x52,0xcd,0x1b,0x64,0x64,0xeb,0x61,0xcf,0xd7,0x16,0x56,0xd2,0x3c,0xc1,0x32,0xbb,0x5b,0xd5,0xd8,0x82,}, + {0xd5,0x2b,0xa3,0x2a,0x18,0xbd,0x94,0x76,0xe4,0x8e,0x57,0x2b,0x5f,0x4f,0x11,0x30,0xb9,0x3d,0xd7,0xc1,0x14,0xb4,0xd2,0xee,0xab,0x1c,0x61,0x10,0xe9,0x1b,0x60,0x76,0xad,}, + {0xd4,0x6e,0xab,0xa5,0xe0,0x5f,0x4e,0xcd,0x74,0x74,0x83,0x8e,0xbd,0x4f,0x47,0xa2,0xe9,0x70,0x9c,0xba,0x8d,0x8a,0xdf,0x97,0xdc,0xd9,0x61,0xae,0x3c,0x1d,0x8e,0x39,0x1a,}, + {0xd4,0xad,0xab,0x6a,0x18,0x5f,0x0e,0xc4,0x07,0x31,0xc7,0x1d,0xbd,0xef,0x47,0x92,0x3d,0x48,0xdc,0xbf,0xaa,0xc4,0xc5,0xa1,0xe8,0xfc,0xbf,0x8e,0xd7,0x2b,0x8a,0x27,0x70,}, + {0xd4,0xed,0xba,0x6d,0x60,0xbd,0x30,0xc9,0x24,0x96,0x47,0x10,0x5f,0x90,0x8e,0x95,0x4d,0xc8,0xe3,0xbd,0x90,0x38,0xba,0x71,0xb7,0x1c,0x5f,0x4f,0x44,0x87,0x35,0x58,0xac,}, + {0xd4,0xaf,0x9b,0x29,0x68,0xbf,0x2e,0xb8,0xda,0x63,0x19,0x23,0x5d,0xb0,0x25,0x5d,0x76,0x41,0x9b,0x63,0x51,0x39,0x2d,0x71,0xc4,0x5f,0xbf,0xcb,0x2d,0x0f,0x76,0x35,0x4c,}, + {0xd4,0xed,0xba,0xed,0x68,0xbf,0x8c,0x9e,0x23,0x95,0xd9,0x2a,0x5f,0xb1,0xc6,0xc7,0x52,0x48,0xe4,0xbd,0x8d,0xf6,0xe1,0x3c,0x76,0xab,0x5f,0x6f,0xac,0xeb,0xac,0x6c,0xa5,}, + {0xd4,0xea,0xc9,0xe5,0xe8,0xba,0x91,0x38,0xde,0x91,0xb4,0x3b,0xbd,0x6d,0x43,0x5b,0x72,0x39,0x08,0xbd,0x0f,0xf6,0xe3,0x92,0x39,0x63,0x5f,0x2d,0x21,0x6b,0xae,0x49,0x64,}, + {0xd4,0x62,0xe0,0xea,0x18,0xbd,0x29,0xa6,0x0c,0xaf,0x53,0x5e,0xbc,0xc8,0xc8,0x60,0x13,0x4b,0x0b,0xb6,0x05,0xfb,0x25,0x8e,0x94,0xd2,0xc0,0x21,0xab,0x34,0xbf,0xe7,0xb1,}, + {0xd6,0x58,0x99,0x8c,0xa9,0xce,0x22,0xf5,0x24,0xb1,0xc8,0xd4,0xae,0x60,0xd5,0xdf,0xad,0x38,0xc9,0xd0,0x01,0x2b,0x6b,0x85,0xdb,0x23,0x58,0xc0,0xa7,0xb3,0x99,0x23,0x6e,}, + {0xd9,0xdc,0x61,0x1c,0x19,0xd4,0xa0,0xc4,0xa6,0xd1,0x32,0x0c,0xb0,0x81,0x48,0x5a,0x70,0x36,0x94,0x6a,0xe1,0x58,0xd5,0xad,0x16,0x73,0x65,0xe2,0xb6,0x94,0x4e,0x28,0xef,}, + {0xdc,0x2f,0xc4,0x21,0x99,0x81,0x85,0x98,0xe2,0x66,0x31,0x12,0x6f,0xe8,0x34,0xc9,0x82,0xa0,0xa1,0x55,0x6a,0x28,0x51,0xec,0xd7,0x51,0x59,0x0c,0xe4,0xea,0x79,0xd8,0x3a,}, + {0xda,0xe4,0xa2,0xd4,0x11,0x91,0x2a,0x4e,0xce,0xaf,0x05,0xe8,0xa4,0xab,0x5d,0x03,0xec,0xaa,0xa9,0xf0,0xae,0xc3,0x4d,0x49,0x2a,0xe0,0x5c,0x29,0x70,0x4d,0x06,0xf9,0x1c,}, + {0xd2,0xd4,0x8a,0x59,0x91,0xc2,0x63,0x4d,0x66,0x9d,0xd5,0x6d,0xe8,0x02,0x65,0x9d,0xd6,0xb8,0xba,0xc8,0x40,0xb5,0x23,0x66,0x35,0x92,0xec,0x20,0x96,0xe4,0x8d,0xb9,0x1c,}, + {0xda,0x24,0xc3,0x4c,0x14,0xaf,0xf2,0xc6,0xdc,0x92,0x49,0x27,0x55,0x30,0x95,0xaf,0x77,0xb4,0xde,0x60,0x2d,0xc9,0xd0,0xe9,0x42,0xd2,0xa4,0x70,0x38,0x94,0x4e,0x24,0x03,}, + {0xd8,0x1e,0xaa,0x85,0x39,0xd6,0x48,0xbf,0x14,0x21,0xc6,0xd1,0x9c,0x6a,0xd0,0x51,0xce,0x44,0xa4,0xc4,0x03,0x60,0x8e,0xe9,0x34,0xe4,0x94,0x21,0x7b,0x73,0x71,0xda,0xe7,}, + {0xd7,0x60,0xdb,0xcc,0x48,0xe0,0x62,0xf3,0x5c,0xaf,0xc9,0x2c,0xda,0x61,0x52,0xb6,0xec,0xb3,0x26,0xb4,0x61,0x59,0xa5,0x86,0x27,0xac,0xc8,0xa0,0xbd,0x8e,0x8e,0xdd,0x1b,}, + {0xd0,0x60,0xa3,0x21,0x5a,0xb0,0x40,0x39,0x6c,0x76,0xc9,0x24,0xa8,0x40,0x38,0xdc,0x6e,0x36,0xdb,0xe6,0x40,0x38,0xdc,0x6d,0xb6,0xdc,0xce,0x20,0x46,0xdb,0x92,0x48,0xe3,}, + {0xd0,0x5f,0xa2,0xe1,0x22,0xa2,0x00,0x49,0x24,0x92,0x49,0x24,0xd0,0x20,0x49,0x24,0x8e,0x49,0x24,0x70,0x00,0x49,0x24,0x92,0x49,0x24,0x96,0x00,0x47,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xa5,0x22,0x66,0x00,0x49,0x24,0x92,0x49,0x1c,0xe2,0x00,0x49,0x24,0x92,0x49,0x24,0x98,0x00,0x49,0x24,0x92,0x48,0xe4,0x6c,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa2,0xa1,0xcf,0x49,0x24,0x92,0x41,0x24,0x68,0x82,0x5f,0xfe,0xb6,0xdb,0x6d,0xba,0xa2,0x7f,0xfe,0xb6,0xdb,0x6d,0xb0,0xe1,0xdb,0xf6,0xdb,0x6d,0xb6,}, +}; +static const gsm_frame gsm_data_dvanact[] = { + {0xd2,0x23,0xbb,0xa9,0xa2,0x50,0x40,0x49,0x2d,0xb2,0xba,0xdc,0x5b,0x00,0x66,0xf4,0x30,0xa0,0x4c,0x5f,0xe0,0xd9,0x2c,0x4d,0x94,0x48,0x55,0xc1,0xb9,0x76,0xda,0x36,0x41,}, + {0xd0,0xea,0xcc,0x6d,0xe2,0x54,0xa2,0x27,0xbe,0x5b,0x29,0x44,0x5a,0x62,0x1d,0xda,0x91,0xe4,0x9a,0x8a,0xe2,0xc6,0xbb,0x32,0xc8,0xd3,0xde,0x01,0x16,0x9d,0xd6,0xb9,0x22,}, + {0xd1,0x64,0xcc,0xf1,0xe2,0x96,0xc1,0x34,0xa3,0xfe,0x48,0xa5,0xea,0x01,0x26,0xa2,0x73,0x68,0xd3,0xb0,0xc0,0xd6,0xaa,0x73,0xca,0x8a,0xe2,0x41,0x48,0xd3,0x4e,0xe8,0xd3,}, + {0xd5,0xa7,0x60,0x66,0xe2,0x64,0xc0,0xa4,0x92,0xba,0xef,0xac,0xb3,0xee,0xc6,0xdc,0x98,0x66,0xa5,0x6e,0x04,0x95,0x2a,0x6d,0xe1,0xdd,0xa4,0xae,0x47,0x08,0x52,0xe7,0x6d,}, + {0xd5,0xa5,0x7a,0x2a,0xe0,0xdd,0xd4,0xb4,0x8a,0xf1,0x47,0x25,0x53,0x11,0x5b,0x20,0x59,0x59,0x23,0xa5,0x11,0xdf,0x1a,0x19,0xc9,0x64,0xa5,0x50,0x5a,0xda,0x1e,0x39,0x1c,}, + {0xd4,0x6a,0x5a,0x6e,0x61,0x52,0xb0,0x69,0x12,0x2f,0x8b,0x5c,0xa4,0xcb,0xe4,0xd8,0x39,0x0d,0x1b,0xa4,0x8a,0x78,0xa5,0x25,0x8b,0x55,0xa2,0x0b,0x5d,0x24,0x40,0x47,0x24,}, + {0xd1,0xa9,0xbb,0x26,0x2b,0xa2,0xc5,0xf9,0xed,0x44,0x10,0xa3,0xa2,0x25,0x69,0x23,0x29,0xf5,0x1a,0xee,0x44,0xe9,0x64,0x48,0x74,0xdb,0xee,0x25,0x4b,0x2b,0x89,0x2e,0x9c,}, + {0xd2,0x27,0xb2,0x66,0xa2,0xa3,0x22,0xb5,0xe2,0xa2,0x38,0xed,0x57,0x43,0xce,0xe4,0x4d,0x0e,0xd5,0x53,0xe2,0xc5,0xd4,0x68,0xde,0x9a,0x55,0xc7,0x47,0x93,0x6d,0xb5,0xc3,}, + {0xd3,0xab,0xba,0xdd,0xe0,0x53,0xca,0x48,0xf4,0xb2,0x10,0x9c,0x53,0xca,0xc9,0x1f,0x91,0x80,0x73,0x53,0xcf,0xc9,0x1d,0x71,0xd4,0xfb,0x53,0xec,0xb7,0x13,0x8d,0x52,0xfa,}, + {0xd3,0xae,0xc2,0xe1,0x98,0x53,0xcc,0x59,0x8c,0x92,0x23,0x30,0x53,0xeb,0xe2,0xec,0x39,0xb9,0x0f,0x53,0x2c,0x0c,0xf3,0xb6,0xc6,0xc1,0x55,0x30,0x88,0xe3,0x72,0x38,0xcb,}, + {0xd4,0xec,0xba,0x6e,0x18,0xa7,0xf1,0x19,0x22,0xb1,0xc6,0x50,0x51,0x8e,0xfa,0x27,0xa7,0x77,0x7a,0x53,0x6e,0xa8,0xe4,0xe7,0x5f,0x28,0xb1,0xd0,0x34,0xfd,0x47,0xf1,0x36,}, + {0xd4,0xe8,0xa9,0x69,0x98,0x5f,0x32,0x36,0x92,0xed,0xc8,0xdc,0x61,0x53,0xb4,0xd3,0x6f,0x97,0x6b,0xbf,0xce,0x8a,0x83,0x56,0x6e,0x12,0xbd,0x12,0x69,0x24,0xb2,0x36,0x90,}, + {0xd2,0xa3,0x73,0xda,0x59,0x64,0x91,0x05,0x74,0x76,0xb6,0x93,0xbe,0xcf,0x3e,0x9e,0x6a,0x45,0x1a,0xba,0x6d,0x20,0x6c,0xda,0xdb,0x24,0xb6,0x8d,0x56,0x88,0x2f,0x5d,0x35,}, + {0xd1,0x67,0xb2,0xb2,0xf1,0xb6,0xeb,0x59,0x12,0x43,0x97,0x42,0xbc,0x8c,0x5b,0x2c,0x6d,0xb5,0xda,0xcc,0xac,0x41,0x65,0x92,0x42,0xd0,0xc3,0x29,0xfa,0xa3,0x52,0xd9,0x5c,}, + {0xd3,0xa4,0x90,0xf2,0x11,0xc5,0x29,0x93,0x96,0xb7,0xdd,0xbd,0xd3,0xb1,0x34,0x41,0xd2,0xcb,0x65,0x61,0x54,0x48,0xd2,0x73,0x97,0x9b,0x61,0x73,0x4b,0x13,0x6d,0x3e,0x64,}, + {0xd5,0x27,0x98,0xf6,0x10,0xbf,0xce,0xa0,0xe7,0x46,0xd6,0x86,0x5f,0x4e,0x9d,0xec,0x9b,0x48,0xc8,0x5f,0xac,0x8a,0xd5,0x89,0xba,0xe5,0x5f,0xec,0xc8,0xaa,0xa9,0xc8,0xd7,}, + {0xd4,0xea,0xaa,0xad,0x98,0x61,0xef,0x44,0xd2,0x83,0x99,0x9a,0x61,0xaf,0xcc,0xa9,0x99,0x5e,0xa9,0x63,0x72,0x57,0x63,0x8d,0xb2,0xba,0xc1,0x0f,0x97,0x24,0xb1,0xe4,0xf0,}, + {0xd4,0xac,0xc2,0xea,0x20,0xc1,0xee,0xd4,0xeb,0x19,0xba,0xc7,0xbd,0x70,0x91,0x45,0x8a,0xc9,0x6d,0xbd,0x70,0xc8,0x80,0x8d,0xc9,0x62,0x5f,0xec,0xc6,0xd3,0x8c,0xaa,0xd7,}, + {0xd4,0xac,0xc2,0xe9,0xa0,0x5f,0x71,0x49,0x64,0x71,0x15,0xd5,0xbc,0xf0,0xd9,0x2e,0x95,0x44,0x00,0xbf,0xaa,0x8c,0xeb,0x1a,0x18,0x30,0x5f,0xcc,0x93,0xcc,0x6d,0xa7,0x46,}, + {0xd4,0xb0,0x93,0x69,0x99,0xbf,0x50,0x34,0x57,0x52,0x55,0x24,0xbd,0x2f,0x38,0xde,0x27,0x99,0x1c,0x5f,0xaa,0xab,0x16,0x86,0xae,0x62,0x5f,0x2e,0x39,0x34,0xad,0xa2,0x79,}, + {0xd4,0xec,0xba,0xed,0x28,0xbd,0x30,0x49,0x23,0xb5,0xd5,0x10,0xbd,0x10,0x2e,0xa4,0xb1,0xcd,0x2b,0x61,0x8e,0xd6,0xc6,0x36,0xa8,0xe4,0x5f,0x31,0x46,0xd0,0xe2,0xb9,0x1d,}, + {0xd4,0xf0,0x9b,0x2d,0xa8,0xbd,0x10,0x4b,0x1b,0x64,0x74,0xe4,0x5f,0xed,0x47,0x64,0x96,0x28,0x38,0x5f,0x8c,0xf7,0xa4,0x8e,0x36,0x65,0x5f,0x0f,0x0b,0x1c,0xa9,0xbd,0x2c,}, + {0xd5,0x2a,0xd2,0x22,0x28,0x5f,0xd0,0xc3,0xda,0x8d,0xc5,0x54,0x5d,0xb0,0x3b,0x87,0x52,0x27,0x22,0xbd,0x50,0x48,0xe4,0x19,0xc8,0xe4,0x5f,0x2c,0xcb,0xac,0x48,0x0b,0x5d,}, + {0xd3,0xa1,0xb1,0xde,0x68,0xbc,0x88,0x2f,0x7e,0x98,0x30,0xb5,0xba,0x08,0x9e,0xa4,0xd2,0x34,0xd3,0xc4,0x45,0x72,0xf3,0x92,0x4a,0xe2,0xae,0x25,0x08,0xdb,0x6e,0x49,0x2c,}, + {0xd5,0x1a,0xb9,0xe1,0xb2,0xd2,0x41,0x64,0x22,0xee,0xcb,0x64,0xb8,0xa0,0xad,0x7e,0xee,0xcc,0xed,0xc2,0xa0,0xd7,0x1b,0x67,0xeb,0x6a,0xe8,0xa0,0xdd,0x73,0xad,0xab,0x14,}, + {0xd6,0x15,0x61,0x99,0x21,0xe6,0xc0,0x86,0xe5,0x95,0x37,0x24,0x5a,0x80,0x94,0xd3,0x8e,0x47,0x13,0xbc,0xc0,0xb3,0x14,0x4d,0x56,0x93,0x56,0xc0,0xc8,0x6b,0x52,0xc7,0x23,}, + {0xdb,0xad,0xbc,0xe8,0xd1,0xc1,0xe3,0x47,0x1a,0x4d,0xa0,0x40,0x55,0xe8,0xa2,0x5a,0x49,0xc5,0x06,0x55,0x48,0xa7,0x48,0x8d,0xa5,0x03,0x7b,0x4b,0x4a,0x6b,0x78,0xac,0x9f,}, + {0xdb,0x29,0xd4,0x20,0x9a,0x58,0x8b,0xa7,0x98,0x95,0x36,0xe4,0xae,0xcd,0x56,0x2e,0x2a,0x24,0x6b,0xd0,0x8b,0x90,0x3b,0x18,0xa6,0x62,0x90,0xae,0xc6,0x93,0x66,0x98,0x20,}, + {0xd7,0x9c,0xa9,0x85,0x18,0xa4,0x8d,0x52,0x89,0x91,0x88,0xda,0x64,0x26,0xf1,0x7f,0x92,0x59,0x6c,0x56,0x21,0xfd,0xe2,0x4e,0x49,0x24,0x92,0x01,0x59,0x75,0x65,0x1b,0x6c,}, + {0xda,0xa5,0xc3,0x4c,0x4b,0xde,0x40,0xa5,0x6e,0x89,0xc4,0xee,0xec,0xa1,0x5b,0x2d,0xb2,0xe9,0x1e,0xd3,0xb0,0xc9,0x24,0x92,0x76,0x34,0x50,0x92,0x67,0x3b,0x4d,0xe8,0xeb,}, + {0xd7,0xe3,0xc1,0x80,0xb3,0x74,0x0e,0x0c,0x9c,0x2d,0x28,0xe2,0xe0,0x4b,0xd3,0x28,0x00,0xd7,0x1b,0xd0,0x2d,0x46,0x9c,0x71,0xa7,0x42,0x96,0xca,0x1f,0x25,0x62,0x56,0xd3,}, + {0xd8,0x9c,0x8c,0x8c,0x22,0x72,0x23,0x38,0xb2,0x80,0x5c,0x93,0xc0,0x62,0xd7,0x2c,0x8e,0xcc,0x7a,0xec,0x22,0x48,0xf3,0xf2,0x39,0x55,0xcc,0x41,0x6e,0x94,0x55,0xdb,0x3b,}, + {0xd4,0xd8,0x6a,0x0d,0x10,0xe6,0x20,0xe6,0xea,0x5a,0x45,0xe2,0xd2,0x40,0x03,0x24,0x92,0x47,0x2c,0xec,0x00,0x37,0x6c,0x8e,0x49,0x1c,0xf0,0x20,0x49,0x25,0xb2,0x48,0xe4,}, + {0xd0,0x60,0x9b,0x21,0x5a,0x5c,0x00,0x49,0x24,0x92,0x49,0x24,0x9e,0x00,0x49,0x1b,0x6d,0xb9,0x24,0x56,0x40,0x37,0x23,0x92,0x49,0x24,0x72,0x40,0x49,0x24,0x92,0x48,0xe3,}, + {0xd0,0x60,0xa2,0xe5,0x5a,0xac,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x40,0x49,0x1c,0x92,0x49,0x23,0x84,0x00,0x49,0x24,0x92,0x49,0x23,0x88,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xaa,0xe1,0x5a,0x6c,0x00,0x49,0x24,0x92,0x47,0x24,0x5a,0x40,0x49,0x24,0x92,0x49,0x23,0x7c,0x00,0x49,0x24,0x91,0xc9,0x24,0x7a,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_trinact[] = { + {0xd8,0x9d,0x89,0x54,0xd1,0x50,0x40,0xb6,0xe3,0x8d,0xa7,0x21,0x64,0x20,0x3a,0xb1,0xb3,0x39,0x53,0x74,0xc0,0x2b,0x3c,0xac,0xb9,0x5a,0xbc,0xe0,0xd8,0x8a,0x91,0xb4,0xd4,}, + {0xd4,0xd6,0x59,0x18,0xdb,0x86,0xa0,0x24,0x6b,0x5a,0x48,0xa4,0xc2,0xc0,0x38,0xec,0x19,0x49,0x13,0xe4,0xa0,0xc9,0x23,0x92,0x17,0x5a,0x54,0xa0,0x19,0x13,0x51,0x47,0x93,}, + {0xd9,0xe9,0xd3,0xe5,0x59,0x74,0xa0,0xa6,0xd1,0x28,0xa2,0x12,0xa7,0x41,0xa5,0x23,0x72,0xa7,0x77,0xcc,0xc0,0xed,0xb7,0xd2,0x46,0xd0,0x9d,0xf0,0x46,0xdb,0x6e,0x49,0x3b,}, + {0xd7,0xeb,0xd0,0x90,0x81,0x55,0x50,0x7d,0x6b,0x96,0x46,0xe7,0x99,0xd1,0xa6,0x96,0xec,0x1d,0x48,0x58,0xd0,0x59,0x8a,0x49,0xc4,0x02,0xa8,0x4c,0xc2,0x91,0x0d,0xa6,0x86,}, + {0xd6,0xec,0x60,0x48,0x52,0xb4,0xcb,0x88,0x9d,0xce,0x6d,0xb5,0xe4,0x09,0xd9,0x2f,0xb2,0xca,0xe3,0xa8,0x61,0xc6,0xed,0x61,0xea,0xca,0xdc,0x41,0x88,0xec,0x71,0xb9,0x23,}, + {0xdb,0xeb,0x89,0x54,0x11,0xd8,0x42,0x59,0x6f,0xb7,0x6d,0xae,0xdb,0xeb,0x47,0x24,0x6e,0x33,0x18,0x55,0xf2,0xb7,0x05,0x82,0x67,0x1c,0x64,0x8f,0xeb,0x1e,0xef,0x79,0xf2,}, + {0xdd,0x6b,0xa2,0x90,0x01,0xc4,0xcd,0x6b,0x36,0x96,0xf7,0x6b,0xd5,0x70,0x69,0x14,0x5c,0x39,0x5a,0x7a,0xaf,0x4a,0xe5,0x39,0xc8,0x7b,0xbe,0xad,0x48,0xdd,0x4f,0x3a,0x70,}, + {0xdd,0x2e,0xcd,0x2d,0x51,0xcc,0xae,0x67,0xcc,0xb2,0xa7,0x23,0x80,0xaf,0x79,0x15,0xb2,0xa7,0x54,0xaa,0xcd,0x1a,0xda,0x81,0xa4,0x9a,0x8c,0xad,0xd2,0xa9,0x70,0x47,0x22,}, + {0xda,0x96,0x69,0x16,0xb4,0x5d,0x2c,0x46,0x2a,0x95,0xcd,0x1c,0xa4,0xa7,0x8d,0x4f,0x1e,0xbc,0xe4,0xea,0xab,0x48,0x60,0x56,0x4d,0x6f,0xa7,0xb0,0xca,0x8b,0x0b,0xc9,0x23,}, + {0xd7,0x1a,0x53,0x2a,0xb0,0x53,0x4f,0xd5,0xa2,0x42,0x4b,0x1d,0x57,0x2c,0xe7,0x26,0x08,0x47,0x2c,0xab,0x50,0x58,0xe5,0x6d,0x8b,0x1d,0xb7,0x31,0xa7,0x62,0x79,0xb8,0x9f,}, + {0xd6,0x9b,0x54,0x66,0xe0,0xbc,0xac,0x05,0x5d,0xb5,0x6f,0x0c,0x62,0xcf,0x0c,0xe5,0x72,0x47,0x73,0xc1,0x4d,0x36,0x0c,0x79,0xda,0xec,0x63,0xad,0x26,0xd5,0x4f,0x13,0xd2,}, + {0xd4,0xd9,0x83,0x2e,0x20,0x61,0x6c,0x3b,0xd4,0x62,0x2b,0x89,0xc3,0x0c,0x72,0xba,0x98,0xc6,0x62,0xc6,0xab,0x93,0xea,0xd6,0xe3,0x01,0xbc,0x8c,0x03,0x15,0xc7,0xd7,0xdc,}, + {0xd1,0xe7,0xb3,0x5d,0x62,0x61,0x0d,0x24,0x81,0x8e,0x49,0x24,0x5e,0xa7,0xc9,0x1b,0x3f,0x3d,0x0e,0xba,0xcb,0xaa,0xe6,0x76,0x0f,0x56,0x65,0x49,0x2d,0x2b,0x6e,0x36,0x85,}, + {0xd2,0x66,0x73,0x6d,0x92,0x75,0x49,0x79,0x94,0xb6,0x27,0x42,0x61,0xe6,0x07,0x23,0x87,0xb7,0xcd,0x61,0x2b,0x45,0x18,0xd1,0x66,0xeb,0xc3,0x08,0xc9,0x19,0x80,0xf4,0xfa,}, + {0xd5,0x64,0x92,0x6d,0x80,0x61,0xae,0xc9,0x23,0xb1,0x20,0x15,0x65,0x51,0xd9,0x24,0x8e,0x34,0x82,0x63,0xb4,0xf6,0xe3,0x8e,0x37,0x1b,0x61,0xaf,0xf5,0xd4,0xae,0x27,0x16,}, + {0xd5,0xe7,0x9b,0x2a,0x01,0xc1,0xee,0xa9,0xcb,0x89,0xda,0x65,0x63,0x2f,0xbb,0xa4,0x48,0x65,0x24,0xc3,0xd0,0xca,0xed,0x75,0xb5,0x85,0xc3,0xd1,0xb7,0x63,0x9c,0xc3,0x11,}, + {0xd4,0xeb,0xb3,0x29,0xe0,0x63,0x36,0x3e,0x63,0x75,0xc9,0x24,0x63,0xb0,0xc9,0x51,0xee,0xd5,0x5d,0xc3,0x2f,0xda,0xe9,0x02,0xd9,0xa3,0xc3,0xb0,0xba,0xea,0x74,0xcc,0x24,}, + {0xd4,0xed,0x93,0x2d,0xa0,0x5f,0x30,0x39,0x5d,0xae,0x44,0x87,0xc0,0xaf,0x39,0x6c,0xb7,0x58,0xe0,0x63,0xac,0x4a,0x15,0x51,0x58,0xa1,0x61,0xab,0x16,0x2b,0x39,0xa8,0xd5,}, + {0xd4,0xed,0xa2,0xed,0x68,0x61,0xce,0x48,0xad,0x43,0xb5,0x94,0xc3,0x6e,0x5d,0x22,0x84,0x1e,0x62,0xc3,0xac,0x49,0x28,0xa2,0x53,0x1e,0x61,0x8d,0x05,0x6a,0x8e,0xaa,0xe3,}, + {0xd4,0xf0,0x8b,0x69,0xa0,0x61,0xed,0x57,0xdc,0x6d,0xb9,0x0d,0xc1,0xec,0xc7,0x6f,0xc6,0xc4,0xe5,0x5f,0x50,0xc8,0xe3,0x43,0xa7,0x1d,0xc3,0x0d,0xbd,0x24,0x69,0x11,0x9b,}, + {0xd4,0xed,0xaa,0xad,0x28,0xc3,0xed,0xb7,0x1c,0x91,0x34,0x6f,0x6c,0xcf,0x87,0xa6,0x5e,0xe6,0xd3,0x65,0x50,0x95,0xc4,0xb1,0xc9,0xa3,0xc3,0xcf,0xc6,0xd7,0x19,0x58,0xab,}, + {0xd4,0xee,0xa3,0x69,0xa8,0x61,0xb0,0xc7,0x24,0x90,0x65,0x1c,0x61,0xaf,0xc5,0x65,0x6d,0xb5,0xc5,0x61,0x2d,0x53,0x6b,0x33,0x49,0x60,0xc0,0xad,0x2c,0xe3,0xae,0x3f,0x32,}, + {0xd4,0xab,0xe1,0xa9,0xa0,0xbe,0xd0,0xa1,0xa3,0x91,0xc8,0xec,0xc1,0x2d,0x45,0x1a,0xee,0x38,0xe4,0x61,0x8a,0x55,0x33,0x91,0x8e,0xeb,0xc1,0x0b,0xc7,0x6c,0xb1,0x32,0x17,}, + {0xd3,0xa4,0xc1,0x22,0x28,0xc0,0x87,0xfa,0xfd,0xd6,0xe3,0x00,0xc1,0x08,0x76,0x32,0x71,0xb2,0x4c,0xc8,0x26,0x01,0x6b,0x91,0xb9,0x5c,0xa0,0x61,0xea,0x1a,0x69,0xb9,0xad,}, + {0xd6,0x58,0xa9,0x8c,0xa8,0xe0,0x01,0xa9,0x24,0x31,0x49,0xaf,0xda,0x40,0xd7,0x24,0x40,0xed,0x95,0xd8,0x80,0x97,0x34,0xac,0x96,0xf6,0xd2,0xa0,0x68,0x00,0xbb,0x66,0x5f,}, + {0xd7,0x16,0x69,0x60,0xa1,0xd8,0xa0,0xd8,0xe1,0x2a,0x5a,0xda,0xc0,0xa0,0xb9,0x0a,0x6d,0xb5,0x22,0x80,0xa0,0xb7,0x24,0x35,0xa7,0x24,0xd6,0xa0,0xc6,0xec,0x69,0x35,0xcb,}, + {0xdc,0x2d,0xbc,0x61,0x59,0x61,0xe3,0x34,0xd2,0x29,0x10,0x42,0x55,0xe6,0x10,0x4b,0x24,0x44,0xb8,0x73,0x29,0xb1,0xb0,0xad,0x47,0xcb,0x89,0x4c,0xa7,0x66,0xa2,0xc7,0x21,}, + {0xda,0xe3,0xdb,0x54,0x98,0x66,0xac,0xb9,0x25,0x62,0x70,0xac,0xaf,0x4c,0x25,0xe8,0x4e,0x55,0x22,0x78,0x4a,0x28,0xd3,0x8d,0x28,0x28,0xaa,0xcc,0xd1,0x4b,0x28,0x88,0x69,}, + {0xd6,0x9c,0x91,0x48,0xa0,0xe6,0x89,0x86,0x1a,0xc5,0x5b,0x2b,0xb8,0x42,0xcb,0x63,0xf7,0xcb,0x2e,0xe2,0x22,0xbd,0x36,0xda,0x77,0xa3,0xc4,0x40,0xa9,0x6e,0x69,0xc9,0x1a,}, + {0xdb,0x64,0xbb,0x5c,0x0b,0xaa,0x20,0xd8,0x9d,0xdb,0x4d,0xa6,0xe4,0x41,0xdd,0x2c,0xd6,0xd9,0x6f,0x59,0xd3,0xcb,0x0d,0x99,0xce,0xdd,0x58,0x30,0x1d,0xd6,0xa8,0xe6,0xa2,}, + {0xd7,0x61,0xc9,0x04,0xb9,0x96,0x4c,0x05,0x05,0x41,0xa9,0x18,0xdc,0x4b,0x11,0x55,0x89,0xb5,0x22,0xd6,0xcc,0x37,0x14,0x0e,0x1f,0x1d,0xcc,0x48,0x01,0x73,0x6a,0x58,0xe3,}, + {0xd7,0xdf,0xe4,0x5c,0x10,0x70,0x01,0x6b,0x22,0x33,0x48,0xdb,0xc6,0x41,0xcd,0x3f,0xe3,0xab,0x66,0xf0,0x02,0x4f,0x6c,0x95,0xbb,0x73,0x76,0x80,0xb4,0x6b,0xba,0x79,0x29,}, + {0xd5,0x16,0x69,0x8c,0xd1,0xc8,0xa1,0x57,0x64,0x59,0xb8,0x9c,0xf0,0x00,0x15,0x13,0x8e,0x46,0xdc,0xe8,0x40,0x47,0x1b,0x8d,0xc7,0x23,0xea,0x20,0x47,0x1c,0x72,0x39,0x24,}, + {0xd0,0x60,0xa2,0xe5,0x5a,0x56,0xa0,0x39,0x24,0x92,0x49,0x24,0xd8,0x00,0x48,0xe4,0x72,0x49,0x1c,0xd2,0x00,0x48,0xdc,0x8e,0x49,0x1c,0x94,0x00,0x49,0x24,0x92,0x47,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0xe2,0x40,0x49,0x24,0x92,0x49,0x23,0xea,0x00,0x49,0x1c,0x92,0x49,0x24,0x84,0x00,0x49,0x24,0x92,0x49,0x1c,0x86,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0x9b,0x21,0x5a,0x70,0x00,0x49,0x24,0x92,0x39,0x24,0x68,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x8e,0x49,0x24,0x56,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_ctrnact[] = { + {0xd8,0x4e,0x68,0xd8,0xdb,0x50,0x60,0x34,0x9a,0x68,0xce,0x56,0x54,0x00,0xb6,0x74,0x71,0xb7,0x25,0x5a,0xa0,0xbc,0x89,0x8d,0xc8,0xda,0x96,0xa0,0xb8,0xd6,0x91,0xb8,0xdc,}, + {0xd5,0x17,0x68,0xdd,0x12,0x72,0xe0,0x3e,0x9a,0x7d,0xb6,0xdd,0x70,0xc0,0x28,0xd5,0x5d,0xb4,0xee,0x96,0xa0,0x37,0x5c,0xeb,0x2e,0xb5,0xe0,0xe0,0x7d,0xaf,0x76,0x25,0x65,}, + {0xd2,0x95,0x61,0xe1,0x99,0x6e,0xc0,0x36,0xda,0x74,0xa9,0x9b,0xc9,0x40,0x4e,0xeb,0x6d,0x1a,0x99,0x8a,0xe0,0x3d,0x22,0x6e,0x37,0x15,0x72,0xe0,0xb7,0x1b,0x92,0x38,0xf3,}, + {0xdb,0x64,0x8a,0xcc,0x89,0xd1,0x61,0x48,0xe6,0xb6,0x6f,0x65,0x5d,0x21,0x7f,0xad,0xda,0xdb,0x6c,0x54,0xa0,0xf9,0xb5,0xdf,0x5b,0x2d,0xe1,0xab,0xc8,0xe4,0x8f,0x89,0x5b,}, + {0xdc,0xef,0xd5,0x24,0x9b,0x60,0x89,0xc9,0x1c,0x92,0x6e,0xe7,0xa4,0xca,0x7d,0xbc,0x6b,0x6d,0x34,0x6f,0x2d,0x99,0x5d,0x7d,0x2d,0x5e,0x5d,0x2d,0x95,0xaa,0x50,0x53,0xc3,}, + {0xdc,0x2a,0xcc,0x69,0x23,0x5d,0x6e,0xd1,0x8c,0x70,0x26,0xdf,0x6e,0xd0,0x35,0x44,0x35,0x2a,0x51,0xcf,0xb4,0xb9,0x8e,0x93,0xd8,0x64,0x54,0xf4,0x76,0x90,0x6d,0x4a,0xc3,}, + {0xda,0xa6,0xfc,0x8c,0x11,0x50,0x30,0x37,0x93,0x20,0xb2,0x5c,0xe0,0x0e,0xb1,0xe1,0x6e,0xc6,0xe3,0xc2,0x25,0xc4,0xaf,0x71,0xa7,0x2d,0xe8,0x62,0x89,0x77,0xb2,0xe8,0x8e,}, + {0xda,0x62,0x9a,0xd4,0x18,0xec,0x23,0x50,0xa3,0x69,0xc6,0x9c,0xbc,0x21,0x45,0x5a,0x48,0xc3,0x4a,0xbc,0x21,0x3f,0x12,0x2d,0xdb,0xab,0x99,0xe3,0x44,0xfc,0x9d,0x49,0x23,}, + {0xd6,0x60,0x81,0x9e,0x60,0x7f,0xa4,0x47,0x23,0xd8,0x53,0x09,0x9b,0x8c,0x64,0x30,0x95,0x46,0xdb,0x5c,0x25,0x93,0x41,0xc2,0xcb,0xe7,0xb7,0x4e,0xb8,0x82,0x3f,0xbb,0x2d,}, + {0xd6,0x1f,0x7a,0x63,0x29,0x57,0xcf,0x49,0x33,0x07,0xc6,0x99,0x57,0x2f,0x4b,0xab,0x50,0xd0,0xf3,0xad,0x71,0x47,0x73,0x54,0x38,0x15,0x54,0x8e,0x56,0xad,0x2a,0x2a,0x1c,}, + {0xd7,0x97,0x9a,0x0b,0x1a,0xbc,0x28,0xf9,0x6d,0xb1,0xa9,0x1e,0xe2,0xcd,0x35,0x2f,0xc7,0x5a,0x95,0xcc,0xcd,0x49,0xac,0xb5,0xa0,0x42,0xba,0xd0,0xcd,0x1d,0xae,0x36,0x50,}, + {0xd5,0x63,0x81,0xea,0xd8,0xdd,0xd4,0xaf,0x14,0x92,0x58,0xda,0x54,0xd2,0x09,0x24,0x8e,0x49,0x63,0xaa,0xd1,0x20,0xad,0x71,0xc9,0x34,0x57,0x2e,0xa8,0x16,0x76,0x48,0xec,}, + {0xd4,0x1c,0xab,0xa2,0xa0,0x57,0x6c,0x60,0xc5,0x6d,0xc7,0x25,0xad,0x6a,0xaa,0x71,0xe9,0x3a,0xde,0xad,0x4b,0xc8,0x96,0x18,0xa7,0x15,0xb7,0x6e,0x49,0x63,0x74,0x1e,0x4e,}, + {0xd2,0x22,0x94,0x32,0xd9,0xca,0x8d,0xd7,0x2f,0x72,0xc0,0xa4,0xb6,0x87,0x0a,0xc7,0xd1,0xdc,0x95,0xca,0x48,0xf8,0xb1,0x7a,0xfb,0x31,0x63,0x49,0x32,0x2b,0x75,0x3a,0xf5,}, + {0xd1,0xa9,0x93,0x76,0x59,0x60,0xe7,0xc4,0x80,0xd4,0xd6,0xf4,0xc2,0x88,0xbd,0x2d,0x4d,0x0b,0x15,0xc3,0x24,0xca,0xf9,0xb5,0xc2,0x23,0x61,0x24,0xba,0xdd,0x7a,0x5a,0x60,}, + {0xd3,0x65,0x72,0x2e,0x11,0xc3,0x08,0x0e,0x5f,0x9b,0x4b,0xbd,0x63,0x0d,0x34,0x0a,0x76,0xcb,0x25,0x5f,0x4a,0xc8,0x88,0x50,0x6e,0x1d,0x59,0xd2,0x46,0xed,0x96,0x03,0x92,}, + {0xd5,0x6b,0x78,0xba,0x48,0x5e,0xd0,0x67,0x1c,0xd9,0xc6,0x80,0x61,0x0c,0x2c,0x7e,0x95,0xe9,0x63,0xc3,0x31,0x06,0xda,0xd1,0xc9,0x65,0x61,0xcb,0xd7,0x60,0xf1,0x4c,0x99,}, + {0xd4,0xeb,0xa2,0x69,0xa0,0x63,0x30,0x58,0xe3,0x64,0x53,0x5c,0xc5,0xb2,0x67,0x2a,0x71,0x36,0x79,0xc1,0x4e,0x3e,0xfb,0x7d,0xd8,0x71,0x63,0x52,0xae,0x9d,0x8e,0x49,0x23,}, + {0xd4,0xea,0xb3,0x29,0xd8,0x61,0xad,0xe4,0x4f,0x74,0x4a,0xec,0x61,0xb1,0x56,0xeb,0x82,0xb7,0x23,0x61,0xeb,0xca,0xd5,0x51,0xaa,0xb7,0xc1,0x8c,0x88,0xdc,0x8d,0xb7,0x29,}, + {0xd4,0xec,0xa2,0xed,0xa0,0x61,0x0c,0x8e,0x74,0x72,0xd7,0x91,0xc3,0x30,0x9e,0x23,0x95,0xd9,0x23,0xc3,0x8e,0x55,0x1e,0x15,0x58,0xeb,0x61,0xaa,0x9a,0xab,0xc3,0xc5,0x44,}, + {0xd4,0xaf,0x84,0x61,0xe0,0x63,0x4f,0x4b,0x5c,0x89,0x0c,0x23,0xc0,0xf2,0x49,0x25,0x91,0xb4,0x57,0xbf,0x30,0x08,0xdc,0x6e,0x57,0x23,0xc1,0x10,0x35,0xcc,0xae,0x39,0x24,}, + {0xd5,0x2a,0xc9,0xed,0x61,0x61,0xac,0x36,0x97,0x18,0xe8,0xf4,0x61,0x90,0x67,0x14,0x68,0x71,0x22,0x65,0xb0,0xbb,0x14,0x71,0xa9,0xc5,0xc3,0xf1,0xc5,0x1c,0x6e,0x46,0xe7,}, + {0xd5,0x2d,0xa3,0x69,0xa8,0x5e,0xd0,0x07,0x25,0x7a,0xeb,0x1a,0x63,0x30,0x91,0xd4,0xb2,0x49,0x6c,0xc1,0x31,0xc6,0x88,0xee,0x59,0x25,0x61,0xce,0xb8,0x9d,0x6f,0x09,0x13,}, + {0xd4,0xea,0xd2,0x61,0xe8,0x61,0x2d,0x52,0xd7,0x76,0x42,0xfd,0xc1,0x70,0x37,0x12,0x8e,0x49,0x1f,0xbc,0x8b,0xa2,0xfa,0x76,0xcd,0xea,0xc1,0x4b,0x10,0x7a,0x8e,0xd9,0x2e,}, + {0xd3,0xaa,0xa9,0x65,0xd8,0xc0,0xac,0x43,0x00,0xd5,0xc7,0x64,0xbe,0x89,0xc8,0xda,0x8c,0x7b,0x2a,0xba,0x28,0xbb,0x2c,0x89,0x20,0x9b,0xd2,0x03,0xdb,0x9d,0x9b,0x48,0x42,}, + {0xd4,0xd9,0x9a,0x4d,0xf2,0xd8,0x41,0xe9,0x83,0x93,0xfd,0xf2,0xc0,0x21,0x89,0x3a,0x6e,0xc8,0xe3,0xa2,0x21,0x58,0x7a,0x8e,0xab,0x1c,0xd4,0x40,0xc8,0x91,0xd2,0x4c,0x25,}, + {0xd6,0x57,0x7a,0x14,0xe9,0xe0,0xc0,0xbb,0x21,0x4f,0x5a,0xb1,0xec,0xa0,0xa7,0x65,0x65,0xa7,0x0b,0x60,0xc0,0xa8,0xd4,0x6d,0x37,0x61,0xd8,0x00,0xaa,0x8c,0x6e,0x46,0xec,}, + {0xdb,0x29,0x93,0xa4,0x90,0x8f,0xe1,0xb4,0xcd,0x49,0x04,0x4a,0x53,0x82,0x10,0x81,0x61,0x31,0x0b,0x87,0xe4,0xb8,0x2d,0x6a,0xe5,0x45,0x55,0x69,0x47,0x12,0x8e,0x27,0x57,}, + {0xdb,0xa8,0xe4,0xa0,0x9b,0x77,0xab,0x37,0x1c,0x87,0x25,0xd2,0x5d,0xab,0x73,0x29,0x56,0x34,0xb2,0x94,0x8d,0xb7,0x18,0x95,0x28,0xd0,0xe1,0x4b,0x20,0x05,0x82,0x96,0x0b,}, + {0xd7,0xdb,0x9a,0x90,0xd0,0x5a,0xce,0x36,0x92,0xac,0x46,0xdc,0x96,0x06,0xc4,0xfd,0x8a,0x59,0x64,0x5a,0x01,0xef,0xf4,0x4e,0x49,0x65,0x96,0x21,0x69,0xbe,0x89,0x3b,0xb6,}, + {0xda,0xa7,0xac,0x65,0x5a,0xde,0x41,0xeb,0x27,0xdb,0xeb,0x6e,0x63,0x22,0x6f,0xff,0xff,0x6d,0x24,0x62,0xe1,0x49,0x6e,0xb6,0xeb,0x3d,0xcd,0xd1,0xb6,0xe4,0x8d,0xb7,0x27,}, + {0xda,0x5f,0xaa,0xd0,0x9b,0x50,0x91,0xc5,0x66,0x93,0xb3,0x1a,0x9e,0x4e,0xa5,0x1b,0xa4,0x81,0x14,0x64,0x49,0x65,0x00,0x92,0x34,0x16,0x6c,0xad,0x06,0x86,0x72,0x22,0xab,}, + {0xd8,0xd9,0x93,0x98,0x1a,0xc8,0x63,0x82,0xd3,0xa2,0x13,0x31,0x94,0x21,0xd4,0x14,0x3b,0x53,0x9e,0xc4,0x61,0x6d,0x56,0xae,0xa9,0x25,0xd4,0x42,0xd7,0xc7,0x5a,0xac,0xa5,}, + {0xd5,0x56,0x71,0x94,0xc9,0x62,0x20,0xab,0x5f,0x32,0x27,0xa4,0x8a,0x00,0x9e,0xce,0x4e,0xb9,0x1c,0xe8,0x20,0x45,0x95,0x6e,0xbb,0x1c,0xe8,0x60,0x48,0xe4,0x96,0x49,0x2b,}, + {0xd0,0x60,0xa3,0x21,0x1a,0xe4,0x00,0x49,0x24,0x92,0x49,0x24,0x68,0x20,0x36,0xdc,0x72,0x36,0xe3,0xb0,0x60,0x37,0x1c,0x8e,0x36,0xdb,0xbc,0x00,0x47,0x24,0x92,0x49,0x24,}, + {0xd0,0x60,0x9b,0x21,0x1a,0x6c,0x00,0x49,0x24,0x8e,0x49,0x24,0xe8,0x00,0x49,0x24,0x92,0x49,0x23,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x72,0x49,0x24,}, + {0xda,0xa6,0xc3,0x65,0x59,0x87,0xe0,0xc9,0x25,0xb6,0xef,0xfe,0x51,0xa1,0x7f,0xff,0xdb,0x6d,0x6d,0x55,0x20,0xed,0xb6,0xdb,0x6d,0x76,0xa1,0xae,0x74,0xe3,0x92,0x47,0x24,}, +}; +static const gsm_frame gsm_data_patnact[] = { + {0xd8,0xe3,0x8a,0x95,0x1a,0x50,0x40,0x49,0x24,0x72,0xe9,0xe4,0x5c,0xa0,0xa9,0x1c,0x70,0xba,0x99,0x52,0x00,0x23,0x5b,0xc1,0xd9,0x6d,0x88,0xa0,0xb7,0x5b,0x6e,0x46,0xf4,}, + {0xd5,0xd9,0x71,0xd4,0x9a,0x71,0x20,0xcb,0x63,0x77,0x57,0x2b,0x5c,0x80,0x29,0x1c,0xae,0xab,0x04,0xa2,0xe0,0x2a,0xb5,0x11,0xae,0x87,0xce,0xa0,0x96,0x9b,0x72,0xa7,0x74,}, + {0xd4,0x30,0xc2,0xa6,0x19,0x8f,0xd0,0x39,0x24,0x8e,0x6e,0xa3,0x56,0x09,0xdf,0xbf,0xa9,0xca,0xe6,0x98,0xb3,0xb6,0xd1,0x0a,0xc9,0x6b,0xcf,0x95,0xa4,0x06,0x4e,0xc8,0xb3,}, + {0xd4,0x71,0xcb,0x56,0xa8,0x53,0x31,0xd8,0x87,0x72,0x47,0xdf,0x53,0x10,0xe4,0x82,0xa9,0xca,0xee,0xa5,0x10,0x65,0x08,0xe6,0x49,0x2d,0x53,0x11,0xd9,0x08,0x6a,0x37,0x5a,}, + {0xd4,0xa7,0x99,0x9e,0x58,0xb0,0xce,0xd6,0xa0,0x4d,0xa7,0xdc,0xbc,0xb0,0x49,0x12,0x49,0x37,0xd4,0x5f,0x2d,0xf5,0x64,0xaa,0x42,0xa2,0xbf,0x0c,0xe7,0x2c,0x92,0x46,0xa0,}, + {0xd4,0x5d,0xea,0x18,0x68,0xbc,0xca,0x9f,0x5f,0xb2,0xc5,0x99,0x5e,0xaa,0xd2,0x09,0xf5,0x46,0x94,0xd0,0x42,0xf5,0x34,0x92,0x31,0x29,0xa2,0x02,0x2d,0xf4,0x6a,0x44,0xa3,}, + {0xd7,0x98,0x92,0x5d,0x12,0xe6,0x41,0xfd,0x53,0x8a,0x37,0x19,0xd0,0x40,0xbc,0x13,0x4d,0xf0,0x93,0xde,0x01,0x0b,0x64,0x69,0x24,0x95,0xdc,0xc0,0xe7,0x4e,0x8e,0x3a,0xdb,}, + {0xd6,0x96,0x81,0xd8,0x19,0xb2,0x20,0xc5,0x56,0x92,0xdc,0xa4,0xc0,0x80,0xa6,0xf5,0x2f,0x49,0x2c,0x72,0xc0,0x28,0xe8,0xbd,0xb9,0xad,0xd8,0x20,0x5b,0x24,0x94,0xc3,0x1e,}, + {0xd4,0x16,0x71,0x59,0x11,0xee,0xa0,0x5d,0x2c,0x6d,0x46,0x66,0xb3,0x20,0x61,0x12,0xd6,0x37,0x14,0xbb,0x20,0xbb,0x5b,0x59,0xc7,0x23,0xd0,0xe0,0x38,0xed,0x5b,0x37,0xd5,}, + {0xd8,0x22,0xca,0x62,0x68,0xb7,0xef,0x49,0x2b,0x9c,0x5e,0x77,0x5e,0xaf,0x47,0xe5,0xbf,0xb9,0x5c,0x6c,0x0c,0x5d,0x7e,0x5a,0x15,0x14,0xc6,0x4b,0xa8,0xe3,0x6d,0x92,0x80,}, + {0xd2,0xde,0x93,0x26,0xd8,0x71,0x0f,0x32,0x4a,0x72,0x69,0x67,0x61,0x73,0xba,0x9f,0x6a,0xb6,0xe3,0xae,0xcc,0x4f,0x81,0x6d,0xd8,0xe5,0xb6,0x2e,0x59,0x2b,0x44,0x36,0xf4,}, + {0xd1,0x2a,0xa3,0xf5,0xd1,0x5e,0xe7,0xf9,0xbc,0x65,0x83,0xda,0xba,0xa6,0xf4,0xa2,0xd5,0x47,0x11,0xac,0xe6,0xa5,0xc2,0xaf,0xed,0xda,0xbf,0x45,0xa5,0xdc,0xc5,0xe9,0x73,}, + {0xd1,0xe7,0x84,0x36,0xd1,0x5f,0x26,0x26,0x14,0x8a,0x53,0x2c,0xbd,0x46,0x76,0xd9,0x2f,0x09,0x84,0x5f,0x29,0x49,0xab,0x70,0x3c,0x9b,0x5f,0xa9,0xb9,0x24,0x6e,0x43,0xb9,}, + {0xd5,0x67,0xa0,0xba,0x90,0x57,0x4d,0xdc,0x25,0x96,0xff,0x24,0x5d,0xb4,0x83,0x13,0x92,0x47,0x24,0x5c,0xf1,0xb6,0x0f,0x2f,0x47,0x25,0x5f,0x4f,0x47,0x59,0x47,0x0b,0x55,}, + {0xd4,0xeb,0x82,0x75,0x98,0xbf,0x0d,0x0f,0xab,0xe8,0x01,0x05,0x5f,0x0d,0xbb,0x1d,0xba,0x48,0x44,0xbe,0xcf,0x39,0x6b,0xbd,0xd8,0x18,0xc1,0x55,0xbe,0x6c,0x72,0x48,0xdb,}, + {0xd4,0xac,0xbb,0xa1,0xd8,0x63,0x10,0xb8,0x87,0x15,0x5c,0xa6,0xc1,0xb2,0x46,0xe2,0x51,0x73,0x32,0x5f,0x8c,0x45,0x29,0xee,0xa5,0x83,0xbd,0x30,0xba,0xe5,0x6a,0xa4,0x3a,}, + {0xd4,0xac,0xba,0xe9,0xa0,0xbd,0x6e,0x4a,0xe4,0xd2,0xb8,0x48,0xbd,0x70,0x55,0x64,0x72,0x5b,0x57,0xbf,0x8e,0x09,0x59,0x71,0x39,0x1b,0x5f,0x8d,0x0b,0x24,0x19,0xd8,0xeb,}, + {0xd4,0xad,0xba,0xad,0x60,0x5f,0x0f,0x49,0x13,0x44,0x76,0xe4,0xbf,0x2d,0xc7,0x6b,0x6d,0x03,0xcc,0xbf,0xee,0xc6,0xdc,0x6e,0x38,0xb7,0x5d,0x4f,0x8a,0xe4,0x6f,0xba,0xe3,}, + {0xd4,0xb1,0x9b,0x69,0xa1,0x5f,0xad,0x28,0x1a,0xce,0x4a,0xb2,0x5d,0x30,0x46,0x86,0x6a,0x49,0x1e,0xbf,0x2d,0xe6,0xd2,0x18,0xc9,0x24,0xbf,0xca,0x43,0x1c,0x10,0x50,0xec,}, + {0xd4,0xed,0xb2,0xed,0x30,0xbd,0xad,0xb7,0x16,0x56,0x28,0x34,0x5d,0x50,0xc9,0x24,0x96,0xb9,0x18,0xbf,0xcd,0x73,0xa9,0x91,0xd7,0x1d,0x5f,0xad,0xa5,0xc5,0x8e,0xb9,0x55,}, + {0xd4,0xed,0xb2,0xa9,0xe1,0x5f,0x8c,0x86,0xe3,0xe2,0x41,0x61,0x5f,0x2f,0xcd,0x2c,0x85,0x78,0xaa,0xba,0xf1,0xb7,0x6c,0x6d,0x0c,0xe2,0xbd,0x2f,0xe5,0x22,0xb2,0xa8,0xc4,}, + {0xd4,0xe5,0xc9,0xe1,0xe8,0x5a,0x8c,0x1b,0x24,0x96,0x7b,0x53,0x5f,0x8c,0xfd,0x4d,0xa6,0xb6,0xa3,0xbd,0x09,0x16,0x9f,0xaf,0x9d,0x34,0xbc,0xcc,0xd4,0xc8,0x32,0xc9,0x24,}, + {0xd2,0xdf,0xa9,0xea,0xb2,0xba,0x06,0x5f,0xe2,0x60,0x04,0x55,0xb6,0x23,0x29,0xd2,0xf6,0xe8,0xe1,0xda,0x22,0xfe,0xe3,0x72,0x36,0xe2,0xd6,0x61,0xbf,0x2c,0x92,0x46,0xdc,}, + {0xd8,0x17,0x7a,0x20,0xe9,0xa4,0xc0,0xbc,0xb0,0x8e,0x3b,0x0a,0xcc,0xa0,0x9b,0xaa,0xc9,0xa9,0x6d,0xbe,0xc0,0xb9,0x2e,0x6e,0x19,0x1b,0xec,0x00,0xd5,0x12,0x90,0xb4,0xd2,}, + {0xda,0x67,0x69,0x88,0x50,0x59,0x01,0x26,0xd2,0x4e,0x31,0x19,0x54,0xc1,0x47,0x6c,0x5e,0xb4,0x59,0x9f,0xa1,0xf4,0x94,0x31,0xcb,0x23,0x77,0x85,0xb9,0x25,0x51,0xd6,0xfa,}, + {0xdb,0x6a,0xd4,0xa0,0x9b,0x59,0xa7,0xc8,0xa4,0x3c,0xb6,0x5b,0x67,0x8a,0x05,0x19,0xae,0xa1,0xcc,0x62,0xed,0x35,0x1c,0x8c,0x4e,0x52,0x8f,0x4d,0xc4,0x13,0x60,0xd8,0x62,}, + {0xd9,0x5e,0xba,0x48,0x58,0x56,0x48,0x08,0xa0,0x76,0x23,0x46,0x90,0x4a,0x2a,0x2a,0x85,0xa5,0xa5,0xce,0x89,0x83,0xc9,0xb5,0x3d,0x9c,0xb6,0x23,0x5d,0x74,0xbf,0x69,0x64,}, + {0xd2,0x96,0x72,0x1d,0x9a,0x76,0x40,0xe9,0x34,0xbb,0xd4,0xd1,0xec,0x21,0x69,0x74,0x5a,0x17,0x1d,0xee,0x20,0x91,0x1d,0x6d,0xb6,0xdd,0x7c,0xa0,0x55,0x52,0xba,0x4a,0xac,}, + {0xda,0xe2,0xc3,0x4c,0x14,0xa7,0xcf,0xe2,0xad,0xb1,0xfa,0x63,0x62,0x8d,0x6e,0xbd,0x63,0x95,0x09,0x76,0xae,0xb6,0x6a,0x30,0xc8,0x48,0xb2,0xad,0x0b,0x2c,0x68,0xb8,0xe4,}, + {0xd7,0x99,0x8b,0x48,0xf9,0x9c,0x4c,0x95,0x42,0x2b,0x49,0x12,0xb8,0x65,0xf9,0x1a,0x4d,0x45,0x14,0x98,0x01,0xbd,0x1b,0xc1,0x97,0x2b,0xc6,0x21,0x08,0xd6,0xb6,0x47,0x1c,}, + {0xd6,0x9e,0xda,0xc8,0x08,0xee,0x02,0xb7,0x6d,0xa3,0x2b,0x55,0x5e,0xa0,0xad,0x25,0x35,0x55,0x16,0x7a,0xc0,0xb7,0xa4,0x91,0xd9,0x24,0x58,0x60,0x59,0x65,0xb6,0xdb,0x6c,}, + {0xd0,0x5f,0xa3,0x21,0x5a,0xb8,0x40,0x39,0x2b,0x92,0x57,0x24,0xe6,0x60,0x37,0x1b,0x8d,0xb7,0x1b,0xde,0x00,0x36,0xdb,0x6d,0xb6,0xe4,0xde,0x20,0x38,0xdb,0x71,0xc6,0xe4,}, + {0xd0,0x60,0xa3,0x21,0x5a,0xcc,0x00,0x49,0x24,0x72,0x48,0xe4,0x84,0x40,0x49,0x24,0x92,0x49,0x23,0xf0,0x00,0x48,0xe4,0x92,0x49,0x24,0x60,0x00,0x49,0x24,0x92,0x47,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x1a,0x66,0x00,0x49,0x24,0x92,0x49,0x24,0x88,0x00,0x49,0x23,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x47,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_sestnact[] = { + {0xd3,0xd4,0x51,0x55,0x13,0x50,0x60,0x49,0x64,0xae,0xd5,0xe2,0x55,0x20,0x49,0x9d,0x35,0xb9,0x24,0x8f,0x40,0x38,0x95,0x5e,0x3a,0xdd,0xb6,0xc0,0x39,0x69,0x12,0x8a,0xe3,}, + {0xd7,0xa7,0x41,0xd0,0x10,0x9f,0x20,0xdb,0x2c,0xd6,0x5d,0xa4,0x56,0xa1,0x5b,0xe5,0x8d,0xc4,0xd2,0x52,0xc1,0x45,0x69,0x4d,0xbb,0x46,0xb3,0xa1,0x83,0x42,0xe3,0xb3,0x94,}, + {0xd9,0x71,0xe1,0x25,0x08,0x55,0xa4,0xb7,0x13,0xfe,0xd0,0x9d,0x55,0x28,0x86,0xe8,0x47,0xc6,0x29,0x7b,0x49,0x26,0xe0,0x75,0x9b,0xa2,0xcb,0xea,0xa2,0xd4,0x11,0xfa,0x12,}, + {0xd9,0xf6,0xf8,0x98,0xd1,0x57,0x6e,0x37,0x55,0x16,0xb6,0x8a,0x5e,0xcd,0x53,0x1b,0x86,0x08,0xa3,0x6c,0xcd,0xa3,0x5c,0x54,0x83,0x6e,0xb3,0x4c,0x87,0xea,0x61,0xbc,0xea,}, + {0xda,0xae,0xfa,0x4d,0x11,0x6a,0xad,0x2a,0x1b,0x51,0x8a,0xe1,0x5d,0xcd,0x9a,0x8c,0x4d,0x51,0x46,0x81,0x4e,0xd8,0x46,0x52,0x46,0xa3,0xa9,0x4b,0x29,0xc2,0xa3,0x58,0xfa,}, + {0xda,0xae,0xfb,0x4d,0x48,0xc5,0x30,0x4c,0x62,0xa4,0xd5,0x05,0x67,0x11,0x13,0x98,0x91,0xc1,0x5b,0x72,0x8d,0x04,0x30,0x68,0xe1,0x24,0xe2,0xb0,0x66,0x5a,0xed,0x3a,0x63,}, + {0xdb,0xea,0xfc,0x59,0x50,0x7f,0x4d,0xc5,0x53,0x54,0x78,0x7a,0xde,0xee,0x28,0xc1,0xf5,0x66,0xf6,0x96,0xef,0xdb,0x87,0x7f,0xd8,0xbe,0x6d,0x2f,0xaf,0x6c,0xd7,0x3d,0x23,}, + {0xdb,0x2c,0xfa,0x8c,0x13,0x82,0x8f,0x7d,0x64,0xdc,0xc9,0x6a,0xe6,0xcd,0xe5,0xa3,0x19,0x72,0xb2,0x74,0x8d,0xda,0xeb,0x78,0x3f,0x1c,0x9e,0xcd,0xb8,0xe6,0x93,0xc3,0xbd,}, + {0xd7,0x1c,0x79,0xed,0xe1,0xd8,0xcb,0x5d,0x33,0xff,0x59,0x3e,0xec,0xc8,0xca,0xe5,0x5d,0x9d,0x6b,0xf1,0xd5,0xcb,0x24,0x8d,0x24,0x3d,0x55,0x52,0x16,0xf7,0x8e,0xb6,0x57,}, + {0xd6,0x9d,0x7a,0xed,0xb0,0x55,0x4f,0x59,0x1d,0xf6,0x66,0x40,0xab,0x50,0x95,0xac,0x9e,0xdb,0x00,0x55,0xd0,0x78,0x9b,0x71,0x3a,0xdd,0x55,0xcc,0x8c,0x86,0xa8,0xc9,0x83,}, + {0xd5,0x9e,0x92,0xf1,0xe8,0x55,0x70,0x8e,0x9d,0x6d,0x5a,0xdc,0xaa,0xb2,0x20,0x9c,0xb1,0xb9,0xa2,0xaa,0x92,0x44,0x22,0x92,0x49,0x2d,0xab,0x2f,0xb8,0x46,0x89,0xc9,0x1e,}, + {0xd5,0x21,0x83,0x2a,0x68,0x55,0xec,0x1b,0x27,0x32,0x46,0xe0,0xa9,0x6a,0xa5,0x48,0xe9,0x5a,0xdf,0xab,0x2a,0xa6,0xa8,0x19,0x9b,0x5c,0xab,0x2c,0x67,0x1c,0x06,0x27,0x6b,}, + {0xd3,0xdb,0xab,0x2d,0xd8,0xa9,0x2a,0x3f,0x0c,0x47,0x37,0x6a,0xa2,0xe9,0xf8,0x56,0x05,0xd8,0xf2,0xa6,0xc9,0x5e,0x54,0x86,0x05,0x24,0xaa,0xc8,0x4f,0x0d,0x82,0x30,0x95,}, + {0xd9,0x61,0x89,0x94,0xa2,0xaf,0x6a,0xbd,0xa3,0x74,0x85,0x0d,0x56,0xa8,0x05,0xff,0xcc,0xa9,0x03,0xb5,0x6d,0x4a,0xdb,0x83,0x51,0x72,0x55,0x6e,0xd4,0xea,0x92,0x0e,0xea,}, + {0xda,0xed,0xcb,0xb1,0x6a,0x58,0xea,0xee,0x6a,0xed,0xc7,0x98,0x7d,0x0e,0xbe,0xe2,0x56,0x48,0xe4,0xd8,0xcd,0x76,0x65,0x5d,0xcd,0x64,0x8f,0x4d,0x3f,0xcc,0x3f,0x0f,0x21,}, + {0xda,0xa8,0xb3,0xf9,0x6b,0x68,0xaf,0x71,0x24,0xcd,0x3c,0xad,0x64,0xcd,0x1a,0xef,0x6e,0x3b,0x9e,0xc6,0x8d,0x93,0xab,0x29,0xf8,0xf8,0x54,0xcf,0xd8,0x5f,0x2e,0x38,0xe2,}, + {0xda,0xea,0xc4,0xb1,0xec,0xbf,0x4c,0x33,0xd0,0x68,0x33,0x98,0xb8,0xab,0x56,0xd0,0x1f,0x61,0xcb,0x5a,0xaf,0xc6,0xd4,0x4b,0x05,0x91,0x56,0xad,0xd6,0xaa,0x7c,0x68,0x2d,}, + {0xd9,0x6b,0xe4,0x6d,0xab,0x98,0x8d,0x35,0x1b,0x4d,0x77,0x25,0x96,0xad,0x2d,0x44,0x5b,0x36,0x99,0xde,0xee,0x6c,0xcb,0x66,0x50,0xa5,0x7a,0xcb,0x40,0xd3,0xae,0xb5,0x02,}, + {0xd9,0x6a,0x9b,0x2d,0x58,0x7e,0x89,0x74,0x12,0xad,0x19,0x23,0x82,0x02,0x24,0x82,0x4e,0x04,0xd2,0xea,0x22,0x94,0x88,0x20,0x10,0xc8,0xec,0x62,0xa0,0x5a,0x49,0x12,0x4a,}, + {0xd7,0xa1,0xaa,0xb1,0xa1,0x92,0xc1,0x80,0xc1,0x09,0xb4,0x12,0xac,0xe1,0x24,0xed,0x6e,0x95,0x1e,0x97,0x42,0xd7,0x9f,0x55,0xf3,0x9c,0xed,0xcc,0xc9,0x5c,0x89,0xb7,0xd0,}, + {0xd5,0xe3,0x6a,0xa7,0x5a,0x6a,0x8d,0x50,0xea,0x6d,0xb6,0xdb,0x62,0x26,0xa2,0x28,0x8e,0x57,0x9a,0xd8,0xaf,0xb8,0xca,0x19,0xc9,0x74,0x5f,0xce,0xd7,0x67,0x44,0xf5,0x2b,}, + {0xd4,0xdf,0x72,0xa2,0xd9,0x60,0xf1,0xb8,0xed,0x8d,0x45,0xd4,0xbc,0xd0,0x54,0xec,0x9a,0xa3,0x02,0xbf,0x2e,0x76,0x74,0x77,0xc5,0x20,0x66,0x2d,0x02,0xd5,0xb2,0xed,0xac,}, + {0xd0,0xec,0x94,0x76,0x09,0xc4,0x4f,0xa2,0x12,0x72,0x49,0x24,0x5c,0x08,0xb8,0x5a,0x3e,0x2c,0x95,0xba,0x29,0xc9,0x22,0x84,0xf8,0xb2,0x5f,0x03,0x6d,0x3e,0x49,0x12,0xfa,}, + {0xd1,0xa9,0x8b,0xfa,0x59,0xbf,0x46,0x53,0x6c,0xf2,0x44,0xc8,0xc1,0x05,0xf6,0x6b,0x17,0x7d,0x5c,0x5d,0x45,0x81,0xd3,0xc5,0xd7,0xba,0x5f,0xc6,0x28,0x36,0x35,0x49,0x26,}, + {0xd4,0xe9,0x61,0xb6,0x80,0x71,0xed,0x46,0x90,0x09,0xe8,0xed,0x55,0xf1,0x48,0xe5,0x96,0x81,0x9a,0x62,0xb2,0x5b,0x23,0x96,0xb6,0xc2,0xae,0x91,0x78,0x6d,0x71,0xec,0xac,}, + {0xd5,0x2a,0x79,0x3d,0xc0,0xbe,0x92,0x05,0x22,0xb2,0x47,0x6c,0xbf,0x0f,0xd6,0x4a,0xe3,0x47,0x5d,0xbd,0x2f,0x4a,0xd4,0x03,0xb7,0x2b,0xbe,0xd0,0x3b,0x63,0x6c,0x1e,0xa4,}, + {0xd4,0xea,0xc3,0x29,0x60,0xc1,0xd4,0x46,0xe5,0x51,0xb6,0x9f,0xdc,0xb0,0x0d,0xae,0x7b,0xda,0xc8,0x61,0x31,0x83,0x9b,0xd1,0xdb,0x2b,0xc1,0x30,0xc6,0x06,0x2e,0x67,0x2d,}, + {0xd4,0x6d,0xab,0x25,0xd8,0xbf,0xd2,0x55,0x22,0x98,0x48,0xd5,0x5d,0x2e,0xa9,0x22,0xc1,0x9e,0xa3,0xbd,0x4c,0x59,0x2a,0x4e,0x86,0x39,0xbc,0xd0,0x59,0x24,0xd6,0xb7,0x00,}, + {0xd4,0xad,0xb3,0x2d,0xa0,0x5f,0xee,0x48,0xe4,0x6d,0x57,0x57,0x61,0xd0,0x21,0x05,0x6e,0x49,0x5c,0x5f,0xee,0xc1,0x29,0xca,0x38,0xe2,0x5f,0xab,0x56,0xa4,0x90,0x71,0x62,}, + {0xd4,0xb1,0x93,0x2d,0x60,0x5f,0x2d,0xd7,0xdd,0x6c,0x85,0x9b,0xbf,0x53,0xc7,0x1c,0x8e,0x44,0xdf,0xbd,0x0f,0x86,0xec,0x72,0x46,0xe2,0x5d,0x4f,0x8e,0xdc,0x71,0xcb,0x2b,}, + {0xd4,0xed,0xba,0x6d,0x61,0xbf,0x6f,0xa4,0x3b,0x72,0x39,0x2c,0xbf,0xef,0xd6,0xd8,0x71,0x4b,0x1c,0x63,0xaf,0xe8,0xda,0x88,0xfc,0x34,0x5d,0xad,0x2a,0x1f,0x79,0xcc,0x1e,}, + {0xd4,0xed,0xab,0x2d,0x68,0x5f,0x30,0x4a,0xe4,0xb6,0xc7,0x10,0x5f,0x90,0x0c,0xe2,0xb1,0xb8,0xe3,0xbd,0xcc,0x40,0xa5,0x4f,0x39,0x15,0xbd,0xd0,0x46,0xe6,0x19,0xc7,0x13,}, + {0xd4,0xea,0xc2,0x9a,0x60,0x5f,0x2d,0xbe,0x74,0x62,0xe8,0xa2,0xbc,0x8f,0xb8,0xac,0x8e,0x21,0xe3,0xbd,0x2c,0x46,0xe9,0xcf,0x0a,0xc4,0xb8,0xab,0x57,0x9e,0x97,0x7c,0xd8,}, + {0xd4,0x27,0xb9,0x5e,0x98,0xbd,0x29,0x93,0xe5,0x32,0xc8,0x61,0xbc,0xa8,0x30,0x5f,0x99,0xb7,0x64,0xb8,0x27,0xc4,0x81,0x0a,0x3b,0x24,0xb8,0x63,0x5f,0xf2,0x68,0x34,0x9b,}, + {0xd4,0x58,0xa1,0x99,0xf2,0xc2,0x21,0xdb,0x66,0xfe,0x2b,0x3a,0xdc,0x21,0x6d,0xac,0x72,0x46,0x70,0xd0,0x61,0x3c,0xec,0x92,0x46,0xd4,0xb8,0xc0,0xc8,0xf0,0x76,0x39,0x11,}, + {0xd7,0xd1,0x91,0xd8,0x9a,0xe6,0xa0,0xbb,0x62,0xc1,0x39,0x6b,0xaa,0xc0,0xb2,0xe1,0x6d,0xa4,0xa4,0xaa,0x80,0xb6,0x93,0x85,0xc4,0xdb,0xea,0xc0,0xb6,0xad,0x89,0x33,0x9a,}, + {0xdb,0xee,0xc2,0xd9,0x11,0xf1,0xc4,0x36,0xdb,0x4d,0x32,0x90,0x50,0xe7,0xa4,0x58,0x8c,0x54,0x9c,0x6b,0x68,0xb8,0xd5,0x3c,0xb5,0x8e,0x71,0xca,0x43,0x4f,0xa2,0xc5,0x26,}, + {0xdb,0x6a,0xcc,0xe0,0xa2,0x9d,0x8a,0x89,0x92,0xeb,0xa3,0xd4,0x81,0x6b,0xc4,0xe3,0xa4,0xbe,0x49,0xbf,0x2e,0x48,0x0b,0x80,0xc8,0x93,0xa6,0xcc,0x98,0xa1,0x4d,0xa2,0x85,}, + {0xd7,0x9d,0xb1,0xc8,0xd0,0xbe,0xcc,0x86,0x21,0x66,0x27,0x65,0xe2,0x08,0x03,0x5a,0x94,0xbf,0x9c,0x58,0x22,0x6f,0xb4,0xdb,0x68,0x93,0x76,0x41,0x69,0x2d,0xb7,0x7d,0x12,}, + {0xd3,0x56,0x71,0x59,0x62,0xc8,0x00,0xab,0x6e,0x91,0xa7,0x16,0xb8,0x20,0x93,0x2d,0x8d,0xb7,0x1c,0xee,0x20,0x42,0xda,0x76,0x38,0xa4,0xd0,0x80,0x47,0x39,0x6e,0x5b,0x1b,}, + {0xdb,0x21,0xaa,0xd0,0x5b,0x59,0xf1,0xc9,0x48,0xb2,0xc9,0xdb,0x62,0xd0,0x45,0xe3,0xd1,0xba,0x93,0x8c,0x2d,0x10,0xb6,0x30,0x99,0x23,0xee,0x4e,0x15,0x01,0x27,0x38,0xc9,}, + {0xd8,0x9b,0x7c,0x48,0x29,0xbe,0x26,0xbf,0x18,0x52,0x36,0xda,0xb8,0x02,0x2f,0x10,0xae,0x6d,0x61,0xf0,0x41,0xee,0xbe,0xbc,0xd4,0xf7,0xa0,0xe2,0xb9,0xad,0x18,0xe8,0xeb,}, + {0xd8,0x5b,0xab,0x10,0x81,0xe8,0x01,0x67,0x6a,0xa2,0x5d,0x92,0x9e,0x41,0x1c,0xed,0x96,0x46,0xe2,0xd0,0x01,0x3b,0xaa,0xf5,0x58,0xec,0x50,0x40,0x69,0x6c,0xba,0xdb,0x6d,}, + {0xd0,0x60,0xa2,0xe1,0x5a,0xa8,0x20,0x49,0x24,0x8e,0x56,0xe3,0xf0,0x00,0x46,0xdc,0x4e,0x37,0x1b,0xe4,0x20,0x36,0xdb,0x6d,0xb6,0xe4,0xda,0x00,0x39,0x1b,0x71,0xc9,0x24,}, + {0xd0,0x5f,0xaa,0xe1,0x5a,0x6c,0x40,0x49,0x24,0x92,0x49,0x23,0x94,0x00,0x49,0x1c,0x92,0x49,0x24,0x6a,0x00,0x49,0x24,0x92,0x49,0x24,0x5e,0x00,0x47,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x48,0xe4,0x92,0x49,0x24,0x76,0x00,0x49,0x24,0x92,0x49,0x24,0x5a,0x00,0x49,0x24,0x92,0x47,0x24,}, + {0xda,0x64,0xaa,0x9c,0xd1,0x6f,0xc4,0x75,0x1c,0x92,0x49,0x24,0x52,0x40,0xdd,0x75,0xb6,0xdb,0x6d,0xa2,0x20,0xdb,0xad,0xb6,0xdb,0x6d,0xec,0x60,0xeb,0xad,0xb6,0xdb,0x6d,}, +}; +static const gsm_frame gsm_data_sedmnact[] = { + {0xd2,0x18,0x7b,0x65,0xa1,0x50,0x40,0x4b,0x75,0xba,0xfd,0xe6,0x53,0xe0,0x46,0x9b,0x49,0x94,0x60,0x84,0xe0,0x46,0x9b,0x11,0xb2,0x90,0x58,0xe0,0x24,0x91,0x89,0xb2,0x1d,}, + {0xd8,0x1b,0x58,0xc8,0xc8,0x51,0xc1,0x24,0x91,0x6d,0x90,0x15,0x50,0xa2,0x84,0xdd,0x1b,0x10,0xfe,0x69,0x62,0x2b,0x72,0xba,0xce,0x86,0xa7,0xa6,0x69,0x5d,0xc9,0xca,0x7c,}, + {0xd9,0xe8,0xeb,0xed,0x59,0x65,0xc7,0x37,0x0d,0x6f,0x07,0x3a,0x51,0xeb,0x5b,0x3b,0x96,0xdb,0x23,0x7f,0x0b,0x69,0x72,0x95,0xca,0xbb,0x71,0x0c,0x4a,0xd5,0xc7,0xa9,0x3a,}, + {0xda,0x66,0xf3,0x65,0xac,0x75,0x4c,0xf4,0xdc,0xd3,0x68,0xe7,0x5b,0x4a,0x8e,0xd3,0xaf,0x09,0xb3,0x63,0x0e,0xad,0x60,0x7a,0x59,0x5b,0x62,0xee,0xf7,0x2a,0xba,0xb5,0x1e,}, + {0xdb,0x68,0xc4,0x69,0x62,0xa3,0x2f,0x3c,0x3f,0x56,0xb9,0x2b,0x8a,0xf0,0x3b,0x05,0x98,0xcb,0x01,0xdd,0x52,0x5e,0x16,0xa9,0xba,0xdb,0x76,0xcf,0xb7,0x2a,0xd0,0x4e,0x1c,}, + {0xdb,0x65,0xf4,0xa8,0xea,0xb2,0x8d,0xd9,0x20,0xa6,0x38,0xe3,0x86,0xce,0x26,0xb9,0x54,0xd8,0x22,0xe2,0xaf,0xd7,0x21,0x9d,0x8d,0xa3,0x94,0xcd,0x77,0x87,0x8e,0x2e,0x9d,}, + {0xdb,0x67,0xc4,0xad,0x6a,0xcf,0x51,0xb7,0x1b,0xb6,0x18,0xfa,0xd4,0xf1,0x28,0xe2,0x6e,0x89,0x8d,0x80,0x8f,0x89,0x1f,0x69,0x47,0x29,0x76,0xce,0x9a,0xeb,0x55,0x80,0xe9,}, + {0xd9,0xa3,0xaa,0x0c,0xda,0xb2,0x6c,0xb1,0xa1,0x92,0x44,0xe9,0x8c,0x29,0xc3,0x2f,0xa9,0xa9,0x2b,0xd2,0x2c,0x2f,0x1b,0x8a,0x59,0x13,0xca,0xab,0xb8,0x93,0xba,0x5d,0xfc,}, + {0xd4,0xe3,0x7a,0xab,0x50,0x59,0xf4,0xb4,0x89,0x57,0xeb,0x23,0x50,0xd4,0xb4,0x5f,0xad,0xb9,0x24,0x57,0x31,0xb6,0xd2,0xe6,0x38,0xdd,0xad,0xb1,0xc4,0xeb,0x5c,0x37,0x1a,}, + {0xd5,0x25,0x9a,0x6e,0x98,0x59,0x51,0xc9,0x5a,0x2b,0xc3,0x25,0x57,0xaf,0x37,0xb3,0x60,0xe3,0x25,0x57,0xf1,0x49,0x9b,0x6a,0xd0,0x6f,0x61,0x51,0x43,0x34,0x4c,0xa9,0x03,}, + {0xd6,0x1f,0x81,0x1e,0x78,0xbc,0xce,0x3f,0x0d,0xfa,0x34,0x59,0xc1,0x14,0x43,0xea,0x6e,0xc7,0x1b,0x61,0x0e,0xb5,0x18,0xf1,0xe4,0xdd,0xc4,0x8c,0xd8,0x83,0x63,0x03,0x76,}, + {0xd1,0x9c,0xd3,0xb6,0xe8,0xc0,0x6a,0xfb,0x1b,0x48,0xa3,0x2c,0xdc,0x45,0xd7,0x62,0x89,0x30,0x95,0xb0,0x46,0xf6,0x95,0xac,0xca,0xcc,0xc4,0x45,0x2b,0xe2,0x97,0x46,0x9c,}, + {0xd0,0xa9,0xcb,0xfa,0x60,0x64,0xc2,0xa4,0xc8,0xbd,0xbb,0xaa,0xc4,0xc1,0xdc,0xd5,0x67,0x78,0xe1,0x62,0xc2,0x34,0x5c,0x66,0x33,0xbb,0xc0,0xe2,0x35,0x90,0x76,0x26,0xd4,}, + {0xda,0x94,0x72,0x8e,0x64,0x7b,0xcd,0xc9,0x2e,0xff,0x44,0x49,0x61,0xf5,0x36,0xe4,0x92,0x0e,0x9e,0x50,0xb3,0xa1,0x50,0xb2,0x58,0xed,0x96,0xd2,0x58,0xc9,0x01,0x6f,0x15,}, + {0xd4,0x9c,0x8a,0x22,0xf8,0x58,0xf4,0x4b,0x64,0x49,0x21,0xa4,0x60,0x0d,0x0f,0x6e,0xd2,0xa0,0x81,0xb8,0xb1,0xf6,0x9b,0xb6,0x49,0x72,0xc4,0x2e,0xc0,0x78,0x72,0x3d,0xb7,}, + {0xd1,0x68,0xca,0xee,0x29,0x56,0xee,0xc4,0x02,0x2d,0xc9,0x24,0xb6,0x09,0xe7,0x8a,0x23,0x3a,0x62,0xc0,0x09,0xeb,0x6a,0xc5,0x81,0xdd,0x61,0x45,0xa7,0x2c,0xf2,0x94,0x87,}, + {0xd1,0x68,0xbb,0x2a,0x69,0xcc,0xc8,0xb8,0x9c,0xf6,0xd7,0x00,0xc1,0x86,0x77,0x24,0x51,0xb8,0xe3,0x61,0x26,0x14,0x06,0x51,0xb7,0x2d,0x63,0x83,0xf1,0x84,0xc6,0xac,0xe2,}, + {0xd0,0xea,0xbb,0xea,0x69,0xc3,0x27,0x59,0x2b,0xa6,0x15,0xe4,0xc3,0x25,0x22,0xb3,0xad,0xc1,0x14,0xc3,0x43,0x79,0x10,0xd6,0xf5,0x43,0xc3,0x27,0xa7,0xb9,0x51,0x5c,0x6c,}, + {0xd2,0xe2,0xa9,0x2e,0xa8,0x69,0xcd,0xc7,0x18,0x9c,0xab,0x2c,0x61,0xac,0x49,0xdd,0x0b,0x09,0x1c,0x61,0x6b,0x4b,0x66,0x52,0x16,0x3c,0x65,0xab,0x2b,0x6c,0x8a,0x8a,0x1a,}, + {0xd4,0x1f,0x92,0x22,0x68,0x61,0x4b,0x8e,0xce,0x97,0x6b,0x9d,0xc3,0x2d,0x84,0x07,0x6e,0xbd,0xda,0x61,0x0d,0x6c,0x66,0x0f,0xc1,0xe1,0x68,0xed,0x79,0x24,0x00,0x58,0x6e,}, + {0xd1,0x2a,0xa3,0xf2,0x59,0xb6,0x4a,0xdf,0xf6,0xd1,0x10,0xe2,0xc8,0x49,0x44,0xec,0xb1,0xd4,0x88,0x92,0x27,0xf8,0x3a,0x3e,0xed,0x71,0x63,0x66,0x91,0xe2,0xc9,0xd7,0xe4,}, + {0xd1,0xa9,0x93,0x76,0x19,0x61,0x24,0xd6,0x88,0x51,0x4c,0x6e,0xc3,0x26,0xe9,0x2b,0x48,0x18,0xe6,0xc3,0xa4,0x57,0x5b,0xc9,0x50,0xf8,0x61,0xc4,0xd4,0x6c,0x57,0x09,0x4f,}, + {0xd4,0xe8,0x69,0xae,0x88,0x61,0xa9,0x20,0x9d,0xfa,0xed,0xfd,0x59,0xf0,0x90,0xe2,0x95,0x47,0x13,0x6d,0x71,0xc4,0xa4,0x2f,0xa9,0x5d,0x61,0x2f,0xab,0x67,0x4a,0x13,0x31,}, + {0xd5,0x69,0x90,0x7e,0x48,0x5e,0xf0,0xe7,0x25,0xb5,0xc6,0x09,0xc1,0x0d,0x62,0xac,0x72,0x7c,0xbb,0x61,0x4e,0x03,0xcc,0xb5,0xcb,0x1e,0x61,0x4e,0xc7,0x09,0xc3,0xa9,0x55,}, + {0xd4,0xeb,0xb2,0xe9,0xa8,0xc5,0xd4,0x45,0x53,0x69,0xf5,0x5b,0x63,0x32,0xe9,0x2d,0x75,0xb8,0x1c,0x61,0x50,0x2c,0xa4,0x96,0xc7,0x08,0xc5,0x6e,0xe0,0xe4,0x8f,0x67,0xc9,}, + {0xd4,0xeb,0xab,0x2d,0xa0,0x61,0x8d,0x58,0xc5,0xc7,0x51,0x53,0xc1,0x8e,0xc5,0x29,0x94,0x75,0x22,0xc1,0x50,0x4b,0x22,0x85,0x1e,0x6b,0xc1,0xb2,0xc8,0xe4,0x71,0xc9,0x07,}, + {0xd4,0xec,0xa2,0xf1,0x60,0x63,0x10,0x7b,0x1c,0x92,0x57,0x19,0x63,0x30,0x9e,0x2a,0x91,0xd9,0x22,0xc3,0xce,0x2b,0x68,0x6d,0xd4,0xe2,0xc1,0x31,0x48,0xe3,0x27,0x9b,0x24,}, + {0xd4,0xf0,0x83,0xa9,0xa0,0xc1,0x6f,0xca,0xea,0x6c,0x1e,0x9d,0xc1,0xe8,0xb5,0x21,0x31,0xb8,0xc0,0x58,0xcd,0x8b,0x73,0xbb,0xe7,0x58,0xc1,0x2f,0x1e,0x2b,0x75,0xd9,0x64,}, + {0xd5,0x2a,0xc2,0x69,0x69,0xc1,0x50,0xb4,0x87,0x2e,0xb9,0x25,0x61,0xaf,0x4a,0xe4,0x32,0x8c,0xd6,0x63,0x50,0xd9,0x64,0x70,0x93,0xcc,0xc3,0x51,0xc7,0x24,0xae,0x36,0x4f,}, + {0xd5,0x2d,0xa3,0x2a,0x21,0x6e,0xd2,0x29,0xa4,0x96,0xe6,0xd8,0x61,0x71,0x8a,0xa3,0xb1,0xdb,0x2b,0xc1,0xcf,0xb7,0x1b,0x19,0x49,0x53,0xc1,0x2f,0xbe,0xec,0x65,0xea,0xa2,}, + {0xd4,0xea,0xe1,0xe5,0xe0,0xc0,0xf0,0x37,0x6c,0x8d,0x0d,0x1c,0x63,0xee,0x29,0x63,0x6a,0x2a,0xef,0xca,0xec,0x29,0x5c,0xba,0xf8,0x81,0x61,0x6d,0x09,0x64,0x92,0x4b,0x6c,}, + {0xd3,0xe5,0xd8,0xe5,0xa0,0xc0,0xcd,0xb6,0x46,0x92,0xb7,0x24,0xc0,0xa8,0x57,0x05,0x0a,0xd9,0x9a,0xbc,0x28,0x3d,0x34,0x68,0xa0,0xe3,0xe8,0x23,0xed,0xd5,0x92,0xd6,0x92,}, + {0xd6,0x5a,0xa9,0x84,0xa1,0xee,0x22,0xb7,0x2d,0xfd,0x46,0xe3,0xca,0x41,0x77,0x5e,0x9a,0xc6,0xdb,0xe4,0x41,0x21,0x6d,0x70,0xab,0x64,0x5c,0xe0,0xb4,0xde,0xee,0x54,0x8d,}, + {0xd6,0x17,0x69,0x11,0x22,0x54,0x80,0xbd,0xac,0x4a,0x64,0xa2,0xe8,0xe0,0xc7,0x1b,0x71,0x48,0x5b,0xb6,0xe0,0xd4,0x94,0x4d,0xb9,0x11,0xde,0xc0,0x64,0x1b,0x5a,0xc5,0xf1,}, + {0xdb,0x6b,0xcc,0xa4,0x91,0x7d,0xe3,0xb6,0xdb,0x6d,0x10,0x8a,0x51,0x28,0xa6,0x92,0x91,0x41,0x53,0x53,0x26,0xa0,0xe3,0x45,0xb2,0x7e,0xaf,0xcc,0x3a,0xd7,0x36,0x99,0xa2,}, + {0xdb,0xa6,0xd4,0x5c,0x9a,0x5b,0x0b,0xe6,0x26,0x51,0xb7,0x1a,0x84,0xad,0x93,0x9a,0x51,0x93,0x60,0x96,0xca,0x1b,0x05,0x49,0x28,0x15,0xb6,0xaf,0xb6,0x9b,0x4c,0xc1,0x03,}, + {0xd7,0x5c,0xb1,0xcc,0x90,0x50,0x0c,0x02,0x04,0x34,0x0a,0xd4,0x72,0x47,0x19,0xfc,0x92,0xd9,0x5d,0x6e,0x41,0xef,0xe3,0x71,0xcb,0x6c,0x96,0x21,0x59,0xbd,0x48,0xbb,0x6c,}, + {0xda,0xe6,0xa3,0x58,0x13,0xe4,0x41,0x27,0x26,0xae,0x49,0x25,0xee,0xe1,0x5d,0x76,0xd6,0xe9,0x26,0x73,0xb0,0x47,0x24,0x8e,0x3e,0xc6,0x52,0xf2,0x67,0x7b,0x75,0x6a,0xec,}, + {0xd8,0x61,0xd1,0xc8,0x2c,0x76,0x2e,0x31,0xd3,0x85,0xa6,0xd5,0x70,0x2c,0x15,0x13,0xa4,0x81,0x55,0xda,0x48,0x22,0xc2,0x71,0xa0,0x73,0xea,0x8c,0x01,0xe2,0xa9,0xc8,0xdb,}, + {0xd7,0xdf,0xdc,0x54,0x09,0x82,0x02,0x32,0x8c,0x71,0x6e,0x9c,0xd2,0x22,0x19,0x6c,0x89,0x7b,0x2e,0xf0,0x02,0xf2,0xde,0x92,0xc9,0x64,0x82,0x21,0x52,0xfe,0xc9,0x35,0x64,}, + {0xd5,0x99,0x72,0x8c,0x49,0xc0,0xe0,0xc8,0xa0,0xcd,0xa9,0xa2,0xea,0x41,0x68,0xab,0x71,0xb9,0x23,0xaa,0x20,0x49,0x24,0x92,0x49,0x24,0xe8,0x60,0x39,0x24,0x91,0xc9,0x23,}, + {0xd0,0x5f,0xaa,0xe1,0x59,0xc0,0x00,0x47,0x24,0x92,0x49,0x24,0xa2,0x60,0x46,0xe4,0x72,0x38,0xdb,0xe8,0x20,0x37,0x23,0x91,0xc6,0xdc,0x7e,0x20,0x49,0x24,0x92,0x49,0x23,}, + {0xd0,0x5f,0xa2,0xe1,0x22,0xb2,0x00,0x49,0x24,0x92,0x49,0x24,0x7a,0x00,0x49,0x24,0x92,0x47,0x24,0xcc,0x00,0x49,0x24,0x92,0x49,0x24,0x5c,0x00,0x49,0x24,0x92,0x39,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x22,0x60,0x00,0x49,0x24,0x92,0x49,0x24,0x56,0x00,0x49,0x24,0x92,0x39,0x24,0x62,0x00,0x49,0x24,0x92,0x49,0x24,0x7e,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_osmnact[] = { + {0xd4,0xd6,0x71,0x9c,0xda,0x50,0x20,0x26,0x93,0x4d,0xb0,0x94,0x62,0x80,0xcb,0x34,0x89,0xb9,0x1d,0x70,0xc0,0xd6,0xd3,0x90,0xa5,0x23,0x62,0xa0,0x68,0x92,0x16,0x0b,0x23,}, + {0xd4,0xdd,0xfb,0x04,0xbc,0x95,0x40,0xc8,0x9a,0x69,0xa6,0x8b,0x57,0x80,0x94,0x93,0x4d,0xc6,0x9d,0x57,0xe9,0xb8,0xdb,0x6e,0x37,0x27,0x57,0xab,0x72,0x7c,0x4e,0x39,0x24,}, + {0xd3,0xa3,0xfa,0xcd,0xb2,0x6e,0xee,0xc9,0x1a,0x41,0xf4,0xa4,0x53,0xae,0xdb,0x5d,0x86,0x0e,0xd5,0x56,0xce,0x37,0xa4,0xad,0x03,0xd9,0xb0,0xef,0xd7,0x24,0xac,0xa1,0xe0,}, + {0xd3,0xef,0xd0,0x8e,0x61,0xc0,0xcc,0x49,0x3c,0x76,0x36,0x48,0xb8,0x0b,0x2f,0x1d,0x72,0x4b,0x2c,0xc4,0x2c,0xa2,0x35,0x91,0xc9,0x6c,0x61,0x47,0xb8,0x61,0x11,0xd7,0x9c,}, + {0xd3,0x29,0xb8,0x95,0xb0,0xc0,0x88,0xd7,0xdc,0x30,0x1e,0xa5,0xbe,0xc6,0xd9,0x5e,0x89,0x50,0x6b,0xb6,0xa7,0x59,0x96,0xb5,0x3a,0x19,0x68,0xa7,0xcb,0x2d,0xb2,0xba,0x30,}, + {0xd7,0xd9,0x92,0x14,0x63,0xbc,0xab,0x28,0xdb,0xaa,0x7d,0x19,0x58,0xca,0xb2,0x1b,0x58,0xc1,0xd6,0x6c,0xcb,0x83,0x4a,0xa9,0xd2,0xe2,0x87,0x2c,0xc6,0xa3,0x29,0xc4,0x9f,}, + {0xdb,0x2a,0xab,0x14,0x50,0xe9,0x4f,0x98,0xea,0x52,0x84,0xd3,0x83,0x0d,0x9e,0x84,0x89,0xb6,0xea,0x7b,0x4f,0x1b,0x1c,0x95,0x5a,0xbb,0xcd,0x4e,0xcb,0xaa,0xdc,0xfb,0x34,}, + {0xda,0xac,0xaa,0xdc,0x58,0x60,0xb0,0xba,0xeb,0xad,0xf6,0xed,0x53,0x0d,0x1e,0xfb,0x3b,0x9e,0xec,0x5b,0x2e,0xd7,0xc7,0x6f,0x3a,0x7a,0x72,0xce,0xbb,0x6c,0x95,0xf7,0x35,}, + {0xda,0x69,0x9a,0x10,0x50,0xc6,0xed,0xe7,0x1f,0x5a,0x38,0xed,0x73,0x4e,0xa7,0x1c,0x19,0x62,0xe9,0x6a,0xac,0x66,0xf5,0x4f,0x47,0x38,0xb2,0xa9,0xdd,0x34,0x52,0xc3,0xe9,}, + {0xdb,0x28,0x99,0xe0,0x90,0xf0,0xcc,0xe8,0x6d,0x92,0x2b,0x5f,0xaa,0xc9,0x1e,0x6d,0x5b,0x9c,0xd4,0xb2,0x88,0x3a,0xb8,0xb6,0x27,0x2a,0xcc,0x6a,0x3b,0x14,0x71,0xc0,0xb6,}, + {0xd0,0xaa,0xd4,0x31,0xe2,0x50,0x91,0x49,0x6d,0x88,0x80,0x5b,0x52,0x27,0xc8,0xa4,0x75,0xd7,0x1f,0xb4,0x63,0xf4,0x0d,0x96,0xdc,0x98,0xe2,0x08,0x23,0xe5,0xae,0x5d,0x64,}, + {0xd0,0xed,0xbb,0x69,0x9a,0x5e,0xc5,0x10,0x5f,0x76,0x1b,0x6d,0xbe,0xe4,0xc8,0x50,0x3c,0xda,0xe5,0x61,0x63,0xdb,0x63,0x64,0x8e,0xa4,0x63,0x64,0x2b,0x2d,0x91,0xb2,0x97,}, + {0xd0,0xeb,0xd3,0xad,0x9b,0xb9,0x05,0x07,0xa0,0x73,0x6d,0x64,0x61,0x26,0x35,0xcc,0x89,0xcb,0x2c,0x61,0x23,0xb6,0x0a,0xed,0xd5,0x65,0xc3,0x23,0xd9,0x13,0x06,0xba,0xe3,}, + {0xd3,0x5d,0x7b,0x26,0x61,0xc7,0xcd,0xc9,0x23,0x6e,0x04,0xd3,0x63,0xae,0xf8,0xf5,0x4f,0xd2,0x78,0x55,0x71,0xf2,0xaa,0x72,0x3b,0x63,0x5a,0x2c,0x00,0xa3,0xd2,0x6b,0x75,}, + {0xd1,0xa7,0xab,0x6d,0xe1,0xc8,0x4e,0x24,0x43,0x8e,0x49,0x25,0xc2,0x4b,0x4b,0x13,0x23,0x37,0x93,0xc0,0xa7,0xd7,0xa3,0xa9,0x91,0xe9,0xc3,0x06,0xd2,0xab,0xb2,0x62,0xd0,}, + {0xd2,0x27,0x83,0x7a,0x59,0xc3,0x04,0x78,0xb3,0x76,0x7b,0x69,0x61,0x05,0x90,0x58,0x74,0xdb,0x7e,0xc1,0x46,0x54,0x80,0xa1,0xd3,0x6c,0x61,0xc6,0x3c,0xa5,0x1b,0x27,0x23,}, + {0xd5,0x29,0x79,0x36,0x88,0x5f,0xce,0x49,0x24,0xb2,0x10,0x0e,0x59,0x50,0x76,0xe6,0x8e,0xf7,0x70,0x6f,0x71,0x3e,0xe5,0x72,0x49,0x9a,0x5f,0x30,0xb8,0x15,0x4e,0xc9,0x1c,}, + {0xd5,0x6b,0x70,0xfa,0x40,0xbf,0x30,0x49,0x53,0x0b,0x89,0x1d,0x63,0x4f,0x49,0x5c,0x6c,0x2e,0x6d,0xc2,0xb0,0x49,0x1d,0xb2,0x36,0x06,0xc3,0x70,0xd9,0x23,0x5a,0x2a,0x1c,}, + {0xd4,0xec,0xab,0x29,0xe8,0xc5,0xb4,0xb7,0xcc,0x6e,0x49,0x23,0x65,0x73,0x46,0x83,0x35,0xda,0xe5,0xc5,0x52,0xdd,0x24,0x41,0x38,0xec,0x61,0xd0,0xc8,0xe3,0x71,0x37,0xc6,}, + {0xd4,0xec,0x9b,0x2d,0xa0,0xc1,0x4e,0x45,0xd5,0xce,0xa6,0x48,0x63,0x8e,0x71,0x23,0x8a,0xb6,0xcc,0x61,0xac,0x2a,0xe7,0x52,0x28,0xdd,0xc1,0xcc,0xe5,0x6a,0x5c,0xb8,0xa4,}, + {0xd4,0xed,0x9b,0x2d,0x68,0xc1,0x70,0xd9,0x1c,0x44,0x73,0x22,0xc3,0x8d,0x49,0x5b,0x86,0xc5,0x20,0x61,0x4f,0xc9,0x23,0xb5,0xd6,0xd0,0x61,0xad,0x0e,0xdd,0x4e,0x39,0x1b,}, + {0xd4,0xed,0xa3,0x2d,0x61,0xc1,0xed,0xd6,0x3b,0x95,0x46,0xe4,0x61,0xec,0x48,0xaa,0xaa,0x09,0x16,0x63,0x4f,0x4b,0x23,0x60,0x73,0x25,0xc1,0x8b,0x87,0x1b,0x55,0x56,0xc7,}, + {0xd5,0x2c,0xb2,0xed,0x28,0x5f,0x2d,0xd5,0x71,0xef,0xcc,0xb2,0x65,0x31,0x3e,0x9d,0xae,0x4d,0x1b,0xc3,0xad,0xc4,0xba,0x8b,0x47,0x5e,0x61,0x90,0xb8,0x9c,0x87,0xa9,0x1b,}, + {0xd5,0x2d,0xb2,0xad,0xa8,0xc1,0xae,0x35,0x64,0x52,0x8f,0x8d,0x61,0xca,0xeb,0xe5,0x8c,0xd5,0xd0,0x6e,0xd1,0x2c,0xec,0x96,0x54,0xd0,0xc1,0x6c,0x8f,0x9b,0x34,0xa7,0xe7,}, + {0xd4,0xa9,0xe1,0x29,0x98,0xc0,0xd0,0x26,0x34,0x8e,0xb9,0x24,0xc0,0xcc,0xba,0x61,0x1e,0xc9,0x24,0x61,0x49,0xd9,0xa2,0x48,0x25,0xe4,0xc0,0xab,0x3a,0xf5,0xd5,0xa2,0x02,}, + {0xd3,0x21,0xa1,0x15,0xb9,0xca,0xc8,0x1c,0xdc,0xce,0xb0,0x13,0x62,0x03,0x9f,0x9c,0xad,0xd9,0x6c,0xba,0x02,0x43,0x34,0x61,0xc8,0xe4,0xee,0x21,0xc9,0x50,0x4e,0x29,0x6e,}, + {0xd6,0xd8,0xb1,0x50,0x69,0xce,0x40,0xe9,0x2c,0x83,0xaa,0xb2,0xde,0x00,0xfd,0x2c,0x91,0x11,0xf6,0x80,0xc0,0xd0,0xad,0x91,0xa2,0xad,0x8c,0x80,0xf7,0x59,0x6e,0x48,0x9b,}, + {0xd9,0xe0,0x61,0x10,0x60,0xec,0xe0,0xc2,0x92,0x69,0x36,0x8a,0xb4,0x81,0x37,0x18,0x6d,0x38,0xe4,0xb7,0x21,0x39,0xa2,0x49,0xae,0x9a,0xd7,0xe1,0x9a,0xe3,0x51,0xae,0x59,}, + {0xdb,0x6a,0xc3,0xea,0x22,0x93,0xc3,0x86,0xea,0x10,0x30,0xca,0x61,0xc8,0x21,0x59,0x40,0x90,0x8b,0x5b,0x28,0x90,0x6d,0x23,0xb6,0xbd,0x5b,0x4e,0x38,0xb2,0xed,0x48,0xa3,}, + {0xda,0xe1,0xa2,0xd4,0x50,0x7c,0xab,0x46,0xec,0x49,0xe8,0x1d,0xca,0x8a,0xa2,0x9f,0x65,0xd5,0x4b,0xee,0xad,0x1a,0xda,0x2d,0xd3,0xc8,0xb6,0x89,0x54,0x4e,0x0f,0x59,0x5c,}, + {0xd2,0x95,0x82,0x55,0x1a,0xe4,0x62,0x77,0x76,0xba,0x46,0xeb,0xee,0x01,0xe7,0x66,0xb7,0x2c,0x37,0xce,0x00,0xe6,0x9c,0x89,0xb8,0xaa,0xac,0x20,0x99,0x24,0x91,0xb6,0xeb,}, + {0xd8,0xa1,0xe9,0xc9,0x64,0xee,0x80,0x06,0xd4,0x72,0xcf,0xf6,0xe9,0xed,0xc9,0x1c,0x96,0x4f,0x05,0x58,0x8c,0x7e,0x7e,0x4f,0x16,0xca,0x76,0x2c,0xa6,0x62,0x2d,0x28,0xc8,}, + {0xd7,0x9c,0xba,0x4c,0x79,0xd2,0x2c,0x86,0x64,0x6d,0xa7,0x1b,0x72,0xeb,0x25,0x4a,0xa3,0x47,0x1b,0xbe,0x06,0x85,0xa3,0x49,0xb5,0x14,0x9e,0x41,0x99,0xa3,0x18,0xc3,0x1e,}, + {0xd8,0x1d,0xc4,0x18,0x10,0xd2,0x01,0x5b,0xe3,0x8d,0xef,0x54,0xe8,0x62,0xb9,0x2e,0xb8,0x55,0xab,0x56,0x21,0x69,0x2c,0x99,0xeb,0x23,0x7e,0x81,0x29,0xec,0xf2,0x5b,0x2d,}, + {0xd0,0x60,0xa2,0xe1,0x62,0xdc,0x40,0x5b,0xb7,0x9a,0x49,0x24,0x98,0x00,0x36,0xe2,0x6d,0xb6,0xdc,0xec,0x20,0x36,0xe2,0x6d,0xb6,0xdc,0xee,0x20,0x36,0xdb,0x6d,0xb7,0x24,}, + {0xd0,0x60,0xa3,0x21,0x5a,0xd0,0x00,0x48,0xe3,0x72,0x49,0x1c,0x72,0x00,0x49,0x24,0x92,0x49,0x23,0xa0,0x00,0x49,0x24,0x92,0x49,0x24,0x68,0x40,0x48,0xe4,0x92,0x49,0x23,}, + {0xd0,0x60,0xa3,0x21,0x5a,0x7c,0x00,0x49,0x24,0x92,0x48,0xe4,0xac,0x40,0x49,0x24,0x92,0x49,0x23,0xb6,0x00,0x49,0x1c,0x92,0x49,0x24,0x84,0x00,0x49,0x24,0x92,0x47,0x24,}, + {0xd0,0x5d,0xa2,0xe1,0x1a,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x98,0xe0,0x38,0xdb,0x6e,0x36,0xdb,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0xa2,0x00,0x47,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_devatenact[] = { + {0xd3,0x9a,0x38,0x99,0xd1,0x50,0x00,0x59,0xae,0xde,0xf5,0xa3,0x53,0x60,0xc6,0xa5,0x6a,0xc4,0xe6,0x71,0x60,0x76,0x3a,0x53,0x09,0x20,0x6b,0x41,0x4a,0x75,0x91,0xb6,0x8a,}, + {0xd1,0x27,0xec,0xa9,0xda,0x65,0x21,0x48,0xe4,0x52,0x58,0x90,0x96,0xe0,0xd6,0xa4,0xd7,0x48,0x89,0x86,0xc0,0xc6,0xe5,0xfe,0xc8,0x48,0xe6,0xa1,0x04,0xe7,0xfa,0x0e,0xcf,}, + {0xd0,0xec,0xec,0x6d,0x2b,0x50,0xc2,0x06,0xd6,0xae,0x39,0x2a,0x9e,0xa1,0xa4,0x17,0x6e,0x39,0xa2,0x54,0xa1,0x30,0xb5,0x8c,0xcd,0x62,0x50,0x80,0xb0,0x85,0x76,0x3b,0x24,}, + {0xd5,0x9b,0x69,0x61,0xe3,0xa5,0x23,0xb4,0xd2,0x53,0x7f,0x5a,0x52,0xa4,0x02,0x54,0xbf,0x6a,0xd1,0x54,0xa2,0x82,0x92,0xba,0xdd,0xa2,0xc9,0xed,0xb4,0xdb,0x92,0xc9,0x1f,}, + {0xd5,0x1c,0x7b,0x3e,0x60,0x5b,0x8d,0xa5,0x18,0x6d,0x4b,0x75,0x77,0xf1,0xb6,0x40,0xce,0x59,0x2e,0x53,0x70,0x35,0x11,0xed,0x49,0x26,0xa5,0x50,0xc7,0x21,0x7d,0x29,0x25,}, + {0xd5,0x5d,0x7b,0xb6,0x58,0x53,0xab,0xd6,0xe0,0x1c,0xfe,0xe4,0x53,0x8e,0xdb,0x5b,0x87,0xb9,0x1c,0x53,0x8d,0x05,0x23,0x74,0xd6,0x6c,0xa5,0xcc,0x0a,0x25,0x52,0x93,0x32,}, + {0xd4,0xdf,0x92,0xb5,0xd8,0x53,0xcc,0x25,0x69,0x3c,0xda,0x27,0x55,0x4f,0x39,0x2a,0x4d,0x0e,0x1f,0xab,0x4d,0xd7,0xa6,0x09,0x19,0x44,0x55,0x4e,0x57,0x2c,0x85,0x31,0xd9,}, + {0xd4,0xa1,0x91,0x36,0x20,0x55,0x2d,0x5b,0x1e,0xad,0x44,0xbb,0xaa,0xcc,0xdf,0x1e,0x8c,0xd4,0xe2,0xa8,0x09,0x99,0xad,0xd6,0x26,0x50,0xa6,0x25,0x99,0x7f,0xf1,0xb0,0x42,}, + {0xd4,0x57,0x89,0xad,0xf4,0xea,0x45,0x1b,0xf7,0xde,0x58,0x93,0xe6,0x24,0x28,0xd7,0x9b,0xc8,0x71,0xc6,0x43,0x68,0xba,0xd7,0x61,0x04,0x67,0x64,0xf3,0x61,0x98,0xf4,0x8e,}, + {0xd3,0x25,0x9a,0xe5,0xa0,0x50,0x84,0x88,0xe8,0xed,0xd5,0xab,0x69,0x24,0xc1,0x53,0x8e,0xf5,0xe4,0xe5,0x2a,0x52,0xe2,0x6e,0x4b,0xdc,0x56,0xee,0xa6,0x53,0xea,0x5b,0x24,}, + {0xd4,0x6c,0x9a,0x6e,0x20,0x53,0xb1,0x48,0xa1,0x3c,0xb9,0x1b,0x55,0x0f,0x6b,0x5a,0x22,0xc7,0x5c,0xa9,0x0f,0x6f,0x6b,0x20,0x57,0x32,0x55,0xac,0x2c,0xec,0xb1,0x7a,0x9c,}, + {0xd4,0x6b,0xc1,0xe5,0xd8,0x55,0x2e,0xd9,0x6b,0x49,0x8f,0x23,0xaf,0x30,0xad,0x5c,0x89,0x95,0xc4,0x5b,0x4f,0xc6,0xec,0x71,0xc4,0x2c,0xb5,0x10,0x8b,0x1c,0x92,0x45,0x11,}, + {0xd3,0xab,0xc9,0xd5,0xd8,0xb5,0x2e,0xc7,0x6c,0xb1,0xd6,0x60,0xb0,0xab,0x1f,0x34,0xd2,0x59,0x04,0xb0,0xab,0x11,0x34,0x96,0xdb,0x22,0xb6,0xad,0x32,0x1b,0x75,0xc9,0x1b,}, + {0xd2,0x5b,0x8b,0x14,0x91,0x9e,0x42,0xee,0x67,0x51,0x39,0x2d,0x98,0x02,0x6f,0x6c,0x69,0xb6,0xe4,0xec,0x41,0xdf,0xa2,0x95,0xa6,0x9c,0xde,0x40,0x64,0xc0,0x06,0x2d,0x5b,}, + {0xd4,0x14,0x6a,0x18,0xda,0xa0,0xc0,0xed,0x25,0x8a,0x38,0xeb,0xce,0xa0,0xe6,0xfc,0x51,0xa6,0xd3,0x76,0xc0,0x32,0xeb,0x91,0xbb,0x28,0x8c,0xe0,0xbb,0x1d,0x52,0xa8,0xd0,}, + {0xd4,0xd8,0x71,0x5c,0xda,0x66,0xc0,0x36,0x6b,0xde,0x3f,0xec,0x7a,0xa0,0xcd,0x1c,0x9a,0x44,0xe3,0xe0,0xa0,0xea,0xa3,0x6e,0x49,0x1c,0xca,0xe0,0x98,0xdc,0x8e,0x99,0x1b,}, + {0xd7,0x2b,0xb1,0xe5,0x98,0x5c,0x20,0x49,0x5b,0x8d,0xc2,0x6e,0xe1,0xa1,0x49,0x2d,0xdb,0x59,0x7c,0x73,0x00,0x5d,0x59,0x09,0x3d,0x1a,0x69,0xd0,0x4e,0xdb,0x92,0x47,0x1b,}, + {0xd4,0xa1,0x7b,0x2e,0x90,0x5a,0x8b,0xb6,0xb6,0x13,0x36,0x5b,0xc4,0x4a,0x27,0x1d,0x4d,0xb4,0x50,0xa6,0xb0,0xb7,0x24,0x96,0x44,0xd0,0xe5,0xb0,0x9e,0xe5,0x77,0x59,0x13,}, + {0xd5,0xe2,0x6b,0xe6,0xd8,0x57,0x2f,0x01,0xe2,0x52,0x4d,0x6e,0x5b,0x51,0x32,0x2a,0xb1,0xc9,0x1d,0xb9,0xb0,0x58,0xd9,0x98,0x5e,0x93,0x5f,0xad,0x53,0x64,0x3c,0x15,0x1d,}, + {0xd5,0xe4,0x72,0xa2,0x98,0x61,0x4f,0x4b,0x5d,0xac,0xb4,0xbd,0xba,0xd3,0xca,0xe4,0x96,0xb5,0x10,0xbf,0x70,0x43,0x6b,0x92,0x68,0x97,0x5f,0x0f,0x80,0x75,0x72,0x49,0x2c,}, + {0xd3,0x21,0x6a,0xee,0xd1,0xbd,0x2b,0x72,0x02,0xb9,0x37,0x12,0xbc,0xc8,0x21,0x25,0xed,0x19,0xc2,0xb8,0xab,0xd9,0x23,0x64,0xb6,0xfc,0x60,0xad,0x3d,0x25,0x71,0xa4,0x24,}, + {0xd1,0xe6,0x9c,0x2b,0x03,0x5c,0xe9,0xf6,0xf5,0x96,0xc6,0xc9,0xce,0x89,0x7f,0x72,0x71,0xd9,0x18,0xba,0xa6,0x21,0xe0,0xe5,0x65,0xab,0xbf,0x47,0x24,0x8f,0x8b,0x29,0x1d,}, + {0xd5,0x22,0x8a,0x26,0x50,0xbf,0x8e,0x49,0x23,0x44,0x15,0x35,0x65,0x93,0xc9,0x24,0x8d,0xb4,0xbb,0x5a,0xd1,0x69,0x23,0x96,0x34,0xc0,0x5f,0x90,0xf4,0xea,0x6e,0xba,0x9d,}, + {0xd5,0xa7,0x9b,0x26,0x58,0x61,0x31,0x93,0xc3,0xcd,0xd9,0x5f,0x61,0x54,0x49,0x08,0xb1,0x5a,0xdc,0x5f,0x33,0x57,0x22,0x0b,0x99,0x55,0x5f,0x0f,0xb9,0x73,0xa9,0x31,0x5b,}, + {0xd4,0xeb,0xc2,0xed,0x68,0xbf,0x51,0xb8,0xf7,0x75,0x24,0x4f,0xc0,0xd0,0x57,0x75,0xdb,0xcc,0x5a,0xc3,0xd2,0x1e,0xa4,0x76,0x58,0xa2,0xc1,0x91,0xaa,0xdd,0x0a,0xc4,0xdc,}, + {0xd4,0xac,0xba,0xa9,0xd8,0x5d,0x50,0x27,0x4a,0x3c,0xc7,0x63,0xbd,0xf0,0xa6,0xdc,0x7a,0xc5,0x18,0xbf,0xad,0xf4,0xe8,0x8d,0xc9,0xa0,0xbf,0x6e,0x47,0x22,0xb1,0x38,0x02,}, + {0xd4,0xed,0xc2,0xad,0x60,0x5f,0x10,0x1e,0xe5,0x8e,0x59,0x9b,0xbf,0xcd,0xc1,0x5f,0x3a,0xab,0x57,0x5f,0xad,0xc6,0xe2,0x5c,0xc6,0xa3,0x5f,0xac,0xd7,0x5c,0x94,0x65,0x9c,}, + {0xd4,0xef,0xaa,0x6d,0xa0,0xbd,0xca,0xb5,0x8e,0x96,0xe1,0x8f,0xbd,0x2f,0xd7,0x25,0x91,0xc4,0x57,0xbc,0xae,0x47,0xa4,0x97,0x58,0x98,0xbf,0xad,0xce,0x25,0x52,0x36,0xdc,}, + {0xd4,0xed,0xc2,0x71,0x28,0x5f,0x6f,0xa0,0xba,0x92,0x47,0x6e,0xbd,0x89,0x1f,0x39,0x21,0x70,0xfa,0x5f,0xb0,0x39,0x23,0x92,0x0e,0xa4,0xbd,0xae,0x3a,0x9d,0x75,0xcc,0x7b,}, + {0xd4,0xed,0xb2,0xe5,0xe0,0xbf,0xcb,0xd6,0xa4,0xa2,0x96,0x0e,0x5f,0xaf,0x55,0xe1,0xad,0x0a,0xb3,0x5f,0x4d,0xa1,0x3b,0x39,0x39,0x2c,0xbc,0x90,0xd6,0xd0,0x96,0x39,0x24,}, + {0xd4,0xa5,0xd9,0x25,0xe0,0xbd,0x49,0xcd,0x4f,0x4a,0xd7,0xc7,0xbd,0x49,0x36,0xda,0x39,0x4f,0x0e,0xbc,0xca,0x2a,0xf5,0x91,0x40,0x0d,0xc6,0xa8,0x0f,0x55,0xbb,0xd2,0x00,}, + {0xd3,0xdc,0xba,0xda,0x21,0x6a,0x04,0x05,0x17,0x95,0xeb,0xac,0xb8,0x22,0x0b,0x12,0x0e,0x48,0xdc,0xe6,0x41,0xc8,0x68,0x6a,0xcf,0xad,0xe0,0x20,0xe7,0x12,0x8a,0xb8,0xad,}, + {0xd7,0x96,0x72,0x20,0xe9,0xb6,0xa0,0xc6,0xe2,0x52,0x7a,0xf1,0xe6,0x40,0xa7,0x6e,0x8d,0xdb,0x93,0xb5,0x40,0xc4,0xa3,0x8a,0x44,0x99,0xc0,0xc0,0xb4,0xcb,0x55,0xa5,0x5c,}, + {0xdb,0x6e,0xbb,0x1d,0x08,0x71,0xc2,0xa8,0x9a,0x49,0x14,0x81,0x51,0x64,0x94,0x52,0x6d,0x18,0x35,0x57,0xc7,0x0e,0xe4,0xcd,0xb7,0xcd,0x55,0xc9,0xa6,0xb2,0x70,0xc5,0xea,}, + {0xdb,0xea,0xab,0xdc,0x91,0x59,0x4c,0x55,0x5c,0x6e,0x45,0xd4,0x5c,0xaa,0xb1,0xda,0x74,0xcc,0xa4,0x83,0x2d,0xa9,0xca,0x55,0x89,0x52,0x64,0xaf,0x38,0xa2,0x82,0x96,0x51,}, + {0xd7,0x5d,0xa1,0x8c,0xd0,0xb4,0xed,0xd7,0x03,0x4d,0xc8,0xe5,0x82,0x23,0x6a,0xae,0xdf,0xc9,0xaf,0x96,0x21,0xc5,0xe5,0xda,0x4b,0x6d,0xe0,0x22,0x4e,0xdd,0xd6,0x5a,0xdb,}, + {0xda,0xa5,0xc3,0x8c,0x8b,0xf0,0x41,0x69,0xa2,0x32,0xdd,0x65,0x84,0xa0,0xdb,0x27,0x96,0x7b,0x64,0xe7,0xb2,0x49,0x26,0x66,0xcc,0xef,0x62,0xf0,0x16,0xfd,0x59,0xa7,0x13,}, + {0xd7,0x64,0xb9,0x85,0xb1,0x7c,0x0b,0xe0,0xc1,0x86,0x13,0x0b,0xa6,0x4c,0x94,0x4d,0x80,0xd7,0x22,0xba,0x24,0x83,0xd2,0x25,0xc5,0x0c,0x78,0x42,0x35,0xc2,0x15,0x22,0xd4,}, + {0xd8,0x5f,0xc4,0xd8,0x10,0xea,0x41,0xeb,0xd2,0xb1,0x5a,0xab,0xd8,0x22,0xb9,0x35,0xb4,0x57,0xa2,0x5e,0xc1,0x4b,0xdd,0x8e,0xba,0xda,0x8e,0x01,0xdb,0x5f,0xae,0xc9,0x64,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0x50,0x00,0x49,0x74,0x96,0x58,0xe4,0x92,0x40,0x44,0xe3,0x6d,0xb6,0xdb,0xe6,0x20,0x38,0x9c,0x6d,0xb6,0xdb,0xee,0x20,0x36,0xdb,0x6d,0xb7,0x1b,}, + {0xd0,0x60,0xa2,0xe1,0x59,0x64,0x00,0x49,0x24,0x92,0x47,0x24,0x98,0x00,0x49,0x24,0x92,0x49,0x24,0x8a,0x00,0x49,0x24,0x72,0x49,0x24,0x80,0x40,0x49,0x24,0x92,0x49,0x23,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0xae,0x00,0x49,0x23,0x92,0x49,0x24,0x54,0x40,0x49,0x24,0x92,0x49,0x23,0xec,0x00,0x49,0x23,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0xca,0x00,0x49,0x24,0x92,0x49,0x1c,0xe4,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0xc2,0x00,0x49,0x1c,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_dvacet[] = { + {0xd2,0x97,0xab,0xad,0xe2,0x50,0x60,0x49,0x65,0x95,0xca,0xee,0x5f,0xc0,0xb9,0x61,0x8a,0x25,0x64,0x56,0x80,0x2c,0xa3,0x4d,0x04,0x9b,0xa5,0x21,0x4b,0x24,0x66,0x06,0x4b,}, + {0xd0,0xed,0xd4,0xb2,0x21,0x53,0x01,0xcb,0x7e,0x91,0xb6,0x92,0x5a,0xa1,0xbd,0x9a,0xf1,0x72,0xa9,0xae,0xe1,0xf6,0x9d,0x99,0xa8,0x6a,0x9d,0x61,0x9e,0x82,0xd1,0xc8,0xa3,}, + {0xd1,0x26,0xdc,0xed,0xe3,0xa6,0x80,0xb9,0x75,0xaa,0x35,0x1b,0x9c,0xc1,0xa1,0xb4,0x6d,0xcb,0x24,0x80,0x81,0x44,0xa6,0xd1,0xa7,0x5a,0xa2,0x80,0xa8,0xd4,0xb9,0xa4,0xeb,}, + {0xd6,0xaa,0x90,0xda,0x98,0xaf,0x62,0xa7,0x2e,0xda,0x20,0x02,0x56,0x61,0xef,0xad,0xb6,0xc6,0x93,0x89,0xcd,0xc9,0xcd,0x95,0xd6,0xdb,0x84,0xee,0xb7,0x1c,0x92,0x46,0x80,}, + {0xd5,0x25,0x7a,0xaa,0xd8,0x51,0xd0,0x99,0xbd,0x92,0x34,0x00,0x50,0xb5,0x78,0xe3,0x92,0xc6,0xd2,0x51,0x30,0x72,0xdd,0x6a,0x67,0x18,0xa1,0x8d,0xf2,0x95,0x49,0xdb,0x3a,}, + {0xd5,0x64,0x8a,0x1e,0xe2,0xf1,0xad,0x74,0x5e,0x49,0x4b,0xe6,0x51,0x50,0x61,0x2c,0x96,0x36,0xd2,0xa0,0xcf,0xd1,0xa3,0x7e,0x38,0xd2,0xa0,0xc9,0x87,0xd4,0xde,0x5a,0xc0,}, + {0xd2,0x25,0xa3,0x2e,0x2a,0xee,0x48,0x31,0x65,0xfa,0xea,0x49,0xee,0x04,0xe6,0x22,0xb6,0x46,0x43,0xee,0x23,0xf3,0x19,0xd6,0x44,0x0a,0xf0,0xc3,0x7a,0x93,0x4d,0xa2,0x9b,}, + {0xd2,0x23,0xab,0x69,0xaa,0xf0,0xa4,0xf6,0xec,0x96,0x38,0x22,0x9f,0xe4,0x4b,0x5c,0xae,0x2c,0x98,0x51,0x84,0x7a,0x64,0x8a,0xb7,0x0c,0x53,0x07,0x74,0xe4,0x79,0xb6,0xd2,}, + {0xd3,0xaa,0xba,0x59,0xa0,0x53,0xca,0xc3,0x64,0x92,0x46,0x88,0x51,0xe9,0xce,0xe4,0x9e,0x48,0x01,0x51,0xad,0xf6,0xdc,0x72,0x47,0x12,0x51,0xcc,0xf4,0xa5,0x2e,0x43,0xc4,}, + {0xd3,0xed,0xd2,0xe1,0xe0,0x51,0xad,0xf1,0x6c,0x72,0xca,0x93,0x51,0xce,0x8d,0x1b,0xb2,0x4a,0xe3,0xa1,0xcc,0x0b,0x93,0xce,0xbe,0xe2,0xf1,0xad,0x27,0x9c,0xae,0xae,0xba,}, + {0xd4,0xec,0xca,0xaa,0xd0,0xa3,0xf0,0x27,0x2a,0xb5,0xd4,0x58,0xf1,0xf0,0x17,0x3c,0x7e,0x52,0xc8,0x50,0x92,0xe4,0xab,0x8e,0xc9,0x7f,0xb1,0xd5,0x33,0xdc,0x4e,0x55,0x1e,}, + {0xd4,0xa8,0xe2,0x22,0x90,0x5f,0x11,0xa6,0x52,0xe9,0xc8,0xd5,0x63,0x30,0x36,0xe2,0x83,0x1c,0xb4,0xc0,0xd2,0xbb,0x24,0x8e,0x07,0x23,0xbe,0xb2,0x49,0x6c,0x96,0xb6,0x0d,}, + {0xd3,0x62,0xca,0x5d,0x92,0x5a,0xad,0x0b,0x73,0xd2,0xc8,0x68,0xbc,0xae,0xde,0x64,0x91,0xb6,0xda,0xbe,0xcc,0x11,0x71,0xea,0xb8,0xd9,0xb0,0x2b,0x46,0x11,0x52,0x49,0x24,}, + {0xd3,0x15,0xab,0x99,0x51,0xb6,0x22,0xf7,0x76,0xb2,0xf7,0x2d,0xea,0x02,0x5f,0x5d,0x4c,0xc7,0x1f,0xe8,0x21,0xf9,0x2c,0x89,0xc9,0x23,0xbc,0x81,0x76,0x4a,0xb1,0xc9,0x64,}, + {0xda,0x56,0x71,0x20,0x9a,0xe4,0x40,0xee,0xcb,0xce,0x4f,0xbe,0x59,0x41,0x5b,0xab,0x16,0xb7,0x64,0x5a,0xe1,0x27,0x3a,0x4e,0x62,0xe5,0xab,0xa1,0xb6,0x92,0x8d,0xd2,0xf8,}, + {0xdb,0x24,0xee,0x35,0xe3,0x75,0xc4,0x49,0x2c,0x72,0x3f,0x5f,0x77,0xc8,0x48,0xa2,0xb0,0xa6,0x43,0x5d,0xaa,0xc9,0x0f,0xc2,0x62,0x35,0x63,0xf2,0x37,0x53,0x16,0xb5,0x24,}, + {0xdb,0xe9,0xe4,0x31,0xeb,0x52,0x90,0x03,0xc3,0xc8,0x4a,0x94,0x95,0x31,0x08,0xdf,0x5c,0x97,0x8c,0x72,0x8e,0xf4,0x5f,0x0a,0xb6,0x63,0x96,0x0d,0x05,0x63,0xaf,0x15,0x0a,}, + {0xda,0xa7,0xcc,0x65,0xaa,0xd2,0xee,0x09,0x23,0x79,0xbb,0xd0,0xa5,0x0d,0x79,0x24,0xac,0xde,0xbc,0xa7,0x12,0x58,0x7a,0x5a,0x3d,0xfc,0x6e,0x8d,0xfd,0x2a,0x92,0xd1,0x64,}, + {0xd5,0xe1,0x69,0x5a,0x6a,0xa2,0x6b,0xd4,0x5b,0x47,0x08,0x58,0xe8,0x2b,0x78,0xa5,0x4e,0x94,0xd3,0xd2,0x4c,0xc6,0xdd,0xae,0xe5,0x48,0xb3,0x31,0xa2,0xbc,0x76,0xd9,0x23,}, + {0xd5,0xa1,0x72,0x6a,0xe0,0x53,0x72,0xa0,0xbc,0x2e,0x59,0x25,0x5f,0x30,0x78,0x68,0x3c,0xce,0xdc,0x5f,0x32,0x59,0x22,0x6c,0x76,0xe4,0xbd,0x52,0x39,0x64,0x8d,0x31,0x9c,}, + {0xd5,0xdb,0x72,0x6e,0x68,0x5e,0xef,0x39,0x65,0x91,0x17,0x08,0xbe,0x8d,0x7a,0xa2,0x76,0x4c,0x52,0xbe,0xac,0x19,0xe9,0xb1,0xdb,0x33,0xbd,0x0c,0x46,0x19,0xee,0x58,0xec,}, + {0xd3,0x9a,0xaa,0x72,0xa8,0x5f,0x28,0x49,0x4c,0x8b,0xa3,0x24,0xbe,0xca,0xc7,0x5b,0x6d,0x4e,0x8c,0xbc,0xa7,0xc7,0x6d,0x8d,0x17,0x44,0xd0,0x24,0xb1,0x1d,0x97,0x47,0xa3,}, + {0xd4,0x17,0x71,0x1d,0xe9,0xb8,0x02,0x09,0x64,0x92,0x47,0x25,0xbe,0x00,0xad,0x2b,0xf2,0x79,0x9b,0xee,0x40,0xd2,0xdc,0x6e,0x35,0x66,0xd4,0xa1,0x34,0x8b,0x3f,0x4a,0x99,}, + {0xd6,0xe0,0xa1,0x26,0x9a,0x5e,0xa0,0xa7,0x2c,0x89,0x12,0x93,0x67,0x01,0x26,0x92,0x24,0x92,0x52,0x54,0xa1,0x32,0x89,0x24,0xa4,0x92,0x87,0x66,0x37,0x1b,0x93,0xc2,0xf7,}, + {0xd8,0xa5,0xa9,0xd5,0x22,0x5b,0xc8,0xaf,0x6a,0x31,0x3a,0xb3,0x76,0xc7,0xb5,0x60,0x6c,0x04,0xca,0x65,0x4c,0x34,0xdb,0xc8,0x38,0xa4,0x5e,0xca,0x2a,0x9b,0x6e,0x51,0x92,}, + {0xd9,0x24,0xb1,0x88,0x52,0x9a,0x87,0xec,0xd3,0x16,0x35,0x58,0xe0,0x08,0xf8,0xd2,0x6f,0x38,0xcd,0xcc,0x25,0xe1,0x2e,0x8f,0x75,0x2d,0xb0,0xa8,0x47,0xe4,0x9a,0x4b,0x6c,}, + {0xd3,0x8e,0x61,0xd9,0x5a,0x52,0x21,0x85,0x9c,0xd6,0xc5,0x1b,0xb4,0x00,0xd4,0x6c,0xad,0xa4,0x5c,0xe6,0x40,0x94,0xd2,0x2d,0x93,0x4c,0xda,0x80,0xb6,0x51,0xa9,0x35,0x55,}, + {0xd3,0x97,0x60,0x09,0xdb,0x5a,0x80,0x95,0x1a,0x71,0x46,0xa4,0x50,0x00,0x3a,0xe3,0x8e,0x49,0x1c,0xc2,0x20,0x48,0xe3,0x92,0x39,0x1b,0xe2,0x40,0x49,0x24,0x92,0x37,0x1c,}, + {0xd0,0x5f,0xa2,0xa5,0x5a,0x86,0x00,0x48,0xdb,0x6d,0xb7,0x24,0x7a,0x00,0x39,0x24,0x92,0x49,0x24,0xda,0x00,0x38,0xe4,0x92,0x49,0x24,0xf0,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xe5,0x5a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x56,0x00,0x49,0x24,0x92,0x49,0x24,0x6e,0x00,0x39,0x24,0x92,0x49,0x24,0x66,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa2,0x50,0x40,0xb6,0xdb,0x49,0x20,0x00,0x51,0xa1,0x90,0x00,0x24,0x92,0x92,0x53,0xb1,0x36,0xdf,0x6d,0xb6,0xdb,0x54,0x05,0x36,0xdb,0x0d,0xb6,0xdb,}, +}; +static const gsm_frame gsm_data_tricet[] = { + {0xd9,0x1f,0x79,0xd5,0x10,0x50,0x40,0xb6,0xdb,0x8d,0x27,0x19,0x68,0xe0,0x47,0x54,0x96,0x4a,0xeb,0x74,0xe0,0x33,0xab,0xda,0x2b,0x5b,0xcc,0xc0,0xb8,0xf4,0x91,0xb9,0x23,}, + {0xd5,0xd6,0x59,0xa5,0x19,0x85,0x60,0xc6,0xcb,0x8d,0xc7,0x1b,0x50,0xa0,0x41,0x2b,0x99,0xc6,0xe2,0xa8,0xa0,0x3a,0xb2,0x79,0xc4,0x9b,0x63,0x20,0xb6,0xe3,0x6c,0xc8,0xdb,}, + {0xd7,0x1b,0x49,0xd5,0x5a,0x52,0xc0,0x42,0xda,0x92,0xcb,0x13,0xaa,0xc0,0xc9,0x1b,0xcd,0xb8,0xe4,0xec,0xe0,0x56,0x6c,0xc6,0xeb,0x91,0xa8,0x80,0x59,0x29,0x6d,0x9a,0x17,}, + {0xd7,0xec,0xb2,0x94,0x91,0x5f,0xed,0xb8,0xdb,0x92,0x4c,0xbf,0x53,0x51,0x48,0xe4,0x72,0x39,0xda,0x65,0xb1,0x15,0x33,0x0b,0xf4,0x74,0x58,0x30,0x62,0x94,0x68,0x82,0x18,}, + {0xd5,0xe8,0x40,0x48,0xa2,0x8c,0x2c,0x30,0x0a,0x4d,0x0e,0xe3,0xe4,0x0c,0x79,0xb2,0xb2,0xc7,0x1b,0xba,0x23,0x6f,0x73,0xda,0x39,0x6c,0xc2,0x41,0x72,0xdb,0x0c,0x98,0x62,}, + {0xdb,0x71,0x83,0x20,0x19,0xee,0x63,0x47,0x35,0xb6,0xef,0xbe,0x51,0x24,0x7f,0xfe,0xb6,0xed,0x6d,0x91,0x6d,0xc8,0xe3,0x68,0xd0,0x1a,0x5c,0x8f,0x04,0x49,0x7c,0xe7,0xaf,}, + {0xdc,0x68,0x89,0x18,0x02,0x60,0xb0,0x7d,0x77,0x9e,0x4b,0x1d,0x5e,0xaf,0xa8,0xe2,0x6d,0xbc,0x33,0xf0,0xcf,0xc9,0x64,0xb1,0x8e,0xcc,0xe6,0xad,0xb8,0x35,0x4a,0x56,0xe3,}, + {0xdd,0xec,0xe5,0xa9,0x9a,0x6b,0x2d,0x21,0xad,0x7d,0x29,0xf3,0xbb,0x4d,0xff,0x35,0x8f,0xac,0xb2,0x6e,0xce,0xb6,0x69,0x2c,0x37,0x42,0x62,0xae,0x16,0x11,0x15,0x36,0xd9,}, + {0xda,0xd9,0x59,0x55,0xf3,0x72,0xca,0x26,0x34,0x8d,0x49,0xd4,0xc4,0xab,0xb9,0x4e,0xae,0x47,0xe2,0xde,0xaa,0xe7,0xdd,0xae,0x36,0x14,0x55,0x8d,0xd7,0xec,0xae,0x30,0x88,}, + {0xd7,0x5a,0x43,0x63,0x38,0x55,0x10,0x79,0x24,0x95,0xc8,0xd1,0x51,0x4c,0x8a,0xd4,0x7a,0x5e,0x28,0xa5,0x2b,0xf8,0xd9,0x6f,0x4d,0xc5,0x55,0xaf,0x0b,0x1c,0x71,0xc7,0x23,}, + {0xd5,0x5a,0x5c,0x73,0x60,0x55,0x2f,0x41,0x5b,0x92,0xd6,0xa7,0x5b,0x0c,0xca,0x43,0x3a,0x47,0x2c,0xb9,0x0c,0xc9,0x22,0x10,0x79,0x1c,0xbd,0x2b,0xd9,0x1e,0x48,0x63,0x9c,}, + {0xd4,0x9f,0x44,0xbf,0x12,0x5f,0x28,0xbf,0x1b,0x99,0x50,0x9a,0xbe,0xea,0x27,0x7c,0x92,0x44,0x86,0xbe,0xca,0x0d,0x23,0x92,0xd8,0x8b,0x62,0x86,0x98,0x97,0x2a,0x7b,0x24,}, + {0xd1,0xdd,0xb4,0xbe,0x18,0xbe,0x42,0xa2,0x58,0x46,0xcb,0x6c,0xea,0x01,0x60,0x4b,0x4d,0xba,0x6d,0xe8,0x00,0xed,0x52,0x65,0x28,0x93,0xe0,0x20,0xeb,0x5b,0x49,0x38,0xe1,}, + {0xd8,0x1e,0x89,0xd4,0xda,0xc6,0xa0,0xa6,0x6c,0x91,0x10,0xa6,0x66,0x81,0x58,0x81,0x4e,0x46,0x93,0x54,0x80,0x35,0x2b,0x81,0xa8,0x4a,0xc5,0xe3,0x49,0x1b,0x6a,0x57,0x17,}, + {0xda,0xe7,0xc4,0xad,0x98,0x55,0xa9,0xb7,0x22,0xa2,0x52,0xd9,0x51,0xea,0x44,0x91,0x6e,0x15,0xa8,0x69,0xaf,0x39,0x44,0x71,0xa9,0x62,0x5c,0xeb,0x8c,0x82,0x89,0xd1,0x21,}, + {0xda,0x64,0xc3,0x2d,0xda,0xc3,0x2b,0x20,0x7b,0x49,0xae,0x20,0x7f,0x0e,0xc2,0xdc,0x36,0x51,0x55,0xd7,0x2d,0x1c,0x0d,0x4d,0xb5,0x62,0xb8,0xab,0x04,0x5a,0x8a,0x14,0x5d,}, + {0xd9,0xa5,0xc2,0x31,0x6a,0xd6,0xcc,0x38,0x57,0x2c,0xbb,0x20,0xea,0x8a,0x1e,0x9b,0xcd,0xd6,0x90,0x98,0xc9,0xfe,0x11,0x2e,0x17,0x5a,0xc2,0x89,0x36,0xe2,0x28,0x53,0x43,}, + {0xd5,0x61,0x89,0xf5,0xa0,0xdb,0x28,0x22,0xe9,0xb6,0x58,0x87,0xee,0xa7,0x97,0x67,0x72,0xb8,0x91,0xd4,0xd4,0x49,0x24,0x91,0xa2,0x7c,0x5c,0xb1,0x2b,0x1c,0xb2,0x46,0xa8,}, + {0xd5,0xa2,0x82,0xea,0x58,0x5f,0xcc,0x51,0xea,0xd1,0x4b,0x6e,0x5f,0x31,0xa4,0x34,0x72,0x39,0x24,0xbf,0xce,0x58,0x50,0x90,0xba,0xd2,0x5f,0x0d,0xed,0x52,0x31,0x0f,0xda,}, + {0xd4,0x9c,0x73,0x6e,0x68,0xbc,0xeb,0xdb,0xab,0x48,0x29,0x56,0x5f,0xcb,0xe7,0x1a,0x69,0x49,0xdf,0xcc,0xca,0xe1,0x5c,0xd6,0xd4,0x00,0x60,0x8a,0x95,0xda,0xcd,0xdb,0x63,}, + {0xd2,0xde,0x8a,0x72,0xe0,0xbe,0x28,0x82,0x46,0x6a,0x38,0xdb,0xec,0x24,0x5b,0x05,0x2d,0x47,0x36,0xe6,0x62,0xce,0xe5,0x6a,0x38,0xf5,0xbc,0x81,0x4b,0xb5,0x8d,0xf5,0x6e,}, + {0xd4,0x95,0x69,0x21,0xaa,0xba,0x20,0xad,0x65,0x92,0x44,0xdc,0xd4,0x40,0xbe,0xc3,0xc5,0x39,0x0b,0xdc,0x80,0x99,0x0e,0x26,0x26,0x9a,0x5c,0xa0,0xd4,0xe4,0x8c,0xc6,0x9d,}, + {0xd8,0x27,0xbb,0x11,0xa0,0x9e,0xe0,0xa7,0x11,0x69,0x00,0x02,0xa5,0xce,0x36,0xdc,0x7c,0xa8,0xdd,0x68,0x6d,0x7a,0xda,0x72,0x4b,0x22,0x6e,0xe6,0x06,0xba,0x05,0xac,0xe0,}, + {0xd9,0x65,0xaa,0x10,0x9a,0xc4,0x28,0xd4,0x84,0x60,0xa2,0x94,0xec,0xad,0xd4,0x1d,0x4e,0x36,0xd4,0x80,0x87,0x1e,0x92,0x5c,0xa1,0xd5,0xd4,0x27,0x36,0xdc,0x38,0x4b,0x13,}, + {0xd8,0x20,0x80,0x90,0x12,0x9e,0xa6,0xf5,0x32,0x92,0xad,0x61,0x71,0x06,0x64,0x3d,0x8e,0x47,0xab,0x5e,0xa4,0xf6,0x77,0xad,0x57,0x23,0x7e,0x01,0xfd,0x9d,0xd7,0x3d,0x25,}, + {0xd4,0x11,0x7a,0xe5,0x93,0xd6,0x40,0xdd,0xb0,0x57,0x35,0x13,0xe8,0x20,0xd6,0x9c,0x11,0xb6,0xe1,0x90,0x40,0x41,0x21,0x8d,0xb8,0xdb,0x92,0x40,0x37,0x1b,0x8d,0xb6,0xdc,}, + {0xd0,0x5f,0xa2,0xe1,0x1a,0xd6,0x40,0x46,0xdb,0x6d,0xb9,0x23,0xb0,0x00,0x49,0x24,0x92,0x49,0x24,0xc2,0x00,0x49,0x24,0x92,0x49,0x24,0x70,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xa5,0x5a,0x9a,0x00,0x49,0x24,0x92,0x49,0x24,0x5a,0x00,0x49,0x24,0x92,0x49,0x24,0x6e,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5f,0x9b,0x21,0x5a,0x88,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x82,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_ctyricet[] = { + {0xd7,0x93,0x69,0x59,0x12,0x50,0x40,0x36,0x92,0x68,0x3c,0x5c,0x54,0xc0,0xb3,0x63,0x8d,0xc7,0x2a,0x56,0xa0,0xd4,0x83,0x8e,0x36,0xea,0x80,0x80,0xd7,0x12,0xcd,0xb9,0x23,}, + {0xd4,0xd6,0x61,0x99,0x12,0x6e,0xc0,0x43,0x5f,0x85,0xab,0xe4,0xbe,0x80,0x55,0x3b,0x8f,0x4a,0xee,0x58,0xa0,0x27,0x96,0x75,0x67,0x2d,0xe6,0xc0,0x5b,0x9a,0xd1,0x29,0x63,}, + {0xd2,0x54,0x62,0x5d,0x91,0x8c,0xe0,0x28,0x2c,0x52,0xc6,0x6d,0xb0,0xa0,0x47,0x62,0x67,0xba,0x9a,0x59,0x40,0x34,0xe5,0x72,0x66,0xf2,0xe6,0xe0,0x6a,0x9b,0xc9,0x56,0xe2,}, + {0xdc,0x2a,0x7a,0x09,0x13,0xa5,0xe1,0x49,0x25,0xb6,0xff,0x75,0x53,0x21,0xfd,0xb6,0xb3,0x57,0x65,0x61,0xec,0x49,0xd0,0xd1,0x59,0x1b,0x52,0x24,0xd7,0x6e,0xb6,0x5c,0xb9,}, + {0xdc,0xad,0xbc,0xa1,0x19,0xa6,0xc7,0x47,0x27,0x55,0x9d,0x97,0xe7,0xac,0x49,0x2d,0x92,0xc6,0xb9,0x7f,0x6d,0x43,0x5c,0x6a,0x1a,0x28,0x55,0xce,0x61,0x60,0x77,0x34,0xcc,}, + {0xdc,0x69,0xc4,0x18,0xdb,0xa1,0xd0,0xba,0x4d,0x2d,0x6c,0x7b,0x72,0xb4,0x3f,0x1a,0xae,0xd6,0x94,0x5e,0xd3,0xa9,0x60,0x71,0xc5,0x11,0xb4,0xce,0x20,0x40,0x14,0xcc,0x9d,}, + {0xd8,0x52,0x41,0x90,0xaa,0xe8,0x68,0xed,0xec,0x93,0x4a,0xe4,0xa6,0x43,0x6f,0xb6,0x95,0xf5,0x1b,0xee,0x22,0xd9,0xbc,0xeb,0xa2,0xda,0xd8,0x00,0x94,0x52,0xad,0xe4,0xaa,}, + {0xd6,0x1b,0x82,0x39,0x21,0xf0,0x40,0xd4,0xe2,0x54,0x44,0x9b,0x68,0xe0,0xb7,0x1c,0x74,0xc7,0x23,0xba,0xa0,0x44,0xda,0x31,0x0a,0x21,0xbd,0xe9,0x36,0xdb,0x6d,0xb7,0x3f,}, + {0xd5,0xe1,0x48,0x6a,0x29,0x53,0x6b,0x48,0xec,0xb2,0x89,0xd0,0x74,0xc9,0x46,0x2c,0x62,0xa4,0xe3,0x5c,0xc6,0x28,0xdc,0x21,0xd4,0x7b,0xd4,0xcc,0x49,0x24,0x49,0x12,0x5f,}, + {0xd3,0x5d,0x7d,0x3d,0xd8,0x5b,0x2b,0xdd,0x9d,0xb2,0x37,0x00,0x51,0x49,0x05,0xa2,0xbf,0xe5,0x09,0xa4,0xac,0x74,0xf3,0x73,0x5a,0xd8,0x57,0x69,0xf3,0xa4,0x72,0xd8,0xd8,}, + {0xd5,0x1a,0x63,0xfe,0xe8,0xaf,0xd0,0xba,0xa4,0x4e,0x6e,0xd3,0x5b,0x93,0x25,0x15,0xa2,0xcb,0x32,0x57,0x51,0xc8,0x99,0x78,0x67,0x33,0xb1,0x4f,0xa9,0x21,0x1c,0xa9,0x5c,}, + {0xd3,0xd9,0x75,0x2e,0x58,0x5b,0x2f,0xe4,0xdc,0x4d,0xf5,0x22,0x59,0x30,0x63,0x21,0x6d,0xae,0xdd,0x5a,0xae,0x3b,0xd3,0x50,0xa4,0xe3,0xb4,0xcd,0xf9,0xdc,0x66,0x96,0x9c,}, + {0xdb,0x1b,0x70,0xc8,0xae,0x59,0xb0,0x6b,0x6d,0x8e,0x30,0x4a,0x59,0x31,0x8d,0x54,0x49,0x37,0x3b,0x6b,0x52,0xd9,0x78,0x8a,0x3b,0x6c,0x70,0x6f,0xc8,0xf3,0xb3,0x35,0xd9,}, + {0xdd,0xa8,0xe3,0x58,0xda,0xa9,0x52,0xf5,0x9e,0x91,0xfb,0x2f,0xdd,0x70,0xcb,0xc6,0xa2,0x37,0x1d,0x6e,0xf4,0xab,0x63,0x4d,0xa6,0x58,0xec,0x8f,0x2a,0x84,0x51,0x07,0x08,}, + {0xdd,0x67,0xe2,0xd5,0x1a,0x9a,0x0d,0x8a,0xf3,0x89,0xb9,0xf0,0x8f,0x2e,0x33,0x2d,0x62,0x73,0x0c,0x5c,0x8c,0x26,0xec,0x20,0xb3,0x19,0x8e,0xd0,0x35,0x62,0x51,0x34,0x90,}, + {0xd5,0x15,0x6a,0x3b,0x32,0x86,0x8e,0x24,0x93,0x73,0xfd,0x99,0x56,0xa9,0x86,0xdc,0xf9,0xc8,0xa1,0xc2,0x8d,0xe8,0x54,0x5e,0xcd,0x5e,0x57,0x10,0x56,0xa3,0x2f,0xd2,0x94,}, + {0xd3,0xd9,0x7c,0xb5,0xe1,0x58,0xcd,0xfa,0x92,0x28,0xf6,0xac,0xb3,0x4f,0x5f,0x23,0x69,0x2e,0x24,0x5a,0xce,0x5b,0x52,0xba,0xb2,0x24,0xbe,0xce,0xc8,0xe5,0x89,0xca,0x90,}, + {0xd4,0xdc,0x5c,0x3a,0xa0,0xea,0xcc,0x55,0xf4,0xbf,0x8b,0x71,0x5f,0x6d,0x21,0x14,0x8e,0x59,0x22,0x5e,0x8b,0xca,0x60,0x62,0xdb,0x24,0x58,0x85,0x5c,0xe9,0x20,0x15,0xa5,}, + {0xd2,0x1f,0x9c,0xfe,0x28,0xbc,0x05,0x6f,0x6d,0x8c,0x88,0x53,0xce,0x41,0xc3,0x7e,0xb1,0xa0,0x66,0xa8,0x01,0x05,0x54,0x9f,0x6a,0xd4,0xd8,0x60,0xd9,0x5b,0x7f,0x58,0x90,}, + {0xd7,0x17,0x62,0x22,0x22,0xde,0x20,0xa6,0x98,0x86,0xab,0x19,0xe8,0x00,0x92,0xa5,0xaa,0x06,0x9b,0x8e,0x80,0x16,0x8c,0x11,0xa3,0x14,0xdd,0x60,0xe5,0x14,0x6a,0xd5,0x5a,}, + {0xda,0xa6,0xc4,0xe9,0xd9,0xe3,0xe7,0x46,0xda,0x8e,0x36,0xa0,0x57,0xe8,0xa0,0xe8,0x31,0x8a,0x97,0x5d,0xac,0x83,0x1b,0x3c,0xc5,0x89,0x5a,0xcd,0x27,0x8a,0x0e,0x87,0x53,}, + {0xd9,0xe7,0xdb,0x6c,0xd9,0x9c,0xac,0x25,0x4a,0x6b,0x30,0xdc,0xa2,0xab,0xb1,0x4e,0x11,0xb2,0xa2,0xee,0xeb,0xd3,0x4d,0x0d,0x95,0x42,0x81,0x2b,0xec,0x0c,0x6d,0xa4,0x9e,}, + {0xd9,0xa9,0xca,0x6c,0xda,0x5a,0xec,0xc6,0xa2,0x5d,0x38,0xd4,0xd4,0x88,0x97,0xd2,0x71,0x2e,0x3c,0x99,0x68,0xb4,0x6d,0x5c,0x36,0x96,0xd6,0xac,0x48,0xd2,0x6e,0x54,0x1b,}, + {0xd5,0x9f,0x91,0x79,0xd8,0xa6,0xa6,0x45,0xcb,0x6a,0x2b,0x55,0xa0,0xc7,0x17,0x35,0xcf,0x5d,0xe0,0x5b,0xac,0xa0,0x2e,0xd7,0xe9,0x61,0x55,0x54,0xb4,0xbb,0x51,0xb9,0x24,}, + {0xd5,0x62,0x82,0xae,0x18,0x5f,0x30,0x56,0xa8,0x5d,0x4a,0xe4,0xbf,0x30,0xc9,0x2b,0x68,0x77,0x24,0x5e,0xed,0x37,0xb5,0x60,0x13,0x3d,0xbe,0xcd,0x47,0x25,0xd9,0xa0,0x0b,}, + {0xd4,0x9b,0x7b,0x32,0x28,0xbc,0x8b,0x7f,0x6a,0x9b,0x4a,0xd3,0x5f,0xac,0xdb,0xc0,0x75,0xb6,0xdb,0x61,0x4d,0x26,0x97,0x4e,0x47,0x63,0xbf,0x0a,0x56,0x9a,0x12,0x39,0x1b,}, + {0xd4,0x98,0xa2,0xe9,0x59,0xea,0x46,0xf2,0xd6,0x6a,0x14,0xe4,0xba,0x02,0xdd,0x3d,0xd7,0x6c,0xda,0xcc,0x22,0x51,0x75,0xb6,0xb9,0x23,0xee,0x20,0xad,0xe4,0xfb,0xef,0x63,}, + {0xd5,0x17,0x61,0x61,0xa9,0xde,0x40,0xa7,0x1e,0x8f,0x4b,0x1b,0x9e,0x81,0x32,0x8e,0xc9,0x92,0x9c,0x60,0x00,0xc4,0x5b,0x51,0xc8,0x1a,0x92,0xc0,0xc6,0x63,0x75,0xa8,0xdc,}, + {0xd8,0x66,0xba,0x91,0xa1,0x81,0xcd,0x36,0xdc,0x6e,0xbe,0x24,0x50,0x6d,0x3b,0x7d,0x6d,0x29,0x25,0x64,0x29,0xe6,0x43,0x4b,0x14,0x91,0x8f,0x0c,0x28,0x43,0xa9,0x32,0x93,}, + {0xd8,0xe9,0xd3,0x14,0x69,0x5a,0xc9,0x96,0xb8,0xa9,0x58,0xd3,0x88,0xa7,0xb2,0xc2,0x84,0x4a,0xa0,0xa0,0xa6,0x07,0x55,0x4a,0x0a,0x25,0x9c,0xc6,0xa7,0xba,0xd9,0x4b,0xa6,}, + {0xd6,0x1f,0x58,0x0c,0xa1,0xaa,0x87,0x5c,0xfd,0x57,0x67,0x24,0xd6,0x01,0x63,0xb2,0xba,0xc9,0x64,0xb4,0x01,0x4d,0x5a,0x81,0xd9,0x13,0xdc,0x40,0xa8,0xd3,0x86,0x38,0xe2,}, + {0xd6,0x15,0x59,0x99,0x1b,0xae,0xa0,0xb4,0x91,0x73,0x07,0x13,0xdc,0x80,0xc8,0xdc,0x2a,0x38,0xdb,0x70,0x40,0x36,0xdb,0x6e,0x36,0xdb,0xc0,0x20,0x46,0xdb,0x6d,0xb7,0x23,}, + {0xd0,0x5f,0xa2,0xe1,0x59,0xea,0x00,0x38,0xdc,0x8d,0xb6,0xdb,0xd4,0x00,0x39,0x24,0x92,0x49,0x24,0x8c,0x00,0x49,0x24,0x92,0x49,0x24,0xba,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x60,0xa2,0xa1,0x5a,0x8e,0x00,0x49,0x24,0x92,0x49,0x24,0x70,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x6e,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd8,0xdc,0x71,0x50,0x50,0x50,0x20,0x36,0xdb,0x6d,0xb4,0x9b,0x50,0x20,0x26,0xdb,0x6d,0xb6,0xdb,0x9b,0xc1,0xb6,0xdb,0x6e,0x48,0xd8,0x54,0x21,0xf8,0x9b,0x6d,0xb6,0xe3,}, +}; +static const gsm_frame gsm_data_padesat[] = { + {0xd8,0xa0,0x7b,0x15,0x1a,0x50,0x20,0x49,0x24,0x8e,0x5d,0x3c,0x58,0xa0,0x35,0x62,0xae,0x07,0x9a,0x54,0xa0,0x12,0x74,0x75,0x36,0x49,0xa4,0xa0,0x68,0xa9,0x73,0x27,0x6e,}, + {0xd5,0x18,0x81,0x14,0xd9,0xd2,0xa0,0x57,0x5b,0xc5,0xd7,0x5b,0xe2,0xa0,0x4d,0x6c,0xd6,0x27,0x3c,0xbc,0xc0,0x37,0x15,0x71,0xea,0xe1,0x92,0xc0,0xd8,0x5b,0x72,0x48,0xd5,}, + {0xd4,0xea,0xaa,0x6d,0xa0,0x89,0x40,0x1d,0x0c,0x15,0xc2,0xf6,0xa3,0xae,0x4b,0xdc,0x72,0xdb,0x62,0xb3,0xf4,0x49,0x24,0x8d,0xb4,0x42,0x54,0xd9,0x48,0xe4,0x6d,0xa4,0xfa,}, + {0xd4,0x70,0xcb,0x9a,0x29,0x55,0x54,0xd7,0x5b,0xf2,0xc8,0x45,0x59,0x31,0xbb,0x32,0xba,0xe5,0x00,0xaa,0x95,0xf6,0xe4,0x92,0xdb,0x22,0x57,0x10,0x9e,0x6d,0x92,0x4b,0x5b,}, + {0xd4,0xed,0xcb,0xda,0x28,0xad,0xf1,0xb8,0xb3,0x76,0x05,0x1d,0x61,0x6f,0x84,0x9a,0xc7,0x19,0x24,0xc0,0xcf,0xe8,0xc1,0x02,0x53,0xdc,0xc3,0xcd,0xe3,0x4e,0x0d,0xca,0x38,}, + {0xd5,0x65,0xab,0x5d,0xe0,0x63,0x2c,0xd8,0xad,0x3e,0x16,0x81,0x63,0xaf,0xd1,0xa2,0xcd,0x72,0x99,0xc0,0xb3,0x15,0xdb,0x92,0x4b,0x2c,0xbe,0xb1,0xb4,0x81,0xf5,0xb9,0x25,}, + {0xd1,0xa2,0x9b,0x76,0x22,0xbc,0x4c,0x46,0xca,0x81,0x48,0xec,0xc2,0x45,0x56,0x90,0x72,0x7a,0xaf,0xb6,0x62,0x08,0xfc,0x45,0xb0,0xd9,0xb2,0x03,0x7f,0x1c,0xd2,0xc6,0xc9,}, + {0xd0,0xe5,0xdb,0xea,0xa1,0xc2,0x81,0x09,0x9f,0x4b,0xbd,0x73,0x5e,0x81,0xc8,0x95,0x73,0x61,0x6b,0xc2,0xc1,0xa4,0xeb,0x5c,0xcc,0xdb,0x68,0xc0,0xd7,0xd9,0x4c,0x9c,0xa6,}, + {0xd6,0x5b,0x89,0x6a,0x29,0xd1,0xa9,0x47,0x2d,0xb6,0xc6,0x98,0x51,0x91,0xf0,0xea,0x92,0x5b,0x23,0x64,0xb0,0x20,0x3e,0x51,0xcb,0x5e,0x61,0x11,0x34,0x5a,0x5d,0x29,0x1c,}, + {0xd5,0xe3,0x52,0x6a,0x60,0x63,0x50,0x4b,0x1b,0x64,0xf9,0x23,0xc3,0x30,0x49,0x24,0x72,0x34,0x7c,0xc3,0x6c,0xc7,0x2d,0x98,0xb6,0xc1,0x61,0xab,0x0c,0x95,0x96,0x13,0xf4,}, + {0xd4,0xdc,0x83,0x2d,0xd8,0x63,0x2e,0x56,0x1b,0xb2,0x47,0x64,0xc6,0xce,0xb6,0xa8,0x36,0x3b,0x24,0xc8,0xcf,0x59,0x5a,0x70,0x29,0x5c,0xda,0xce,0xb9,0x6d,0x8d,0x96,0x84,}, + {0xd6,0x16,0x79,0xa9,0x30,0x6d,0x0b,0x7a,0xa5,0x7e,0x46,0x58,0xc4,0xcc,0xc0,0xa1,0xb6,0xcc,0xcb,0x5b,0x07,0x1b,0x0d,0x85,0x51,0x2d,0x9e,0xcb,0x64,0xf1,0x09,0xa5,0xd2,}, + {0xda,0x29,0xd3,0xb0,0x69,0x79,0x6c,0x55,0xda,0x71,0x40,0x2f,0x53,0x2e,0x91,0x24,0xae,0x4d,0x77,0x5d,0xd0,0xbd,0xa7,0x6e,0xb9,0x5d,0x6d,0x70,0xc7,0x64,0x7d,0x2b,0x46,}, + {0xda,0x29,0xdc,0x71,0xa0,0xac,0xcf,0xf3,0xe3,0xf9,0x5c,0xfb,0x8e,0xd0,0xaf,0x8e,0x8f,0xa5,0xa4,0x5a,0xce,0x9e,0xd0,0xd2,0x28,0x9b,0x6a,0xb0,0x46,0x9b,0x3c,0xab,0x60,}, + {0xda,0x28,0xd4,0x31,0xf2,0xe4,0xf1,0xe6,0xd4,0x4e,0x51,0x23,0x59,0x70,0x64,0x0f,0x68,0x58,0x67,0x7e,0xb0,0x95,0x94,0x55,0x8b,0x58,0x9a,0x8f,0xf8,0xab,0x2e,0xe0,0xd4,}, + {0xda,0xa8,0xd4,0x7a,0x2a,0x80,0xef,0x21,0x16,0x71,0x18,0xb8,0xe0,0xd1,0x3b,0x1c,0xc0,0xd3,0x92,0xc7,0x2d,0xb5,0x92,0xd4,0x79,0x0b,0xae,0xb1,0x38,0xe4,0x32,0x95,0xe1,}, + {0xda,0xe8,0xbc,0x72,0x6b,0xc2,0x2e,0xd9,0x19,0x72,0x21,0xc3,0x78,0xac,0x60,0x98,0x30,0x42,0xa0,0x76,0x8c,0xe8,0xc4,0x9d,0x48,0xf7,0xc6,0xab,0x2f,0x43,0x4e,0x83,0x21,}, + {0xd9,0x27,0xe2,0xed,0xab,0xbe,0xc8,0x59,0xf6,0x45,0xa0,0xe2,0xe0,0x69,0x45,0x0c,0x8e,0xa4,0x07,0xd8,0xc9,0x10,0xd4,0x6d,0x1c,0xdc,0x5c,0xea,0x07,0x4a,0x8b,0xeb,0x74,}, + {0xd4,0x68,0xba,0x6e,0x10,0xc4,0x88,0x9a,0x8b,0x4d,0xab,0x67,0xb5,0x4a,0xca,0xed,0x6d,0x00,0x6c,0x59,0xd0,0xcb,0x24,0x91,0xb8,0x47,0x52,0xcd,0x87,0xe4,0xde,0x5f,0x2b,}, + {0xd5,0x2a,0xbb,0x61,0xe0,0x65,0x50,0x07,0x8e,0x53,0x29,0xba,0x65,0x91,0xd6,0x92,0x1d,0x2b,0x1e,0x67,0x72,0xcb,0x2a,0x88,0x57,0x1d,0xcb,0x53,0xc9,0x26,0x71,0xb6,0x57,}, + {0xd5,0x2c,0xaa,0xaa,0x18,0xd2,0xd3,0x09,0x65,0x77,0x48,0xca,0x63,0x6f,0x83,0xcc,0xb5,0xcb,0x72,0xc5,0x50,0x3c,0x09,0xe6,0xc9,0x5d,0x65,0x8e,0x26,0x7a,0x52,0x49,0x13,}, + {0xd5,0x2e,0x9a,0x31,0xd8,0x63,0x30,0x47,0x25,0x91,0xc4,0x0f,0x65,0x0c,0x7b,0x64,0x7a,0xc8,0xd8,0xc7,0x4d,0x0c,0x5c,0x76,0x4b,0x2c,0xc7,0xc9,0x1b,0xb2,0x22,0x0d,0x1e,}, + {0xd5,0x2d,0xb1,0xb5,0x60,0xc7,0x8b,0xae,0x6b,0x81,0x0a,0x65,0xc7,0xcc,0xb8,0xea,0x95,0x47,0x17,0xc1,0x6c,0xe5,0x85,0xda,0xc9,0x00,0x63,0xae,0x70,0xe2,0x95,0x53,0x64,}, + {0xd4,0xee,0x9a,0x6d,0x20,0x65,0xcc,0x7c,0xd7,0x8a,0xb3,0x54,0xc7,0xcb,0x9c,0x3f,0x8f,0xb9,0x0c,0xc9,0xaf,0x48,0x9a,0x85,0xbb,0xc5,0xc9,0xec,0xd8,0xea,0x95,0x48,0x5f,}, + {0xd5,0x2f,0x9a,0xed,0x68,0x61,0xd0,0x75,0x1b,0xaa,0xbb,0x62,0xc5,0xef,0x32,0x32,0x6e,0x57,0x32,0x63,0xb0,0x49,0x1b,0x7d,0x2c,0x9e,0xc3,0x52,0x47,0x65,0x71,0x87,0x1d,}, + {0xd4,0x29,0xf1,0xe5,0x10,0xc4,0xee,0x4b,0xa2,0xb2,0x1a,0x11,0x6e,0xed,0xdd,0x9c,0x95,0xc8,0x87,0xc7,0x0e,0x17,0xe5,0x8e,0x28,0xe4,0x62,0x8f,0x56,0x98,0x52,0x4b,0x24,}, + {0xd3,0x28,0xc9,0xa1,0x48,0xc6,0xcc,0x49,0x19,0x61,0x59,0x2c,0xc6,0xcb,0x4a,0xdc,0x69,0x40,0xf3,0xc0,0x87,0xfb,0x9d,0x6d,0xb7,0x54,0xc6,0x05,0xa0,0xe6,0xfa,0xb6,0xdb,}, + {0xd3,0xd7,0xa2,0xdd,0xa2,0xc4,0x41,0x43,0x52,0x72,0x67,0x63,0xc2,0x21,0x56,0xee,0x93,0x3a,0xe9,0xd4,0x60,0xa5,0x14,0x71,0x4e,0xe9,0xea,0xa1,0x77,0x62,0x6d,0x38,0xdc,}, + {0xd6,0x56,0x71,0x95,0x21,0x56,0xe0,0xbf,0x63,0x6d,0xb9,0x2c,0xba,0x40,0xcb,0x5e,0x72,0xa5,0x23,0x74,0xa0,0x49,0xcc,0x95,0x54,0x92,0xc6,0xc0,0x3a,0x8e,0x6e,0xa9,0xec,}, + {0xd8,0xa7,0xba,0xa5,0xe3,0xea,0xe0,0x27,0x9c,0xcf,0x79,0x33,0x57,0xc2,0x49,0x2d,0xd6,0xed,0x77,0x55,0xaf,0xde,0xa4,0x72,0xc9,0x6e,0x54,0xee,0xce,0xdc,0x72,0x46,0x92,}, + {0xd7,0xe8,0x8a,0x35,0x51,0x6e,0x29,0xa4,0x8a,0x04,0x14,0x91,0xe2,0xec,0x24,0xd4,0xa0,0xb5,0x7d,0xe7,0x4f,0xc0,0xe5,0x8a,0x27,0x24,0x68,0x43,0x24,0xc9,0xf1,0xa5,0x1d,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0x96,0x02,0xf8,0xd2,0x8e,0xc6,0xdc,0x50,0x00,0x48,0xe4,0x8e,0x49,0x23,0x50,0x00,0x49,0x1c,0x92,0x49,0x24,0xd4,0x20,0x47,0x24,0x91,0xc9,0x1c,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0xa2,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0xd9,0x92,0xa1,0x1a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_sedesat[] = { + {0xd3,0xd7,0x50,0xd8,0xd9,0x50,0x20,0x49,0x2c,0xb6,0x58,0xbc,0x55,0x20,0x17,0x5d,0x4d,0xb7,0x24,0x63,0x20,0x45,0x29,0x8a,0x4c,0xb5,0x5c,0x80,0x29,0x2a,0xb7,0x36,0xe2,}, + {0xd7,0x25,0x50,0xd0,0x19,0x67,0xa0,0xca,0xdd,0xb3,0x5d,0x2c,0xbf,0xa0,0xf6,0xfc,0xb5,0xba,0x1b,0x82,0xe1,0x48,0xad,0x4a,0x27,0x20,0xb7,0xe2,0xc2,0xe2,0x98,0x76,0xed,}, + {0xd9,0x33,0xd9,0x65,0x10,0x7b,0xc4,0x4b,0x5e,0x84,0x39,0xc5,0x6d,0xa9,0x86,0x99,0xa5,0x1b,0x61,0x60,0xe8,0x26,0xe3,0x80,0xd4,0x17,0xaf,0x26,0x93,0x8a,0x44,0x34,0x3b,}, + {0xda,0x32,0xf1,0x18,0xc9,0x9d,0xcd,0x85,0x5a,0x8e,0xa8,0x0c,0x8f,0x8d,0x0b,0x12,0xae,0x1a,0x22,0x50,0xce,0x3c,0xc4,0x8a,0xa8,0xe0,0xc5,0x2d,0xb5,0x5e,0x6b,0x0c,0x9a,}, + {0xda,0x6e,0xfb,0x90,0x50,0x87,0x4b,0xc0,0x8b,0x8b,0x95,0x90,0xa7,0x30,0xe5,0x11,0x6e,0x87,0x9c,0x5e,0xcd,0x18,0xa2,0x70,0xc3,0x58,0xa8,0xd1,0x57,0x06,0x88,0x74,0x63,}, + {0xda,0xae,0xfb,0x90,0x91,0xd9,0x71,0xc3,0x59,0xac,0x64,0xab,0x8a,0xb1,0xa5,0x15,0x4d,0x2a,0x22,0xc2,0xcf,0xc2,0xcf,0x29,0x4a,0x6b,0x8f,0x50,0x35,0x55,0x59,0xbb,0x17,}, + {0xda,0xec,0xfb,0xd4,0x50,0xc0,0xce,0x07,0x33,0x36,0x05,0x76,0x7e,0xce,0xd7,0x64,0x92,0x65,0xdf,0xda,0xce,0xda,0xf7,0x9a,0xed,0x27,0x5e,0xb0,0x9b,0xdc,0xd5,0xd9,0x2c,}, + {0xda,0xad,0xfa,0x8c,0x21,0x7a,0xac,0x0d,0x3a,0xd7,0x17,0x1c,0xaa,0x8c,0x0f,0x0b,0x72,0x9c,0xdd,0xf0,0x4c,0x1f,0x9c,0x8a,0x55,0x2d,0xe6,0xce,0xd8,0x9f,0xda,0xd9,0x33,}, + {0xd6,0x5c,0x6a,0xee,0x60,0x59,0x4e,0x37,0x3f,0xdb,0xfd,0x6a,0x5b,0x32,0x24,0x51,0xed,0xd6,0xe4,0x53,0xd3,0xc9,0x11,0xf0,0xa9,0x2c,0x57,0x30,0xba,0xe2,0x3d,0x58,0xdd,}, + {0xd6,0x1e,0x7b,0x6d,0xf0,0xad,0x8f,0xd6,0xfc,0x22,0xa6,0xea,0x57,0xae,0x2d,0xbb,0x90,0xe0,0xec,0x57,0x50,0xbb,0x26,0x49,0x2e,0x95,0xb0,0xf0,0x37,0xed,0x64,0x84,0x23,}, + {0xd5,0x1c,0x6b,0x76,0x58,0xb4,0xec,0xe3,0x37,0x68,0x22,0x1f,0xb4,0xec,0x39,0x15,0xd4,0x36,0xc0,0x5b,0x69,0x72,0xe3,0x97,0x64,0xd7,0xb5,0x48,0x03,0xcc,0xc9,0xed,0xd3,}, + {0xd3,0x9c,0x73,0x79,0xa0,0xb5,0x27,0x87,0x0f,0x37,0xb2,0xe5,0xb4,0xaa,0x32,0x95,0xac,0xce,0xa3,0xb8,0x44,0xb6,0xc1,0x45,0x6d,0xef,0xac,0x24,0xc8,0xd1,0x00,0x87,0xa6,}, + {0xd1,0x23,0xe4,0xb1,0xa3,0xbc,0x23,0x6f,0xb4,0x48,0x92,0xa4,0xba,0x01,0x04,0x93,0xad,0xa6,0xe2,0xc2,0x40,0xb9,0x16,0x48,0x96,0xdb,0xce,0x60,0x99,0x59,0x96,0x56,0x51,}, + {0xd8,0xa5,0x8a,0x29,0x5a,0xb5,0x22,0xa0,0x02,0x4e,0x36,0x88,0x8b,0xaf,0xb6,0xdb,0x6d,0xb7,0x97,0x57,0x51,0x71,0x63,0x97,0xa2,0xdd,0x66,0x4c,0x32,0x12,0x40,0xb4,0x93,}, + {0xd4,0xdb,0x6c,0xae,0x10,0xe8,0x6e,0x36,0xd2,0x24,0x17,0x6c,0xf0,0xb1,0xbb,0x1b,0x8c,0xb4,0xfc,0x5a,0xf0,0x46,0xee,0xad,0xb6,0x9f,0x68,0xef,0xc5,0x14,0xba,0x95,0x02,}, + {0xd5,0xda,0x7c,0x2d,0xa0,0xb5,0x8c,0x9e,0x0c,0x8e,0x4f,0x23,0x5b,0xcc,0x02,0x3c,0x71,0xb8,0xdc,0x5b,0xe7,0x8f,0x28,0x72,0xaf,0x12,0x5b,0xc9,0xca,0xdc,0xa2,0x47,0x2a,}, + {0xd4,0xd9,0x83,0x6d,0xe8,0x5f,0x4e,0xbb,0x54,0x81,0xe6,0xa4,0xbd,0x4d,0xda,0xa4,0x4f,0x16,0xf9,0x5f,0x0a,0x0b,0x9d,0xb2,0x38,0xc2,0xc0,0xcd,0xe4,0xad,0xba,0xb7,0x20,}, + {0xd5,0x19,0x7a,0x22,0x70,0x5d,0x0d,0x06,0xa4,0x72,0x57,0x23,0xc2,0x8d,0xba,0x45,0x8e,0xb9,0x2c,0xb8,0xac,0x46,0xf4,0x03,0x95,0x9c,0xbc,0x8b,0x76,0x94,0x65,0x74,0x62,}, + {0xda,0x66,0xba,0xec,0xa1,0xa7,0x2c,0x3d,0xa4,0x9d,0x86,0x0d,0x85,0x4b,0x9d,0xa5,0x4f,0x97,0x46,0xed,0x0c,0x37,0x5f,0x1f,0xb5,0x74,0x83,0xb1,0x4b,0x5a,0xea,0x38,0xf1,}, + {0xd9,0xa9,0xec,0xb5,0x62,0x6f,0x4e,0xe6,0xf9,0xd3,0x1e,0xeb,0x97,0x31,0xfa,0xf3,0xae,0xe7,0xe4,0x6a,0xae,0x1f,0xa5,0x53,0xc1,0x7c,0xa8,0xcf,0x14,0xa8,0x87,0x32,0x1f,}, + {0xda,0x68,0xdb,0xad,0xa9,0x88,0xb0,0x02,0xb3,0x2a,0x25,0x53,0x7e,0xf0,0x1b,0x06,0x6a,0xc1,0x65,0xa2,0xcf,0x36,0xe0,0x91,0x0e,0x24,0xe3,0x70,0x19,0x30,0x92,0x89,0x1c,}, + {0xda,0x27,0xcc,0xbd,0xe9,0x85,0x31,0x3c,0x2b,0xc9,0x3a,0x94,0x6f,0x30,0x54,0xe9,0x74,0x2c,0x2c,0xd2,0x90,0xc0,0x62,0xc8,0xb8,0xda,0x6c,0xed,0x33,0x53,0xe7,0xc1,0x7d,}, + {0xda,0xaa,0xc4,0x71,0xea,0xae,0x8d,0x8e,0xcb,0xd4,0x45,0x1b,0xdc,0xad,0x17,0x4b,0x8c,0xb3,0x18,0xb4,0xac,0xd4,0x45,0x8c,0xc1,0xe9,0x64,0xac,0xa7,0xe3,0x91,0x91,0x28,}, + {0xd9,0xe5,0xe3,0xe4,0xe2,0xa8,0x09,0x16,0x83,0x72,0xb4,0xc8,0xea,0xea,0x3e,0x2a,0xca,0x37,0x58,0xce,0x88,0xa9,0x88,0xa2,0x42,0xc2,0x66,0xc7,0x3c,0xe0,0x94,0xe4,0xa9,}, + {0xd4,0x68,0xb2,0x61,0xd0,0xda,0xc6,0xc8,0x70,0x38,0x4e,0xb5,0xf0,0xab,0xc9,0x34,0x94,0xa0,0x6f,0x51,0xb1,0xc9,0x24,0x8e,0x36,0x8f,0x56,0xd0,0xb9,0x5d,0x92,0x58,0xa8,}, + {0xd4,0xea,0xbb,0x26,0x20,0x5f,0xef,0x51,0x23,0xae,0xae,0xe6,0x5f,0x12,0xb4,0x45,0x6a,0x56,0xf6,0xbf,0xb1,0xc7,0x09,0x1c,0x48,0xf3,0x63,0x70,0x67,0x62,0x60,0x74,0xe3,}, + {0xd4,0x6d,0xb3,0x65,0xe0,0xc1,0x10,0x4b,0x63,0xcd,0xd0,0x23,0xba,0xd0,0xcc,0xac,0x9d,0xba,0x40,0xbd,0x0f,0x41,0x9c,0x8e,0x59,0x5c,0xbd,0xac,0xdc,0x3a,0x86,0xb5,0x47,}, + {0xd4,0xac,0xb3,0x69,0xa0,0x5f,0xe9,0x18,0xd1,0x18,0xbe,0x56,0x61,0xb0,0xc6,0xdb,0x6f,0x99,0x23,0x5f,0xad,0xe7,0x24,0x75,0x53,0xd4,0x5f,0x70,0xc9,0x24,0x91,0xb4,0x4f,}, + {0xd4,0xee,0xaa,0xad,0xa1,0xbd,0x0c,0x01,0x1d,0x8f,0x69,0x5b,0xbf,0x30,0x06,0xdb,0xce,0x4b,0x9c,0xbd,0xac,0xca,0x87,0x33,0xa9,0x5b,0xbb,0xac,0xf7,0x1c,0x1d,0xa8,0xaa,}, + {0xd4,0xed,0xca,0x2d,0x61,0x61,0xc9,0xb8,0xe1,0xd5,0x8e,0x25,0xbf,0xa9,0x13,0x31,0x8d,0xd3,0xee,0xbf,0x2d,0xbb,0x56,0xba,0x47,0x00,0xbf,0x8e,0x8e,0xeb,0xb1,0xba,0xe3,}, + {0xd4,0xef,0xa3,0x69,0x68,0x5d,0x50,0xa1,0x9b,0x72,0x39,0x2c,0xbd,0x8e,0x26,0xdb,0xe2,0xb7,0x1c,0x5d,0xcd,0xbd,0x25,0x82,0xd4,0x9f,0x5e,0xf1,0x59,0x65,0x4c,0x15,0x24,}, + {0xd4,0xa8,0xd9,0x21,0x58,0xbc,0xce,0xdd,0x6c,0xb1,0xa6,0x2b,0xb8,0xef,0x3e,0xeb,0x72,0x38,0xa2,0xbd,0x6f,0x78,0xec,0x6d,0xb8,0xda,0x5f,0x4c,0x40,0x3b,0x5a,0x3b,0x24,}, + {0xd3,0x26,0xb9,0x5e,0x09,0xbc,0xec,0x31,0x01,0xd1,0xd7,0x24,0xbe,0x89,0xa6,0x99,0x81,0xf7,0xa3,0xc2,0x45,0x58,0xe9,0x48,0x01,0x1f,0xd2,0x44,0xfd,0xa4,0x8d,0xb2,0x4c,}, + {0xd3,0x1c,0xb3,0x19,0xeb,0xc8,0x41,0xe5,0xf5,0xba,0x48,0xe8,0xc4,0x41,0x1f,0x64,0xa9,0xc6,0xe3,0xb4,0x00,0xe7,0x34,0x6f,0x17,0x14,0xb4,0xc0,0x39,0xf4,0xc7,0x98,0xdd,}, + {0xd5,0xd5,0x71,0x98,0x52,0xee,0xc0,0x63,0x55,0x8f,0xb9,0xe1,0x94,0xa0,0xb4,0xdc,0x92,0x49,0x9d,0x58,0xc0,0x4a,0xc8,0x62,0xba,0x65,0xa8,0x80,0x57,0x9b,0x68,0xaf,0x1c,}, + {0xd8,0x67,0xab,0x2d,0x8a,0xd8,0xa0,0x38,0xab,0x6e,0xc9,0xa6,0xdd,0x41,0x6b,0x6f,0xff,0xff,0xbe,0x59,0xce,0x49,0x2c,0xe9,0x57,0x2c,0x53,0xe7,0xbf,0x2a,0xa5,0xac,0x4f,}, + {0xd8,0x25,0xb0,0xe1,0x19,0x56,0x07,0x82,0x0a,0x4c,0x04,0xc1,0xae,0xc7,0x04,0x89,0x43,0x83,0x9b,0xcc,0x01,0xae,0x8b,0x89,0x4b,0x24,0xf0,0x00,0xeb,0xac,0x92,0xfa,0xf5,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0xe4,0x01,0x39,0x23,0x86,0xd4,0xdb,0x50,0x20,0x49,0x24,0x6e,0x39,0x24,0x50,0x20,0x46,0xdb,0x92,0x47,0x1c,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0xe6,0x00,0x46,0xdc,0x92,0x38,0xe4,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_sedmdesat[] = { + {0xd2,0x54,0x8a,0xa9,0xa2,0x50,0x20,0xc9,0x25,0x96,0x69,0x5d,0x53,0x00,0x75,0x1e,0x4d,0xb3,0x13,0x64,0xc0,0x38,0x63,0x31,0x40,0xcc,0x7e,0xc0,0xb4,0xda,0x89,0xb2,0xa4,}, + {0xd9,0x5b,0x49,0xcd,0x59,0x59,0xa2,0x16,0x9a,0x69,0x21,0x51,0x55,0x43,0xb8,0xa2,0xce,0x55,0x38,0x55,0xc8,0x48,0xee,0x0b,0x37,0x5b,0x5c,0x64,0x07,0xd1,0xd0,0xcd,0x52,}, + {0xda,0x62,0xe3,0xa5,0xab,0x79,0xc6,0x27,0x62,0xe9,0xfb,0x1e,0x63,0x08,0x6f,0xbe,0x56,0x6f,0xb0,0x6b,0x29,0xfe,0x55,0xd3,0x8a,0xf6,0x5d,0x6c,0x66,0x7c,0xb4,0x4e,0x2d,}, + {0xdb,0x25,0xd3,0xe9,0x23,0x6f,0x2e,0x45,0x29,0x96,0xa5,0xea,0x5d,0x30,0x0d,0xda,0x7d,0xb9,0x92,0x52,0xec,0xd8,0xf6,0xb2,0x61,0xd5,0xe6,0x8e,0xcc,0xed,0x6e,0x38,0xf9,}, + {0xdb,0x69,0xbc,0xe8,0xea,0xe8,0xd0,0xaa,0x66,0x82,0x66,0xeb,0x7b,0x4f,0x70,0x75,0x6d,0x79,0x13,0x94,0xac,0x70,0x9d,0xa6,0x3a,0xb2,0xde,0xaf,0xf4,0x5d,0x2c,0x4b,0xcc,}, + {0xdb,0x65,0xdc,0x69,0x2b,0xce,0xaf,0x43,0xd8,0x4e,0x5b,0x0b,0x82,0xaf,0x78,0x6d,0x93,0x54,0xe6,0xb3,0x6e,0x3c,0xfb,0x2e,0x97,0x8b,0xa7,0x4d,0x2e,0x45,0x68,0x79,0x52,}, + {0xdb,0x68,0xb4,0xa8,0xe3,0xa6,0xcd,0x18,0xd4,0x0d,0xea,0xa4,0xce,0xae,0x23,0x2a,0x50,0x48,0xe3,0xb0,0xac,0x67,0x13,0xae,0x44,0x14,0xa8,0xcc,0x4c,0x93,0xa4,0x67,0xfd,}, + {0xd4,0x24,0x82,0x32,0xd8,0x76,0xc8,0x27,0x74,0x1a,0x7d,0x1f,0xa8,0xae,0x49,0x25,0x89,0x22,0xbe,0xe5,0xd2,0x6d,0x1b,0x60,0xf6,0xa4,0x55,0xae,0x5a,0xa4,0x96,0x2c,0x1c,}, + {0xd4,0xe7,0x72,0xb2,0x58,0x57,0x51,0x49,0x34,0x70,0x0e,0xab,0xab,0xb0,0x49,0x1e,0xd1,0x80,0xe5,0x55,0xd1,0xca,0xc4,0xad,0x67,0x68,0x64,0xd1,0x3e,0xdd,0xd6,0x10,0x49,}, + {0xd5,0x9e,0x71,0xa7,0x38,0xaf,0x0f,0xdf,0x1a,0x7e,0x39,0x1e,0xb5,0x51,0x2d,0x42,0x9a,0xc8,0xd4,0x5b,0x6d,0x34,0x3b,0x59,0x3b,0x62,0xb8,0x90,0xa9,0x13,0xa1,0xd9,0x5b,}, + {0xd0,0xe5,0xc4,0x7b,0x18,0xb4,0x08,0xda,0x82,0x00,0xea,0xee,0xf0,0x23,0xdb,0xc3,0x88,0x6e,0x43,0xec,0x25,0x68,0xdc,0xad,0xb1,0x73,0xea,0x63,0x6d,0x4a,0xd0,0xb4,0x3e,}, + {0xd0,0xac,0xb4,0x7e,0x10,0xb6,0x42,0xa7,0x2c,0x2a,0xb2,0xd8,0xb2,0xa1,0xfc,0xd4,0xd1,0x39,0x0a,0xb4,0xa1,0x8b,0x6c,0x93,0x05,0x63,0xb2,0x81,0x22,0xb4,0xed,0xcc,0x0c,}, + {0xd8,0xd4,0x6a,0xde,0xb4,0xad,0xd2,0xb6,0xdb,0x6e,0x4f,0xe5,0x5e,0x12,0xf8,0x1d,0x02,0xc9,0x25,0x58,0xd3,0x59,0x1a,0x44,0xf8,0xda,0x5b,0xb3,0x4b,0x2a,0x51,0xc9,0xd0,}, + {0xd2,0x22,0xbb,0x36,0x22,0x58,0x52,0xcf,0x6e,0xb9,0xb2,0x5a,0xaa,0x0a,0xa8,0xd5,0xfb,0x86,0x0b,0xa4,0x6c,0xc4,0xdd,0xb6,0xc4,0x81,0xe6,0x2b,0x53,0x43,0x5b,0xff,0x11,}, + {0xd1,0x29,0xcc,0x2d,0xa9,0x5a,0x87,0x01,0xcd,0x2d,0x6f,0x6d,0xb6,0xc9,0x40,0xfa,0xa9,0xab,0xa5,0xb5,0x68,0x2a,0x1f,0x55,0xc5,0x2d,0xb3,0xa5,0x4c,0x14,0x6d,0xc9,0x5b,}, + {0xd1,0x68,0xd3,0xe9,0xa2,0x5d,0x27,0x5b,0x9b,0x61,0x53,0x95,0xb7,0x06,0x2d,0xaf,0x8d,0x84,0xcd,0x5b,0xa3,0x47,0x1b,0x92,0xaa,0x0e,0x5b,0xa3,0x42,0xe3,0x8d,0x55,0x97,}, + {0xd2,0xa1,0xba,0xaa,0x60,0xb5,0xac,0xca,0xa4,0x91,0xba,0xfb,0xbd,0xad,0xb2,0x7b,0x36,0xcb,0x23,0x5b,0x6d,0x06,0x9f,0x4e,0x4b,0x2c,0x5b,0x6b,0xc6,0xc3,0x59,0x8f,0x25,}, + {0xd3,0x5c,0xa1,0xf2,0xf0,0x5b,0xec,0x57,0x2b,0x6b,0xb2,0xe6,0x5d,0xcd,0x56,0xe2,0x75,0x4e,0x1d,0x5c,0xab,0x76,0xfc,0x84,0x26,0xe0,0x72,0xaa,0x5c,0xaf,0xcd,0xa2,0x8b,}, + {0xd0,0xaa,0xdc,0x6d,0xea,0xc4,0x44,0x86,0xbf,0xd2,0xb6,0x9a,0xb0,0x41,0x85,0x6f,0x8c,0xa8,0x93,0xe8,0x02,0xc4,0x91,0x9e,0x39,0x6c,0xea,0x61,0x42,0x92,0x2b,0x67,0x2d,}, + {0xd2,0x21,0xac,0xad,0x62,0xe3,0x22,0x66,0x12,0x49,0x45,0x25,0x5c,0x81,0xef,0x74,0x6d,0xb6,0xec,0x5a,0xc0,0xdc,0xfe,0xfa,0xd7,0x54,0xca,0x00,0xf9,0xb4,0xb3,0x5b,0x2d,}, + {0xd6,0xa2,0x51,0x67,0x29,0x9f,0xd3,0x37,0x24,0x8a,0x48,0xfb,0x50,0x13,0x0c,0xdc,0x6d,0xb9,0x1c,0x8a,0x6e,0xc4,0x80,0x07,0xd9,0x6c,0xd6,0xb2,0xc8,0xca,0x07,0xd6,0xdc,}, + {0xd5,0x1a,0x6b,0x72,0xa8,0x5c,0xb0,0x5f,0x52,0x88,0xac,0xdc,0xb9,0x2e,0x39,0x7c,0x2f,0x27,0x70,0xb8,0xd1,0x3b,0x2c,0x76,0x39,0x43,0x5f,0x2c,0x64,0x34,0x8f,0xc9,0x62,}, + {0xd4,0x9b,0x82,0x72,0x68,0x5e,0x8f,0x90,0xfa,0x56,0xbd,0x2c,0xbe,0xcf,0xc8,0x14,0xcd,0x49,0x2c,0xbe,0xad,0xb7,0x20,0x35,0xb7,0x24,0x81,0x2f,0x3d,0x5b,0x48,0x08,0xa5,}, + {0xd7,0xdc,0x51,0x65,0x2b,0xb6,0xec,0x5d,0x64,0x52,0x03,0x43,0xb8,0xcc,0x65,0x75,0x68,0xd6,0x25,0xa6,0xcb,0xc7,0x01,0xf5,0xe5,0x78,0x7c,0xab,0xbe,0x3a,0x95,0x46,0xb4,}, + {0xd9,0xe9,0xdc,0xec,0xea,0x71,0xce,0x4a,0xde,0x8f,0xa7,0x2c,0x69,0xf1,0xd9,0x2d,0x9a,0x4e,0xe6,0x57,0x50,0xa9,0x39,0xbd,0x9c,0xdf,0x6c,0x8e,0x77,0x17,0xd7,0x39,0xd9,}, + {0xd9,0xe8,0xdc,0xb5,0x61,0xa4,0x8e,0xfb,0xd3,0x70,0xd7,0x23,0xb0,0xf0,0xcc,0x4b,0xec,0x3d,0x00,0x62,0xd1,0x76,0xd2,0x8a,0xc3,0x1b,0x86,0xef,0x48,0x32,0x6a,0xc4,0xaf,}, + {0xda,0x28,0xdc,0x35,0xe9,0xdd,0x50,0xaa,0xd2,0x95,0x42,0xf0,0x56,0xf0,0xf4,0x33,0xa3,0x25,0x2c,0x7a,0x91,0x05,0xa2,0x75,0xae,0x1c,0xcc,0x90,0x89,0x29,0x52,0x52,0xdc,}, + {0xda,0x6b,0xc4,0x35,0xea,0xf0,0xb0,0x23,0x5a,0x75,0xc5,0xdb,0xc4,0xcd,0x4a,0xfb,0x63,0xc7,0x0c,0x66,0xac,0xa2,0x91,0x61,0xf1,0x5d,0x5e,0x8c,0x84,0xe9,0x67,0x56,0x2b,}, + {0xdb,0x26,0xcc,0x29,0x6a,0xea,0xad,0x54,0xdc,0xf1,0x55,0x4b,0xd8,0xcb,0x70,0x9a,0x6d,0xdf,0x14,0xec,0xa9,0x30,0xdf,0x30,0xe8,0xe5,0xb8,0xab,0x56,0x1b,0x81,0x34,0xd0,}, + {0xd4,0xa0,0x8a,0x16,0x30,0x72,0x88,0x06,0x6d,0x4d,0x76,0xb4,0xe4,0xe8,0xc5,0x9c,0xa6,0xd1,0x5b,0xda,0xaa,0x3b,0x26,0x72,0xc8,0x10,0x55,0x6c,0xf6,0xfd,0x7a,0x26,0x92,}, + {0xd4,0xe9,0xbb,0x26,0x20,0x55,0xd4,0x2e,0x55,0x6e,0xc9,0x2c,0x5e,0xf2,0xc0,0x2a,0xae,0x59,0x26,0xbc,0xb2,0x48,0xd0,0x16,0x45,0x6a,0xbf,0x92,0x4d,0x2b,0x49,0x3e,0xa4,}, + {0xd4,0xac,0xbb,0xa5,0xd8,0x63,0x30,0xd9,0xad,0xad,0x50,0x32,0x5f,0x6e,0xab,0x5b,0xb6,0xa8,0x80,0xc1,0x4e,0xf5,0x16,0x51,0xea,0x87,0x5f,0x10,0x94,0x79,0xae,0x57,0x63,}, + {0xd4,0xea,0xcb,0x29,0xa0,0x61,0x8c,0xaa,0xd2,0xee,0xbe,0x9c,0x5f,0xcd,0xde,0xdd,0x4d,0x88,0xe3,0x5f,0xf0,0x47,0x1b,0x8e,0xb1,0xce,0xbf,0xf3,0x37,0x23,0x71,0xc7,0x27,}, + {0xd4,0xaf,0x9b,0xa5,0xe0,0x6c,0xaf,0x86,0xf4,0x93,0xe6,0x90,0x61,0x50,0x1e,0x2b,0xae,0x4a,0xe2,0xbd,0x4d,0xa8,0x07,0x33,0x3b,0x26,0x5f,0xca,0x9e,0xd5,0x74,0x4a,0xa3,}, + {0xd4,0xed,0xb2,0x6d,0x68,0x5f,0xad,0x58,0x63,0x6d,0xe1,0xcd,0x61,0xee,0xb9,0x1b,0x8d,0xb5,0xc4,0x5f,0x4e,0x49,0x5d,0x96,0xc7,0x48,0x61,0xae,0xae,0x34,0x55,0x58,0xdc,}, + {0xd4,0xef,0x9b,0x29,0xa8,0xbd,0xb0,0xc8,0x7a,0x91,0xc7,0x24,0x5f,0x51,0x38,0xc9,0xe6,0x47,0x23,0xbd,0xcd,0xc7,0x26,0x82,0x26,0xd7,0x5c,0xb0,0xbb,0x75,0x8d,0x01,0x1c,}, + {0xd4,0xa8,0xe0,0xe1,0x90,0xbc,0xed,0xdd,0x6c,0xb1,0xa4,0x35,0xb2,0xcf,0xc9,0x62,0x6e,0xc8,0xe8,0x5f,0x2b,0x2c,0xdf,0x96,0xc9,0x63,0x5f,0xaa,0x2c,0x4b,0x83,0x39,0x61,}, + {0xd3,0x26,0xb9,0x61,0x90,0x5f,0x47,0x24,0x4a,0x57,0x54,0xba,0xbc,0xc8,0x28,0x98,0x41,0x69,0xe3,0xc0,0x27,0xe7,0x1b,0x66,0x04,0x9c,0xbe,0xc3,0x6b,0x94,0x86,0x3e,0xff,}, + {0xd3,0x1f,0xb2,0xa1,0x6b,0xc8,0x01,0xad,0x3e,0x92,0x45,0x1c,0xc4,0x21,0x4d,0x6b,0xed,0xc5,0x1b,0xe2,0x61,0x25,0x23,0x99,0xdb,0x23,0xac,0x80,0xc7,0x5b,0x90,0xd7,0x24,}, + {0xd6,0x54,0x71,0x9c,0x22,0xa6,0xc0,0x39,0x9d,0xef,0x67,0xeb,0xd4,0xc0,0xb4,0xe4,0x96,0x4b,0x56,0xe4,0x80,0xa7,0x51,0x4d,0xb9,0x1c,0x8e,0xa0,0xcd,0x5b,0x4d,0xb9,0x1c,}, + {0xd8,0xa7,0xaa,0x6d,0x59,0xee,0xc0,0x3b,0x2b,0x91,0xe7,0xa5,0xc5,0xe1,0xd9,0x2e,0xd6,0xed,0xbd,0x59,0x8e,0xc9,0x24,0x9c,0xb8,0xe5,0x5c,0x0a,0x54,0xe7,0x01,0x22,0x92,}, + {0xd7,0x65,0x92,0xf9,0x4b,0xa1,0x6c,0xa2,0x89,0x90,0xa7,0x37,0xd1,0x2c,0xf2,0x9c,0xad,0xb6,0xdb,0x58,0x43,0x01,0xab,0x69,0xb9,0x24,0x50,0x00,0x38,0xe4,0x92,0x39,0x23,}, + {0xd8,0x20,0xa2,0xe1,0x5a,0x50,0x00,0x38,0xdc,0x71,0xc9,0x24,0x50,0x00,0x47,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd8,0x20,0xa2,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd8,0x20,0xa2,0xe1,0x5a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_osmdesat[] = { + {0xd4,0xd6,0x71,0x98,0xe2,0x50,0x40,0x36,0x9a,0x69,0x84,0x9a,0x5e,0xc0,0xd9,0xa3,0x52,0x49,0x65,0x76,0xc0,0xaa,0xe4,0x68,0xc5,0x2c,0x94,0xa0,0x14,0x8b,0x66,0x34,0x64,}, + {0xd5,0x5d,0xfc,0x4c,0x73,0x85,0x00,0xa8,0xd9,0x69,0x24,0x53,0x53,0x00,0x92,0x0a,0x29,0x12,0x99,0x91,0xef,0x36,0xdb,0x72,0x78,0xa4,0x5c,0x88,0x24,0x55,0x93,0x4a,0xe8,}, + {0xd3,0x69,0xf9,0xc9,0xfa,0x80,0x91,0x32,0x25,0x4e,0x4b,0x24,0x50,0xae,0x22,0x7a,0x52,0xc7,0x6c,0x53,0xa8,0x2c,0x7a,0x95,0x35,0x1b,0x56,0xca,0x34,0x25,0x36,0xb9,0x65,}, + {0xd3,0x2c,0xc9,0x4a,0x79,0xa8,0xa9,0x49,0x00,0xcd,0xc9,0x2d,0x55,0x04,0x14,0xc3,0x5a,0x29,0x6a,0xa9,0x06,0x73,0x0d,0x63,0x36,0xbb,0x55,0xa6,0xf3,0x15,0x71,0x9c,0xdb,}, + {0xd3,0x22,0xb9,0x9d,0xa1,0x55,0x45,0xd9,0x24,0x02,0x77,0xe4,0x9d,0x28,0xde,0x9e,0x09,0xab,0x2d,0x50,0xe8,0x56,0xb8,0x69,0xb7,0x14,0xc0,0xa9,0x5a,0x99,0x41,0xc3,0xda,}, + {0xdb,0x2a,0x72,0x58,0x11,0x5b,0xee,0x45,0x11,0x72,0x03,0x69,0x81,0x2d,0x25,0x0c,0x15,0xb2,0x7b,0x88,0xec,0x58,0xa4,0x54,0xae,0x95,0x83,0x6c,0x61,0xaa,0xae,0x49,0x5d,}, + {0xdb,0x2c,0xbb,0x68,0x10,0x7b,0xae,0xb9,0xc6,0xd1,0xde,0x66,0x82,0xef,0xae,0xbb,0x8f,0x3b,0x25,0x7b,0x0e,0x74,0xed,0x76,0xcc,0xe7,0xb7,0x6e,0xe9,0xa7,0x6f,0xc7,0xf0,}, + {0xda,0xed,0x92,0x14,0x10,0x6f,0x30,0x76,0x6d,0x72,0x38,0x7a,0xdf,0x4e,0x29,0xa8,0xe2,0x39,0x55,0xd6,0xed,0xab,0x61,0xe3,0x25,0xe2,0xae,0xcc,0x3a,0xa7,0x55,0x59,0x5a,}, + {0xdb,0x29,0xa2,0x54,0x50,0xe0,0x89,0x65,0x5f,0x4f,0xaa,0xa6,0xd2,0xec,0x35,0x2b,0x8e,0x36,0xba,0x5c,0xa8,0x09,0xf0,0xe5,0x4a,0x6d,0xd2,0xcc,0x27,0x23,0x55,0xba,0x6f,}, + {0xd0,0xee,0xc4,0x6d,0xd2,0xe0,0x91,0xd9,0x22,0x24,0x02,0xe5,0x50,0x47,0x6b,0x1d,0x4e,0x77,0x5b,0xa0,0x05,0x9b,0xef,0x91,0xbb,0xd2,0xec,0x07,0x33,0xbe,0xce,0x23,0xdb,}, + {0xd1,0x2a,0xcb,0xa9,0xa2,0x54,0xe6,0x9b,0xae,0x69,0x05,0xd5,0x55,0x24,0xd8,0xae,0xb4,0xb0,0x34,0x57,0x45,0x38,0x6c,0xd5,0xb4,0x8f,0x57,0x03,0x9b,0x5c,0xba,0xb2,0x81,}, + {0xd1,0xe4,0x9d,0x6d,0x2b,0x55,0xc4,0x75,0x23,0x92,0xd8,0xc9,0xab,0xa3,0xbc,0x93,0x57,0xd8,0xe0,0xef,0xea,0x2b,0x23,0x0f,0x7d,0x57,0x57,0x2d,0x08,0xe3,0x6d,0xb9,0x62,}, + {0xd2,0x59,0xb4,0x6f,0x51,0x77,0x4c,0x14,0x76,0x16,0x49,0x63,0xa2,0x24,0x94,0x84,0x12,0xfd,0x2c,0xf0,0x43,0xb4,0x41,0x26,0xdf,0x6e,0xec,0x23,0x64,0x82,0x20,0x2d,0xa6,}, + {0xd1,0x63,0xbd,0x2d,0xaa,0xb2,0xa1,0x7e,0xdb,0x25,0x34,0xb4,0xd1,0x43,0x6d,0x18,0x25,0xb9,0x1d,0x60,0x41,0x5b,0xb4,0x89,0xcb,0x1d,0xaa,0x60,0xa7,0x26,0xfa,0xb7,0x28,}, + {0xd8,0x1d,0x71,0x1e,0xb1,0xb6,0xa2,0x49,0x2d,0xbb,0x7f,0xfe,0x55,0xd4,0xc9,0x24,0xad,0xc7,0x3b,0x52,0x13,0x0d,0x1c,0x6d,0xc9,0x1b,0x86,0x30,0xc4,0x40,0x27,0xd9,0x65,}, + {0xd5,0x1d,0x6b,0x36,0xa8,0xcc,0xf3,0x32,0x40,0xd5,0xc9,0x2d,0x58,0xae,0xd6,0xb9,0x4b,0x97,0x24,0xb0,0xb0,0xdc,0xdb,0x69,0x76,0x9c,0x59,0x6c,0xfb,0x9a,0xc4,0xae,0x2b,}, + {0xd4,0xdc,0x6b,0x2a,0x68,0xb9,0x0f,0xe7,0x6c,0x91,0xcc,0x1f,0x5d,0x4d,0x07,0x1b,0xcd,0x38,0x9a,0x61,0x49,0x76,0xd5,0xd3,0xc6,0xac,0x5d,0x2b,0x93,0x05,0x8e,0x5a,0xe5,}, + {0xd5,0x98,0x71,0xa9,0x39,0xb8,0xaf,0xc7,0x58,0x6e,0xc5,0x24,0x62,0xcc,0x36,0xdc,0x41,0xf0,0xbd,0x56,0xab,0x4f,0x11,0x8c,0xaa,0x64,0x9a,0xcc,0x39,0xa3,0xb2,0x0c,0x8f,}, + {0xd9,0xea,0xd4,0x30,0xe0,0xc9,0x4a,0xb7,0x3a,0x49,0x3f,0x9e,0x56,0xcf,0x39,0xa3,0x5e,0x99,0x9c,0xaf,0xb1,0x6b,0x25,0xed,0xe8,0xe1,0x85,0x10,0x7a,0xdd,0x9d,0x45,0xdb,}, + {0xda,0x28,0xe4,0x78,0xe3,0x51,0x51,0xd3,0xf0,0xd2,0x45,0x5d,0xef,0x4f,0x6b,0xa3,0x7f,0x95,0xfb,0xc8,0xd2,0x2a,0x9a,0xb1,0x39,0x50,0x7a,0xcf,0xe8,0x23,0x62,0x38,0xdc,}, + {0xda,0x67,0xdc,0x36,0x29,0xd0,0x90,0x95,0x0b,0xac,0xe4,0xb9,0xc3,0x0f,0x1c,0x5f,0x09,0xc7,0x46,0x88,0xb1,0xa6,0xdb,0x39,0xb5,0xe0,0x93,0x30,0xc6,0x7a,0x82,0x58,0x6d,}, + {0xda,0xaa,0xe3,0xf5,0xea,0xa2,0xed,0x8d,0x13,0x8a,0x35,0x23,0xd4,0xcd,0x71,0x2b,0x51,0x77,0x4e,0xe6,0xaf,0xe4,0x6b,0x62,0x56,0x92,0x58,0xf0,0xd4,0x35,0x16,0x3a,0xd4,}, + {0xda,0xe8,0xc4,0x6d,0xe9,0x50,0xb0,0x1e,0x8b,0x90,0xc4,0xdb,0xce,0xcc,0xb4,0x95,0x54,0x77,0xb2,0xda,0x4a,0x89,0xcc,0xcd,0x97,0x58,0x94,0x8d,0xb5,0x13,0x91,0xb7,0x58,}, + {0xd8,0x26,0xe3,0xe0,0xf8,0xc2,0x2c,0xca,0x0c,0x4d,0xa4,0xd4,0x68,0x24,0xb4,0xc5,0x43,0x95,0x47,0xbc,0x25,0xb1,0x81,0xa1,0x45,0x7e,0xec,0x68,0xe5,0x58,0x66,0x13,0xad,}, + {0xd4,0xe6,0xc2,0xe2,0x58,0x5f,0x8f,0x39,0x25,0x8e,0x32,0x00,0x51,0x50,0xd9,0x35,0x92,0xc7,0x00,0x60,0x95,0x75,0x24,0x92,0x3b,0x1b,0x5f,0x0f,0x86,0x7b,0x57,0x19,0xe4,}, + {0xd4,0xac,0xab,0x65,0xa0,0xc1,0x94,0x37,0x0b,0xe6,0xb7,0x5c,0x61,0x0f,0xf7,0x5c,0x20,0xda,0x75,0xc1,0x70,0x4b,0x2b,0x70,0x1e,0x62,0xbd,0x30,0x73,0x1c,0xcd,0xc4,0x8e,}, + {0xd4,0x6d,0xab,0x2d,0xa0,0x5f,0x4c,0xf9,0x34,0xb6,0x76,0xe9,0xbd,0xae,0xc1,0x25,0x36,0x37,0x2b,0x5f,0xaa,0x70,0x94,0xcd,0x46,0xda,0xbd,0x50,0x47,0x09,0x3c,0xc7,0x24,}, + {0xd4,0xaf,0xab,0x29,0x60,0xbf,0xcb,0x51,0x5c,0x1a,0x73,0x0e,0xbf,0xea,0x99,0x8d,0x51,0x55,0xc7,0x5f,0x4e,0xbb,0x1b,0xce,0xb6,0x81,0x5f,0xcb,0xdd,0x14,0xb0,0xf1,0x9e,}, + {0xd4,0xb1,0x93,0x69,0xa1,0xbd,0xa8,0xf0,0x2a,0xf0,0x7a,0x79,0x5d,0x30,0x38,0x90,0xcd,0xc8,0xe3,0xbf,0x2d,0x5a,0xda,0x23,0x17,0x24,0xbf,0xa8,0x09,0x4e,0x87,0x0e,0x46,}, + {0xd4,0xed,0xb2,0xed,0x30,0xbd,0xad,0x4a,0xe5,0xca,0xc6,0x87,0xbd,0x2c,0xc9,0xa5,0xd3,0xdc,0xe8,0x5f,0x90,0xd1,0x8c,0x6e,0x37,0x5c,0xbd,0x8f,0x57,0x06,0x4e,0x38,0xe4,}, + {0xd4,0xec,0xaa,0x69,0x20,0x5f,0x8e,0xd4,0xab,0xf4,0x56,0xab,0xbb,0x0f,0xc7,0x63,0x6d,0x8c,0xde,0xba,0x90,0xc9,0x1d,0x91,0x42,0x2b,0x5f,0x6e,0xd9,0x2c,0xb2,0x34,0xc3,}, + {0xd3,0xa8,0xc1,0x25,0x88,0xc0,0xcb,0x0b,0xb3,0xb2,0x72,0xc4,0xbe,0x8d,0x23,0xe5,0xb1,0xd5,0x1b,0xba,0xcc,0x18,0x87,0x92,0xcb,0x22,0x5f,0x27,0x64,0xc8,0x26,0xfb,0x22,}, + {0xd2,0x9e,0xa2,0xde,0x62,0xba,0x02,0x5c,0xd4,0x61,0x84,0x2a,0xbc,0x61,0xa9,0x62,0x93,0xbb,0x52,0xd0,0x22,0xf6,0xdb,0x6d,0xb9,0x1b,0xbb,0x01,0x6e,0x9d,0x51,0x26,0xdc,}, + {0xd5,0xd5,0x8a,0x1c,0x9a,0x85,0x00,0x97,0xa4,0x78,0xb6,0x9b,0x58,0x80,0xbb,0x5e,0x8e,0x58,0x9b,0xec,0xc0,0xc9,0x1c,0x95,0xe7,0x63,0xec,0xa0,0x32,0xdc,0x79,0xce,0xa9,}, + {0xd9,0x23,0xba,0xee,0x03,0x6e,0xc0,0x26,0x11,0x4a,0x26,0xad,0xee,0x81,0x5d,0xac,0x72,0x49,0x24,0x69,0xc2,0xdb,0x64,0x92,0xdb,0x6f,0x5b,0x8e,0x49,0xcb,0xae,0x59,0x25,}, + {0xd8,0x2a,0x9a,0xed,0x18,0x53,0x2b,0x67,0xd2,0x95,0x48,0x48,0x56,0x28,0x24,0xc0,0x28,0x06,0x52,0xae,0x86,0x80,0x86,0x49,0x39,0x5a,0xe8,0x02,0xb1,0x62,0x71,0x39,0x24,}, + {0xd0,0x60,0xa2,0xe1,0x5a,0xd6,0x00,0xfd,0x37,0x76,0xdb,0x25,0x50,0x40,0x49,0x24,0x92,0x49,0x1b,0x5e,0x40,0x36,0xe4,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0xd9,0x92,0xa1,0x1a,0xe2,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0x64,0xaa,0x9c,0xd0,0x50,0x40,0x49,0x24,0x92,0x36,0xdb,0x50,0x00,0x36,0xdb,0x6d,0xb6,0xdb,0x56,0x00,0x36,0xdb,0x6d,0xb6,0xdb,0xa4,0x20,0xb6,0xdb,0x6d,0xb6,0xf2,}, +}; +static const gsm_frame gsm_data_devadesat[] = { + {0xd3,0xd7,0x50,0x99,0x58,0x50,0x60,0xc9,0x6d,0xd2,0xb9,0x5a,0x5c,0xa0,0xd8,0xd4,0xad,0x55,0x72,0x59,0x20,0xdc,0xeb,0x6e,0x38,0xa3,0x6f,0x01,0x14,0xd9,0xd6,0x36,0xd9,}, + {0xd0,0xe9,0xed,0x31,0x51,0x69,0x01,0x17,0x25,0xcd,0xd9,0x5b,0x8e,0x81,0x35,0xd4,0x72,0x4d,0x23,0xf0,0x80,0xa8,0xa3,0x8e,0xdb,0x1e,0xdf,0x61,0xb2,0x9c,0x73,0x5c,0x5f,}, + {0xd0,0xaf,0xdc,0x29,0x63,0x56,0xc2,0x8b,0x44,0x6f,0x58,0xdc,0x50,0x81,0x49,0x5b,0x66,0x68,0xda,0xa0,0x41,0x58,0xda,0x0e,0xea,0xcb,0xc4,0x20,0xc9,0x53,0x08,0xdd,0x63,}, + {0xd1,0x23,0xf3,0xf1,0xe3,0xb2,0x80,0xcd,0x59,0x29,0x9b,0x2b,0x56,0xa0,0xc6,0xda,0x70,0x94,0xeb,0x62,0xa0,0x6a,0xda,0x29,0xc4,0xc3,0xe4,0xc0,0xcb,0xab,0x4d,0xca,0x3c,}, + {0xd6,0x5b,0x62,0x76,0xa9,0x67,0xce,0x84,0xed,0x75,0x56,0x1a,0x89,0xb1,0xa9,0x25,0xb6,0x36,0x81,0x57,0x4f,0xd9,0x12,0xbe,0x23,0x08,0x55,0x34,0xf6,0xa4,0x72,0xc7,0x1a,}, + {0xd5,0x9d,0x7b,0x36,0x60,0x57,0x6f,0x74,0xeb,0x92,0xc9,0x11,0xab,0x90,0x28,0xe7,0x8a,0xb2,0xf3,0x55,0xab,0xd3,0xc3,0x9a,0xb8,0xe4,0x55,0xcf,0x48,0x3c,0x31,0xc5,0x63,}, + {0xd5,0x1d,0x9a,0xf5,0xa0,0x55,0x2d,0xb2,0x17,0x72,0x49,0x64,0xab,0x2f,0x46,0x17,0x2e,0x3b,0x23,0x5b,0xf1,0xc6,0xa5,0x15,0x3b,0x1c,0x5b,0x2d,0xcd,0x62,0x60,0xea,0x26,}, + {0xd4,0xa0,0x99,0xee,0x28,0x5b,0xac,0xb5,0x62,0x51,0x4e,0x55,0x5b,0x2d,0xfa,0xe5,0x8d,0xb4,0x6d,0xb5,0x2c,0x09,0xb2,0x92,0x36,0xe1,0xb5,0x0d,0x76,0xe2,0xae,0xb7,0x24,}, + {0xd2,0xe3,0x9a,0x25,0x68,0x5a,0x89,0x11,0x1c,0xb1,0xe6,0xd9,0xb2,0x26,0x04,0x0d,0xb7,0x6a,0xda,0xb2,0x64,0xa7,0x5a,0xb2,0xcb,0x9f,0xea,0xa5,0xa5,0x80,0x48,0xc7,0x77,}, + {0xd5,0xdd,0x79,0x9d,0x2b,0x8a,0xa3,0x79,0x11,0x08,0x2a,0x9e,0xc0,0xc4,0x2f,0x24,0x65,0xca,0x3e,0xb6,0xa6,0x29,0x65,0xad,0xe1,0x23,0x55,0xaa,0x47,0x64,0x92,0x28,0x1c,}, + {0xd4,0x2a,0xb2,0xa6,0x20,0x61,0xad,0x29,0x63,0xbd,0xcc,0xc1,0x53,0x51,0x8e,0x9c,0x8e,0x49,0x6b,0x5b,0x30,0xa0,0xf3,0x72,0x47,0x2c,0x5b,0x6d,0xa6,0x47,0x32,0xc7,0x2d,}, + {0xd4,0xe9,0xaa,0x69,0xe0,0x5b,0x0e,0xda,0xd9,0x27,0x99,0x6b,0xb5,0x6f,0xf9,0x4b,0x02,0xe4,0xf5,0xb5,0xcc,0x59,0xd4,0x2c,0xac,0xf0,0xb7,0xd0,0xc6,0xf2,0x6b,0x2a,0xf8,}, + {0xd5,0xa7,0xaa,0x9e,0x68,0x5d,0x2f,0x3e,0xd5,0x97,0x3a,0x00,0x5f,0xb1,0x71,0x2b,0x72,0xb8,0xdb,0x5f,0x52,0x95,0xcc,0x8e,0x49,0x2b,0x5f,0x6f,0xa4,0x4d,0xca,0xd9,0x27,}, + {0xd5,0xa4,0x89,0xde,0xa0,0xb9,0x4e,0x56,0x58,0x9e,0x2b,0x23,0x5d,0x30,0x46,0xda,0x69,0x77,0x15,0xac,0x6d,0x5f,0x23,0x44,0x84,0xe5,0xbc,0xca,0xef,0xfd,0x60,0x94,0xe1,}, + {0xd0,0xe5,0xdc,0x6e,0xa8,0xb6,0x29,0xbd,0xbf,0xfa,0xc8,0xd3,0xba,0x43,0x3f,0x51,0x71,0x46,0xa3,0xf0,0x43,0x04,0x9d,0x6b,0x5d,0xea,0xe2,0x23,0x24,0x1b,0x76,0xa7,0xac,}, + {0xd5,0x9c,0x78,0x6e,0x62,0xd1,0x64,0xa4,0x88,0x05,0x5f,0xbd,0x56,0xa4,0x7b,0x48,0x20,0x26,0xee,0x71,0x90,0xc8,0xe3,0x6d,0xb7,0x38,0x52,0xb0,0xe7,0x25,0x92,0x22,0x83,}, + {0xd6,0x24,0x61,0x2a,0xf0,0x5f,0x11,0x6e,0x5b,0x92,0xc8,0x9b,0x5d,0x0e,0x13,0xc4,0xb2,0x5b,0x6c,0x5d,0xcb,0xc0,0x3c,0x2b,0x36,0xd7,0x5d,0xae,0x3c,0xe4,0x1e,0x28,0xe4,}, + {0xd5,0xa0,0x69,0xea,0xa8,0x5d,0x8c,0x66,0xdb,0x6f,0xc7,0x1c,0x5f,0x6d,0x43,0x63,0x5c,0x89,0x24,0xbc,0xae,0xc9,0x2b,0xb2,0x2a,0x02,0xbd,0x0d,0xf8,0xe4,0x9a,0xc9,0x21,}, + {0xd5,0x18,0x8a,0xa9,0xe8,0xbe,0xab,0x07,0x99,0xd7,0x7d,0x12,0xb8,0xcc,0xc4,0x13,0xed,0x5b,0x23,0xbc,0xaa,0xa6,0xdb,0x10,0x2e,0xee,0xb6,0xca,0xb8,0xd4,0x32,0x07,0x5d,}, + {0xda,0x28,0x9a,0xe4,0x19,0xbd,0x4c,0x68,0xdb,0x68,0x14,0x5f,0x59,0x2e,0x30,0xf5,0xcd,0x68,0xea,0x6b,0x4f,0xf5,0x2c,0xad,0x9b,0x26,0xaf,0xf0,0xbc,0xde,0x2a,0xbc,0x7d,}, + {0xd9,0xe8,0xe5,0x31,0x60,0x6c,0xef,0x8e,0x7a,0x92,0xe5,0x69,0xab,0x32,0xf8,0xb4,0x72,0xcc,0xed,0x96,0xad,0xc9,0x3b,0xee,0xbd,0x97,0xa6,0x8e,0x10,0xea,0xae,0x88,0x9b,}, + {0xda,0x29,0xe4,0x36,0x29,0xca,0xd0,0xa8,0x70,0x4e,0x23,0x84,0xd7,0x50,0xa7,0x05,0x68,0xd6,0x2d,0x8a,0xd2,0x1a,0xeb,0x36,0x0d,0x12,0x8c,0xd0,0x5e,0x4d,0xd4,0x4c,0xa3,}, + {0xdb,0x28,0xcc,0x3e,0x32,0x74,0x8e,0x71,0x98,0x35,0x36,0x0c,0xd4,0xcd,0xac,0x1a,0x58,0x41,0x43,0xcc,0xae,0xc5,0x42,0xcc,0x46,0xc5,0x78,0xad,0xe1,0x19,0xf1,0x47,0x04,}, + {0xda,0x6b,0xbc,0x35,0xe3,0xe6,0xcd,0xd4,0x3b,0x6b,0xa7,0x34,0xb2,0xd0,0x1e,0x24,0x66,0x33,0x1c,0xb5,0x2c,0x24,0x96,0x52,0x4b,0xca,0xa6,0x4b,0x37,0xf4,0x4e,0x34,0xc0,}, + {0xd9,0xa7,0xd3,0xb1,0x62,0xee,0x29,0xb6,0x55,0xd6,0xa8,0x44,0xb8,0xc8,0xb0,0x7a,0x45,0x11,0x33,0x94,0xa9,0xb2,0xd8,0xad,0x67,0x1b,0x54,0xca,0x60,0xa8,0x4d,0x5d,0x66,}, + {0xd4,0x28,0xba,0x5d,0x98,0x5a,0x88,0x1a,0x84,0x35,0x9c,0xdd,0xb7,0x6c,0x49,0x1c,0x85,0x25,0xeb,0x53,0xb1,0x59,0x24,0x8d,0xb4,0x3a,0x63,0x6f,0x4a,0xed,0x6e,0x33,0x42,}, + {0xd4,0xea,0xc2,0xed,0xa8,0x5f,0x50,0xf6,0xad,0x6e,0xf9,0x5c,0xc1,0x92,0x22,0x38,0x8d,0xe7,0x36,0x63,0x52,0x46,0xc8,0xc9,0xca,0xe4,0xc1,0x11,0xdb,0xa3,0x84,0x46,0xad,}, + {0xd4,0x6d,0xab,0x66,0x18,0x5f,0xef,0x46,0xda,0x76,0x4b,0xde,0x5d,0x0e,0xb8,0xea,0x95,0xb8,0x90,0x5f,0x31,0x0b,0x1c,0x72,0xcb,0x1c,0x5f,0xd1,0xc1,0x9b,0x8e,0x36,0xdc,}, + {0xd4,0xeb,0xbb,0x2d,0x61,0xbf,0xec,0x46,0xcc,0x4f,0x39,0x67,0x5f,0xd0,0x56,0xe3,0x43,0x27,0x5c,0x5f,0xce,0x44,0xeb,0x72,0x0e,0x63,0x5f,0xaf,0x36,0xd5,0x51,0xd9,0x07,}, + {0xd4,0xee,0xb2,0xad,0xa1,0x5b,0x4d,0xcb,0x5d,0x7e,0xe3,0xd8,0xbd,0xce,0x0a,0x9c,0x72,0x48,0xe2,0x5f,0xcd,0xbb,0x87,0x4e,0x98,0x9c,0x61,0xaa,0xb8,0x6a,0x7c,0x78,0x7a,}, + {0xd4,0xed,0xc2,0x70,0xe8,0xbf,0xea,0x8a,0xe0,0x5b,0xd7,0x1d,0x61,0xab,0x2b,0x12,0x72,0x68,0x78,0x5d,0xed,0x68,0x94,0xce,0xb9,0x0f,0xbd,0x4d,0x97,0x6c,0x7a,0xe5,0x18,}, + {0xd4,0xed,0xba,0xa9,0x99,0x5f,0xc9,0x03,0x18,0xe9,0xcc,0x78,0x5f,0xaf,0x36,0xed,0x56,0x0e,0xda,0x5c,0x91,0x5b,0x12,0x02,0x39,0xa5,0xbc,0xf0,0x4b,0x2a,0x64,0x28,0xee,}, + {0xd3,0xaa,0xc1,0x5d,0x50,0xbd,0x0f,0x39,0x15,0x6d,0xc9,0x3b,0xba,0xec,0x57,0x23,0x71,0xb3,0x42,0x60,0x8a,0xfb,0xa6,0x95,0xcb,0x18,0xbe,0xaa,0x81,0x6f,0x9a,0xdb,0x23,}, + {0xd2,0xe1,0xc8,0xe6,0x18,0x5f,0x25,0x20,0xc1,0xd2,0xd2,0x8b,0xbc,0x45,0xc4,0x68,0x45,0xcb,0xa3,0xc6,0x42,0x36,0xd1,0x6d,0xcf,0x5c,0xcc,0x40,0xa6,0x5b,0x4d,0xb8,0xb6,}, + {0xd5,0x17,0x99,0xd4,0xeb,0xb2,0x61,0x3d,0x2c,0x51,0x38,0xdc,0xe6,0x00,0xeb,0x27,0x0e,0xa8,0xdd,0x74,0xa0,0xc9,0x5e,0xb1,0xa6,0xac,0xec,0xc0,0xc7,0x25,0x9a,0x5b,0x1b,}, + {0xd5,0xdc,0x9a,0xa0,0xe2,0x91,0x60,0xb6,0xe4,0xd2,0xc8,0xdb,0x66,0xe0,0x26,0x93,0x6a,0x39,0xf5,0xee,0xc0,0x56,0xeb,0xad,0xc5,0x2a,0xad,0xe3,0xc9,0x24,0x92,0x47,0x2f,}, + {0xd8,0x64,0xa2,0xa9,0xd2,0x55,0x8d,0xe1,0x2b,0x92,0x49,0x2c,0x53,0x2d,0x76,0xdc,0x72,0x24,0x93,0x58,0x68,0x92,0x50,0x44,0xa2,0x84,0xdf,0x8f,0x16,0xf1,0x4d,0xcb,0xd1,}, + {0xd8,0x69,0xa2,0xb8,0xa0,0xee,0xca,0xcf,0x56,0x26,0x46,0xe4,0x62,0x22,0x9f,0x1b,0x51,0xc8,0xdc,0xae,0x03,0x5e,0xda,0x71,0x48,0xdc,0xce,0x00,0xec,0xdd,0xad,0x38,0xdb,}, + {0xd0,0xd6,0x93,0x25,0x5a,0x9c,0x20,0x37,0x1b,0x92,0x49,0x1c,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0x21,0x92,0x14,0x90,0x50,0x40,0x49,0x24,0x92,0x36,0xdb,0x69,0xc0,0x36,0xdb,0x6d,0xb6,0xf2,0x7a,0x00,0x38,0xdb,0x6d,0xb6,0xdb,0x54,0x20,0x36,0xdb,0x6d,0xb6,0xdb,}, +}; +static const gsm_frame gsm_data_sto[] = { + {0xdb,0x63,0xe1,0xd8,0x4a,0x50,0x21,0xb6,0xd3,0x69,0xa0,0xa3,0x59,0x01,0xb1,0x33,0x2e,0x17,0x35,0x7a,0x81,0xac,0x5b,0x8b,0x98,0xdb,0x70,0xe2,0xb9,0x1b,0xb0,0xf7,0x5e,}, + {0xda,0x66,0xe3,0xa9,0xac,0xeb,0xc2,0xcc,0x72,0xf6,0xb5,0x15,0x65,0x44,0xc8,0xa2,0x1c,0xc1,0x8d,0x5b,0x69,0x46,0xac,0xea,0xf9,0x23,0x79,0x2b,0x8b,0xe1,0x76,0x37,0x5c,}, + {0xd8,0xec,0xdc,0x6d,0xa2,0x82,0xca,0x61,0x5d,0x4f,0x4a,0x99,0xdd,0x49,0xe2,0xc4,0x6d,0xdc,0xd7,0x59,0x2c,0x29,0x65,0x8e,0x4e,0x27,0x53,0x69,0xe3,0xa5,0x71,0xbc,0x26,}, + {0xd9,0x6a,0xec,0x2d,0xeb,0xae,0xcb,0xa8,0xa5,0xb1,0x6d,0x84,0xab,0x4a,0xcc,0x97,0x1a,0x9f,0x55,0x69,0x0c,0x0e,0xf6,0x3a,0x6c,0x1f,0x54,0xce,0xc6,0xdd,0x54,0xbf,0x22,}, + {0xd9,0x2a,0xdc,0xf1,0x64,0xba,0x8e,0x2f,0x4a,0x36,0x45,0x1c,0x74,0xac,0x51,0x6d,0x46,0x3c,0x65,0xd6,0xad,0x1a,0xd8,0xd2,0xc8,0xed,0xb3,0x2f,0x89,0xb2,0x6e,0xf8,0xdc,}, + {0xd9,0x2b,0xd4,0x25,0x6b,0x5a,0xb1,0x74,0x9d,0xb2,0x49,0x24,0x94,0xad,0x3b,0x34,0xa9,0x79,0x8c,0xce,0xcb,0x70,0xeb,0x43,0xcd,0x53,0x9d,0x4e,0x38,0xa2,0x53,0x30,0xde,}, + {0xda,0xa5,0xe3,0x99,0x9a,0x50,0x8d,0xa8,0xe2,0x8d,0xf0,0xdb,0x76,0xcd,0x17,0x5c,0xe1,0x36,0xd3,0x78,0xed,0x17,0x11,0x28,0x83,0x13,0x5c,0x46,0x09,0x5d,0x48,0xa7,0x24,}, + {0xd5,0x56,0x32,0x5d,0xda,0xe2,0x22,0xdd,0x5f,0xb1,0xbb,0x1c,0xe4,0x01,0xdb,0xbf,0xbb,0xe3,0x1c,0xee,0x40,0xa4,0xc5,0x6a,0xc9,0x53,0xf0,0x20,0xd7,0x32,0xa9,0xa4,0x5a,}, + {0xd2,0x15,0x62,0xe5,0x9a,0x80,0xe0,0xa6,0x93,0x31,0x46,0xdd,0xae,0x80,0x55,0xea,0x56,0xaa,0x73,0xae,0xa0,0x44,0x96,0x63,0x17,0x9c,0x68,0xc0,0x59,0xae,0xbd,0xe6,0x51,}, + {0xd8,0x9a,0x93,0x11,0x29,0xa1,0xc8,0xb6,0xe3,0xe6,0x56,0xaf,0x51,0x2c,0xb9,0x64,0xe2,0x65,0x24,0x59,0x4c,0xcf,0x03,0x96,0x32,0x66,0x5c,0x8e,0x24,0xe4,0x65,0x26,0x08,}, + {0xd3,0xa7,0xd9,0x9e,0x6a,0x5b,0xb3,0xb9,0x6c,0x88,0x81,0xac,0x52,0xaf,0x57,0x2c,0x95,0xb1,0xd3,0xa2,0xcf,0xd7,0x24,0xb6,0x31,0xda,0x53,0x2c,0xd9,0x6d,0xb9,0xb2,0xb9,}, + {0xd3,0xac,0xc8,0xde,0x6a,0xa5,0x6c,0x67,0x6d,0xd1,0xa1,0xe2,0xa3,0x28,0x1b,0x45,0x8d,0x8d,0x54,0xa3,0x29,0x29,0x82,0xa9,0x8d,0x84,0x53,0x87,0x0e,0xa9,0xae,0x25,0x2d,}, + {0xd3,0xad,0xb1,0x1a,0xaa,0x53,0x47,0x0f,0x2d,0xd2,0x90,0x67,0xa5,0x0a,0x85,0x5c,0x92,0x44,0x9d,0xa3,0x68,0x87,0x9b,0x96,0x42,0xc2,0x53,0x88,0x78,0xea,0x8e,0x38,0xdc,}, + {0xd3,0xaa,0xe9,0x4f,0x29,0x53,0x66,0x97,0xdd,0x9a,0x42,0x84,0xa5,0x06,0xf1,0x71,0xd2,0xc8,0xd1,0x53,0xc5,0x09,0x9c,0x71,0xb6,0x70,0x51,0x45,0xf8,0x34,0x96,0xca,0xc1,}, + {0xd3,0xa8,0xf9,0x8a,0xaa,0xa3,0x45,0xfc,0x65,0x91,0xd9,0x45,0x53,0xa6,0x8a,0xdc,0x75,0xd7,0x22,0x53,0x25,0x0e,0x9d,0x96,0x58,0xc4,0xa3,0x04,0x87,0x63,0x96,0xc9,0x5a,}, + {0xd3,0x29,0xe2,0x06,0x2b,0xa3,0x24,0x87,0x93,0x96,0x3b,0x19,0x53,0x25,0x9f,0x15,0x56,0x48,0xda,0xa5,0x43,0x1e,0xe5,0x52,0x56,0xd9,0xa4,0xe2,0x87,0x65,0xb7,0x6b,0x00,}, + {0xd2,0xa6,0xab,0x1c,0xa4,0xa2,0x84,0x52,0xac,0x76,0x4d,0x58,0xf0,0x83,0xd2,0x2e,0x56,0xc9,0x23,0x55,0x65,0x38,0xd7,0x13,0x38,0xdb,0xa6,0x81,0xe0,0xb0,0x56,0xdd,0x8b,}, + {0xd2,0x63,0xaa,0xe1,0x6d,0x9a,0x01,0x08,0x9c,0x5b,0x4a,0xda,0xf0,0x60,0xbe,0xe5,0x9e,0x52,0xd2,0xd4,0xa0,0xd5,0x09,0x8f,0xe7,0x0b,0xe6,0x80,0xde,0xe5,0x11,0xc8,0xeb,}, + {0xd4,0xdf,0x7a,0x68,0x45,0xe4,0xa1,0x4a,0xea,0x70,0xd9,0x24,0xc8,0x40,0x49,0x1d,0x91,0xc8,0xe4,0xaa,0x00,0x49,0x24,0x92,0x4a,0xe4,0xea,0x00,0x38,0xe4,0x96,0x49,0x24,}, + {0xd0,0x5f,0xa2,0xe1,0x5a,0x9a,0x40,0x49,0x24,0x92,0x46,0xe3,0x7c,0x00,0x49,0x24,0x92,0x49,0x24,0xda,0x00,0x36,0xe4,0x92,0x48,0xe4,0x62,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0x65,0x5a,0x96,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x39,0x24,}, + {0xd5,0x55,0x59,0x14,0x91,0x73,0x80,0x36,0xdb,0x8d,0x46,0xdb,0xc3,0x80,0x36,0xdb,0x8d,0xb6,0xdb,0xea,0x80,0x49,0x24,0x92,0x49,0x24,0x57,0x80,0x36,0xdb,0x6d,0xc6,0xdb,}, +}; +static const gsm_frame gsm_data_dveste[] = { + {0xd3,0x94,0xca,0xed,0xa2,0x50,0x20,0x49,0x6c,0xb6,0xd7,0x64,0x55,0xa0,0xe6,0xe4,0x4d,0xb6,0x9c,0x5d,0x60,0x49,0x24,0x31,0x10,0x18,0x5b,0xa0,0xc7,0x2c,0xb2,0x26,0x8a,}, + {0xd0,0xae,0xd4,0xe6,0x5b,0x67,0xc1,0x12,0xa5,0xdf,0x6a,0xda,0x72,0xc1,0xa5,0x1f,0xf4,0xde,0x55,0x52,0xc1,0x89,0x4c,0xed,0x38,0xbc,0xa9,0x01,0xa7,0x5d,0x87,0xb4,0xd5,}, + {0xd0,0xe5,0xf5,0x6e,0x6a,0xe6,0xc1,0x36,0xcb,0x6a,0x6b,0x17,0x9c,0xa1,0xba,0xe4,0x6d,0xa9,0xeb,0x5a,0xc1,0x35,0x33,0x8e,0xa7,0x2d,0x7a,0xa0,0xa4,0xca,0xf1,0xd6,0x1d,}, + {0xd7,0x29,0xb9,0xd5,0xd9,0x6a,0x84,0x4b,0x64,0x64,0x00,0x5c,0x50,0xc5,0x6f,0xeb,0x20,0xa9,0x2d,0x92,0xca,0x49,0x24,0x91,0xb6,0xe7,0x99,0x8d,0xf1,0x6a,0xba,0x46,0xdb,}, + {0xd5,0x66,0x79,0xaa,0xe0,0x7a,0xcf,0x36,0xe4,0x8e,0x36,0x40,0xef,0xf4,0x49,0x24,0x92,0x34,0x87,0x54,0xd0,0xc3,0x1d,0x97,0x37,0x00,0x57,0x30,0x72,0xed,0x6e,0x5c,0x91,}, + {0xd5,0x23,0x82,0xa3,0x18,0xab,0x70,0xf6,0xa5,0x6e,0x4a,0xd1,0xa9,0xb1,0xb1,0x64,0x71,0xb6,0xac,0x56,0x90,0x30,0x94,0xed,0xa9,0x24,0xa8,0x4f,0x20,0x23,0xf2,0x3b,0x65,}, + {0xd2,0x27,0xda,0xa5,0x72,0xa8,0xc9,0x42,0x09,0x16,0x5d,0xa4,0xaa,0x45,0xb6,0x4f,0x32,0x19,0xec,0xa4,0x83,0x29,0x7c,0xb1,0x31,0x2c,0xec,0x45,0x79,0x00,0x86,0x47,0x2f,}, + {0xd1,0xe5,0xc2,0xea,0x2a,0xa3,0x22,0xb7,0x52,0xcb,0x3c,0xcf,0x5c,0xa3,0x2c,0xc3,0x27,0xb9,0x24,0xae,0xc4,0xd9,0x53,0x69,0x75,0x24,0xad,0x06,0xb9,0x65,0x4d,0x9f,0x23,}, + {0xd4,0xe3,0x71,0xa7,0x6a,0x57,0xac,0x49,0xa3,0xad,0x91,0x92,0x55,0xef,0xb9,0x74,0x4d,0xa5,0xdb,0x57,0x2d,0x2b,0x36,0x69,0xb0,0x39,0xa6,0xac,0x89,0x9d,0xad,0xb6,0x80,}, + {0xd4,0x96,0x6d,0x7d,0x22,0xa2,0xcd,0xcb,0x6c,0xb6,0x36,0xc2,0xa2,0xe9,0xfc,0xd3,0xbf,0x32,0x1d,0xa8,0xc7,0x7d,0x52,0x97,0x7c,0xc8,0xab,0x68,0xcd,0x1b,0x53,0x56,0x40,}, + {0xd4,0xd6,0x6d,0xbd,0x20,0xa3,0xc6,0x06,0xeb,0x09,0xbb,0xfe,0x5b,0x68,0x08,0x6d,0xce,0x5b,0x58,0xb1,0xc5,0x21,0xde,0xb9,0x4b,0xb1,0x55,0xe4,0x55,0x32,0xc4,0xa9,0x30,}, + {0xd4,0x19,0x95,0xbd,0xa0,0x57,0xa9,0xaa,0x5f,0x52,0x3d,0x6d,0x55,0xa8,0xe5,0x50,0x6d,0x48,0xb6,0x55,0xcb,0x44,0xdb,0xed,0x28,0xda,0x5b,0xec,0xb6,0x9a,0xbd,0x34,0xf7,}, + {0xd4,0x5b,0x9c,0x75,0x18,0xaf,0x8d,0xa8,0x95,0x82,0x77,0x2b,0x55,0x0e,0x5b,0x2c,0x48,0x8e,0xd5,0x55,0xec,0xb6,0xed,0x51,0x3c,0x27,0x55,0xed,0x38,0xed,0x52,0x3a,0xc7,}, + {0xd4,0xde,0x8b,0x71,0x98,0x57,0xcc,0x38,0xd6,0x61,0x87,0xc5,0x55,0x6d,0xd8,0xe6,0xa9,0x44,0x3e,0xa9,0x0d,0x70,0x5b,0xdc,0xba,0x4c,0x59,0x2c,0xc5,0x1c,0xb5,0xb3,0x00,}, + {0xd5,0x60,0x7a,0xea,0xa8,0xab,0xed,0x32,0xf4,0x6e,0x35,0xa0,0x55,0x4e,0xf4,0xa5,0x6e,0xd9,0x1a,0xa9,0x0e,0x05,0x4b,0xb1,0xc7,0xa9,0xab,0x4c,0x83,0x53,0xb2,0x4d,0x1a,}, + {0xd3,0xdd,0xa3,0x6a,0x20,0x55,0x0e,0x74,0xac,0x72,0x39,0x5a,0x53,0x08,0x9a,0x4f,0x32,0xb7,0xd2,0xa4,0xa9,0xe0,0x55,0x52,0xb9,0xa5,0xb6,0xaa,0x16,0x02,0xd0,0xe9,0x74,}, + {0xd8,0x1b,0x69,0x99,0x6a,0x57,0x48,0xc6,0x51,0x49,0x6b,0xef,0xab,0x4a,0x83,0x90,0xb4,0xd3,0x63,0x56,0xe8,0xda,0x96,0x82,0xb9,0xca,0xa7,0x6b,0xcc,0xbc,0xb8,0x5a,0x5e,}, + {0xda,0xac,0xbb,0xed,0x2a,0x5b,0xad,0xb7,0x1c,0x6b,0xa3,0xa5,0x75,0x70,0x6b,0x6c,0x79,0xbf,0x1e,0x7c,0xce,0x3e,0xfd,0x96,0xcd,0x1c,0xad,0x2d,0xbb,0x92,0xdf,0x3e,0x1d,}, + {0xda,0x6a,0xb4,0xb1,0x72,0x6d,0x4e,0x4a,0xde,0x53,0x61,0xc6,0x54,0xee,0x59,0xb3,0xcb,0xd6,0xe6,0xbf,0x6d,0x9d,0x5b,0xf1,0xe6,0xd4,0xb5,0x0d,0x66,0x1c,0xc2,0x37,0xab,}, + {0xda,0xec,0xb3,0xae,0x2a,0x5e,0xed,0x82,0xf3,0xaa,0x2c,0xbd,0xa2,0xab,0x25,0x35,0xf2,0xac,0xb0,0x9d,0x4e,0x2b,0xc0,0xd5,0xd8,0x65,0x56,0xec,0xea,0xfd,0x3a,0x35,0xa2,}, + {0xd9,0xaa,0xd4,0x6d,0xeb,0x99,0x2f,0xaa,0xbc,0x72,0x2b,0x5a,0x72,0xae,0xdb,0x6a,0xb1,0xcb,0xda,0x56,0xca,0xd0,0x36,0x52,0xe8,0x9e,0x76,0xcc,0xd5,0x64,0x82,0x62,0xa1,}, + {0xda,0xa1,0x80,0xa0,0x10,0x5c,0x04,0x50,0x8a,0x09,0x26,0x9b,0x96,0x01,0xd2,0x9b,0xac,0x5a,0xe2,0xbc,0x01,0x1a,0xde,0x72,0x37,0x0a,0xd8,0x40,0xb6,0xa3,0x31,0x26,0x96,}, + {0xd9,0xa3,0xab,0x29,0xd9,0x7f,0xe1,0xa7,0x52,0x89,0x12,0x49,0x57,0x23,0x94,0x91,0x4d,0x26,0x97,0x6b,0x88,0x98,0xdf,0x4d,0xb7,0x2d,0x8f,0xcb,0xc9,0x1b,0x92,0x4f,0x24,}, + {0xdb,0xef,0xa9,0xd8,0x49,0x65,0x0b,0xc9,0x3d,0x7e,0x03,0x73,0x66,0x8c,0x53,0x06,0x25,0xa5,0x16,0x66,0xcb,0xb3,0x0d,0x4c,0x44,0xd0,0xda,0x8e,0x44,0x95,0x6d,0x86,0xc5,}, + {0xdc,0x29,0x90,0x14,0x20,0x51,0x4e,0xaa,0x65,0x56,0x0b,0x62,0x7c,0xab,0x4a,0xde,0x15,0x25,0x2c,0xae,0x6b,0x42,0x94,0x0a,0xc8,0x37,0xc0,0xcd,0xb9,0x0c,0x85,0x34,0x02,}, + {0xd5,0xdc,0x42,0xfe,0x68,0x6c,0xf0,0x29,0xbf,0xdb,0x58,0x42,0x5e,0xd2,0x83,0xe2,0x8e,0xc8,0xdd,0x5f,0x50,0x36,0x4f,0xb9,0x23,0xe6,0xbd,0x32,0x47,0x22,0x8b,0xb2,0xe3,}, + {0xd6,0x5f,0x52,0x2e,0x71,0x5f,0x0f,0x75,0xeb,0x88,0x13,0x69,0xbd,0x51,0x57,0xde,0xae,0x20,0x24,0x5d,0x11,0xf1,0x64,0xce,0xc7,0x59,0x61,0xf2,0x76,0x25,0xad,0x99,0x5a,}, + {0xd4,0xda,0x8b,0xb1,0x60,0x62,0x0e,0xa2,0xc6,0x8e,0xc9,0x6d,0xbc,0x0d,0xc6,0x92,0x3e,0x49,0x1c,0xbc,0x8d,0x65,0x1c,0x2c,0xbe,0xdd,0xbd,0x6a,0xb5,0x64,0x65,0xa5,0xd0,}, + {0xd4,0x99,0x9b,0xa9,0x60,0x6b,0x4c,0xe9,0x25,0x90,0xb0,0xd9,0x61,0x0e,0x77,0x1c,0x72,0x49,0x1a,0x5f,0x27,0x41,0xb8,0x9a,0x47,0x29,0xbf,0x4c,0x24,0xd7,0x6e,0xc7,0x23,}, + {0xd3,0x5f,0xb2,0xe9,0xd9,0xbf,0x28,0x48,0xd8,0x66,0xc7,0x2c,0xbf,0x67,0x47,0x3b,0xa2,0x95,0x8e,0xbd,0x46,0xe4,0xe4,0x99,0xb2,0xa0,0xd2,0x8b,0xf5,0x2b,0x99,0xda,0xd0,}, + {0xd2,0x60,0xd9,0xad,0x59,0xbe,0x86,0x8c,0xcc,0xd6,0x59,0x24,0xba,0xc7,0x08,0x32,0x92,0x58,0xac,0x58,0xe6,0x44,0x50,0xed,0x77,0x6d,0xbc,0xc4,0x67,0x08,0x62,0x3a,0xf5,}, + {0xd1,0x66,0x8b,0x37,0x2b,0xbc,0xe3,0xdb,0x14,0x58,0xbe,0xd2,0xaa,0xc2,0xe6,0x66,0x7f,0x25,0x63,0xd6,0x01,0x16,0xad,0x7a,0xa8,0x5a,0xca,0x61,0x66,0x4a,0xae,0xc7,0x0b,}, + {0xd3,0x67,0x40,0xda,0x34,0xd0,0x81,0x56,0xb6,0x42,0xb9,0x9b,0xc4,0xe1,0x16,0x55,0x5a,0x1a,0xd3,0xbc,0xe0,0xc5,0x13,0x65,0xdb,0x14,0xbc,0xe0,0xa5,0x23,0x8e,0xe4,0xa6,}, + {0xd5,0x67,0x60,0x44,0xdb,0xd8,0xc0,0x19,0xc5,0x4d,0xc3,0xa1,0xd6,0xa0,0xe4,0xb3,0x9c,0xba,0xa6,0xce,0xa0,0xb9,0x32,0x72,0x3a,0xed,0x68,0x80,0xbb,0x2d,0xce,0x26,0x94,}, + {0xd5,0xa0,0x80,0x18,0xe2,0x92,0xa0,0xb9,0x65,0x94,0x9d,0x13,0xdc,0xa0,0x35,0x94,0x69,0x36,0x9b,0x86,0x00,0x36,0xe4,0x6e,0x47,0x24,0xde,0x20,0x46,0xdc,0x8d,0xc8,0xe4,}, + {0xd0,0x5d,0x9a,0xe1,0x5a,0xca,0x00,0x36,0xdb,0x71,0xc9,0x24,0x62,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0xf0,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5d,0x9a,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x52,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0x29,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_sta[] = { + {0xdb,0x63,0xe1,0xd8,0x4a,0x50,0x21,0xb6,0xd3,0x69,0xa0,0xa3,0x59,0x01,0xb1,0x33,0x2e,0x17,0x35,0x7a,0x81,0xac,0x5b,0x8b,0x98,0xdb,0x70,0xe2,0xb9,0x1b,0xb0,0xf7,0x5e,}, + {0xda,0x66,0xe3,0xa9,0xac,0xeb,0xc2,0xcc,0x72,0xf6,0xb5,0x15,0x65,0x44,0xc8,0xa2,0x1c,0xc1,0x8d,0x5b,0x69,0x46,0xac,0xea,0xf9,0x23,0x79,0x2b,0x8b,0xe1,0x76,0x37,0x5c,}, + {0xd8,0xed,0xdc,0xb1,0xeb,0x82,0xca,0x61,0x5d,0x4b,0x58,0xe0,0xdd,0x4b,0x66,0xc3,0x91,0x5c,0xd7,0x66,0xab,0x17,0xad,0x8f,0x4e,0xa7,0x53,0x49,0x53,0x76,0x31,0xb9,0x06,}, + {0xd9,0x6a,0xf4,0x6d,0xec,0xa9,0x2b,0x4a,0xa4,0x7e,0x8b,0x5a,0xab,0x4c,0x5a,0xd7,0x16,0xad,0x62,0x69,0x2d,0x2b,0x34,0x53,0x5a,0x27,0x58,0xce,0x48,0xa5,0x18,0xbf,0x14,}, + {0xd9,0x6a,0xdc,0xed,0xa4,0xe0,0xcd,0x3d,0x59,0xbc,0x48,0x9b,0x94,0xac,0x41,0xed,0x4a,0x3c,0x26,0xd6,0xad,0xaa,0xd8,0xcf,0x39,0x2c,0xdc,0xaf,0x0b,0xaa,0x8f,0x69,0x24,}, + {0xd9,0xab,0xc4,0xad,0x9c,0x7e,0x8c,0xde,0xb3,0xf3,0x3b,0xe5,0x94,0xad,0xba,0xf5,0xac,0xf9,0x5b,0x78,0x8e,0x4a,0xdc,0x49,0x78,0x6b,0x9c,0xce,0xc8,0xe3,0x2f,0xb0,0x93,}, + {0xda,0xe5,0xeb,0xd4,0xdb,0x90,0xad,0x27,0x14,0xe9,0x34,0xd3,0x95,0x4d,0xa5,0x25,0x83,0x48,0xda,0xd2,0xac,0xc6,0x52,0x29,0x02,0xb3,0x58,0x48,0x09,0x1d,0x4d,0x36,0xdb,}, + {0xd9,0x23,0x81,0x50,0x22,0xca,0x21,0xf5,0x23,0xb2,0x59,0x36,0xea,0x21,0xcb,0x77,0xb7,0xcc,0xa4,0xe6,0x20,0xab,0x64,0xdf,0xd9,0xab,0x54,0xa0,0xec,0xda,0xb6,0x3b,0x5c,}, + {0xd6,0xe7,0xba,0x16,0x01,0xdc,0xa0,0xd9,0x6d,0xb6,0x5d,0x9d,0xf0,0xa0,0xeb,0x6d,0xb5,0xdb,0x76,0x5b,0xe0,0xb9,0x1c,0x92,0x45,0x19,0x99,0xf1,0x3b,0x23,0x92,0x4b,0xd4,}, + {0xd5,0xe7,0x99,0x5e,0x29,0x70,0xe7,0xce,0x3d,0x6c,0xc6,0x88,0x72,0x29,0x44,0x10,0x69,0x14,0x1a,0x58,0x88,0x94,0x52,0x2c,0x87,0x16,0x55,0xb4,0x49,0x24,0x6c,0xa5,0xd2,}, + {0xd5,0x68,0x9a,0xb2,0x18,0x51,0xb1,0x6d,0x6c,0xd5,0xb1,0xf3,0x51,0x51,0xc6,0xe7,0xae,0x83,0x5c,0xa2,0xf2,0x46,0xf6,0xad,0x81,0x9a,0xa4,0xb0,0x78,0xec,0xad,0xa2,0xb8,}, + {0xd4,0x6c,0xcb,0x11,0xd8,0xa4,0xce,0xf6,0xb3,0x8c,0xb3,0x39,0xa6,0x8e,0x57,0x4c,0x95,0xa6,0x17,0xa5,0x6a,0xbb,0x0d,0xae,0xa2,0x32,0xa3,0x0b,0x8e,0xeb,0xd2,0xc0,0x87,}, + {0xd4,0xab,0xd3,0x4d,0xe0,0x51,0xa8,0x1a,0xf2,0xaa,0x76,0xd4,0x51,0xec,0xba,0xe3,0x91,0xda,0xc2,0x53,0xa8,0xf8,0xdb,0x90,0xe2,0xe7,0xa5,0xec,0x57,0x15,0x51,0xc4,0xe7,}, + {0xd4,0x6b,0xc2,0x56,0x10,0xa3,0x6b,0xa9,0x64,0x75,0xc4,0xc8,0x53,0xa9,0x8b,0x1a,0xa6,0x45,0x24,0x53,0xe4,0xcc,0x9f,0x39,0x8d,0x14,0x53,0x46,0xe5,0xbd,0x37,0x3a,0x50,}, + {0xd4,0x2a,0xb9,0xdd,0x90,0xa5,0x08,0x8a,0x75,0xca,0x61,0x52,0x53,0x48,0x59,0x75,0xaf,0x2a,0x18,0xa4,0xc9,0x3a,0xf7,0x92,0xd6,0x68,0xa4,0x8b,0x05,0x23,0xda,0x4b,0x15,}, + {0xd2,0xe6,0x91,0x22,0x5a,0x54,0x87,0x84,0x8d,0xd2,0xd6,0x60,0xa4,0xc7,0x6a,0xb3,0x8d,0xc6,0x38,0x9e,0x83,0x31,0xe2,0x95,0x6b,0x86,0xa3,0x44,0x97,0x11,0xc6,0x55,0x84,}, + {0xd4,0x64,0x99,0x28,0xe2,0x56,0x84,0xc0,0xbb,0x7d,0xd9,0x68,0x53,0x05,0x46,0x24,0x36,0xbb,0x1b,0xe2,0xc5,0xb0,0xa4,0x39,0x4a,0xe4,0xce,0x84,0x14,0x55,0x1d,0x59,0x53,}, + {0xd5,0x65,0xc9,0x24,0x92,0x56,0xa3,0x8c,0x23,0x6f,0x35,0x14,0xce,0xc3,0xa6,0x56,0x4b,0xb7,0x0d,0xbc,0xc2,0x31,0x64,0x99,0x97,0x0c,0x66,0xc1,0x07,0x07,0x8a,0x29,0x1e,}, + {0xd2,0xa3,0x99,0x01,0x98,0xd6,0x20,0x45,0x95,0xb2,0xc9,0x64,0xd4,0x40,0x45,0x2c,0x91,0xc9,0x24,0xe2,0x20,0x3a,0xe4,0x71,0xc8,0xdc,0xb4,0x00,0x38,0xe4,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0xe0,0xe2,0xf0,0x20,0x47,0x24,0x92,0x49,0x24,0x6a,0x00,0x49,0x24,0x92,0x49,0x24,0xb4,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0x64,0xaa,0x9c,0x90,0x57,0xa0,0x46,0xdc,0x92,0x49,0x24,0x51,0xa0,0x4b,0x23,0x6d,0xb6,0xdc,0x89,0x80,0x36,0xdb,0x6d,0xb6,0xdc,0xcb,0x81,0xc6,0xdb,0x6c,0x6a,0xe4,}, +}; +static const gsm_frame gsm_data_set[] = { + {0xd2,0x19,0x82,0xe5,0x59,0x50,0x20,0xc9,0x2c,0x96,0xeb,0x2d,0x56,0xe0,0x73,0x62,0x8d,0xc4,0xa3,0x76,0x20,0x44,0xd8,0x8a,0x06,0x93,0x66,0xc0,0xb6,0x9a,0x8d,0x27,0x0c,}, + {0xd7,0x9c,0x59,0x49,0x20,0x55,0xc1,0xa7,0x22,0x4c,0xe0,0x93,0x69,0xa3,0xc1,0xa2,0x4e,0xc6,0xe5,0x85,0xa3,0xa8,0xf3,0xb1,0x6c,0x2b,0xc3,0xe6,0x6c,0x27,0x71,0xcc,0xe4,}, + {0xda,0xa6,0xdc,0x5d,0x62,0x57,0x65,0xb2,0xf0,0x93,0x25,0x28,0xe3,0x89,0xd9,0x71,0x9e,0xcd,0xe5,0x58,0xea,0xcd,0x6c,0xcb,0xd4,0xe3,0xa5,0x2b,0x6b,0x6d,0x59,0xc7,0x57,}, + {0xda,0xa7,0xeb,0x69,0xab,0xc9,0x8a,0x0e,0xba,0xbd,0xb3,0xa5,0x97,0x2e,0x4d,0x57,0x6a,0xb8,0xdd,0x77,0x0d,0xf4,0xa7,0x2a,0xd5,0x5c,0x55,0x4c,0xe9,0x9e,0x1d,0xdf,0x19,}, + {0xdb,0x69,0xc4,0x71,0x69,0x6d,0x4e,0xda,0xb9,0xf5,0x57,0xa3,0x5c,0xef,0x3d,0x30,0x91,0x9b,0x26,0xad,0x0f,0x42,0xf2,0x63,0x46,0xe3,0x59,0x10,0x99,0xe1,0xb1,0xb6,0xe4,}, + {0xda,0xe8,0xfd,0x25,0xab,0x98,0xae,0x42,0xa7,0x52,0x2b,0x25,0xd0,0xcd,0x4a,0xab,0x84,0x58,0x69,0xbe,0xed,0x8a,0x1d,0x71,0x36,0x55,0x92,0xaf,0xd9,0x25,0x57,0xbb,0x95,}, + {0xdb,0x67,0xe4,0x75,0x6b,0xc0,0x8c,0x75,0xa5,0xa7,0xb8,0x98,0x8e,0xee,0x1e,0xe0,0xca,0x32,0xdb,0x5c,0xd2,0xc6,0xd5,0x81,0xd8,0xac,0x64,0xae,0x56,0xd4,0x88,0xe1,0x2d,}, + {0xdb,0x28,0xb4,0xe5,0x2a,0xa2,0xcd,0x2a,0x22,0xb9,0x92,0xe3,0xec,0xac,0x3e,0x81,0x92,0x31,0x12,0xe8,0xec,0xdb,0x1d,0x75,0x46,0xc1,0x86,0xcd,0xcb,0x22,0x8e,0x14,0xf7,}, + {0xd3,0xa5,0x7b,0x6e,0xd1,0xdc,0xa9,0x75,0x1a,0x91,0xee,0xe3,0x66,0xa7,0xf4,0x0b,0x92,0xa9,0x1b,0xb4,0xed,0xc7,0x24,0x89,0x10,0xbe,0x53,0x14,0x49,0x63,0x68,0xaf,0x1c,}, + {0xd5,0x27,0x6a,0xef,0x11,0x53,0x70,0xdb,0x23,0x68,0xf5,0x23,0xa5,0xb0,0x2b,0x35,0x74,0x8e,0x9c,0x53,0xcc,0xd4,0x5f,0x85,0xca,0xc3,0x53,0x13,0x58,0xe5,0x89,0xa5,0xc2,}, + {0xd5,0x65,0x8a,0x6e,0xa0,0x53,0xf1,0xc5,0x3a,0x70,0x3e,0x6e,0x50,0xb1,0x74,0xed,0x91,0xa2,0x7d,0xa0,0xf3,0x39,0x1c,0x8e,0x21,0x6d,0xa2,0x90,0x19,0x25,0x91,0xa2,0x2d,}, + {0xd3,0x20,0xab,0x3a,0x20,0x52,0x8c,0xda,0xe6,0xb1,0xb4,0x7a,0xa4,0xac,0xb8,0xed,0x69,0xc5,0x39,0xa4,0xa8,0x0c,0xef,0x68,0x26,0x9a,0x66,0x44,0x2a,0xea,0x7e,0x0e,0x9c,}, + {0xd3,0x17,0x8b,0x35,0xe1,0xb6,0x43,0x41,0x7d,0x92,0xb5,0x2d,0xf0,0x41,0x27,0x63,0x8f,0x4f,0xd7,0xca,0x20,0xb1,0xf4,0xce,0x38,0xe3,0xc4,0x80,0xa7,0x27,0x51,0xa4,0x3d,}, + {0xd4,0x95,0x71,0x71,0x9a,0x7a,0xe0,0xb6,0x94,0xb1,0x22,0xe6,0xa4,0xc0,0xc4,0x59,0xae,0xb4,0x9b,0xde,0x80,0xb8,0x8c,0x91,0x26,0x5d,0x74,0xe0,0xb1,0x12,0x72,0x2a,0x5d,}, + {0xd7,0xe3,0xa2,0xa5,0x61,0x55,0xcd,0xb7,0x1b,0x8d,0xb9,0xc4,0x56,0x0d,0x44,0xed,0xf0,0xb9,0x25,0x56,0x88,0x50,0x19,0x51,0x56,0xd2,0xc6,0xeb,0x26,0x14,0x29,0x93,0x50,}, + {0xd8,0xe7,0xb1,0xdc,0xa9,0x50,0xc9,0xa8,0x5b,0x52,0x14,0xf9,0x8e,0xa8,0x56,0xae,0x29,0x91,0x22,0xe2,0xe7,0x5c,0xa3,0x33,0x97,0x17,0xba,0x88,0x98,0x64,0x73,0x39,0x1f,}, + {0xd7,0x1e,0x60,0x48,0x5a,0xa0,0xc6,0x5a,0xae,0xcd,0xe8,0xdf,0xce,0xc4,0x06,0xea,0xfe,0xaa,0xe5,0xc8,0x41,0xcb,0x4e,0x91,0xb8,0xf7,0xdc,0x41,0xa6,0x94,0x92,0x31,0x23,}, + {0xd4,0x17,0x69,0x99,0xcb,0xee,0x00,0xd8,0x23,0x69,0x46,0x9b,0x70,0xc0,0xe4,0xe4,0x6e,0xa8,0xd4,0xba,0x20,0x47,0x1c,0x71,0xc6,0xdb,0xda,0x60,0x36,0xdb,0x6d,0xc7,0x1b,}, + {0xd0,0x60,0x9b,0x21,0x5a,0xf0,0x00,0x37,0x1b,0x6d,0xb6,0xdb,0x6a,0x00,0x49,0x24,0x92,0x49,0x24,0xc6,0x00,0x49,0x24,0x92,0x49,0x24,0xd6,0x20,0x49,0x24,0x92,0x48,0xdc,}, + {0xd0,0x60,0xa2,0xe1,0x59,0xe4,0x00,0x39,0x24,0x92,0x49,0x24,0xda,0x00,0x47,0x24,0x92,0x49,0x24,0x82,0x00,0x49,0x24,0x92,0x49,0x24,0xb0,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xaa,0xe1,0x5a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x70,0x00,0x49,0x24,0x92,0x49,0x24,0x6e,0x00,0x49,0x24,0x92,0x49,0x24,0x6c,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_tisic[] = { + {0xd6,0x58,0x61,0xd0,0x62,0x50,0x00,0xb9,0x1b,0x8e,0x37,0x92,0x54,0xc0,0x29,0x25,0x50,0xb6,0xa1,0x7e,0xa0,0xe6,0xe3,0x72,0x38,0xe3,0x94,0xa0,0x34,0xda,0x11,0xc3,0x12,}, + {0xd9,0x24,0xab,0x19,0x59,0xe7,0x41,0xb7,0x24,0x6e,0x37,0x37,0xf1,0xc8,0xdc,0x1c,0x72,0x58,0xe4,0x54,0x83,0xf7,0xc2,0xf2,0x7b,0x2a,0xc2,0xe5,0xb9,0x63,0x81,0xb4,0xda,}, + {0xd9,0x9d,0x9a,0xed,0x19,0x67,0xe4,0x04,0x93,0x21,0x24,0x09,0x6d,0xc4,0xb7,0x9e,0x96,0x3e,0x38,0xa5,0xd2,0xb7,0x1c,0x6d,0x78,0xe3,0x56,0x28,0x81,0x5c,0x09,0x32,0xeb,}, + {0xd7,0xd3,0x3b,0x76,0x6b,0x8e,0xca,0x49,0xa6,0x07,0x1c,0xe8,0xc8,0x2a,0xf8,0xaa,0xea,0xa4,0x9a,0x50,0xed,0x5b,0x75,0x91,0xb4,0xc2,0x51,0x0e,0xf4,0xf3,0x72,0x69,0x53,}, + {0xd7,0xd4,0x43,0x3e,0xe1,0x57,0x2e,0x8a,0xec,0x6e,0x49,0x63,0x57,0xac,0x02,0xcd,0xb6,0x59,0x1b,0x57,0xa8,0x0a,0x95,0x90,0xc3,0x24,0x57,0xcb,0x78,0x1e,0x1d,0x22,0x9c,}, + {0xd4,0x95,0x7c,0xbd,0xd9,0xb8,0xac,0x5a,0x82,0x0e,0xd2,0xdd,0xc2,0xac,0xd8,0xe4,0x45,0x2e,0xb1,0x63,0x68,0x3b,0x64,0x71,0x24,0x30,0x5b,0x26,0x57,0x90,0xf3,0xbd,0x6b,}, + {0xd4,0x96,0x6b,0xfe,0x1a,0xc0,0x88,0x11,0x2d,0xb5,0x4d,0xb3,0xc0,0xe7,0x90,0xcd,0x72,0xc7,0x7c,0xbc,0xe6,0x46,0xdb,0x62,0x25,0xaa,0xc5,0x68,0xb5,0x13,0x73,0xca,0xc7,}, + {0xd9,0xf0,0xf2,0xe0,0xd1,0x53,0xaa,0x14,0xd4,0xb2,0xcf,0x9c,0x73,0x0b,0x80,0x3b,0x8f,0x2b,0x13,0x60,0xea,0xd1,0x72,0x91,0xf6,0xa3,0x63,0x09,0x7d,0x9a,0xcf,0xbf,0x8c,}, + {0xd9,0xec,0xf3,0x31,0x98,0xe2,0xcd,0x3b,0x24,0xb9,0xb5,0xe5,0x57,0x4b,0xdb,0xb4,0x6e,0xcc,0x2b,0x80,0xab,0xf5,0x4d,0xd2,0x3a,0xd7,0x69,0x0d,0xe4,0xac,0x8a,0xf2,0x9e,}, + {0xda,0x2a,0xe3,0x72,0x61,0x50,0x8b,0xcb,0x0f,0x88,0xf4,0xdb,0xa0,0xcd,0xc6,0xe1,0x78,0x36,0xd4,0x8c,0x8a,0x16,0xc9,0xc8,0x35,0x04,0x5d,0x0a,0x43,0x5c,0x6d,0xc0,0x67,}, + {0xda,0x67,0xeb,0xf5,0x62,0x54,0xa9,0xd0,0xe3,0x72,0x44,0xcc,0xa0,0x89,0x26,0x69,0x56,0x09,0x0b,0xbc,0xc9,0xaa,0x03,0x2e,0xc6,0xc5,0x80,0xa9,0x59,0x43,0xe1,0xc8,0xaa,}, + {0xdb,0x29,0xe4,0x2d,0xa0,0x6b,0x2c,0x39,0x6a,0x2e,0xb5,0xcb,0x7f,0x6b,0x29,0x19,0xa9,0x06,0x98,0x6f,0x6b,0x48,0x1b,0xe1,0x56,0x9c,0x6e,0xc8,0x9a,0xce,0xac,0x77,0x1d,}, + {0xd9,0xec,0xda,0xea,0x33,0xa4,0xcd,0x4b,0x45,0xa5,0xe5,0x23,0x71,0x0c,0xd8,0x84,0x8e,0x23,0x0d,0x62,0xac,0x54,0x1d,0x69,0x3d,0x05,0x96,0xe6,0xe1,0x69,0xbc,0x54,0xe5,}, + {0xdb,0x2c,0xe2,0xf1,0xaa,0xba,0x88,0x1b,0xc7,0x32,0x27,0x3f,0x6f,0xac,0x31,0xb3,0x4b,0x44,0xdb,0x5e,0x27,0x96,0x5d,0x10,0xa9,0x36,0xbc,0x09,0x5b,0x2c,0x96,0x37,0x67,}, + {0xd8,0x9e,0x18,0x2e,0xac,0x69,0xc5,0x63,0x2b,0xec,0xa8,0x5f,0x76,0xe6,0x55,0x53,0x54,0xb5,0x90,0x94,0xa4,0xe2,0xd4,0xb2,0x54,0xd0,0xc2,0xc8,0x26,0x6c,0x9e,0x5a,0xe1,}, + {0xd4,0xd4,0x54,0xfe,0x52,0x63,0x2a,0x24,0x83,0x6e,0xd7,0x6d,0x5c,0xe8,0xd8,0x9a,0x1d,0xec,0x94,0x5d,0x28,0xa7,0x64,0x65,0x8b,0x24,0x63,0x47,0xbb,0x6c,0x71,0xa4,0x3b,}, + {0xd5,0xd1,0x5d,0x3d,0xd3,0xbf,0x67,0x76,0xa4,0xb2,0x3c,0x99,0x61,0x27,0x07,0x8d,0x8a,0xea,0xe4,0xc7,0xa6,0xd9,0x04,0x18,0x4a,0xe4,0x61,0xc4,0x69,0x1a,0xc4,0xe7,0xf0,}, + {0xd5,0x8b,0xa5,0xbd,0xda,0xb9,0xc8,0x4d,0xec,0xa9,0x26,0x2c,0x59,0x4c,0xb7,0x24,0xb2,0xd6,0x2a,0xb8,0xc8,0xcc,0x93,0xb6,0xeb,0x58,0x61,0x66,0x48,0xf3,0x56,0x6b,0x67,}, + {0xd5,0xcc,0x8d,0x79,0xdb,0xc1,0x07,0xa6,0x02,0x6f,0x37,0x26,0x61,0x07,0x69,0x1b,0x05,0xb9,0x9a,0xc3,0xe5,0xc9,0x5b,0x70,0x6a,0xb2,0x61,0xa4,0x49,0x5c,0x69,0xd7,0x20,}, + {0xd5,0x0d,0xad,0x71,0x63,0x61,0x42,0xbf,0x9b,0xfe,0xfe,0xd0,0x61,0xa3,0xe1,0xe4,0xd1,0xa6,0xe2,0xc3,0x65,0xa2,0x1c,0x7a,0x39,0x2d,0xc3,0xc3,0xc6,0xd3,0x6e,0xc0,0x94,}, + {0xd4,0x0e,0xa5,0xfa,0x13,0x65,0xc8,0x5a,0x9a,0x72,0xbb,0x57,0xc1,0xa7,0x76,0x09,0x6e,0x38,0xff,0xc1,0x44,0xfb,0x03,0x72,0x67,0x01,0x61,0xe3,0x88,0xd5,0x82,0x58,0x65,}, + {0xd4,0xd4,0xa3,0xbe,0x62,0x67,0xa9,0x47,0x4a,0x50,0x49,0xb4,0x61,0x2d,0xc9,0x6d,0x69,0x8e,0xdb,0x60,0xac,0xb7,0x64,0x91,0x96,0x3a,0x5d,0x69,0xb7,0x2e,0x8e,0x5e,0x6a,}, + {0xd3,0xdf,0x7c,0x71,0x9a,0xbc,0x89,0x86,0xec,0x72,0x58,0xd4,0xcc,0x42,0x02,0x90,0x0d,0x5b,0x6d,0xd0,0x41,0xfd,0x19,0x72,0x28,0xe4,0xb7,0x23,0x47,0xa7,0xb6,0xd7,0x23,}, + {0xd5,0x16,0x62,0x65,0x1b,0x54,0x20,0xaa,0xaa,0x71,0xc0,0xcb,0x8e,0x00,0xe8,0xd9,0x6e,0x49,0x52,0xec,0x00,0xa5,0xae,0x49,0x26,0xe4,0x5a,0x80,0xc8,0x5a,0x51,0xc6,0xe2,}, + {0xd8,0xa7,0xd3,0x2c,0x68,0xb9,0x42,0x26,0xda,0x24,0x92,0x00,0x51,0x6c,0xb6,0xeb,0xe5,0x46,0xe5,0x60,0x44,0x54,0x89,0x21,0x17,0x40,0xb4,0x86,0xc4,0x9b,0x48,0xa1,0x2a,}, + {0xd9,0xe8,0xcb,0xb1,0x22,0xd0,0xa9,0x93,0x53,0x2d,0x84,0x82,0x53,0x4c,0xa5,0x10,0x8c,0x52,0xd3,0x5c,0xac,0x98,0x68,0x71,0xb0,0xd5,0x63,0x6c,0x3e,0xae,0x8e,0xeb,0x9e,}, + {0xd9,0x6a,0xf3,0xf0,0xda,0xa8,0xec,0xa9,0x25,0xb2,0x28,0xbf,0xa9,0x6b,0xf7,0xd6,0x73,0xd9,0x21,0x5e,0xec,0xd8,0xe5,0xc8,0x6f,0x89,0xb8,0xd0,0x44,0xbc,0x49,0xb5,0x1c,}, + {0xd8,0x6f,0xc4,0x98,0x52,0x50,0xac,0x18,0xc2,0xa9,0xc0,0xa2,0x92,0x24,0x02,0x14,0x52,0xb9,0x2c,0x50,0x20,0xe9,0xb5,0xb2,0x49,0x24,0x78,0x40,0x5b,0x24,0xb6,0xdb,0x6d,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0xc4,0x20,0x49,0x24,0x92,0x46,0xdb,0xb8,0x20,0x36,0xdb,0x6d,0xb6,0xdb,0xee,0x00,0x36,0xdb,0x6d,0xb6,0xdb,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0xe0,0xaa,0x8c,0x00,0x49,0x24,0x92,0x49,0x24,0xcc,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x1c,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa2,0x57,0xa0,0x36,0xdb,0x6d,0xb9,0x24,0xa5,0xa0,0x5d,0xb6,0xdb,0x6d,0xb6,0x53,0xa0,0x59,0x24,0x92,0x49,0x24,0x69,0x8b,0x3e,0xdb,0x8d,0xc9,0x24,}, +}; +static const gsm_frame gsm_data_tisice[] = { + {0xd6,0x1c,0x8a,0x9d,0x21,0x50,0x60,0x48,0xdc,0x91,0x3c,0x52,0x54,0xc0,0x18,0xdc,0x2d,0x34,0x99,0x7e,0x80,0x66,0xdb,0x4e,0x26,0x9b,0x9d,0x61,0xb6,0xdb,0x6e,0x37,0x37,}, + {0xda,0x24,0x9a,0x5d,0x18,0x53,0xc8,0x51,0x5b,0x92,0x37,0x25,0x54,0x85,0xbe,0x17,0x93,0x59,0x12,0xba,0xe2,0xed,0x5c,0x21,0xa2,0x8e,0x67,0xa5,0x97,0x1a,0x45,0x98,0x44,}, + {0xdb,0xe8,0x92,0xd9,0x18,0x5d,0x68,0xbb,0x2b,0x4e,0x70,0xe9,0xb1,0x8e,0x21,0xa3,0x5e,0x06,0xdb,0x6c,0x0a,0x54,0xca,0x49,0x0d,0x5e,0x8a,0xc8,0x5c,0x26,0x14,0x22,0xcc,}, + {0xd8,0x12,0x3b,0x7e,0xa9,0xee,0xcd,0xeb,0xf6,0x72,0x22,0x82,0x58,0xaf,0x47,0x63,0x8d,0x34,0xcf,0xa6,0xd0,0x4b,0x14,0x72,0x48,0xd0,0x59,0x0d,0xf9,0x7a,0x6e,0xc9,0x19,}, + {0xd6,0xd6,0x43,0xbe,0x61,0x57,0x2c,0x18,0xbe,0x91,0xdb,0x62,0xad,0x2c,0x90,0x8d,0xba,0xdb,0x64,0xad,0xca,0xd0,0x43,0x92,0x15,0x7c,0x5b,0x4e,0x22,0x9f,0x74,0x37,0x2c,}, + {0xd4,0x53,0x8d,0x3e,0x18,0xb4,0xe9,0x54,0x40,0x92,0x88,0xe6,0xb4,0xa5,0xe8,0x82,0x23,0x3e,0x3c,0xb4,0xc6,0x7b,0x91,0x40,0xec,0xdd,0xbb,0x48,0x19,0xe9,0x29,0x9d,0xcc,}, + {0xd8,0xe3,0x48,0x19,0xaa,0x5f,0x29,0xb9,0xb7,0x91,0xa4,0x51,0x59,0x29,0x99,0x23,0xd2,0x74,0x53,0x6b,0x2a,0x3d,0x8d,0x71,0xc2,0x47,0x5f,0x2c,0xc9,0x14,0x7c,0x55,0x15,}, + {0xd9,0x6c,0xdc,0x39,0xe0,0x79,0xec,0xb8,0xea,0x52,0x5e,0xf0,0xb0,0xcc,0xcd,0x6c,0xe6,0xdf,0x9b,0x5a,0xad,0x6f,0x9b,0xf2,0x1d,0x33,0x52,0xad,0xc3,0xab,0x93,0x1f,0xd3,}, + {0xd9,0xe9,0xd4,0xb1,0xa1,0x96,0xab,0xe9,0x7a,0xac,0xed,0x17,0xa2,0x8c,0xaf,0x61,0x5b,0xc5,0x55,0x58,0xea,0x07,0xe9,0xb0,0x2c,0x36,0xa8,0xac,0x06,0x64,0x6a,0xb6,0x84,}, + {0xda,0x2c,0xe3,0x71,0x61,0x9e,0x8b,0xe4,0x13,0xc2,0x29,0x14,0x7a,0xaa,0xa1,0x5c,0x90,0xaa,0xdd,0xac,0xca,0x0c,0xa6,0x08,0xa7,0x6c,0xa5,0x4a,0x09,0x3c,0x0f,0x2a,0xe0,}, + {0xdb,0x27,0xd3,0x2d,0x61,0x6c,0xaa,0x64,0x65,0x6c,0xe4,0x3b,0xc4,0xa9,0x41,0x2b,0x54,0xc2,0x6a,0x90,0xc9,0xa6,0x8b,0x6d,0xa1,0x11,0xb5,0x0b,0x2f,0x00,0xd1,0x1a,0x92,}, + {0xda,0xa7,0xdb,0x75,0x6b,0x78,0xc8,0xc5,0x69,0xa6,0x5e,0xa3,0xb2,0xe9,0x0a,0x14,0xa2,0x93,0x98,0xe0,0xac,0xbb,0x24,0x2f,0x97,0x6b,0x70,0xea,0xc3,0x55,0x82,0x59,0x1c,}, + {0xdb,0x2c,0xdb,0xa9,0x59,0xc9,0x2d,0x46,0xeb,0xba,0x0b,0x5b,0xcc,0xca,0xe5,0x16,0x46,0x58,0x44,0x92,0xe8,0x4a,0xc0,0x40,0x49,0x1a,0xaa,0xa7,0x36,0x97,0xce,0x7c,0xb5,}, + {0xd6,0x57,0x32,0xfb,0x64,0xc8,0x88,0xd8,0xde,0xee,0xc7,0xa4,0xde,0x85,0xd8,0xbc,0xb2,0xd7,0x74,0xba,0x85,0x14,0x50,0x72,0x7b,0x6d,0x55,0x68,0xb6,0x83,0x96,0x4a,0x9d,}, + {0xd5,0x54,0x4d,0x3e,0x91,0x53,0x49,0x6a,0xda,0x18,0xdc,0xa4,0x5b,0x46,0xd8,0xe2,0x22,0x1f,0x63,0xaf,0xe4,0xc7,0x1e,0x44,0xcd,0x0f,0x5b,0x04,0x89,0xf5,0xac,0xb0,0x15,}, + {0xd5,0x10,0x66,0x3d,0xc9,0xb8,0x89,0x68,0x65,0xb1,0xb6,0x98,0x55,0x28,0x89,0xea,0x4e,0xdb,0x1c,0x5b,0x46,0xaf,0x67,0x4e,0xe9,0x09,0x51,0x09,0x11,0x0c,0xd1,0xc7,0x9e,}, + {0xd4,0xcd,0xbd,0x7d,0x52,0xad,0x69,0x20,0xd2,0x96,0x39,0x34,0xb5,0xc6,0xc9,0x15,0x15,0x37,0x1d,0x5b,0xc3,0x26,0xa4,0x6b,0x0b,0xa9,0xb5,0x26,0xbb,0x64,0x64,0x46,0xfc,}, + {0xd4,0x8d,0xb5,0x7d,0x92,0x5b,0x82,0xd9,0x28,0xa9,0x3d,0x3c,0xb5,0xc2,0x10,0xaa,0x30,0x37,0xbe,0x5b,0x44,0xcc,0xdb,0x9a,0x46,0x80,0xb5,0xc2,0xae,0x43,0x74,0xd3,0x9d,}, + {0xd4,0x4d,0xd5,0x79,0x9a,0x5b,0xa5,0x4a,0xe0,0xb2,0x3a,0xb3,0x5f,0x26,0x44,0xc3,0x5a,0xb5,0x27,0xb5,0x67,0xd6,0xc4,0x8d,0xc7,0x24,0xb5,0x05,0x5d,0x2a,0x21,0xc7,0xe2,}, + {0xd5,0x13,0x93,0xfe,0x59,0xb3,0xc9,0x49,0x24,0x6c,0x24,0xe4,0x61,0xeb,0x6f,0x63,0x6d,0xb6,0xe0,0x63,0xcc,0xd7,0x2b,0x26,0x68,0x50,0x9f,0xce,0xf3,0x5a,0x77,0x5d,0x6b,}, + {0xd4,0xdb,0x5b,0xfe,0xe0,0x5f,0x0c,0xc4,0x2c,0x91,0xc9,0x24,0x5f,0x0b,0xd8,0x20,0x89,0xc5,0x2d,0xbd,0x2b,0x39,0x69,0xa1,0x8d,0x23,0xc2,0x09,0xcf,0xab,0x60,0x96,0x57,}, + {0xd2,0x22,0x9c,0x71,0x21,0xb6,0x64,0xdb,0xf5,0x92,0x16,0x11,0xca,0x03,0x79,0xdb,0xb6,0x36,0x9a,0xbc,0x21,0x3c,0xd7,0xb2,0xdb,0x19,0xc4,0x21,0x14,0xec,0xcd,0xb9,0x24,}, + {0xd6,0x97,0x62,0x2a,0x6a,0xc0,0xc0,0xb6,0x9b,0xb2,0x20,0xe3,0xb6,0xa1,0x36,0x94,0xb6,0x28,0x62,0x50,0x20,0xa8,0xd3,0x2c,0xc6,0xd3,0xb9,0x20,0xa8,0x9a,0x72,0xc2,0xda,}, + {0xda,0xe4,0xdc,0xe1,0x60,0xc3,0xc2,0xc5,0x1a,0x4c,0x56,0xdb,0x71,0xa7,0xa6,0x91,0x74,0x07,0x59,0x67,0x6a,0x35,0x52,0x91,0x36,0x97,0x51,0x0c,0x98,0xc4,0xc1,0x07,0x84,}, + {0xda,0x27,0xc3,0x29,0xd9,0x54,0xeb,0x24,0x2b,0x0e,0x4a,0x58,0x8a,0xcb,0xa6,0xc6,0x14,0x33,0x41,0xd7,0x6d,0x35,0x9d,0x69,0x23,0x30,0x73,0x2c,0xbf,0x02,0xc9,0x48,0x1d,}, + {0xd9,0xa9,0xca,0xa5,0x1a,0x6c,0x8a,0x1c,0xc4,0x0d,0x2c,0x5d,0xb0,0xc8,0x8a,0x26,0x2d,0xd3,0x2c,0x51,0x2a,0x65,0x98,0x52,0xcc,0x52,0x7a,0xcb,0x37,0x23,0x49,0xb7,0x50,}, + {0xd5,0x9f,0x91,0x79,0xd0,0xe8,0xc5,0x2a,0x8f,0x34,0x53,0x83,0xe6,0xa8,0x37,0x27,0x0d,0xeb,0xa6,0x71,0xcd,0x46,0x48,0x9f,0x5d,0xe5,0x51,0x74,0x36,0xd1,0xed,0xc6,0xe4,}, + {0xd5,0xa2,0x9a,0x35,0xe0,0x5f,0x4f,0xc9,0x5a,0xc1,0x75,0x2b,0x5f,0x8f,0xd7,0x2d,0x9a,0x98,0x25,0x63,0x0f,0xd9,0x25,0x92,0x54,0x88,0xbf,0x8d,0x76,0x9d,0x6d,0xd6,0x91,}, + {0xd5,0x19,0x7c,0x2d,0x60,0x64,0xcf,0x13,0xcc,0x8e,0x5b,0x1a,0xbc,0xc9,0x82,0x9f,0xad,0xc9,0x9d,0xbd,0x0e,0xb6,0xe3,0x6f,0xc5,0x23,0x61,0x6c,0xc7,0x14,0x2e,0x2e,0xda,}, + {0xd4,0x5a,0x9b,0x71,0x58,0x5d,0x09,0x79,0x2e,0x78,0xb4,0x66,0xce,0xed,0x48,0xec,0xb2,0x26,0x1a,0xbd,0x27,0xbe,0xdf,0x6e,0x39,0xd5,0x5f,0x4a,0xa4,0xba,0x75,0xba,0xe3,}, + {0xd3,0x9b,0xac,0x61,0x70,0x61,0x08,0x48,0xc4,0x1a,0x29,0x9c,0x5f,0x25,0xbd,0x6b,0x4d,0x48,0x34,0xbf,0x46,0x4b,0x25,0x8d,0xa5,0xc4,0xd0,0xaa,0xda,0xe6,0x6f,0x34,0x0a,}, + {0xd2,0x60,0xca,0x2d,0xe1,0xc0,0xa7,0xc0,0xbc,0x79,0xdb,0x11,0x5e,0xa5,0xd5,0xe1,0xba,0x49,0x6b,0xbc,0xc4,0x84,0xd7,0x4f,0xbb,0x65,0xba,0xc4,0xb8,0xca,0x12,0x45,0x6d,}, + {0xd1,0x67,0x83,0x72,0xe3,0xbc,0xc3,0x68,0xa2,0xc1,0x77,0x1c,0xd4,0x22,0xb7,0x6a,0x90,0x2a,0xdb,0xbc,0x20,0x95,0x77,0x8a,0x08,0x2e,0xd2,0x41,0x37,0x0c,0x76,0x3a,0x19,}, + {0xd3,0x67,0x48,0xde,0x33,0xec,0xc1,0x24,0xe0,0x96,0x49,0x63,0x64,0xe0,0x90,0xa9,0xec,0x62,0x8c,0x58,0xc0,0xb8,0xdb,0x2a,0x58,0xab,0xba,0xc0,0xa7,0x1c,0x73,0x25,0x33,}, + {0xd5,0xa7,0x68,0x44,0x9b,0xc2,0x80,0xd9,0x14,0x8e,0xb3,0x9c,0x96,0xc1,0x3d,0x1b,0x6e,0x39,0x33,0x82,0x80,0xb9,0x94,0x95,0xd9,0x24,0x72,0xa0,0xcb,0x6b,0xac,0xb4,0xdc,}, + {0xd5,0x62,0x68,0x91,0x5a,0xc8,0x80,0xd9,0x6c,0x65,0x56,0x9d,0xc6,0x00,0x0a,0xdb,0x4d,0xc4,0xe3,0x7c,0x20,0x46,0xdb,0x6e,0x36,0xdb,0xd0,0x00,0x38,0xdc,0x6d,0xc6,0xdb,}, + {0xd0,0x5e,0xa2,0xdd,0x5a,0xec,0x00,0x48,0xdb,0x6d,0xb7,0x24,0x9a,0x00,0x49,0x24,0x92,0x49,0x24,0xe2,0x00,0x49,0x24,0x92,0x49,0x24,0x6c,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0x52,0x00,0x49,0x24,0x92,0x49,0x24,0x68,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0xdd,0x1a,0x60,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +static const gsm_frame gsm_data_minus[] = { + {0xd4,0x5a,0x99,0x11,0x2c,0x50,0x20,0xc9,0x1c,0x50,0x65,0x25,0x5c,0xa0,0xd8,0xf5,0x4e,0xd9,0x33,0x5c,0xa0,0xd7,0x74,0x6d,0x26,0xe6,0x5c,0xc0,0xbf,0x8c,0x8a,0x32,0xda,}, + {0xd0,0xe9,0xd4,0x6e,0x23,0xbd,0x80,0xa8,0xe7,0xda,0xcb,0x1b,0x62,0xa0,0xb4,0xa4,0x97,0xb9,0x11,0xc1,0xa2,0xb4,0x01,0x6f,0x6b,0x6c,0x51,0x65,0xb6,0x40,0xea,0x56,0x5d,}, + {0xd0,0xeb,0xbb,0x2d,0xeb,0x5f,0x09,0x58,0xe2,0x33,0xc9,0x4c,0x57,0x07,0xc9,0x8b,0x48,0xf3,0x73,0x57,0x48,0xb9,0x2a,0x6c,0x76,0x77,0x55,0x88,0x08,0xdc,0x91,0xc3,0xcb,}, + {0xd1,0x68,0xbb,0x65,0xa3,0x57,0x49,0x39,0x2c,0x8d,0xa3,0x88,0x57,0xab,0x7a,0xe3,0x91,0xb6,0xd4,0x57,0xc8,0x1d,0x5c,0x8a,0xb6,0xdf,0x57,0x85,0x0c,0xdd,0x76,0x47,0x1b,}, + {0xd2,0x22,0xac,0x65,0x9a,0x57,0xe7,0xd4,0x3c,0xe9,0xe8,0x16,0x59,0xaf,0xa8,0x9f,0x4d,0xc9,0x23,0x57,0xa9,0x08,0x7b,0x77,0x2c,0xcd,0x59,0xe9,0xc2,0xf0,0xe9,0x2a,0xe2,}, + {0xd2,0x1f,0xf3,0x25,0x62,0x57,0xa6,0x7d,0x18,0xaf,0x63,0x1c,0x53,0x29,0xd8,0x52,0xe5,0xd8,0xe5,0xa9,0x29,0xda,0xd2,0x3c,0x9f,0x14,0x57,0xc7,0x58,0xdc,0x71,0x5a,0x36,}, + {0xd3,0x13,0xe4,0xa9,0x2a,0x57,0xca,0x49,0x2c,0x68,0x70,0xf2,0xac,0xac,0x1b,0x6c,0x6d,0x43,0xdb,0xaa,0x4a,0x37,0x2c,0x8c,0x86,0xed,0xae,0xca,0x17,0x5c,0x91,0x91,0x1c,}, + {0xd4,0xcc,0xb5,0x7d,0x92,0x57,0x66,0xb9,0x25,0xb5,0xa0,0x20,0xad,0x48,0x6a,0x94,0x79,0xb4,0x87,0x57,0x27,0x6b,0xd3,0x73,0x3a,0xd0,0x57,0xe5,0x0a,0x9c,0x91,0x59,0x21,}, + {0xd4,0x8e,0xbd,0xbd,0x92,0x57,0xc2,0x85,0x02,0xa9,0xf7,0x92,0x57,0x84,0x7a,0xd2,0x4d,0xeb,0x23,0x57,0x83,0x73,0x63,0x71,0x47,0x1b,0xad,0xe4,0x45,0x5b,0x66,0xc7,0x20,}, + {0xd4,0xcc,0xcd,0xf5,0x93,0x5b,0x24,0x5c,0x88,0x26,0x7c,0x93,0xad,0x64,0xfd,0x51,0x32,0x6a,0xd1,0xad,0x83,0x54,0x9c,0x8e,0x6e,0xdd,0x53,0x05,0x95,0xb5,0x84,0x39,0x33,}, + {0xd5,0x15,0x93,0xfa,0x29,0xa9,0x2c,0xc9,0x2c,0x8d,0x14,0x60,0x6d,0xec,0x4b,0xba,0x2f,0x62,0x0a,0x61,0x12,0xae,0xdb,0x72,0x56,0xe4,0x61,0x6c,0x40,0x7c,0xa9,0x4d,0x52,}, + {0xd5,0x19,0x83,0xf5,0xe0,0xc1,0x50,0x48,0xe9,0x1d,0x4c,0x66,0x60,0xcc,0x9d,0x25,0x00,0x0b,0x65,0xc1,0x4c,0x2a,0xaf,0x72,0x04,0x86,0xc2,0xab,0xad,0x66,0x76,0xdc,0x80,}, + {0xd2,0x5f,0xb4,0x61,0x61,0xc3,0x2a,0x8d,0x55,0x71,0xcc,0x9a,0xbc,0xc8,0xb8,0x54,0xd8,0xea,0xbb,0xba,0xaa,0xac,0x9b,0x12,0x5c,0xae,0x63,0x4a,0x56,0xa9,0x6c,0x56,0xfb,}, + {0xd1,0x6a,0xb3,0x12,0x6c,0x61,0x06,0x8c,0xde,0x6e,0x24,0xf5,0x60,0xe5,0x20,0xa5,0xae,0x56,0xc1,0xc0,0x86,0xbb,0xdb,0x2a,0x4a,0xe4,0xc3,0x26,0x54,0x7b,0x98,0xba,0xec,}, + {0xd1,0xea,0xa3,0x55,0xe4,0x61,0xc4,0xca,0x34,0x0b,0x1f,0x25,0x61,0x83,0x2b,0x4c,0x8c,0x56,0xed,0x63,0x66,0xd9,0x2b,0xb1,0x32,0xa7,0x61,0x22,0x9e,0x96,0x9b,0x0f,0x02,}, + {0xd2,0xe0,0xb4,0x12,0x5b,0xc3,0xc9,0xb6,0xdd,0x8b,0x87,0x94,0x67,0xed,0x34,0x97,0x69,0xba,0xe5,0x61,0x6a,0x55,0x4c,0x47,0xb7,0x1c,0xc3,0x6a,0x69,0x2b,0x82,0x1d,0x1d,}, + {0xd2,0x66,0xd2,0x55,0xec,0xc3,0x69,0x55,0xd5,0x92,0xa4,0x97,0x61,0x49,0x9a,0x23,0x92,0x49,0x13,0xc1,0x4a,0xa7,0x5b,0x52,0xb8,0xa7,0x61,0x6a,0x35,0x04,0xee,0x98,0xe5,}, + {0xd2,0x6c,0xc1,0x5a,0x74,0x61,0x28,0x49,0xf3,0x49,0x56,0x25,0xc0,0xe9,0x6b,0x2e,0xd1,0x21,0x52,0xc3,0x46,0x8f,0x67,0x5a,0xb8,0xc3,0x61,0x06,0x62,0xdb,0x96,0x57,0xd3,}, + {0xd2,0x26,0xe9,0x1d,0xba,0x5f,0x66,0x03,0x6b,0xa2,0x3c,0x9a,0xbe,0xe6,0x24,0x47,0xce,0x97,0x2d,0x61,0x24,0x3e,0x9b,0x14,0xd2,0xe5,0x6b,0x47,0x68,0xe6,0x0d,0xa7,0xa0,}, + {0xd5,0xdc,0x90,0x55,0x1b,0xb7,0x29,0x48,0xef,0x91,0xd0,0x0a,0x50,0xcb,0x3b,0xef,0x90,0xc5,0x03,0x66,0xe8,0xc1,0xce,0x10,0x48,0x72,0xe1,0x8e,0x41,0x09,0x95,0xe6,0xe2,}, + {0xda,0x1c,0xc1,0x48,0x01,0x7d,0xae,0x46,0xd4,0x2a,0xd1,0xaa,0xb8,0xac,0xc3,0x22,0x57,0x87,0x8c,0xe1,0x0d,0xf6,0x9d,0x92,0xc8,0xda,0x83,0x6d,0xf7,0x12,0x9d,0x5a,0xa2,}, + {0xdd,0x60,0xa2,0x08,0x49,0x95,0xed,0x6a,0x34,0x74,0xff,0x5f,0x56,0xaf,0x27,0x9d,0x6b,0xc5,0x64,0xb3,0x71,0xcb,0x24,0x9c,0xc8,0xec,0x5a,0xce,0x57,0x33,0xc9,0xea,0x6f,}, + {0xdd,0xa3,0xc3,0x58,0xc1,0xbb,0x0c,0xea,0xa6,0xce,0x6a,0x3e,0xde,0xaf,0x45,0x2d,0x87,0xc3,0x24,0x64,0x8e,0x64,0xb9,0x91,0xae,0x9c,0x88,0xce,0x18,0xf2,0xac,0x65,0x22,}, + {0xdc,0xe6,0xf4,0xa5,0x41,0xca,0xee,0xb8,0x95,0x82,0x28,0x22,0x55,0x10,0x26,0xa4,0x09,0xc2,0x6c,0x50,0x8e,0x18,0x83,0x31,0xb1,0x91,0x9e,0xd0,0xc6,0x71,0x55,0xaa,0x33,}, + {0xdd,0x68,0xfb,0xea,0x51,0x5d,0x51,0x0c,0x55,0x32,0x19,0x0d,0x9a,0xef,0x32,0xdb,0x14,0xb4,0x9d,0xec,0xac,0xc1,0x05,0x29,0x24,0xc1,0xee,0x49,0x90,0xc1,0x6a,0x47,0x53,}, + {0xdc,0x5f,0x8a,0xa1,0x10,0xa0,0x24,0x65,0x7c,0xf2,0xd9,0x6d,0x50,0x00,0x2f,0xdd,0x96,0xeb,0xae,0x92,0x60,0x4b,0x35,0xba,0xdd,0xad,0xe2,0x20,0x3b,0x66,0xb7,0x5d,0xae,}, + {0xd0,0x20,0xa2,0xe1,0x5a,0x7c,0xc0,0x49,0x23,0x92,0x46,0xdb,0xec,0x00,0x36,0xdb,0x6d,0xb6,0xdb,0xe2,0x00,0x36,0xdb,0x6d,0xb6,0xdb,0xa6,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0xa2,0xe1,0x5a,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x1c,}, + {0xda,0xa6,0xcb,0xe9,0xa3,0x63,0xa0,0x47,0x1c,0x92,0x4b,0xbf,0x51,0xc0,0xef,0xbe,0xdb,0x6d,0x6d,0x5f,0xd0,0x49,0x24,0x12,0x49,0x1b,0x7e,0x40,0xfd,0xb6,0xdb,0x5b,0x6d,}, +}; +static const gsm_frame gsm_data_point[] = { + {0xd5,0x58,0x61,0x0c,0xd1,0x50,0x20,0xb8,0xdb,0x6d,0xb9,0x0b,0x50,0xe0,0x6c,0x62,0x72,0xc4,0xcf,0x60,0xc0,0x44,0xd3,0x8d,0xdd,0x64,0xe0,0xc0,0x2b,0x1e,0x59,0xb8,0xe4,}, + {0xd8,0xd9,0xaa,0x91,0xd2,0x6e,0x80,0x36,0x5e,0x86,0xb6,0xeb,0x78,0x80,0x1a,0x65,0x46,0x4a,0xa5,0x9a,0xe0,0xa9,0x63,0xd1,0xb9,0x24,0x65,0x40,0xab,0x5b,0xd1,0xcb,0x2e,}, + {0xd9,0xa4,0xeb,0x1d,0x18,0xbb,0xac,0xc9,0x24,0x92,0x49,0xdb,0x60,0x46,0xb8,0x6f,0xd1,0xb6,0xda,0xa2,0xc5,0x49,0x4c,0x6a,0x48,0x1d,0xe0,0x23,0xba,0xb2,0xb2,0x4d,0x1f,}, + {0xdb,0x65,0xd4,0x9d,0xe1,0xb3,0x84,0x59,0xad,0x33,0x9d,0x1b,0x7d,0xc8,0xb1,0xa1,0x8a,0x50,0x95,0x5b,0x48,0x28,0x3d,0x91,0x75,0x17,0x86,0xe9,0xa9,0xe4,0xd6,0xd7,0x67,}, + {0xda,0x66,0xe2,0xea,0x1b,0x8b,0x2c,0xa7,0x94,0x8d,0xda,0x23,0xd9,0x50,0x24,0xdc,0x49,0xb5,0x67,0x6c,0xce,0x12,0xdd,0x56,0x60,0xe1,0x8c,0xec,0x63,0x03,0x2c,0x8a,0xc9,}, + {0xd9,0x27,0xa9,0x5d,0x9a,0xb0,0x8c,0x98,0x84,0x90,0xa8,0xcd,0xe2,0xa7,0x03,0x94,0xe3,0xa1,0x67,0xde,0xaa,0xe4,0xbc,0x71,0xcd,0x5c,0xcc,0x90,0xf4,0x9b,0x96,0x59,0x75,}, + {0xd4,0xdf,0x73,0xae,0x90,0x52,0x92,0x36,0x80,0x33,0xfd,0x63,0x52,0x94,0x34,0xd3,0xf1,0xc7,0x24,0x55,0x4f,0xc4,0xd2,0xe5,0xc6,0xec,0x57,0x50,0xc7,0x1a,0x3d,0xbb,0x24,}, + {0xd5,0xa0,0x63,0xae,0x58,0x55,0x0e,0xc8,0xda,0x0b,0xc5,0x65,0xa9,0xad,0xdc,0xdc,0x11,0x58,0xdb,0x55,0x0f,0xea,0xe4,0x48,0x1e,0xdd,0xb3,0xae,0x29,0x0a,0xf0,0xf0,0xee,}, + {0xd6,0x20,0x53,0xf2,0x28,0xbf,0xcc,0xea,0x31,0x97,0x33,0x14,0x5f,0x2f,0xf4,0x2c,0x91,0xcd,0x5b,0x5f,0xeb,0x2c,0xcf,0x90,0xdc,0xa1,0x61,0xca,0xc8,0x37,0x4a,0xc7,0x13,}, + {0xd5,0xde,0x53,0x72,0x61,0x5f,0xab,0x59,0x0f,0x93,0x42,0xac,0x5f,0x0e,0xb9,0x5c,0x8a,0x23,0xe9,0xbf,0x6c,0xc9,0x2d,0x8a,0x32,0xb9,0x5f,0x6b,0xb6,0xa5,0xbd,0xc6,0x90,}, + {0xd5,0x1a,0x64,0x33,0x22,0x5f,0x8c,0xd0,0xb5,0xad,0x36,0xed,0x5f,0x6c,0xb6,0x9c,0x4e,0x59,0x1f,0xbc,0xad,0x4a,0x99,0x16,0xa9,0x24,0xb9,0x0c,0x3e,0xdc,0x45,0xa3,0x5c,}, + {0xd4,0xd5,0x64,0xb6,0xb8,0xb8,0x8a,0x5f,0x9d,0xad,0x01,0x8e,0x5f,0x08,0x20,0x14,0xd1,0x47,0x21,0xb4,0xc6,0xba,0xc0,0x7f,0x7f,0xb2,0xbf,0x28,0x09,0x07,0xae,0xb9,0x74,}, + {0xd4,0xd4,0x6c,0xfe,0x60,0xbf,0x88,0x74,0x46,0x73,0x35,0x6b,0x5f,0x2b,0xb8,0xd4,0x11,0xd9,0x1b,0x5b,0x26,0x3d,0xde,0x20,0x1a,0x7a,0xc3,0x4c,0xdb,0x5c,0x71,0x31,0xdc,}, + {0xd5,0x0e,0x85,0xfe,0x0b,0x5f,0x25,0xdc,0x1c,0x75,0xc4,0x58,0xa6,0x0a,0x0b,0x2a,0x6e,0xd9,0x63,0xbe,0xea,0x09,0x1d,0x8d,0xc9,0x64,0xbf,0x26,0x36,0xc4,0x8b,0xd6,0xe4,}, + {0xd5,0x4b,0xbc,0xf5,0x63,0x5b,0xe3,0xe9,0x95,0x07,0x2f,0x99,0x5f,0xc5,0x4b,0x9c,0x41,0x6a,0xbc,0x61,0xc4,0x0d,0xf2,0x4c,0xc7,0x92,0x61,0xc3,0xd1,0x6c,0x89,0xb6,0x49,}, + {0xd6,0xc9,0xb5,0x35,0xd3,0x5f,0x83,0x6f,0x14,0x96,0xcb,0x25,0x5f,0xe3,0xce,0x12,0xb2,0x28,0xaa,0x5f,0xc1,0x87,0xe8,0xdc,0x9c,0xa8,0xbf,0x26,0xcb,0x1a,0x42,0xc9,0xd4,}, + {0xd5,0x89,0xc5,0x7a,0x52,0xbf,0xc6,0xc8,0xdb,0x8d,0x4f,0x64,0x5f,0xc5,0x02,0x5c,0x4d,0xbb,0x55,0x5f,0x44,0xed,0xcb,0x92,0x69,0x11,0xbf,0x25,0x0f,0x75,0x8a,0xcb,0x2c,}, + {0xd5,0x8a,0xad,0xfa,0x12,0xc3,0x84,0xe5,0x8f,0x43,0xa6,0xec,0x5b,0x24,0xfc,0xd0,0x16,0xbd,0x1b,0xb9,0x85,0xac,0xf2,0x86,0xb7,0x45,0x5f,0xe2,0xda,0xdd,0x6e,0x71,0x6d,}, + {0xd5,0x94,0x63,0x3e,0x51,0x63,0x48,0xd5,0x2d,0xd2,0xb8,0xd0,0xa3,0xcd,0x36,0xad,0x76,0xcb,0xe2,0x63,0x70,0xb2,0xbb,0x91,0xb9,0x1c,0x60,0xac,0x36,0x90,0x7d,0xf6,0xa5,}, + {0xd5,0x56,0x4b,0x7e,0xa8,0xbc,0xe9,0xd7,0x4b,0x0a,0x74,0xda,0xbe,0xc8,0xfb,0x64,0x8a,0x81,0x55,0x56,0xa7,0x7a,0x5e,0xaf,0x8a,0x45,0x7d,0x29,0x2f,0xae,0x8e,0x31,0x58,}, + {0xda,0x68,0xb1,0x11,0x23,0x70,0xc8,0xc0,0xeb,0x6d,0xab,0x99,0xc0,0xc7,0x80,0xd0,0x70,0x3e,0x12,0xe2,0xcb,0x41,0x1a,0xb0,0xc7,0x4c,0x65,0x49,0xd5,0x5d,0x8a,0x61,0xe1,}, + {0xda,0x65,0xda,0xe6,0x2a,0xaa,0xc9,0x5c,0xe5,0xa3,0xd9,0x64,0x88,0xcd,0xb9,0x7d,0x72,0xcd,0x4c,0x7c,0xa9,0x1e,0xf5,0x75,0x3d,0x6b,0x7c,0x88,0x8d,0x9e,0xb5,0xff,0xeb,}, + {0xd9,0x68,0xe2,0x8d,0x61,0xdc,0x88,0x8b,0xe4,0x0b,0x4d,0x6d,0xb7,0x69,0x39,0x17,0x68,0xea,0xb9,0x83,0x69,0xc9,0x25,0x8e,0x67,0x5f,0x86,0xc9,0xb9,0xe4,0x99,0xe7,0x3c,}, + {0xd7,0xee,0xfb,0x15,0x58,0x9c,0xc8,0x65,0xd6,0xb2,0x47,0xac,0xba,0xc4,0xad,0x67,0x74,0xce,0xdc,0xbb,0xa8,0x58,0xca,0xe2,0x22,0xe2,0x54,0xa8,0xa7,0x15,0x90,0x6c,0xde,}, + {0xd7,0x6e,0xfb,0x5e,0x1b,0xa2,0xaa,0xba,0xdc,0x8d,0x7a,0x94,0xb1,0x28,0x76,0xdb,0x95,0xa9,0x14,0x81,0x29,0x14,0xe0,0xad,0x26,0x8d,0xcc,0x88,0x26,0x85,0x2a,0x3a,0xe9,}, + {0xd7,0x68,0xfb,0xa1,0x12,0x94,0xa8,0xa4,0xb8,0x4e,0x38,0xd3,0x6a,0xe4,0x95,0x41,0x47,0x23,0x2b,0x94,0x42,0x0a,0xcb,0x89,0x38,0xdb,0xd6,0x00,0xe6,0x8a,0x45,0xa2,0xd1,}, + {0xd0,0x5e,0xaa,0xe1,0x5a,0xdc,0x20,0xc8,0xe9,0xb5,0xb9,0x5c,0xee,0x20,0x67,0x2c,0x76,0x49,0x24,0xd4,0x20,0x49,0x24,0x92,0x49,0x24,0xe8,0x20,0x49,0x1c,0x92,0x38,0xe4,}, + {0xd0,0x60,0xa2,0xe1,0x5a,0x54,0x00,0x39,0x24,0x92,0x49,0x24,0x9a,0x00,0x49,0x24,0x8e,0x49,0x1c,0x9e,0x00,0x49,0x24,0x92,0x39,0x24,0x74,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xda,0xa6,0xcb,0xe9,0xa2,0x50,0x60,0x36,0xdb,0x6d,0xa2,0x01,0x51,0x20,0x92,0x49,0x24,0x92,0x92,0x52,0xe0,0xa4,0x92,0x49,0x24,0x8a,0xb7,0x92,0x36,0xdc,0x6d,0xb1,0x24,}, +}; +static const gsm_frame gsm_data_hafo[] = { + {0xd7,0x5f,0x61,0x9c,0x13,0x50,0x20,0xa6,0x92,0x44,0x44,0x93,0x56,0xa0,0xb3,0xa8,0xaf,0x27,0x1b,0x8c,0xe0,0x79,0xd5,0xaf,0x1d,0xd2,0x8f,0xc1,0xf5,0x2b,0xd2,0xb9,0x61,}, + {0xd7,0x33,0xc3,0x59,0x91,0x59,0xa4,0x68,0xa6,0xe3,0xef,0xfd,0x56,0xa9,0x46,0xe0,0xcd,0xf5,0xa2,0x59,0x68,0x35,0x51,0xe5,0xcb,0xd5,0x53,0x49,0xb2,0xd5,0x14,0x4e,0xee,}, + {0xd6,0xad,0x99,0x9c,0xd9,0x51,0x4d,0x5a,0xe0,0x70,0xe4,0xec,0x57,0x2b,0xc5,0x4b,0x10,0x36,0xe5,0xad,0xf0,0xd5,0x28,0x6d,0x33,0xc4,0x57,0x71,0x47,0x94,0x6a,0x22,0xdf,}, + {0xd6,0x26,0xa9,0xe0,0x60,0x69,0x32,0x39,0xec,0x89,0x33,0x4c,0xb1,0x31,0xca,0xfe,0x56,0xb5,0x11,0x5b,0x30,0x3a,0x7e,0x90,0xa0,0x1c,0xa5,0x54,0xb9,0x3a,0xb1,0x71,0x5a,}, + {0xd5,0xe7,0x82,0x14,0xe0,0x58,0xb4,0x44,0xdb,0xf2,0x48,0xa2,0xb1,0x32,0xa8,0x6b,0x5e,0x58,0x9b,0x56,0xb2,0x50,0xcc,0x7a,0xe8,0xe0,0x98,0xb3,0xc0,0xd0,0x7a,0xeb,0x62,}, + {0xd5,0x1f,0x99,0x9c,0xe2,0x57,0x14,0x41,0x4b,0x8a,0xc7,0x25,0xac,0xf1,0x4a,0x12,0x4e,0x4f,0x5d,0xa9,0x73,0x4b,0x14,0x62,0xd8,0xee,0xad,0x35,0x28,0xe3,0x4d,0xbe,0x9d,}, + {0xd5,0x24,0xaa,0xa1,0x20,0x54,0xb4,0x38,0xe2,0x65,0xa3,0xcb,0xab,0xf3,0xaf,0x34,0x78,0x25,0x85,0x57,0x52,0xe8,0x7c,0x92,0x20,0x7a,0xad,0xd3,0x3c,0xc5,0xae,0x54,0x9d,}, + {0xd5,0x28,0x9a,0x6a,0x10,0x6a,0xd4,0x0b,0x2c,0xae,0xc6,0xd3,0x60,0xd1,0x81,0x63,0x96,0xbb,0x6b,0xc2,0xef,0x28,0x03,0x72,0xcf,0x2d,0x61,0x2e,0x77,0x23,0x08,0xc5,0x31,}, + {0xd4,0x23,0x99,0x9e,0x48,0xca,0x8e,0xfc,0xee,0x4a,0x20,0xe6,0xb8,0xaf,0x3f,0x1c,0x50,0x99,0x61,0x5c,0x8c,0x79,0xb3,0xac,0xe2,0x6b,0xb6,0xe8,0x51,0xa2,0xbd,0xa5,0xf1,}, + {0xd5,0xde,0x88,0xe1,0x19,0xd6,0x06,0x84,0x93,0x5f,0x47,0xe9,0xc0,0xe8,0x78,0x9b,0x46,0xd0,0x28,0xaa,0x85,0xd3,0xd8,0xc0,0x42,0x9a,0x6c,0xa6,0x8e,0xe3,0xcd,0x47,0x5c,}, + {0xda,0x26,0xeb,0xf0,0xd8,0xd4,0xa5,0xf3,0x9c,0x6d,0xca,0x85,0xdd,0x48,0xb7,0x54,0x5d,0x46,0x59,0x76,0xc9,0x34,0x13,0x46,0x59,0x52,0x77,0x67,0xdd,0x56,0x47,0x43,0x85,}, + {0xda,0x66,0xe3,0x20,0xd1,0xc7,0xe9,0x35,0x17,0x87,0xd7,0x1e,0x62,0xc9,0xf6,0xdb,0x90,0x38,0xd9,0xbd,0x2a,0x61,0x51,0x88,0xc2,0xda,0x69,0x2d,0x28,0x2d,0x52,0x29,0x5d,}, + {0xda,0xa7,0xd3,0xa9,0xd8,0xb1,0x4a,0x37,0x0c,0xc9,0xd1,0xe9,0xa2,0xaa,0x64,0x9c,0x7e,0x9d,0xdc,0x98,0xcc,0xc9,0x1c,0xaf,0x97,0x12,0x6e,0xac,0x57,0xa3,0x9b,0x3b,0x6f,}, + {0xd7,0x60,0xa2,0x60,0x10,0x88,0xc9,0x5d,0x7e,0x87,0xcb,0x1d,0xdc,0xa9,0x2b,0x63,0xb3,0xe7,0x2a,0xe4,0x46,0xed,0x1a,0x7c,0x37,0xc2,0xdc,0xa8,0x53,0x33,0x6f,0x88,0xe7,}, + {0xd3,0x6a,0xd0,0x91,0xb2,0x6c,0xa5,0x1f,0x3a,0x9a,0x37,0x12,0x6a,0xe7,0xaa,0xa5,0x92,0x46,0xc0,0xca,0xca,0x03,0xea,0x9a,0x4b,0x24,0x5b,0x2d,0x38,0x87,0x8d,0xaa,0xac,}, + {0xd2,0xe8,0xc9,0x9e,0x31,0x63,0x09,0xde,0x6a,0x03,0xb5,0x6b,0xc3,0x0b,0x4b,0x74,0x8d,0x89,0x84,0x61,0x48,0xd5,0x66,0x78,0xd2,0x4f,0x6c,0xcc,0x27,0x24,0xb5,0xd9,0x01,}, + {0xd4,0x6c,0xe0,0x1a,0xaa,0xc1,0x0b,0x63,0x50,0xd2,0x28,0xac,0x61,0x2a,0x44,0x80,0xf1,0x59,0x2d,0xc3,0x09,0x7b,0x22,0x21,0x58,0xec,0x61,0x28,0xda,0xec,0x8c,0x23,0xa2,}, + {0xd4,0x2c,0xd0,0x16,0xe9,0x61,0x26,0xe7,0x1c,0x92,0x44,0x58,0xc3,0x48,0x41,0xa3,0x8e,0x49,0x19,0xc3,0x45,0x39,0xe0,0xb1,0xc9,0x25,0x61,0x84,0x09,0x9a,0x36,0x2a,0xa4,}, + {0xd3,0xe9,0xe9,0x06,0xf1,0x61,0xa3,0xc7,0x67,0x58,0xb6,0xce,0x61,0x65,0x2a,0xab,0x8c,0x33,0xd2,0x61,0x24,0xe9,0x25,0xb2,0xba,0x18,0xc1,0x24,0xf6,0x75,0x7a,0x57,0x25,}, + {0xd3,0xa8,0xe9,0x02,0xf1,0xc3,0xa3,0x7b,0x95,0xca,0x48,0xda,0xc3,0x24,0xb6,0x69,0xed,0xc9,0x24,0xc0,0x85,0xc9,0x1c,0x2c,0x6a,0xdd,0xc0,0xa3,0xbb,0x25,0x71,0x84,0x2e,}, + {0xd2,0xe6,0xda,0x02,0xb2,0xc2,0xe3,0x4b,0x2d,0x96,0x44,0x13,0xc4,0xc2,0xe6,0xa3,0xd6,0x58,0xd8,0xc4,0xc2,0x51,0xb8,0x9a,0x4d,0x53,0x64,0x83,0x64,0x28,0x56,0x29,0x64,}, + {0xd2,0xe0,0x8b,0x24,0x1e,0xcd,0x44,0xc6,0xe1,0x70,0xdb,0x83,0xc2,0xc3,0xf3,0x6b,0x71,0x34,0xab,0x82,0x22,0x2f,0x6e,0x89,0x24,0xdd,0xa0,0x60,0xde,0x7c,0x74,0xa6,0xdd,}, + {0xd3,0xdd,0x9a,0x20,0x94,0xd6,0x21,0x69,0x2b,0xad,0xb4,0x94,0xee,0x60,0xcd,0xce,0x2e,0x87,0x5b,0x58,0x40,0x77,0x63,0x6e,0x49,0x23,0x50,0x20,0x36,0xdb,0x92,0x49,0x24,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0xca,0x20,0x47,0x23,0x71,0xb6,0xdc,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x60,0xa2,0xe1,0x5a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x8e,0x49,0x24,}, +}; +static const gsm_frame gsm_data_units[] = { // stupňů celsia + {0xdb,0xe4,0xd2,0x14,0xd2,0x50,0x02,0x36,0xdb,0x69,0xa0,0xa2,0x52,0xc1,0x97,0x52,0x50,0x2a,0xa6,0x7a,0xa2,0x34,0x78,0x78,0x58,0x6c,0x6f,0x01,0xd9,0x28,0xbc,0xeb,0xdf,}, + {0xda,0xa4,0xe3,0xaa,0x23,0x63,0x02,0x6c,0x6b,0xe7,0x09,0x53,0x97,0xa7,0x49,0x1b,0xa8,0xd5,0x18,0x53,0x29,0xce,0xa3,0x96,0x67,0x68,0x53,0x28,0xcd,0xcc,0x72,0x63,0x61,}, + {0xd8,0xec,0xe4,0x71,0xe2,0x52,0x89,0x2f,0xd9,0x95,0xd3,0x86,0x91,0x6a,0x4b,0x15,0x6f,0xd5,0x98,0x98,0xeb,0x3b,0xad,0x71,0xbe,0xf1,0x7e,0xcb,0xcc,0xe2,0xf2,0x9d,0x99,}, + {0xd9,0xab,0xeb,0xaa,0x2c,0x64,0x8d,0x38,0xf4,0x52,0x2b,0x0f,0x53,0x4c,0x3d,0x1b,0xb9,0xba,0x7c,0x6d,0xcd,0xad,0x53,0xca,0x8d,0x60,0x68,0x8d,0x33,0xd4,0x76,0x44,0xf4,}, + {0xd9,0x2c,0xdb,0xe5,0xab,0xc6,0xca,0x8f,0x46,0x4c,0x89,0x25,0xab,0xcf,0xbb,0x1c,0x6e,0x70,0x9d,0x50,0xcf,0x59,0x1c,0x75,0xf2,0xe5,0x60,0xec,0xc7,0x25,0x76,0xf6,0xe7,}, + {0xd9,0xa9,0xd3,0xe5,0x2a,0xda,0xca,0x2e,0xe6,0xb7,0x27,0x17,0xb7,0x4c,0x58,0xaa,0x95,0x47,0x02,0xad,0x4f,0x3c,0x8b,0x69,0xc6,0x9f,0x94,0xcd,0xa4,0xda,0x4d,0x38,0x9f,}, + {0xdb,0x21,0xd2,0x05,0x12,0xbe,0xac,0x84,0xe1,0x6a,0x38,0xd1,0xea,0x4b,0xc1,0x27,0x8d,0xdb,0x24,0x58,0x04,0x6b,0xbd,0xb2,0xdd,0x6d,0x84,0x41,0xfd,0xfe,0xb6,0xdd,0x74,}, + {0xda,0x8f,0x71,0xcd,0x52,0xde,0x40,0xc9,0xec,0x4a,0x27,0x20,0xf0,0x00,0xe2,0x94,0x31,0xc6,0xda,0xe4,0x40,0xba,0xd0,0xae,0x43,0x1c,0xee,0x00,0xd6,0x65,0x52,0x38,0xab,}, + {0xdb,0x1f,0xbb,0x2d,0x61,0x90,0x80,0xbc,0xe4,0x92,0xcb,0x25,0x8e,0xc2,0xc9,0x1b,0x48,0x92,0x00,0x52,0xa2,0x80,0x00,0x04,0x12,0x91,0xe5,0xd1,0xb6,0xdb,0x6e,0x59,0x3b,}, + {0xd7,0xdc,0xa9,0x51,0x5a,0x50,0x74,0x3b,0xdb,0x8e,0xb8,0xe4,0x50,0x4a,0x41,0xc3,0xb5,0x27,0x2d,0xce,0x29,0x36,0xcd,0x65,0x16,0x22,0xc8,0xcf,0x37,0x24,0x6d,0x20,0x43,}, + {0xd2,0x65,0xe2,0x6a,0x2a,0x58,0xcd,0xcd,0xb5,0xb1,0xa4,0x80,0xa6,0xeb,0x86,0xe2,0xd3,0xa8,0x59,0xa2,0xaa,0x70,0xc2,0x5b,0xd3,0x01,0x50,0xcb,0xc8,0xe3,0xbb,0xb4,0xc3,}, + {0xd2,0x2d,0xcb,0x24,0xda,0x9e,0xaa,0x49,0x2b,0x93,0xd8,0xc1,0xee,0xe8,0xbf,0x6b,0x5a,0xc7,0x90,0xa8,0xab,0x3e,0xd6,0x8a,0x56,0xe4,0x52,0xa4,0x13,0xa9,0xdc,0x7a,0xe2,}, + {0xd1,0x29,0xdb,0xe9,0x61,0x98,0x23,0x91,0x1b,0x76,0x5b,0x1b,0xae,0x61,0x15,0x63,0xbe,0xcd,0x09,0xe6,0x41,0x34,0x4b,0x8e,0x69,0xb4,0xea,0x60,0xc4,0x5b,0x8a,0x49,0x35,}, + {0xd2,0xd8,0xcb,0xed,0xa3,0xc0,0x80,0xb6,0x92,0x73,0x5b,0x63,0xaa,0xc0,0xe8,0xe3,0x8e,0x3a,0xe5,0xa8,0xa0,0x55,0x63,0xb9,0x57,0x56,0xdc,0xa0,0xe9,0x23,0x8e,0x36,0xe5,}, + {0xd6,0xd7,0x6a,0x99,0x98,0x5c,0xc0,0x47,0x1c,0x4b,0x15,0x5b,0xbe,0x80,0x1d,0xac,0x40,0x8c,0xd7,0xb0,0xc0,0x2b,0x35,0x9b,0x3b,0x9c,0x90,0xa0,0xc4,0xb5,0xb1,0xca,0xdc,}, + {0xd6,0xe9,0xc1,0x95,0x92,0x67,0x60,0xc9,0x6e,0xd6,0x3b,0xad,0x6d,0xd1,0x49,0x24,0x92,0x49,0x3c,0x52,0x90,0x50,0xd4,0x9b,0x91,0x1a,0x5a,0x48,0x04,0x22,0x65,0x17,0x51,}, + {0xd2,0xde,0xb3,0x21,0xab,0xaa,0x46,0x00,0x4b,0x51,0x2d,0x9b,0xee,0x28,0x26,0x84,0x76,0xfb,0x74,0xc1,0xb2,0x36,0xd3,0xe9,0xcb,0x23,0x64,0xec,0xc2,0x49,0xbd,0xad,0x2d,}, + {0xd1,0x69,0xcb,0x65,0xa4,0xaa,0xad,0xd8,0xd5,0x12,0x3b,0x15,0x50,0xea,0x4c,0x93,0x12,0xba,0xdd,0xa8,0xa8,0x49,0xa2,0x24,0x5a,0xaa,0x57,0x67,0x49,0x69,0x84,0x65,0x2d,}, + {0xd1,0x2b,0xc3,0x65,0xa3,0x53,0x88,0x87,0x23,0xad,0xc7,0x2b,0x59,0x28,0x8d,0x64,0x89,0xa4,0xe4,0xad,0x08,0x68,0xab,0x95,0xa8,0xc7,0x55,0x67,0x3a,0xad,0x96,0xa6,0x47,}, + {0xd0,0xed,0xb3,0x69,0xa4,0xab,0x64,0xb9,0x0c,0xcf,0x46,0x50,0xab,0x26,0xf6,0xe3,0x35,0xca,0x63,0x57,0x82,0x99,0x2b,0x82,0xca,0xf9,0x57,0x04,0x23,0xe4,0x91,0x57,0x30,}, + {0xd2,0xd9,0x95,0x79,0x14,0xab,0xc9,0x14,0xbb,0x95,0x5d,0x6c,0x57,0x8a,0xa8,0x4f,0x0e,0x47,0xd5,0x57,0xe8,0x99,0x26,0x4a,0x2e,0x30,0x5b,0x2a,0xc6,0xd2,0x3e,0x19,0x1f,}, + {0xd2,0x63,0x8c,0xa9,0xe1,0x57,0x88,0xf5,0x15,0x66,0x99,0x6b,0x55,0x89,0x72,0xf4,0x5d,0x0e,0xe5,0x57,0xc6,0xda,0xce,0x63,0xb3,0xca,0x57,0x6d,0xca,0xe4,0x51,0x9e,0x9b,}, + {0xd2,0x2b,0xca,0xa5,0x5a,0x54,0x89,0x74,0xaf,0xa5,0xa0,0xee,0xac,0x4a,0x5a,0x9e,0xa9,0x32,0x2e,0xac,0xc8,0xcb,0x92,0xf1,0x26,0x15,0x57,0x28,0xb7,0x63,0x76,0xb6,0xe0,}, + {0xd2,0x2d,0xca,0x5d,0x23,0xad,0x63,0xf7,0x2c,0x5b,0xc4,0xd0,0x57,0x24,0x5e,0xa5,0x8e,0xea,0x8b,0xab,0x03,0x93,0xa4,0x92,0xc9,0xe1,0xab,0x63,0x91,0x34,0x76,0x39,0xea,}, + {0xd1,0xb6,0x98,0x6a,0xab,0xaf,0x25,0xc6,0x7d,0x4d,0xb9,0xaa,0xaa,0x82,0x22,0xd7,0x69,0x97,0x3e,0xa8,0xe2,0x41,0x05,0x8e,0x19,0x2d,0xad,0x22,0x34,0xa0,0x71,0xc6,0xe5,}, + {0xd1,0xb4,0xc1,0x59,0xab,0xab,0x23,0x5d,0x13,0x42,0xc7,0x23,0x57,0xc1,0xd6,0xd5,0x43,0x55,0x6c,0x57,0xc0,0xa3,0xc3,0xa7,0x53,0x1d,0xad,0x63,0x39,0x6c,0x34,0x3a,0xe5,}, + {0xd2,0x2c,0xca,0xe1,0x23,0xaf,0xa4,0xc8,0xed,0x69,0x40,0xec,0x57,0xc4,0x2f,0x1d,0xb1,0x44,0x24,0x57,0xe2,0xad,0x14,0xad,0x48,0x36,0x57,0x45,0x47,0x63,0x9a,0xb5,0x41,}, + {0xd2,0x2c,0xca,0x9d,0xa3,0xa9,0x24,0x2c,0x9e,0xa6,0x7e,0xde,0x57,0xa4,0xa3,0x1b,0x8a,0x1e,0xba,0x55,0x27,0xa1,0xd4,0xc3,0x37,0xa4,0x55,0x25,0xb4,0x22,0xb2,0x49,0x6b,}, + {0xd1,0xed,0xc1,0x2a,0xea,0xab,0x66,0xc4,0xe9,0xa9,0xb9,0xd3,0xa4,0xa4,0x26,0x47,0xa6,0x1a,0xfe,0xa4,0xe5,0x36,0xc5,0x8d,0xd6,0xfd,0xa8,0xc3,0x65,0x00,0x85,0x88,0x2a,}, + {0xd0,0xea,0xeb,0x65,0xe9,0x5c,0xc2,0xae,0x9a,0xb1,0xc7,0x5d,0xb0,0x61,0x5d,0x32,0x92,0x69,0xa2,0xb2,0x00,0xcd,0x2c,0xb6,0x4a,0xf6,0xa6,0xa0,0xba,0xe4,0x96,0xe7,0x2b,}, + {0xd0,0xd6,0x8b,0x65,0x1a,0xde,0xa0,0x47,0x7f,0x72,0x15,0x86,0xd1,0x40,0x3a,0xcc,0x2a,0x34,0x21,0xd7,0x60,0x44,0x43,0x46,0x1b,0x21,0xdc,0x80,0x1c,0x5d,0x71,0x25,0x0d,}, + {0xda,0x67,0xdb,0x2d,0xa3,0xe9,0x41,0x49,0x25,0xb6,0xdd,0xb7,0x51,0x22,0xff,0xbf,0xdf,0xed,0x59,0xee,0xc4,0x39,0x1b,0x49,0x24,0x40,0xad,0xb0,0x37,0xd2,0x69,0xb8,0x9b,}, + {0xda,0xac,0xc4,0x2d,0x68,0x5b,0x4e,0xb1,0x01,0x50,0xa6,0x51,0x5b,0x30,0xc5,0x03,0x90,0xa6,0xa0,0x54,0xb0,0x60,0x55,0x81,0x8a,0xa2,0x96,0xf0,0x08,0x92,0x4e,0xa8,0xd2,}, + {0xda,0xe8,0xd3,0x29,0x62,0xbe,0xf0,0xb7,0x05,0x69,0xb6,0xda,0xd1,0x2e,0x99,0x30,0x6a,0xda,0x22,0xba,0xef,0xd4,0xa8,0x55,0x94,0xf3,0xe6,0x8e,0xc2,0xb3,0x56,0x07,0xe4,}, + {0xda,0x26,0xea,0xa9,0xab,0x80,0x8d,0xe8,0x9e,0x1e,0x85,0x1d,0xce,0xac,0xc7,0x20,0xcf,0x26,0xe2,0xc0,0x8c,0xc8,0xd3,0x75,0x30,0xac,0x60,0xc9,0x16,0xe5,0xb9,0xba,0x45,}, + {0xd5,0x20,0x79,0x6e,0xa8,0x96,0xe8,0x7d,0x5f,0xb6,0xd2,0xe5,0x5a,0xa5,0x39,0x8d,0x51,0x71,0x99,0xe7,0xd1,0x49,0x24,0x92,0x28,0x87,0x56,0xce,0xb5,0x6c,0xb6,0xb8,0x20,}, + {0xd5,0x5e,0xaa,0xf1,0xe0,0x55,0x52,0xe6,0xe3,0x92,0x48,0xa0,0x55,0x2c,0xf3,0xbb,0x92,0x5d,0x29,0x57,0x2d,0x0e,0xdc,0x92,0x4b,0x58,0xab,0xb4,0x29,0x1a,0x72,0x29,0xd3,}, + {0xd5,0x26,0xaa,0xab,0x18,0x55,0x36,0x42,0x79,0x75,0xb7,0x5d,0x53,0x30,0xa0,0x06,0x8a,0xca,0xbc,0xa8,0xd4,0x34,0x15,0x72,0x48,0xfc,0xab,0x31,0x56,0x8b,0xe6,0xca,0xe5,}, + {0xd4,0x68,0xcb,0x22,0x98,0x57,0x2f,0x59,0x10,0x1c,0xc8,0xe3,0x53,0x10,0xf5,0x9b,0x0a,0x48,0xed,0xad,0x4d,0xde,0xe8,0x43,0x29,0x65,0xad,0x30,0x4d,0x2b,0x41,0x77,0x5c,}, + {0xd3,0xe0,0xdc,0xc2,0xaa,0x55,0x2a,0xad,0xf6,0x38,0xb4,0xc4,0xa8,0xed,0x39,0x95,0x54,0x4e,0x93,0xa9,0x4a,0xd7,0x4a,0x53,0x19,0xd5,0xa9,0xab,0x9b,0x2a,0xaa,0xca,0x1b,}, + {0xd3,0x27,0xca,0x16,0xa3,0x55,0xcc,0xc7,0x15,0xaa,0xba,0x97,0x55,0x2b,0x88,0xe4,0x96,0x34,0xcb,0xad,0x2b,0xa5,0x62,0xbe,0x34,0x81,0xab,0x4f,0x47,0x23,0x77,0x28,0xd8,}, + {0xd3,0xe3,0xea,0x5e,0x60,0x55,0xf0,0x72,0xd5,0x8d,0xcb,0x12,0x55,0xcc,0x19,0x3c,0x72,0x3e,0xb2,0x57,0xad,0x0d,0x4e,0x51,0xe4,0xa4,0x57,0xce,0x55,0x17,0x35,0x47,0x8d,}, + {0xd2,0xa8,0xba,0xe6,0xd1,0x53,0x4c,0xb0,0x5a,0x75,0xa7,0x8c,0xa4,0xec,0xa4,0x57,0x19,0xc5,0x74,0xaa,0xab,0x53,0x02,0xcb,0x48,0xee,0xaa,0xc9,0x73,0x00,0x31,0xd9,0x3f,}, + {0xd3,0x5c,0x82,0x6e,0x6a,0xac,0xeb,0x41,0x10,0x27,0x57,0x66,0xf0,0x8c,0xde,0xcd,0x48,0x8b,0x23,0x5f,0x0b,0x2d,0x13,0x7c,0x3e,0x66,0xb8,0xc9,0x65,0xd0,0x9c,0xb7,0x16,}, + {0xd8,0xa4,0x71,0x10,0x63,0xbf,0xac,0xb9,0x26,0x81,0x22,0x99,0x54,0xcf,0x4b,0xb7,0x98,0x61,0x0a,0x52,0xcf,0x41,0x1c,0xbb,0x28,0x9b,0x58,0xcc,0xc6,0xde,0x7d,0xd8,0x1a,}, + {0xd9,0xe9,0x88,0xe0,0x98,0xb8,0xae,0x31,0xcc,0xb2,0xdc,0x62,0xaf,0x2f,0x87,0x53,0xae,0x39,0x63,0x54,0xcd,0x60,0x6b,0x55,0xc8,0xb4,0xbc,0xa9,0xce,0x4c,0x29,0x68,0x4f,}, + {0xd7,0x5f,0x59,0x59,0x6b,0xc2,0x8d,0x3a,0x7a,0xae,0x45,0x0d,0xc7,0x2a,0x2b,0x28,0x91,0x8e,0xd5,0xac,0xeb,0xaa,0xb4,0xb2,0xa2,0x90,0x51,0x2c,0xc6,0xe7,0xde,0xa4,0xd9,}, + {0xd3,0x1c,0x84,0xbe,0xa0,0x62,0xae,0x91,0x6d,0xd1,0xcb,0x6a,0x58,0xb0,0x34,0xba,0x4d,0xbb,0xa4,0x5b,0x89,0x29,0x6b,0xf5,0xd5,0x27,0x59,0x2b,0xa4,0xa3,0x3c,0x55,0x2b,}, + {0xd4,0x55,0x9b,0xfd,0x99,0x61,0x4e,0xc5,0x24,0x45,0xae,0x2d,0xbf,0x2b,0xaf,0x54,0xb4,0x80,0x76,0x60,0xeb,0x56,0xfd,0xd5,0xc0,0x00,0x5f,0x8b,0x0e,0x95,0x47,0x55,0x4a,}, + {0xd4,0x14,0xac,0xfd,0x51,0x5b,0x27,0x81,0xd9,0xf1,0xe5,0xae,0xba,0xca,0x00,0x47,0x6b,0x37,0xe4,0xbf,0x47,0xd5,0x08,0x1c,0x5b,0x96,0xbd,0x08,0xe7,0x65,0xa5,0x10,0xf3,}, + {0xd3,0xcf,0xcd,0xf0,0xe2,0x5f,0x06,0x66,0x7c,0xb2,0x25,0x0f,0xbf,0x07,0x78,0x53,0x3a,0x46,0x64,0xbe,0x88,0x1f,0x63,0x6a,0x6b,0x24,0x5f,0x45,0x96,0xa4,0x7a,0x0b,0xe4,}, + {0xd4,0x4e,0xd5,0x6c,0xe3,0xbd,0x24,0x74,0xda,0x56,0x5f,0x0e,0xbd,0x46,0x3b,0x42,0x89,0x57,0x25,0xbf,0x26,0xd8,0xad,0x46,0x23,0xe5,0xbf,0xed,0xb9,0x1c,0x91,0xb6,0xe7,}, + {0xd4,0xd8,0x7b,0xfe,0x19,0x69,0xcc,0x55,0x1b,0x96,0x48,0xc2,0x5f,0x2d,0x91,0x94,0x8e,0x58,0xed,0x63,0xc9,0xa4,0xcc,0xec,0xc8,0xa7,0x61,0xcf,0x44,0xdc,0x93,0xa5,0x23,}, + {0xd5,0x9c,0x74,0x71,0xa0,0x5f,0xad,0x29,0x1c,0x90,0x96,0x36,0x5f,0xb0,0x36,0xe5,0x8d,0xc8,0x4f,0x5b,0x0e,0xb1,0x6c,0x6a,0xe9,0x64,0x61,0x33,0xbe,0x5d,0x75,0xac,0xa3,}, + {0xd4,0xea,0xcb,0x0e,0x18,0x60,0xd0,0x98,0x2d,0x1d,0x39,0x25,0xbe,0xcd,0xc6,0x59,0x5d,0xc9,0x16,0xf0,0xaf,0x55,0xaa,0x44,0x1e,0xdd,0xbf,0xaa,0xc3,0x1b,0xab,0xa4,0x87,}, + {0xd4,0xe8,0xd3,0x0e,0x58,0x5f,0x2a,0x3b,0xd3,0xd5,0xd8,0x11,0xbb,0xe8,0x85,0x79,0xd0,0xcb,0x30,0x5f,0xc8,0x96,0x97,0x56,0x2c,0xa6,0x5f,0xe7,0xed,0x61,0xae,0x29,0x87,}, + {0xd4,0xe8,0xc2,0x8d,0xd8,0xbf,0x2a,0x39,0x11,0x67,0xb7,0x63,0xbf,0x69,0x3c,0xd9,0x28,0xbf,0x1c,0xbf,0x28,0x63,0x9a,0xb4,0x46,0x04,0xbd,0x69,0x2b,0xa5,0x8b,0x3a,0xb0,}, + {0xd3,0xa8,0xb9,0xd5,0x89,0xbf,0x49,0x18,0xeb,0xf5,0x57,0x06,0x60,0x89,0x14,0x1f,0x5b,0x3b,0x2b,0xc0,0xaa,0x26,0x68,0x79,0xbd,0x1d,0xc6,0x8a,0xd6,0xe2,0x70,0x38,0xe5,}, + {0xd2,0xe1,0xa9,0xd9,0xe3,0xb4,0xc7,0xeb,0x2b,0x90,0x41,0x1b,0xb8,0xa4,0xa9,0x8b,0xea,0xb5,0x91,0x8c,0xc8,0x38,0xbd,0x7a,0x39,0x0b,0xcc,0xa5,0xb1,0xb8,0x99,0x47,0x22,}, + {0xd5,0x64,0xb0,0x65,0x52,0xbe,0xa3,0xb5,0x08,0xf0,0xf7,0x5c,0xcc,0xc2,0xb0,0xc0,0x22,0xec,0x7b,0xd9,0x05,0x58,0x9b,0x69,0x41,0x6a,0xbe,0xc2,0xc1,0x59,0x71,0xae,0x57,}, + {0xd5,0x60,0xda,0xa8,0x12,0x6e,0xa2,0x31,0xe1,0x6d,0x3a,0x93,0xc6,0x21,0x8a,0x6a,0x71,0xb7,0x1b,0xbc,0x00,0x37,0xaa,0xb9,0x4d,0x2d,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x5d,0x9a,0x29,0x5a,0x74,0x00,0x49,0x24,0x71,0xc8,0xdb,0x80,0x40,0x38,0xdc,0x6d,0xc9,0x23,0xa0,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x39,0x24,0x92,0x49,0x24,}, + {0xd0,0x5e,0x7b,0xe1,0x9a,0xa6,0x00,0x47,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0xb2,0x00,0x49,0x23,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0xd9,0x92,0xa1,0x1a,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x54,0x00,0x49,0x24,0x92,0x49,0x24,}, +}; +/* +static const gsm_frame gsm_data_units[] = { // volt + {0xd2,0x55,0x62,0x58,0xda,0x50,0x00,0x59,0x77,0x9b,0xdd,0x33,0x70,0xa0,0xe7,0x1c,0xaa,0xb6,0xea,0x9c,0xc0,0xb8,0xd4,0x95,0x99,0x13,0xe2,0xc0,0xc4,0xe4,0x8c,0xc9,0x1b,}, + {0xd2,0x21,0xbb,0x69,0x63,0xd5,0x00,0xb9,0x1d,0x52,0x47,0x56,0xcd,0xa1,0x37,0xaf,0x72,0xa8,0xd2,0x56,0xe1,0x49,0x2c,0xb5,0xa2,0x40,0x57,0xc2,0xa9,0x25,0xb2,0xc6,0x80,}, + {0xd0,0xee,0xbb,0x21,0xeb,0x53,0x03,0xa9,0x27,0x6a,0xc8,0xaa,0x52,0xc2,0xcb,0xd9,0xa6,0xf8,0x78,0xa4,0xa4,0x17,0xdb,0x6a,0xd9,0x84,0x54,0xc4,0x97,0xd3,0x8a,0xc7,0x13,}, + {0xd0,0xf1,0xc2,0xe1,0xeb,0xa6,0x84,0x44,0xba,0x75,0xc7,0x62,0x52,0x82,0x32,0x7b,0x4e,0xbb,0x5b,0xa2,0xe1,0x10,0xf9,0x5d,0xcc,0xd3,0xa4,0xc1,0x10,0xf2,0x5d,0xcd,0x51,}, + {0xd3,0x98,0x8b,0x29,0xe3,0xa3,0xc4,0x26,0x96,0x93,0xdb,0xaa,0x53,0xa5,0x04,0x0d,0xca,0xe6,0xe1,0x53,0x04,0x18,0x44,0xee,0x7b,0x24,0xa7,0xf2,0x38,0xdc,0x8e,0x47,0x27,}, + {0xd3,0x2a,0xba,0xdc,0xa3,0x50,0x14,0x08,0xdb,0x91,0xc9,0x24,0x54,0xcc,0xc6,0x40,0xad,0xd7,0x6f,0xee,0x70,0x46,0x80,0xf1,0x55,0x35,0x53,0x4f,0xc7,0x09,0x9c,0xd6,0xf5,}, + {0xd3,0xed,0xb2,0x60,0x63,0x53,0x4d,0xc4,0xc8,0x3e,0x48,0x9e,0x53,0x8d,0xfb,0x0b,0x2f,0xba,0xe6,0x53,0xed,0xba,0x5b,0xd4,0xc8,0x67,0x53,0xce,0x9a,0xa4,0x8f,0x8c,0xad,}, + {0xd4,0x2d,0xc2,0x20,0x9b,0x53,0xb1,0x1a,0xdb,0x36,0x0e,0x95,0xa3,0xb0,0x2f,0x23,0x30,0x4e,0x64,0x52,0xd0,0xd9,0x22,0x63,0xe2,0xe4,0x53,0x2f,0x35,0x62,0x65,0x76,0xab,}, + {0xd3,0xf0,0xda,0x46,0xeb,0x51,0x4d,0x57,0xac,0x64,0x39,0x24,0xa0,0xcf,0x39,0xa5,0x48,0x49,0x25,0xa5,0x4d,0x97,0x65,0x4c,0xf3,0x23,0x53,0x0a,0x77,0x7a,0xa4,0x9e,0xa4,}, + {0xd4,0x2a,0xdb,0xc2,0xab,0x53,0x89,0xda,0xb3,0x89,0xae,0xcd,0x53,0x2c,0x49,0x2d,0x85,0x0e,0xdc,0xa3,0x0c,0x48,0xe5,0xad,0x91,0x9b,0xa3,0xac,0x48,0xa3,0x92,0xc1,0x23,}, + {0xd3,0x6d,0x9b,0x12,0x2c,0x53,0x4b,0x47,0x65,0x89,0x89,0x44,0xa5,0x69,0xc5,0x64,0x66,0x8e,0xc4,0xa5,0x4a,0xc6,0xed,0x51,0x95,0xdb,0x53,0xc8,0x47,0x63,0x8d,0xd3,0x84,}, + {0xd3,0x2f,0x8a,0x9d,0xac,0x53,0x08,0xf8,0xdd,0xe7,0x20,0x7a,0xa3,0x47,0xc7,0x2d,0x91,0xb0,0x3d,0xa5,0x09,0x38,0xe5,0x96,0x28,0x1d,0xa5,0xa6,0x2a,0xd4,0x75,0x2a,0xb9,}, + {0xd2,0xf0,0x8a,0x59,0x74,0x53,0xe9,0x56,0xdc,0x86,0x45,0xb9,0x53,0xe9,0x43,0x23,0x8a,0x29,0x68,0xa5,0x49,0x28,0x6c,0x92,0xb4,0xcf,0x53,0xe7,0x49,0x1b,0x94,0x48,0xb7,}, + {0xd3,0x6b,0xc3,0x0a,0x2d,0xa5,0x0b,0x29,0x23,0x72,0xc8,0xd0,0x53,0x49,0x27,0x64,0x96,0xda,0xc0,0xa3,0xe8,0x32,0xad,0x50,0x7d,0x18,0x53,0xec,0xc5,0x24,0xae,0x33,0x1f,}, + {0xd4,0xa4,0x93,0x99,0x99,0xa5,0x09,0x07,0x97,0xaa,0xd8,0x15,0xa6,0xa9,0x26,0xfd,0x6d,0xb9,0x36,0xa6,0x27,0xb0,0x54,0x72,0xc9,0x6d,0xaa,0x42,0x32,0x14,0x2e,0xdb,0xae,}, + {0xd5,0x1c,0x7b,0xa9,0x98,0xac,0x01,0x7a,0x94,0xad,0x39,0x7c,0xb4,0x20,0xfc,0x8d,0xcd,0x19,0xfa,0xa2,0xe0,0xa7,0xca,0xd1,0xa9,0x5a,0xab,0x40,0xd3,0x0c,0x96,0x49,0x1a,}, + {0xd7,0x9b,0x59,0xa5,0x5a,0xb8,0x80,0xb7,0x39,0x6d,0xc8,0xe6,0xe0,0xa0,0xad,0x39,0x66,0x37,0x1c,0xe2,0xa0,0xb6,0xe4,0x29,0x46,0x5b,0xaa,0x40,0x29,0xde,0x8e,0x46,0xec,}, + {0xd8,0xdd,0x5a,0x50,0xd9,0xde,0x80,0xba,0xe5,0x59,0xb6,0xe3,0x58,0xe0,0x53,0x7a,0xa8,0xb4,0xe4,0x5a,0xe0,0x1b,0xd1,0x49,0x25,0x1a,0xaa,0x80,0xc6,0xa3,0x85,0xd7,0x1a,}, + {0xd8,0x9d,0x59,0x91,0x12,0x76,0xa0,0x6a,0x92,0x8d,0x99,0x09,0x76,0xa0,0xba,0xb3,0x91,0xb9,0x63,0x62,0xa0,0x46,0xab,0xcd,0x47,0x01,0xc8,0xc0,0xd7,0x33,0x75,0xc4,0xdc,}, + {0xd4,0xd6,0x50,0xdd,0x12,0x78,0xc0,0xa4,0xe5,0x2e,0x38,0xa4,0x94,0x80,0x34,0xa2,0x36,0x45,0x22,0xf0,0xc0,0x49,0x27,0x55,0xa6,0xec,0xe0,0xa0,0x58,0x86,0xb0,0xcc,0xe3,}, + {0xd6,0xd9,0x49,0x19,0x51,0xd8,0xc0,0xc7,0x23,0x8e,0x22,0xe3,0x5e,0x80,0x25,0x6a,0x69,0xd9,0x93,0x8c,0xe0,0x56,0x7e,0x56,0xc8,0xd2,0x72,0x80,0x2f,0xce,0x6b,0x2f,0x63,}, + {0xd7,0x62,0x83,0x65,0xe2,0xcf,0xad,0x49,0x2f,0x07,0x99,0x6c,0x62,0x26,0xdc,0xc5,0x6a,0xc9,0x5b,0x92,0x29,0x4b,0x19,0x31,0xe9,0x10,0xee,0x24,0x05,0x1b,0xc5,0x42,0x8b,}, + {0xd8,0xde,0x52,0x04,0x98,0xae,0x20,0xe6,0x53,0x75,0x25,0x76,0xe2,0x41,0x4d,0x63,0x4f,0xdc,0xdd,0xec,0x41,0x57,0x2d,0x96,0xd6,0xdf,0xc9,0x41,0xe9,0x24,0x71,0x29,0x8f,}, + {0xd8,0xe4,0xf2,0x10,0xd9,0x5a,0x20,0xa3,0x4b,0x49,0xc7,0x23,0x74,0x20,0x48,0xd4,0x4e,0x38,0xdb,0xa0,0x20,0x38,0xe3,0x6d,0xb6,0xdb,0xf0,0x20,0x38,0xe3,0x6d,0xb6,0xdb,}, + {0xd0,0x9b,0x9a,0xe1,0x5a,0x80,0x00,0x36,0xdb,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, + {0xd0,0x9b,0x6b,0x65,0x9a,0x54,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,0x50,0x00,0x49,0x24,0x92,0x49,0x24,}, +};*/ +const SayedTexts sayed_texts = { + .nula = { gsm_data_nula, 22 }, + .jedna = { gsm_data_jedna, 25 }, + .dva = { gsm_data_dva, 22 }, + .dve = { gsm_data_dve, 26 }, + .tri = { gsm_data_tri, 20 }, + .ctyri = { gsm_data_ctyri, 27 }, + .pet = { gsm_data_pet, 19 }, + .sest = { gsm_data_sest, 26 }, + .sedm = { gsm_data_sedm, 23 }, + .osm = { gsm_data_osm, 17 }, + .devet = { gsm_data_devet, 27 }, + .deset = { gsm_data_deset, 27 }, + .jedenact = { gsm_data_jedenact, 37 }, + .dvanact = { gsm_data_dvanact, 36 }, + .trinact = { gsm_data_trinact, 36 }, + .ctrnact = { gsm_data_ctrnact, 37 }, + .patnact = { gsm_data_patnact, 34 }, + .sestnact = { gsm_data_sestnact, 47 }, + .sedmnact = { gsm_data_sedmnact, 44 }, + .osmnact = { gsm_data_osmnact, 38 }, + .devatenact = { gsm_data_devatenact, 43 }, + .dvacet = { gsm_data_dvacet, 31 }, + .tricet = { gsm_data_tricet, 29 }, + .ctyricet = { gsm_data_ctyricet, 35 }, + .padesat = { gsm_data_padesat, 34 }, + .sedesat = { gsm_data_sedesat, 40 }, + .sedmdesat = { gsm_data_sedmdesat, 45 }, + .osmdesat = { gsm_data_osmdesat, 39 }, + .devadesat = { gsm_data_devadesat, 41 }, + .sto = { gsm_data_sto, 22 }, + .dveste = { gsm_data_dveste, 38 }, + .sta = { gsm_data_sta, 21 }, + .set = { gsm_data_set, 21 }, + .tisic = { gsm_data_tisic, 31 }, + .tisice = { gsm_data_tisice, 39 }, + .minus = { gsm_data_minus, 29 }, + .point = { gsm_data_point, 29 }, + .hafo = { gsm_data_hafo, 26 }, + .units = { gsm_data_units, 64 }, +//.units = { gsm_data_units, 26 }, +}; diff --git a/V203F6P6/thermometer/extflash/main.cpp b/V203F6P6/thermometer/extflash/main.cpp new file mode 100644 index 0000000..dd77511 --- /dev/null +++ b/V203F6P6/thermometer/extflash/main.cpp @@ -0,0 +1,127 @@ +#include +#include +#include +#include +#include "gsmdata.h" +#include "texts.h" +/* Jedna z možností jak dostat data do externí flash. Sice to poněkud + * nabobtná (na začátku je zbytečně celá struktura SayedTexts + padding), + * ale funguje to. + * 1. zdroják gsmdata.c se přeloží a pomocí linker skriptu se vytvoří elf + * 2. z elf se udělá binárka, příp. hex soubor standardním binutils + * 3. binárka se tímto přečte a do extdata.c se extrahují potřebné informace. + * extdata.c pak obsahuje adresy slov a jejich délky potřebné pro čtení. + * Nezávisí to na tom, zda se binárka vytváří na 64. nebo 32. bit stroji. */ +static void test () { + return; + // delky sedi + printf("l=0x%zX, f=%zd\n", sizeof(sayed_texts), sizeof(gsm_frame)); + const gsm_frame * p = sayed_texts.nula.frames; + const int n = sayed_texts.nula.no_frames; + const unsigned char * o = (const unsigned char *) p; + for (int i=0; i ram /* tady je řečeno, že to má být v ram */ + /DISCARD/ : { + *(.rela*) + *(.dynamic) + *(.eh*) + *(.debug*) + *(.comment*) + *(.interp) + *(.dynsym) + *(.dynstr) + *(.hash) + *(.gnu.hash) + *(.header) + } : phdr +} diff --git a/V203F6P6/thermometer/extflash/texts.c b/V203F6P6/thermometer/extflash/texts.c new file mode 100644 index 0000000..8a5410f --- /dev/null +++ b/V203F6P6/thermometer/extflash/texts.c @@ -0,0 +1,47 @@ +#include "texts.h" +const eSayedTexts helper_texts = { + .nula = { "nula", "nula" }, + .jedna = { "jedna", "jedna" }, + .dva = { "dva", "dva" }, + .dve = { "dve", "dvě" }, + .tri = { "tri", "tři" }, + .ctyri = { "ctyri", "čtyři" }, + .pet = { "pet", "pět" }, + .sest = { "sest", "šest" }, + .sedm = { "sedm", "sedm" }, + .osm = { "osm", "osm" }, + .devet = { "devet", "devět" }, + + .deset = { "deset", "deset" }, + .jedenact = { "jedenact", "jedenáct" }, + .dvanact = { "dvanact", "dvanáct" }, + .trinact = { "trinact", "třináct" }, + .ctrnact = { "ctrnact", "čtrnáct" }, + .patnact = { "patnact", "patnáct" }, + .sestnact = { "sestnact", "šestnáct" }, + .sedmnact = { "sedmnact", "sedmnáct" }, + .osmnact = { "osmnact", "osmnáct" }, + .devatenact = { "devatenact", "devatenáct" }, + + .dvacet = { "dvacet", "dvacet" }, + .tricet = { "tricet", "třicet" }, + .ctyricet = { "ctyricet", "čtyřicet" }, + .padesat = { "padesat", "padesát" }, + .sedesat = { "sedesat", "šedesát" }, + .sedmdesat = { "sedmdesat", "sedmdesát" }, + .osmdesat = { "osmdesat", "osmdesát" }, + .devadesat = { "devadesat", "devadesát" }, + + .sto = { "sto", "sto" }, + .dveste = { "dveste", "dvěstě" }, + .sta = { "sta", "sta" }, + .set = { "set", "set" }, + .tisic = { "tisic", "tisíc" }, + .tisice = { "tisice", "tisíce" }, + + .minus = { "minus", "mínus" }, + .point = { "point", "celých" }, + .hafo = { "hafo", "hafo" }, + .units = { "units", "stupňů Celzia" }, + //.svejk = { "svejk", svejk_t }, +}; diff --git a/V203F6P6/thermometer/extflash/texts.h b/V203F6P6/thermometer/extflash/texts.h new file mode 100644 index 0000000..11dfbf6 --- /dev/null +++ b/V203F6P6/thermometer/extflash/texts.h @@ -0,0 +1,26 @@ +#ifndef TEXTS_H +#define TEXTS_H +#ifdef __cplusplus +extern "C" { +#endif // __cplusplus +typedef struct text_pair_s { + const char * name; + const char * text; +} text_pair; +typedef struct eSayedTexts_s { + // mandatorní část použitá v playeru : + text_pair nula, jedna, dva, dve, tri, ctyri, pet, sest, sedm, osm, devet; + text_pair deset, jedenact, dvanact, trinact, ctrnact, patnact; + text_pair sestnact, sedmnact, osmnact, devatenact; + text_pair dvacet, tricet, ctyricet, padesat, sedesat, sedmdesat, osmdesat, devadesat; + text_pair sto, dveste, sta, set, tisic, tisice; + + text_pair minus, point, hafo, units; + // uživatelské texty : + // text_pair svejk; +} eSayedTexts; +extern const eSayedTexts helper_texts; +#ifdef __cplusplus +}; +#endif // __cplusplus +#endif // TEXTS_H diff --git a/V203F6P6/thermometer/gsmdata.h b/V203F6P6/thermometer/gsmdata.h new file mode 100644 index 0000000..2cc23ba --- /dev/null +++ b/V203F6P6/thermometer/gsmdata.h @@ -0,0 +1,62 @@ +/* GENERATED FILE DO NOT EDIT !!! */ +#ifndef _GSM_DATA_H +#define _GSM_DATA_H +#include "gsm.h" +#ifdef __cplusplus +extern "C" { +#endif // __cplusplus +typedef struct gsm_data_s { +#ifdef EXTROM + unsigned long frames; +#else + const gsm_frame * frames; +#endif + int no_frames; +} text_p; +typedef struct SayedTexts_s { + text_p nula; + text_p jedna; + text_p dva; + text_p dve; + text_p tri; + text_p ctyri; + text_p pet; + text_p sest; + text_p sedm; + text_p osm; + text_p devet; + text_p deset; + text_p jedenact; + text_p dvanact; + text_p trinact; + text_p ctrnact; + text_p patnact; + text_p sestnact; + text_p sedmnact; + text_p osmnact; + text_p devatenact; + text_p dvacet; + text_p tricet; + text_p ctyricet; + text_p padesat; + text_p sedesat; + text_p sedmdesat; + text_p osmdesat; + text_p devadesat; + text_p sto; + text_p dveste; + text_p sta; + text_p set; + text_p tisic; + text_p tisice; + text_p minus; + text_p point; + text_p hafo; + text_p units; + +} SayedTexts; +extern const SayedTexts sayed_texts; +#ifdef __cplusplus +}; +#endif // __cplusplus +#endif // _GSM_DATA_H diff --git a/V203F6P6/thermometer/lib b/V203F6P6/thermometer/lib new file mode 120000 index 0000000..0ca1730 --- /dev/null +++ b/V203F6P6/thermometer/lib @@ -0,0 +1 @@ +../../V203/gsm/lib/ \ No newline at end of file diff --git a/V203F6P6/thermometer/main.cpp b/V203F6P6/thermometer/main.cpp new file mode 100644 index 0000000..f1a78a5 --- /dev/null +++ b/V203F6P6/thermometer/main.cpp @@ -0,0 +1,30 @@ +#include "pwmclass.h" +#include "fifo.h" +#include "player.h" +#include "GsmDecoder.h" +// #include "adcdma.h" +#include "oneway.h" +#include "gpio.h" +//////////////////////////////////////////////////////// +/* Demo, které jen počítá od 0 do 1000000. Výstup je PWM + * na pinu PA2 24kHz, enable PB1. Odvozeno z teploměru na + * https://github.com/Kizarm/TTSCP_Client/tree/main/kecal/stm + * + */ +//////////////////////////////////////////////////////// +static GpioClass led (GPIOB, 8); +static PwmClass pwm; +static FIFO fifo; +static TextPlayer player (fifo, led); +static GsmDecoder decoder(fifo); + +int main () { + led << true; + unsigned counter = 0u; + pwm.attach (decoder); + for (;;) { + player.say(counter++); + pwm.delay (); + } + return 0; +} diff --git a/V203F6P6/thermometer/norflash.cpp b/V203F6P6/thermometer/norflash.cpp new file mode 100644 index 0000000..5f002b6 --- /dev/null +++ b/V203F6P6/thermometer/norflash.cpp @@ -0,0 +1,45 @@ +#include "string.h" +#include "norflash.h" + +/// Enumerace povelů pro SPI FLASH. +enum FLASH_COMMANDS : uint8_t { + /* single byte commands */ + FLASH_WRDI = 0x04, // nepoužito + FLASH_WREN = 0x06, + FLASH_RDID = 0x9F, + FLASHRSTEN = 0x66, // nepoužito + FLASH__RST = 0x99, // nepoužito + FLASH__RES = 0xAB, // release from power down, nepoužito + FLASH__DPD = 0xB9, // power down, nepoužito + // multi - byte + FLASH_RDSR1 = 0x05, + // dále se mohou povely lišit + FLASH_RDSR2 = 0x35, // nepoužito + FLASH_4READ = 0x03, + FLASH_4PP = 0x02, + FLASH_4SE = 0x20, +}; +union FlashCommandHeader { + struct { + FLASH_COMMANDS cmd : 8; + uint32_t adr : 24; // adresa je BIG ENDIEN - vyšší byte vystupuje po SPI dříve (MSB FIRST). + }__attribute__((packed)); + uint8_t bytes [4]; +}__attribute__((packed)); +static inline uint32_t be_set_24 (const uint32_t p) { + return ((p & 0x000000ff) << 16) + | ((p & 0x0000ff00) << 0) + | ((p & 0x00ff0000) >> 16); +} +/* Nic jiného zatím není potřeba, ale šlo by dodělat i zápis včetně mazání bloku. +*/ +unsigned int NorFlash::ReadBlock(const unsigned int addr, uint8_t * data, const unsigned int len) { + FlashCommandHeader header; + header.cmd = FLASH_4READ; + header.adr = be_set_24(addr); + spi.ChipSelect(true); + for (unsigned n=0u; n +#include "spiblocked.h" + +class NorFlash { + SpiBlocked spi; + public: + explicit NorFlash () noexcept : spi() {} + unsigned ReadBlock (const unsigned addr, uint8_t * data, const unsigned len); +}; + +#endif // NORFLASH_H diff --git a/V203F6P6/thermometer/player.cpp b/V203F6P6/thermometer/player.cpp new file mode 100644 index 0000000..b139f52 --- /dev/null +++ b/V203F6P6/thermometer/player.cpp @@ -0,0 +1,153 @@ +#include +#include "player.h" + +/******************************************************************/ +static constexpr int dmult (const int n) { + int r = 1; + for (int i=0; i 3) { out(m_t.hafo); return; } // meze 1..3 + if (number < 0) { + out (m_t.minus); say (-number, dnum); return; + } + const div_t dt = ::div (number, dmult(dnum)); + if (dt.quot) sre(dt.quot); + else out(m_t.nula); + out(m_t.point); + mil(dt.rem, dnum); +} +void TextPlayer::mil(const int number, const int dnum) { + if (number == 0) { out(m_t.nula); return; } + const int max = dmult(dnum - 1); + if (number < max) { + out(m_t.nula); + mil(number * 10, dnum); + return; + } + sre (strip_zeros(number)); +} + +void TextPlayer::sre(const int number) { + if (number < 0) { + out (m_t.minus); + sre (-number); + return; + } + if (number >= 1000000) { + out(m_t.hafo); + return; + } + if (number == 1000) { + out(m_t.tisic); + return; + } + if (number > 1000) { + const div_t dt = ::div (number, 1000); + sre (dt.quot); + const int ln = dt.quot % 10; + (ln < 2 or ln > 4) ? out(m_t.tisic) : out(m_t.tisice); + sre (dt.rem); + return; + } + if (number == 100) { + out(m_t.sto); + return; + } + if (number > 100) { + const div_t dt = ::div (number, 100); + const int ln = dt.quot % 10; + //printf ("stovky:%d ", ln); + hec (ln); + sre (dt.rem); + return; + } + if (number == 20) { + out(m_t.dvacet); + return; + } + if (number > 20) { + const div_t dt = ::div (number, 10); + const int ln = dt.quot % 10; + //printf ("desitky:%d ", ln); + dek (ln); + sre (dt.rem); + return; + } + if (number == 0) return; + // jednotky 1 .. 19 + // printf("jednotky:%d ", number); + one (number); +} +void TextPlayer::hec(const int number) { + switch (number) { + case 1: out (m_t.sto); break; + case 2: out (m_t.dveste); break; + case 3: + case 4: one(number); out (m_t.sta); break; + case 5: + case 6: + case 7: + case 8: + case 9: one(number); out (m_t.set); break; + default: break; + }; +} +void TextPlayer::dek(const int number) { + switch (number) { + case 2: out (m_t.dvacet); break; + case 3: out (m_t.tricet); break; + case 4: out (m_t.ctyricet); break; + case 5: out (m_t.padesat); break; + case 6: out (m_t.sedesat); break; + case 7: out (m_t.sedmdesat); break; + case 8: out (m_t.osmdesat); break; + case 9: out (m_t.devadesat); break; + default: break; + }; +} +void TextPlayer::one(const int number) { + // 1..19 + switch (number) { + case 1: out (m_t.jedna); break; + case 2: out (m_t.dva); break; + case 3: out (m_t.tri); break; + case 4: out (m_t.ctyri); break; + case 5: out (m_t.pet); break; + case 6: out (m_t.sest); break; + case 7: out (m_t.sedm); break; + case 8: out (m_t.osm); break; + case 9: out (m_t.devet); break; + case 10: out (m_t.deset); break; + case 11: out (m_t.jedenact); break; + case 12: out (m_t.dvanact); break; + case 13: out (m_t.trinact); break; + case 14: out (m_t.ctrnact); break; + case 15: out (m_t.patnact); break; + case 16: out (m_t.sestnact); break; + case 17: out (m_t.sedmnact); break; + case 18: out (m_t.osmnact); break; + case 19: out (m_t.devatenact); break; + default: break; + }; +} +void TextPlayer::out(const text_p & o) { + led << true; // led svítí, pokud to mluví + const int len = o.no_frames; + for (int n=0; n & fifo; + public: + explicit TextPlayer(FIFO & f, GpioClass & io) noexcept : + led (io), m_t(sayed_texts), fifo(f) {} + void say (const int number); // celé číslo + void say (const int number, const int dnum); // celé číslo jako desetinné s dnum míst (1 .. 3) + void say (const text_p & o) { out (o); } // přetížení pro uživatelská slova + protected: + void sre (const int number); + void hec (const int number); + void dek (const int number); + void one (const int number); + void mil (const int number, const int dnum); + + void out (const text_p & o); +}; + +#endif // PLAYER_H diff --git a/V203F6P6/thermometer/pwmclass.cpp b/V203F6P6/thermometer/pwmclass.cpp new file mode 100644 index 0000000..a932938 --- /dev/null +++ b/V203F6P6/thermometer/pwmclass.cpp @@ -0,0 +1,107 @@ +#include "pwmclass.h" +#include "gpio.h" +typedef __SIZE_TYPE__ size_t; +extern "C" { + [[gnu::interrupt]] extern void DMA1_Channel2_IRQHandler( void ); +}; +static PwmClass * pPwmInstance = nullptr; +void DMA1_Channel2_IRQHandler( void ) { + DMA1_Type::INTFR_DEF state (DMA1.INTFR); + if (state.B.GIF2 != RESET) { + DMA1.INTFCR.B.CGIF2 = SET; + } else return; + if (state.B.HTIF2 != RESET) { + DMA1.INTFCR.B.CHTIF2 = SET; + if (pPwmInstance) pPwmInstance->send(false); + } + if (state.B.TCIF2 != RESET) { + DMA1.INTFCR.B.CTCIF2 = SET; + if (pPwmInstance) pPwmInstance->send(true); + } +} +/* + * initialize TIM2 for PWM + */ +inline void PwmClass::TimInit() noexcept { + // Enable GPIOA and TIM1 + RCC.APB2PCENR.modify([] (RCC_Type::APB2PCENR_DEF & r) -> auto { + r.B.IOPAEN = SET; + r.B.IOPBEN = SET; + //r.B.AFIOEN = SET; + return r.R; + }); + RCC.APB1PCENR.B.TIM2EN = SET; + // PA2 is TIM2_CH3, 10MHz Output alt func, push-pull + GPIOA.CFGLR.modify([](GPIOA_Type::CFGLR_DEF & r) -> auto { + r.B.CNF2 = 2u; + r.B.MODE2 = 1u; + return r.R; + }); + // PB1 is DEN, active H Output 10 MHz, push-pull + GPIOB.CFGLR.modify([](GPIOA_Type::CFGLR_DEF & r) -> auto { + r.B.CNF1 = 0u; + r.B.MODE1 = 1u; + return r.R; + }); + GPIOB.BSHR.B.BS1 = SET; // set to H + // Reset TIM2 to init all regs + RCC.APB1PRSTR.B.TIM2RST = SET; + RCC.APB1PRSTR.B.TIM2RST = RESET; + // CTLR1: default is up, events generated, edge align + // SMCFGR: default clk input is CK_INT + // Prescaler + TIM2.PSC.R = 0u; // 144 MHz + // Auto Reload - sets period + TIM2.ATRLR.R = MAXPWM - 1; // 24 kHz + + // CH3 Mode is output, PWM1 (CC3S = 00, OC3M = 110) + TIM2.CHCTLR2_Output.modify([](TIM2_Type::CHCTLR2_Output_DEF & r) -> auto { + r.B.OC3M = 0x6u; + return r.R; + }); + // Enable TIM1 outputs + TIM2.CCER.modify([](TIM2_Type::CCER_DEF & r) -> auto { + // Enable CH3, CH3 output, positive pol + r.B.CC3E = SET; + //r.B.CC3P = SET; // negative + return r.R; + }); + // Reload immediately + Trigger DMA + TIM2.SWEVGR.B.UG = SET; + TIM2.DMAINTENR.B.UDE = SET; +} +inline void PwmClass::DmaInit() noexcept { + // Enable DMA + RCC.AHBPCENR.modify([](RCC_Type::AHBPCENR_DEF & r) -> auto { + r.B.SRAMEN = SET; + r.B.DMA1EN = SET; + return r.R; + }); + // DMA can be configured to attach to T2UP + // The system can only DMA out at ~2.2MSPS. 2MHz is stable. + DMA1.CNTR2 .R = FULL_LEN; + DMA1.MADDR2.R = reinterpret_cast(buffer); + DMA1.PADDR2.R = reinterpret_cast(& TIM2.CH3CVR); + NVIC.EnableIRQ (DMA1_Channel2_IRQn); + DMA1.CFGR2.modify([](DMA1_Type::CFGR2_DEF & r) -> auto { + r.B.DIR = SET; // MEM2PERIPHERAL + r.B.PL = 2u; // High priority. + r.B.PSIZE = 1u; // 16-bit peripheral + r.B.MSIZE = 1u; // 16-bit memory + r.B.MINC = SET; // Increase memory. + r.B.CIRC = SET; // Circular mode. + r.B.HTIE = SET; // Half-trigger + r.B.TCIE = SET; // Whole-trigger + // Enable DMA1 CH2 + r.B.EN = SET; + return r.R; + }); +} + +PwmClass::PwmClass() noexcept : count(0u), pL(buffer), pH(buffer + HALF_LEN), src(nullptr) { + pPwmInstance = this; + TimInit (); + DmaInit (); + // Enable TIM2 + TIM2.CTLR1.B.CEN = SET; +} diff --git a/V203F6P6/thermometer/pwmclass.h b/V203F6P6/thermometer/pwmclass.h new file mode 100644 index 0000000..3572de2 --- /dev/null +++ b/V203F6P6/thermometer/pwmclass.h @@ -0,0 +1,35 @@ +#ifndef PWMCLASS_H +#define PWMCLASS_H +#include "system.h" +#include "oneway.h" + static constexpr unsigned MAXPWM = 6000u; +/* Používá TIM2, PWM kanál 3, DMA1 kanál 2, přerušení DMA1_Channel2_IRQHandler */ +class PwmClass { + static constexpr unsigned HALF_LEN = 3u * 160u; + static constexpr unsigned FULL_LEN = 2u * HALF_LEN; + volatile unsigned count; + uint16_t * const pL; + uint16_t * const pH; + uint16_t buffer [FULL_LEN]; + OneWay * src; + public: + explicit PwmClass () noexcept; + void attach (OneWay & s) { src = & s; } + void send (const bool b) { + if (!src) return; + if (b) src->Send (pH, HALF_LEN); + else src->Send (pL, HALF_LEN); + if (count) count -= 1u; + } + void delay (const unsigned frames = 50u) { + count = frames; + while (count) { + asm volatile ("nop"); + } + } + protected: + void DmaInit () noexcept; + void TimInit () noexcept; +}; + +#endif // PWMCLASS_H diff --git a/V203F6P6/thermometer/spiblocked.cpp b/V203F6P6/thermometer/spiblocked.cpp new file mode 100644 index 0000000..77576ab --- /dev/null +++ b/V203F6P6/thermometer/spiblocked.cpp @@ -0,0 +1,66 @@ +#include "system.h" +#include "spiblocked.h" +enum SPICLK : uint32_t { + FPCLK_2 = 0u, // 72 MHz + FPCLK_4, // 36 MHz + FPCLK_8, // 18 MHz + FPCLK_16, // 9 MHz + FPCLK_32, // 4.5 MHz + FPCLK_64, // 2.25 MHz + FPCLK_128, // 1.125 MHz + FPCLK_256, // 0.5625 MHz +}; +static constexpr unsigned FM = 3u; // 50 MHz +static void InitPins () noexcept { + // PA4 - NSS, PA5 - SCK, PA6 - MISO, PA7 - MOSI + GPIOA.CFGLR.modify([](GPIOA_Type::CFGLR_DEF & r) -> uint32_t { + r.B.MODE4 = FM; + r.B.CNF4 = 0u; // gen push - pull + r.B.MODE5 = FM; + r.B.CNF5 = 2u; // alt push - pull + r.B.MODE6 = 0u; // input mode + r.B.CNF6 = 1u; // floating + r.B.MODE7 = FM; + r.B.CNF7 = 2u; // alt push - pull + return r.R; + }); + // AFIO - default + GPIOA.BSHR.B.BS4 = SET; +} + +SpiBlocked::SpiBlocked() noexcept { + RCC.APB2PCENR.modify([](RCC_Type::APB2PCENR_DEF & r) -> uint32_t { + r.B.SPI1EN = SET; + r.B.IOPAEN = SET; + //r.B.AFIOEN = SET; + return r.R; + }); + InitPins(); + RCC.APB2PRSTR.B.SPI1RST = SET; + RCC.APB2PRSTR.B.SPI1RST = RESET; + SPI1.CTLR1.modify([](SPI1_Type::CTLR1_DEF & r) -> uint32_t { + r.B.CPHA = RESET; + r.B.CPOL = RESET; + r.B.MSTR = SET; // master + r.B.DFF = RESET; // 8 bit + r.B.SSM = SET; // software + r.B.SSI = SET; // !!! netuším proč, ale jinak se nenastaví MSTR a SPE + r.B.LSBFIRST = RESET; + r.B.BR = FPCLK_64; + return r.R; + }); + SPI1.CRCR.R = 7u; + SPI1.CTLR1.B.SPE = SET; +} +uint8_t SpiBlocked::ReadWriteByte(const uint8_t data) { + while (SPI1.STATR.B.TXE == RESET); + SPI1.DATAR.B.DATAR = data; + while (SPI1.STATR.B.RXNE == RESET); + return SPI1.DATAR.B.DATAR; +} +void SpiBlocked::ChipSelect(const bool on) { + if (on) GPIOA.BSHR.B.BR4 = SET; + else GPIOA.BSHR.B.BS4 = SET; +} + + diff --git a/V203F6P6/thermometer/spiblocked.h b/V203F6P6/thermometer/spiblocked.h new file mode 100644 index 0000000..4ca59c9 --- /dev/null +++ b/V203F6P6/thermometer/spiblocked.h @@ -0,0 +1,12 @@ +#ifndef SPIBLOCKED_H +#define SPIBLOCKED_H +#include + +class SpiBlocked { +public: + explicit SpiBlocked () noexcept; + uint8_t ReadWriteByte (const uint8_t data); + void ChipSelect (const bool on); +}; + +#endif // SPIBLOCKED_H diff --git a/V203F6P6/thermometer/wrap.c b/V203F6P6/thermometer/wrap.c new file mode 100644 index 0000000..bb42b02 --- /dev/null +++ b/V203F6P6/thermometer/wrap.c @@ -0,0 +1,22 @@ +/* Funkce z newlib, použité ve zdrojácích. + * Velmi zjednodušeno. + */ +typedef struct { + int quot, rem; +} div_t; +typedef __SIZE_TYPE__ size_t; +div_t div (int numerator, int denominator) { + const div_t result = { numerator / denominator, numerator % denominator }; + return result; +} +void * memset(void * s, int c, size_t n) { + char * p = (char*) s; + for (unsigned i=0u; i