mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-12 22:52:28 -05:00
puzzles: compress extensive help text
This is only really needed to save a few bytes on the c200v2, but since it adds negligible overhead, so it's implemented for all targets. A stripped down version of the LZ4 reference implementation is found in lz4tiny.c. Change-Id: Ib914ba71c84e04da282328662c752e533912e197
This commit is contained in:
parent
5645135092
commit
bf25f3e6e7
46 changed files with 7347 additions and 2838 deletions
|
|
@ -1,137 +1,374 @@
|
|||
/* auto-generated by genhelp.sh */
|
||||
/* auto-generated on Aug 16 2017 by genhelp.sh */
|
||||
/* orig 6245 comp 3641 ratio 0.583026 level 11 saved 2604 */
|
||||
/* DO NOT EDIT! */
|
||||
const char help_text[] =
|
||||
"#Chapter 11: Solo "
|
||||
"\n"
|
||||
"You have a square grid, which is divided into as many equally sized "
|
||||
"sub-blocks as the grid has rows. Each square must be filled in with "
|
||||
"a digit from 1 to the size of the grid, in such a way that "
|
||||
"\n"
|
||||
"- every row contains only one occurrence of each digit "
|
||||
"\n"
|
||||
"- every column contains only one occurrence of each digit "
|
||||
"\n"
|
||||
"- every block contains only one occurrence of each digit. "
|
||||
"\n"
|
||||
"- (optionally, by default off) each of the square's two main "
|
||||
"diagonals contains only one occurrence of each digit. "
|
||||
"\n"
|
||||
"You are given some of the numbers as clues; your aim is to place the "
|
||||
"rest of the numbers correctly. "
|
||||
"\n"
|
||||
"Under the default settings, the sub-blocks are square or "
|
||||
"rectangular. The default puzzle size is 3x3 (a 9x9 actual grid, "
|
||||
"divided into nine 3x3 blocks). You can also select sizes with "
|
||||
"rectangular blocks instead of square ones, such as 2x3 (a 6x6 grid "
|
||||
"divided into six 3x2 blocks). Alternatively, you can select `jigsaw' "
|
||||
"mode, in which the sub-blocks are arbitrary shapes which differ "
|
||||
"between individual puzzles. "
|
||||
"\n"
|
||||
"Another available mode is `killer'. In this mode, clues are not "
|
||||
"given in the form of filled-in squares; instead, the grid is divided "
|
||||
"into `cages' by coloured lines, and for each cage the game tells "
|
||||
"you what the sum of all the digits in that cage should be. Also, "
|
||||
"no digit may appear more than once within a cage, even if the cage "
|
||||
"crosses the boundaries of existing regions. "
|
||||
"\n"
|
||||
"If you select a puzzle size which requires more than 9 digits, the "
|
||||
"additional digits will be letters of the alphabet. For example, if "
|
||||
"you select 3x4 then the digits which go in your grid will be 1 to 9, "
|
||||
"plus `a', `b' and `c'. This cannot be selected for killer puzzles. "
|
||||
"\n"
|
||||
"I first saw this puzzle in Nikoli [5], although it's also been "
|
||||
"popularised by various newspapers under the name `Sudoku' or `Su "
|
||||
"Doku'. Howard Garns is considered the inventor of the modern form of "
|
||||
"the puzzle, and it was first published in _Dell Pencil Puzzles and "
|
||||
"Word Games_. A more elaborate treatment of the history of the puzzle "
|
||||
"can be found on Wikipedia [6]. "
|
||||
"\n"
|
||||
"[5] http://www.nikoli.co.jp/en/puzzles/sudoku.html (beware of Flash) "
|
||||
"\n"
|
||||
"[6] http://en.wikipedia.org/wiki/Sudoku "
|
||||
"\n"
|
||||
"\n#11.1 Solo controls "
|
||||
"\n"
|
||||
"To play Solo, simply click the mouse in any empty square and then "
|
||||
"type a digit or letter on the keyboard to fill that square. If you "
|
||||
"make a mistake, click the mouse in the incorrect square and press "
|
||||
"Space to clear it again (or use the Undo feature). "
|
||||
"\n"
|
||||
"If you _right_-click in a square and then type a number, that "
|
||||
"number will be entered in the square as a `pencil mark'. You can "
|
||||
"have pencil marks for multiple numbers in the same square. Squares "
|
||||
"containing filled-in numbers cannot also contain pencil marks. "
|
||||
"\n"
|
||||
"The game pays no attention to pencil marks, so exactly what you "
|
||||
"use them for is up to you: you can use them as reminders that a "
|
||||
"particular square needs to be re-examined once you know more about "
|
||||
"a particular number, or you can use them as lists of the possible "
|
||||
"numbers in a given square, or anything else you feel like. "
|
||||
"\n"
|
||||
"To erase a single pencil mark, right-click in the square and type "
|
||||
"the same number again. "
|
||||
"\n"
|
||||
"All pencil marks in a square are erased when you left-click and type "
|
||||
"a number, or when you left-click and press space. Right-clicking and "
|
||||
"pressing space will also erase pencil marks. "
|
||||
"\n"
|
||||
"Alternatively, use the cursor keys to move the mark around the grid. "
|
||||
"Pressing the return key toggles the mark (from a normal mark to a "
|
||||
"pencil mark), and typing a number in is entered in the square in the "
|
||||
"appropriate way; typing in a 0 or using the space bar will clear a "
|
||||
"filled square. "
|
||||
"\n"
|
||||
"(All the actions described in section 2.1 are also available.) "
|
||||
"\n"
|
||||
"\n#11.2 Solo parameters "
|
||||
"\n"
|
||||
"Solo allows you to configure two separate dimensions of the puzzle "
|
||||
"grid on the `Type' menu: the number of columns, and the number of "
|
||||
"rows, into which the main grid is divided. (The size of a block is "
|
||||
"the inverse of this: for example, if you select 2 columns and 3 "
|
||||
"rows, each actual block will have 3 columns and 2 rows.) "
|
||||
"\n"
|
||||
"If you tick the `X' checkbox, Solo will apply the optional extra "
|
||||
"constraint that the two main diagonals of the grid also contain "
|
||||
"one of every digit. (This is sometimes known as `Sudoku-X' in "
|
||||
"newspapers.) In this mode, the squares on the two main diagonals "
|
||||
"will be shaded slightly so that you know it's enabled. "
|
||||
"\n"
|
||||
"If you tick the `Jigsaw' checkbox, Solo will generate randomly "
|
||||
"shaped sub-blocks. In this mode, the actual grid size will be taken "
|
||||
"to be the product of the numbers entered in the `Columns' and `Rows' "
|
||||
"boxes. There is no reason why you have to enter a number greater "
|
||||
"than 1 in both boxes; Jigsaw mode has no constraint on the grid "
|
||||
"size, and it can even be a prime number if you feel like it. "
|
||||
"\n"
|
||||
"If you tick the `Killer' checkbox, Solo will generate a set of "
|
||||
"of cages, which are randomly shaped and drawn in an outline of a "
|
||||
"different colour. Each of these regions contains a smaller clue "
|
||||
"which shows the digit sum of all the squares in this region. "
|
||||
"\n"
|
||||
"You can also configure the type of symmetry shown in the generated "
|
||||
"puzzles. More symmetry makes the puzzles look prettier but may also "
|
||||
"make them easier, since the symmetry constraints can force more "
|
||||
"clues than necessary to be present. Completely asymmetric puzzles "
|
||||
"have the freedom to contain as few clues as possible. "
|
||||
"\n"
|
||||
"Finally, you can configure the difficulty of the generated puzzles. "
|
||||
"Difficulty levels are judged by the complexity of the techniques "
|
||||
"of deduction required to solve the puzzle: each level requires a "
|
||||
"mode of reasoning which was not necessary in the previous one. In "
|
||||
"particular, on difficulty levels `Trivial' and `Basic' there will be "
|
||||
"a square you can fill in with a single number at all times, whereas "
|
||||
"at `Intermediate' level and beyond you will have to make partial "
|
||||
"deductions about the _set_ of squares a number could be in (or the "
|
||||
"set of numbers that could be in a square). At `Unreasonable' level, "
|
||||
"even this is not enough, and you will eventually have to make a "
|
||||
"guess, and then backtrack if it turns out to be wrong. "
|
||||
"\n"
|
||||
"Generating difficult puzzles is itself difficult: if you select one "
|
||||
"of the higher difficulty levels, Solo may have to make many attempts "
|
||||
"at generating a puzzle before it finds one hard enough for you. Be "
|
||||
"prepared to wait, especially if you have also configured a large "
|
||||
"puzzle size. "
|
||||
"\n"
|
||||
;
|
||||
|
||||
#include "help.h"
|
||||
const char help_text[] = {
|
||||
0xf0, 0x52, 0x23, 0x43, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72,
|
||||
0x20, 0x31, 0x31, 0x3a, 0x20, 0x53, 0x6f, 0x6c, 0x6f, 0x20,
|
||||
0x0a, 0x59, 0x6f, 0x75, 0x20, 0x68, 0x61, 0x76, 0x65, 0x20,
|
||||
0x61, 0x20, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x20, 0x67,
|
||||
0x72, 0x69, 0x64, 0x2c, 0x20, 0x77, 0x68, 0x69, 0x63, 0x68,
|
||||
0x20, 0x69, 0x73, 0x20, 0x64, 0x69, 0x76, 0x69, 0x64, 0x65,
|
||||
0x64, 0x20, 0x69, 0x6e, 0x74, 0x6f, 0x20, 0x61, 0x73, 0x20,
|
||||
0x6d, 0x61, 0x6e, 0x79, 0x20, 0x65, 0x71, 0x75, 0x61, 0x6c,
|
||||
0x6c, 0x79, 0x20, 0x73, 0x69, 0x7a, 0x65, 0x64, 0x20, 0x73,
|
||||
0x75, 0x62, 0x2d, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x73, 0x21,
|
||||
0x00, 0x22, 0x74, 0x68, 0x44, 0x00, 0xf4, 0x00, 0x20, 0x68,
|
||||
0x61, 0x73, 0x20, 0x72, 0x6f, 0x77, 0x73, 0x2e, 0x20, 0x45,
|
||||
0x61, 0x63, 0x68, 0x5f, 0x00, 0xc1, 0x6d, 0x75, 0x73, 0x74,
|
||||
0x20, 0x62, 0x65, 0x20, 0x66, 0x69, 0x6c, 0x6c, 0x57, 0x00,
|
||||
0xf0, 0x08, 0x20, 0x77, 0x69, 0x74, 0x68, 0x20, 0x61, 0x20,
|
||||
0x64, 0x69, 0x67, 0x69, 0x74, 0x20, 0x66, 0x72, 0x6f, 0x6d,
|
||||
0x20, 0x31, 0x20, 0x74, 0x6f, 0x48, 0x00, 0x01, 0x60, 0x00,
|
||||
0x35, 0x20, 0x6f, 0x66, 0x54, 0x00, 0x10, 0x2c, 0x30, 0x00,
|
||||
0x30, 0x73, 0x75, 0x63, 0x30, 0x00, 0xf0, 0x02, 0x77, 0x61,
|
||||
0x79, 0x20, 0x74, 0x68, 0x61, 0x74, 0x20, 0x0a, 0x2d, 0x20,
|
||||
0x65, 0x76, 0x65, 0x72, 0x79, 0x6d, 0x00, 0xf1, 0x0d, 0x20,
|
||||
0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x20, 0x6f,
|
||||
0x6e, 0x6c, 0x79, 0x20, 0x6f, 0x6e, 0x65, 0x20, 0x6f, 0x63,
|
||||
0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x4a, 0x00, 0x41,
|
||||
0x65, 0x61, 0x63, 0x68, 0x6b, 0x00, 0x07, 0x38, 0x00, 0x6f,
|
||||
0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x3b, 0x00, 0x22, 0x01,
|
||||
0xf7, 0x00, 0x0f, 0x3a, 0x00, 0x18, 0x10, 0x2e, 0x3b, 0x00,
|
||||
0x70, 0x28, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x01,
|
||||
0xf1, 0x02, 0x2c, 0x20, 0x62, 0x79, 0x20, 0x64, 0x65, 0x66,
|
||||
0x61, 0x75, 0x6c, 0x74, 0x20, 0x6f, 0x66, 0x66, 0x29, 0x2c,
|
||||
0x00, 0x03, 0xf3, 0x00, 0x03, 0x33, 0x01, 0xf0, 0x01, 0x27,
|
||||
0x73, 0x20, 0x74, 0x77, 0x6f, 0x20, 0x6d, 0x61, 0x69, 0x6e,
|
||||
0x20, 0x64, 0x69, 0x61, 0x67, 0x3a, 0x00, 0x1f, 0x73, 0x74,
|
||||
0x00, 0x19, 0x02, 0xe6, 0x01, 0x01, 0xdc, 0x01, 0x85, 0x69,
|
||||
0x76, 0x65, 0x6e, 0x20, 0x73, 0x6f, 0x6d, 0x56, 0x01, 0x61,
|
||||
0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0xb9, 0x01, 0xf0, 0x03,
|
||||
0x63, 0x6c, 0x75, 0x65, 0x73, 0x3b, 0x20, 0x79, 0x6f, 0x75,
|
||||
0x72, 0x20, 0x61, 0x69, 0x6d, 0x20, 0x69, 0x73, 0x87, 0x01,
|
||||
0x51, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x2b, 0x00, 0x4c, 0x72,
|
||||
0x65, 0x73, 0x74, 0x37, 0x00, 0xf0, 0x02, 0x63, 0x6f, 0x72,
|
||||
0x72, 0x65, 0x63, 0x74, 0x6c, 0x79, 0x2e, 0x20, 0x0a, 0x55,
|
||||
0x6e, 0x64, 0x65, 0x72, 0x1e, 0x00, 0x05, 0xd1, 0x00, 0x90,
|
||||
0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2c, 0x16,
|
||||
0x00, 0x09, 0x27, 0x02, 0x24, 0x72, 0x65, 0x10, 0x02, 0x30,
|
||||
0x6f, 0x72, 0x20, 0x42, 0x00, 0xa7, 0x61, 0x6e, 0x67, 0x75,
|
||||
0x6c, 0x61, 0x72, 0x2e, 0x20, 0x54, 0x40, 0x00, 0x52, 0x70,
|
||||
0x75, 0x7a, 0x7a, 0x6c, 0x06, 0x02, 0x00, 0x8e, 0x00, 0xf2,
|
||||
0x02, 0x33, 0x78, 0x33, 0x20, 0x28, 0x61, 0x20, 0x39, 0x78,
|
||||
0x39, 0x20, 0x61, 0x63, 0x74, 0x75, 0x61, 0x6c, 0x14, 0x02,
|
||||
0x0a, 0xa3, 0x02, 0x41, 0x6e, 0x69, 0x6e, 0x65, 0x2a, 0x00,
|
||||
0x02, 0x6b, 0x00, 0x30, 0x29, 0x2e, 0x20, 0xfd, 0x00, 0xf1,
|
||||
0x00, 0x63, 0x61, 0x6e, 0x20, 0x61, 0x6c, 0x73, 0x6f, 0x20,
|
||||
0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x53, 0x00, 0x11, 0x73,
|
||||
0x7a, 0x02, 0x08, 0x7e, 0x00, 0x13, 0x20, 0x9f, 0x00, 0xa5,
|
||||
0x69, 0x6e, 0x73, 0x74, 0x65, 0x61, 0x64, 0x20, 0x6f, 0x66,
|
||||
0xa6, 0x00, 0x43, 0x6e, 0x65, 0x73, 0x2c, 0x7a, 0x02, 0x32,
|
||||
0x73, 0x20, 0x32, 0x89, 0x00, 0x31, 0x36, 0x78, 0x36, 0x82,
|
||||
0x00, 0x0a, 0x81, 0x00, 0x76, 0x73, 0x69, 0x78, 0x20, 0x33,
|
||||
0x78, 0x32, 0x80, 0x00, 0xb0, 0x41, 0x6c, 0x74, 0x65, 0x72,
|
||||
0x6e, 0x61, 0x74, 0x69, 0x76, 0x65, 0xf1, 0x01, 0x12, 0x79,
|
||||
0x8f, 0x00, 0x04, 0x8a, 0x00, 0xd0, 0x60, 0x6a, 0x69, 0x67,
|
||||
0x73, 0x61, 0x77, 0x27, 0x20, 0x6d, 0x6f, 0x64, 0x65, 0xe0,
|
||||
0x02, 0x02, 0x7b, 0x03, 0x0f, 0x32, 0x01, 0x01, 0xe0, 0x61,
|
||||
0x72, 0x62, 0x69, 0x74, 0x72, 0x61, 0x72, 0x79, 0x20, 0x73,
|
||||
0x68, 0x61, 0x70, 0xc0, 0x00, 0x21, 0x68, 0x69, 0xe5, 0x01,
|
||||
0xf1, 0x00, 0x66, 0x66, 0x65, 0x72, 0x20, 0x62, 0x65, 0x74,
|
||||
0x77, 0x65, 0x65, 0x6e, 0x20, 0x69, 0x6e, 0x8f, 0x00, 0x33,
|
||||
0x75, 0x61, 0x6c, 0x40, 0x01, 0xf0, 0x06, 0x73, 0x2e, 0x20,
|
||||
0x0a, 0x41, 0x6e, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x20, 0x61,
|
||||
0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x6c, 0x65, 0x6f, 0x00,
|
||||
0x01, 0x55, 0x01, 0x20, 0x60, 0x6b, 0x89, 0x03, 0xb2, 0x72,
|
||||
0x27, 0x2e, 0x20, 0x49, 0x6e, 0x20, 0x74, 0x68, 0x69, 0x73,
|
||||
0x89, 0x00, 0x01, 0x0e, 0x02, 0x02, 0x77, 0x00, 0x33, 0x6e,
|
||||
0x6f, 0x74, 0x39, 0x02, 0x21, 0x69, 0x6e, 0x97, 0x00, 0x73,
|
||||
0x66, 0x6f, 0x72, 0x6d, 0x20, 0x6f, 0x66, 0xc3, 0x03, 0x33,
|
||||
0x2d, 0x69, 0x6e, 0x26, 0x01, 0x24, 0x73, 0x3b, 0x3a, 0x01,
|
||||
0x15, 0x2c, 0xb2, 0x03, 0x0d, 0x43, 0x04, 0x91, 0x60, 0x63,
|
||||
0x61, 0x67, 0x65, 0x73, 0x27, 0x20, 0x62, 0x78, 0x03, 0x81,
|
||||
0x6f, 0x75, 0x72, 0x65, 0x64, 0x20, 0x6c, 0x69, 0x5f, 0x01,
|
||||
0x30, 0x61, 0x6e, 0x64, 0x5c, 0x00, 0x02, 0xbb, 0x02, 0x00,
|
||||
0x27, 0x00, 0x02, 0x46, 0x00, 0x91, 0x61, 0x6d, 0x65, 0x20,
|
||||
0x74, 0x65, 0x6c, 0x6c, 0x73, 0x3b, 0x01, 0x43, 0x77, 0x68,
|
||||
0x61, 0x74, 0x1d, 0x01, 0x01, 0x85, 0x00, 0x30, 0x61, 0x6c,
|
||||
0x6c, 0x0f, 0x00, 0x02, 0xeb, 0x02, 0x00, 0xbb, 0x01, 0x01,
|
||||
0x15, 0x04, 0x02, 0x3f, 0x00, 0x90, 0x73, 0x68, 0x6f, 0x75,
|
||||
0x6c, 0x64, 0x20, 0x62, 0x65, 0x85, 0x01, 0x63, 0x73, 0x6f,
|
||||
0x2c, 0x20, 0x6e, 0x6f, 0xc1, 0x03, 0xe0, 0x6d, 0x61, 0x79,
|
||||
0x20, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x20, 0x6d, 0x6f,
|
||||
0x72, 0x69, 0x00, 0x71, 0x61, 0x6e, 0x20, 0x6f, 0x6e, 0x63,
|
||||
0x65, 0x14, 0x02, 0x41, 0x69, 0x6e, 0x20, 0x61, 0x42, 0x00,
|
||||
0x31, 0x2c, 0x20, 0x65, 0xf8, 0x00, 0x01, 0xf5, 0x02, 0x02,
|
||||
0x54, 0x00, 0x62, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x65, 0xe7,
|
||||
0x04, 0xa1, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x61, 0x72, 0x69,
|
||||
0x65, 0x73, 0x72, 0x03, 0x30, 0x78, 0x69, 0x73, 0xef, 0x02,
|
||||
0x70, 0x20, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x77, 0x01,
|
||||
0x20, 0x49, 0x66, 0xb4, 0x00, 0x04, 0xeb, 0x01, 0x18, 0x61,
|
||||
0xd1, 0x02, 0x03, 0xbd, 0x01, 0x87, 0x72, 0x65, 0x71, 0x75,
|
||||
0x69, 0x72, 0x65, 0x73, 0x87, 0x00, 0x12, 0x39, 0xa4, 0x00,
|
||||
0x03, 0x36, 0x03, 0x42, 0x61, 0x64, 0x64, 0x69, 0x2e, 0x04,
|
||||
0x04, 0xe3, 0x00, 0x40, 0x77, 0x69, 0x6c, 0x6c, 0x42, 0x05,
|
||||
0x74, 0x6c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x73, 0x93, 0x03,
|
||||
0xb0, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x62, 0x65, 0x74, 0x2e,
|
||||
0x20, 0x46, 0x44, 0x01, 0x50, 0x78, 0x61, 0x6d, 0x70, 0x6c,
|
||||
0x51, 0x02, 0x09, 0x83, 0x00, 0x30, 0x33, 0x78, 0x34, 0x2d,
|
||||
0x00, 0x16, 0x6e, 0x33, 0x01, 0x04, 0x46, 0x02, 0x51, 0x67,
|
||||
0x6f, 0x20, 0x69, 0x6e, 0xfd, 0x03, 0x01, 0xb8, 0x01, 0x04,
|
||||
0x66, 0x00, 0x02, 0x8c, 0x05, 0xf1, 0x01, 0x39, 0x2c, 0x20,
|
||||
0x70, 0x6c, 0x75, 0x73, 0x20, 0x60, 0x61, 0x27, 0x2c, 0x20,
|
||||
0x60, 0x62, 0x27, 0xab, 0x01, 0x30, 0x60, 0x63, 0x27, 0xaf,
|
||||
0x03, 0x20, 0x69, 0x73, 0xcf, 0x02, 0x20, 0x6e, 0x6f, 0xd6,
|
||||
0x05, 0x03, 0x67, 0x00, 0x12, 0x65, 0xc8, 0x01, 0x02, 0x5a,
|
||||
0x02, 0x07, 0x86, 0x02, 0xb1, 0x49, 0x20, 0x66, 0x69, 0x72,
|
||||
0x73, 0x74, 0x20, 0x73, 0x61, 0x77, 0x6b, 0x02, 0x03, 0x1b,
|
||||
0x00, 0x00, 0x79, 0x00, 0xf2, 0x0a, 0x4e, 0x69, 0x6b, 0x6f,
|
||||
0x6c, 0x69, 0x20, 0x5b, 0x35, 0x5d, 0x2c, 0x20, 0x61, 0x6c,
|
||||
0x74, 0x68, 0x6f, 0x75, 0x67, 0x68, 0x20, 0x69, 0x74, 0x27,
|
||||
0x73, 0xb7, 0x03, 0x10, 0x62, 0xda, 0x02, 0x30, 0x70, 0x6f,
|
||||
0x70, 0xa6, 0x03, 0x40, 0x69, 0x73, 0x65, 0x64, 0x3f, 0x02,
|
||||
0xf0, 0x00, 0x76, 0x61, 0x72, 0x69, 0x6f, 0x75, 0x73, 0x20,
|
||||
0x6e, 0x65, 0x77, 0x73, 0x70, 0x61, 0x70, 0x0b, 0x01, 0x15,
|
||||
0x75, 0x83, 0x04, 0x10, 0x6e, 0x36, 0x02, 0xb0, 0x60, 0x53,
|
||||
0x75, 0x64, 0x6f, 0x6b, 0x75, 0x27, 0x20, 0x6f, 0x72, 0x0c,
|
||||
0x00, 0x20, 0x20, 0x44, 0x0d, 0x00, 0xf1, 0x01, 0x2e, 0x20,
|
||||
0x48, 0x6f, 0x77, 0x61, 0x72, 0x64, 0x20, 0x47, 0x61, 0x72,
|
||||
0x6e, 0x73, 0x20, 0x69, 0x4b, 0x05, 0x40, 0x73, 0x69, 0x64,
|
||||
0x65, 0x8a, 0x02, 0x20, 0x74, 0x68, 0x8e, 0x00, 0x62, 0x76,
|
||||
0x65, 0x6e, 0x74, 0x6f, 0x72, 0x59, 0x01, 0x02, 0x2a, 0x03,
|
||||
0x21, 0x72, 0x6e, 0xf6, 0x02, 0x03, 0x13, 0x00, 0x03, 0xb8,
|
||||
0x00, 0x02, 0xb2, 0x02, 0x63, 0x69, 0x74, 0x20, 0x77, 0x61,
|
||||
0x73, 0xda, 0x00, 0x72, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73,
|
||||
0x68, 0xd9, 0x06, 0xe2, 0x5f, 0x44, 0x65, 0x6c, 0x6c, 0x20,
|
||||
0x50, 0x65, 0x6e, 0x63, 0x69, 0x6c, 0x20, 0x50, 0x06, 0x01,
|
||||
0x01, 0x33, 0x00, 0x21, 0x57, 0x6f, 0x7f, 0x00, 0x72, 0x6d,
|
||||
0x65, 0x73, 0x5f, 0x2e, 0x20, 0x41, 0xfb, 0x01, 0xf5, 0x03,
|
||||
0x65, 0x6c, 0x61, 0x62, 0x6f, 0x72, 0x61, 0x74, 0x65, 0x20,
|
||||
0x74, 0x72, 0x65, 0x61, 0x74, 0x6d, 0x65, 0x6e, 0x6d, 0x05,
|
||||
0x7a, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x7d, 0x00,
|
||||
0x00, 0x75, 0x01, 0x01, 0x48, 0x07, 0x00, 0x84, 0x02, 0xf1,
|
||||
0x15, 0x20, 0x6f, 0x6e, 0x20, 0x57, 0x69, 0x6b, 0x69, 0x70,
|
||||
0x65, 0x64, 0x69, 0x61, 0x20, 0x5b, 0x36, 0x5d, 0x2e, 0x20,
|
||||
0x0a, 0x5b, 0x35, 0x5d, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a,
|
||||
0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x6e, 0x61, 0x01, 0xa3,
|
||||
0x2e, 0x63, 0x6f, 0x2e, 0x6a, 0x70, 0x2f, 0x65, 0x6e, 0x2f,
|
||||
0x96, 0x01, 0x21, 0x2f, 0x73, 0x23, 0x01, 0xc1, 0x2e, 0x68,
|
||||
0x74, 0x6d, 0x6c, 0x20, 0x28, 0x62, 0x65, 0x77, 0x61, 0x72,
|
||||
0x1c, 0x06, 0xa5, 0x46, 0x6c, 0x61, 0x73, 0x68, 0x29, 0x20,
|
||||
0x0a, 0x5b, 0x36, 0x46, 0x00, 0x44, 0x65, 0x6e, 0x2e, 0x77,
|
||||
0x64, 0x00, 0x50, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x0e, 0x00,
|
||||
0x12, 0x2f, 0x63, 0x01, 0x81, 0x20, 0x0a, 0x0a, 0x23, 0x31,
|
||||
0x31, 0x2e, 0x31, 0x56, 0x08, 0x01, 0x9c, 0x06, 0x71, 0x72,
|
||||
0x6f, 0x6c, 0x73, 0x20, 0x0a, 0x54, 0x41, 0x06, 0x11, 0x79,
|
||||
0x17, 0x00, 0xe3, 0x2c, 0x20, 0x73, 0x69, 0x6d, 0x70, 0x6c,
|
||||
0x79, 0x20, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5b, 0x01, 0x21,
|
||||
0x75, 0x73, 0xff, 0x01, 0x01, 0x55, 0x08, 0x43, 0x6d, 0x70,
|
||||
0x74, 0x79, 0x4b, 0x04, 0x00, 0x27, 0x01, 0x03, 0xa9, 0x02,
|
||||
0x35, 0x79, 0x70, 0x65, 0x1e, 0x08, 0x23, 0x6f, 0x72, 0xf6,
|
||||
0x02, 0x22, 0x20, 0x6f, 0xc3, 0x02, 0x50, 0x6b, 0x65, 0x79,
|
||||
0x62, 0x6f, 0xcd, 0x01, 0x21, 0x74, 0x6f, 0x8f, 0x04, 0x01,
|
||||
0xfd, 0x03, 0x03, 0x44, 0x00, 0x23, 0x2e, 0x20, 0x7f, 0x03,
|
||||
0x30, 0x6d, 0x61, 0x6b, 0x43, 0x00, 0x8f, 0x6d, 0x69, 0x73,
|
||||
0x74, 0x61, 0x6b, 0x65, 0x2c, 0x80, 0x00, 0x00, 0x03, 0xf8,
|
||||
0x01, 0x03, 0xce, 0x06, 0x08, 0x84, 0x00, 0x81, 0x70, 0x72,
|
||||
0x65, 0x73, 0x73, 0x20, 0x53, 0x70, 0x05, 0x07, 0x70, 0x6f,
|
||||
0x20, 0x63, 0x6c, 0x65, 0x61, 0x72, 0xf3, 0x01, 0x20, 0x61,
|
||||
0x67, 0x8f, 0x07, 0x62, 0x28, 0x6f, 0x72, 0x20, 0x75, 0x73,
|
||||
0xa8, 0x04, 0xd6, 0x55, 0x6e, 0x64, 0x6f, 0x20, 0x66, 0x65,
|
||||
0x61, 0x74, 0x75, 0x72, 0x65, 0x29, 0xfc, 0x03, 0x81, 0x5f,
|
||||
0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x2d, 0x75, 0x00, 0x01,
|
||||
0xeb, 0x00, 0x0f, 0xe3, 0x00, 0x04, 0x03, 0x54, 0x07, 0x11,
|
||||
0x2c, 0xc3, 0x00, 0x03, 0x0d, 0x00, 0x05, 0x86, 0x03, 0x51,
|
||||
0x65, 0x6e, 0x74, 0x65, 0x72, 0x56, 0x02, 0x07, 0x19, 0x08,
|
||||
0x00, 0x8b, 0x06, 0x42, 0x61, 0x20, 0x60, 0x70, 0x61, 0x02,
|
||||
0x55, 0x6d, 0x61, 0x72, 0x6b, 0x27, 0xee, 0x06, 0x02, 0xd5,
|
||||
0x09, 0x07, 0x1b, 0x00, 0x11, 0x73, 0x93, 0x03, 0x75, 0x6d,
|
||||
0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0xc1, 0x07, 0x05, 0x51,
|
||||
0x00, 0x35, 0x61, 0x6d, 0x65, 0x37, 0x01, 0x11, 0x53, 0x08,
|
||||
0x00, 0x05, 0x63, 0x08, 0x36, 0x69, 0x6e, 0x67, 0xeb, 0x05,
|
||||
0x03, 0x39, 0x00, 0x04, 0xf4, 0x03, 0x01, 0x9e, 0x03, 0x04,
|
||||
0x29, 0x00, 0x08, 0x6f, 0x00, 0x00, 0xef, 0x03, 0x14, 0x54,
|
||||
0xbe, 0x05, 0x40, 0x70, 0x61, 0x79, 0x73, 0x7c, 0x05, 0x70,
|
||||
0x61, 0x74, 0x74, 0x65, 0x6e, 0x74, 0x69, 0xbc, 0x01, 0x18,
|
||||
0x6f, 0x2d, 0x00, 0x00, 0x5b, 0x07, 0x10, 0x6f, 0xb3, 0x04,
|
||||
0x00, 0x4a, 0x08, 0x01, 0xe2, 0x05, 0x00, 0x3b, 0x01, 0x04,
|
||||
0x5a, 0x01, 0x10, 0x6d, 0xba, 0x00, 0x00, 0xa8, 0x03, 0x50,
|
||||
0x75, 0x70, 0x20, 0x74, 0x6f, 0x1a, 0x00, 0x14, 0x3a, 0x45,
|
||||
0x07, 0x06, 0x23, 0x00, 0x00, 0x6c, 0x0a, 0x30, 0x65, 0x6d,
|
||||
0x69, 0x00, 0x04, 0x10, 0x73, 0x42, 0x01, 0x01, 0x6e, 0x05,
|
||||
0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x33, 0x04, 0x04, 0x31,
|
||||
0x01, 0x41, 0x6e, 0x65, 0x65, 0x64, 0xd6, 0x08, 0x10, 0x62,
|
||||
0xcf, 0x08, 0x10, 0x2d, 0x25, 0x05, 0x41, 0x69, 0x6e, 0x65,
|
||||
0x64, 0xfa, 0x05, 0x01, 0x54, 0x00, 0x42, 0x6b, 0x6e, 0x6f,
|
||||
0x77, 0x90, 0x03, 0x4a, 0x61, 0x62, 0x6f, 0x75, 0x45, 0x00,
|
||||
0x05, 0xa1, 0x01, 0x2f, 0x6f, 0x72, 0x80, 0x00, 0x02, 0x55,
|
||||
0x6c, 0x69, 0x73, 0x74, 0x73, 0xa5, 0x03, 0x5a, 0x6f, 0x73,
|
||||
0x73, 0x69, 0x62, 0x69, 0x01, 0x11, 0x61, 0x47, 0x07, 0x04,
|
||||
0x2e, 0x07, 0x00, 0x48, 0x00, 0x00, 0xf8, 0x02, 0x20, 0x74,
|
||||
0x68, 0x61, 0x01, 0x32, 0x65, 0x6c, 0x73, 0x82, 0x00, 0xa1,
|
||||
0x66, 0x65, 0x65, 0x6c, 0x20, 0x6c, 0x69, 0x6b, 0x65, 0x2e,
|
||||
0x3e, 0x03, 0x41, 0x65, 0x72, 0x61, 0x73, 0x9d, 0x0b, 0x49,
|
||||
0x69, 0x6e, 0x67, 0x6c, 0xd1, 0x01, 0x21, 0x2c, 0x20, 0x5a,
|
||||
0x02, 0x02, 0x59, 0x02, 0x0c, 0x19, 0x02, 0x21, 0x6e, 0x64,
|
||||
0x56, 0x02, 0x04, 0xdc, 0x01, 0x04, 0x87, 0x00, 0x02, 0xb7,
|
||||
0x02, 0x00, 0x10, 0x08, 0x29, 0x6c, 0x6c, 0x81, 0x01, 0x0a,
|
||||
0x99, 0x02, 0x22, 0x72, 0x65, 0x78, 0x00, 0x61, 0x64, 0x20,
|
||||
0x77, 0x68, 0x65, 0x6e, 0x97, 0x00, 0x33, 0x6c, 0x65, 0x66,
|
||||
0x6b, 0x00, 0x06, 0x5d, 0x00, 0x17, 0x61, 0x12, 0x01, 0x0f,
|
||||
0x2a, 0x00, 0x01, 0x07, 0x41, 0x03, 0x10, 0x73, 0x41, 0x03,
|
||||
0x36, 0x2e, 0x20, 0x52, 0xb2, 0x00, 0x35, 0x69, 0x6e, 0x67,
|
||||
0x20, 0x00, 0x00, 0xdd, 0x00, 0x02, 0x23, 0x00, 0x01, 0xf1,
|
||||
0x02, 0x00, 0x55, 0x02, 0x03, 0xfa, 0x00, 0x0c, 0x53, 0x02,
|
||||
0x0a, 0x4c, 0x09, 0x05, 0x7c, 0x03, 0x60, 0x63, 0x75, 0x72,
|
||||
0x73, 0x6f, 0x72, 0x0e, 0x04, 0x01, 0xde, 0x01, 0x31, 0x6d,
|
||||
0x6f, 0x76, 0x18, 0x00, 0x01, 0x37, 0x00, 0x30, 0x20, 0x61,
|
||||
0x72, 0x23, 0x05, 0x05, 0x92, 0x08, 0x33, 0x2e, 0x20, 0x50,
|
||||
0x73, 0x00, 0x03, 0xd6, 0x0a, 0x40, 0x74, 0x75, 0x72, 0x6e,
|
||||
0x3b, 0x00, 0x86, 0x20, 0x74, 0x6f, 0x67, 0x67, 0x6c, 0x65,
|
||||
0x73, 0x3a, 0x00, 0x10, 0x28, 0x8e, 0x0c, 0x00, 0xe7, 0x00,
|
||||
0x52, 0x6f, 0x72, 0x6d, 0x61, 0x6c, 0x14, 0x00, 0x00, 0x06,
|
||||
0x0d, 0x08, 0x96, 0x00, 0x24, 0x29, 0x2c, 0x11, 0x01, 0x35,
|
||||
0x69, 0x6e, 0x67, 0x13, 0x01, 0x00, 0x50, 0x01, 0x2f, 0x69,
|
||||
0x73, 0xb7, 0x03, 0x02, 0x04, 0x70, 0x04, 0x00, 0x80, 0x08,
|
||||
0x80, 0x72, 0x6f, 0x70, 0x72, 0x69, 0x61, 0x74, 0x65, 0xcd,
|
||||
0x0c, 0x13, 0x3b, 0x44, 0x00, 0x02, 0x8b, 0x01, 0x20, 0x30,
|
||||
0x20, 0x5b, 0x04, 0x04, 0xa6, 0x00, 0x03, 0x1d, 0x01, 0x22,
|
||||
0x62, 0x61, 0x12, 0x04, 0x03, 0x87, 0x04, 0x13, 0x61, 0x97,
|
||||
0x03, 0x05, 0xb9, 0x03, 0x32, 0x0a, 0x28, 0x41, 0x0e, 0x09,
|
||||
0x00, 0x20, 0x0b, 0x00, 0x83, 0x08, 0x82, 0x20, 0x64, 0x65,
|
||||
0x73, 0x63, 0x72, 0x69, 0x62, 0x83, 0x00, 0x31, 0x73, 0x65,
|
||||
0x63, 0x7d, 0x03, 0x30, 0x32, 0x2e, 0x31, 0xe4, 0x01, 0x01,
|
||||
0x67, 0x01, 0x06, 0x12, 0x0a, 0x23, 0x2e, 0x29, 0xc5, 0x05,
|
||||
0x11, 0x32, 0xae, 0x05, 0x00, 0xf9, 0x02, 0x31, 0x61, 0x6d,
|
||||
0x65, 0x62, 0x08, 0x10, 0x0a, 0x11, 0x00, 0x00, 0x6a, 0x09,
|
||||
0x22, 0x6f, 0x77, 0x85, 0x09, 0x11, 0x74, 0xf4, 0x03, 0x40,
|
||||
0x66, 0x69, 0x67, 0x75, 0xb5, 0x08, 0x10, 0x77, 0x57, 0x0b,
|
||||
0x00, 0x2f, 0x00, 0x10, 0x74, 0x54, 0x08, 0x40, 0x6d, 0x65,
|
||||
0x6e, 0x73, 0x7c, 0x00, 0x09, 0xaf, 0x06, 0x02, 0x7b, 0x01,
|
||||
0x04, 0xb6, 0x05, 0xc6, 0x60, 0x54, 0x79, 0x70, 0x65, 0x27,
|
||||
0x20, 0x6d, 0x65, 0x6e, 0x75, 0x3a, 0x4f, 0x0c, 0x00, 0x71,
|
||||
0x07, 0x03, 0x8c, 0x0d, 0x02, 0x0d, 0x0a, 0x0a, 0x1b, 0x00,
|
||||
0x01, 0x4c, 0x0e, 0x11, 0x2c, 0x45, 0x0a, 0x06, 0x23, 0x0b,
|
||||
0x01, 0x16, 0x0d, 0x0c, 0x69, 0x0a, 0x47, 0x2e, 0x20, 0x28,
|
||||
0x54, 0x3d, 0x0e, 0x13, 0x61, 0xa6, 0x0d, 0x25, 0x69, 0x73,
|
||||
0xdf, 0x07, 0x23, 0x72, 0x73, 0x01, 0x0d, 0x5f, 0x69, 0x73,
|
||||
0x3a, 0x20, 0x66, 0x2f, 0x09, 0x07, 0x13, 0x32, 0x90, 0x00,
|
||||
0x02, 0xb7, 0x07, 0x12, 0x33, 0x83, 0x00, 0x01, 0xa0, 0x0a,
|
||||
0x03, 0x82, 0x0c, 0x02, 0x5b, 0x00, 0x01, 0x95, 0x01, 0x02,
|
||||
0x72, 0x05, 0x19, 0x33, 0x32, 0x00, 0x12, 0x32, 0x01, 0x0f,
|
||||
0x15, 0x29, 0x0e, 0x06, 0x14, 0x74, 0x7a, 0x06, 0xd1, 0x60,
|
||||
0x58, 0x27, 0x20, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x62, 0x6f,
|
||||
0x78, 0x2c, 0x71, 0x01, 0x03, 0xfb, 0x02, 0x41, 0x70, 0x70,
|
||||
0x6c, 0x79, 0x22, 0x00, 0x04, 0x25, 0x0e, 0x61, 0x20, 0x65,
|
||||
0x78, 0x74, 0x72, 0x61, 0xa5, 0x08, 0x84, 0x74, 0x72, 0x61,
|
||||
0x69, 0x6e, 0x74, 0x20, 0x74, 0x03, 0x0b, 0x0e, 0x17, 0x0e,
|
||||
0x08, 0x2d, 0x0f, 0x09, 0x9c, 0x05, 0x02, 0x22, 0x0e, 0x12,
|
||||
0x66, 0xb7, 0x0e, 0x04, 0x18, 0x0e, 0x11, 0x28, 0xbe, 0x09,
|
||||
0x21, 0x69, 0x73, 0x12, 0x0e, 0x51, 0x74, 0x69, 0x6d, 0x65,
|
||||
0x73, 0x01, 0x05, 0x44, 0x6e, 0x20, 0x61, 0x73, 0x3c, 0x09,
|
||||
0x67, 0x2d, 0x58, 0x27, 0x20, 0x69, 0x6e, 0x64, 0x09, 0x2a,
|
||||
0x2e, 0x29, 0x29, 0x0c, 0x07, 0xd9, 0x02, 0x00, 0x8c, 0x0e,
|
||||
0x0f, 0x98, 0x00, 0x03, 0x05, 0xb5, 0x0a, 0x00, 0xba, 0x0c,
|
||||
0x10, 0x64, 0xb2, 0x02, 0x10, 0x6c, 0x0a, 0x04, 0x00, 0x42,
|
||||
0x10, 0x11, 0x6f, 0xcf, 0x00, 0x05, 0x7d, 0x05, 0x02, 0xf4,
|
||||
0x09, 0x20, 0x65, 0x6e, 0x92, 0x02, 0x2f, 0x64, 0x2e, 0x38,
|
||||
0x01, 0x00, 0x11, 0x4a, 0x2f, 0x0d, 0x0f, 0x3d, 0x01, 0x03,
|
||||
0x41, 0x67, 0x65, 0x6e, 0x65, 0x86, 0x02, 0x72, 0x72, 0x61,
|
||||
0x6e, 0x64, 0x6f, 0x6d, 0x6c, 0x29, 0x0d, 0x09, 0xa2, 0x10,
|
||||
0x1e, 0x2e, 0xbe, 0x00, 0x08, 0x4d, 0x0e, 0x01, 0x35, 0x02,
|
||||
0x05, 0xad, 0x00, 0x00, 0x2f, 0x08, 0x12, 0x6e, 0x2f, 0x06,
|
||||
0x02, 0xcb, 0x02, 0x5b, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x05,
|
||||
0x0f, 0x0d, 0xe6, 0x03, 0x22, 0x60, 0x43, 0x02, 0x02, 0x03,
|
||||
0x26, 0x0b, 0x30, 0x52, 0x6f, 0x77, 0xef, 0x0c, 0x41, 0x6f,
|
||||
0x78, 0x65, 0x73, 0xde, 0x0e, 0x00, 0x01, 0x04, 0x01, 0x0e,
|
||||
0x07, 0x50, 0x72, 0x65, 0x61, 0x73, 0x6f, 0xef, 0x0d, 0x34,
|
||||
0x79, 0x20, 0x79, 0x86, 0x11, 0x22, 0x74, 0x6f, 0x4e, 0x00,
|
||||
0x06, 0x49, 0x04, 0x10, 0x67, 0x0e, 0x0a, 0x22, 0x65, 0x72,
|
||||
0x1b, 0x0c, 0x10, 0x31, 0x64, 0x00, 0x42, 0x62, 0x6f, 0x74,
|
||||
0x68, 0x50, 0x00, 0x22, 0x3b, 0x20, 0x0e, 0x01, 0x02, 0xcd,
|
||||
0x0d, 0x20, 0x68, 0x61, 0x57, 0x00, 0x07, 0x29, 0x02, 0x03,
|
||||
0x8f, 0x01, 0x05, 0xd9, 0x00, 0x05, 0xb1, 0x0a, 0x00, 0xbb,
|
||||
0x06, 0x02, 0xda, 0x0c, 0x20, 0x62, 0x65, 0xce, 0x04, 0x26,
|
||||
0x72, 0x69, 0x22, 0x06, 0x2a, 0x69, 0x66, 0x87, 0x06, 0x3f,
|
||||
0x20, 0x69, 0x74, 0x87, 0x01, 0x01, 0x11, 0x4b, 0xdc, 0x0b,
|
||||
0x0f, 0x87, 0x01, 0x0a, 0x01, 0xb7, 0x06, 0x10, 0x65, 0x2e,
|
||||
0x01, 0x00, 0x03, 0x00, 0x01, 0xf7, 0x0d, 0x04, 0x58, 0x12,
|
||||
0x2d, 0x61, 0x72, 0xa4, 0x01, 0x01, 0x9b, 0x00, 0x41, 0x64,
|
||||
0x72, 0x61, 0x77, 0x67, 0x0e, 0x00, 0x8e, 0x0d, 0x52, 0x75,
|
||||
0x74, 0x6c, 0x69, 0x6e, 0xc2, 0x03, 0x03, 0xe4, 0x0e, 0x33,
|
||||
0x65, 0x6e, 0x74, 0x35, 0x0e, 0x36, 0x2e, 0x20, 0x45, 0x28,
|
||||
0x11, 0x23, 0x73, 0x65, 0x73, 0x0d, 0x06, 0x16, 0x11, 0x00,
|
||||
0x7b, 0x00, 0x20, 0x6d, 0x61, 0xa3, 0x00, 0x00, 0xc9, 0x0e,
|
||||
0x03, 0x6d, 0x0d, 0x00, 0x10, 0x0e, 0x26, 0x77, 0x73, 0xfb,
|
||||
0x0c, 0x07, 0x43, 0x0e, 0x09, 0xc6, 0x02, 0x12, 0x69, 0x22,
|
||||
0x02, 0x02, 0x55, 0x00, 0x00, 0x2e, 0x07, 0x07, 0x42, 0x10,
|
||||
0x09, 0xf9, 0x04, 0x21, 0x68, 0x65, 0x09, 0x07, 0x01, 0x28,
|
||||
0x10, 0x71, 0x79, 0x6d, 0x6d, 0x65, 0x74, 0x72, 0x79, 0x64,
|
||||
0x00, 0x04, 0x2a, 0x0f, 0x05, 0x0a, 0x01, 0x16, 0x64, 0x05,
|
||||
0x0d, 0x45, 0x4d, 0x6f, 0x72, 0x65, 0x2e, 0x00, 0x01, 0x9b,
|
||||
0x0a, 0x17, 0x73, 0x27, 0x05, 0x90, 0x73, 0x20, 0x6c, 0x6f,
|
||||
0x6f, 0x6b, 0x20, 0x70, 0x72, 0x3a, 0x11, 0x00, 0xd5, 0x0f,
|
||||
0x11, 0x75, 0xac, 0x0e, 0x01, 0x7a, 0x00, 0x00, 0x2d, 0x00,
|
||||
0x03, 0x6e, 0x08, 0x70, 0x65, 0x61, 0x73, 0x69, 0x65, 0x72,
|
||||
0x2c, 0x16, 0x08, 0x01, 0x9d, 0x11, 0x06, 0x52, 0x00, 0x07,
|
||||
0xff, 0x01, 0x00, 0xa4, 0x09, 0x01, 0xb7, 0x0c, 0x21, 0x63,
|
||||
0x65, 0xd3, 0x08, 0x02, 0xd3, 0x0f, 0x02, 0x49, 0x02, 0x92,
|
||||
0x6e, 0x65, 0x63, 0x65, 0x73, 0x73, 0x61, 0x72, 0x79, 0xde,
|
||||
0x02, 0x01, 0x86, 0x07, 0x70, 0x65, 0x6e, 0x74, 0x2e, 0x20,
|
||||
0x43, 0x6f, 0x08, 0x05, 0x63, 0x74, 0x65, 0x6c, 0x79, 0x20,
|
||||
0x61, 0x54, 0x00, 0x24, 0x69, 0x63, 0x9d, 0x00, 0x01, 0xa4,
|
||||
0x02, 0x02, 0x03, 0x10, 0x86, 0x72, 0x65, 0x65, 0x64, 0x6f,
|
||||
0x6d, 0x20, 0x74, 0x61, 0x04, 0x00, 0x04, 0x0d, 0x24, 0x65,
|
||||
0x77, 0x38, 0x10, 0x14, 0x73, 0x02, 0x09, 0x00, 0x97, 0x06,
|
||||
0x57, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0xfc, 0x10, 0x0a, 0x44,
|
||||
0x01, 0x01, 0xdd, 0x01, 0x00, 0x63, 0x09, 0x10, 0x74, 0xe3,
|
||||
0x0c, 0x0f, 0x38, 0x01, 0x05, 0x16, 0x44, 0x25, 0x00, 0x52,
|
||||
0x6c, 0x65, 0x76, 0x65, 0x6c, 0x9c, 0x10, 0x41, 0x6a, 0x75,
|
||||
0x64, 0x67, 0x0e, 0x0e, 0x02, 0x07, 0x08, 0x01, 0xbd, 0x00,
|
||||
0x26, 0x78, 0x69, 0x49, 0x00, 0x82, 0x74, 0x65, 0x63, 0x68,
|
||||
0x6e, 0x69, 0x71, 0x75, 0xa2, 0x0f, 0x41, 0x64, 0x65, 0x64,
|
||||
0x75, 0x03, 0x07, 0x04, 0x77, 0x0f, 0x01, 0x38, 0x0c, 0x57,
|
||||
0x73, 0x6f, 0x6c, 0x76, 0x65, 0x84, 0x01, 0x11, 0x3a, 0xe1,
|
||||
0x05, 0x02, 0x66, 0x00, 0x06, 0xa0, 0x0f, 0x12, 0x61, 0x65,
|
||||
0x03, 0x22, 0x6f, 0x66, 0xb8, 0x03, 0x00, 0x16, 0x0b, 0x03,
|
||||
0x56, 0x02, 0x11, 0x77, 0x78, 0x03, 0x16, 0x74, 0x54, 0x01,
|
||||
0x02, 0xfe, 0x01, 0x01, 0x55, 0x01, 0x10, 0x76, 0xa2, 0x0e,
|
||||
0x00, 0x7c, 0x05, 0x00, 0x78, 0x04, 0x07, 0x4c, 0x0a, 0x10,
|
||||
0x2c, 0x9c, 0x03, 0x1d, 0x64, 0xd3, 0x00, 0x83, 0x60, 0x54,
|
||||
0x72, 0x69, 0x76, 0x69, 0x61, 0x6c, 0x3b, 0x04, 0x70, 0x42,
|
||||
0x61, 0x73, 0x69, 0x63, 0x27, 0x20, 0xba, 0x11, 0x04, 0x95,
|
||||
0x04, 0x06, 0xa9, 0x15, 0x04, 0x4d, 0x01, 0x01, 0x05, 0x08,
|
||||
0x04, 0x48, 0x15, 0x04, 0x2a, 0x0a, 0x06, 0xf1, 0x09, 0x12,
|
||||
0x74, 0xdf, 0x02, 0x22, 0x69, 0x6d, 0x7e, 0x03, 0x10, 0x65,
|
||||
0xbe, 0x00, 0x00, 0x16, 0x00, 0x20, 0x60, 0x49, 0x68, 0x04,
|
||||
0x30, 0x6d, 0x65, 0x64, 0x80, 0x08, 0x13, 0x27, 0xee, 0x00,
|
||||
0x20, 0x61, 0x6e, 0x2e, 0x11, 0x40, 0x79, 0x6f, 0x6e, 0x64,
|
||||
0x5e, 0x00, 0x07, 0xd7, 0x06, 0x12, 0x74, 0x7e, 0x02, 0x02,
|
||||
0xc2, 0x00, 0x26, 0x61, 0x6c, 0x4a, 0x01, 0x11, 0x73, 0x29,
|
||||
0x0b, 0x02, 0x8f, 0x06, 0x56, 0x5f, 0x73, 0x65, 0x74, 0x5f,
|
||||
0x35, 0x13, 0x16, 0x73, 0xc5, 0x04, 0x13, 0x63, 0x88, 0x11,
|
||||
0x11, 0x20, 0x34, 0x0d, 0x01, 0xa2, 0x0f, 0x03, 0x1b, 0x04,
|
||||
0x01, 0x22, 0x00, 0x04, 0xb4, 0x0b, 0x05, 0x28, 0x00, 0x08,
|
||||
0x8f, 0x0a, 0x00, 0x42, 0x13, 0x51, 0x74, 0x20, 0x60, 0x55,
|
||||
0x6e, 0x78, 0x01, 0x00, 0x19, 0x06, 0x04, 0xaf, 0x00, 0x03,
|
||||
0x9e, 0x11, 0x11, 0x74, 0xc5, 0x06, 0x02, 0x84, 0x01, 0x20,
|
||||
0x65, 0x6e, 0x39, 0x10, 0x38, 0x2c, 0x20, 0x61, 0xc2, 0x00,
|
||||
0x10, 0x65, 0xd0, 0x0f, 0x01, 0xb1, 0x16, 0x09, 0xcd, 0x00,
|
||||
0x00, 0x90, 0x0b, 0x35, 0x75, 0x65, 0x73, 0x6c, 0x08, 0x00,
|
||||
0x0f, 0x05, 0x60, 0x61, 0x63, 0x6b, 0x74, 0x72, 0x61, 0x2d,
|
||||
0x08, 0x10, 0x66, 0x28, 0x05, 0x00, 0x1b, 0x0a, 0x10, 0x73,
|
||||
0x8a, 0x04, 0x03, 0x27, 0x03, 0x91, 0x77, 0x72, 0x6f, 0x6e,
|
||||
0x67, 0x2e, 0x20, 0x0a, 0x47, 0xa0, 0x02, 0x00, 0xed, 0x11,
|
||||
0x06, 0xc5, 0x01, 0x05, 0x25, 0x03, 0x00, 0x8e, 0x00, 0x56,
|
||||
0x74, 0x73, 0x65, 0x6c, 0x66, 0x1c, 0x00, 0x1a, 0x3a, 0x58,
|
||||
0x08, 0x00, 0x11, 0x02, 0x06, 0xdd, 0x0f, 0x4e, 0x67, 0x68,
|
||||
0x65, 0x72, 0x0c, 0x02, 0x03, 0x51, 0x05, 0x2a, 0x6d, 0x61,
|
||||
0xb5, 0x00, 0x01, 0x80, 0x17, 0x00, 0x49, 0x0d, 0x00, 0x2e,
|
||||
0x0f, 0x01, 0xc9, 0x01, 0x15, 0x67, 0x8c, 0x00, 0x06, 0x61,
|
||||
0x12, 0x30, 0x62, 0x65, 0x66, 0xf1, 0x03, 0x00, 0x50, 0x17,
|
||||
0x30, 0x69, 0x6e, 0x64, 0x81, 0x02, 0x00, 0x1f, 0x06, 0x23,
|
||||
0x72, 0x64, 0x20, 0x01, 0x22, 0x20, 0x66, 0xc3, 0x0c, 0x31,
|
||||
0x2e, 0x20, 0x42, 0xa6, 0x02, 0x23, 0x70, 0x61, 0x0b, 0x03,
|
||||
0xc1, 0x77, 0x61, 0x69, 0x74, 0x2c, 0x20, 0x65, 0x73, 0x70,
|
||||
0x65, 0x63, 0x69, 0x30, 0x01, 0x25, 0x69, 0x66, 0x9c, 0x06,
|
||||
0x0a, 0xfe, 0x04, 0x00, 0xb1, 0x05, 0x67, 0x20, 0x6c, 0x61,
|
||||
0x72, 0x67, 0x65, 0xd5, 0x12, 0x50, 0x65, 0x2e, 0x20, 0x0a,
|
||||
0x00,
|
||||
};
|
||||
const unsigned short help_text_len = 6245;
|
||||
const char quick_help_text[] = "Fill in the grid so that each row, column and square block contains one of every digit.";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue