has_six_of_kind
	111111 = 8000
	666666 = 4800
	555555 = 4000
	444444 = 3200
	333333 = 2400
	222222 = 1600
has_five_of_kind
	11111 = 4000
	66666 = 2400
	55555 = 2000
	44444 = 1600
	33333 = 1200
	22222 = 800
has_four_of_kind
	1111 = 2000
	6666 = 1200
	5555 = 1000
	4444 = 800
	3333 = 600
	2222 = 400
has_three_of_kind
	111 = 1000
	666 = 600
	555 = 500
	444 = 400
	333 = 300
	222 = 200
has_straight
	123456 = 1500
has_three_pairs
	112233 = 1000
	etc. = 1000
has_two_one
	11 = 200
has_two_five
	55 = 100
has_single_one
	1 = 100
has_single_five
	5 = 50

struct Comb comb{
	char has_six_of_kind;
	char has_five_of_kind;
	char has_four_of_kind;
	char has_straight;
	char has_three_pairs;
	char has_three_of_kind;
	char has_two_one;
	char has_two_five;
	char has_single_one;
	char has_single_five;
};

const uint16_t s_six_of_kind[6] = {
	8000, 1600, 2400, 3200, 4000, 4800
};

const uint16_t s_six_of_kind[6][7] = {
	{1, 1, 1, 1, 1, 1, 8000},
	{6, 6, 6, 6, 6, 6, 4800},
	{5, 5, 5, 5, 5, 5, 4000},
	{4, 4, 4, 4, 4, 4, 3200},
	{3, 3, 3, 3, 3, 3, 2400},
	{2, 2, 2, 2, 2, 2, 1600}
};



    111111 = 8000
    666666 = 4800
    555555 = 4000
    444444 = 3200
    333333 = 2400
    222222 = 1600
