In this notebook we give a simplified version of how next word prediction can be performed. This is the core of how larger and more complex models perform, such as GPT, when trained on highly diverse and rich text datasets.
### Here are the imports that you will require
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns
import urllib.request
def load_data():
# the data is a standard pcap packet capture file (saved as a csv output)
file_name = './data/movie_lines.txt'
# this will then put the csv data into a pandas dataframe
#data = pd.read_csv(file_name, sep='+++$+++')
lines = []
with open(file_name, 'r', encoding='utf-8', errors="replace") as f:
for line in f:
line = line.split(" +++$+++ ")
line[4] = line[4].split('\n')[0]
lines.append(line)
data = pd.DataFrame.from_records(lines, columns=['ID1', 'ID2', 'ID3', 'ID4', 'Text'])
return data
data = load_data()
data
ID1 | ID2 | ID3 | ID4 | Text | |
---|---|---|---|---|---|
0 | L1045 | u0 | m0 | BIANCA | They do not! |
1 | L1044 | u2 | m0 | CAMERON | They do to! |
2 | L985 | u0 | m0 | BIANCA | I hope so. |
3 | L984 | u2 | m0 | CAMERON | She okay? |
4 | L925 | u0 | m0 | BIANCA | Let's go. |
... | ... | ... | ... | ... | ... |
304708 | L666371 | u9030 | m616 | DURNFORD | Lord Chelmsford seems to want me to stay back ... |
304709 | L666370 | u9034 | m616 | VEREKER | I'm to take the Sikali with the main column to... |
304710 | L666369 | u9030 | m616 | DURNFORD | Your orders, Mr Vereker? |
304711 | L666257 | u9030 | m616 | DURNFORD | Good ones, yes, Mr Vereker. Gentlemen who can ... |
304712 | L666256 | u9034 | m616 | VEREKER | Colonel Durnford... William Vereker. I hear yo... |
304713 rows × 5 columns
large_data_string = ' '.join(data['Text'].values)
large_data_string = large_data_string.replace(".", " ")
large_data_string = large_data_string.replace(",", " ")
large_data_string = large_data_string.replace("-", " ")
large_data_string = large_data_string.replace("--", " ")
large_data_string = large_data_string.replace("!", " ")
large_data_string = large_data_string.replace("?", " ")
#large_data_string # this will output the full string
print (len(large_data_string)) # this is the number of characters in the string
17147986
large_data = large_data_string.split(" ") # we split by the space to create an array of words
ld = []
for i in large_data:
if len(i) > 1:
ld.append(i)
#ld
Below we are now processing the text to have a sequence of words, which we will use to train our ML model.
val1 = 0
val2 = 5
ld_matrix = []
for i in range(len(ld)):
ld_matrix.append(ld[val1:val2])
val1 = val1+1
val2 = val2+1
ld_matrix
[['They', 'do', 'not', 'They', 'do'], ['do', 'not', 'They', 'do', 'to'], ['not', 'They', 'do', 'to', 'hope'], ['They', 'do', 'to', 'hope', 'so'], ['do', 'to', 'hope', 'so', 'She'], ['to', 'hope', 'so', 'She', 'okay'], ['hope', 'so', 'She', 'okay', "Let's"], ['so', 'She', 'okay', "Let's", 'go'], ['She', 'okay', "Let's", 'go', 'Wow'], ['okay', "Let's", 'go', 'Wow', 'Okay'], ["Let's", 'go', 'Wow', 'Okay', "you're"], ['go', 'Wow', 'Okay', "you're", 'gonna'], ['Wow', 'Okay', "you're", 'gonna', 'need'], ['Okay', "you're", 'gonna', 'need', 'to'], ["you're", 'gonna', 'need', 'to', 'learn'], ['gonna', 'need', 'to', 'learn', 'how'], ['need', 'to', 'learn', 'how', 'to'], ['to', 'learn', 'how', 'to', 'lie'], ['learn', 'how', 'to', 'lie', 'No'], ['how', 'to', 'lie', 'No', "I'm"], ['to', 'lie', 'No', "I'm", 'kidding'], ['lie', 'No', "I'm", 'kidding', 'You'], ['No', "I'm", 'kidding', 'You', 'know'], ["I'm", 'kidding', 'You', 'know', 'how'], ['kidding', 'You', 'know', 'how', 'sometimes'], ['You', 'know', 'how', 'sometimes', 'you'], ['know', 'how', 'sometimes', 'you', 'just'], ['how', 'sometimes', 'you', 'just', 'become'], ['sometimes', 'you', 'just', 'become', 'this'], ['you', 'just', 'become', 'this', '"persona"'], ['just', 'become', 'this', '"persona"', 'And'], ['become', 'this', '"persona"', 'And', 'you'], ['this', '"persona"', 'And', 'you', "don't"], ['"persona"', 'And', 'you', "don't", 'know'], ['And', 'you', "don't", 'know', 'how'], ['you', "don't", 'know', 'how', 'to'], ["don't", 'know', 'how', 'to', 'quit'], ['know', 'how', 'to', 'quit', 'Like'], ['how', 'to', 'quit', 'Like', 'my'], ['to', 'quit', 'Like', 'my', 'fear'], ['quit', 'Like', 'my', 'fear', 'of'], ['Like', 'my', 'fear', 'of', 'wearing'], ['my', 'fear', 'of', 'wearing', 'pastels'], ['fear', 'of', 'wearing', 'pastels', 'The'], ['of', 'wearing', 'pastels', 'The', '"real'], ['wearing', 'pastels', 'The', '"real', 'you"'], ['pastels', 'The', '"real', 'you"', 'What'], ['The', '"real', 'you"', 'What', 'good'], ['"real', 'you"', 'What', 'good', 'stuff'], ['you"', 'What', 'good', 'stuff', 'figured'], ['What', 'good', 'stuff', 'figured', "you'd"], ['good', 'stuff', 'figured', "you'd", 'get'], ['stuff', 'figured', "you'd", 'get', 'to'], ['figured', "you'd", 'get', 'to', 'the'], ["you'd", 'get', 'to', 'the', 'good'], ['get', 'to', 'the', 'good', 'stuff'], ['to', 'the', 'good', 'stuff', 'eventually'], ['the', 'good', 'stuff', 'eventually', 'Thank'], ['good', 'stuff', 'eventually', 'Thank', 'God'], ['stuff', 'eventually', 'Thank', 'God', 'If'], ['eventually', 'Thank', 'God', 'If', 'had'], ['Thank', 'God', 'If', 'had', 'to'], ['God', 'If', 'had', 'to', 'hear'], ['If', 'had', 'to', 'hear', 'one'], ['had', 'to', 'hear', 'one', 'more'], ['to', 'hear', 'one', 'more', 'story'], ['hear', 'one', 'more', 'story', 'about'], ['one', 'more', 'story', 'about', 'your'], ['more', 'story', 'about', 'your', 'coiffure'], ['story', 'about', 'your', 'coiffure', 'Me'], ['about', 'your', 'coiffure', 'Me', 'This'], ['your', 'coiffure', 'Me', 'This', 'endless'], ['coiffure', 'Me', 'This', 'endless', 'blonde'], ['Me', 'This', 'endless', 'blonde', 'babble'], ['This', 'endless', 'blonde', 'babble', "I'm"], ['endless', 'blonde', 'babble', "I'm", 'like'], ['blonde', 'babble', "I'm", 'like', 'boring'], ['babble', "I'm", 'like', 'boring', 'myself'], ["I'm", 'like', 'boring', 'myself', 'What'], ['like', 'boring', 'myself', 'What', 'crap'], ['boring', 'myself', 'What', 'crap', 'do'], ['myself', 'What', 'crap', 'do', 'you'], ['What', 'crap', 'do', 'you', 'listen'], ['crap', 'do', 'you', 'listen', 'to'], ['do', 'you', 'listen', 'to', 'this'], ['you', 'listen', 'to', 'this', 'crap'], ['listen', 'to', 'this', 'crap', 'No'], ['to', 'this', 'crap', 'No', 'Then'], ['this', 'crap', 'No', 'Then', 'Guillermo'], ['crap', 'No', 'Then', 'Guillermo', 'says'], ['No', 'Then', 'Guillermo', 'says', '"If'], ['Then', 'Guillermo', 'says', '"If', 'you'], ['Guillermo', 'says', '"If', 'you', 'go'], ['says', '"If', 'you', 'go', 'any'], ['"If', 'you', 'go', 'any', 'lighter'], ['you', 'go', 'any', 'lighter', "you're"], ['go', 'any', 'lighter', "you're", 'gonna'], ['any', 'lighter', "you're", 'gonna', 'look'], ['lighter', "you're", 'gonna', 'look', 'like'], ["you're", 'gonna', 'look', 'like', 'an'], ['gonna', 'look', 'like', 'an', 'extra'], ['look', 'like', 'an', 'extra', 'on'], ['like', 'an', 'extra', 'on', '90210'], ['an', 'extra', 'on', '90210', 'You'], ['extra', 'on', '90210', 'You', 'always'], ['on', '90210', 'You', 'always', 'been'], ['90210', 'You', 'always', 'been', 'this'], ['You', 'always', 'been', 'this', 'selfish'], ['always', 'been', 'this', 'selfish', 'But'], ['been', 'this', 'selfish', 'But', 'Then'], ['this', 'selfish', 'But', 'Then', "that's"], ['selfish', 'But', 'Then', "that's", 'all'], ['But', 'Then', "that's", 'all', 'you'], ['Then', "that's", 'all', 'you', 'had'], ["that's", 'all', 'you', 'had', 'to'], ['all', 'you', 'had', 'to', 'say'], ['you', 'had', 'to', 'say', 'Well'], ['had', 'to', 'say', 'Well', 'no'], ['to', 'say', 'Well', 'no', 'You'], ['say', 'Well', 'no', 'You', 'never'], ['Well', 'no', 'You', 'never', 'wanted'], ['no', 'You', 'never', 'wanted', 'to'], ['You', 'never', 'wanted', 'to', 'go'], ['never', 'wanted', 'to', 'go', 'out'], ['wanted', 'to', 'go', 'out', 'with'], ['to', 'go', 'out', 'with', "'me"], ['go', 'out', 'with', "'me", 'did'], ['out', 'with', "'me", 'did', 'you'], ['with', "'me", 'did', 'you', 'was'], ["'me", 'did', 'you', 'was', 'looked'], ['did', 'you', 'was', 'looked', 'for'], ['you', 'was', 'looked', 'for', 'you'], ['was', 'looked', 'for', 'you', 'back'], ['looked', 'for', 'you', 'back', 'at'], ['for', 'you', 'back', 'at', 'the'], ['you', 'back', 'at', 'the', 'party'], ['back', 'at', 'the', 'party', 'but'], ['at', 'the', 'party', 'but', 'you'], ['the', 'party', 'but', 'you', 'always'], ['party', 'but', 'you', 'always', 'seemed'], ['but', 'you', 'always', 'seemed', 'to'], ['you', 'always', 'seemed', 'to', 'be'], ['always', 'seemed', 'to', 'be', '"occupied"'], ['seemed', 'to', 'be', '"occupied"', 'Tons'], ['to', 'be', '"occupied"', 'Tons', 'Have'], ['be', '"occupied"', 'Tons', 'Have', 'fun'], ['"occupied"', 'Tons', 'Have', 'fun', 'tonight'], ['Tons', 'Have', 'fun', 'tonight', 'believe'], ['Have', 'fun', 'tonight', 'believe', 'we'], ['fun', 'tonight', 'believe', 'we', 'share'], ['tonight', 'believe', 'we', 'share', 'an'], ['believe', 'we', 'share', 'an', 'art'], ['we', 'share', 'an', 'art', 'instructor'], ['share', 'an', 'art', 'instructor', 'You'], ['an', 'art', 'instructor', 'You', 'know'], ['art', 'instructor', 'You', 'know', 'Chastity'], ['instructor', 'You', 'know', 'Chastity', 'Looks'], ['You', 'know', 'Chastity', 'Looks', 'like'], ['know', 'Chastity', 'Looks', 'like', 'things'], ['Chastity', 'Looks', 'like', 'things', 'worked'], ['Looks', 'like', 'things', 'worked', 'out'], ['like', 'things', 'worked', 'out', 'tonight'], ['things', 'worked', 'out', 'tonight', 'huh'], ['worked', 'out', 'tonight', 'huh', 'Hi'], ['out', 'tonight', 'huh', 'Hi', 'Who'], ['tonight', 'huh', 'Hi', 'Who', 'knows'], ['huh', 'Hi', 'Who', 'knows', 'All'], ['Hi', 'Who', 'knows', 'All', "I've"], ['Who', 'knows', 'All', "I've", 'ever'], ['knows', 'All', "I've", 'ever', 'heard'], ['All', "I've", 'ever', 'heard', 'her'], ["I've", 'ever', 'heard', 'her', 'say'], ['ever', 'heard', 'her', 'say', 'is'], ['heard', 'her', 'say', 'is', 'that'], ['her', 'say', 'is', 'that', "she'd"], ['say', 'is', 'that', "she'd", 'dip'], ['is', 'that', "she'd", 'dip', 'before'], ['that', "she'd", 'dip', 'before', 'dating'], ["she'd", 'dip', 'before', 'dating', 'guy'], ['dip', 'before', 'dating', 'guy', 'that'], ['before', 'dating', 'guy', 'that', 'smokes'], ['dating', 'guy', 'that', 'smokes', 'So'], ['guy', 'that', 'smokes', 'So', "that's"], ['that', 'smokes', 'So', "that's", 'the'], ['smokes', 'So', "that's", 'the', 'kind'], ['So', "that's", 'the', 'kind', 'of'], ["that's", 'the', 'kind', 'of', 'guy'], ['the', 'kind', 'of', 'guy', 'she'], ['kind', 'of', 'guy', 'she', 'likes'], ['of', 'guy', 'she', 'likes', 'Pretty'], ['guy', 'she', 'likes', 'Pretty', 'ones'], ['she', 'likes', 'Pretty', 'ones', 'Lesbian'], ['likes', 'Pretty', 'ones', 'Lesbian', 'No'], ['Pretty', 'ones', 'Lesbian', 'No', 'found'], ['ones', 'Lesbian', 'No', 'found', 'picture'], ['Lesbian', 'No', 'found', 'picture', 'of'], ['No', 'found', 'picture', 'of', 'Jared'], ['found', 'picture', 'of', 'Jared', 'Leto'], ['picture', 'of', 'Jared', 'Leto', 'in'], ['of', 'Jared', 'Leto', 'in', 'one'], ['Jared', 'Leto', 'in', 'one', 'of'], ['Leto', 'in', 'one', 'of', 'her'], ['in', 'one', 'of', 'her', 'drawers'], ['one', 'of', 'her', 'drawers', 'so'], ['of', 'her', 'drawers', 'so', "I'm"], ['her', 'drawers', 'so', "I'm", 'pretty'], ['drawers', 'so', "I'm", 'pretty', 'sure'], ['so', "I'm", 'pretty', 'sure', "she's"], ["I'm", 'pretty', 'sure', "she's", 'not'], ['pretty', 'sure', "she's", 'not', 'harboring'], ['sure', "she's", 'not', 'harboring', 'same'], ["she's", 'not', 'harboring', 'same', 'sex'], ['not', 'harboring', 'same', 'sex', 'tendencies'], ['harboring', 'same', 'sex', 'tendencies', "She's"], ['same', 'sex', 'tendencies', "She's", 'not'], ['sex', 'tendencies', "She's", 'not', "I'm"], ['tendencies', "She's", 'not', "I'm", "workin'"], ["She's", 'not', "I'm", "workin'", 'on'], ['not', "I'm", "workin'", 'on', 'it'], ["I'm", "workin'", 'on', 'it', 'But'], ["workin'", 'on', 'it', 'But', 'she'], ['on', 'it', 'But', 'she', "doesn't"], ['it', 'But', 'she', "doesn't", 'seem'], ['But', 'she', "doesn't", 'seem', 'to'], ['she', "doesn't", 'seem', 'to', 'be'], ["doesn't", 'seem', 'to', 'be', "goin'"], ['seem', 'to', 'be', "goin'", 'for'], ['to', 'be', "goin'", 'for', 'him'], ['be', "goin'", 'for', 'him', 'really'], ["goin'", 'for', 'him', 'really', 'really'], ['for', 'him', 'really', 'really', 'really'], ['him', 'really', 'really', 'really', 'wanna'], ['really', 'really', 'really', 'wanna', 'go'], ['really', 'really', 'wanna', 'go', 'but'], ['really', 'wanna', 'go', 'but', "can't"], ['wanna', 'go', 'but', "can't", 'Not'], ['go', 'but', "can't", 'Not', 'unless'], ['but', "can't", 'Not', 'unless', 'my'], ["can't", 'Not', 'unless', 'my', 'sister'], ['Not', 'unless', 'my', 'sister', 'goes'], ['unless', 'my', 'sister', 'goes', 'Sure'], ['my', 'sister', 'goes', 'Sure', 'have'], ['sister', 'goes', 'Sure', 'have', "Eber's"], ['goes', 'Sure', 'have', "Eber's", 'Deep'], ['Sure', 'have', "Eber's", 'Deep', 'Conditioner'], ['have', "Eber's", 'Deep', 'Conditioner', 'every'], ["Eber's", 'Deep', 'Conditioner', 'every', 'two'], ['Deep', 'Conditioner', 'every', 'two', 'days'], ['Conditioner', 'every', 'two', 'days', 'And'], ['every', 'two', 'days', 'And', 'never'], ['two', 'days', 'And', 'never', 'ever'], ['days', 'And', 'never', 'ever', 'use'], ['And', 'never', 'ever', 'use', 'blowdryer'], ['never', 'ever', 'use', 'blowdryer', 'without'], ['ever', 'use', 'blowdryer', 'without', 'the'], ['use', 'blowdryer', 'without', 'the', 'diffuser'], ['blowdryer', 'without', 'the', 'diffuser', 'attachment'], ['without', 'the', 'diffuser', 'attachment', 'How'], ['the', 'diffuser', 'attachment', 'How', 'do'], ['diffuser', 'attachment', 'How', 'do', 'you'], ['attachment', 'How', 'do', 'you', 'get'], ['How', 'do', 'you', 'get', 'your'], ['do', 'you', 'get', 'your', 'hair'], ['you', 'get', 'your', 'hair', 'to'], ['get', 'your', 'hair', 'to', 'look'], ['your', 'hair', 'to', 'look', 'like'], ['hair', 'to', 'look', 'like', 'that'], ['to', 'look', 'like', 'that', "You're"], ['look', 'like', 'that', "You're", 'sweet'], ['like', 'that', "You're", 'sweet', 'You'], ['that', "You're", 'sweet', 'You', 'have'], ["You're", 'sweet', 'You', 'have', 'my'], ['sweet', 'You', 'have', 'my', 'word'], ['You', 'have', 'my', 'word', 'As'], ['have', 'my', 'word', 'As', 'gentleman'], ['my', 'word', 'As', 'gentleman', 'counted'], ['word', 'As', 'gentleman', 'counted', 'on'], ['As', 'gentleman', 'counted', 'on', 'you'], ['gentleman', 'counted', 'on', 'you', 'to'], ['counted', 'on', 'you', 'to', 'help'], ['on', 'you', 'to', 'help', 'my'], ['you', 'to', 'help', 'my', 'cause'], ['to', 'help', 'my', 'cause', 'You'], ['help', 'my', 'cause', 'You', 'and'], ['my', 'cause', 'You', 'and', 'that'], ['cause', 'You', 'and', 'that', 'thug'], ['You', 'and', 'that', 'thug', 'are'], ['and', 'that', 'thug', 'are', 'obviously'], ['that', 'thug', 'are', 'obviously', 'failing'], ['thug', 'are', 'obviously', 'failing', "Aren't"], ['are', 'obviously', 'failing', "Aren't", 'we'], ['obviously', 'failing', "Aren't", 'we', 'ever'], ['failing', "Aren't", 'we', 'ever', 'going'], ["Aren't", 'we', 'ever', 'going', 'on'], ['we', 'ever', 'going', 'on', 'our'], ['ever', 'going', 'on', 'our', 'date'], ['going', 'on', 'our', 'date', 'You'], ['on', 'our', 'date', 'You', 'got'], ['our', 'date', 'You', 'got', 'something'], ['date', 'You', 'got', 'something', 'on'], ['You', 'got', 'something', 'on', 'your'], ['got', 'something', 'on', 'your', 'mind'], ['something', 'on', 'your', 'mind', 'Where'], ['on', 'your', 'mind', 'Where', 'There'], ['your', 'mind', 'Where', 'There', 'Well'], ['mind', 'Where', 'There', 'Well', "there's"], ['Where', 'There', 'Well', "there's", 'someone'], ['There', 'Well', "there's", 'someone', 'think'], ['Well', "there's", 'someone', 'think', 'might'], ["there's", 'someone', 'think', 'might', 'be'], ['someone', 'think', 'might', 'be', 'How'], ['think', 'might', 'be', 'How', 'is'], ['might', 'be', 'How', 'is', 'our'], ['be', 'How', 'is', 'our', 'little'], ['How', 'is', 'our', 'little', 'Find'], ['is', 'our', 'little', 'Find', 'the'], ['our', 'little', 'Find', 'the', 'Wench'], ['little', 'Find', 'the', 'Wench', 'Date'], ['Find', 'the', 'Wench', 'Date', 'plan'], ['the', 'Wench', 'Date', 'plan', 'progressing'], ['Wench', 'Date', 'plan', 'progressing', 'Forget'], ['Date', 'plan', 'progressing', 'Forget', 'French'], ['plan', 'progressing', 'Forget', 'French', "That's"], ['progressing', 'Forget', 'French', "That's", 'because'], ['Forget', 'French', "That's", 'because', "it's"], ['French', "That's", 'because', "it's", 'such'], ["That's", 'because', "it's", 'such', 'nice'], ['because', "it's", 'such', 'nice', 'one'], ["it's", 'such', 'nice', 'one', "don't"], ['such', 'nice', 'one', "don't", 'want'], ['nice', 'one', "don't", 'want', 'to'], ['one', "don't", 'want', 'to', 'know'], ["don't", 'want', 'to', 'know', 'how'], ['want', 'to', 'know', 'how', 'to'], ['to', 'know', 'how', 'to', 'say'], ['know', 'how', 'to', 'say', 'that'], ['how', 'to', 'say', 'that', 'though'], ['to', 'say', 'that', 'though', 'want'], ['say', 'that', 'though', 'want', 'to'], ['that', 'though', 'want', 'to', 'know'], ['though', 'want', 'to', 'know', 'useful'], ['want', 'to', 'know', 'useful', 'things'], ['to', 'know', 'useful', 'things', 'Like'], ['know', 'useful', 'things', 'Like', 'where'], ['useful', 'things', 'Like', 'where', 'the'], ['things', 'Like', 'where', 'the', 'good'], ['Like', 'where', 'the', 'good', 'stores'], ['where', 'the', 'good', 'stores', 'are'], ['the', 'good', 'stores', 'are', 'How'], ['good', 'stores', 'are', 'How', 'much'], ['stores', 'are', 'How', 'much', 'does'], ['are', 'How', 'much', 'does', 'champagne'], ['How', 'much', 'does', 'champagne', 'cost'], ['much', 'does', 'champagne', 'cost', 'Stuff'], ['does', 'champagne', 'cost', 'Stuff', 'like'], ['champagne', 'cost', 'Stuff', 'like', 'Chat'], ['cost', 'Stuff', 'like', 'Chat', 'have'], ['Stuff', 'like', 'Chat', 'have', 'never'], ['like', 'Chat', 'have', 'never', 'in'], ['Chat', 'have', 'never', 'in', 'my'], ['have', 'never', 'in', 'my', 'life'], ['never', 'in', 'my', 'life', 'had'], ['in', 'my', 'life', 'had', 'to'], ['my', 'life', 'had', 'to', 'point'], ['life', 'had', 'to', 'point', 'out'], ['had', 'to', 'point', 'out', 'my'], ['to', 'point', 'out', 'my', 'head'], ['point', 'out', 'my', 'head', 'to'], ['out', 'my', 'head', 'to', 'someone'], ['my', 'head', 'to', 'someone', 'Right'], ['head', 'to', 'someone', 'Right', 'See'], ['to', 'someone', 'Right', 'See', "You're"], ['someone', 'Right', 'See', "You're", 'ready'], ['Right', 'See', "You're", 'ready', 'for'], ['See', "You're", 'ready', 'for', 'the'], ["You're", 'ready', 'for', 'the', 'quiz'], ['ready', 'for', 'the', 'quiz', "C'esc"], ['for', 'the', 'quiz', "C'esc", 'ma'], ['the', 'quiz', "C'esc", 'ma', 'tete'], ['quiz', "C'esc", 'ma', 'tete', 'This'], ["C'esc", 'ma', 'tete', 'This', 'is'], ['ma', 'tete', 'This', 'is', 'my'], ['tete', 'This', 'is', 'my', 'head'], ['This', 'is', 'my', 'head', 'Let'], ['is', 'my', 'head', 'Let', 'me'], ['my', 'head', 'Let', 'me', 'see'], ['head', 'Let', 'me', 'see', 'what'], ['Let', 'me', 'see', 'what', 'can'], ['me', 'see', 'what', 'can', 'do'], ['see', 'what', 'can', 'do', 'Gosh'], ['what', 'can', 'do', 'Gosh', 'if'], ['can', 'do', 'Gosh', 'if', 'only'], ['do', 'Gosh', 'if', 'only', 'we'], ['Gosh', 'if', 'only', 'we', 'could'], ['if', 'only', 'we', 'could', 'find'], ['only', 'we', 'could', 'find', 'Kat'], ['we', 'could', 'find', 'Kat', 'boyfriend'], ['could', 'find', 'Kat', 'boyfriend', "That's"], ['find', 'Kat', 'boyfriend', "That's", 'shame'], ['Kat', 'boyfriend', "That's", 'shame', 'Unsolved'], ['boyfriend', "That's", 'shame', 'Unsolved', 'mystery'], ["That's", 'shame', 'Unsolved', 'mystery', 'She'], ['shame', 'Unsolved', 'mystery', 'She', 'used'], ['Unsolved', 'mystery', 'She', 'used', 'to'], ['mystery', 'She', 'used', 'to', 'be'], ['She', 'used', 'to', 'be', 'really'], ['used', 'to', 'be', 'really', 'popular'], ['to', 'be', 'really', 'popular', 'when'], ['be', 'really', 'popular', 'when', 'she'], ['really', 'popular', 'when', 'she', 'started'], ['popular', 'when', 'she', 'started', 'high'], ['when', 'she', 'started', 'high', 'school'], ['she', 'started', 'high', 'school', 'then'], ['started', 'high', 'school', 'then', 'it'], ['high', 'school', 'then', 'it', 'was'], ['school', 'then', 'it', 'was', 'just'], ['then', 'it', 'was', 'just', 'like'], ['it', 'was', 'just', 'like', 'she'], ['was', 'just', 'like', 'she', 'got'], ['just', 'like', 'she', 'got', 'sick'], ['like', 'she', 'got', 'sick', 'of'], ['she', 'got', 'sick', 'of', 'it'], ['got', 'sick', 'of', 'it', 'or'], ['sick', 'of', 'it', 'or', 'something'], ['of', 'it', 'or', 'something', 'Why'], ['it', 'or', 'something', 'Why', 'Seems'], ['or', 'something', 'Why', 'Seems', 'like'], ['something', 'Why', 'Seems', 'like', 'she'], ['Why', 'Seems', 'like', 'she', 'could'], ['Seems', 'like', 'she', 'could', 'get'], ['like', 'she', 'could', 'get', 'date'], ['she', 'could', 'get', 'date', 'easy'], ['could', 'get', 'date', 'easy', 'enough'], ['get', 'date', 'easy', 'enough', 'The'], ['date', 'easy', 'enough', 'The', 'thing'], ['easy', 'enough', 'The', 'thing', 'is'], ['enough', 'The', 'thing', 'is', 'Cameron'], ['The', 'thing', 'is', 'Cameron', "I'm"], ['thing', 'is', 'Cameron', "I'm", 'at'], ['is', 'Cameron', "I'm", 'at', 'the'], ['Cameron', "I'm", 'at', 'the', 'mercy'], ["I'm", 'at', 'the', 'mercy', 'of'], ['at', 'the', 'mercy', 'of', 'particularly'], ['the', 'mercy', 'of', 'particularly', 'hideous'], ['mercy', 'of', 'particularly', 'hideous', 'breed'], ['of', 'particularly', 'hideous', 'breed', 'of'], ['particularly', 'hideous', 'breed', 'of', 'loser'], ['hideous', 'breed', 'of', 'loser', 'My'], ['breed', 'of', 'loser', 'My', 'sister'], ['of', 'loser', 'My', 'sister', "can't"], ['loser', 'My', 'sister', "can't", 'date'], ['My', 'sister', "can't", 'date', 'until'], ['sister', "can't", 'date', 'until', 'she'], ["can't", 'date', 'until', 'she', 'does'], ['date', 'until', 'she', 'does', 'Cameron'], ['until', 'she', 'does', 'Cameron', 'No'], ['she', 'does', 'Cameron', 'No', 'no'], ['does', 'Cameron', 'No', 'no', "it's"], ['Cameron', 'No', 'no', "it's", 'my'], ['No', 'no', "it's", 'my', 'fault'], ['no', "it's", 'my', 'fault', 'we'], ["it's", 'my', 'fault', 'we', "didn't"], ['my', 'fault', 'we', "didn't", 'have'], ['fault', 'we', "didn't", 'have', 'proper'], ['we', "didn't", 'have', 'proper', 'introduction'], ["didn't", 'have', 'proper', 'introduction', 'Forget'], ['have', 'proper', 'introduction', 'Forget', 'it'], ['proper', 'introduction', 'Forget', 'it', "You're"], ['introduction', 'Forget', 'it', "You're", 'asking'], ['Forget', 'it', "You're", 'asking', 'me'], ['it', "You're", 'asking', 'me', 'out'], ["You're", 'asking', 'me', 'out', "That's"], ['asking', 'me', 'out', "That's", 'so'], ['me', 'out', "That's", 'so', 'cute'], ['out', "That's", 'so', 'cute', "What's"], ["That's", 'so', 'cute', "What's", 'your'], ['so', 'cute', "What's", 'your', 'name'], ['cute', "What's", 'your', 'name', 'again'], ["What's", 'your', 'name', 'again', 'Okay'], ['your', 'name', 'again', 'Okay', 'then'], ['name', 'again', 'Okay', 'then', 'how'], ['again', 'Okay', 'then', 'how', "'bout"], ['Okay', 'then', 'how', "'bout", 'we'], ['then', 'how', "'bout", 'we', 'try'], ['how', "'bout", 'we', 'try', 'out'], ["'bout", 'we', 'try', 'out', 'some'], ['we', 'try', 'out', 'some', 'French'], ['try', 'out', 'some', 'French', 'cuisine'], ['out', 'some', 'French', 'cuisine', 'Saturday'], ['some', 'French', 'cuisine', 'Saturday', 'Night'], ['French', 'cuisine', 'Saturday', 'Night', 'Not'], ['cuisine', 'Saturday', 'Night', 'Not', 'the'], ['Saturday', 'Night', 'Not', 'the', 'hacking'], ['Night', 'Not', 'the', 'hacking', 'and'], ['Not', 'the', 'hacking', 'and', 'gagging'], ['the', 'hacking', 'and', 'gagging', 'and'], ['hacking', 'and', 'gagging', 'and', 'spitting'], ['and', 'gagging', 'and', 'spitting', 'part'], ['gagging', 'and', 'spitting', 'part', 'Please'], ['and', 'spitting', 'part', 'Please', 'Well'], ['spitting', 'part', 'Please', 'Well', 'thought'], ['part', 'Please', 'Well', 'thought', "we'd"], ['Please', 'Well', 'thought', "we'd", 'start'], ['Well', 'thought', "we'd", 'start', 'with'], ['thought', "we'd", 'start', 'with', 'pronunciation'], ["we'd", 'start', 'with', 'pronunciation', 'if'], ['start', 'with', 'pronunciation', 'if', "that's"], ['with', 'pronunciation', 'if', "that's", 'okay'], ['pronunciation', 'if', "that's", 'okay', 'with'], ['if', "that's", 'okay', 'with', 'you'], ["that's", 'okay', 'with', 'you', 'Can'], ['okay', 'with', 'you', 'Can', 'we'], ['with', 'you', 'Can', 'we', 'make'], ['you', 'Can', 'we', 'make', 'this'], ['Can', 'we', 'make', 'this', 'quick'], ['we', 'make', 'this', 'quick', 'Roxanne'], ['make', 'this', 'quick', 'Roxanne', 'Korrine'], ['this', 'quick', 'Roxanne', 'Korrine', 'and'], ['quick', 'Roxanne', 'Korrine', 'and', 'Andrew'], ['Roxanne', 'Korrine', 'and', 'Andrew', 'Barrett'], ['Korrine', 'and', 'Andrew', 'Barrett', 'are'], ['and', 'Andrew', 'Barrett', 'are', 'having'], ['Andrew', 'Barrett', 'are', 'having', 'an'], ['Barrett', 'are', 'having', 'an', 'incredibly'], ['are', 'having', 'an', 'incredibly', 'horrendous'], ['having', 'an', 'incredibly', 'horrendous', 'public'], ['an', 'incredibly', 'horrendous', 'public', 'break'], ['incredibly', 'horrendous', 'public', 'break', 'up'], ['horrendous', 'public', 'break', 'up', 'on'], ['public', 'break', 'up', 'on', 'the'], ['break', 'up', 'on', 'the', 'quad'], ['up', 'on', 'the', 'quad', 'Again'], ['on', 'the', 'quad', 'Again', 'did'], ['the', 'quad', 'Again', 'did', 'You'], ['quad', 'Again', 'did', 'You', 'think'], ['Again', 'did', 'You', 'think', 'you'], ['did', 'You', 'think', 'you', 're'], ['You', 'think', 'you', 're', 'the'], ['think', 'you', 're', 'the', 'only'], ['you', 're', 'the', 'only', 'sophomore'], ['re', 'the', 'only', 'sophomore', 'at'], ['the', 'only', 'sophomore', 'at', 'the'], ['only', 'sophomore', 'at', 'the', 'prom'], ['sophomore', 'at', 'the', 'prom', "don't"], ['at', 'the', 'prom', "don't", 'have'], ['the', 'prom', "don't", 'have', 'to'], ['prom', "don't", 'have', 'to', 'be'], ["don't", 'have', 'to', 'be', 'home'], ['have', 'to', 'be', 'home', "'til"], ['to', 'be', 'home', "'til", 'two'], ['be', 'home', "'til", 'two', 'have'], ['home', "'til", 'two', 'have', 'to'], ["'til", 'two', 'have', 'to', 'be'], ['two', 'have', 'to', 'be', 'home'], ['have', 'to', 'be', 'home', 'in'], ['to', 'be', 'home', 'in', 'twenty'], ['be', 'home', 'in', 'twenty', 'minutes'], ['home', 'in', 'twenty', 'minutes', 'All'], ['in', 'twenty', 'minutes', 'All', 'know'], ['twenty', 'minutes', 'All', 'know', 'is'], ['minutes', 'All', 'know', 'is', "I'd"], ['All', 'know', 'is', "I'd", 'give'], ['know', 'is', "I'd", 'give', 'up'], ['is', "I'd", 'give', 'up', 'my'], ["I'd", 'give', 'up', 'my', 'private'], ['give', 'up', 'my', 'private', 'line'], ['up', 'my', 'private', 'line', 'to'], ['my', 'private', 'line', 'to', 'go'], ['private', 'line', 'to', 'go', 'out'], ['line', 'to', 'go', 'out', 'with'], ['to', 'go', 'out', 'with', 'guy'], ['go', 'out', 'with', 'guy', 'like'], ['out', 'with', 'guy', 'like', 'Joey'], ['with', 'guy', 'like', 'Joey', 'Sometimes'], ['guy', 'like', 'Joey', 'Sometimes', 'wonder'], ['like', 'Joey', 'Sometimes', 'wonder', 'if'], ['Joey', 'Sometimes', 'wonder', 'if', 'the'], ['Sometimes', 'wonder', 'if', 'the', 'guys'], ['wonder', 'if', 'the', 'guys', "we're"], ['if', 'the', 'guys', "we're", 'supposed'], ['the', 'guys', "we're", 'supposed', 'to'], ['guys', "we're", 'supposed', 'to', 'want'], ["we're", 'supposed', 'to', 'want', 'to'], ['supposed', 'to', 'want', 'to', 'go'], ['to', 'want', 'to', 'go', 'out'], ['want', 'to', 'go', 'out', 'with'], ['to', 'go', 'out', 'with', 'are'], ['go', 'out', 'with', 'are', 'the'], ['out', 'with', 'are', 'the', 'ones'], ['with', 'are', 'the', 'ones', 'we'], ['are', 'the', 'ones', 'we', 'actually'], ['the', 'ones', 'we', 'actually', 'want'], ['ones', 'we', 'actually', 'want', 'to'], ['we', 'actually', 'want', 'to', 'go'], ['actually', 'want', 'to', 'go', 'out'], ['want', 'to', 'go', 'out', 'with'], ['to', 'go', 'out', 'with', 'you'], ['go', 'out', 'with', 'you', 'know'], ['out', 'with', 'you', 'know', 'Bianca'], ['with', 'you', 'know', 'Bianca', "don't"], ['you', 'know', 'Bianca', "don't", 'think'], ['know', 'Bianca', "don't", 'think', 'the'], ['Bianca', "don't", 'think', 'the', 'highlights'], ["don't", 'think', 'the', 'highlights', 'of'], ['think', 'the', 'highlights', 'of', 'dating'], ['the', 'highlights', 'of', 'dating', 'Joey'], ['highlights', 'of', 'dating', 'Joey', 'Dorsey'], ['of', 'dating', 'Joey', 'Dorsey', 'are'], ['dating', 'Joey', 'Dorsey', 'are', 'going'], ['Joey', 'Dorsey', 'are', 'going', 'to'], ['Dorsey', 'are', 'going', 'to', 'include'], ['are', 'going', 'to', 'include', 'door'], ['going', 'to', 'include', 'door', 'opening'], ['to', 'include', 'door', 'opening', 'and'], ['include', 'door', 'opening', 'and', 'coat'], ['door', 'opening', 'and', 'coat', 'holding'], ['opening', 'and', 'coat', 'holding', 'Combination'], ['and', 'coat', 'holding', 'Combination', "don't"], ['coat', 'holding', 'Combination', "don't", 'know'], ['holding', 'Combination', "don't", 'know', 'thought'], ['Combination', "don't", 'know', 'thought', "he'd"], ["don't", 'know', 'thought', "he'd", 'be'], ['know', 'thought', "he'd", 'be', 'different'], ['thought', "he'd", 'be', 'different', 'More'], ["he'd", 'be', 'different', 'More', 'of'], ['be', 'different', 'More', 'of', 'gentleman'], ['different', 'More', 'of', 'gentleman', 'Is'], ['More', 'of', 'gentleman', 'Is', 'he'], ['of', 'gentleman', 'Is', 'he', 'oily'], ['gentleman', 'Is', 'he', 'oily', 'or'], ['Is', 'he', 'oily', 'or', 'dry'], ['he', 'oily', 'or', 'dry', 'He'], ['oily', 'or', 'dry', 'He', 'practically'], ['or', 'dry', 'He', 'practically', 'proposed'], ['dry', 'He', 'practically', 'proposed', 'when'], ['He', 'practically', 'proposed', 'when', 'he'], ['practically', 'proposed', 'when', 'he', 'found'], ['proposed', 'when', 'he', 'found', 'out'], ['when', 'he', 'found', 'out', 'we'], ['he', 'found', 'out', 'we', 'had'], ['found', 'out', 'we', 'had', 'the'], ['out', 'we', 'had', 'the', 'same'], ['we', 'had', 'the', 'same', 'dermatologist'], ['had', 'the', 'same', 'dermatologist', 'mean'], ['the', 'same', 'dermatologist', 'mean', 'Dr'], ['same', 'dermatologist', 'mean', 'Dr', 'Bonchowski'], ['dermatologist', 'mean', 'Dr', 'Bonchowski', 'is'], ['mean', 'Dr', 'Bonchowski', 'is', 'great'], ['Dr', 'Bonchowski', 'is', 'great', 'an'], ['Bonchowski', 'is', 'great', 'an', 'all'], ['is', 'great', 'an', 'all', 'but'], ['great', 'an', 'all', 'but', "he's"], ['an', 'all', 'but', "he's", 'not'], ['all', 'but', "he's", 'not', 'exactly'], ['but', "he's", 'not', 'exactly', 'relevant'], ["he's", 'not', 'exactly', 'relevant', 'party'], ['not', 'exactly', 'relevant', 'party', 'conversation'], ['exactly', 'relevant', 'party', 'conversation', 'Would'], ['relevant', 'party', 'conversation', 'Would', 'you'], ['party', 'conversation', 'Would', 'you', 'mind'], ['conversation', 'Would', 'you', 'mind', 'getting'], ['Would', 'you', 'mind', 'getting', 'me'], ['you', 'mind', 'getting', 'me', 'drink'], ['mind', 'getting', 'me', 'drink', 'Cameron'], ['getting', 'me', 'drink', 'Cameron', 'Great'], ['me', 'drink', 'Cameron', 'Great', 'Joey'], ['drink', 'Cameron', 'Great', 'Joey', 'Who'], ['Cameron', 'Great', 'Joey', 'Who', 'Where'], ['Great', 'Joey', 'Who', 'Where', 'did'], ['Joey', 'Who', 'Where', 'did', 'he'], ['Who', 'Where', 'did', 'he', 'go'], ['Where', 'did', 'he', 'go', 'He'], ['did', 'he', 'go', 'He', 'was'], ['he', 'go', 'He', 'was', 'just'], ['go', 'He', 'was', 'just', 'here'], ['He', 'was', 'just', 'here', 'You'], ['was', 'just', 'here', 'You', 'might'], ['just', 'here', 'You', 'might', 'wanna'], ['here', 'You', 'might', 'wanna', 'think'], ['You', 'might', 'wanna', 'think', 'about'], ['might', 'wanna', 'think', 'about', 'it'], ['wanna', 'think', 'about', 'it', 'No'], ['think', 'about', 'it', 'No', 'Did'], ['about', 'it', 'No', 'Did', 'you'], ['it', 'No', 'Did', 'you', 'change'], ['No', 'Did', 'you', 'change', 'your'], ['Did', 'you', 'change', 'your', 'hair'], ['you', 'change', 'your', 'hair', 'You'], ['change', 'your', 'hair', 'You', 'know'], ['your', 'hair', 'You', 'know', 'the'], ['hair', 'You', 'know', 'the', 'deal'], ['You', 'know', 'the', 'deal', 'can'], ['know', 'the', 'deal', 'can', 'go'], ['the', 'deal', 'can', 'go', 'if'], ['deal', 'can', 'go', 'if', 'Kat'], ['can', 'go', 'if', 'Kat', "doesn't"], ['go', 'if', 'Kat', "doesn't", 'go'], ['if', 'Kat', "doesn't", 'go', 'Listen'], ['Kat', "doesn't", 'go', 'Listen', 'want'], ["doesn't", 'go', 'Listen', 'want', 'to'], ['go', 'Listen', 'want', 'to', 'talk'], ['Listen', 'want', 'to', 'talk', 'to'], ['want', 'to', 'talk', 'to', 'you'], ['to', 'talk', 'to', 'you', 'about'], ['talk', 'to', 'you', 'about', 'the'], ['to', 'you', 'about', 'the', 'prom'], ['you', 'about', 'the', 'prom', "You're"], ['about', 'the', 'prom', "You're", 'concentrating'], ['the', 'prom', "You're", 'concentrating', 'awfully'], ['prom', "You're", 'concentrating', 'awfully', 'hard'], ["You're", 'concentrating', 'awfully', 'hard', 'considering'], ['concentrating', 'awfully', 'hard', 'considering', "it's"], ['awfully', 'hard', 'considering', "it's", 'gym'], ['hard', 'considering', "it's", 'gym', 'class'], ['considering', "it's", 'gym', 'class', 'Hi'], ["it's", 'gym', 'class', 'Hi', 'Joey'], ['gym', 'class', 'Hi', 'Joey', 'Hey'], ['class', 'Hi', 'Joey', 'Hey', 'sweet'], ['Hi', 'Joey', 'Hey', 'sweet', 'cheeks'], ['Joey', 'Hey', 'sweet', 'cheeks', 'My'], ['Hey', 'sweet', 'cheeks', 'My', 'agent'], ['sweet', 'cheeks', 'My', 'agent', 'says'], ['cheeks', 'My', 'agent', 'says', "I've"], ['My', 'agent', 'says', "I've", 'got'], ['agent', 'says', "I've", 'got', 'good'], ['says', "I've", 'got', 'good', 'shot'], ["I've", 'got', 'good', 'shot', 'at'], ['got', 'good', 'shot', 'at', 'being'], ['good', 'shot', 'at', 'being', 'the'], ['shot', 'at', 'being', 'the', 'Prada'], ['at', 'being', 'the', 'Prada', 'guy'], ['being', 'the', 'Prada', 'guy', 'next'], ['the', 'Prada', 'guy', 'next', 'year'], ['Prada', 'guy', 'next', 'year', 'Neat'], ['guy', 'next', 'year', 'Neat', "It's"], ['next', 'year', 'Neat', "It's", 'gay'], ['year', 'Neat', "It's", 'gay', 'cruise'], ['Neat', "It's", 'gay', 'cruise', 'line'], ["It's", 'gay', 'cruise', 'line', 'but'], ['gay', 'cruise', 'line', 'but', "I'll"], ['cruise', 'line', 'but', "I'll", 'be'], ['line', 'but', "I'll", 'be', 'like'], ['but', "I'll", 'be', 'like', 'wearing'], ["I'll", 'be', 'like', 'wearing', 'uniform'], ['be', 'like', 'wearing', 'uniform', 'and'], ['like', 'wearing', 'uniform', 'and', 'stuff'], ['wearing', 'uniform', 'and', 'stuff', 'Queen'], ['uniform', 'and', 'stuff', 'Queen', 'Harry'], ['and', 'stuff', 'Queen', 'Harry', 'So'], ['stuff', 'Queen', 'Harry', 'So', 'yeah'], ['Queen', 'Harry', 'So', 'yeah', "I've"], ['Harry', 'So', 'yeah', "I've", 'got'], ['So', 'yeah', "I've", 'got', 'the'], ['yeah', "I've", 'got', 'the', 'Sears'], ["I've", 'got', 'the', 'Sears', 'catalog'], ['got', 'the', 'Sears', 'catalog', 'thing'], ['the', 'Sears', 'catalog', 'thing', 'going'], ['Sears', 'catalog', 'thing', 'going', 'and'], ['catalog', 'thing', 'going', 'and', 'the'], ['thing', 'going', 'and', 'the', 'tube'], ['going', 'and', 'the', 'tube', 'sock'], ['and', 'the', 'tube', 'sock', 'gig'], ['the', 'tube', 'sock', 'gig', "that's"], ['tube', 'sock', 'gig', "that's", 'gonna'], ['sock', 'gig', "that's", 'gonna', 'be'], ['gig', "that's", 'gonna', 'be', 'huge'], ["that's", 'gonna', 'be', 'huge', 'And'], ['gonna', 'be', 'huge', 'And', 'then'], ['be', 'huge', 'And', 'then', "I'm"], ['huge', 'And', 'then', "I'm", 'up'], ['And', 'then', "I'm", 'up', 'for'], ['then', "I'm", 'up', 'for', 'an'], ["I'm", 'up', 'for', 'an', 'ad'], ['up', 'for', 'an', 'ad', 'for'], ['for', 'an', 'ad', 'for', 'Queen'], ['an', 'ad', 'for', 'Queen', 'Harry'], ['ad', 'for', 'Queen', 'Harry', 'next'], ['for', 'Queen', 'Harry', 'next', 'week'], ['Queen', 'Harry', 'next', 'week', 'Hopefully'], ['Harry', 'next', 'week', 'Hopefully', 'Exactly'], ['next', 'week', 'Hopefully', 'Exactly', 'So'], ['week', 'Hopefully', 'Exactly', 'So', 'you'], ['Hopefully', 'Exactly', 'So', 'you', 'going'], ['Exactly', 'So', 'you', 'going', 'to'], ['So', 'you', 'going', 'to', 'Bogey'], ['you', 'going', 'to', 'Bogey', "Lowenbrau's"], ['going', 'to', 'Bogey', "Lowenbrau's", 'thing'], ['to', 'Bogey', "Lowenbrau's", 'thing', 'on'], ['Bogey', "Lowenbrau's", 'thing', 'on', 'Saturday'], ["Lowenbrau's", 'thing', 'on', 'Saturday', 'Expensive'], ['thing', 'on', 'Saturday', 'Expensive', "It's"], ['on', 'Saturday', 'Expensive', "It's", 'more'], ['Saturday', 'Expensive', "It's", 'more', 'Perm'], ['Expensive', "It's", 'more', 'Perm', 'Patrick'], ["It's", 'more', 'Perm', 'Patrick', 'is'], ['more', 'Perm', 'Patrick', 'is', 'that'], ['Perm', 'Patrick', 'is', 'that', "It's"], ['Patrick', 'is', 'that', "It's", 'just'], ['is', 'that', "It's", 'just', 'you'], ['that', "It's", 'just', 'you', 'Is'], ["It's", 'just', 'you', 'Is', 'that'], ['just', 'you', 'Is', 'that', 'woman'], ['you', 'Is', 'that', 'woman', 'complete'], ['Is', 'that', 'woman', 'complete', 'fruit'], ['that', 'woman', 'complete', 'fruit', 'loop'], ['woman', 'complete', 'fruit', 'loop', 'or'], ['complete', 'fruit', 'loop', 'or', 'is'], ['fruit', 'loop', 'or', 'is', 'it'], ['loop', 'or', 'is', 'it', 'just'], ['or', 'is', 'it', 'just', 'me'], ['is', 'it', 'just', 'me', 'No'], ['it', 'just', 'me', 'No', 'just'], ['just', 'me', 'No', 'just', 'wanted'], ['me', 'No', 'just', 'wanted', 'What'], ['No', 'just', 'wanted', 'What', 'To'], ['just', 'wanted', 'What', 'To', 'completely'], ['wanted', 'What', 'To', 'completely', 'damage'], ['What', 'To', 'completely', 'damage', 'me'], ['To', 'completely', 'damage', 'me', 'To'], ['completely', 'damage', 'me', 'To', 'send'], ['damage', 'me', 'To', 'send', 'me'], ['me', 'To', 'send', 'me', 'to'], ['To', 'send', 'me', 'to', 'therapy'], ['send', 'me', 'to', 'therapy', 'forever'], ['me', 'to', 'therapy', 'forever', 'What'], ['to', 'therapy', 'forever', 'What', 'just'], ['therapy', 'forever', 'What', 'just', 'wanted'], ['forever', 'What', 'just', 'wanted', 'You'], ['What', 'just', 'wanted', 'You', 'set'], ['just', 'wanted', 'You', 'set', 'me'], ['wanted', 'You', 'set', 'me', 'up'], ['You', 'set', 'me', 'up', 'Let'], ['set', 'me', 'up', 'Let', 'go'], ['me', 'up', 'Let', 'go', 'So'], ['up', 'Let', 'go', 'So', 'did'], ['Let', 'go', 'So', 'did', 'you'], ['go', 'So', 'did', 'you', 'You'], ['So', 'did', 'you', 'You', 'looked'], ['did', 'you', 'You', 'looked', 'beautiful'], ['you', 'You', 'looked', 'beautiful', 'last'], ['You', 'looked', 'beautiful', 'last', 'night'], ['looked', 'beautiful', 'last', 'night', 'you'], ['beautiful', 'last', 'night', 'you', 'know'], ['last', 'night', 'you', 'know', 'guess'], ['night', 'you', 'know', 'guess', "I'll"], ['you', 'know', 'guess', "I'll", 'never'], ['know', 'guess', "I'll", 'never', 'know'], ['guess', "I'll", 'never', 'know', 'will'], ["I'll", 'never', 'know', 'will', 'Not'], ['never', 'know', 'will', 'Not', 'all'], ['know', 'will', 'Not', 'all', 'experiences'], ['will', 'Not', 'all', 'experiences', 'are'], ['Not', 'all', 'experiences', 'are', 'good'], ['all', 'experiences', 'are', 'good', 'Bianca'], ['experiences', 'are', 'good', 'Bianca', 'You'], ['are', 'good', 'Bianca', 'You', "can't"], ['good', 'Bianca', 'You', "can't", 'always'], ['Bianca', 'You', "can't", 'always', 'trust'], ['You', "can't", 'always', 'trust', 'the'], ["can't", 'always', 'trust', 'the', 'people'], ['always', 'trust', 'the', 'people', 'you'], ['trust', 'the', 'people', 'you', 'want'], ['the', 'people', 'you', 'want', 'to'], ['people', 'you', 'want', 'to', 'God'], ['you', 'want', 'to', 'God', "you're"], ['want', 'to', 'God', "you're", 'just'], ['to', 'God', "you're", 'just', 'like'], ['God', "you're", 'just', 'like', 'him'], ["you're", 'just', 'like', 'him', 'Just'], ['just', 'like', 'him', 'Just', 'keep'], ['like', 'him', 'Just', 'keep', 'me'], ['him', 'Just', 'keep', 'me', 'locked'], ['Just', 'keep', 'me', 'locked', 'away'], ['keep', 'me', 'locked', 'away', 'in'], ['me', 'locked', 'away', 'in', 'the'], ['locked', 'away', 'in', 'the', 'dark'], ['away', 'in', 'the', 'dark', 'so'], ['in', 'the', 'dark', 'so', "can't"], ['the', 'dark', 'so', "can't", 'experience'], ['dark', 'so', "can't", 'experience', 'anything'], ['so', "can't", 'experience', 'anything', 'for'], ["can't", 'experience', 'anything', 'for', 'myself'], ['experience', 'anything', 'for', 'myself', 'guess'], ['anything', 'for', 'myself', 'guess', 'thought'], ['for', 'myself', 'guess', 'thought', 'was'], ['myself', 'guess', 'thought', 'was', 'protecting'], ['guess', 'thought', 'was', 'protecting', 'you'], ['thought', 'was', 'protecting', 'you', "I'm"], ['was', 'protecting', 'you', "I'm", 'not'], ['protecting', 'you', "I'm", 'not', 'stupid'], ['you', "I'm", 'not', 'stupid', 'enough'], ["I'm", 'not', 'stupid', 'enough', 'to'], ['not', 'stupid', 'enough', 'to', 'repeat'], ['stupid', 'enough', 'to', 'repeat', 'your'], ['enough', 'to', 'repeat', 'your', 'mistakes'], ['to', 'repeat', 'your', 'mistakes', "That's"], ['repeat', 'your', 'mistakes', "That's", 'not'], ['your', 'mistakes', "That's", 'not', 'No'], ['mistakes', "That's", 'not', 'No', 'you'], ["That's", 'not', 'No', 'you', "didn't"], ['not', 'No', 'you', "didn't", 'If'], ['No', 'you', "didn't", 'If', 'you'], ['you', "didn't", 'If', 'you', 'really'], ["didn't", 'If', 'you', 'really', 'thought'], ['If', 'you', 'really', 'thought', 'could'], ['you', 'really', 'thought', 'could', 'make'], ['really', 'thought', 'could', 'make', 'my'], ['thought', 'could', 'make', 'my', 'own'], ['could', 'make', 'my', 'own', 'decisions'], ['make', 'my', 'own', 'decisions', 'you'], ['my', 'own', 'decisions', 'you', "would've"], ['own', 'decisions', 'you', "would've", 'let'], ['decisions', 'you', "would've", 'let', 'me'], ['you', "would've", 'let', 'me', 'go'], ["would've", 'let', 'me', 'go', 'out'], ['let', 'me', 'go', 'out', 'with'], ['me', 'go', 'out', 'with', 'him'], ['go', 'out', 'with', 'him', 'instead'], ['out', 'with', 'him', 'instead', 'of'], ['with', 'him', 'instead', 'of', 'helping'], ['him', 'instead', 'of', 'helping', 'Daddy'], ['instead', 'of', 'helping', 'Daddy', 'hold'], ['of', 'helping', 'Daddy', 'hold', 'me'], ['helping', 'Daddy', 'hold', 'me', 'hostage'], ['Daddy', 'hold', 'me', 'hostage', 'wanted'], ['hold', 'me', 'hostage', 'wanted', 'to'], ['me', 'hostage', 'wanted', 'to', 'let'], ['hostage', 'wanted', 'to', 'let', 'you'], ['wanted', 'to', 'let', 'you', 'make'], ['to', 'let', 'you', 'make', 'up'], ['let', 'you', 'make', 'up', 'your'], ['you', 'make', 'up', 'your', 'own'], ['make', 'up', 'your', 'own', 'mind'], ['up', 'your', 'own', 'mind', 'about'], ['your', 'own', 'mind', 'about', 'him'], ['own', 'mind', 'about', 'him', 'Why'], ['mind', 'about', 'him', 'Why', "didn't"], ['about', 'him', 'Why', "didn't", 'you'], ['him', 'Why', "didn't", 'you', 'tell'], ['Why', "didn't", 'you', 'tell', 'me'], ["didn't", 'you', 'tell', 'me', 'After'], ['you', 'tell', 'me', 'After', 'that'], ['tell', 'me', 'After', 'that', 'swore'], ['me', 'After', 'that', 'swore', "I'd"], ['After', 'that', 'swore', "I'd", 'never'], ['that', 'swore', "I'd", 'never', 'do'], ['swore', "I'd", 'never', 'do', 'anything'], ["I'd", 'never', 'do', 'anything', 'just'], ['never', 'do', 'anything', 'just', 'because'], ['do', 'anything', 'just', 'because', '"everyone'], ['anything', 'just', 'because', '"everyone', 'else"'], ['just', 'because', '"everyone', 'else"', 'was'], ['because', '"everyone', 'else"', 'was', 'doing'], ['"everyone', 'else"', 'was', 'doing', 'it'], ['else"', 'was', 'doing', 'it', 'And'], ['was', 'doing', 'it', 'And', "haven't"], ['doing', 'it', 'And', "haven't", 'since'], ['it', 'And', "haven't", 'since', 'Except'], ['And', "haven't", 'since', 'Except', 'for'], ["haven't", 'since', 'Except', 'for', "Bogey's"], ['since', 'Except', 'for', "Bogey's", 'party'], ['Except', 'for', "Bogey's", 'party', 'and'], ['for', "Bogey's", 'party', 'and', 'my'], ["Bogey's", 'party', 'and', 'my', 'stunning'], ['party', 'and', 'my', 'stunning', 'gastro'], ['and', 'my', 'stunning', 'gastro', 'intestinal'], ['my', 'stunning', 'gastro', 'intestinal', 'display'], ['stunning', 'gastro', 'intestinal', 'display', 'But'], ['gastro', 'intestinal', 'display', 'But', 'Just'], ['intestinal', 'display', 'But', 'Just', 'once'], ['display', 'But', 'Just', 'once', 'Afterwards'], ['But', 'Just', 'once', 'Afterwards', 'told'], ['Just', 'once', 'Afterwards', 'told', 'him'], ['once', 'Afterwards', 'told', 'him', "didn't"], ['Afterwards', 'told', 'him', "didn't", 'want'], ['told', 'him', "didn't", 'want', 'to'], ['him', "didn't", 'want', 'to', 'anymore'], ["didn't", 'want', 'to', 'anymore', "wasn't"], ['want', 'to', 'anymore', "wasn't", 'ready'], ['to', 'anymore', "wasn't", 'ready', 'He'], ['anymore', "wasn't", 'ready', 'He', 'got'], ["wasn't", 'ready', 'He', 'got', 'pissed'], ['ready', 'He', 'got', 'pissed', 'Then'], ['He', 'got', 'pissed', 'Then', 'he'], ['got', 'pissed', 'Then', 'he', 'broke'], ['pissed', 'Then', 'he', 'broke', 'up'], ['Then', 'he', 'broke', 'up', 'with'], ['he', 'broke', 'up', 'with', 'me'], ['broke', 'up', 'with', 'me', 'You'], ['up', 'with', 'me', 'You', 'did'], ['with', 'me', 'You', 'did', 'what'], ['me', 'You', 'did', 'what', 'He'], ['You', 'did', 'what', 'He', 'said'], ['did', 'what', 'He', 'said', 'everyone'], ['what', 'He', 'said', 'everyone', 'was'], ['He', 'said', 'everyone', 'was', 'doing'], ['said', 'everyone', 'was', 'doing', 'it'], ['everyone', 'was', 'doing', 'it', 'So'], ['was', 'doing', 'it', 'So', 'did'], ['doing', 'it', 'So', 'did', 'it'], ...]
ld
['They', 'do', 'not', 'They', 'do', 'to', 'hope', 'so', 'She', 'okay', "Let's", 'go', 'Wow', 'Okay', "you're", 'gonna', 'need', 'to', 'learn', 'how', 'to', 'lie', 'No', "I'm", 'kidding', 'You', 'know', 'how', 'sometimes', 'you', 'just', 'become', 'this', '"persona"', 'And', 'you', "don't", 'know', 'how', 'to', 'quit', 'Like', 'my', 'fear', 'of', 'wearing', 'pastels', 'The', '"real', 'you"', 'What', 'good', 'stuff', 'figured', "you'd", 'get', 'to', 'the', 'good', 'stuff', 'eventually', 'Thank', 'God', 'If', 'had', 'to', 'hear', 'one', 'more', 'story', 'about', 'your', 'coiffure', 'Me', 'This', 'endless', 'blonde', 'babble', "I'm", 'like', 'boring', 'myself', 'What', 'crap', 'do', 'you', 'listen', 'to', 'this', 'crap', 'No', 'Then', 'Guillermo', 'says', '"If', 'you', 'go', 'any', 'lighter', "you're", 'gonna', 'look', 'like', 'an', 'extra', 'on', '90210', 'You', 'always', 'been', 'this', 'selfish', 'But', 'Then', "that's", 'all', 'you', 'had', 'to', 'say', 'Well', 'no', 'You', 'never', 'wanted', 'to', 'go', 'out', 'with', "'me", 'did', 'you', 'was', 'looked', 'for', 'you', 'back', 'at', 'the', 'party', 'but', 'you', 'always', 'seemed', 'to', 'be', '"occupied"', 'Tons', 'Have', 'fun', 'tonight', 'believe', 'we', 'share', 'an', 'art', 'instructor', 'You', 'know', 'Chastity', 'Looks', 'like', 'things', 'worked', 'out', 'tonight', 'huh', 'Hi', 'Who', 'knows', 'All', "I've", 'ever', 'heard', 'her', 'say', 'is', 'that', "she'd", 'dip', 'before', 'dating', 'guy', 'that', 'smokes', 'So', "that's", 'the', 'kind', 'of', 'guy', 'she', 'likes', 'Pretty', 'ones', 'Lesbian', 'No', 'found', 'picture', 'of', 'Jared', 'Leto', 'in', 'one', 'of', 'her', 'drawers', 'so', "I'm", 'pretty', 'sure', "she's", 'not', 'harboring', 'same', 'sex', 'tendencies', "She's", 'not', "I'm", "workin'", 'on', 'it', 'But', 'she', "doesn't", 'seem', 'to', 'be', "goin'", 'for', 'him', 'really', 'really', 'really', 'wanna', 'go', 'but', "can't", 'Not', 'unless', 'my', 'sister', 'goes', 'Sure', 'have', "Eber's", 'Deep', 'Conditioner', 'every', 'two', 'days', 'And', 'never', 'ever', 'use', 'blowdryer', 'without', 'the', 'diffuser', 'attachment', 'How', 'do', 'you', 'get', 'your', 'hair', 'to', 'look', 'like', 'that', "You're", 'sweet', 'You', 'have', 'my', 'word', 'As', 'gentleman', 'counted', 'on', 'you', 'to', 'help', 'my', 'cause', 'You', 'and', 'that', 'thug', 'are', 'obviously', 'failing', "Aren't", 'we', 'ever', 'going', 'on', 'our', 'date', 'You', 'got', 'something', 'on', 'your', 'mind', 'Where', 'There', 'Well', "there's", 'someone', 'think', 'might', 'be', 'How', 'is', 'our', 'little', 'Find', 'the', 'Wench', 'Date', 'plan', 'progressing', 'Forget', 'French', "That's", 'because', "it's", 'such', 'nice', 'one', "don't", 'want', 'to', 'know', 'how', 'to', 'say', 'that', 'though', 'want', 'to', 'know', 'useful', 'things', 'Like', 'where', 'the', 'good', 'stores', 'are', 'How', 'much', 'does', 'champagne', 'cost', 'Stuff', 'like', 'Chat', 'have', 'never', 'in', 'my', 'life', 'had', 'to', 'point', 'out', 'my', 'head', 'to', 'someone', 'Right', 'See', "You're", 'ready', 'for', 'the', 'quiz', "C'esc", 'ma', 'tete', 'This', 'is', 'my', 'head', 'Let', 'me', 'see', 'what', 'can', 'do', 'Gosh', 'if', 'only', 'we', 'could', 'find', 'Kat', 'boyfriend', "That's", 'shame', 'Unsolved', 'mystery', 'She', 'used', 'to', 'be', 'really', 'popular', 'when', 'she', 'started', 'high', 'school', 'then', 'it', 'was', 'just', 'like', 'she', 'got', 'sick', 'of', 'it', 'or', 'something', 'Why', 'Seems', 'like', 'she', 'could', 'get', 'date', 'easy', 'enough', 'The', 'thing', 'is', 'Cameron', "I'm", 'at', 'the', 'mercy', 'of', 'particularly', 'hideous', 'breed', 'of', 'loser', 'My', 'sister', "can't", 'date', 'until', 'she', 'does', 'Cameron', 'No', 'no', "it's", 'my', 'fault', 'we', "didn't", 'have', 'proper', 'introduction', 'Forget', 'it', "You're", 'asking', 'me', 'out', "That's", 'so', 'cute', "What's", 'your', 'name', 'again', 'Okay', 'then', 'how', "'bout", 'we', 'try', 'out', 'some', 'French', 'cuisine', 'Saturday', 'Night', 'Not', 'the', 'hacking', 'and', 'gagging', 'and', 'spitting', 'part', 'Please', 'Well', 'thought', "we'd", 'start', 'with', 'pronunciation', 'if', "that's", 'okay', 'with', 'you', 'Can', 'we', 'make', 'this', 'quick', 'Roxanne', 'Korrine', 'and', 'Andrew', 'Barrett', 'are', 'having', 'an', 'incredibly', 'horrendous', 'public', 'break', 'up', 'on', 'the', 'quad', 'Again', 'did', 'You', 'think', 'you', 're', 'the', 'only', 'sophomore', 'at', 'the', 'prom', "don't", 'have', 'to', 'be', 'home', "'til", 'two', 'have', 'to', 'be', 'home', 'in', 'twenty', 'minutes', 'All', 'know', 'is', "I'd", 'give', 'up', 'my', 'private', 'line', 'to', 'go', 'out', 'with', 'guy', 'like', 'Joey', 'Sometimes', 'wonder', 'if', 'the', 'guys', "we're", 'supposed', 'to', 'want', 'to', 'go', 'out', 'with', 'are', 'the', 'ones', 'we', 'actually', 'want', 'to', 'go', 'out', 'with', 'you', 'know', 'Bianca', "don't", 'think', 'the', 'highlights', 'of', 'dating', 'Joey', 'Dorsey', 'are', 'going', 'to', 'include', 'door', 'opening', 'and', 'coat', 'holding', 'Combination', "don't", 'know', 'thought', "he'd", 'be', 'different', 'More', 'of', 'gentleman', 'Is', 'he', 'oily', 'or', 'dry', 'He', 'practically', 'proposed', 'when', 'he', 'found', 'out', 'we', 'had', 'the', 'same', 'dermatologist', 'mean', 'Dr', 'Bonchowski', 'is', 'great', 'an', 'all', 'but', "he's", 'not', 'exactly', 'relevant', 'party', 'conversation', 'Would', 'you', 'mind', 'getting', 'me', 'drink', 'Cameron', 'Great', 'Joey', 'Who', 'Where', 'did', 'he', 'go', 'He', 'was', 'just', 'here', 'You', 'might', 'wanna', 'think', 'about', 'it', 'No', 'Did', 'you', 'change', 'your', 'hair', 'You', 'know', 'the', 'deal', 'can', 'go', 'if', 'Kat', "doesn't", 'go', 'Listen', 'want', 'to', 'talk', 'to', 'you', 'about', 'the', 'prom', "You're", 'concentrating', 'awfully', 'hard', 'considering', "it's", 'gym', 'class', 'Hi', 'Joey', 'Hey', 'sweet', 'cheeks', 'My', 'agent', 'says', "I've", 'got', 'good', 'shot', 'at', 'being', 'the', 'Prada', 'guy', 'next', 'year', 'Neat', "It's", 'gay', 'cruise', 'line', 'but', "I'll", 'be', 'like', 'wearing', 'uniform', 'and', 'stuff', 'Queen', 'Harry', 'So', 'yeah', "I've", 'got', 'the', 'Sears', 'catalog', 'thing', 'going', 'and', 'the', 'tube', 'sock', 'gig', "that's", 'gonna', 'be', 'huge', 'And', 'then', "I'm", 'up', 'for', 'an', 'ad', 'for', 'Queen', 'Harry', 'next', 'week', 'Hopefully', 'Exactly', 'So', 'you', 'going', 'to', 'Bogey', "Lowenbrau's", 'thing', 'on', 'Saturday', 'Expensive', "It's", 'more', 'Perm', 'Patrick', 'is', 'that', "It's", 'just', 'you', 'Is', 'that', 'woman', 'complete', 'fruit', 'loop', 'or', 'is', 'it', 'just', 'me', 'No', 'just', 'wanted', 'What', 'To', 'completely', 'damage', 'me', 'To', 'send', 'me', 'to', 'therapy', 'forever', 'What', 'just', 'wanted', 'You', 'set', 'me', 'up', 'Let', 'go', 'So', 'did', 'you', 'You', 'looked', 'beautiful', 'last', 'night', 'you', 'know', 'guess', "I'll", 'never', 'know', 'will', 'Not', 'all', 'experiences', 'are', 'good', 'Bianca', 'You', "can't", 'always', 'trust', 'the', 'people', 'you', 'want', 'to', 'God', "you're", 'just', 'like', 'him', 'Just', 'keep', 'me', 'locked', 'away', 'in', 'the', 'dark', 'so', "can't", 'experience', 'anything', 'for', 'myself', 'guess', 'thought', 'was', 'protecting', 'you', "I'm", 'not', 'stupid', 'enough', 'to', 'repeat', 'your', 'mistakes', "That's", 'not', 'No', 'you', "didn't", 'If', 'you', 'really', 'thought', 'could', 'make', 'my', 'own', 'decisions', 'you', "would've", 'let', 'me', 'go', 'out', 'with', 'him', 'instead', 'of', 'helping', 'Daddy', 'hold', 'me', 'hostage', 'wanted', 'to', 'let', 'you', 'make', 'up', 'your', 'own', 'mind', 'about', 'him', 'Why', "didn't", 'you', 'tell', 'me', 'After', 'that', 'swore', "I'd", 'never', 'do', 'anything', 'just', 'because', '"everyone', 'else"', 'was', 'doing', 'it', 'And', "haven't", 'since', 'Except', 'for', "Bogey's", 'party', 'and', 'my', 'stunning', 'gastro', 'intestinal', 'display', 'But', 'Just', 'once', 'Afterwards', 'told', 'him', "didn't", 'want', 'to', 'anymore', "wasn't", 'ready', 'He', 'got', 'pissed', 'Then', 'he', 'broke', 'up', 'with', 'me', 'You', 'did', 'what', 'He', 'said', 'everyone', 'was', 'doing', ...]
from sklearn.preprocessing import LabelEncoder
le = LabelEncoder()
ld_labels = le.fit_transform(ld)
len(ld_labels)
3020266
len(ld)
3020266
ld_labels
array([34392, 47997, 61203, ..., 40874, 68484, 26595], dtype=int64)
val1 = 0
val2 = 5
ld_labels = list(ld_labels)
ld_label_matrix = []
for i in range(len(ld_labels)):
ld_label_matrix.append(np.array(ld_labels[val1:val2]))
val1 = val1+1
val2 = val2+1
ld_label_matrix = np.array(ld_label_matrix)
ld_label_matrix
--------------------------------------------------------------------------- ValueError Traceback (most recent call last) ~\AppData\Local\Temp\ipykernel_37580\3087744578.py in <module> ----> 1 ld_label_matrix = np.array(ld_label_matrix) 2 ld_label_matrix ValueError: setting an array element with a sequence. The requested array has an inhomogeneous shape after 1 dimensions. The detected shape was (3020266,) + inhomogeneous part.
ld_label_matrix
[array([34392, 47997, 61203, 34392, 47997], dtype=int64), array([47997, 61203, 34392, 47997, 73639], dtype=int64), array([61203, 34392, 47997, 73639, 54483], dtype=int64), array([34392, 47997, 73639, 54483, 70143], dtype=int64), array([47997, 73639, 54483, 70143, 31662], dtype=int64), array([73639, 54483, 70143, 31662, 61692], dtype=int64), array([54483, 70143, 31662, 61692, 22763], dtype=int64), array([70143, 31662, 61692, 22763, 52573], dtype=int64), array([31662, 61692, 22763, 52573, 37279], dtype=int64), array([61692, 22763, 52573, 37279, 26644], dtype=int64), array([22763, 52573, 37279, 26644, 77673], dtype=int64), array([52573, 37279, 26644, 77673, 52674], dtype=int64), array([37279, 26644, 77673, 52674, 60779], dtype=int64), array([26644, 77673, 52674, 60779, 73639], dtype=int64), array([77673, 52674, 60779, 73639, 57459], dtype=int64), array([52674, 60779, 73639, 57459, 54665], dtype=int64), array([60779, 73639, 57459, 54665, 73639], dtype=int64), array([73639, 57459, 54665, 73639, 57710], dtype=int64), array([57459, 54665, 73639, 57710, 26149], dtype=int64), array([54665, 73639, 57710, 26149, 20167], dtype=int64), array([73639, 57710, 26149, 20167, 56867], dtype=int64), array([57710, 26149, 20167, 56867, 37576], dtype=int64), array([26149, 20167, 56867, 37576, 57056], dtype=int64), array([20167, 56867, 37576, 57056, 54665], dtype=int64), array([56867, 37576, 57056, 54665, 70324], dtype=int64), array([37576, 57056, 54665, 70324, 77657], dtype=int64), array([57056, 54665, 70324, 77657, 56725], dtype=int64), array([54665, 70324, 77657, 56725, 40823], dtype=int64), array([70324, 77657, 56725, 40823, 73281], dtype=int64), array([77657, 56725, 40823, 73281, 2297], dtype=int64), array([56725, 40823, 73281, 2297, 8151], dtype=int64), array([40823, 73281, 2297, 8151, 77657], dtype=int64), array([73281, 2297, 8151, 77657, 48149], dtype=int64), array([ 2297, 8151, 77657, 48149, 57056], dtype=int64), array([ 8151, 77657, 48149, 57056, 54665], dtype=int64), array([77657, 48149, 57056, 54665, 73639], dtype=int64), array([48149, 57056, 54665, 73639, 65547], dtype=int64), array([57056, 54665, 73639, 65547, 22895], dtype=int64), array([54665, 73639, 65547, 22895, 60535], dtype=int64), array([73639, 65547, 22895, 60535, 50501], dtype=int64), array([65547, 22895, 60535, 50501, 61588], dtype=int64), array([22895, 60535, 50501, 61588, 76478], dtype=int64), array([60535, 50501, 61588, 76478, 62819], dtype=int64), array([50501, 61588, 76478, 62819, 34325], dtype=int64), array([61588, 76478, 62819, 34325, 2376], dtype=int64), array([76478, 62819, 34325, 2376, 77661], dtype=int64), array([62819, 34325, 2376, 77661, 36738], dtype=int64), array([34325, 2376, 77661, 36738, 52680], dtype=int64), array([ 2376, 77661, 36738, 52680, 71675], dtype=int64), array([77661, 36738, 52680, 71675, 50757], dtype=int64), array([36738, 52680, 71675, 50757, 77668], dtype=int64), array([52680, 71675, 50757, 77668, 52329], dtype=int64), array([71675, 50757, 77668, 52329, 73639], dtype=int64), array([50757, 77668, 52329, 73639, 73071], dtype=int64), array([77668, 52329, 73639, 73071, 52680], dtype=int64), array([52329, 73639, 73071, 52680, 71675], dtype=int64), array([73639, 73071, 52680, 71675, 49694], dtype=int64), array([73071, 52680, 71675, 49694, 34290], dtype=int64), array([52680, 71675, 49694, 34290, 18138], dtype=int64), array([71675, 49694, 34290, 18138, 20316], dtype=int64), array([49694, 34290, 18138, 20316, 53351], dtype=int64), array([34290, 18138, 20316, 53351, 73639], dtype=int64), array([18138, 20316, 53351, 73639, 53821], dtype=int64), array([20316, 53351, 73639, 53821, 61761], dtype=int64), array([53351, 73639, 53821, 61761, 60132], dtype=int64), array([73639, 53821, 61761, 60132, 71447], dtype=int64), array([53821, 61761, 60132, 71447, 38146], dtype=int64), array([61761, 60132, 71447, 38146, 77698], dtype=int64), array([60132, 71447, 38146, 77698, 44364], dtype=int64), array([71447, 38146, 77698, 44364, 24467], dtype=int64), array([38146, 77698, 44364, 24467, 34434], dtype=int64), array([77698, 44364, 24467, 34434, 49241], dtype=int64), array([44364, 24467, 34434, 49241, 41475], dtype=int64), array([24467, 34434, 49241, 41475, 40269], dtype=int64), array([34434, 49241, 41475, 40269, 20167], dtype=int64), array([49241, 41475, 40269, 20167, 57803], dtype=int64), array([41475, 40269, 20167, 57803, 41807], dtype=int64), array([40269, 20167, 57803, 41807, 60542], dtype=int64), array([20167, 57803, 41807, 60542, 36738], dtype=int64), array([57803, 41807, 60542, 36738, 45756], dtype=int64), array([41807, 60542, 36738, 45756, 47997], dtype=int64), array([60542, 36738, 45756, 47997, 77657], dtype=int64), array([36738, 45756, 47997, 77657, 57928], dtype=int64), array([45756, 47997, 77657, 57928, 73639], dtype=int64), array([47997, 77657, 57928, 73639, 73281], dtype=int64), array([77657, 57928, 73639, 73281, 45756], dtype=int64), array([57928, 73639, 73281, 45756, 26149], dtype=int64), array([73639, 73281, 45756, 26149, 34347], dtype=int64), array([73281, 45756, 26149, 34347, 18649], dtype=int64), array([45756, 26149, 34347, 18649, 68003], dtype=int64), array([26149, 34347, 18649, 68003, 676], dtype=int64), array([34347, 18649, 68003, 676, 77657], dtype=int64), array([18649, 68003, 676, 77657, 52573], dtype=int64), array([68003, 676, 77657, 52573, 39362], dtype=int64), array([ 676, 77657, 52573, 39362, 57782], dtype=int64), array([77657, 52573, 39362, 57782, 77673], dtype=int64), array([52573, 39362, 57782, 77673, 52674], dtype=int64), array([39362, 57782, 77673, 52674, 58166], dtype=int64), array([57782, 77673, 52674, 58166, 57803], dtype=int64), array([77673, 52674, 58166, 57803, 39135], dtype=int64), array([52674, 58166, 57803, 39135, 50083], dtype=int64), array([58166, 57803, 39135, 50083, 61739], dtype=int64), array([57803, 39135, 50083, 61739, 5216], dtype=int64), array([39135, 50083, 61739, 5216, 37576], dtype=int64), array([50083, 61739, 5216, 37576, 39027], dtype=int64), array([61739, 5216, 37576, 39027, 40874], dtype=int64), array([ 5216, 37576, 39027, 40874, 73281], dtype=int64), array([37576, 39027, 40874, 73281, 68531], dtype=int64), array([39027, 40874, 73281, 68531, 10885], dtype=int64), array([40874, 73281, 68531, 10885, 34347], dtype=int64), array([73281, 68531, 10885, 34347, 73054], dtype=int64), array([68531, 10885, 34347, 73054, 38896], dtype=int64), array([10885, 34347, 73054, 38896, 77657], dtype=int64), array([34347, 73054, 38896, 77657, 53351], dtype=int64), array([73054, 38896, 77657, 53351, 73639], dtype=int64), array([38896, 77657, 53351, 73639, 67987], dtype=int64), array([77657, 53351, 73639, 67987, 36630], dtype=int64), array([53351, 73639, 67987, 36630, 61096], dtype=int64), array([73639, 67987, 36630, 61096, 37576], dtype=int64), array([67987, 36630, 61096, 37576, 60923], dtype=int64), array([36630, 61096, 37576, 60923, 76258], dtype=int64), array([61096, 37576, 60923, 76258, 73639], dtype=int64), array([37576, 60923, 76258, 73639, 52573], dtype=int64), array([60923, 76258, 73639, 52573, 62078], dtype=int64), array([76258, 73639, 52573, 62078, 77096], dtype=int64), array([73639, 52573, 62078, 77096, 3818], dtype=int64), array([52573, 62078, 77096, 3818, 47364], dtype=int64), array([62078, 77096, 3818, 47364, 77657], dtype=int64), array([77096, 3818, 47364, 77657, 76329], dtype=int64), array([ 3818, 47364, 77657, 76329, 58174], dtype=int64), array([47364, 77657, 76329, 58174, 51376], dtype=int64), array([77657, 76329, 58174, 51376, 77657], dtype=int64), array([76329, 58174, 51376, 77657, 40307], dtype=int64), array([58174, 51376, 77657, 40307, 39962], dtype=int64), array([51376, 77657, 40307, 39962, 73071], dtype=int64), array([77657, 40307, 39962, 73071, 62766], dtype=int64), array([40307, 39962, 73071, 62766, 42566], dtype=int64), array([39962, 73071, 62766, 42566, 77657], dtype=int64), array([73071, 62766, 42566, 77657, 39027], dtype=int64), array([62766, 42566, 77657, 39027, 68488], dtype=int64), array([42566, 77657, 39027, 68488, 73639], dtype=int64), array([77657, 39027, 68488, 73639, 40736], dtype=int64), array([39027, 68488, 73639, 40736, 2244], dtype=int64), array([68488, 73639, 40736, 2244, 34740], dtype=int64), array([73639, 40736, 2244, 34740, 19202], dtype=int64), array([40736, 2244, 34740, 19202, 51921], dtype=int64), array([ 2244, 34740, 19202, 51921, 73754], dtype=int64), array([34740, 19202, 51921, 73754, 40970], dtype=int64), array([19202, 51921, 73754, 40970, 76438], dtype=int64), array([51921, 73754, 40970, 76438, 68844], dtype=int64), array([73754, 40970, 76438, 68844, 39135], dtype=int64), array([40970, 76438, 68844, 39135, 39734], dtype=int64), array([76438, 68844, 39135, 39734, 55896], dtype=int64), array([68844, 39135, 39734, 55896, 37576], dtype=int64), array([39135, 39734, 55896, 37576, 57056], dtype=int64), array([39734, 55896, 37576, 57056, 11917], dtype=int64), array([55896, 37576, 57056, 11917, 23176], dtype=int64), array([37576, 57056, 11917, 23176, 57803], dtype=int64), array([57056, 11917, 23176, 57803, 73232], dtype=int64), array([11917, 23176, 57803, 73232, 77258], dtype=int64), array([23176, 57803, 73232, 77258, 62078], dtype=int64), array([57803, 73232, 77258, 62078, 73754], dtype=int64), array([73232, 77258, 62078, 73754, 54719], dtype=int64), array([77258, 62078, 73754, 54719, 19516], dtype=int64), array([62078, 73754, 54719, 19516, 36870], dtype=int64), array([73754, 54719, 19516, 36870, 57077], dtype=int64), array([54719, 19516, 36870, 57077, 7939], dtype=int64), array([19516, 36870, 57077, 7939, 20176], dtype=int64), array([36870, 57077, 7939, 20176, 49695], dtype=int64), array([57077, 7939, 20176, 49695, 53822], dtype=int64), array([ 7939, 20176, 49695, 53822, 54006], dtype=int64), array([20176, 49695, 53822, 54006, 67987], dtype=int64), array([49695, 53822, 54006, 67987, 56279], dtype=int64), array([53822, 54006, 67987, 56279, 73046], dtype=int64), array([54006, 67987, 56279, 73046, 68885], dtype=int64), array([67987, 56279, 73046, 68885, 47524], dtype=int64), array([56279, 73046, 68885, 47524, 40899], dtype=int64), array([73046, 68885, 47524, 40899, 46463], dtype=int64), array([68885, 47524, 40899, 46463, 53282], dtype=int64), array([47524, 40899, 46463, 53282, 73046], dtype=int64), array([40899, 46463, 53282, 73046, 69982], dtype=int64), array([46463, 53282, 73046, 69982, 32361], dtype=int64), array([53282, 73046, 69982, 32361, 73054], dtype=int64), array([73046, 69982, 32361, 73054, 73071], dtype=int64), array([69982, 32361, 73054, 73071, 56927], dtype=int64), array([32361, 73054, 73071, 56927, 61588], dtype=int64), array([73054, 73071, 56927, 61588, 53282], dtype=int64), array([73071, 56927, 61588, 53282, 68882], dtype=int64), array([56927, 61588, 53282, 68882, 57816], dtype=int64), array([61588, 53282, 68882, 57816, 28530], dtype=int64), array([53282, 68882, 57816, 28530, 61775], dtype=int64), array([68882, 57816, 28530, 61775, 22745], dtype=int64), array([57816, 28530, 61775, 22745, 26149], dtype=int64), array([28530, 61775, 22745, 26149, 51547], dtype=int64), array([61775, 22745, 26149, 51547, 63514], dtype=int64), array([22745, 26149, 51547, 63514, 61588], dtype=int64), array([26149, 51547, 63514, 61588, 21018], dtype=int64), array([51547, 63514, 61588, 21018, 22767], dtype=int64), array([63514, 61588, 21018, 22767, 55314], dtype=int64), array([61588, 21018, 22767, 55314, 61761], dtype=int64), array([21018, 22767, 55314, 61761, 61588], dtype=int64), array([22767, 55314, 61761, 61588, 54006], dtype=int64), array([55314, 61761, 61588, 54006, 48382], dtype=int64), array([61761, 61588, 54006, 48382, 70143], dtype=int64), array([61588, 54006, 48382, 70143, 20167], dtype=int64), array([54006, 48382, 70143, 20167, 64636], dtype=int64), array([48382, 70143, 20167, 64636, 72114], dtype=int64), array([70143, 20167, 64636, 72114, 68888], dtype=int64), array([20167, 64636, 72114, 68888, 61203], dtype=int64), array([64636, 72114, 68888, 61203, 53588], dtype=int64), array([72114, 68888, 61203, 53588, 67839], dtype=int64), array([68888, 61203, 53588, 67839, 68749], dtype=int64), array([61203, 53588, 67839, 68749, 72890], dtype=int64), array([53588, 67839, 68749, 72890, 31665], dtype=int64), array([67839, 68749, 72890, 31665, 61203], dtype=int64), array([68749, 72890, 31665, 61203, 20167], dtype=int64), array([72890, 31665, 61203, 20167, 77265], dtype=int64), array([31665, 61203, 20167, 77265, 61739], dtype=int64), array([61203, 20167, 77265, 61739, 56319], dtype=int64), array([20167, 77265, 61739, 56319, 10885], dtype=int64), array([77265, 61739, 56319, 10885, 68882], dtype=int64), array([61739, 56319, 10885, 68882, 48059], dtype=int64), array([56319, 10885, 68882, 48059, 68486], dtype=int64), array([10885, 68882, 48059, 68486, 73639], dtype=int64), array([68882, 48059, 68486, 73639, 40736], dtype=int64), array([48059, 68486, 73639, 40736, 52637], dtype=int64), array([68486, 73639, 40736, 52637, 51376], dtype=int64), array([73639, 40736, 52637, 51376, 54177], dtype=int64), array([40736, 52637, 51376, 54177, 65965], dtype=int64), array([52637, 51376, 54177, 65965, 65965], dtype=int64), array([51376, 54177, 65965, 65965, 65965], dtype=int64), array([54177, 65965, 65965, 65965, 76243], dtype=int64), array([65965, 65965, 65965, 76243, 52573], dtype=int64), array([65965, 65965, 76243, 52573, 42566], dtype=int64), array([65965, 76243, 52573, 42566, 42835], dtype=int64), array([76243, 52573, 42566, 42835, 26273], dtype=int64), array([52573, 42566, 42835, 26273, 75118], dtype=int64), array([42566, 42835, 26273, 75118, 60535], dtype=int64), array([42835, 26273, 75118, 60535, 69539], dtype=int64), array([26273, 75118, 60535, 69539, 52631], dtype=int64), array([75118, 60535, 69539, 52631, 33485], dtype=int64), array([60535, 69539, 52631, 33485, 53710], dtype=int64), array([69539, 52631, 33485, 53710, 15424], dtype=int64), array([52631, 33485, 53710, 15424, 14142], dtype=int64), array([33485, 53710, 15424, 14142, 12811], dtype=int64), array([53710, 15424, 14142, 12811, 49708], dtype=int64), array([15424, 14142, 12811, 49708, 74602], dtype=int64), array([14142, 12811, 49708, 74602, 46497], dtype=int64), array([12811, 49708, 74602, 46497, 8151], dtype=int64), array([49708, 74602, 46497, 8151, 60923], dtype=int64), array([74602, 46497, 8151, 60923, 49695], dtype=int64), array([46497, 8151, 60923, 49695, 75463], dtype=int64), array([ 8151, 60923, 49695, 75463, 41520], dtype=int64), array([60923, 49695, 75463, 41520, 77121], dtype=int64), array([49695, 75463, 41520, 77121, 73071], dtype=int64), array([75463, 41520, 77121, 73071, 47417], dtype=int64), array([41520, 77121, 73071, 47417, 40008], dtype=int64), array([77121, 73071, 47417, 40008, 19946], dtype=int64), array([73071, 47417, 40008, 19946, 47997], dtype=int64), array([47417, 40008, 19946, 47997, 77657], dtype=int64), array([40008, 19946, 47997, 77657, 52329], dtype=int64), array([19946, 47997, 77657, 52329, 77698], dtype=int64), array([47997, 77657, 52329, 77698, 53375], dtype=int64), array([77657, 52329, 77698, 53375, 73639], dtype=int64), array([52329, 77698, 53375, 73639, 58166], dtype=int64), array([77698, 53375, 73639, 58166, 57803], dtype=int64), array([53375, 73639, 58166, 57803, 73046], dtype=int64), array([73639, 58166, 57803, 73046, 37585], dtype=int64), array([58166, 57803, 73046, 37585, 72277], dtype=int64), array([57803, 73046, 37585, 72277, 37576], dtype=int64), array([73046, 37585, 72277, 37576, 53710], dtype=int64), array([37585, 72277, 37576, 53710, 60535], dtype=int64), array([72277, 37576, 53710, 60535, 77236], dtype=int64), array([37576, 53710, 60535, 77236, 8568], dtype=int64), array([53710, 60535, 77236, 8568, 52280], dtype=int64), array([60535, 77236, 8568, 52280, 45575], dtype=int64), array([77236, 8568, 52280, 45575, 61739], dtype=int64), array([ 8568, 52280, 45575, 61739, 77657], dtype=int64), array([52280, 45575, 61739, 77657, 73639], dtype=int64), array([45575, 61739, 77657, 73639, 53965], dtype=int64), array([61739, 77657, 73639, 53965, 60535], dtype=int64), array([77657, 73639, 53965, 60535, 43231], dtype=int64), array([73639, 53965, 60535, 43231, 37576], dtype=int64), array([53965, 60535, 43231, 37576, 39181], dtype=int64), array([60535, 43231, 37576, 39181, 73046], dtype=int64), array([43231, 37576, 39181, 73046, 73416], dtype=int64), array([37576, 39181, 73046, 73416, 39602], dtype=int64), array([39181, 73046, 73416, 39602, 61529], dtype=int64), array([73046, 73416, 39602, 61529, 50237], dtype=int64), array([73416, 39602, 61529, 50237, 8441], dtype=int64), array([39602, 61529, 50237, 8441, 76438], dtype=int64), array([61529, 50237, 8441, 76438, 49695], dtype=int64), array([50237, 8441, 76438, 49695, 52638], dtype=int64), array([ 8441, 76438, 49695, 52638, 61739], dtype=int64), array([76438, 49695, 52638, 61739, 62070], dtype=int64), array([49695, 52638, 61739, 62070, 46457], dtype=int64), array([52638, 61739, 62070, 46457, 37576], dtype=int64), array([61739, 62070, 46457, 37576, 52750], dtype=int64), array([62070, 46457, 37576, 52750, 70314], dtype=int64), array([46457, 37576, 52750, 70314, 61739], dtype=int64), array([37576, 52750, 70314, 61739, 77698], dtype=int64), array([52750, 70314, 61739, 77698, 59602], dtype=int64), array([70314, 61739, 77698, 59602, 36804], dtype=int64), array([61739, 77698, 59602, 36804, 34366], dtype=int64), array([77698, 59602, 36804, 34366, 36630], dtype=int64), array([59602, 36804, 34366, 36630, 73144], dtype=int64), array([36804, 34366, 36630, 73144, 70299], dtype=int64), array([34366, 36630, 73144, 70299, 73244], dtype=int64), array([36630, 73144, 70299, 73244, 59510], dtype=int64), array([73144, 70299, 73244, 59510, 40736], dtype=int64), array([70299, 73244, 59510, 40736, 19946], dtype=int64), array([73244, 59510, 40736, 19946, 56279], dtype=int64), array([59510, 40736, 19946, 56279, 62070], dtype=int64), array([40736, 19946, 56279, 62070, 57963], dtype=int64), array([19946, 56279, 62070, 57963, 16786], dtype=int64), array([56279, 62070, 57963, 16786, 73071], dtype=int64), array([62070, 57963, 16786, 73071, 36651], dtype=int64), array([57963, 16786, 73071, 36651, 13966], dtype=int64), array([16786, 73071, 36651, 13966, 63773], dtype=int64), array([73071, 36651, 13966, 63773, 64892], dtype=int64), array([36651, 13966, 63773, 64892, 17075], dtype=int64), array([13966, 63773, 64892, 17075, 17273], dtype=int64), array([63773, 64892, 17075, 17273, 34305], dtype=int64), array([64892, 17075, 17273, 34305, 40815], dtype=int64), array([17075, 17273, 34305, 40815, 56325], dtype=int64), array([17273, 34305, 40815, 56325, 71856], dtype=int64), array([34305, 40815, 56325, 71856, 60979], dtype=int64), array([40815, 56325, 71856, 60979, 61761], dtype=int64), array([56325, 71856, 60979, 61761, 48149], dtype=int64), array([71856, 60979, 61761, 48149, 76247], dtype=int64), array([60979, 61761, 48149, 76247, 73639], dtype=int64), array([61761, 48149, 76247, 73639, 57056], dtype=int64), array([48149, 76247, 73639, 57056, 54665], dtype=int64), array([76247, 73639, 57056, 54665, 73639], dtype=int64), array([73639, 57056, 54665, 73639, 67987], dtype=int64), array([57056, 54665, 73639, 67987, 73046], dtype=int64), array([54665, 73639, 67987, 73046, 73311], dtype=int64), array([73639, 67987, 73046, 73311, 76247], dtype=int64), array([67987, 73046, 73311, 76247, 73639], dtype=int64), array([73046, 73311, 76247, 73639, 57056], dtype=int64), array([73311, 76247, 73639, 57056, 75470], dtype=int64), array([76247, 73639, 57056, 75470, 73232], dtype=int64), array([73639, 57056, 75470, 73232, 22895], dtype=int64), array([57056, 75470, 73232, 22895, 76736], dtype=int64), array([75470, 73232, 22895, 76736, 73071], dtype=int64), array([73232, 22895, 76736, 73071, 52680], dtype=int64), array([22895, 76736, 73071, 52680, 71433], dtype=int64), array([76736, 73071, 52680, 71433, 39602], dtype=int64), array([73071, 52680, 71433, 39602, 19946], dtype=int64), array([52680, 71433, 39602, 19946, 60332], dtype=int64), array([71433, 39602, 19946, 60332, 48054], dtype=int64), array([39602, 19946, 60332, 48054, 43427], dtype=int64), array([19946, 60332, 48054, 43427, 45514], dtype=int64), array([60332, 48054, 43427, 45514, 33277], dtype=int64), array([48054, 43427, 45514, 33277, 57803], dtype=int64), array([43427, 45514, 33277, 57803, 11918], dtype=int64), array([45514, 33277, 57803, 11918, 53710], dtype=int64), array([33277, 57803, 11918, 53710, 60923], dtype=int64), array([57803, 11918, 53710, 60923, 55314], dtype=int64), array([11918, 53710, 60923, 55314, 60535], dtype=int64), array([53710, 60923, 55314, 60535, 57730], dtype=int64), array([60923, 55314, 60535, 57730, 53351], dtype=int64), array([55314, 60535, 57730, 53351, 73639], dtype=int64), array([60535, 57730, 53351, 73639, 64021], dtype=int64), array([57730, 53351, 73639, 64021, 62078], dtype=int64), array([53351, 73639, 64021, 62078, 60535], dtype=int64), array([73639, 64021, 62078, 60535, 53762], dtype=int64), array([64021, 62078, 60535, 53762, 73639], dtype=int64), array([62078, 60535, 53762, 73639, 70299], dtype=int64), array([60535, 53762, 73639, 70299, 29904], dtype=int64), array([53762, 73639, 70299, 29904, 31367], dtype=int64), array([73639, 70299, 29904, 31367, 37585], dtype=int64), array([70299, 29904, 31367, 37585, 65939], dtype=int64), array([29904, 31367, 37585, 65939, 51376], dtype=int64), array([31367, 37585, 65939, 51376, 73071], dtype=int64), array([37585, 65939, 51376, 73071, 65558], dtype=int64), array([65939, 51376, 73071, 65558, 10951], dtype=int64), array([51376, 73071, 65558, 10951, 58464], dtype=int64), array([73071, 65558, 10951, 58464, 73013], dtype=int64), array([65558, 10951, 58464, 73013, 34434], dtype=int64), array([10951, 58464, 73013, 34434, 56279], dtype=int64), array([58464, 73013, 34434, 56279, 60535], dtype=int64), array([73013, 34434, 56279, 60535, 53762], dtype=int64), array([34434, 56279, 60535, 53762, 22760], dtype=int64), array([56279, 60535, 53762, 22760, 59098], dtype=int64), array([60535, 53762, 22760, 59098, 68465], dtype=int64), array([53762, 22760, 59098, 68465, 76660], dtype=int64), array([22760, 59098, 68465, 76660, 42830], dtype=int64), array([59098, 68465, 76660, 42830, 47997], dtype=int64), array([68465, 76660, 42830, 47997, 18287], dtype=int64), array([76660, 42830, 47997, 18287, 55038], dtype=int64), array([42830, 47997, 18287, 55038, 61785], dtype=int64), array([47997, 18287, 55038, 61785, 76438], dtype=int64), array([18287, 55038, 61785, 76438, 45544], dtype=int64), array([55038, 61785, 76438, 45544, 50828], dtype=int64), array([61785, 76438, 45544, 50828, 21607], dtype=int64), array([76438, 45544, 50828, 21607, 41936], dtype=int64), array([45544, 50828, 21607, 41936, 34305], dtype=int64), array([50828, 21607, 41936, 34305, 68819], dtype=int64), array([21607, 41936, 34305, 68819, 35597], dtype=int64), array([41936, 34305, 68819, 35597, 60550], dtype=int64), array([34305, 68819, 35597, 60550, 31662], dtype=int64), array([68819, 35597, 60550, 31662, 75468], dtype=int64), array([35597, 60550, 31662, 75468, 73639], dtype=int64), array([60550, 31662, 75468, 73639, 40736], dtype=int64), array([31662, 75468, 73639, 40736, 65965], dtype=int64), array([75468, 73639, 40736, 65965, 64183], dtype=int64), array([73639, 40736, 65965, 64183, 76728], dtype=int64), array([40736, 65965, 64183, 76728, 68882], dtype=int64), array([65965, 64183, 76728, 68882, 71125], dtype=int64), array([64183, 76728, 68882, 71125, 54125], dtype=int64), array([76728, 68882, 71125, 54125, 68138], dtype=int64), array([68882, 71125, 54125, 68138, 73114], dtype=int64), array([71125, 54125, 68138, 73114, 56319], dtype=int64), array([54125, 68138, 73114, 56319, 76329], dtype=int64), array([68138, 73114, 56319, 76329, 56725], dtype=int64), array([73114, 56319, 76329, 56725, 57803], dtype=int64), array([56319, 76329, 56725, 57803, 68882], dtype=int64), array([76329, 56725, 57803, 68882, 52750], dtype=int64), array([56725, 57803, 68882, 52750, 69313], dtype=int64), array([57803, 68882, 52750, 69313, 61588], dtype=int64), array([68882, 52750, 69313, 61588, 56319], dtype=int64), array([52750, 69313, 61588, 56319, 61919], dtype=int64), array([69313, 61588, 56319, 61919, 70314], dtype=int64), array([61588, 56319, 61919, 70314, 36913], dtype=int64), array([56319, 61919, 70314, 36913, 31380], dtype=int64), array([61919, 70314, 36913, 31380, 57803], dtype=int64), array([70314, 36913, 31380, 57803, 68882], dtype=int64), array([36913, 31380, 57803, 68882, 45544], dtype=int64), array([31380, 57803, 68882, 45544, 52329], dtype=int64), array([57803, 68882, 45544, 52329, 46457], dtype=int64), array([68882, 45544, 52329, 46457, 48784], dtype=int64), array([45544, 52329, 46457, 48784, 49346], dtype=int64), array([52329, 46457, 48784, 49346, 34325], dtype=int64), array([46457, 48784, 49346, 34325, 73221], dtype=int64), array([48784, 49346, 34325, 73221, 56279], dtype=int64), array([49346, 34325, 73221, 56279, 11328], dtype=int64), array([34325, 73221, 56279, 11328, 20167], dtype=int64), array([73221, 56279, 11328, 20167, 39962], dtype=int64), array([56279, 11328, 20167, 39962, 73071], dtype=int64), array([11328, 20167, 39962, 73071, 59340], dtype=int64), array([20167, 39962, 73071, 59340, 61588], dtype=int64), array([39962, 73071, 59340, 61588, 62751], dtype=int64), array([73071, 59340, 61588, 62751, 54113], dtype=int64), array([59340, 61588, 62751, 54113, 42077], dtype=int64), array([61588, 62751, 54113, 42077, 61588], dtype=int64), array([62751, 54113, 42077, 61588, 58229], dtype=int64), array([54113, 42077, 61588, 58229, 25561], dtype=int64), array([42077, 61588, 58229, 25561, 69539], dtype=int64), array([61588, 58229, 25561, 69539, 42835], dtype=int64), array([58229, 25561, 69539, 42835, 46457], dtype=int64), array([25561, 69539, 42835, 46457, 75308], dtype=int64), array([69539, 42835, 46457, 75308, 68882], dtype=int64), array([42835, 46457, 75308, 68882, 48054], dtype=int64), array([46457, 75308, 68882, 48054, 11328], dtype=int64), array([75308, 68882, 48054, 11328, 26149], dtype=int64), array([68882, 48054, 11328, 26149, 61096], dtype=int64), array([48054, 11328, 26149, 61096, 56325], dtype=int64), array([11328, 26149, 61096, 56325, 60535], dtype=int64), array([26149, 61096, 56325, 60535, 50463], dtype=int64), array([61096, 56325, 60535, 50463, 76438], dtype=int64), array([56325, 60535, 50463, 76438, 47376], dtype=int64), array([60535, 50463, 76438, 47376, 53710], dtype=int64), array([50463, 76438, 47376, 53710, 64965], dtype=int64), array([76438, 47376, 53710, 64965, 56115], dtype=int64), array([47376, 53710, 64965, 56115, 17075], dtype=int64), array([53710, 64965, 56115, 17075, 56319], dtype=int64), array([64965, 56115, 17075, 56319, 37585], dtype=int64), array([56115, 17075, 56319, 37585, 39807], dtype=int64), array([17075, 56319, 37585, 39807, 59098], dtype=int64), array([56319, 37585, 39807, 59098, 62078], dtype=int64), array([37585, 39807, 59098, 62078, 34305], dtype=int64), array([39807, 59098, 62078, 34305, 70143], dtype=int64), array([59098, 62078, 34305, 70143, 46233], dtype=int64), array([62078, 34305, 70143, 46233, 36748], dtype=int64), array([34305, 70143, 46233, 36748, 77698], dtype=int64), array([70143, 46233, 36748, 77698, 60612], dtype=int64), array([46233, 36748, 77698, 60612, 38668], dtype=int64), array([36748, 77698, 60612, 38668, 26644], dtype=int64), array([77698, 60612, 38668, 26644, 73114], dtype=int64), array([60612, 38668, 26644, 73114, 54665], dtype=int64), array([38668, 26644, 73114, 54665, 3567], dtype=int64), array([26644, 73114, 54665, 3567, 76438], dtype=int64), array([73114, 54665, 3567, 76438, 74411], dtype=int64), array([54665, 3567, 76438, 74411, 62078], dtype=int64), array([ 3567, 76438, 74411, 62078, 70286], dtype=int64), array([76438, 74411, 62078, 70286, 17273], dtype=int64), array([74411, 62078, 70286, 17273, 46111], dtype=int64), array([62078, 70286, 17273, 46111, 31033], dtype=int64), array([70286, 17273, 46111, 31033, 26071], dtype=int64), array([17273, 46111, 31033, 26071, 26273], dtype=int64), array([46111, 31033, 26071, 26273, 73071], dtype=int64), array([31033, 26071, 26273, 73071, 53347], dtype=int64), array([26071, 26273, 73071, 53347, 39181], dtype=int64), array([26273, 73071, 53347, 39181, 52018], dtype=int64), array([73071, 53347, 39181, 52018, 39181], dtype=int64), array([53347, 39181, 52018, 39181, 70740], dtype=int64), array([39181, 52018, 39181, 70740, 62729], dtype=int64), array([52018, 39181, 70740, 62729, 28142], dtype=int64), array([39181, 70740, 62729, 28142, 36630], dtype=int64), array([70740, 62729, 28142, 36630, 73314], dtype=int64), array([62729, 28142, 36630, 73314, 76441], dtype=int64), array([28142, 36630, 73314, 76441, 71124], dtype=int64), array([36630, 73314, 76441, 71124, 77096], dtype=int64), array([73314, 76441, 71124, 77096, 64950], dtype=int64), array([76441, 71124, 77096, 64950, 55038], dtype=int64), array([71124, 77096, 64950, 55038, 73054], dtype=int64), array([77096, 64950, 55038, 73054, 61692], dtype=int64), array([64950, 55038, 73054, 61692, 77096], dtype=int64), array([55038, 73054, 61692, 77096, 77657], dtype=int64), array([73054, 61692, 77096, 77657, 11352], dtype=int64), array([61692, 77096, 77657, 11352, 76438], dtype=int64), array([77096, 77657, 11352, 76438, 58634], dtype=int64), array([77657, 11352, 76438, 58634, 73281], dtype=int64), array([11352, 76438, 58634, 73281, 65519], dtype=int64), array([76438, 58634, 73281, 65519, 30292], dtype=int64), array([58634, 73281, 65519, 30292, 22023], dtype=int64), array([73281, 65519, 30292, 22023, 39181], dtype=int64), array([65519, 30292, 22023, 39181, 8169], dtype=int64), array([30292, 22023, 39181, 8169, 9324], dtype=int64), array([22023, 39181, 8169, 9324, 39602], dtype=int64), array([39181, 8169, 9324, 39602, 53725], dtype=int64), array([ 8169, 9324, 39602, 53725, 39135], dtype=int64), array([ 9324, 39602, 53725, 39135, 55443], dtype=int64), array([39602, 53725, 39135, 55443, 54525], dtype=int64), array([53725, 39135, 55443, 54525, 65180], dtype=int64), array([39135, 55443, 54525, 65180, 42036], dtype=int64), array([55443, 54525, 65180, 42036, 75356], dtype=int64), array([54525, 65180, 42036, 75356, 61739], dtype=int64), array([65180, 42036, 75356, 61739, 73071], dtype=int64), array([42036, 75356, 61739, 73071, 65423], dtype=int64), array([75356, 61739, 73071, 65423, 7733], dtype=int64), array([61739, 73071, 65423, 7733, 47364], dtype=int64), array([73071, 65423, 7733, 47364, 37576], dtype=int64), array([65423, 7733, 47364, 37576, 73244], dtype=int64), array([ 7733, 47364, 37576, 73244, 77657], dtype=int64), array([47364, 37576, 73244, 77657, 65895], dtype=int64), array([37576, 73244, 77657, 65895, 73071], dtype=int64), array([73244, 77657, 65895, 73071, 61785], dtype=int64), array([77657, 65895, 73071, 61785, 70401], dtype=int64), array([65895, 73071, 61785, 70401, 39962], dtype=int64), array([73071, 61785, 70401, 39962, 73071], dtype=int64), array([61785, 70401, 39962, 73071, 64916], dtype=int64), array([70401, 39962, 73071, 64916, 48149], dtype=int64), array([39962, 73071, 64916, 48149, 53710], dtype=int64), array([73071, 64916, 48149, 53710, 73639], dtype=int64), array([64916, 48149, 53710, 73639, 40736], dtype=int64), array([48149, 53710, 73639, 40736, 54349], dtype=int64), array([53710, 73639, 40736, 54349, 4000], dtype=int64), array([73639, 40736, 54349, 4000, 74602], dtype=int64), array([40736, 54349, 4000, 74602, 53710], dtype=int64), array([54349, 4000, 74602, 53710, 73639], dtype=int64), array([ 4000, 74602, 53710, 73639, 40736], dtype=int64), array([74602, 53710, 73639, 40736, 54349], dtype=int64), array([53710, 73639, 40736, 54349, 55314], dtype=int64), array([73639, 40736, 54349, 55314, 74562], dtype=int64), array([40736, 54349, 55314, 74562, 59683], dtype=int64), array([54349, 55314, 74562, 59683, 7939], dtype=int64), array([55314, 74562, 59683, 7939, 57056], dtype=int64), array([74562, 59683, 7939, 57056, 56279], dtype=int64), array([59683, 7939, 57056, 56279, 20161], dtype=int64), array([ 7939, 57056, 56279, 20161, 52459], dtype=int64), array([57056, 56279, 20161, 52459, 75356], dtype=int64), array([56279, 20161, 52459, 75356, 60535], dtype=int64), array([20161, 52459, 75356, 60535, 64743], dtype=int64), array([52459, 75356, 60535, 64743, 57856], dtype=int64), array([75356, 60535, 64743, 57856, 73639], dtype=int64), array([60535, 64743, 57856, 73639, 52573], dtype=int64), array([64743, 57856, 73639, 52573, 62078], dtype=int64), array([57856, 73639, 52573, 62078, 77096], dtype=int64), array([73639, 52573, 62078, 77096, 53282], dtype=int64), array([52573, 62078, 77096, 53282, 57803], dtype=int64), array([62078, 77096, 53282, 57803, 21248], dtype=int64), array([77096, 53282, 57803, 21248, 32464], dtype=int64), array([53282, 57803, 21248, 32464, 77190], dtype=int64), array([57803, 21248, 32464, 77190, 55038], dtype=int64), array([21248, 32464, 77190, 55038, 73071], dtype=int64), array([32464, 77190, 55038, 73071, 53289], dtype=int64), array([77190, 55038, 73071, 53289, 76443], dtype=int64), array([55038, 73071, 53289, 76443, 72095], dtype=int64), array([73071, 53289, 76443, 72095, 73639], dtype=int64), array([53289, 76443, 72095, 73639, 76247], dtype=int64), array([76443, 72095, 73639, 76247, 73639], dtype=int64), array([72095, 73639, 76247, 73639, 52573], dtype=int64), array([73639, 76247, 73639, 52573, 62078], dtype=int64), array([76247, 73639, 52573, 62078, 77096], dtype=int64), array([73639, 52573, 62078, 77096, 39602], dtype=int64), array([52573, 62078, 77096, 39602, 73071], dtype=int64), array([62078, 77096, 39602, 73071, 61775], dtype=int64), array([77096, 39602, 73071, 61775, 76438], dtype=int64), array([39602, 73071, 61775, 76438, 38413], dtype=int64), array([73071, 61775, 76438, 38413, 76247], dtype=int64), array([61775, 76438, 38413, 76247, 73639], dtype=int64), array([76438, 38413, 76247, 73639, 52573], dtype=int64), array([38413, 76247, 73639, 52573, 62078], dtype=int64), array([76247, 73639, 52573, 62078, 77096], dtype=int64), array([73639, 52573, 62078, 77096, 77657], dtype=int64), array([52573, 62078, 77096, 77657, 57056], dtype=int64), array([62078, 77096, 77657, 57056, 9820], dtype=int64), array([77096, 77657, 57056, 9820, 48149], dtype=int64), array([77657, 57056, 9820, 48149, 73244], dtype=int64), array([57056, 9820, 48149, 73244, 73071], dtype=int64), array([ 9820, 48149, 73244, 73071, 54137], dtype=int64), array([48149, 73244, 73071, 54137, 61588], dtype=int64), array([73244, 73071, 54137, 61588, 46463], dtype=int64), array([73071, 54137, 61588, 46463, 21248], dtype=int64), array([54137, 61588, 46463, 21248, 14927], dtype=int64), array([61588, 46463, 21248, 14927, 39602], dtype=int64), array([46463, 21248, 14927, 39602, 52638], dtype=int64), array([21248, 14927, 39602, 52638, 73639], dtype=int64), array([14927, 39602, 52638, 73639, 55388], dtype=int64), array([39602, 52638, 73639, 55388, 48202], dtype=int64), array([52638, 73639, 55388, 48202, 61847], dtype=int64), array([73639, 55388, 48202, 61847, 39181], dtype=int64), array([55388, 48202, 61847, 39181, 44269], dtype=int64), array([48202, 61847, 39181, 44269, 54310], dtype=int64), array([61847, 39181, 44269, 54310, 12655], dtype=int64), array([39181, 44269, 54310, 12655, 48149], dtype=int64), array([44269, 54310, 12655, 48149, 57056], dtype=int64), array([54310, 12655, 48149, 57056, 73314], dtype=int64), array([12655, 48149, 57056, 73314, 53753], dtype=int64), array([48149, 57056, 73314, 53753, 40736], dtype=int64), array([57056, 73314, 53753, 40736, 47409], dtype=int64), array([73314, 53753, 40736, 47409, 25240], dtype=int64), array([53753, 40736, 47409, 25240, 61588], dtype=int64), array([40736, 47409, 25240, 61588, 52280], dtype=int64), array([47409, 25240, 61588, 52280, 20733], dtype=int64), array([25240, 61588, 52280, 20733, 53750], dtype=int64), array([61588, 52280, 20733, 53750, 61686], dtype=int64), array([52280, 20733, 53750, 61686, 61919], dtype=int64), array([20733, 53750, 61686, 61919, 48552], dtype=int64), array([53750, 61686, 61919, 48552, 19246], dtype=int64), array([61686, 61919, 48552, 19246, 64392], dtype=int64), array([61919, 48552, 19246, 64392, 64984], dtype=int64), array([48552, 19246, 64392, 64984, 76728], dtype=int64), array([19246, 64392, 64984, 76728, 53750], dtype=int64), array([64392, 64984, 76728, 53750, 51547], dtype=int64), array([64984, 76728, 53750, 51547, 62078], dtype=int64), array([76728, 53750, 51547, 62078, 76438], dtype=int64), array([53750, 51547, 62078, 76438, 53351], dtype=int64), array([51547, 62078, 76438, 53351, 73071], dtype=int64), array([62078, 76438, 53351, 73071, 67839], dtype=int64), array([76438, 53351, 73071, 67839, 47079], dtype=int64), array([53351, 73071, 67839, 47079, 59117], dtype=int64), array([73071, 67839, 47079, 59117, 14991], dtype=int64), array([67839, 47079, 59117, 14991, 10193], dtype=int64), array([47079, 59117, 14991, 10193, 56279], dtype=int64), array([59117, 14991, 10193, 56279, 52958], dtype=int64), array([14991, 10193, 56279, 52958, 39135], dtype=int64), array([10193, 56279, 52958, 39135, 38896], dtype=int64), array([56279, 52958, 39135, 38896, 42566], dtype=int64), array([52958, 39135, 38896, 42566, 53758], dtype=int64), array([39135, 38896, 42566, 53758, 61203], dtype=int64), array([38896, 42566, 53758, 61203, 49771], dtype=int64), array([42566, 53758, 61203, 49771, 66524], dtype=int64), array([53758, 61203, 49771, 66524, 62766], dtype=int64), array([61203, 49771, 66524, 62766, 45268], dtype=int64), array([49771, 66524, 62766, 45268, 37264], dtype=int64), array([66524, 62766, 45268, 37264, 77657], dtype=int64), array([62766, 45268, 37264, 77657, 59602], dtype=int64), array([45268, 37264, 77657, 59602, 52349], dtype=int64), array([37264, 77657, 59602, 52349, 59098], dtype=int64), array([77657, 59602, 52349, 59098, 48445], dtype=int64), array([59602, 52349, 59098, 48445, 11328], dtype=int64), array([52349, 59098, 48445, 11328, 18440], dtype=int64), array([59098, 48445, 11328, 18440, 21248], dtype=int64), array([48445, 11328, 18440, 21248, 36870], dtype=int64), array([11328, 18440, 21248, 36870, 36804], dtype=int64), array([18440, 21248, 36870, 36804, 47364], dtype=int64), array([21248, 36870, 36804, 47364, 53750], dtype=int64), array([36870, 36804, 47364, 53750, 52573], dtype=int64), array([36804, 47364, 53750, 52573, 19246], dtype=int64), array([47364, 53750, 52573, 19246, 76329], dtype=int64), array([53750, 52573, 19246, 76329, 56725], dtype=int64), array([52573, 19246, 76329, 56725, 54026], dtype=int64), array([19246, 76329, 56725, 54026, 37576], dtype=int64), array([76329, 56725, 54026, 37576, 59510], dtype=int64), array([56725, 54026, 37576, 59510, 76243], dtype=int64), array([54026, 37576, 59510, 76243, 73244], dtype=int64), array([37576, 59510, 76243, 73244, 38146], dtype=int64), array([59510, 76243, 73244, 38146, 56319], dtype=int64), array([76243, 73244, 38146, 56319, 26149], dtype=int64), array([73244, 38146, 56319, 26149, 14501], dtype=int64), array([38146, 56319, 26149, 14501, 77657], dtype=int64), array([56319, 26149, 14501, 77657, 43446], dtype=int64), array([26149, 14501, 77657, 43446, 77698], dtype=int64), array([14501, 77657, 43446, 77698, 53375], dtype=int64), array([77657, 43446, 77698, 53375, 37576], dtype=int64), array([43446, 77698, 53375, 37576, 57056], dtype=int64), array([77698, 53375, 37576, 57056, 73071], dtype=int64), array([53375, 37576, 57056, 73071, 46541], dtype=int64), array([37576, 57056, 73071, 46541, 42830], dtype=int64), array([57056, 73071, 46541, 42830, 52573], dtype=int64), array([73071, 46541, 42830, 52573, 55038], dtype=int64), array([46541, 42830, 52573, 55038, 21607], dtype=int64), array([42830, 52573, 55038, 21607, 48059], dtype=int64), array([52573, 55038, 21607, 48059, 52573], dtype=int64), array([55038, 21607, 48059, 52573, 22998], dtype=int64), array([21607, 48059, 52573, 22998, 76247], dtype=int64), array([48059, 52573, 22998, 76247, 73639], dtype=int64), array([52573, 22998, 76247, 73639, 72548], dtype=int64), array([22998, 76247, 73639, 72548, 73639], dtype=int64), array([76247, 73639, 72548, 73639, 77657], dtype=int64), array([73639, 72548, 73639, 77657, 38146], dtype=int64), array([72548, 73639, 77657, 38146, 73071], dtype=int64), array([73639, 77657, 38146, 73071, 64916], dtype=int64), array([77657, 38146, 73071, 64916, 37585], dtype=int64), array([38146, 73071, 64916, 37585, 44817], dtype=int64), array([73071, 64916, 37585, 44817, 40230], dtype=int64), array([64916, 37585, 44817, 40230, 53590], dtype=int64), array([37585, 44817, 40230, 53590, 45057], dtype=int64), array([44817, 40230, 53590, 45057, 56325], dtype=int64), array([40230, 53590, 45057, 56325, 53301], dtype=int64), array([53590, 45057, 56325, 53301, 44017], dtype=int64), array([45057, 56325, 53301, 44017, 19516], dtype=int64), array([56325, 53301, 44017, 19516, 21248], dtype=int64), array([53301, 44017, 19516, 21248, 19502], dtype=int64), array([44017, 19516, 21248, 19502, 72277], dtype=int64), array([19516, 21248, 19502, 72277, 43597], dtype=int64), array([21248, 19502, 72277, 43597, 25561], dtype=int64), array([19502, 72277, 43597, 25561, 38688], dtype=int64), array([72277, 43597, 25561, 38688, 68003], dtype=int64), array([43597, 25561, 38688, 68003, 20176], dtype=int64), array([25561, 38688, 68003, 20176, 52750], dtype=int64), array([38688, 68003, 20176, 52750, 52680], dtype=int64), array([68003, 20176, 52750, 52680, 69141], dtype=int64), array([20176, 52750, 52680, 69141, 39962], dtype=int64), array([52750, 52680, 69141, 39962, 40957], dtype=int64), array([52680, 69141, 39962, 40957, 73071], dtype=int64), array([69141, 39962, 40957, 73071, 28430], dtype=int64), array([39962, 40957, 73071, 28430, 53282], dtype=int64), array([40957, 73071, 28430, 53282, 60968], dtype=int64), array([73071, 28430, 53282, 60968, 77570], dtype=int64), array([28430, 53282, 60968, 77570, 25849], dtype=int64), array([53282, 60968, 77570, 25849, 20778], dtype=int64), array([60968, 77570, 25849, 20778, 52183], dtype=int64), array([77570, 25849, 20778, 52183, 46026], dtype=int64), array([25849, 20778, 52183, 46026, 57856], dtype=int64), array([20778, 52183, 46026, 57856, 42566], dtype=int64), array([52183, 46026, 57856, 42566, 20166], dtype=int64), array([46026, 57856, 42566, 20166, 40736], dtype=int64), array([57856, 42566, 20166, 40736, 57803], dtype=int64), array([42566, 20166, 40736, 57803, 76478], dtype=int64), array([20166, 40736, 57803, 76478, 75064], dtype=int64), array([40736, 57803, 76478, 75064, 39181], dtype=int64), array([57803, 76478, 75064, 39181, 71675], dtype=int64), array([76478, 75064, 39181, 71675, 28934], dtype=int64), array([75064, 39181, 71675, 28934, 19141], dtype=int64), array([39181, 71675, 28934, 19141, 32361], dtype=int64), array([71675, 28934, 19141, 32361, 77567], dtype=int64), array([28934, 19141, 32361, 77567, 20176], dtype=int64), array([19141, 32361, 77567, 20176, 52750], dtype=int64), array([32361, 77567, 20176, 52750, 73071], dtype=int64), array([77567, 20176, 52750, 73071, 31319], dtype=int64), array([20176, 52750, 73071, 31319, 43169], dtype=int64), array([52750, 73071, 31319, 43169, 73221], dtype=int64), array([73071, 31319, 43169, 73221, 52638], dtype=int64), array([31319, 43169, 73221, 52638, 39181], dtype=int64), array([43169, 73221, 52638, 39181, 73071], dtype=int64), array([73221, 52638, 39181, 73071, 74435], dtype=int64), array([52638, 39181, 73071, 74435, 70190], dtype=int64), array([39181, 73071, 74435, 70190, 52386], dtype=int64), array([73071, 74435, 70190, 52386, 73054], dtype=int64), array([74435, 70190, 52386, 73054, 52674], dtype=int64), array([70190, 52386, 73054, 52674, 40736], dtype=int64), array([52386, 73054, 52674, 40736, 54711], dtype=int64), array([73054, 52674, 40736, 54711, 8151], dtype=int64), array([52674, 40736, 54711, 8151, 73114], dtype=int64), array([40736, 54711, 8151, 73114, 20167], dtype=int64), array([54711, 8151, 73114, 20167, 75356], dtype=int64), array([ 8151, 73114, 20167, 75356, 51376], dtype=int64), array([73114, 20167, 75356, 51376, 39135], dtype=int64), array([20167, 75356, 51376, 39135, 38418], dtype=int64), array([75356, 51376, 39135, 38418, 51376], dtype=int64), array([51376, 39135, 38418, 51376, 28934], dtype=int64), array([39135, 38418, 51376, 28934, 19141], dtype=int64), array([38418, 51376, 28934, 19141, 60968], dtype=int64), array([51376, 28934, 19141, 60968, 76515], dtype=int64), array([28934, 19141, 60968, 76515, 19844], dtype=int64), array([19141, 60968, 76515, 19844, 16095], dtype=int64), array([60968, 76515, 19844, 16095, 32361], dtype=int64), array([76515, 19844, 16095, 32361, 77657], dtype=int64), array([19844, 16095, 32361, 77657, 52638], dtype=int64), array([16095, 32361, 77657, 52638, 73639], dtype=int64), array([32361, 77657, 52638, 73639, 10142], dtype=int64), array([77657, 52638, 73639, 10142, 23281], dtype=int64), array([52638, 73639, 10142, 23281, 73221], dtype=int64), array([73639, 10142, 23281, 73221, 61739], dtype=int64), array([10142, 23281, 73221, 61739, 31033], dtype=int64), array([23281, 73221, 61739, 31033, 16162], dtype=int64), array([73221, 61739, 31033, 16162, 20778], dtype=int64), array([61739, 31033, 16162, 20778, 60132], dtype=int64), array([31033, 16162, 20778, 60132, 27741], dtype=int64), array([16162, 20778, 60132, 27741, 27503], dtype=int64), array([20778, 60132, 27741, 27503, 56279], dtype=int64), array([60132, 27741, 27503, 56279, 73046], dtype=int64), array([27741, 27503, 56279, 73046, 20778], dtype=int64), array([27503, 56279, 73046, 20778, 56725], dtype=int64), array([56279, 73046, 20778, 56725, 77657], dtype=int64), array([73046, 20778, 56725, 77657, 20733], dtype=int64), array([20778, 56725, 77657, 20733, 73046], dtype=int64), array([56725, 77657, 20733, 73046, 77166], dtype=int64), array([77657, 20733, 73046, 77166, 44712], dtype=int64), array([20733, 73046, 77166, 44712, 51820], dtype=int64), array([73046, 77166, 44712, 51820, 58200], dtype=int64), array([77166, 44712, 51820, 58200, 61919], dtype=int64), array([44712, 51820, 58200, 61919, 56279], dtype=int64), array([51820, 58200, 61919, 56279, 56319], dtype=int64), array([58200, 61919, 56279, 56319, 56725], dtype=int64), array([61919, 56279, 56319, 56725, 59098], dtype=int64), array([56279, 56319, 56725, 59098, 26149], dtype=int64), array([56319, 56725, 59098, 26149, 56725], dtype=int64), array([56725, 59098, 26149, 56725, 76258], dtype=int64), array([59098, 26149, 56725, 76258, 36738], dtype=int64), array([26149, 56725, 76258, 36738, 34658], dtype=int64), array([56725, 76258, 36738, 34658, 44714], dtype=int64), array([76258, 36738, 34658, 44714, 46351], dtype=int64), array([36738, 34658, 44714, 46351, 59098], dtype=int64), array([34658, 44714, 46351, 59098, 34658], dtype=int64), array([44714, 46351, 59098, 34658, 68566], dtype=int64), array([46351, 59098, 34658, 68566, 59098], dtype=int64), array([59098, 34658, 68566, 59098, 73639], dtype=int64), array([34658, 68566, 59098, 73639, 73136], dtype=int64), array([68566, 59098, 73639, 73136, 51445], dtype=int64), array([59098, 73639, 73136, 51445, 36738], dtype=int64), array([73639, 73136, 51445, 36738, 56725], dtype=int64), array([73136, 51445, 36738, 56725, 76258], dtype=int64), array([51445, 36738, 56725, 76258, 37576], dtype=int64), array([36738, 56725, 76258, 37576, 68697], dtype=int64), array([56725, 76258, 37576, 68697, 59098], dtype=int64), array([76258, 37576, 68697, 59098, 75356], dtype=int64), array([37576, 68697, 59098, 75356, 22760], dtype=int64), array([68697, 59098, 75356, 22760, 52573], dtype=int64), array([59098, 75356, 22760, 52573, 32361], dtype=int64), array([75356, 22760, 52573, 32361, 47364], dtype=int64), array([22760, 52573, 32361, 47364, 77657], dtype=int64), array([52573, 32361, 47364, 77657, 37576], dtype=int64), array([32361, 47364, 77657, 37576, 58174], dtype=int64), array([47364, 77657, 37576, 58174, 40804], dtype=int64), array([77657, 37576, 58174, 40804, 57300], dtype=int64), array([37576, 58174, 40804, 57300, 61019], dtype=int64), array([58174, 40804, 57300, 61019, 77657], dtype=int64), array([40804, 57300, 61019, 77657, 57056], dtype=int64), array([57300, 61019, 77657, 57056, 53165], dtype=int64), array([61019, 77657, 57056, 53165, 20166], dtype=int64), array([77657, 57056, 53165, 20166, 60923], dtype=int64), array([57056, 53165, 20166, 60923, 57056], dtype=int64), array([53165, 20166, 60923, 57056, 76948], dtype=int64), array([20166, 60923, 57056, 76948, 26273], dtype=int64), array([60923, 57056, 76948, 26273, 38896], dtype=int64), array([57056, 76948, 26273, 38896, 49971], dtype=int64), array([76948, 26273, 38896, 49971, 39602], dtype=int64), array([26273, 38896, 49971, 39602, 52680], dtype=int64), array([38896, 49971, 39602, 52680, 9820], dtype=int64), array([49971, 39602, 52680, 9820, 37576], dtype=int64), array([39602, 52680, 9820, 37576, 42835], dtype=int64), array([52680, 9820, 37576, 42835, 39027], dtype=int64), array([ 9820, 37576, 42835, 39027, 74393], dtype=int64), array([37576, 42835, 39027, 74393, 73071], dtype=int64), array([42835, 39027, 74393, 73071, 63118], dtype=int64), array([39027, 74393, 73071, 63118, 77657], dtype=int64), array([74393, 73071, 63118, 77657, 76247], dtype=int64), array([73071, 63118, 77657, 76247, 73639], dtype=int64), array([63118, 77657, 76247, 73639, 18138], dtype=int64), array([77657, 76247, 73639, 18138, 77673], dtype=int64), array([76247, 73639, 18138, 77673, 56725], dtype=int64), array([73639, 18138, 77673, 56725, 57803], dtype=int64), array([18138, 77673, 56725, 57803, 54177], dtype=int64), array([77673, 56725, 57803, 54177, 21443], dtype=int64), array([56725, 57803, 54177, 21443, 56787], dtype=int64), array([57803, 54177, 21443, 56787, 59098], dtype=int64), array([54177, 21443, 56787, 59098, 58077], dtype=int64), array([21443, 56787, 59098, 58077, 40214], dtype=int64), array([56787, 59098, 58077, 40214, 55314], dtype=int64), array([59098, 58077, 40214, 55314, 73071], dtype=int64), array([58077, 40214, 55314, 73071, 46424], dtype=int64), array([40214, 55314, 73071, 46424, 70143], dtype=int64), array([55314, 73071, 46424, 70143, 42835], dtype=int64), array([73071, 46424, 70143, 42835, 49968], dtype=int64), array([46424, 70143, 42835, 49968, 39382], dtype=int64), array([70143, 42835, 49968, 39382, 51376], dtype=int64), array([42835, 49968, 39382, 51376, 60542], dtype=int64), array([49968, 39382, 51376, 60542, 53165], dtype=int64), array([39382, 51376, 60542, 53165, 73314], dtype=int64), array([51376, 60542, 53165, 73314, 76329], dtype=int64), array([60542, 53165, 73314, 76329, 65031], dtype=int64), array([53165, 73314, 76329, 65031, 77657], dtype=int64), array([73314, 76329, 65031, 77657, 20167], dtype=int64), array([76329, 65031, 77657, 20167, 61203], dtype=int64), array([65031, 77657, 20167, 61203, 71713], dtype=int64), array([77657, 20167, 61203, 71713, 49346], dtype=int64), array([20167, 61203, 71713, 49346, 73639], dtype=int64), array([61203, 71713, 49346, 73639, 66682], dtype=int64), array([71713, 49346, 73639, 66682, 77698], dtype=int64), array([49346, 73639, 66682, 77698, 59807], dtype=int64), array([73639, 66682, 77698, 59807, 34305], dtype=int64), array([66682, 77698, 59807, 34305, 61203], dtype=int64), array([77698, 59807, 34305, 61203, 26149], dtype=int64), array([59807, 34305, 61203, 26149, 77657], dtype=int64), array([34305, 61203, 26149, 77657, 47376], dtype=int64), array([61203, 26149, 77657, 47376, 20316], dtype=int64), array([26149, 77657, 47376, 20316, 77657], dtype=int64), array([77657, 47376, 20316, 77657, 65965], dtype=int64), array([47376, 20316, 77657, 65965, 73314], dtype=int64), array([20316, 77657, 65965, 73314, 45544], dtype=int64), array([77657, 65965, 73314, 45544, 58634], dtype=int64), array([65965, 73314, 45544, 58634, 60535], dtype=int64), array([73314, 45544, 58634, 60535, 62366], dtype=int64), array([45544, 58634, 60535, 62366, 46651], dtype=int64), array([58634, 60535, 62366, 46651, 77657], dtype=int64), array([60535, 62366, 46651, 77657, 77346], dtype=int64), array([62366, 46651, 77657, 77346, 57610], dtype=int64), array([46651, 77657, 77346, 57610, 59098], dtype=int64), array([77657, 77346, 57610, 59098, 52573], dtype=int64), array([77346, 57610, 59098, 52573, 62078], dtype=int64), array([57610, 59098, 52573, 62078, 77096], dtype=int64), array([59098, 52573, 62078, 77096, 54177], dtype=int64), array([52573, 62078, 77096, 54177, 55872], dtype=int64), array([62078, 77096, 54177, 55872, 61588], dtype=int64), array([77096, 54177, 55872, 61588, 53974], dtype=int64), array([54177, 55872, 61588, 53974, 13803], dtype=int64), array([55872, 61588, 53974, 13803, 54304], dtype=int64), array([61588, 53974, 13803, 54304, 59098], dtype=int64), array([53974, 13803, 54304, 59098, 54576], dtype=int64), array([13803, 54304, 59098, 54576, 76258], dtype=int64), array([54304, 59098, 54576, 76258, 73639], dtype=int64), array([59098, 54576, 76258, 73639, 57610], dtype=int64), array([54576, 76258, 73639, 57610, 77657], dtype=int64), array([76258, 73639, 57610, 77657, 58634], dtype=int64), array([73639, 57610, 77657, 58634, 75356], dtype=int64), array([57610, 77657, 58634, 75356, 77698], dtype=int64), array([77657, 58634, 75356, 77698, 62366], dtype=int64), array([58634, 75356, 77698, 62366, 59602], dtype=int64), array([75356, 77698, 62366, 59602, 38146], dtype=int64), array([77698, 62366, 59602, 38146, 54177], dtype=int64), array([62366, 59602, 38146, 54177, 36913], dtype=int64), array([59602, 38146, 54177, 36913, 47376], dtype=int64), array([38146, 54177, 36913, 47376, 77657], dtype=int64), array([54177, 36913, 47376, 77657, 72833], dtype=int64), array([36913, 47376, 77657, 72833, 59098], dtype=int64), array([47376, 77657, 72833, 59098, 7729], dtype=int64), array([77657, 72833, 59098, 7729, 73046], dtype=int64), array([72833, 59098, 7729, 73046, 72359], dtype=int64), array([59098, 7729, 73046, 72359, 20161], dtype=int64), array([ 7729, 73046, 72359, 20161, 60923], dtype=int64), array([73046, 72359, 20161, 60923, 47997], dtype=int64), array([72359, 20161, 60923, 47997, 39382], dtype=int64), array([20161, 60923, 47997, 39382, 56725], dtype=int64), array([60923, 47997, 39382, 56725, 40815], dtype=int64), array([47997, 39382, 56725, 40815, 1845], dtype=int64), array([39382, 56725, 40815, 1845, 49042], dtype=int64), array([56725, 40815, 1845, 49042, 76329], dtype=int64), array([40815, 1845, 49042, 76329, 48089], dtype=int64), array([ 1845, 49042, 76329, 48089, 56319], dtype=int64), array([49042, 76329, 48089, 56319, 8151], dtype=int64), array([76329, 48089, 56319, 8151, 53718], dtype=int64), array([48089, 56319, 8151, 53718, 69463], dtype=int64), array([56319, 8151, 53718, 69463, 16113], dtype=int64), array([ 8151, 53718, 69463, 16113, 51376], dtype=int64), array([53718, 69463, 16113, 51376, 10143], dtype=int64), array([69463, 16113, 51376, 10143, 62766], dtype=int64), array([16113, 51376, 10143, 62766, 39181], dtype=int64), array([51376, 10143, 62766, 39181, 60535], dtype=int64), array([10143, 62766, 39181, 60535, 71704], dtype=int64), array([62766, 39181, 60535, 71704, 52154], dtype=int64), array([39181, 60535, 71704, 52154, 56075], dtype=int64), array([60535, 71704, 52154, 56075, 47815], dtype=int64), array([71704, 52154, 56075, 47815, 10885], dtype=int64), array([52154, 56075, 47815, 10885, 21443], dtype=int64), array([56075, 47815, 10885, 21443, 61751], dtype=int64), array([47815, 10885, 21443, 61751, 7732], dtype=int64), array([10885, 21443, 61751, 7732, 73710], dtype=int64), array([21443, 61751, 7732, 73710, 54177], dtype=int64), array([61751, 7732, 73710, 54177, 47376], dtype=int64), array([ 7732, 73710, 54177, 47376, 76247], dtype=int64), array([73710, 54177, 47376, 76247, 73639], dtype=int64), array([54177, 47376, 76247, 73639, 39372], dtype=int64), array([47376, 76247, 73639, 39372, 76347], dtype=int64), array([76247, 73639, 39372, 76347, 65939], dtype=int64), array([73639, 39372, 76347, 65939, 19246], dtype=int64), array([39372, 76347, 65939, 19246, 52750], dtype=int64), array([76347, 65939, 19246, 52750, 63687], dtype=int64), array([65939, 19246, 52750, 63687, 34347], dtype=int64), array([19246, 52750, 63687, 34347, 53750], dtype=int64), array([52750, 63687, 34347, 53750, 42187], dtype=int64), array([63687, 34347, 53750, 42187, 75356], dtype=int64), array([34347, 53750, 42187, 75356, 77096], dtype=int64), array([53750, 42187, 75356, 77096, 59098], dtype=int64), array([42187, 75356, 77096, 59098, 37576], dtype=int64), array([75356, 77096, 59098, 37576, 47364], dtype=int64), array([77096, 59098, 37576, 47364, 76660], dtype=int64), array([59098, 37576, 47364, 76660, 19246], dtype=int64), array([37576, 47364, 76660, 19246, 67762], dtype=int64), array([47364, 76660, 19246, 67762, 49714], dtype=int64), array([76660, 19246, 67762, 49714, 76329], dtype=int64), array([19246, 67762, 49714, 76329, 48089], dtype=int64), array([67762, 49714, 76329, 48089, 56319], dtype=int64), array([49714, 76329, 48089, 56319, 32361], dtype=int64), array([76329, 48089, 56319, 32361, 47364], dtype=int64), array([48089, 56319, 32361, 47364, 56319], dtype=int64), ...]