Alice and Bob invent a new game based on texas hold'em.
Please read the following rules carefully as they are different from the usual rules. The background of this problem is exactly the same as problem D. There are

ranks, which are A, K, Q, J, T, 9, 8, 7, 6, 5, 4, 3, and 2 from high to low. There are

suits, which are S, H, C, and D. Every combination of a rank and a suit occurs exactly once, so there are

(

) cards.
A hand is a set of five cards. Each hand has a rank. There are

types of hands. Each type also has a rank. If two hands are of different types, the hand of the type with a higher rank always ranks higher. A hand can be represented as a sequence
)
, where

is the rank of the

-th card and the order of the five cards depends on the type of the hand. If two hands are of the same type, the hand represented as the lexicographically larger sequence ranks higher, i.e., find the smallest index

such that

of two hands are different, the hand with higher

ranks higher. If the types and the sequences

of two hands are equal, two hands have the same rank.
The

types are given in the following from low rank to high rank. If a hand matches the patterns of multiple types, it belongs to the one with the highest rank of them.
- Highcard: Any five cards. The sequence
satisfies that
. - Pair: Two cards with the same rank. The sequence
satisfies that
,
. - Two pairs: Two cards with the same rank and another two cards with the same rank. The sequence
satisfies that
. - Three of a kind: Three cards with the same rank. The sequence
satisfies that
,
. - Straight: Five cards with five consecutive ranks. The sequence
satisfies that
. Especially, A 2 3 4 5 is a straight, and A is regarded as a rank lower than 2 in the situation. Hence A 2 3 4 5 is the straight with the lowest ranks. - Flush: Five cards with the same suit. The sequence
satisfies that
. - Full house: Three cards with the same rank and another two cards with the same rank. The sequence
satisfies that
,
. - Four of a kind: Four cards with the same rank. The sequence
satisfies that
. - Straight flush: A straight with the same suit. The sequence
satisfies that
. Especially, A 2 3 4 5 with the same suit is a straight flush, and A is regarded as a rank lower than 2 in the situation. Hence A 2 3 4 5 with the same suit is the straight flush with the lowest ranks. - Royal flush: Straight flush with the ranks T, J, Q, K, and A. Four different royal flushes are of the same rank.
Two cards are dealt to each of Alice and Bob. Instead of the regular rule,

community cards are dealt. Two players take one card from the community cards in turn until each player has five cards, also a hand.
Alice takes first. The player who has a hand with higher ranks wins. If two hands are with the same rank, there is a draw.
Note that all ten cards are shown to both, and they always choose the optimal strategy. The above are the same as problem D. The task is the following. Given the cards of Alice and the cards Bob, find possible

community cards such that Alice wins, that Bob wins, and that there is a draw separately.