Introduction

Basket analysis is often used to discover relationships between items in transactional data. It is commonly applied in retail to identify purchasing patterns and generate actionable insights, such as cross-selling strategies or product placement optimization. By analyzing transaction data, basket analysis seeks to uncover associations or correlations between products that are frequently bought together.

For this project, I am using a dataset sourced from Kaggle: “https://www.kaggle.com/datasets/rukenmissonnier/real-market-data”. This dataset provides real-world transactional data, ideal for exploring association rules.

Association rules

Association rules are a fundamental concept in data mining and machine learning, designed to identify interesting relationships between variables in large datasets. The process involves three main metrics to evaluate the strength and usefulness of these rules: support, confidence and lift. By uncovering hidden patterns and relationships in data, association rules provide valuable insights that drive strategic decision-making.

Preprocessing

First step in the project is to load the data, check its structure and summarize.

market <- read.csv("market.csv", sep = ";")
summary(market)
##      Bread            Honey            Bacon         Toothpaste    
##  Min.   :0.0000   Min.   :0.0000   Min.   :0.000   Min.   :0.0000  
##  1st Qu.:0.0000   1st Qu.:0.0000   1st Qu.:0.000   1st Qu.:0.0000  
##  Median :0.0000   Median :0.0000   Median :0.000   Median :0.0000  
##  Mean   :0.4073   Mean   :0.4159   Mean   :0.431   Mean   :0.3836  
##  3rd Qu.:1.0000   3rd Qu.:1.0000   3rd Qu.:1.000   3rd Qu.:1.0000  
##  Max.   :1.0000   Max.   :1.0000   Max.   :1.000   Max.   :1.0000  
##      Banana           Apple           Hazelnut          Cheese     
##  Min.   :0.0000   Min.   :0.0000   Min.   :0.0000   Min.   :0.000  
##  1st Qu.:0.0000   1st Qu.:0.0000   1st Qu.:0.0000   1st Qu.:0.000  
##  Median :0.0000   Median :0.0000   Median :0.0000   Median :0.000  
##  Mean   :0.4483   Mean   :0.4052   Mean   :0.4203   Mean   :0.444  
##  3rd Qu.:1.0000   3rd Qu.:1.0000   3rd Qu.:1.0000   3rd Qu.:1.000  
##  Max.   :1.0000   Max.   :1.0000   Max.   :1.0000   Max.   :1.000  
##       Meat            Carrot          Cucumber          Onion       
##  Min.   :0.0000   Min.   :0.0000   Min.   :0.0000   Min.   :0.0000  
##  1st Qu.:0.0000   1st Qu.:0.0000   1st Qu.:0.0000   1st Qu.:0.0000  
##  Median :0.0000   Median :0.0000   Median :0.0000   Median :0.0000  
##  Mean   :0.3879   Mean   :0.4138   Mean   :0.3815   Mean   :0.3793  
##  3rd Qu.:1.0000   3rd Qu.:1.0000   3rd Qu.:1.0000   3rd Qu.:1.0000  
##  Max.   :1.0000   Max.   :1.0000   Max.   :1.0000   Max.   :1.0000  
##       Milk            Butter       ShavingFoam          Salt       
##  Min.   :0.0000   Min.   :0.000   Min.   :0.0000   Min.   :0.0000  
##  1st Qu.:0.0000   1st Qu.:0.000   1st Qu.:0.0000   1st Qu.:0.0000  
##  Median :0.0000   Median :0.000   Median :0.0000   Median :0.0000  
##  Mean   :0.3707   Mean   :0.375   Mean   :0.4052   Mean   :0.3987  
##  3rd Qu.:1.0000   3rd Qu.:1.000   3rd Qu.:1.0000   3rd Qu.:1.0000  
##  Max.   :1.0000   Max.   :1.000   Max.   :1.0000   Max.   :1.0000  
##      Flour          HeavyCream          Egg            Olive       
##  Min.   :0.0000   Min.   :0.0000   Min.   :0.000   Min.   :0.0000  
##  1st Qu.:0.0000   1st Qu.:0.0000   1st Qu.:0.000   1st Qu.:0.0000  
##  Median :0.0000   Median :0.0000   Median :0.000   Median :0.0000  
##  Mean   :0.3858   Mean   :0.4159   Mean   :0.403   Mean   :0.3815  
##  3rd Qu.:1.0000   3rd Qu.:1.0000   3rd Qu.:1.000   3rd Qu.:1.0000  
##  Max.   :1.0000   Max.   :1.0000   Max.   :1.000   Max.   :1.0000  
##     Shampoo           Sugar       
##  Min.   :0.0000   Min.   :0.0000  
##  1st Qu.:0.0000   1st Qu.:0.0000  
##  Median :0.0000   Median :0.0000  
##  Mean   :0.3664   Mean   :0.3664  
##  3rd Qu.:1.0000   3rd Qu.:1.0000  
##  Max.   :1.0000   Max.   :1.0000
str(market)
## 'data.frame':    464 obs. of  22 variables:
##  $ Bread      : int  1 1 0 1 0 0 0 0 0 0 ...
##  $ Honey      : int  0 1 1 1 1 1 0 0 1 0 ...
##  $ Bacon      : int  1 1 1 0 0 0 1 1 1 0 ...
##  $ Toothpaste : int  0 0 1 1 0 1 0 1 0 0 ...
##  $ Banana     : int  1 1 1 0 0 0 1 1 1 0 ...
##  $ Apple      : int  1 1 1 1 0 0 1 0 1 0 ...
##  $ Hazelnut   : int  1 1 1 0 0 1 0 1 1 0 ...
##  $ Cheese     : int  0 0 1 0 0 0 0 0 1 0 ...
##  $ Meat       : int  0 0 1 0 0 0 0 0 1 0 ...
##  $ Carrot     : int  1 0 0 0 0 0 1 0 1 0 ...
##  $ Cucumber   : int  0 1 1 1 0 0 0 1 0 0 ...
##  $ Onion      : int  0 0 1 1 0 1 0 1 1 1 ...
##  $ Milk       : int  0 1 1 1 0 0 0 0 0 1 ...
##  $ Butter     : int  0 1 0 0 0 0 0 0 1 0 ...
##  $ ShavingFoam: int  0 0 1 0 0 1 0 0 1 0 ...
##  $ Salt       : int  0 0 1 0 0 0 1 1 0 1 ...
##  $ Flour      : int  0 1 1 1 0 0 0 0 0 1 ...
##  $ HeavyCream : int  1 0 1 0 0 0 1 0 1 1 ...
##  $ Egg        : int  1 0 1 1 0 0 0 1 1 0 ...
##  $ Olive      : int  0 1 0 1 0 0 0 0 1 0 ...
##  $ Shampoo    : int  0 1 0 1 0 0 0 0 0 1 ...
##  $ Sugar      : int  1 0 1 0 0 1 0 0 0 0 ...

The statistics indicate that all products fall within the range of 0 and 1, which aligns with the dataset’s binary structure based on 0-1 logic. The structure of the data proves it.

To simplify working with the data, I decided to reorganize it so that, instead of 0s and 1s in the columns, the product names themselves are displayed.

columns <- c("Bread", "Honey", "Bacon", "Toothpaste", "Banana", "Apple", "Hazelnut", 
             "Cheese", "Meat", "Carrot", "Cucumber", "Onion", "Milk", "Butter", 
             "ShavingFoam", "Salt", "Flour", "HeavyCream", "Egg", "Olive", "Shampoo", "Sugar")

market_transformed <- as.data.frame(lapply(columns, function(col) {
  ifelse(market[[col]] == 1, col, "")
}))

colnames(market_transformed) <- columns
basket_data <- apply(market_transformed, 1, function(row) {
  paste(row[row != ""], collapse = ",")
})

A new CSV file has been created and it’s going to be assigned to a new variable with a basket format.

writeLines(basket_data, "market_basket.csv")

The next step will be to analyze and summarize the transactions, providing insights into the overall structure and key patterns in the data.

library(arules)
## Warning: pakiet 'arules' został zbudowany w wersji R 4.4.2
## Ładowanie wymaganego pakietu: Matrix
## 
## Dołączanie pakietu: 'arules'
## Następujące obiekty zostały zakryte z 'package:base':
## 
##     abbreviate, write
transaction <- read.transactions("market_basket.csv", format = "basket", sep = ",")
summary(transaction)
## transactions as itemMatrix in sparse format with
##  464 rows (elements/itemsets/transactions) and
##  22 columns (items) and a density of 0.3993926 
## 
## most frequent items:
##     Banana     Cheese      Bacon   Hazelnut HeavyCream    (Other) 
##        208        206        200        195        193       3075 
## 
## element (itemset/transaction) length distribution:
## sizes
##  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 
## 19 22 11 30 33 28 25 35 37 45 42 43 41 27 18  5  3 
## 
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   1.000   6.000   9.000   8.787  12.000  17.000 
## 
## includes extended item information - examples:
##   labels
## 1  Apple
## 2  Bacon
## 3 Banana

The inspect function lists the transactions.

inspect(transaction)
##       items         
## [1]   {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Sugar}       
## [2]   {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Olive,       
##        Shampoo}     
## [3]   {Apple,       
##        Bacon,       
##        Banana,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [4]   {Apple,       
##        Bread,       
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [5]   {Honey}       
## [6]   {Hazelnut,    
##        Honey,       
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [7]   {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        HeavyCream,  
##        Salt}        
## [8]   {Bacon,       
##        Banana,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [9]   {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        ShavingFoam} 
## [10]  {Flour,       
##        HeavyCream,  
##        Milk,        
##        Onion,       
##        Salt,        
##        Shampoo}     
## [11]  {Apple,       
##        Bacon,       
##        Butter,      
##        Carrot,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Olive,       
##        Toothpaste}  
## [12]  {Bacon,       
##        Butter,      
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Onion,       
##        Sugar,       
##        Toothpaste}  
## [13]  {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Egg,         
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [14]  {Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Olive,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [15]  {Banana,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Olive,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [16]  {Bacon,       
##        Flour,       
##        Milk,        
##        Shampoo}     
## [17]  {Cucumber,    
##        Flour,       
##        Toothpaste}  
## [18]  {Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam} 
## [19]  {Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [20]  {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [21]  {Cheese,      
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [22]  {Banana,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt}        
## [23]  {Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Honey,       
##        Onion,       
##        ShavingFoam, 
##        Toothpaste}  
## [24]  {Carrot,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [25]  {Banana,      
##        Cheese,      
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Toothpaste}  
## [26]  {Apple,       
##        Bacon,       
##        Butter,      
##        Cheese,      
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [27]  {Cheese,      
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Shampoo}     
## [28]  {Apple,       
##        Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [29]  {Bacon,       
##        Bread,       
##        Cheese,      
##        Cucumber,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [30]  {Apple,       
##        Bread,       
##        Carrot,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Salt,        
##        Shampoo}     
## [31]  {Apple,       
##        Bacon,       
##        Butter,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Meat,        
##        Olive,       
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [32]  {Apple,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Toothpaste}  
## [33]  {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [34]  {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt}        
## [35]  {Bacon,       
##        Banana,      
##        Bread,       
##        Cucumber,    
##        Hazelnut,    
##        Meat,        
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [36]  {Apple,       
##        Bacon,       
##        Bread,       
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [37]  {Bread,       
##        Cheese,      
##        Egg,         
##        Flour,       
##        Milk,        
##        Salt,        
##        Toothpaste}  
## [38]  {Bacon,       
##        Olive}       
## [39]  {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Hazelnut,    
##        Olive,       
##        ShavingFoam, 
##        Toothpaste}  
## [40]  {Apple,       
##        Banana,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        Meat,        
##        Salt,        
##        Sugar}       
## [41]  {Cucumber,    
##        HeavyCream,  
##        Salt,        
##        Sugar}       
## [42]  {Apple,       
##        HeavyCream,  
##        Milk,        
##        Olive}       
## [43]  {Bread,       
##        Cheese,      
##        Flour,       
##        Olive,       
##        Onion}       
## [44]  {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt}        
## [45]  {Apple,       
##        Banana,      
##        Carrot,      
##        Flour,       
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        Toothpaste}  
## [46]  {Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Olive,       
##        ShavingFoam} 
## [47]  {Bacon}       
## [48]  {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [49]  {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Meat,        
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [50]  {Bread,       
##        Butter,      
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [51]  {Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Meat,        
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [52]  {Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Meat,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [53]  {Apple,       
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Onion,       
##        Salt}        
## [54]  {Apple,       
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Salt}        
## [55]  {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Egg,         
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [56]  {Apple,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Milk,        
##        Onion,       
##        Shampoo}     
## [57]  {Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Meat,        
##        Olive,       
##        ShavingFoam} 
## [58]  {Bacon,       
##        Banana,      
##        Bread,       
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [59]  {Bacon,       
##        Cucumber,    
##        Shampoo}     
## [60]  {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [61]  {Bacon,       
##        Banana,      
##        Bread,       
##        Cheese,      
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        ShavingFoam} 
## [62]  {Bread,       
##        Butter,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [63]  {Carrot,      
##        Cheese,      
##        Cucumber,    
##        Honey,       
##        Onion,       
##        Shampoo}     
## [64]  {Bacon,       
##        Banana,      
##        Bread,       
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Sugar}       
## [65]  {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [66]  {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Onion,       
##        Shampoo,     
##        ShavingFoam} 
## [67]  {Cheese,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [68]  {Apple,       
##        Banana,      
##        Butter,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Meat,        
##        Olive,       
##        Toothpaste}  
## [69]  {Apple,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam} 
## [70]  {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [71]  {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [72]  {Apple,       
##        Butter,      
##        Honey,       
##        Meat,        
##        Olive,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [73]  {Bacon,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        ShavingFoam, 
##        Toothpaste}  
## [74]  {Apple,       
##        Bacon,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Olive,       
##        Sugar,       
##        Toothpaste}  
## [75]  {Cucumber,    
##        Hazelnut,    
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo}     
## [76]  {Carrot,      
##        Hazelnut,    
##        HeavyCream,  
##        Milk}        
## [77]  {Bacon}       
## [78]  {Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Sugar,       
##        Toothpaste}  
## [79]  {Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [80]  {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Honey,       
##        Olive,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [81]  {Bread,       
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        Milk,        
##        Olive,       
##        Shampoo}     
## [82]  {Apple,       
##        Bread,       
##        Cheese,      
##        Flour,       
##        HeavyCream,  
##        Milk,        
##        Salt}        
## [83]  {Carrot,      
##        Flour}       
## [84]  {Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Honey}       
## [85]  {Apple,       
##        Banana,      
##        Butter,      
##        Flour,       
##        HeavyCream,  
##        ShavingFoam} 
## [86]  {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Hazelnut,    
##        HeavyCream,  
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [87]  {Carrot,      
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat}        
## [88]  {Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Shampoo,     
##        ShavingFoam} 
## [89]  {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [90]  {Bacon,       
##        Banana,      
##        Flour}       
## [91]  {Banana,      
##        Bread,       
##        Cheese,      
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [92]  {Butter,      
##        Cheese,      
##        Cucumber,    
##        Sugar}       
## [93]  {Bacon,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [94]  {Bacon,       
##        Carrot,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Olive,       
##        Shampoo,     
##        Sugar}       
## [95]  {Butter,      
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [96]  {Bread,       
##        Milk,        
##        Onion,       
##        ShavingFoam} 
## [97]  {Bacon,       
##        Bread,       
##        Butter,      
##        Cheese,      
##        Flour,       
##        Salt}        
## [98]  {Apple,       
##        Banana,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Onion,       
##        Sugar,       
##        Toothpaste}  
## [99]  {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [100] {Apple,       
##        Bread,       
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        Meat,        
##        Olive,       
##        Shampoo}     
## [101] {Apple,       
##        Banana,      
##        Carrot,      
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        ShavingFoam, 
##        Sugar}       
## [102] {Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Egg,         
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Toothpaste}  
## [103] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Milk,        
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [104] {Apple,       
##        Bread,       
##        Flour,       
##        HeavyCream,  
##        Salt}        
## [105] {Apple,       
##        Egg,         
##        HeavyCream,  
##        Honey}       
## [106] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Milk,        
##        Shampoo}     
## [107] {Apple,       
##        Bacon,       
##        Banana,      
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Sugar,       
##        Toothpaste}  
## [108] {Bacon,       
##        Butter}      
## [109] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Shampoo,     
##        ShavingFoam} 
## [110] {Apple,       
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Olive,       
##        Onion,       
##        Shampoo,     
##        Sugar}       
## [111] {Apple,       
##        Cheese,      
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Shampoo,     
##        Sugar}       
## [112] {Bacon,       
##        Banana,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Onion,       
##        ShavingFoam, 
##        Toothpaste}  
## [113] {Apple,       
##        Bacon,       
##        Cheese,      
##        Cucumber,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        ShavingFoam} 
## [114] {Bread,       
##        Carrot,      
##        Cheese,      
##        Flour,       
##        Toothpaste}  
## [115] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Flour,       
##        HeavyCream,  
##        Milk,        
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [116] {Bacon,       
##        Cheese,      
##        Honey,       
##        Shampoo}     
## [117] {Bread,       
##        Butter,      
##        Milk,        
##        Salt}        
## [118] {Butter,      
##        Carrot,      
##        HeavyCream,  
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [119] {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Shampoo,     
##        Sugar}       
## [120] {Bacon,       
##        Egg,         
##        Honey,       
##        Milk}        
## [121] {Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Shampoo}     
## [122] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Cheese,      
##        Cucumber,    
##        Honey,       
##        Meat,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [123] {Banana,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [124] {Bread,       
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        Honey,       
##        Salt,        
##        Toothpaste}  
## [125] {Bacon,       
##        Bread,       
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Olive}       
## [126] {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Onion,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [127] {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Salt}        
## [128] {Bacon,       
##        Banana,      
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [129] {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Toothpaste}  
## [130] {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Milk,        
##        Toothpaste}  
## [131] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [132] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Flour,       
##        Hazelnut,    
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [133] {Apple,       
##        Banana,      
##        Carrot,      
##        Egg,         
##        Milk,        
##        Shampoo,     
##        Toothpaste}  
## [134] {Apple,       
##        Bacon,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion}       
## [135] {Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Sugar}       
## [136] {Apple,       
##        Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [137] {Banana,      
##        Flour,       
##        Hazelnut,    
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [138] {Apple,       
##        Banana,      
##        Butter,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        Milk,        
##        Olive,       
##        Onion}       
## [139] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Shampoo,     
##        Sugar}       
## [140] {Apple,       
##        Bacon,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Meat,        
##        Milk,        
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [141] {Apple,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [142] {Banana,      
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive}       
## [143] {Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Olive,       
##        Salt,        
##        Toothpaste}  
## [144] {Banana,      
##        Bread,       
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Milk,        
##        Olive,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [145] {Apple,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion}       
## [146] {ShavingFoam} 
## [147] {Banana,      
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Salt}        
## [148] {Cheese,      
##        Sugar}       
## [149] {Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [150] {Olive}       
## [151] {Bacon,       
##        Carrot,      
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Shampoo,     
##        ShavingFoam} 
## [152] {Cheese,      
##        Hazelnut,    
##        Meat,        
##        Onion}       
## [153] {Bacon,       
##        Flour,       
##        Hazelnut,    
##        Salt}        
## [154] {Bacon,       
##        ShavingFoam, 
##        Sugar}       
## [155] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [156] {Cucumber,    
##        HeavyCream,  
##        Milk,        
##        Onion,       
##        ShavingFoam} 
## [157] {Flour}       
## [158] {Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Salt,        
##        ShavingFoam} 
## [159] {Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [160] {Bread,       
##        Cucumber,    
##        Egg,         
##        HeavyCream,  
##        Olive,       
##        Onion,       
##        Salt,        
##        Sugar}       
## [161] {Banana,      
##        Bread,       
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [162] {Banana,      
##        Bread,       
##        Meat,        
##        Shampoo,     
##        Sugar}       
## [163] {Apple,       
##        Cheese,      
##        HeavyCream,  
##        Honey,       
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [164] {Bacon,       
##        Banana,      
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Sugar,       
##        Toothpaste}  
## [165] {Apple,       
##        Bacon,       
##        Banana,      
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [166] {Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [167] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        ShavingFoam, 
##        Sugar}       
## [168] {Apple,       
##        Bacon,       
##        Carrot,      
##        Hazelnut,    
##        Onion}       
## [169] {Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Olive,       
##        ShavingFoam} 
## [170] {Apple,       
##        Bacon,       
##        Banana,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [171] {Bread,       
##        Cheese,      
##        Meat,        
##        Olive}       
## [172] {Apple,       
##        Carrot,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [173] {Milk}        
## [174] {Bacon,       
##        Flour,       
##        Hazelnut,    
##        Sugar}       
## [175] {Banana,      
##        Cheese,      
##        Cucumber,    
##        Shampoo,     
##        Toothpaste}  
## [176] {Apple,       
##        Bacon,       
##        Bread,       
##        Butter,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Meat,        
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [177] {Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Hazelnut,    
##        Meat,        
##        ShavingFoam} 
## [178] {Bacon,       
##        Banana,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Onion,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [179] {Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [180] {Bacon,       
##        Bread,       
##        Butter,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Onion,       
##        ShavingFoam} 
## [181] {Cheese,      
##        Egg,         
##        Flour,       
##        Meat,        
##        Toothpaste}  
## [182] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Milk,        
##        Olive,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [183] {Carrot,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Sugar}       
## [184] {Apple,       
##        Bacon,       
##        Honey,       
##        Meat,        
##        Olive}       
## [185] {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Onion,       
##        Toothpaste}  
## [186] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        ShavingFoam, 
##        Sugar}       
## [187] {Cucumber}    
## [188] {Apple,       
##        Bacon,       
##        Banana,      
##        Cheese,      
##        Egg,         
##        Honey,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [189] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Sugar}       
## [190] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Egg,         
##        Salt,        
##        ShavingFoam} 
## [191] {Apple,       
##        Bacon,       
##        Bread,       
##        Butter,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [192] {Banana,      
##        Onion}       
## [193] {Cheese,      
##        Flour,       
##        HeavyCream,  
##        Milk,        
##        Shampoo}     
## [194] {Apple,       
##        Banana,      
##        Bread,       
##        Cheese,      
##        Egg,         
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [195] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Onion}       
## [196] {Butter,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Shampoo}     
## [197] {Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Honey,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [198] {Banana,      
##        Egg,         
##        Honey,       
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam} 
## [199] {Bacon,       
##        Bread,       
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk}        
## [200] {Banana,      
##        Carrot,      
##        Cucumber,    
##        Olive,       
##        Salt}        
## [201] {Butter,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Olive,       
##        Onion,       
##        Shampoo}     
## [202] {Apple,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        HeavyCream,  
##        Olive,       
##        Onion,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [203] {Butter,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [204] {Bacon,       
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        HeavyCream,  
##        Honey,       
##        Meat}        
## [205] {Bacon}       
## [206] {Bacon,       
##        Flour,       
##        Hazelnut,    
##        ShavingFoam} 
## [207] {Cheese,      
##        Egg,         
##        Honey,       
##        Salt,        
##        Toothpaste}  
## [208] {Apple,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [209] {Bacon,       
##        Bread,       
##        Butter,      
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo}     
## [210] {Bacon,       
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Salt}        
## [211] {Apple,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Olive,       
##        Onion,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [212] {Bacon,       
##        Butter,      
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [213] {Carrot,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [214] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [215] {Bacon,       
##        Bread,       
##        Butter,      
##        Cucumber,    
##        Egg,         
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [216] {Apple,       
##        Cucumber,    
##        Onion}       
## [217] {Apple,       
##        Bacon,       
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        Onion,       
##        ShavingFoam} 
## [218] {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [219] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Egg,         
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Sugar}       
## [220] {Apple,       
##        Bread,       
##        Cheese,      
##        Flour,       
##        Milk,        
##        ShavingFoam} 
## [221] {Banana,      
##        Egg,         
##        Flour,       
##        Honey}       
## [222] {Banana,      
##        Bread,       
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [223] {Apple,       
##        Bacon,       
##        Butter,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [224] {Apple,       
##        Bacon,       
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Shampoo,     
##        Sugar}       
## [225] {Apple,       
##        Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        ShavingFoam, 
##        Toothpaste}  
## [226] {Cucumber,    
##        Hazelnut,    
##        HeavyCream}  
## [227] {Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        ShavingFoam, 
##        Toothpaste}  
## [228] {Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Honey,       
##        Onion,       
##        Salt,        
##        Shampoo}     
## [229] {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Onion,       
##        Salt}        
## [230] {Apple,       
##        Bacon,       
##        Butter,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Shampoo,     
##        ShavingFoam} 
## [231] {Bacon,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [232] {Bread,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Olive,       
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [233] {Apple,       
##        Egg,         
##        Honey,       
##        Olive,       
##        ShavingFoam, 
##        Sugar}       
## [234] {Banana,      
##        Bread,       
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        ShavingFoam} 
## [235] {Apple,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Salt,        
##        Toothpaste}  
## [236] {Bacon,       
##        Carrot}      
## [237] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [238] {Bacon,       
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [239] {Apple,       
##        Banana,      
##        Butter,      
##        Flour,       
##        Hazelnut,    
##        Meat}        
## [240] {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Hazelnut,    
##        Honey,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [241] {Honey}       
## [242] {Apple,       
##        Flour}       
## [243] {Apple,       
##        HeavyCream,  
##        Milk,        
##        Olive}       
## [244] {Apple,       
##        Bacon,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        Shampoo}     
## [245] {Apple,       
##        Bacon,       
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [246] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Milk,        
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [247] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Shampoo,     
##        Toothpaste}  
## [248] {Bacon,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Salt,        
##        Sugar}       
## [249] {Bacon,       
##        Cucumber,    
##        Flour,       
##        Meat,        
##        Milk,        
##        Sugar}       
## [250] {Apple,       
##        Banana,      
##        Olive,       
##        Shampoo,     
##        ShavingFoam} 
## [251] {Cheese,      
##        Egg,         
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [252] {Apple,       
##        Butter,      
##        Carrot,      
##        Egg,         
##        Flour,       
##        Milk,        
##        Olive,       
##        Toothpaste}  
## [253] {Olive}       
## [254] {Banana,      
##        Cheese,      
##        Hazelnut,    
##        Milk,        
##        ShavingFoam} 
## [255] {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Hazelnut,    
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [256] {Apple,       
##        Bacon,       
##        Bread,       
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [257] {Bacon,       
##        Bread,       
##        Cheese,      
##        Egg,         
##        HeavyCream,  
##        Olive}       
## [258] {Apple}       
## [259] {Bacon,       
##        Banana,      
##        Bread,       
##        Hazelnut,    
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [260] {Banana,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [261] {Apple,       
##        Bread,       
##        Carrot,      
##        Hazelnut,    
##        Milk,        
##        Olive,       
##        Shampoo,     
##        Toothpaste}  
## [262] {Carrot,      
##        Cheese,      
##        Flour,       
##        Shampoo,     
##        ShavingFoam} 
## [263] {Bacon,       
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Shampoo,     
##        Sugar}       
## [264] {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [265] {Bacon,       
##        Bread,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [266] {Carrot,      
##        Salt}        
## [267] {Bacon,       
##        Banana}      
## [268] {Honey,       
##        Milk}        
## [269] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [270] {Olive}       
## [271] {Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        ShavingFoam, 
##        Sugar}       
## [272] {Bacon,       
##        Carrot,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [273] {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Onion,       
##        Sugar,       
##        Toothpaste}  
## [274] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        Meat,        
##        Onion,       
##        ShavingFoam, 
##        Toothpaste}  
## [275] {Bread,       
##        HeavyCream,  
##        Honey,       
##        ShavingFoam} 
## [276] {Apple,       
##        Honey,       
##        Sugar,       
##        Toothpaste}  
## [277] {Butter,      
##        Cucumber}    
## [278] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        ShavingFoam, 
##        Sugar}       
## [279] {Apple,       
##        Bread,       
##        Butter,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [280] {Bacon,       
##        Bread,       
##        Carrot,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [281] {Banana,      
##        Butter,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [282] {Apple,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Salt,        
##        Shampoo}     
## [283] {Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        ShavingFoam} 
## [284] {Carrot,      
##        Hazelnut,    
##        Honey}       
## [285] {Bread,       
##        Onion,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [286] {Bread,       
##        Cheese,      
##        Flour,       
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [287] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [288] {Apple,       
##        Bread,       
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Honey,       
##        Milk,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [289] {Apple,       
##        Banana,      
##        Butter,      
##        Honey,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [290] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Flour,       
##        Meat,        
##        Onion,       
##        Shampoo}     
## [291] {Sugar}       
## [292] {Egg,         
##        Honey,       
##        Meat,        
##        Olive}       
## [293] {Banana,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [294] {Bread,       
##        Butter,      
##        Carrot,      
##        Egg,         
##        Honey,       
##        Salt,        
##        ShavingFoam} 
## [295] {Apple,       
##        Bacon,       
##        Butter,      
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [296] {Apple,       
##        Egg,         
##        Flour,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [297] {Carrot,      
##        Cheese,      
##        Flour,       
##        Olive,       
##        Sugar}       
## [298] {Apple,       
##        Butter,      
##        Flour,       
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        ShavingFoam, 
##        Sugar}       
## [299] {Apple,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [300] {Bread,       
##        Butter,      
##        Carrot,      
##        Milk}        
## [301] {Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [302] {Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Onion,       
##        Salt,        
##        ShavingFoam} 
## [303] {Apple,       
##        Banana,      
##        Bread,       
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Olive,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [304] {Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [305] {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Meat,        
##        Salt}        
## [306] {Apple,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [307] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Meat,        
##        Shampoo,     
##        Sugar}       
## [308] {Apple,       
##        Bread,       
##        Butter,      
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Onion,       
##        Toothpaste}  
## [309] {Apple,       
##        Banana,      
##        Cheese,      
##        Egg,         
##        Meat,        
##        Salt,        
##        Shampoo}     
## [310] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Salt,        
##        ShavingFoam} 
## [311] {Banana,      
##        Olive}       
## [312] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Onion}       
## [313] {Bacon,       
##        Banana,      
##        Bread,       
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [314] {Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [315] {Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [316] {Carrot,      
##        Flour,       
##        Hazelnut,    
##        Toothpaste}  
## [317] {Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Honey,       
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [318] {Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Olive,       
##        Sugar}       
## [319] {Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion}       
## [320] {Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Milk}        
## [321] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [322] {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        HeavyCream,  
##        Honey}       
## [323] {Bread}       
## [324] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Milk}        
## [325] {Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Olive,       
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [326] {Banana,      
##        Carrot,      
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Onion}       
## [327] {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Honey,       
##        Olive,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [328] {Apple,       
##        Bread,       
##        Cucumber,    
##        Egg,         
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Shampoo,     
##        Sugar}       
## [329] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Shampoo,     
##        Toothpaste}  
## [330] {Bread,       
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Sugar}       
## [331] {Apple,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Salt,        
##        Toothpaste}  
## [332] {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo}     
## [333] {Banana}      
## [334] {Apple,       
##        Banana,      
##        Carrot,      
##        Egg,         
##        Flour,       
##        Honey,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [335] {Butter,      
##        Carrot,      
##        Cucumber,    
##        Olive,       
##        Salt,        
##        ShavingFoam} 
## [336] {Cucumber,    
##        HeavyCream,  
##        ShavingFoam, 
##        Toothpaste}  
## [337] {Apple,       
##        Banana,      
##        Butter,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Milk,        
##        Onion,       
##        Shampoo,     
##        Toothpaste}  
## [338] {Apple,       
##        Banana,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Sugar}       
## [339] {Apple,       
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [340] {Bread,       
##        Flour,       
##        HeavyCream,  
##        Meat,        
##        Salt,        
##        Toothpaste}  
## [341] {Bacon,       
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Meat,        
##        Milk,        
##        Shampoo}     
## [342] {Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Shampoo,     
##        ShavingFoam} 
## [343] {Butter,      
##        Cheese,      
##        Cucumber,    
##        Meat,        
##        Sugar}       
## [344] {Apple,       
##        Bread,       
##        Carrot,      
##        Shampoo,     
##        Sugar}       
## [345] {Apple,       
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [346] {Apple,       
##        Banana,      
##        Butter,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam} 
## [347] {Egg,         
##        ShavingFoam} 
## [348] {Banana,      
##        Hazelnut,    
##        Milk,        
##        ShavingFoam, 
##        Toothpaste}  
## [349] {Apple,       
##        Bread,       
##        HeavyCream,  
##        Meat,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [350] {Bacon,       
##        Flour,       
##        Meat,        
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [351] {Apple,       
##        Butter,      
##        Carrot,      
##        Egg,         
##        HeavyCream,  
##        Meat,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [352] {Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [353] {Apple,       
##        Bacon,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [354] {Bacon,       
##        Banana,      
##        Bread,       
##        Cucumber,    
##        Hazelnut,    
##        Meat,        
##        Milk}        
## [355] {Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Honey,       
##        Meat,        
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [356] {Butter,      
##        Egg,         
##        Flour,       
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        ShavingFoam, 
##        Sugar}       
## [357] {Bacon,       
##        Banana,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        Milk,        
##        Onion,       
##        Sugar}       
## [358] {HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion}       
## [359] {Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        HeavyCream,  
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [360] {Banana,      
##        Honey,       
##        Onion,       
##        Salt}        
## [361] {Apple,       
##        Bacon,       
##        Egg,         
##        Meat,        
##        Olive}       
## [362] {Butter,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [363] {Banana,      
##        Carrot,      
##        Milk}        
## [364] {Cheese,      
##        Shampoo}     
## [365] {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Hazelnut,    
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam} 
## [366] {Bread,       
##        Butter,      
##        Egg,         
##        Onion}       
## [367] {Apple,       
##        Bacon,       
##        Banana,      
##        Cucumber,    
##        HeavyCream,  
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [368] {Apple,       
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [369] {Bacon,       
##        Banana,      
##        Bread,       
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Shampoo}     
## [370] {Flour,       
##        Milk}        
## [371] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [372] {Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        Sugar}       
## [373] {Apple,       
##        Carrot,      
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [374] {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [375] {Banana,      
##        Bread,       
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Meat,        
##        Milk,        
##        Olive,       
##        ShavingFoam, 
##        Toothpaste}  
## [376] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Hazelnut,    
##        Meat,        
##        Olive,       
##        Onion,       
##        ShavingFoam} 
## [377] {Bacon,       
##        Butter,      
##        Carrot,      
##        Egg,         
##        Flour,       
##        Olive,       
##        Salt}        
## [378] {Carrot,      
##        HeavyCream}  
## [379] {Apple,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [380] {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Honey}       
## [381] {Apple,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [382] {Bacon,       
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [383] {Apple,       
##        Bacon,       
##        Bread,       
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [384] {Apple,       
##        Cheese,      
##        Cucumber,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        ShavingFoam} 
## [385] {Bread,       
##        Olive}       
## [386] {Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Milk,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [387] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        Meat,        
##        Olive,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam} 
## [388] {Butter,      
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Shampoo,     
##        ShavingFoam} 
## [389] {Carrot,      
##        Hazelnut,    
##        Meat,        
##        Sugar}       
## [390] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Egg,         
##        Flour,       
##        Honey,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [391] {Apple,       
##        Butter,      
##        Egg,         
##        Honey,       
##        Sugar}       
## [392] {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Honey,       
##        Toothpaste}  
## [393] {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [394] {Egg,         
##        HeavyCream,  
##        Honey,       
##        ShavingFoam} 
## [395] {Apple,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [396] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [397] {Bread,       
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Onion}       
## [398] {Butter,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Salt,        
##        Shampoo}     
## [399] {Bread,       
##        Butter,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Onion,       
##        Salt,        
##        Shampoo}     
## [400] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [401] {Bacon,       
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Meat,        
##        Onion,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [402] {Banana,      
##        Butter,      
##        Carrot,      
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [403] {Carrot,      
##        Honey}       
## [404] {Banana,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [405] {Apple,       
##        Bacon,       
##        Cheese,      
##        Egg,         
##        Flour,       
##        Meat,        
##        Milk,        
##        Salt}        
## [406] {Cucumber,    
##        HeavyCream,  
##        Meat,        
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [407] {Bread,       
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [408] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        Salt,        
##        ShavingFoam} 
## [409] {Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Meat,        
##        Olive,       
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [410] {Banana}      
## [411] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Flour,       
##        Meat,        
##        Olive,       
##        Shampoo,     
##        ShavingFoam} 
## [412] {Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Olive,       
##        Onion,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [413] {Bacon,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Milk,        
##        Sugar}       
## [414] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        Onion,       
##        ShavingFoam, 
##        Toothpaste}  
## [415] {Apple,       
##        Bacon,       
##        Carrot,      
##        Cheese,      
##        Meat,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [416] {Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Hazelnut,    
##        Honey,       
##        Milk,        
##        Onion,       
##        Shampoo}     
## [417] {Flour,       
##        Hazelnut,    
##        Toothpaste}  
## [418] {Apple,       
##        Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        ShavingFoam} 
## [419] {Carrot,      
##        Cucumber,    
##        Flour}       
## [420] {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        Cucumber,    
##        Olive,       
##        Onion,       
##        Shampoo}     
## [421] {Apple,       
##        Bacon,       
##        Banana,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Shampoo,     
##        Toothpaste}  
## [422] {Apple,       
##        Banana,      
##        Cucumber,    
##        Egg,         
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [423] {Bread,       
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Milk,        
##        Salt,        
##        Sugar,       
##        Toothpaste}  
## [424] {Apple,       
##        Bread,       
##        Butter,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [425] {Bacon,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Olive,       
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [426] {Banana,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        Olive,       
##        ShavingFoam, 
##        Toothpaste}  
## [427] {Butter,      
##        Carrot,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Onion,       
##        Salt,        
##        Shampoo,     
##        Sugar}       
## [428] {Bacon,       
##        Bread,       
##        Butter,      
##        Carrot,      
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        Sugar,       
##        Toothpaste}  
## [429] {Bacon,       
##        Banana,      
##        Bread,       
##        Cheese,      
##        Egg,         
##        Flour,       
##        Honey,       
##        Meat}        
## [430] {Bacon,       
##        Carrot,      
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [431] {Apple,       
##        Onion}       
## [432] {Bread,       
##        Carrot,      
##        Cheese,      
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [433] {Apple,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [434] {Hazelnut}    
## [435] {Banana,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Meat,        
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [436] {Apple,       
##        Cheese}      
## [437] {Banana,      
##        ShavingFoam} 
## [438] {Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Salt,        
##        Shampoo,     
##        Toothpaste}  
## [439] {Bacon,       
##        Banana,      
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Shampoo,     
##        Sugar}       
## [440] {Apple,       
##        Butter,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Salt,        
##        ShavingFoam, 
##        Toothpaste}  
## [441] {Bread,       
##        Butter,      
##        Cheese,      
##        HeavyCream,  
##        Olive,       
##        Salt,        
##        ShavingFoam, 
##        Sugar}       
## [442] {Apple,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [443] {Apple,       
##        Bacon,       
##        Butter,      
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Milk,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [444] {Banana,      
##        Egg,         
##        Meat,        
##        Onion,       
##        Salt,        
##        Sugar}       
## [445] {Apple,       
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Meat,        
##        ShavingFoam, 
##        Toothpaste}  
## [446] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Onion,       
##        Salt,        
##        Sugar}       
## [447] {Apple,       
##        Banana,      
##        Cheese,      
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Shampoo}     
## [448] {Bacon,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Olive,       
##        Shampoo,     
##        ShavingFoam} 
## [449] {Bacon,       
##        Bread,       
##        Butter,      
##        Cheese,      
##        Cucumber,    
##        HeavyCream,  
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Sugar,       
##        Toothpaste}  
## [450] {Apple,       
##        Bacon,       
##        Banana,      
##        Butter,      
##        Cucumber,    
##        Honey,       
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam} 
## [451] {Cucumber,    
##        Olive}       
## [452] {Apple,       
##        Banana,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Honey,       
##        Meat,        
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Sugar}       
## [453] {Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        HeavyCream,  
##        Honey,       
##        Shampoo}     
## [454] {Butter}      
## [455] {Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Flour,       
##        Onion,       
##        Shampoo,     
##        ShavingFoam} 
## [456] {Apple,       
##        Bacon,       
##        Banana,      
##        Bread,       
##        Butter,      
##        Carrot,      
##        Cucumber,    
##        HeavyCream,  
##        Honey,       
##        Olive,       
##        Salt,        
##        Shampoo,     
##        ShavingFoam, 
##        Toothpaste}  
## [457] {Bacon,       
##        Banana,      
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Flour,       
##        Hazelnut,    
##        Honey,       
##        Meat,        
##        Onion,       
##        Shampoo,     
##        ShavingFoam, 
##        Sugar,       
##        Toothpaste}  
## [458] {Apple,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Milk,        
##        Olive,       
##        Onion,       
##        Salt,        
##        Toothpaste}  
## [459] {Hazelnut,    
##        Olive,       
##        ShavingFoam} 
## [460] {Apple,       
##        Bacon,       
##        Butter,      
##        Carrot,      
##        Cheese,      
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Honey,       
##        Meat,        
##        Milk,        
##        Olive,       
##        Onion,       
##        Shampoo}     
## [461] {Bacon,       
##        Egg,         
##        Hazelnut,    
##        Meat,        
##        ShavingFoam, 
##        Sugar}       
## [462] {Apple,       
##        Cheese,      
##        Egg,         
##        Meat,        
##        Milk}        
## [463] {Banana,      
##        Bread,       
##        Carrot,      
##        Cheese,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        Milk,        
##        Olive,       
##        Sugar,       
##        Toothpaste}  
## [464] {Bacon,       
##        Bread,       
##        Carrot,      
##        Cucumber,    
##        Egg,         
##        Flour,       
##        Hazelnut,    
##        HeavyCream,  
##        Milk,        
##        ShavingFoam, 
##        Sugar}

Size and length are being checked in this step.

size(transaction)
##   [1]  9 12 17 11  1  6  6  8 14  6 10  9 15 13 10  4  3  4 13 14  4  9 10  8  7
##  [26] 12  5  9 12  9 13 14 12 14  9 12  7  2  9  8  4  4  5 12 10  9  1 12 12 11
##  [51] 12 11  6  9 14 10  7 15  3 13  9 10  6 12 15 13 12 10 12 14 13  8 11 11  6
##  [76]  4  1 14 13 13  8  7  2  5  6  9  5 11 14  3 10  4 14 10  9  4  6 13 15  8
## [101]  9 10 16  5  4  8 11  2 13  9 10 10  8  5 13  4  4  8 14  4  6 13 13  7  7
## [126] 11 12 11 12 10 14 12  7  9  5 16  8  9 12 12 15  6  6 12 12  1  5  2 13  1
## [151]  7  4  4  3 11  5  1  9 14  8 10  5  8  8 11 11 15  5 12 14  4 11  1  4  5
## [176] 11  7 13 13 10  5 15  5  5 13 14  1 11 10  8 12  2  5 12  8  6  9  7  8  5
## [201]  9 12 11  8  1  4  5 13  9  9 10  9 12 15 10  3  7 17 11  6  4 11 12 13 13
## [226]  3 12  8 10 10 11 10  6  8 11  2 12 14  6 12  1  2  4 12 13 13 15  7  6  5
## [251]  5  8  1  5  8 11  6  1 10 11  8  5  6 14 13  2  2  2 15  1 13 14 11 11  4
## [276]  4  2 12 13 14 14  8 13  3  5  9 14 12  7  9  1  4  7  7 10  6  5  8 15  4
## [301] 16 11 12 15  6  8 13  8  7  9  2 11 13 11 14  4 11 11 13  6 15  6  1 11 11
## [326]  7 13  9 13  5 10 12  1 13  6  4 10 10 10  6  7 10  5  5  7 12  2  5  8  7
## [351]  9 14 15  7 11  9  8  4  9  4  5 10  3  2 10  4 12 14  8  2 10 10 10 16 10
## [376] 10  7  2 15  5  9 13 12  7  2  9 12  6  4 10  5  9 13  4 13 13  5  8 10 17
## [401] 10 11  2 12  8  6 11 14 13  1 11 11  7 14  9  9  3 13  3  8 13 10 12 15 12
## [426] 11 10 14  8  8  2 10 11  1  9  2  2 11 13 13  8 12 10  6 10 16  7 11 12 10
## [451]  2 11  9  1  9 14 15 10  3 15  6  5 12 11
length(transaction)
## [1] 464

There are 464 transactions.

A plot of transaction item frequencies has now been created to analyze which products were purchased most often. The values displayed on the plot represent relative frequencies, indicating the proportion of each product’s occurrences. Additionally, a table with absolute frequency values is provided below the plot for a more detailed view of the data.

itemFrequencyPlot(transaction, topN=22, type="relative", main="Transactions item frequency", col="#4CAF50") 

itemFrequency(transaction, type="absolute")
##       Apple       Bacon      Banana       Bread      Butter      Carrot 
##         188         200         208         189         174         192 
##      Cheese    Cucumber         Egg       Flour    Hazelnut  HeavyCream 
##         206         177         187         179         195         193 
##       Honey        Meat        Milk       Olive       Onion        Salt 
##         193         180         172         177         176         185 
##     Shampoo ShavingFoam       Sugar  Toothpaste 
##         170         188         170         178

Apriori Algorithm

Apriori Algorithm is a foundational method in data mining used for discovering frequent itemsets and generating association rules. The algorithm starts by analyzing the dataset to find how often individual items appear and sets a minimum support value to decide which items are frequent. It then combines these frequent items to create pairs (2-item groups) and continues this process to form larger groups until no more frequent groups are found. To save time, it removes any itemsets that are not frequent, as their larger combinations will also be infrequent. Finally, the algorithm creates association rules to show how items are connected, using support, confidence and lift to measure the strength of these relationships.

rules<-apriori(transaction, parameter=list(supp=0.1, conf=0.65, minlen=2)) 
## Apriori
## 
## Parameter specification:
##  confidence minval smax arem  aval originalSupport maxtime support minlen
##        0.65    0.1    1 none FALSE            TRUE       5     0.1      2
##  maxlen target  ext
##      10  rules TRUE
## 
## Algorithmic control:
##  filter tree heap memopt load sort verbose
##     0.1 TRUE TRUE  FALSE TRUE    2    TRUE
## 
## Absolute minimum support count: 46 
## 
## set item appearances ...[0 item(s)] done [0.00s].
## set transactions ...[22 item(s), 464 transaction(s)] done [0.00s].
## sorting and recoding items ... [22 item(s)] done [0.00s].
## creating transaction tree ... done [0.00s].
## checking subsets of size 1 2 3 4 done [0.00s].
## writing ... [9 rule(s)] done [0.00s].
## creating S4 object  ... done [0.00s].

After applying the Apriori algorithm with the parameters supp=0.1, conf=0.65 and minlen=2, a total of 9 rules were detected. This suggests that there are 9 distinct relationships between items in the dataset that meet the specified thresholds for support, confidence and minimum length. The support value of 0.1 indicates that the itemsets appear in at least 10% of transactions, while the confidence of 0.65 implies that 65% of the time, the presence of one item leads to the presence of another. The minimum length of 2 ensures that only rules with at least two items are considered.

The next step is to use the crossTable function, which creates a contingency table for the given transaction dataset, summarizing the frequency of item combinations. This table shows how often each combination of items appears together across transactions, helping to identify patterns and associations between products.

ctab<-crossTable(transaction, sort=TRUE) 
ctab<-crossTable(transaction, measure="count", sort=TRUE) 
ctab
##             Banana Cheese Bacon Hazelnut HeavyCream Honey Carrot Bread Apple
## Banana         208    104   112      103         91    99    102    98   102
## Cheese         104    206   104       96         93   101    101   100    85
## Bacon          112    104   200      103         93    94     92    94    87
## Hazelnut       103     96   103      195         97    89     85    87    79
## HeavyCream      91     93    93       97        193    95     92    87    92
## Honey           99    101    94       89         95   193     95    93    87
## Carrot         102    101    92       85         92    95    192    90    88
## Bread           98    100    94       87         87    93     90   189    81
## Apple          102     85    87       79         92    87     88    81   188
## ShavingFoam    102     99   100       89         89    87     86    86    85
## Egg             99    103    94       91         78    97     94    86    91
## Salt            90     93    78       85         96    78     86    96    84
## Meat            89     95   100       89         90    94     78    79    89
## Flour           86     88    77       93         75    78     81    80    78
## Toothpaste      94     92    81       94         89    84     95    81    84
## Cucumber        91     89    85       88         81    77     81    76    73
## Olive           95     79    83       83         81    74     86    79    87
## Onion           97     89    87       84         84    82     85    77    85
## Butter          83    100    96       92         80    86     75    91    82
## Milk            84     83    87       84         96    81     80    82    75
## Shampoo         83     87    77       81         78    87     78    80    80
## Sugar           82     87    87       84         84    80     73    81    75
##             ShavingFoam Egg Salt Meat Flour Toothpaste Cucumber Olive Onion
## Banana              102  99   90   89    86         94       91    95    97
## Cheese               99 103   93   95    88         92       89    79    89
## Bacon               100  94   78  100    77         81       85    83    87
## Hazelnut             89  91   85   89    93         94       88    83    84
## HeavyCream           89  78   96   90    75         89       81    81    84
## Honey                87  97   78   94    78         84       77    74    82
## Carrot               86  94   86   78    81         95       81    86    85
## Bread                86  86   96   79    80         81       76    79    77
## Apple                85  91   84   89    78         84       73    87    85
## ShavingFoam         188  85   87   85    73         87       83    80    88
## Egg                  85 187   86   86    84         84       86    85    81
## Salt                 87  86  185   81    73         90       85    81    87
## Meat                 85  86   81  180    69         78       77    79    83
## Flour                73  84   73   69   179         85       78    70    68
## Toothpaste           87  84   90   78    85        178       80    79    90
## Cucumber             83  86   85   77    78         80      177    80    83
## Olive                80  85   81   79    70         79       80   177    81
## Onion                88  81   87   83    68         90       83    81   176
## Butter               88  75   80   76    77         84       73    74    83
## Milk                 68  83   69   71    76         82       72    76    78
## Shampoo              76  78   81   83    69         68       71    72    69
## Sugar                83  79   87   87    68         81       76    73    76
##             Butter Milk Shampoo Sugar
## Banana          83   84      83    82
## Cheese         100   83      87    87
## Bacon           96   87      77    87
## Hazelnut        92   84      81    84
## HeavyCream      80   96      78    84
## Honey           86   81      87    80
## Carrot          75   80      78    73
## Bread           91   82      80    81
## Apple           82   75      80    75
## ShavingFoam     88   68      76    83
## Egg             75   83      78    79
## Salt            80   69      81    87
## Meat            76   71      83    87
## Flour           77   76      69    68
## Toothpaste      84   82      68    81
## Cucumber        73   72      71    76
## Olive           74   76      72    73
## Onion           83   78      69    76
## Butter         174   68      78    71
## Milk            68  172      68    69
## Shampoo         78   68     170    70
## Sugar           71   69      70   170

The following part of code creates a contingency table for the transaction dataset, but instead of showing counts, it calculates the probability of item combinations occurring together in the dataset.

ptab<-crossTable(transaction, measure="probability", sort=TRUE) 
round(ptab,3)
##             Banana Cheese Bacon Hazelnut HeavyCream Honey Carrot Bread Apple
## Banana       0.448  0.224 0.241    0.222      0.196 0.213  0.220 0.211 0.220
## Cheese       0.224  0.444 0.224    0.207      0.200 0.218  0.218 0.216 0.183
## Bacon        0.241  0.224 0.431    0.222      0.200 0.203  0.198 0.203 0.188
## Hazelnut     0.222  0.207 0.222    0.420      0.209 0.192  0.183 0.188 0.170
## HeavyCream   0.196  0.200 0.200    0.209      0.416 0.205  0.198 0.188 0.198
## Honey        0.213  0.218 0.203    0.192      0.205 0.416  0.205 0.200 0.188
## Carrot       0.220  0.218 0.198    0.183      0.198 0.205  0.414 0.194 0.190
## Bread        0.211  0.216 0.203    0.188      0.188 0.200  0.194 0.407 0.175
## Apple        0.220  0.183 0.188    0.170      0.198 0.188  0.190 0.175 0.405
## ShavingFoam  0.220  0.213 0.216    0.192      0.192 0.188  0.185 0.185 0.183
## Egg          0.213  0.222 0.203    0.196      0.168 0.209  0.203 0.185 0.196
## Salt         0.194  0.200 0.168    0.183      0.207 0.168  0.185 0.207 0.181
## Meat         0.192  0.205 0.216    0.192      0.194 0.203  0.168 0.170 0.192
## Flour        0.185  0.190 0.166    0.200      0.162 0.168  0.175 0.172 0.168
## Toothpaste   0.203  0.198 0.175    0.203      0.192 0.181  0.205 0.175 0.181
## Cucumber     0.196  0.192 0.183    0.190      0.175 0.166  0.175 0.164 0.157
## Olive        0.205  0.170 0.179    0.179      0.175 0.159  0.185 0.170 0.188
## Onion        0.209  0.192 0.188    0.181      0.181 0.177  0.183 0.166 0.183
## Butter       0.179  0.216 0.207    0.198      0.172 0.185  0.162 0.196 0.177
## Milk         0.181  0.179 0.188    0.181      0.207 0.175  0.172 0.177 0.162
## Shampoo      0.179  0.188 0.166    0.175      0.168 0.188  0.168 0.172 0.172
## Sugar        0.177  0.188 0.188    0.181      0.181 0.172  0.157 0.175 0.162
##             ShavingFoam   Egg  Salt  Meat Flour Toothpaste Cucumber Olive Onion
## Banana            0.220 0.213 0.194 0.192 0.185      0.203    0.196 0.205 0.209
## Cheese            0.213 0.222 0.200 0.205 0.190      0.198    0.192 0.170 0.192
## Bacon             0.216 0.203 0.168 0.216 0.166      0.175    0.183 0.179 0.188
## Hazelnut          0.192 0.196 0.183 0.192 0.200      0.203    0.190 0.179 0.181
## HeavyCream        0.192 0.168 0.207 0.194 0.162      0.192    0.175 0.175 0.181
## Honey             0.188 0.209 0.168 0.203 0.168      0.181    0.166 0.159 0.177
## Carrot            0.185 0.203 0.185 0.168 0.175      0.205    0.175 0.185 0.183
## Bread             0.185 0.185 0.207 0.170 0.172      0.175    0.164 0.170 0.166
## Apple             0.183 0.196 0.181 0.192 0.168      0.181    0.157 0.188 0.183
## ShavingFoam       0.405 0.183 0.188 0.183 0.157      0.188    0.179 0.172 0.190
## Egg               0.183 0.403 0.185 0.185 0.181      0.181    0.185 0.183 0.175
## Salt              0.188 0.185 0.399 0.175 0.157      0.194    0.183 0.175 0.188
## Meat              0.183 0.185 0.175 0.388 0.149      0.168    0.166 0.170 0.179
## Flour             0.157 0.181 0.157 0.149 0.386      0.183    0.168 0.151 0.147
## Toothpaste        0.188 0.181 0.194 0.168 0.183      0.384    0.172 0.170 0.194
## Cucumber          0.179 0.185 0.183 0.166 0.168      0.172    0.381 0.172 0.179
## Olive             0.172 0.183 0.175 0.170 0.151      0.170    0.172 0.381 0.175
## Onion             0.190 0.175 0.188 0.179 0.147      0.194    0.179 0.175 0.379
## Butter            0.190 0.162 0.172 0.164 0.166      0.181    0.157 0.159 0.179
## Milk              0.147 0.179 0.149 0.153 0.164      0.177    0.155 0.164 0.168
## Shampoo           0.164 0.168 0.175 0.179 0.149      0.147    0.153 0.155 0.149
## Sugar             0.179 0.170 0.188 0.188 0.147      0.175    0.164 0.157 0.164
##             Butter  Milk Shampoo Sugar
## Banana       0.179 0.181   0.179 0.177
## Cheese       0.216 0.179   0.188 0.188
## Bacon        0.207 0.188   0.166 0.188
## Hazelnut     0.198 0.181   0.175 0.181
## HeavyCream   0.172 0.207   0.168 0.181
## Honey        0.185 0.175   0.188 0.172
## Carrot       0.162 0.172   0.168 0.157
## Bread        0.196 0.177   0.172 0.175
## Apple        0.177 0.162   0.172 0.162
## ShavingFoam  0.190 0.147   0.164 0.179
## Egg          0.162 0.179   0.168 0.170
## Salt         0.172 0.149   0.175 0.188
## Meat         0.164 0.153   0.179 0.188
## Flour        0.166 0.164   0.149 0.147
## Toothpaste   0.181 0.177   0.147 0.175
## Cucumber     0.157 0.155   0.153 0.164
## Olive        0.159 0.164   0.155 0.157
## Onion        0.179 0.168   0.149 0.164
## Butter       0.375 0.147   0.168 0.153
## Milk         0.147 0.371   0.147 0.149
## Shampoo      0.168 0.147   0.366 0.151
## Sugar        0.153 0.149   0.151 0.366

Sorting rules by confidence

Confidence represents the probability of one item being purchased given that another item is already in the transaction, making it a crucial metric for evaluating the rule’s reliability.

rules.by.conf<-sort(rules, by="confidence", decreasing=TRUE)
inspect(head(rules.by.conf))
##     lhs                      rhs      support   confidence coverage  lift    
## [1] {Bacon, Onion}        => {Banana} 0.1314655 0.7011494  0.1875000 1.564103
## [2] {Olive, ShavingFoam}  => {Banana} 0.1185345 0.6875000  0.1724138 1.533654
## [3] {Banana, Butter}      => {Bacon}  0.1206897 0.6746988  0.1788793 1.565301
## [4] {Butter, ShavingFoam} => {Bacon}  0.1271552 0.6704545  0.1896552 1.555455
## [5] {Bacon, Butter}       => {Cheese} 0.1379310 0.6666667  0.2068966 1.501618
## [6] {Butter, Egg}         => {Cheese} 0.1056034 0.6533333  0.1616379 1.471586
##     count
## [1] 61   
## [2] 55   
## [3] 56   
## [4] 59   
## [5] 64   
## [6] 49

Sorting rules by lift

Lift measures the strength of the association between items by comparing the observed co-occurrence with what would be expected if the items were independent.

rules.by.lift<-sort(rules, by="lift", decreasing=TRUE) 
inspect(head(rules.by.lift))
##     lhs                      rhs      support   confidence coverage  lift    
## [1] {Banana, Butter}      => {Bacon}  0.1206897 0.6746988  0.1788793 1.565301
## [2] {Bacon, Onion}        => {Banana} 0.1314655 0.7011494  0.1875000 1.564103
## [3] {Butter, ShavingFoam} => {Bacon}  0.1271552 0.6704545  0.1896552 1.555455
## [4] {Olive, ShavingFoam}  => {Banana} 0.1185345 0.6875000  0.1724138 1.533654
## [5] {Bread, ShavingFoam}  => {Bacon}  0.1206897 0.6511628  0.1853448 1.510698
## [6] {Bacon, Butter}       => {Cheese} 0.1379310 0.6666667  0.2068966 1.501618
##     count
## [1] 56   
## [2] 61   
## [3] 59   
## [4] 55   
## [5] 56   
## [6] 64

Sorting rules by support

Support measures the proportion of transactions in the dataset that contain a particular itemset, indicating how commonly the itemset appears.

rules.by.supp<-sort(rules, by="support", decreasing=TRUE) 
inspect(head(rules.by.supp))
##     lhs                      rhs      support   confidence coverage  lift    
## [1] {Bacon, Butter}       => {Cheese} 0.1379310 0.6666667  0.2068966 1.501618
## [2] {Bacon, Onion}        => {Banana} 0.1314655 0.7011494  0.1875000 1.564103
## [3] {Butter, ShavingFoam} => {Bacon}  0.1271552 0.6704545  0.1896552 1.555455
## [4] {Banana, Butter}      => {Bacon}  0.1206897 0.6746988  0.1788793 1.565301
## [5] {Bread, ShavingFoam}  => {Bacon}  0.1206897 0.6511628  0.1853448 1.510698
## [6] {Olive, ShavingFoam}  => {Banana} 0.1185345 0.6875000  0.1724138 1.533654
##     count
## [1] 64   
## [2] 61   
## [3] 59   
## [4] 56   
## [5] 56   
## [6] 55

Sorting rules by count

Count represents the absolute number of transactions in which a particular itemset or rule occurs, rather than the proportion.

rules.by.count<- sort(rules, by="count", decreasing=TRUE) 
inspect(head(rules.by.count))
##     lhs                      rhs      support   confidence coverage  lift    
## [1] {Bacon, Butter}       => {Cheese} 0.1379310 0.6666667  0.2068966 1.501618
## [2] {Bacon, Onion}        => {Banana} 0.1314655 0.7011494  0.1875000 1.564103
## [3] {Butter, ShavingFoam} => {Bacon}  0.1271552 0.6704545  0.1896552 1.555455
## [4] {Banana, Butter}      => {Bacon}  0.1206897 0.6746988  0.1788793 1.565301
## [5] {Bread, ShavingFoam}  => {Bacon}  0.1206897 0.6511628  0.1853448 1.510698
## [6] {Olive, ShavingFoam}  => {Banana} 0.1185345 0.6875000  0.1724138 1.533654
##     count
## [1] 64   
## [2] 61   
## [3] 59   
## [4] 56   
## [5] 56   
## [6] 55

Similarity and dissimilarity measures

The upcoming step computes similarity and dissimilarity measures for selected transactions using the Jaccard index as the default measure. Later on, it will be used for creating the dendrogram.

trans.sel<-transaction[,itemFrequency(transaction)>0.05]
d.jac.i<-dissimilarity(trans.sel, which="items") 
round(d.jac.i,2)
##             Apple Bacon Banana Bread Butter Carrot Cheese Cucumber  Egg Flour
## Bacon        0.71                                                            
## Banana       0.65  0.62                                                      
## Bread        0.73  0.68   0.67                                               
## Butter       0.71  0.65   0.72  0.67                                         
## Carrot       0.70  0.69   0.66  0.69   0.74                                  
## Cheese       0.72  0.66   0.66  0.66   0.64   0.66                           
## Cucumber     0.75  0.71   0.69  0.74   0.74   0.72   0.70                    
## Egg          0.68  0.68   0.67  0.70   0.74   0.67   0.64     0.69           
## Flour        0.73  0.75   0.71  0.72   0.72   0.72   0.70     0.72 0.70      
## Hazelnut     0.74  0.65   0.66  0.71   0.67   0.72   0.69     0.69 0.69  0.67
## HeavyCream   0.68  0.69   0.71  0.71   0.72   0.69   0.70     0.72 0.74  0.75
## Honey        0.70  0.69   0.67  0.68   0.69   0.67   0.66     0.74 0.66  0.73
## Meat         0.68  0.64   0.70  0.73   0.73   0.73   0.67     0.72 0.69  0.76
## Milk         0.74  0.69   0.72  0.71   0.76   0.72   0.72     0.74 0.70  0.72
## Olive        0.69  0.72   0.67  0.72   0.73   0.70   0.74     0.71 0.70  0.76
## Onion        0.70  0.70   0.66  0.73   0.69   0.70   0.70     0.69 0.71  0.76
## Salt         0.71  0.75   0.70  0.65   0.71   0.70   0.69     0.69 0.70  0.75
## Shampoo      0.71  0.74   0.72  0.71   0.71   0.73   0.70     0.74 0.72  0.75
## ShavingFoam  0.71  0.65   0.65  0.70   0.68   0.71   0.66     0.71 0.71  0.75
## Sugar        0.73  0.69   0.72  0.71   0.74   0.75   0.70     0.72 0.72  0.76
## Toothpaste   0.70  0.73   0.68  0.72   0.69   0.65   0.68     0.71 0.70  0.69
##             Hazelnut HeavyCream Honey Meat Milk Olive Onion Salt Shampoo
## Bacon                                                                   
## Banana                                                                  
## Bread                                                                   
## Butter                                                                  
## Carrot                                                                  
## Cheese                                                                  
## Cucumber                                                                
## Egg                                                                     
## Flour                                                                   
## Hazelnut                                                                
## HeavyCream      0.67                                                    
## Honey           0.70       0.67                                         
## Meat            0.69       0.68  0.66                                   
## Milk            0.70       0.64  0.71 0.75                              
## Olive           0.71       0.72  0.75 0.72 0.72                         
## Onion           0.71       0.71  0.71 0.70 0.71  0.70                   
## Salt            0.71       0.66  0.74 0.71 0.76  0.71  0.68             
## Shampoo         0.71       0.73  0.68 0.69 0.75  0.74  0.75 0.70        
## ShavingFoam     0.70       0.70  0.70 0.70 0.77  0.72  0.68 0.70    0.73
## Sugar           0.70       0.70  0.72 0.67 0.75  0.73  0.72 0.68    0.74
## Toothpaste      0.66       0.68  0.71 0.72 0.69  0.71  0.66 0.67    0.76
##             ShavingFoam Sugar
## Bacon                        
## Banana                       
## Bread                        
## Butter                       
## Carrot                       
## Cheese                       
## Cucumber                     
## Egg                          
## Flour                        
## Hazelnut                     
## HeavyCream                   
## Honey                        
## Meat                         
## Milk                         
## Olive                        
## Onion                        
## Salt                         
## Shampoo                      
## ShavingFoam                  
## Sugar              0.70      
## Toothpaste         0.69  0.70
trans.sel<-transaction[,itemFrequency(transaction)>0.05]
d_jac.t<-dissimilarity(trans.sel, which="transactions") 
round(d_jac.t,2)
##        1    2    3    4    5    6    7    8    9   10   11   12   13   14   15
## 2   0.69                                                                      
## 3   0.63 0.62                                                                 
## 4   0.82 0.47 0.60                                                            
## 5   1.00 0.92 0.94 0.91                                                       
## 6   0.85 0.88 0.65 0.79 0.83                                                  
## 7   0.50 0.80 0.72 0.94 1.00 1.00                                             
## 8   0.69 0.75 0.53 0.73 1.00 0.73 0.73                                        
## 9   0.56 0.63 0.45 0.75 0.93 0.75 0.67 0.71                                   
## 10  0.93 0.80 0.72 0.69 1.00 0.91 0.80 0.83 0.89                              
## 11  0.54 0.62 0.65 0.69 1.00 0.86 0.67 0.71 0.50 0.86                         
## 12  0.80 0.76 0.56 0.75 0.89 0.64 0.85 0.79 0.65 0.75 0.64                    
## 13  0.59 0.58 0.48 0.47 0.93 0.69 0.76 0.72 0.47 0.83 0.68 0.67               
## 14  0.43 0.75 0.50 0.80 1.00 0.73 0.64 0.60 0.50 0.88 0.56 0.78 0.53          
## 15  0.73 0.71 0.65 0.60 1.00 0.77 0.86 0.71 0.74 0.86 0.67 0.81 0.53 0.56     
## 16  0.92 0.67 0.83 0.75 1.00 1.00 0.89 0.91 0.94 0.57 0.83 0.82 0.81 0.94 0.83
## 17  1.00 0.85 0.82 0.73 1.00 0.88 1.00 0.78 1.00 0.88 0.82 0.80 0.94 0.93 0.70
## 18  1.00 0.93 0.83 0.85 1.00 0.75 0.89 0.80 0.80 0.75 0.92 0.92 0.81 0.79 0.83
## 19  0.71 0.75 0.50 0.80 0.92 0.54 0.81 0.69 0.50 0.88 0.72 0.53 0.53 0.47 0.79
## 20  0.65 0.63 0.52 0.75 1.00 0.67 0.75 0.62 0.53 0.82 0.59 0.65 0.55 0.31 0.59
## 21  0.92 0.93 0.83 0.93 1.00 0.75 1.00 1.00 0.88 0.89 1.00 0.92 0.81 0.79 0.73
## 22  0.71 0.89 0.63 0.82 1.00 0.93 0.64 0.69 0.47 0.75 0.73 0.80 0.67 0.53 0.73
## 23  0.73 0.78 0.65 0.69 0.90 0.67 0.86 0.71 0.50 0.93 0.67 0.64 0.53 0.56 0.75
## 24  0.79 0.89 0.68 0.64 0.88 0.73 0.83 0.77 0.62 0.73 0.71 0.58 0.56 0.76 0.71
## 25  0.77 0.73 0.67 0.80 0.86 0.70 0.82 0.75 0.60 0.92 0.69 0.77 0.78 0.57 0.79
## 26  0.76 0.67 0.47 0.79 0.92 0.62 0.80 0.75 0.47 0.80 0.78 0.60 0.58 0.68 0.84
## 27  0.92 0.69 0.78 0.77 0.80 0.78 1.00 0.92 0.81 0.78 0.93 0.92 0.82 0.88 0.93
## 28  0.62 0.69 0.76 0.75 1.00 0.75 0.75 0.87 0.72 0.93 0.64 0.71 0.50 0.62 0.64
## 29  0.76 0.74 0.39 0.72 0.92 0.71 0.80 0.75 0.63 0.71 0.90 0.60 0.58 0.61 0.84
## 30  0.62 0.76 0.70 0.67 0.89 0.93 0.64 0.87 0.65 0.75 0.73 0.80 0.59 0.71 0.81
## 31  0.71 0.61 0.42 0.59 1.00 0.64 0.88 0.60 0.50 0.88 0.47 0.53 0.53 0.63 0.56
## 32  0.72 0.56 0.37 0.44 0.93 0.75 0.82 0.62 0.44 0.82 0.59 0.72 0.47 0.65 0.59
## 33  0.69 0.40 0.55 0.56 0.92 0.80 0.71 0.75 0.70 0.62 0.62 0.69 0.65 0.68 0.78
## 34  0.47 0.56 0.45 0.61 1.00 0.89 0.57 0.53 0.44 0.75 0.59 0.85 0.55 0.41 0.74
## 35  0.62 0.69 0.56 0.82 1.00 0.75 0.75 0.45 0.79 0.93 0.81 0.71 0.67 0.53 0.73
## 36  0.60 0.50 0.55 0.65 1.00 0.88 0.71 0.82 0.70 0.62 0.62 0.69 0.58 0.61 0.78
## 37  0.86 0.81 0.67 0.62 1.00 0.92 0.92 0.75 0.89 0.70 0.79 0.86 0.78 0.67 0.79
## 38  0.90 0.83 0.94 0.92 1.00 1.00 0.86 0.89 0.86 1.00 0.80 0.90 0.87 0.85 0.91
## 39  0.62 0.60 0.76 0.82 1.00 0.75 0.75 0.69 0.56 1.00 0.54 0.80 0.59 0.43 0.64
## 40  0.69 0.75 0.53 0.88 1.00 0.83 0.73 0.67 0.71 0.92 0.88 0.87 0.79 0.69 0.80
## 41  0.82 0.93 0.76 0.93 1.00 0.89 0.75 0.80 0.94 0.75 0.92 0.82 0.94 0.79 0.83
## 42  0.82 0.77 0.83 0.75 1.00 1.00 0.75 1.00 0.80 0.75 0.73 0.92 0.81 0.87 0.92
## 43  0.92 0.79 0.84 0.67 1.00 0.90 1.00 0.92 0.81 0.78 0.85 0.83 0.82 0.80 0.85
## 44  0.69 0.59 0.62 0.65 1.00 0.94 0.71 0.57 0.56 0.80 0.71 0.83 0.58 0.53 0.71
## 45  0.81 0.62 0.58 0.60 0.90 0.86 0.67 0.80 0.67 0.77 0.67 0.73 0.53 0.72 0.67
## 46  0.80 0.69 0.76 0.82 0.89 0.75 0.93 0.94 0.47 1.00 0.73 0.80 0.67 0.62 0.81
## 47  0.89 0.92 0.94 1.00 1.00 1.00 0.83 0.88 0.93 1.00 0.90 0.89 0.93 0.92 1.00
## 48  0.50 0.67 0.47 0.79 1.00 0.80 0.50 0.67 0.56 0.80 0.43 0.60 0.58 0.44 0.62
## 49  0.76 0.67 0.55 0.65 1.00 0.88 0.80 0.57 0.56 0.80 0.62 0.60 0.58 0.68 0.53
## 50  0.89 0.47 0.67 0.43 0.91 0.69 1.00 0.81 0.68 0.69 0.69 0.57 0.56 0.80 0.76
## 51  0.83 0.67 0.47 0.72 1.00 0.71 0.88 0.67 0.63 0.80 0.78 0.50 0.58 0.68 0.53
## 52  0.75 0.79 0.67 0.78 1.00 0.87 0.69 0.73 0.61 0.69 0.76 0.67 0.63 0.59 0.76
## 53  0.85 0.88 0.65 0.69 1.00 0.91 0.80 0.60 0.75 0.80 0.86 0.93 0.83 0.81 0.86
## 54  0.80 0.60 0.63 0.57 0.89 0.93 0.85 0.79 0.72 0.85 0.73 0.80 0.80 0.78 0.81
## 55  0.56 0.70 0.52 0.61 1.00 0.75 0.75 0.78 0.44 0.82 0.59 0.65 0.29 0.50 0.59
## 56  0.81 0.62 0.58 0.38 0.90 0.86 0.86 0.80 0.67 0.67 0.75 0.81 0.61 0.85 0.67
## 57  0.86 0.81 0.74 0.88 1.00 0.92 0.82 0.85 0.60 1.00 0.87 0.93 0.71 0.67 0.58
## 58  0.59 0.65 0.22 0.63 0.93 0.60 0.76 0.47 0.55 0.76 0.75 0.67 0.50 0.35 0.68
## 59  0.91 0.75 0.89 0.83 1.00 1.00 0.88 0.78 0.94 0.88 0.92 0.91 0.88 0.93 0.82
## 60  0.62 0.53 0.50 0.74 1.00 0.81 0.64 0.69 0.50 0.64 0.65 0.71 0.60 0.56 0.79
## 61  0.71 0.69 0.56 0.82 0.89 0.85 0.75 0.87 0.56 0.85 0.81 0.62 0.67 0.62 0.81
## 62  0.81 0.71 0.58 0.76 0.90 0.55 1.00 0.88 0.67 0.93 0.75 0.54 0.68 0.65 0.75
## 63  0.93 0.80 0.79 0.69 0.83 0.80 0.91 0.83 0.75 0.80 0.93 0.85 0.76 0.88 0.77
## 64  0.50 0.50 0.47 0.65 0.92 0.80 0.80 0.67 0.56 0.88 0.71 0.76 0.58 0.44 0.71
## 65  0.50 0.65 0.40 0.76 1.00 0.76 0.69 0.65 0.39 0.89 0.53 0.67 0.50 0.44 0.53
## 66  0.53 0.53 0.50 0.67 1.00 0.81 0.73 0.69 0.41 0.73 0.65 0.78 0.53 0.56 0.79
## 67  0.83 0.74 0.39 0.72 1.00 0.71 0.88 0.75 0.70 0.50 0.84 0.69 0.71 0.68 0.71
## 68  0.81 0.53 0.58 0.50 0.90 0.86 0.86 0.71 0.59 0.93 0.57 0.64 0.61 0.79 0.57
## 69  0.69 0.67 0.55 0.56 1.00 0.80 0.80 0.75 0.47 0.71 0.62 0.89 0.58 0.61 0.62
## 70  0.65 0.47 0.52 0.61 0.93 0.82 0.67 0.78 0.53 0.75 0.74 0.85 0.47 0.58 0.67
## 71  0.62 0.68 0.57 0.50 1.00 0.81 0.73 0.76 0.50 0.73 0.65 0.84 0.35 0.47 0.56
## 72  0.87 0.67 0.75 0.73 0.88 0.73 0.92 1.00 0.62 0.92 0.80 0.69 0.56 0.83 0.71
## 73  0.82 0.65 0.44 0.71 0.91 0.69 0.94 0.64 0.53 0.94 0.60 0.57 0.70 0.67 0.69
## 74  0.57 0.65 0.53 0.71 1.00 0.79 0.79 0.73 0.53 0.87 0.25 0.57 0.70 0.50 0.69
## 75  0.93 0.62 0.79 0.69 1.00 0.91 0.91 0.73 0.89 0.67 0.86 1.00 0.83 0.81 0.77
## 76  0.70 0.86 0.83 0.93 1.00 0.89 0.75 0.91 0.80 0.75 0.73 0.92 0.88 0.79 0.92
## 77  0.89 0.92 0.94 1.00 1.00 1.00 0.83 0.88 0.93 1.00 0.90 0.89 0.93 0.92 1.00
## 78  0.65 0.63 0.37 0.68 0.93 0.67 0.75 0.62 0.44 0.82 0.67 0.56 0.47 0.50 0.67
## 79  0.71 0.68 0.42 0.74 0.92 0.73 0.73 0.50 0.41 0.81 0.79 0.78 0.53 0.56 0.65
## 80  0.71 0.53 0.50 0.67 0.92 0.73 0.73 0.76 0.50 0.94 0.56 0.62 0.53 0.56 0.47
## 81  0.79 0.46 0.81 0.54 1.00 0.92 0.92 0.86 0.84 0.73 0.71 0.94 0.72 0.76 0.62
## 82  0.77 0.73 0.67 0.71 1.00 1.00 0.70 0.93 0.83 0.56 0.79 0.86 0.84 0.75 0.94
## 83  0.90 0.92 0.94 0.92 1.00 1.00 0.86 1.00 0.93 0.86 0.80 0.90 0.94 0.93 0.80
## 84  0.73 0.69 0.90 0.86 0.80 0.90 0.78 0.92 0.73 1.00 0.85 0.83 0.75 0.80 0.85
## 85  0.75 0.71 0.72 0.87 1.00 0.91 0.67 0.92 0.67 0.80 0.67 0.75 0.83 0.81 0.77
## 86  0.36 0.76 0.63 0.82 1.00 0.64 0.64 0.79 0.65 0.93 0.64 0.80 0.59 0.43 0.64
## 87  0.83 0.87 0.78 0.86 0.80 0.90 0.78 1.00 0.73 0.78 0.75 0.60 0.82 0.88 0.85
## 88  0.75 0.56 0.60 0.71 0.91 0.87 0.79 0.81 0.44 0.79 0.69 0.75 0.56 0.59 0.69
## 89  0.65 0.47 0.59 0.44 0.93 0.75 0.75 0.78 0.60 0.75 0.67 0.65 0.39 0.65 0.59
## 90  0.80 0.75 0.82 0.92 1.00 1.00 0.71 0.78 0.87 0.88 0.82 0.80 0.88 0.86 0.82
## 91  0.73 0.71 0.65 0.76 0.90 0.77 0.77 0.88 0.67 0.77 0.89 0.81 0.61 0.47 0.67
## 92  0.92 0.86 0.83 0.93 1.00 0.89 1.00 0.91 0.88 1.00 0.92 0.82 0.94 0.87 0.83
## 93  0.72 0.63 0.45 0.68 0.93 0.75 0.82 0.62 0.53 0.82 0.59 0.56 0.62 0.50 0.67
## 94  0.73 0.53 0.65 0.69 0.90 0.77 0.86 0.88 0.67 0.77 0.67 0.73 0.61 0.65 0.67
## 95  0.88 0.83 0.63 0.75 1.00 0.75 0.85 0.79 0.79 0.50 0.81 0.50 0.67 0.78 0.81
## 96  0.92 0.86 0.83 0.75 1.00 0.75 1.00 0.91 0.88 0.75 1.00 0.92 0.73 0.87 0.92
## 97  0.85 0.71 0.79 0.87 1.00 1.00 0.80 0.83 0.82 0.80 0.77 0.75 0.89 0.73 0.93
## 98  0.53 0.61 0.33 0.50 0.92 0.64 0.73 0.60 0.58 0.73 0.56 0.62 0.53 0.63 0.56
## 99  0.67 0.58 0.55 0.70 0.93 0.69 0.69 0.65 0.39 0.76 0.61 0.67 0.50 0.35 0.68
## 100 0.79 0.46 0.75 0.54 1.00 0.92 0.92 0.86 0.78 0.83 0.71 0.87 0.72 0.83 0.71
## 101 0.71 0.76 0.63 0.75 1.00 0.75 0.75 0.87 0.56 0.85 0.81 0.80 0.40 0.71 0.64
## 102 0.81 0.71 0.58 0.69 0.90 0.77 0.86 0.62 0.40 0.93 0.67 0.54 0.53 0.65 0.75
## 103 0.61 0.53 0.35 0.50 0.94 0.71 0.78 0.67 0.50 0.84 0.63 0.61 0.37 0.55 0.56
## 104 0.73 0.79 0.78 0.77 1.00 1.00 0.62 0.92 0.88 0.62 0.75 0.83 0.89 0.80 0.93
## 105 0.70 0.86 0.76 0.75 0.75 0.89 0.75 0.91 0.71 0.89 0.73 0.82 0.81 0.87 0.92
## 106 0.69 0.57 0.75 0.73 1.00 1.00 0.83 0.77 0.71 0.83 0.80 0.87 0.65 0.69 0.80
## 107 0.67 0.65 0.44 0.62 0.91 0.69 0.69 0.73 0.53 0.79 0.69 0.46 0.38 0.67 0.76
## 108 0.90 0.83 0.94 1.00 1.00 1.00 0.86 0.89 0.86 1.00 0.80 0.78 0.94 0.93 1.00
## 109 0.62 0.61 0.50 0.59 0.92 0.81 0.73 0.76 0.41 0.81 0.79 0.78 0.25 0.63 0.72
## 110 0.62 0.69 0.76 0.46 1.00 0.85 0.85 0.79 0.72 0.85 0.73 0.88 0.50 0.71 0.54
## 111 0.81 0.71 0.50 0.60 0.90 0.77 0.86 0.94 0.67 0.55 0.82 0.54 0.61 0.85 0.82
## 112 0.73 0.62 0.41 0.69 1.00 0.67 0.77 0.50 0.67 0.67 0.67 0.64 0.68 0.65 0.67
## 113 0.79 0.75 0.53 0.81 1.00 0.92 0.73 0.86 0.62 0.83 0.80 0.79 0.72 0.76 0.88
## 114 0.83 0.87 0.84 0.77 1.00 0.90 0.90 0.92 0.88 0.90 0.75 0.83 0.82 0.71 0.75
## 115 0.62 0.61 0.42 0.67 1.00 0.73 0.73 0.76 0.58 0.73 0.65 0.53 0.53 0.56 0.72
## 116 0.92 0.77 0.83 0.85 0.75 0.89 0.89 0.91 0.80 0.89 0.92 0.82 0.81 0.87 0.92
## 117 0.92 0.77 0.89 0.85 1.00 1.00 0.89 0.91 0.94 0.75 0.92 0.92 0.88 0.87 1.00
## 118 0.87 0.89 0.68 0.81 1.00 0.73 0.73 0.77 0.71 0.60 0.71 0.69 0.72 0.69 0.80
## 119 0.47 0.47 0.52 0.53 0.93 0.82 0.75 0.78 0.53 0.82 0.59 0.72 0.47 0.58 0.50
## 120 0.82 0.77 0.76 0.75 0.75 0.89 0.89 0.80 0.80 0.89 0.83 0.82 0.73 0.87 0.92
## 121 0.64 0.80 0.85 0.79 1.00 1.00 0.80 0.83 0.75 0.91 0.86 1.00 0.69 0.64 0.67
## 122 0.71 0.53 0.50 0.67 0.92 0.81 0.73 0.76 0.58 0.88 0.85 0.78 0.44 0.56 0.65
## 123 0.84 0.61 0.42 0.50 0.92 0.81 0.81 0.69 0.58 0.54 0.79 0.71 0.53 0.70 0.56
## 124 0.86 0.73 0.74 0.62 0.86 0.82 0.82 0.75 0.89 0.82 0.79 0.77 0.78 0.75 0.69
## 125 0.67 0.64 0.74 0.71 1.00 0.92 0.92 0.75 0.69 0.92 0.58 0.86 0.78 0.57 0.79
## 126 0.57 0.65 0.53 0.71 1.00 0.69 0.69 0.64 0.68 0.69 0.60 0.57 0.70 0.59 0.76
## 127 0.60 0.59 0.55 0.79 1.00 0.94 0.62 0.57 0.47 0.80 0.53 0.83 0.71 0.44 0.71
## 128 0.82 0.72 0.44 0.71 0.91 0.69 0.69 0.64 0.61 0.58 0.76 0.46 0.56 0.67 0.69
## 129 0.76 0.50 0.55 0.56 0.92 0.80 0.71 0.67 0.56 0.71 0.53 0.50 0.58 0.68 0.62
## 130 0.64 0.62 0.58 0.76 1.00 0.86 0.77 0.62 0.59 0.86 0.46 0.73 0.68 0.56 0.67
## 131 0.72 0.38 0.52 0.53 1.00 0.89 0.67 0.71 0.60 0.57 0.67 0.72 0.55 0.65 0.67
## 132 0.76 0.40 0.62 0.56 1.00 0.80 0.88 0.67 0.63 0.71 0.62 0.60 0.50 0.68 0.71
## 133 0.67 0.73 0.74 0.62 1.00 0.92 0.70 0.75 0.76 0.82 0.69 0.93 0.53 0.75 0.58
## 134 0.71 0.69 0.63 0.57 0.89 0.85 0.75 0.69 0.47 0.93 0.64 0.71 0.50 0.78 0.73
## 135 0.83 0.79 0.71 0.67 0.80 0.78 1.00 0.82 0.88 0.90 0.85 0.73 0.82 0.88 0.64
## 136 0.61 0.67 0.43 0.71 1.00 0.71 0.71 0.74 0.42 0.78 0.47 0.53 0.52 0.39 0.70
## 137 0.87 0.67 0.68 0.64 1.00 0.60 0.92 0.67 0.71 0.73 0.71 0.79 0.65 0.69 0.50
## 138 0.80 0.38 0.63 0.57 1.00 0.85 0.85 0.69 0.65 0.75 0.64 0.80 0.74 0.84 0.73
## 139 0.60 0.40 0.55 0.65 0.92 0.80 0.88 0.75 0.63 0.80 0.71 0.69 0.58 0.61 0.71
## 140 0.69 0.67 0.47 0.65 1.00 0.94 0.71 0.75 0.70 0.71 0.71 0.76 0.58 0.68 0.62
## 141 0.59 0.65 0.55 0.56 1.00 0.76 0.76 0.72 0.55 0.69 0.53 0.67 0.42 0.53 0.68
## 142 0.75 0.71 0.72 0.87 0.83 0.80 0.80 0.83 0.57 0.91 0.77 0.75 0.76 0.73 0.86
## 143 0.85 0.80 0.72 0.79 1.00 0.80 0.80 0.60 0.82 0.80 0.67 0.85 0.89 0.64 0.77
## 144 0.76 0.59 0.47 0.47 0.92 0.71 0.94 0.75 0.70 0.88 0.78 0.76 0.50 0.53 0.43
## 145 0.76 0.59 0.47 0.56 0.92 0.80 0.88 0.82 0.38 0.71 0.53 0.60 0.65 0.75 0.84
## 146 1.00 1.00 0.94 1.00 1.00 0.83 1.00 1.00 0.93 1.00 1.00 1.00 0.93 0.92 0.90
## 147 0.73 0.79 0.71 0.93 1.00 0.90 0.62 0.70 0.81 0.62 0.85 0.92 0.89 0.71 0.93
## 148 0.90 1.00 0.88 1.00 1.00 0.86 1.00 1.00 0.93 1.00 1.00 0.90 0.94 0.85 0.91
## 149 0.71 0.61 0.50 0.59 0.92 0.73 0.81 0.60 0.58 0.73 0.65 0.71 0.60 0.56 0.72
## 150 1.00 0.92 1.00 0.91 1.00 1.00 1.00 1.00 0.93 1.00 0.90 1.00 0.93 0.92 0.90
## 151 0.77 0.73 0.80 0.80 0.86 0.82 0.70 0.93 0.60 0.82 0.69 0.77 0.62 0.67 0.69
## 152 0.92 0.93 0.76 0.93 1.00 0.75 1.00 0.80 0.71 0.89 0.92 0.82 0.88 0.87 1.00
## 153 0.82 0.77 0.76 0.93 1.00 0.89 0.75 0.67 0.88 0.75 0.73 0.82 0.94 0.79 0.92
## 154 0.80 0.93 0.82 1.00 1.00 0.71 0.88 0.90 0.87 1.00 0.92 0.80 0.80 0.77 0.82
## 155 0.75 0.65 0.60 0.78 1.00 0.79 0.79 0.64 0.61 0.87 0.83 0.75 0.63 0.50 0.69
## 156 0.92 0.87 0.71 0.77 1.00 0.78 0.90 0.82 0.81 0.62 0.93 0.83 0.82 0.88 0.85
## 157 1.00 0.92 0.94 0.91 1.00 1.00 1.00 1.00 1.00 0.83 0.90 0.89 1.00 1.00 0.90
## 158 0.71 0.76 0.70 0.82 1.00 0.93 0.64 0.79 0.65 0.85 0.81 0.88 0.67 0.53 0.64
## 159 0.65 0.63 0.52 0.61 0.93 0.75 0.75 0.62 0.53 0.82 0.80 0.72 0.29 0.50 0.50
## 160 0.69 0.82 0.68 0.64 1.00 0.83 0.83 0.67 0.78 0.73 0.80 0.79 0.72 0.60 0.71
## 161 0.64 0.62 0.65 0.69 1.00 0.86 0.86 0.71 0.74 0.77 0.75 0.88 0.68 0.47 0.57
## 162 0.73 0.79 0.84 0.86 1.00 0.90 0.90 0.92 0.88 0.90 1.00 0.83 0.67 0.80 0.75
## 163 0.79 0.89 0.53 0.73 0.88 0.44 0.83 0.86 0.62 0.83 0.80 0.58 0.65 0.69 0.80
## 164 0.69 0.67 0.53 0.81 0.88 0.60 0.83 0.67 0.71 0.92 0.80 0.58 0.56 0.69 0.80
## 165 0.75 0.65 0.44 0.62 0.91 0.69 0.58 0.64 0.53 0.69 0.69 0.67 0.47 0.59 0.76
## 166 0.82 0.79 0.60 0.71 1.00 0.69 0.79 0.64 0.68 0.79 0.83 0.82 0.56 0.50 0.38
## 167 0.50 0.58 0.40 0.70 0.93 0.69 0.69 0.79 0.29 0.83 0.61 0.59 0.42 0.44 0.68
## 168 0.60 0.79 0.78 0.86 1.00 0.78 0.62 0.70 0.64 0.90 0.64 0.83 0.75 0.80 0.93
## 169 0.69 0.50 0.62 0.65 0.92 0.80 0.88 0.75 0.47 0.94 0.53 0.76 0.65 0.53 0.62
## 170 0.65 0.56 0.28 0.53 0.93 0.57 0.82 0.53 0.44 0.89 0.67 0.65 0.29 0.58 0.59
## 171 0.92 0.86 0.89 0.85 1.00 1.00 1.00 1.00 0.80 1.00 0.92 0.92 0.81 0.79 0.92
## 172 0.75 0.72 0.60 0.53 0.91 0.87 0.69 0.81 0.61 0.69 0.60 0.75 0.47 0.67 0.69
## 173 1.00 0.92 0.94 0.91 1.00 1.00 1.00 1.00 1.00 0.83 1.00 1.00 0.93 1.00 1.00
## 174 0.70 0.77 0.76 0.93 1.00 0.75 0.89 0.80 0.88 0.89 0.73 0.70 0.88 0.79 0.83
## 175 0.92 0.79 0.78 0.77 1.00 0.90 0.90 0.70 0.88 0.90 0.93 0.92 0.82 0.80 0.64
## 176 0.57 0.65 0.53 0.78 1.00 0.79 0.79 0.73 0.61 0.87 0.60 0.67 0.63 0.59 0.76
## 177 0.77 0.73 0.67 1.00 1.00 0.82 0.82 0.75 0.50 1.00 0.79 0.77 0.78 0.67 0.87
## 178 0.53 0.68 0.33 0.67 0.92 0.64 0.64 0.38 0.58 0.73 0.65 0.62 0.53 0.47 0.65
## 179 0.71 0.68 0.57 0.74 1.00 0.81 0.73 0.60 0.58 0.73 0.65 0.62 0.67 0.56 0.79
## 180 0.64 0.62 0.58 0.69 0.90 0.67 0.86 0.62 0.50 0.86 0.67 0.64 0.68 0.65 0.82
## 181 0.92 0.94 0.71 0.77 1.00 0.90 1.00 0.82 0.81 0.90 0.75 0.73 0.82 0.80 0.75
## 182 0.67 0.41 0.48 0.56 1.00 0.76 0.89 0.65 0.62 0.83 0.61 0.74 0.50 0.44 0.44
## 183 0.60 0.87 0.78 0.86 1.00 0.78 0.90 0.82 0.81 0.90 0.64 0.83 0.82 0.71 0.64
## 184 0.83 0.69 0.78 0.77 0.80 0.90 0.78 0.92 0.64 1.00 0.75 0.73 0.67 0.88 0.93
## 185 0.71 0.53 0.50 0.50 0.92 0.81 0.73 0.76 0.58 0.73 0.65 0.62 0.60 0.70 0.72
## 186 0.47 0.63 0.45 0.75 0.93 0.67 0.75 0.71 0.25 0.95 0.67 0.65 0.39 0.50 0.74
## 187 1.00 0.92 0.94 0.91 1.00 1.00 1.00 0.88 1.00 1.00 1.00 1.00 1.00 1.00 0.90
## 188 0.75 0.56 0.53 0.43 0.91 0.79 0.79 0.64 0.53 0.79 0.69 0.75 0.38 0.67 0.69
## 189 0.54 0.43 0.58 0.76 0.90 0.77 0.67 0.71 0.50 0.93 0.57 0.64 0.68 0.65 0.75
## 190 0.45 0.75 0.68 0.81 1.00 0.92 0.44 0.67 0.62 0.92 0.71 0.94 0.56 0.50 0.71
## 191 0.60 0.50 0.62 0.56 0.92 0.88 0.71 0.82 0.63 0.71 0.62 0.69 0.50 0.61 0.78
## 192 0.90 0.92 0.88 0.92 1.00 0.86 0.86 0.75 0.86 0.86 1.00 0.90 0.87 0.93 0.91
## 193 0.92 0.79 0.78 0.77 1.00 1.00 0.90 1.00 0.88 0.43 0.85 0.83 0.89 0.88 0.85
## 194 0.60 0.67 0.39 0.56 0.92 0.80 0.71 0.75 0.70 0.71 0.71 0.69 0.58 0.53 0.71
## 195 0.45 0.57 0.61 0.73 1.00 0.83 0.60 0.67 0.62 0.73 0.62 0.69 0.72 0.69 0.88
## 196 0.75 0.71 0.79 0.79 0.83 0.80 0.91 0.83 0.67 0.80 0.67 0.75 0.83 0.81 0.86
## 197 0.71 0.83 0.70 0.67 0.89 0.75 0.85 0.79 0.79 0.85 0.81 0.80 0.59 0.53 0.64
## 198 0.86 0.73 0.74 0.62 0.86 0.70 0.92 0.75 0.60 0.82 0.87 0.86 0.53 0.75 0.58
## 199 0.69 0.75 0.68 0.81 0.88 0.92 0.73 0.93 0.62 0.83 0.80 0.69 0.65 0.69 0.94
## 200 0.83 0.79 0.84 0.86 1.00 1.00 0.62 0.70 0.81 0.90 0.85 1.00 0.82 0.71 0.64
## 201 0.88 0.60 0.70 0.67 1.00 0.85 0.93 0.79 0.65 0.64 0.64 0.71 0.86 0.78 0.73
## 202 0.60 0.74 0.62 0.56 1.00 0.80 0.71 0.67 0.63 0.80 0.53 0.69 0.58 0.53 0.62
## 203 0.82 0.85 0.44 0.84 1.00 0.58 0.87 0.64 0.61 0.79 0.76 0.57 0.76 0.59 0.76
## 204 0.69 0.75 0.68 0.81 0.88 0.92 0.73 0.86 0.62 0.92 0.80 0.69 0.72 0.69 0.88
## 205 0.89 0.92 0.94 1.00 1.00 1.00 0.83 0.88 0.93 1.00 0.90 0.89 0.93 0.92 1.00
## 206 0.82 0.77 0.76 0.93 1.00 0.75 0.89 0.80 0.80 0.89 0.73 0.82 0.88 0.79 0.83
## 207 0.92 0.94 0.71 0.77 0.80 0.78 0.90 0.70 0.81 0.90 0.85 0.83 0.82 0.71 0.85
## 208 0.71 0.68 0.57 0.67 1.00 0.81 0.81 0.83 0.41 0.81 0.65 0.71 0.44 0.63 0.47
## 209 0.80 0.50 0.76 0.67 0.89 0.93 0.75 0.87 0.72 0.64 0.73 0.71 0.67 0.71 0.88
## 210 0.62 0.69 0.63 0.75 0.89 0.85 0.75 0.69 0.65 0.85 0.64 0.80 0.74 0.53 0.81
## 211 0.73 0.84 0.65 0.69 1.00 0.77 0.77 0.71 0.59 0.86 0.57 0.73 0.61 0.56 0.67
## 212 0.71 0.76 0.56 0.82 1.00 0.50 0.85 0.69 0.65 0.75 0.64 0.50 0.67 0.62 0.81
## 213 0.76 0.74 0.47 0.65 0.92 0.62 0.80 0.75 0.63 0.62 0.62 0.50 0.58 0.61 0.71
## 214 0.59 0.58 0.48 0.76 0.93 0.69 0.76 0.79 0.47 0.83 0.68 0.59 0.42 0.44 0.68
## 215 0.81 0.71 0.58 0.60 1.00 0.86 0.86 0.50 0.74 0.77 0.75 0.64 0.61 0.72 0.82
## 216 0.91 0.85 0.82 0.73 1.00 0.88 0.88 0.78 0.87 0.88 0.92 0.91 0.88 1.00 0.92
##       16   17   18   19   20   21   22   23   24   25   26   27   28   29   30
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17  0.83                                                                      
## 18  1.00 1.00                                                                 
## 19  0.94 0.93 0.79                                                            
## 20  0.88 0.87 0.71 0.31                                                       
## 21  0.86 1.00 0.86 0.79 0.80                                                  
## 22  1.00 1.00 0.70 0.71 0.65 0.92                                             
## 23  0.92 0.92 0.83 0.36 0.50 0.83 0.73                                        
## 24  0.91 0.90 0.91 0.69 0.84 0.91 0.58 0.62                                   
## 25  1.00 0.89 0.90 0.75 0.69 0.90 0.67 0.79 0.75                              
## 26  0.86 1.00 0.77 0.33 0.56 0.67 0.76 0.62 0.75 0.81                         
## 27  0.71 1.00 1.00 0.80 0.88 0.71 0.92 0.85 0.82 0.67 0.69                    
## 28  0.82 0.91 0.92 0.53 0.56 0.70 0.94 0.54 0.79 0.93 0.60 0.92               
## 29  0.86 0.93 0.77 0.44 0.63 0.77 0.69 0.62 0.75 0.81 0.50 0.79 0.76          
## 30  0.92 1.00 0.92 0.71 0.85 0.92 0.62 0.73 0.45 0.86 0.69 0.83 0.71 0.69     
## 31  0.87 0.77 0.79 0.56 0.50 0.87 0.78 0.65 0.76 0.82 0.53 0.94 0.62 0.68 0.84
## 32  0.88 0.79 0.88 0.65 0.60 0.94 0.56 0.67 0.62 0.60 0.70 0.73 0.85 0.70 0.72
## 33  0.77 0.85 0.93 0.68 0.63 0.93 0.83 0.78 0.75 0.64 0.67 0.69 0.69 0.74 0.60
## 34  0.88 0.94 0.80 0.65 0.53 0.94 0.47 0.67 0.78 0.69 0.70 0.81 0.79 0.56 0.65
## 35  0.92 0.80 0.92 0.53 0.56 0.92 0.80 0.81 0.87 0.77 0.69 0.92 0.71 0.60 0.80
## 36  0.67 0.93 0.86 0.68 0.63 0.86 0.76 0.90 0.82 0.81 0.59 0.79 0.69 0.59 0.60
## 37  0.78 0.75 0.90 0.75 0.69 0.90 0.77 0.69 0.85 0.83 0.88 0.80 0.86 0.73 0.77
## 38  0.80 1.00 0.80 0.93 0.86 1.00 0.90 0.91 1.00 0.88 0.92 1.00 0.90 0.92 1.00
## 39  0.92 0.91 0.82 0.53 0.36 0.92 0.80 0.54 0.87 0.67 0.76 0.92 0.50 0.83 0.88
## 40  1.00 0.90 0.91 0.69 0.71 0.80 0.69 0.94 0.93 0.75 0.57 0.82 0.87 0.67 0.79
## 41  1.00 0.83 0.86 0.87 0.88 0.86 0.82 1.00 0.91 0.90 0.86 1.00 0.92 0.67 0.82
## 42  0.86 1.00 0.86 1.00 0.94 1.00 0.82 1.00 0.91 0.78 0.93 0.88 0.92 0.86 0.82
## 43  0.88 0.86 0.71 0.80 0.64 0.88 0.73 0.75 0.92 0.80 0.87 0.89 0.92 0.79 0.92
## 44  0.86 0.93 0.77 0.61 0.47 0.93 0.50 0.53 0.82 0.81 0.74 0.87 0.76 0.59 0.76
## 45  0.83 0.82 0.83 0.72 0.67 1.00 0.64 0.82 0.71 0.69 0.78 0.85 0.81 0.78 0.64
## 46  1.00 1.00 0.82 0.43 0.56 0.82 0.71 0.54 0.79 0.67 0.60 0.73 0.71 0.69 0.71
## 47  0.75 1.00 1.00 0.92 0.93 1.00 1.00 0.90 1.00 1.00 0.92 1.00 0.89 0.92 1.00
## 48  0.86 0.85 0.86 0.61 0.47 0.93 0.60 0.84 0.75 0.64 0.67 0.94 0.69 0.74 0.69
## 49  0.77 0.75 0.93 0.61 0.56 0.86 0.60 0.53 0.57 0.81 0.67 0.87 0.69 0.74 0.76
## 50  0.75 0.83 0.85 0.59 0.61 0.93 0.82 0.69 0.64 0.71 0.65 0.67 0.75 0.72 0.75
## 51  0.77 0.75 0.86 0.53 0.47 0.67 0.76 0.62 0.75 0.81 0.50 0.87 0.60 0.59 0.89
## 52  0.93 0.92 0.85 0.50 0.53 0.85 0.46 0.60 0.54 0.71 0.65 0.86 0.67 0.65 0.57
## 53  1.00 0.88 0.75 0.81 0.82 0.89 0.64 0.77 0.83 0.92 0.71 0.90 0.93 0.71 0.75
## 54  0.92 0.80 0.92 0.71 0.72 0.92 0.80 0.64 0.87 0.86 0.69 0.83 0.80 0.69 0.62
## 55  0.94 0.94 0.80 0.58 0.53 0.88 0.56 0.59 0.62 0.76 0.70 0.94 0.56 0.63 0.65
## 56  0.73 0.82 0.92 0.79 0.80 0.83 0.73 0.67 0.62 0.87 0.71 0.64 0.81 0.71 0.64
## 57  1.00 0.89 0.78 0.75 0.69 0.78 0.55 0.79 0.85 0.73 0.81 0.91 0.86 0.73 0.86
## 58  0.88 0.88 0.81 0.44 0.47 0.81 0.67 0.53 0.72 0.62 0.58 0.75 0.74 0.31 0.74
## 59  0.60 0.80 1.00 0.93 0.94 0.83 1.00 0.92 0.90 1.00 0.85 0.86 0.80 0.85 0.91
## 60  0.79 1.00 0.79 0.63 0.50 0.79 0.62 0.79 0.83 0.67 0.44 0.71 0.71 0.61 0.78
## 61  0.82 0.91 0.92 0.62 0.65 0.82 0.71 0.64 0.79 0.67 0.69 0.83 0.80 0.50 0.71
## 62  0.92 0.82 0.92 0.36 0.50 0.73 0.88 0.57 0.80 0.69 0.53 0.75 0.64 0.62 0.81
## 63  0.89 0.88 0.89 0.73 0.82 0.75 0.75 0.67 0.60 0.82 0.71 0.62 0.85 0.71 0.75
## 64  0.86 0.93 0.93 0.68 0.63 0.86 0.69 0.71 0.82 0.54 0.74 0.69 0.83 0.50 0.76
## 65  0.88 0.88 0.94 0.53 0.55 0.73 0.67 0.61 0.65 0.71 0.50 0.82 0.50 0.65 0.67
## 66  0.79 1.00 0.87 0.63 0.58 0.79 0.71 0.56 0.76 0.75 0.53 0.71 0.62 0.61 0.71
## 67  0.77 0.85 0.77 0.61 0.63 0.67 0.69 0.84 0.75 0.81 0.50 0.69 0.83 0.40 0.76
## 68  0.92 0.70 0.92 0.79 0.74 1.00 0.73 0.75 0.71 0.69 0.78 0.93 0.81 0.84 0.73
## 69  0.86 0.93 0.77 0.75 0.70 0.77 0.60 0.71 0.67 0.73 0.67 0.69 0.76 0.67 0.69
## 70  0.88 0.94 0.80 0.65 0.67 0.88 0.65 0.80 0.71 0.69 0.63 0.73 0.72 0.56 0.47
## 71  0.87 0.93 0.79 0.70 0.58 0.79 0.53 0.56 0.60 0.67 0.75 0.80 0.62 0.68 0.62
## 72  0.91 1.00 0.80 0.69 0.78 0.67 0.87 0.80 0.77 0.85 0.46 0.82 0.58 0.75 0.69
## 73  0.85 0.73 0.93 0.50 0.61 0.85 0.82 0.50 0.73 0.71 0.56 0.77 0.75 0.65 0.82
## 74  0.85 0.83 0.93 0.67 0.53 0.85 0.75 0.69 0.81 0.62 0.65 0.86 0.67 0.79 0.82
## 75  0.75 0.88 0.75 0.88 0.82 0.89 0.85 1.00 0.92 0.82 0.80 0.62 0.93 0.80 0.85
## 76  0.86 1.00 1.00 0.87 0.88 1.00 0.82 0.92 0.80 0.78 0.93 0.71 0.92 0.86 0.82
## 77  0.75 1.00 1.00 0.92 0.93 1.00 1.00 0.90 1.00 1.00 0.92 1.00 0.89 0.92 1.00
## 78  0.88 0.87 0.88 0.50 0.53 0.88 0.56 0.67 0.62 0.50 0.63 0.73 0.79 0.47 0.79
## 79  0.87 0.93 0.79 0.47 0.58 0.79 0.53 0.56 0.60 0.75 0.44 0.71 0.78 0.53 0.62
## 80  0.87 0.77 0.87 0.56 0.41 0.79 0.78 0.56 0.83 0.67 0.61 0.88 0.53 0.68 0.84
## 81  0.67 0.78 0.91 0.83 0.71 0.91 0.87 0.88 0.86 0.85 0.89 0.70 0.79 0.82 0.79
## 82  0.78 0.89 0.90 0.82 0.76 0.90 0.77 0.87 0.93 0.83 0.81 0.80 0.86 0.64 0.67
## 83  0.80 0.75 1.00 0.93 0.86 1.00 0.90 0.91 0.89 1.00 1.00 1.00 0.90 1.00 0.90
## 84  1.00 1.00 1.00 0.71 0.73 1.00 0.83 0.64 0.82 0.80 0.87 0.89 0.73 0.87 0.73
## 85  0.89 0.88 0.89 0.88 0.75 0.89 0.85 0.86 0.92 0.82 0.80 1.00 0.75 0.88 0.85
## 86  1.00 0.91 0.92 0.62 0.56 0.82 0.80 0.73 0.79 0.67 0.76 0.92 0.50 0.76 0.71
## 87  0.88 0.86 1.00 0.80 0.88 1.00 0.73 0.85 0.56 0.80 0.87 0.89 0.92 0.79 0.60
## 88  0.75 1.00 0.85 0.74 0.68 0.75 0.67 0.60 0.73 0.62 0.65 0.67 0.75 0.65 0.75
## 89  0.88 0.87 0.88 0.65 0.60 0.88 0.72 0.67 0.62 0.69 0.70 0.81 0.56 0.63 0.65
## 90  0.60 0.80 1.00 0.93 0.79 1.00 0.91 0.92 1.00 0.89 0.93 1.00 0.91 0.93 1.00
## 91  0.92 1.00 0.73 0.65 0.59 0.60 0.64 0.75 0.80 0.58 0.62 0.75 0.73 0.53 0.64
## 92  1.00 0.83 1.00 0.79 0.80 0.67 0.92 0.83 1.00 0.90 0.77 0.88 0.82 0.77 1.00
## 93  0.88 0.87 0.88 0.50 0.60 0.80 0.65 0.67 0.62 0.60 0.47 0.73 0.72 0.56 0.65
## 94  0.60 0.92 0.92 0.65 0.59 0.73 0.81 0.75 0.80 0.69 0.62 0.50 0.73 0.71 0.81
## 95  0.82 0.91 0.82 0.62 0.72 0.82 0.71 0.81 0.58 0.86 0.60 0.83 0.71 0.60 0.71
## 96  0.86 1.00 0.67 0.79 0.80 0.86 0.92 0.73 0.91 1.00 0.86 0.88 0.82 0.67 0.92
## 97  0.75 0.88 0.89 0.64 0.57 0.89 0.85 0.67 1.00 0.92 0.71 0.90 0.75 0.71 0.85
## 98  0.87 0.77 0.94 0.70 0.65 0.94 0.71 0.72 0.60 0.67 0.75 0.80 0.78 0.68 0.71
## 99  0.88 0.94 0.73 0.35 0.29 0.81 0.59 0.44 0.65 0.53 0.50 0.75 0.59 0.58 0.67
## 100 0.80 0.78 0.91 0.83 0.78 0.91 0.87 0.94 0.86 0.85 0.75 0.82 0.79 0.82 0.69
## 101 0.92 1.00 0.70 0.71 0.65 0.82 0.62 0.81 0.79 0.86 0.69 0.92 0.71 0.69 0.80
## 102 0.92 0.92 0.83 0.56 0.59 0.92 0.54 0.46 0.62 0.58 0.62 0.85 0.81 0.71 0.81
## 103 0.82 0.81 0.89 0.47 0.42 0.82 0.75 0.38 0.74 0.79 0.60 0.83 0.53 0.53 0.75
## 104 0.88 0.86 0.88 0.88 0.81 1.00 0.83 0.93 0.92 0.91 0.87 1.00 0.83 0.79 0.60
## 105 1.00 1.00 1.00 0.94 1.00 1.00 0.82 0.83 0.67 0.78 0.86 0.88 0.92 0.86 0.56
## 106 0.67 1.00 1.00 0.76 0.71 0.80 0.79 0.62 0.86 0.85 0.75 0.70 0.69 0.75 0.79
## 107 0.85 0.92 0.85 0.67 0.68 0.93 0.67 0.76 0.64 0.62 0.65 0.86 0.75 0.56 0.75
## 108 0.80 1.00 1.00 0.85 0.86 1.00 1.00 0.80 1.00 1.00 0.83 1.00 0.78 0.92 1.00
## 109 0.79 1.00 0.87 0.56 0.65 0.79 0.62 0.47 0.60 0.82 0.53 0.71 0.62 0.53 0.53
## 110 0.92 0.91 0.82 0.78 0.72 0.82 0.71 0.73 0.69 0.93 0.76 0.92 0.62 0.76 0.62
## 111 0.73 0.92 0.92 0.72 0.80 0.73 0.73 0.82 0.62 0.79 0.53 0.64 0.81 0.53 0.64
## 112 0.73 0.70 0.83 0.72 0.59 0.92 0.81 0.75 0.80 0.69 0.78 0.85 0.81 0.62 0.94
## 113 0.80 0.90 0.91 0.76 0.84 0.80 0.79 0.80 0.86 0.85 0.67 0.82 0.79 0.46 0.79
## 114 0.88 0.67 1.00 0.71 0.64 0.88 0.83 0.64 0.82 0.80 0.94 0.89 0.73 0.87 0.83
## 115 0.79 0.86 0.87 0.56 0.41 0.79 0.78 0.56 0.83 0.75 0.61 0.88 0.53 0.53 0.84
## 116 0.67 1.00 1.00 0.79 0.88 0.67 0.92 0.73 0.80 0.78 0.67 0.50 0.82 0.77 0.82
## 117 0.86 1.00 0.86 0.79 0.80 1.00 0.92 0.83 1.00 1.00 0.86 0.88 0.82 0.77 0.82
## 118 0.91 0.90 0.67 0.60 0.62 0.91 0.69 0.62 0.67 0.85 0.75 0.92 0.69 0.67 0.79
## 119 0.88 0.87 0.94 0.71 0.67 0.88 0.65 0.80 0.62 0.69 0.70 0.81 0.72 0.70 0.47
## 120 0.67 1.00 1.00 0.87 0.94 1.00 0.92 0.73 0.80 0.90 0.86 0.71 0.92 0.77 0.82
## 121 0.89 1.00 1.00 0.81 0.75 0.75 0.64 0.67 0.73 0.82 0.88 0.78 0.75 0.88 0.64
## 122 0.87 0.93 0.79 0.56 0.58 0.69 0.71 0.72 0.83 0.75 0.44 0.80 0.62 0.44 0.62
## 123 0.79 0.86 0.69 0.76 0.71 0.87 0.53 0.79 0.60 0.75 0.68 0.80 0.90 0.53 0.62
## 124 0.90 0.57 0.90 0.67 0.69 1.00 0.86 0.69 0.75 0.83 0.88 0.91 0.77 0.73 0.67
## 125 0.78 0.89 0.90 0.75 0.60 0.90 0.77 0.69 0.93 0.73 0.81 0.80 0.86 0.81 0.86
## 126 0.93 0.83 0.85 0.59 0.44 0.93 0.75 0.76 0.81 0.71 0.65 0.93 0.67 0.72 0.75
## 127 0.86 0.93 0.86 0.68 0.56 0.93 0.50 0.71 0.82 0.64 0.74 0.79 0.83 0.67 0.76
## 128 0.75 0.83 0.75 0.59 0.61 0.85 0.67 0.69 0.54 0.71 0.56 0.86 0.75 0.56 0.67
## 129 0.77 0.75 0.86 0.68 0.56 1.00 0.69 0.62 0.67 0.64 0.80 0.87 0.76 0.67 0.83
## 130 0.73 0.82 1.00 0.65 0.50 0.92 0.73 0.57 0.80 0.69 0.78 0.75 0.73 0.84 0.88
## 131 0.71 0.87 0.71 0.71 0.53 0.88 0.72 0.74 0.84 0.83 0.63 0.88 0.65 0.56 0.72
## 132 0.67 0.85 0.86 0.61 0.47 0.93 0.76 0.71 0.75 0.73 0.67 0.79 0.69 0.74 0.83
## 133 0.78 0.89 1.00 0.89 0.83 0.90 0.77 0.79 0.64 0.83 0.88 0.80 0.67 0.94 0.67
## 134 0.92 0.91 0.82 0.71 0.79 1.00 0.62 0.64 0.58 0.86 0.69 0.92 0.80 0.69 0.62
## 135 0.88 0.67 1.00 0.88 0.88 0.88 0.92 0.85 0.82 0.91 0.87 0.89 0.92 0.79 0.83
## 136 0.89 0.88 0.75 0.29 0.24 0.82 0.61 0.56 0.74 0.72 0.44 0.89 0.53 0.53 0.68
## 137 0.80 0.78 0.67 0.76 0.53 0.80 0.79 0.80 0.77 0.64 0.75 0.82 0.79 0.89 0.94
## 138 0.82 0.80 0.82 0.84 0.65 1.00 0.80 0.88 0.94 0.77 0.76 0.83 0.88 0.83 0.94
## 139 0.67 0.93 1.00 0.61 0.56 0.77 0.83 0.62 0.82 0.73 0.59 0.58 0.69 0.67 0.76
## 140 0.67 0.85 0.93 0.68 0.70 0.77 0.69 0.78 0.75 0.94 0.59 0.79 0.69 0.59 0.60
## 141 0.88 0.94 0.81 0.53 0.55 0.88 0.59 0.68 0.56 0.78 0.58 0.82 0.59 0.65 0.50
## 142 1.00 1.00 0.89 0.81 0.82 1.00 0.64 0.93 0.73 0.38 0.80 0.78 1.00 0.80 0.75
## 143 1.00 0.71 0.75 0.81 0.75 1.00 0.75 0.93 0.83 0.56 0.88 0.90 0.93 0.80 0.85
## 144 0.86 0.75 0.86 0.68 0.56 0.77 0.76 0.62 0.82 0.64 0.80 0.79 0.76 0.59 0.83
## 145 0.86 0.93 0.86 0.68 0.70 0.93 0.60 0.71 0.67 0.64 0.59 0.69 0.89 0.67 0.69
## 146 1.00 1.00 0.75 0.92 0.93 0.75 1.00 0.90 1.00 1.00 0.92 1.00 0.89 0.92 1.00
## 147 0.88 1.00 0.88 0.88 0.81 1.00 0.73 1.00 0.92 0.67 0.87 0.75 1.00 0.79 0.83
## 148 1.00 1.00 1.00 0.85 0.86 0.50 0.90 0.91 1.00 0.88 0.83 0.83 0.90 0.83 1.00
## 149 0.87 0.86 0.87 0.47 0.41 0.94 0.62 0.47 0.69 0.67 0.68 0.71 0.78 0.68 0.71
## 150 1.00 1.00 0.75 1.00 0.93 1.00 0.89 1.00 1.00 0.86 1.00 1.00 1.00 1.00 1.00
## 151 0.78 1.00 0.78 0.75 0.76 0.78 0.77 0.69 0.64 0.73 0.73 0.80 0.67 0.73 0.67
## 152 1.00 1.00 0.86 0.69 0.80 0.86 0.70 0.83 0.80 0.78 0.67 0.71 1.00 0.77 0.92
## 153 0.67 0.83 0.86 0.79 0.71 1.00 0.92 0.92 1.00 0.90 0.77 0.88 0.92 0.86 0.92
## 154 0.83 1.00 0.83 0.77 0.79 0.60 1.00 0.82 1.00 1.00 0.75 1.00 0.67 0.75 1.00
## 155 0.93 0.92 0.64 0.50 0.33 0.75 0.67 0.60 0.94 0.80 0.56 0.93 0.67 0.47 0.89
## 156 0.88 0.86 0.71 0.88 0.88 0.88 0.83 0.85 0.82 0.91 0.87 0.89 0.92 0.58 0.92
## 157 0.75 0.67 1.00 1.00 0.93 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00
## 158 1.00 0.91 0.70 0.71 0.65 0.92 0.50 0.81 0.79 0.77 0.83 1.00 0.80 0.60 0.62
## 159 0.88 0.94 0.71 0.50 0.53 0.80 0.56 0.59 0.62 0.83 0.56 0.88 0.65 0.47 0.56
## 160 1.00 0.90 0.67 0.76 0.71 0.91 0.58 0.80 0.77 0.85 0.82 1.00 0.87 0.57 0.69
## 161 0.83 0.92 0.83 0.72 0.50 0.73 0.64 0.82 0.88 0.69 0.71 0.75 0.81 0.78 0.73
## 162 0.88 1.00 1.00 0.80 0.81 0.71 0.83 0.93 0.82 0.91 0.79 0.89 0.73 0.79 0.73
## 163 1.00 0.90 0.80 0.60 0.71 0.67 0.79 0.62 0.67 0.64 0.57 0.82 0.69 0.57 0.79
## 164 0.80 0.90 1.00 0.60 0.71 0.91 0.87 0.80 0.77 0.64 0.67 0.70 0.79 0.67 0.87
## 165 0.85 0.92 0.64 0.67 0.61 0.93 0.67 0.69 0.73 0.62 0.65 0.86 0.75 0.56 0.75
## 166 0.93 0.83 0.64 0.59 0.44 0.64 0.57 0.69 0.73 0.71 0.65 0.86 0.67 0.65 0.82
## 167 0.88 0.94 0.81 0.44 0.39 0.81 0.59 0.61 0.72 0.62 0.50 0.82 0.67 0.50 0.67
## 168 0.88 1.00 0.88 0.71 0.73 1.00 0.83 0.75 0.82 0.91 0.69 0.89 0.73 0.87 0.83
## 169 0.86 0.85 0.86 0.53 0.47 0.86 0.76 0.43 0.82 0.73 0.67 0.79 0.69 0.67 0.76
## 170 0.88 0.87 0.80 0.58 0.60 0.88 0.72 0.67 0.71 0.69 0.56 0.81 0.72 0.56 0.79
## 171 1.00 1.00 0.86 0.79 0.80 0.86 0.70 0.83 0.91 0.78 0.86 0.88 0.92 0.77 0.82
## 172 0.85 0.92 0.85 0.74 0.81 0.93 0.57 0.76 0.42 0.71 0.72 0.77 0.75 0.72 0.33
## 173 0.75 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 0.80 1.00 0.92 1.00
## 174 0.67 0.83 1.00 0.79 0.71 0.86 1.00 0.92 1.00 0.90 0.77 0.88 0.82 0.86 1.00
## 175 0.88 0.67 1.00 0.88 0.81 0.71 0.83 0.85 0.82 0.67 0.87 0.75 0.83 0.87 0.92
## 176 0.85 0.92 0.85 0.50 0.53 0.85 0.82 0.69 0.88 0.94 0.47 0.93 0.57 0.65 0.67
## 177 0.90 1.00 0.90 0.57 0.60 0.78 0.77 0.69 0.93 0.73 0.54 0.80 0.77 0.73 0.93
## 178 0.87 0.86 0.87 0.56 0.58 0.94 0.62 0.65 0.60 0.67 0.68 0.80 0.78 0.53 0.71
## 179 0.87 0.86 0.87 0.38 0.50 0.87 0.62 0.56 0.60 0.75 0.53 0.80 0.62 0.53 0.62
## 180 0.92 0.92 0.83 0.56 0.67 0.92 0.81 0.46 0.71 0.79 0.62 0.85 0.73 0.53 0.73
## 181 0.88 0.67 1.00 0.80 0.81 0.88 0.73 0.75 0.70 0.80 0.87 0.89 0.92 0.87 0.83
## 182 0.73 0.80 0.88 0.60 0.39 0.73 0.80 0.61 0.85 0.71 0.65 0.75 0.59 0.65 0.86
## 183 0.88 0.86 1.00 0.80 0.73 0.88 0.83 0.85 0.82 0.91 0.87 0.89 0.83 0.94 0.83
## 184 0.88 1.00 0.88 0.80 0.88 1.00 0.83 0.85 0.82 0.80 0.69 0.89 0.83 0.79 0.73
## 185 0.87 0.77 0.94 0.63 0.58 0.94 0.71 0.56 0.69 0.67 0.75 0.80 0.71 0.61 0.71
## 186 0.94 1.00 0.88 0.31 0.44 0.80 0.65 0.40 0.71 0.76 0.38 0.81 0.56 0.56 0.65
## 187 1.00 0.67 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 0.92 1.00
## 188 0.75 0.92 0.85 0.74 0.68 0.85 0.67 0.60 0.64 0.62 0.65 0.67 0.75 0.72 0.75
## 189 0.92 0.92 0.92 0.72 0.67 0.92 0.81 0.82 0.88 0.58 0.62 0.85 0.73 0.71 0.81
## 190 0.91 1.00 0.80 0.69 0.62 0.91 0.69 0.62 0.86 0.93 0.75 1.00 0.58 0.75 0.58
## 191 0.77 1.00 0.86 0.68 0.70 0.86 0.76 0.71 0.75 0.81 0.59 0.79 0.60 0.59 0.50
## 192 1.00 1.00 0.80 0.93 0.86 1.00 0.78 0.91 0.89 0.88 0.92 1.00 1.00 0.92 1.00
## 193 0.50 0.86 1.00 0.94 0.88 0.71 0.83 0.93 0.82 0.80 0.87 0.57 0.92 0.79 0.83
## 194 0.86 0.85 0.93 0.68 0.63 0.86 0.69 0.71 0.75 0.64 0.74 0.79 0.76 0.59 0.60
## 195 0.80 0.90 0.91 0.76 0.62 1.00 0.79 0.80 0.86 0.75 0.75 0.92 0.79 0.75 0.79
## 196 0.89 1.00 1.00 0.81 0.89 0.89 0.85 0.77 0.60 0.70 0.71 0.62 0.85 0.88 0.64
## 197 0.92 0.91 0.92 0.53 0.65 0.70 0.71 0.54 0.58 0.77 0.69 0.73 0.62 0.69 0.50
## 198 0.90 1.00 0.62 0.82 0.76 0.78 0.67 0.69 0.64 0.73 0.73 0.80 0.86 0.81 0.77
## 199 0.80 1.00 1.00 0.60 0.78 0.91 0.69 0.62 0.67 0.75 0.75 0.70 0.79 0.46 0.58
## 200 1.00 0.86 0.71 0.88 0.73 1.00 0.60 0.93 0.92 0.80 0.94 1.00 0.92 0.87 0.83
## 201 0.82 0.80 0.82 0.78 0.65 0.82 0.71 0.81 0.79 0.67 0.69 0.73 0.88 0.76 0.88
## 202 1.00 0.85 0.77 0.61 0.56 0.93 0.60 0.62 0.67 0.81 0.74 1.00 0.60 0.67 0.60
## 203 1.00 0.83 0.75 0.40 0.53 0.75 0.67 0.69 0.73 0.71 0.47 0.86 0.75 0.47 0.82
## 204 0.91 0.90 1.00 0.60 0.78 0.91 0.69 0.62 0.67 0.75 0.75 0.82 0.79 0.46 0.58
## 205 0.75 1.00 1.00 0.92 0.93 1.00 1.00 0.90 1.00 1.00 0.92 1.00 0.89 0.92 1.00
## 206 0.67 0.83 0.86 0.79 0.71 0.86 1.00 0.83 1.00 0.90 0.77 0.88 0.82 0.86 1.00
## 207 1.00 0.86 0.88 0.71 0.81 0.88 0.73 0.64 0.70 0.67 0.79 0.75 0.92 0.79 0.73
## 208 0.87 0.93 0.79 0.63 0.50 0.69 0.53 0.65 0.69 0.82 0.53 0.88 0.62 0.75 0.71
## 209 0.70 1.00 0.82 0.71 0.72 0.92 0.80 0.73 0.79 0.77 0.69 0.73 0.71 0.60 0.62
## 210 0.82 0.91 0.92 0.53 0.56 0.92 0.71 0.54 0.79 0.77 0.69 0.73 0.80 0.69 0.62
## 211 1.00 0.92 0.73 0.56 0.50 0.83 0.54 0.57 0.71 0.79 0.62 0.93 0.64 0.78 0.73
## 212 0.82 0.91 0.82 0.53 0.56 0.82 0.88 0.64 0.79 0.77 0.60 0.83 0.62 0.60 0.94
## 213 0.86 0.85 0.77 0.53 0.56 0.93 0.60 0.78 0.57 0.64 0.67 0.79 0.83 0.59 0.69
## 214 0.81 0.94 0.94 0.35 0.47 0.73 0.74 0.53 0.65 0.62 0.50 0.67 0.50 0.50 0.67
## 215 0.83 0.82 0.83 0.56 0.67 1.00 0.73 0.57 0.71 0.94 0.71 0.93 0.73 0.53 0.73
## 216 1.00 0.80 0.83 0.93 0.94 1.00 0.91 0.92 0.90 1.00 0.85 1.00 0.91 0.85 0.91
##       31   32   33   34   35   36   37   38   39   40   41   42   43   44   45
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32  0.50                                                                      
## 33  0.75 0.63                                                                 
## 34  0.65 0.44 0.63                                                            
## 35  0.62 0.72 0.69 0.65                                                       
## 36  0.61 0.70 0.50 0.56 0.60                                                  
## 37  0.82 0.69 0.64 0.69 0.77 0.73                                             
## 38  0.85 0.93 1.00 0.86 0.90 0.83 1.00                                        
## 39  0.62 0.72 0.69 0.65 0.62 0.76 0.86 0.78                                   
## 40  0.69 0.62 0.75 0.62 0.45 0.67 0.85 1.00 0.87                              
## 41  0.87 0.94 0.86 0.80 0.70 0.77 0.90 1.00 1.00 0.67                         
## 42  0.87 0.80 0.77 0.71 1.00 0.67 0.90 0.80 0.92 0.91 0.86                    
## 43  0.80 0.73 0.87 0.73 0.92 0.79 0.67 0.83 0.83 0.92 1.00 0.88               
## 44  0.68 0.56 0.74 0.27 0.69 0.74 0.64 0.83 0.60 0.75 0.86 0.86 0.69          
## 45  0.72 0.40 0.53 0.67 0.73 0.62 0.69 0.91 0.73 0.71 0.92 0.73 0.85 0.71     
## 46  0.71 0.65 0.76 0.72 0.80 0.76 0.86 0.90 0.50 0.79 1.00 0.92 0.73 0.69 0.73
## 47  0.92 1.00 1.00 0.93 0.89 0.92 1.00 0.50 0.89 1.00 1.00 1.00 1.00 0.92 1.00
## 48  0.53 0.56 0.59 0.56 0.50 0.40 0.81 0.83 0.60 0.57 0.77 0.77 0.87 0.74 0.43
## 49  0.53 0.47 0.74 0.63 0.69 0.80 0.73 0.92 0.69 0.75 0.93 1.00 0.79 0.50 0.71
## 50  0.59 0.53 0.47 0.75 0.75 0.56 0.71 0.92 0.67 0.88 1.00 0.85 0.67 0.72 0.60
## 51  0.44 0.63 0.74 0.76 0.60 0.74 0.81 0.92 0.69 0.67 0.86 1.00 0.79 0.67 0.78
## 52  0.80 0.68 0.56 0.61 0.67 0.72 0.71 1.00 0.67 0.73 0.85 0.93 0.77 0.56 0.69
## 53  0.73 0.67 0.88 0.57 0.85 0.88 0.70 1.00 1.00 0.60 0.75 0.89 0.78 0.62 0.86
## 54  0.71 0.65 0.60 0.65 0.80 0.76 0.55 1.00 0.88 0.69 0.82 0.92 0.73 0.60 0.73
## 55  0.50 0.53 0.63 0.53 0.72 0.63 0.76 0.93 0.56 0.78 0.88 0.71 0.81 0.56 0.59
## 56  0.72 0.40 0.71 0.59 0.94 0.78 0.69 1.00 0.94 0.80 0.92 0.83 0.75 0.62 0.67
## 57  0.75 0.60 0.94 0.69 0.77 0.88 0.92 0.88 0.67 0.64 0.90 0.90 0.80 0.64 0.69
## 58  0.60 0.55 0.58 0.39 0.50 0.65 0.62 0.94 0.67 0.65 0.73 0.88 0.82 0.50 0.75
## 59  0.86 0.94 0.93 0.87 0.80 0.85 1.00 0.75 0.91 0.90 0.83 1.00 1.00 0.85 1.00
## 60  0.63 0.65 0.53 0.41 0.71 0.44 0.82 0.85 0.71 0.60 0.79 0.69 0.80 0.53 0.72
## 61  0.78 0.72 0.69 0.72 0.71 0.69 0.77 0.90 0.71 0.79 0.92 0.92 0.73 0.76 0.73
## 62  0.56 0.67 0.62 0.86 0.64 0.71 0.69 1.00 0.64 0.71 0.92 1.00 0.75 0.84 0.75
## 63  0.88 0.67 0.88 0.75 0.93 0.94 0.92 1.00 0.93 0.83 0.89 1.00 0.78 0.71 0.86
## 64  0.68 0.56 0.67 0.38 0.60 0.59 0.73 0.83 0.69 0.67 0.77 0.77 0.79 0.50 0.78
## 65  0.44 0.55 0.65 0.55 0.59 0.65 0.84 0.94 0.59 0.56 0.81 0.88 0.95 0.65 0.75
## 66  0.63 0.65 0.53 0.41 0.78 0.61 0.75 0.93 0.62 0.76 0.94 0.79 0.80 0.53 0.85
## 67  0.61 0.63 0.67 0.63 0.69 0.50 0.73 1.00 0.89 0.57 0.67 0.86 0.79 0.74 0.78
## 68  0.47 0.40 0.62 0.74 0.73 0.78 0.79 0.91 0.73 0.71 0.92 0.83 0.85 0.71 0.46
## 69  0.61 0.47 0.74 0.38 0.89 0.67 0.81 0.92 0.76 0.75 0.86 0.67 0.79 0.59 0.78
## 70  0.71 0.53 0.47 0.44 0.65 0.47 0.83 0.93 0.65 0.62 0.80 0.71 0.88 0.63 0.50
## 71  0.70 0.50 0.61 0.41 0.84 0.68 0.67 0.93 0.62 0.83 0.94 0.69 0.71 0.53 0.65
## 72  0.60 0.78 0.75 0.90 0.87 0.67 1.00 0.89 0.79 0.77 0.91 0.80 0.92 0.89 0.71
## 73  0.40 0.53 0.72 0.75 0.67 0.79 0.71 0.92 0.67 0.73 0.93 1.00 0.86 0.72 0.76
## 74  0.40 0.61 0.65 0.61 0.75 0.56 0.71 0.82 0.67 0.73 0.85 0.75 0.77 0.72 0.76
## 75  0.81 0.75 0.71 0.67 0.75 0.62 0.82 0.86 0.85 0.73 0.75 0.75 0.90 0.71 0.77
## 76  0.94 0.80 0.77 0.71 0.92 0.77 0.90 1.00 0.82 0.91 0.86 0.67 1.00 0.86 0.83
## 77  0.92 1.00 1.00 0.93 0.89 0.92 1.00 0.50 0.89 1.00 1.00 1.00 1.00 0.92 1.00
## 78  0.58 0.35 0.70 0.44 0.56 0.63 0.83 0.86 0.65 0.62 0.80 0.80 0.81 0.56 0.59
## 79  0.63 0.50 0.75 0.50 0.62 0.75 0.82 0.93 0.71 0.60 0.87 1.00 0.88 0.53 0.72
## 80  0.47 0.50 0.68 0.65 0.71 0.75 0.82 0.85 0.53 0.69 0.87 0.87 0.80 0.61 0.56
## 81  0.76 0.62 0.67 0.62 0.79 0.57 0.75 0.89 0.69 0.86 0.91 0.80 0.70 0.67 0.71
## 82  0.89 0.76 0.54 0.60 0.86 0.54 0.44 1.00 0.93 0.75 0.78 0.62 0.67 0.73 0.69
## 83  0.93 0.86 0.92 0.93 1.00 0.92 0.88 1.00 0.90 1.00 1.00 1.00 0.83 0.92 0.80
## 84  0.94 0.81 0.69 0.81 0.83 0.94 0.91 1.00 0.60 0.92 1.00 1.00 0.89 0.69 0.75
## 85  0.73 0.82 0.62 0.82 0.93 0.80 0.92 1.00 0.75 0.83 0.89 0.75 0.90 0.88 0.77
## 86  0.71 0.72 0.60 0.65 0.62 0.69 0.86 1.00 0.50 0.69 0.82 0.82 0.92 0.83 0.73
## 87  0.88 0.73 0.79 0.88 0.92 0.79 0.91 1.00 0.92 0.92 0.88 0.88 0.89 0.94 0.64
## 88  0.74 0.68 0.65 0.61 0.89 0.72 0.80 0.82 0.67 0.88 0.93 0.75 0.86 0.56 0.76
## 89  0.65 0.53 0.47 0.53 0.72 0.63 0.83 0.93 0.65 0.78 0.80 0.71 0.81 0.56 0.59
## 90  0.86 0.87 0.85 0.87 0.80 0.85 0.89 0.75 0.80 0.90 1.00 1.00 0.86 0.85 0.82
## 91  0.85 0.80 0.62 0.67 0.73 0.62 0.79 0.91 0.73 0.71 0.73 0.83 0.75 0.71 0.75
## 92  0.79 0.88 0.93 0.88 0.82 0.93 0.90 1.00 0.92 0.67 0.67 1.00 0.88 0.77 1.00
## 93  0.50 0.60 0.63 0.60 0.56 0.56 0.76 0.86 0.72 0.62 0.71 0.88 0.88 0.63 0.74
## 94  0.72 0.59 0.71 0.67 0.81 0.53 0.79 0.80 0.73 0.80 0.92 0.83 0.75 0.71 0.67
## 95  0.71 0.79 0.60 0.79 0.71 0.60 0.77 1.00 0.88 0.79 0.70 0.82 0.92 0.76 0.73
## 96  0.87 0.88 0.86 0.80 0.92 0.86 0.78 1.00 0.82 1.00 1.00 0.86 0.71 0.77 0.92
## 97  0.81 0.89 0.71 0.75 0.75 0.71 0.56 0.86 0.75 0.83 0.89 1.00 0.62 0.62 0.86
## 98  0.56 0.31 0.53 0.50 0.71 0.68 0.75 1.00 0.78 0.69 0.79 0.79 0.88 0.68 0.56
## 99  0.67 0.62 0.50 0.47 0.67 0.65 0.78 0.87 0.40 0.79 0.88 0.88 0.75 0.50 0.68
## 100 0.60 0.62 0.67 0.71 0.69 0.46 0.85 0.89 0.79 0.67 0.91 0.80 0.70 0.82 0.71
## 101 0.62 0.56 0.83 0.65 0.80 0.69 0.93 0.90 0.71 0.69 0.92 0.70 0.83 0.69 0.54
## 102 0.56 0.50 0.78 0.67 0.73 0.84 0.79 0.80 0.64 0.80 1.00 0.92 0.75 0.53 0.67
## 103 0.47 0.42 0.60 0.50 0.68 0.73 0.65 0.94 0.61 0.74 0.89 0.89 0.76 0.44 0.63
## 104 0.88 0.88 0.58 0.73 0.83 0.58 0.67 1.00 0.92 0.82 0.71 0.71 0.75 0.87 0.75
## 105 0.87 0.80 0.77 0.80 1.00 0.86 0.90 1.00 1.00 0.91 0.86 0.67 1.00 0.93 0.83
## 106 0.83 0.78 0.67 0.62 0.79 0.75 0.64 0.89 0.69 0.86 1.00 0.91 0.82 0.46 0.88
## 107 0.59 0.53 0.65 0.61 0.67 0.56 0.88 0.82 0.75 0.73 0.85 0.64 0.86 0.72 0.50
## 108 0.85 1.00 0.92 0.93 0.90 0.92 1.00 0.67 0.78 1.00 1.00 1.00 1.00 0.83 1.00
## 109 0.70 0.50 0.68 0.50 0.78 0.68 0.75 0.93 0.71 0.76 1.00 0.87 0.80 0.53 0.65
## 110 0.62 0.65 0.83 0.56 0.80 0.69 0.86 0.90 0.80 0.79 0.82 0.82 0.73 0.60 0.81
## 111 0.72 0.59 0.62 0.74 0.88 0.53 0.79 1.00 1.00 0.71 0.83 0.73 0.75 0.84 0.67
## 112 0.56 0.59 0.62 0.59 0.64 0.71 0.79 0.91 0.64 0.80 0.83 0.83 0.85 0.71 0.75
## 113 0.69 0.71 0.82 0.62 0.79 0.67 0.85 0.89 0.87 0.67 0.80 0.67 0.92 0.75 0.80
## 114 0.88 0.73 0.79 0.81 0.83 0.87 0.50 1.00 0.73 0.92 1.00 1.00 0.57 0.79 0.75
## 115 0.56 0.65 0.53 0.58 0.71 0.61 0.67 0.93 0.62 0.76 0.87 0.79 0.71 0.61 0.72
## 116 0.94 0.88 0.86 0.88 0.92 0.86 0.90 0.80 0.92 0.91 1.00 1.00 0.88 0.86 0.92
## 117 0.94 0.94 0.67 0.80 0.82 0.77 0.62 1.00 0.82 0.91 0.86 0.86 0.88 0.67 0.83
## 118 0.76 0.78 0.67 0.71 0.87 0.82 0.75 1.00 0.69 0.93 0.80 0.80 0.92 0.67 0.71
## 119 0.58 0.44 0.56 0.53 0.65 0.47 0.83 0.93 0.72 0.62 0.80 0.80 0.81 0.70 0.59
## 120 0.87 0.80 0.86 0.80 0.92 0.86 0.78 0.80 0.92 1.00 1.00 0.86 1.00 0.77 0.83
## 121 0.94 0.75 0.80 0.67 0.85 0.88 0.70 1.00 0.75 0.83 1.00 1.00 0.78 0.62 0.86
## 122 0.63 0.65 0.68 0.58 0.53 0.53 0.82 0.85 0.71 0.50 0.79 0.87 0.80 0.61 0.65
## 123 0.63 0.50 0.61 0.58 0.78 0.61 0.75 0.93 0.84 0.76 0.79 0.79 0.80 0.61 0.56
## 124 0.82 0.69 0.64 0.76 0.67 0.81 0.60 1.00 0.77 0.85 0.78 1.00 0.80 0.73 0.58
## 125 0.67 0.69 0.81 0.60 0.77 0.64 0.60 0.71 0.67 0.85 1.00 0.90 0.50 0.64 0.87
## 126 0.59 0.68 0.36 0.61 0.57 0.56 0.71 1.00 0.67 0.64 0.75 0.85 0.77 0.72 0.69
## 127 0.68 0.56 0.67 0.27 0.69 0.67 0.73 0.83 0.60 0.67 0.77 0.77 0.87 0.29 0.71
## 128 0.67 0.68 0.56 0.75 0.67 0.65 0.80 0.92 0.75 0.81 0.85 0.93 0.86 0.79 0.60
## 129 0.61 0.47 0.59 0.56 0.76 0.74 0.81 0.83 0.60 0.89 0.86 0.77 0.79 0.50 0.53
## 130 0.65 0.50 0.62 0.59 0.73 0.78 0.58 0.91 0.54 0.80 1.00 0.92 0.85 0.53 0.67
## 131 0.58 0.67 0.47 0.44 0.72 0.47 0.76 0.86 0.65 0.78 0.80 0.71 0.73 0.47 0.67
## 132 0.53 0.56 0.50 0.63 0.60 0.50 0.73 0.83 0.50 0.82 1.00 0.86 0.69 0.59 0.62
## 133 0.82 0.60 0.64 0.69 0.86 0.81 0.73 1.00 0.77 0.85 1.00 0.78 1.00 0.73 0.58
## 134 0.53 0.47 0.89 0.56 0.80 0.76 0.93 0.78 0.80 0.79 0.92 0.82 0.83 0.60 0.64
## 135 0.71 0.73 0.87 0.88 0.83 0.87 0.80 1.00 1.00 0.82 0.71 1.00 0.89 0.87 0.85
## 136 0.39 0.57 0.60 0.50 0.61 0.44 0.72 0.88 0.53 0.67 0.82 0.82 0.69 0.60 0.63
## 137 0.60 0.62 0.67 0.78 0.79 0.75 0.85 0.89 0.58 0.86 1.00 0.91 0.70 0.82 0.71
## 138 0.53 0.47 0.60 0.56 0.80 0.69 0.86 0.90 0.71 0.69 0.92 0.70 0.73 0.60 0.64
## 139 0.68 0.63 0.50 0.63 0.69 0.59 0.64 0.92 0.69 0.75 0.93 0.93 0.79 0.59 0.78
## 140 0.61 0.56 0.74 0.56 0.69 0.50 0.64 0.92 0.89 0.57 0.77 0.86 0.87 0.59 0.62
## 141 0.53 0.55 0.50 0.47 0.67 0.41 0.71 0.94 0.67 0.72 0.81 0.73 0.82 0.58 0.61
## 142 0.81 0.67 0.71 0.75 0.75 0.71 1.00 0.86 0.75 0.73 0.89 0.75 0.90 0.88 0.67
## 143 0.73 0.75 0.71 0.67 0.64 0.71 0.82 0.86 0.75 0.73 0.57 0.75 0.90 0.80 0.77
## 144 0.61 0.47 0.67 0.63 0.69 0.74 0.54 0.92 0.69 0.75 0.86 0.86 0.69 0.59 0.62
## 145 0.53 0.38 0.59 0.56 0.89 0.59 0.73 0.92 0.83 0.75 0.93 0.67 0.69 0.67 0.62
## 146 0.92 1.00 1.00 1.00 1.00 1.00 1.00 1.00 0.89 1.00 1.00 1.00 1.00 1.00 1.00
## 147 0.94 0.81 0.58 0.64 0.73 0.69 0.80 1.00 0.83 0.70 0.71 0.71 1.00 0.79 0.75
## 148 0.93 0.93 1.00 0.93 0.90 0.92 0.88 1.00 1.00 0.75 0.80 1.00 0.83 0.92 1.00
## 149 0.70 0.41 0.44 0.50 0.71 0.75 0.46 1.00 0.62 0.76 0.94 0.94 0.71 0.44 0.56
## 150 0.92 0.93 1.00 0.93 1.00 0.92 1.00 0.50 0.89 1.00 1.00 0.75 0.80 0.92 0.90
## 151 0.82 0.83 0.81 0.76 0.93 0.73 1.00 0.71 0.67 1.00 0.90 0.78 0.91 0.81 0.79
## 152 0.79 0.71 0.93 0.80 0.82 0.86 0.90 1.00 0.92 0.67 1.00 1.00 0.71 0.86 0.92
## 153 0.79 0.88 0.77 0.80 0.70 0.67 0.78 0.80 0.82 0.80 0.86 1.00 0.88 0.86 0.83
## 154 0.77 1.00 1.00 0.94 0.80 0.85 1.00 0.75 0.80 0.90 0.83 1.00 1.00 0.93 1.00
## 155 0.59 0.75 0.79 0.53 0.57 0.72 0.80 0.82 0.57 0.64 0.75 0.93 0.67 0.36 0.83
## 156 0.80 0.81 0.87 0.73 0.92 0.87 0.91 1.00 0.92 0.92 0.71 0.71 0.89 0.79 0.93
## 157 0.92 0.93 0.92 1.00 1.00 0.92 0.86 1.00 1.00 1.00 1.00 1.00 0.80 1.00 0.90
## 158 0.78 0.72 0.76 0.56 0.62 0.69 0.86 0.90 0.62 0.69 0.70 0.82 0.83 0.60 0.64
## 159 0.58 0.60 0.76 0.53 0.56 0.63 0.83 0.86 0.65 0.71 0.80 0.94 0.81 0.47 0.67
## 160 0.69 0.78 0.82 0.53 0.69 0.67 0.75 0.89 0.87 0.77 0.50 0.80 0.70 0.57 0.88
## 161 0.72 0.67 0.62 0.59 0.64 0.53 0.58 0.91 0.73 0.62 0.83 0.92 0.64 0.62 0.75
## 162 0.88 0.88 0.79 0.88 0.60 0.69 0.91 1.00 0.83 0.70 0.88 1.00 0.89 0.87 0.85
## 163 0.69 0.71 0.75 0.78 0.87 0.82 0.85 1.00 0.87 0.77 0.80 0.80 0.82 0.89 0.80
## 164 0.69 0.62 0.67 0.78 0.45 0.67 0.85 0.89 0.69 0.67 0.91 0.91 1.00 0.82 0.62
## 165 0.67 0.61 0.56 0.53 0.75 0.65 0.80 0.82 0.67 0.81 0.85 0.64 0.86 0.65 0.50
## 166 0.67 0.61 0.79 0.61 0.67 0.79 0.80 0.92 0.67 0.64 0.75 0.93 0.77 0.56 0.69
## 167 0.53 0.47 0.65 0.47 0.67 0.50 0.84 0.87 0.59 0.65 0.88 0.81 0.67 0.65 0.61
## 168 0.71 0.73 0.87 0.64 0.83 0.79 1.00 0.83 0.73 0.82 1.00 0.88 0.89 0.79 0.85
## 169 0.53 0.56 0.74 0.56 0.76 0.74 0.73 0.83 0.50 0.82 0.93 0.93 0.69 0.50 0.78
## 170 0.31 0.35 0.70 0.53 0.56 0.63 0.83 0.86 0.65 0.62 0.88 0.80 0.88 0.63 0.59
## 171 0.87 0.80 0.93 0.80 0.82 0.77 0.78 0.80 0.82 0.80 1.00 0.86 0.50 0.77 0.83
## 172 0.74 0.53 0.56 0.61 0.82 0.56 0.71 0.92 0.82 0.81 0.85 0.64 0.93 0.72 0.38
## 173 1.00 0.93 0.92 0.93 1.00 0.92 0.86 1.00 1.00 1.00 1.00 0.75 1.00 0.92 0.90
## 174 0.69 0.88 0.86 0.88 0.70 0.67 0.90 0.80 0.82 0.80 0.86 1.00 0.88 0.93 0.92
## 175 0.88 0.73 0.79 0.81 0.73 0.94 0.80 1.00 0.83 0.70 0.88 1.00 0.89 0.79 0.85
## 176 0.40 0.75 0.65 0.68 0.57 0.47 0.71 0.92 0.67 0.64 0.85 0.93 0.86 0.72 0.76
## 177 0.67 0.76 0.81 0.76 0.67 0.81 0.92 0.88 0.55 0.64 1.00 1.00 0.91 0.73 0.87
## 178 0.63 0.50 0.61 0.41 0.53 0.68 0.75 0.93 0.71 0.69 0.69 0.87 0.94 0.53 0.65
## 179 0.63 0.65 0.61 0.50 0.53 0.61 0.75 0.93 0.62 0.69 0.79 0.94 0.80 0.53 0.79
## 180 0.56 0.74 0.71 0.59 0.73 0.78 0.87 0.91 0.64 0.88 0.83 0.92 0.85 0.62 0.95
## 181 0.71 0.64 0.87 0.88 0.83 0.87 0.50 1.00 0.92 0.82 1.00 1.00 0.75 0.87 0.75
## 182 0.44 0.55 0.58 0.55 0.59 0.58 0.62 0.87 0.50 0.72 0.88 0.88 0.75 0.50 0.75
## 183 0.71 0.73 0.87 0.81 0.83 0.79 0.80 1.00 0.83 0.82 0.88 1.00 0.89 0.87 0.85
## 184 0.71 0.73 0.87 0.81 0.83 0.69 1.00 0.60 0.83 0.82 1.00 0.71 0.89 0.87 0.64
## 185 0.70 0.41 0.44 0.50 0.78 0.75 0.67 1.00 0.71 0.76 0.87 0.79 0.71 0.53 0.56
## 186 0.50 0.53 0.70 0.53 0.65 0.70 0.83 0.93 0.56 0.62 0.94 0.94 0.81 0.56 0.74
## 187 0.92 0.93 1.00 0.93 0.89 1.00 1.00 1.00 1.00 0.88 0.75 1.00 1.00 0.92 1.00
## 188 0.67 0.44 0.65 0.53 0.82 0.72 0.71 0.82 0.75 0.81 1.00 0.75 0.77 0.56 0.60
## 189 0.56 0.67 0.62 0.59 0.64 0.62 1.00 0.80 0.64 0.62 0.73 0.73 0.93 0.71 0.75
## 190 0.76 0.78 0.75 0.53 0.69 0.75 0.75 0.89 0.58 0.77 0.91 0.91 0.92 0.57 0.71
## 191 0.68 0.76 0.50 0.56 0.76 0.40 0.73 0.83 0.76 0.82 0.77 0.67 0.87 0.59 0.71
## 192 0.93 0.86 0.92 0.86 0.90 1.00 1.00 1.00 0.90 0.89 1.00 1.00 0.83 0.83 0.91
## 193 0.94 0.81 0.69 0.81 1.00 0.69 0.67 1.00 1.00 0.92 0.88 0.71 0.75 0.87 0.85
## 194 0.75 0.56 0.40 0.56 0.69 0.59 0.42 1.00 0.83 0.67 0.77 0.77 0.79 0.67 0.53
## 195 0.69 0.71 0.57 0.53 0.69 0.57 0.85 0.89 0.69 0.77 0.91 0.80 0.70 0.75 0.80
## 196 0.81 0.82 0.62 0.82 0.93 0.80 0.92 1.00 0.85 0.92 0.89 0.89 1.00 0.88 0.93
## 197 0.84 0.72 0.69 0.72 0.71 0.76 0.55 1.00 0.80 0.79 0.82 1.00 0.83 0.69 0.73
## 198 0.75 0.69 0.81 0.76 0.93 0.88 0.92 0.88 0.77 0.93 1.00 0.90 0.80 0.73 0.79
## 199 0.89 0.71 0.75 0.62 0.79 0.67 0.75 0.89 0.79 0.86 0.91 0.80 0.82 0.67 0.71
## 200 0.88 0.73 0.87 0.64 0.73 0.87 0.91 0.83 0.73 0.70 0.71 0.88 0.89 0.58 0.64
## 201 0.62 0.65 0.69 0.65 0.88 0.69 0.86 0.90 0.80 0.79 0.82 0.82 0.60 0.69 0.88
## 202 0.53 0.63 0.67 0.47 0.69 0.67 0.73 0.92 0.69 0.75 0.67 0.77 0.79 0.50 0.71
## 203 0.50 0.68 0.72 0.68 0.57 0.72 0.80 1.00 0.75 0.54 0.64 0.93 0.86 0.72 0.83
## 204 0.83 0.71 0.82 0.62 0.69 0.75 0.85 0.89 0.79 0.77 0.80 0.91 0.82 0.67 0.80
## 205 0.92 1.00 1.00 0.93 0.89 0.92 1.00 0.50 0.89 1.00 1.00 1.00 1.00 0.92 1.00
## 206 0.69 0.88 0.86 0.88 0.82 0.77 0.90 0.80 0.70 0.91 1.00 1.00 0.88 0.93 0.92
## 207 0.88 0.73 0.79 0.81 0.83 0.94 0.50 1.00 0.92 0.82 0.88 1.00 0.89 0.79 0.75
## 208 0.47 0.50 0.75 0.65 0.84 0.68 0.82 0.93 0.71 0.69 0.94 0.87 0.71 0.61 0.65
## 209 0.84 0.85 0.50 0.65 0.80 0.50 0.77 0.78 0.71 0.94 0.82 0.70 0.83 0.60 0.73
## 210 0.78 0.65 0.69 0.56 0.71 0.69 0.55 0.90 0.71 0.79 0.92 1.00 0.73 0.60 0.73
## 211 0.56 0.59 0.78 0.59 0.81 0.78 0.69 0.91 0.73 0.71 0.83 0.83 0.75 0.53 0.67
## 212 0.53 0.79 0.69 0.72 0.71 0.69 0.86 0.90 0.62 0.87 0.82 0.82 0.92 0.76 0.88
## 213 0.61 0.47 0.59 0.63 0.69 0.50 0.73 0.92 0.76 0.75 0.77 0.77 0.79 0.74 0.43
## 214 0.67 0.62 0.50 0.62 0.59 0.58 0.78 0.94 0.50 0.72 0.88 0.88 0.89 0.65 0.68
## 215 0.56 0.67 0.71 0.59 0.54 0.71 0.58 0.91 0.73 0.80 0.83 0.92 0.85 0.43 0.75
## 216 0.77 0.79 0.93 0.79 0.91 0.93 1.00 1.00 1.00 0.78 0.83 0.83 0.86 0.85 0.92
##       46   47   48   49   50   51   52   53   54   55   56   57   58   59   60
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47  1.00                                                                      
## 48  0.76 0.92                                                                 
## 49  0.76 0.92 0.67                                                            
## 50  0.57 1.00 0.72 0.65                                                       
## 51  0.76 0.92 0.67 0.29 0.65                                                  
## 52  0.67 1.00 0.65 0.47 0.62 0.56                                             
## 53  0.93 1.00 0.88 0.71 0.94 0.80 0.79                                        
## 54  0.71 1.00 0.83 0.69 0.75 0.76 0.75 0.50                                   
## 55  0.65 1.00 0.56 0.63 0.61 0.63 0.53 0.82 0.79                              
## 56  0.81 1.00 0.84 0.53 0.69 0.71 0.76 0.55 0.54 0.74                         
## 57  0.55 1.00 0.73 0.64 0.88 0.64 0.71 0.82 0.86 0.69 0.79                    
## 58  0.74 0.93 0.65 0.65 0.70 0.58 0.63 0.69 0.67 0.55 0.68 0.78               
## 59  1.00 0.67 0.93 0.75 0.92 0.75 0.92 0.88 0.91 1.00 0.82 0.89 0.88          
## 60  0.78 0.92 0.53 0.68 0.67 0.61 0.59 0.73 0.78 0.58 0.72 0.82 0.53 0.86     
## 61  0.62 0.89 0.69 0.69 0.75 0.60 0.67 0.93 0.71 0.72 0.81 0.67 0.59 0.91 0.78
## 62  0.42 1.00 0.71 0.71 0.50 0.53 0.69 0.93 0.64 0.67 0.82 0.79 0.61 1.00 0.79
## 63  0.75 1.00 0.94 0.62 0.79 0.71 0.69 0.67 0.75 0.89 0.40 0.70 0.76 0.71 0.81
## 64  0.69 0.92 0.67 0.74 0.72 0.74 0.79 0.80 0.69 0.63 0.71 0.73 0.31 0.85 0.53
## 65  0.67 0.93 0.50 0.41 0.76 0.41 0.56 0.76 0.74 0.47 0.68 0.62 0.50 0.80 0.53
## 66  0.71 0.92 0.75 0.61 0.67 0.61 0.59 0.73 0.71 0.50 0.65 0.82 0.44 0.86 0.38
## 67  0.76 1.00 0.67 0.67 0.65 0.50 0.65 0.71 0.76 0.70 0.62 0.73 0.50 0.85 0.53
## 68  0.73 1.00 0.62 0.53 0.60 0.62 0.76 0.77 0.54 0.59 0.67 0.69 0.75 0.92 0.79
## 69  0.69 1.00 0.74 0.67 0.72 0.74 0.72 0.62 0.76 0.56 0.43 0.64 0.58 0.85 0.53
## 70  0.56 1.00 0.56 0.76 0.61 0.76 0.61 0.82 0.72 0.53 0.67 0.60 0.55 0.87 0.58
## 71  0.71 1.00 0.68 0.61 0.67 0.68 0.50 0.73 0.78 0.31 0.56 0.67 0.53 0.93 0.56
## 72  0.58 1.00 0.75 0.82 0.64 0.67 0.81 0.92 0.79 0.62 0.80 0.75 0.85 0.90 0.69
## 73  0.57 0.91 0.72 0.47 0.62 0.47 0.78 0.79 0.57 0.75 0.69 0.71 0.56 0.83 0.80
## 74  0.75 0.91 0.47 0.65 0.71 0.65 0.78 0.79 0.67 0.61 0.76 0.88 0.63 0.92 0.50
## 75  0.85 1.00 0.80 0.88 0.69 0.88 0.87 0.80 0.85 0.89 0.77 0.82 0.76 0.71 0.64
## 76  0.82 1.00 0.77 0.93 0.85 1.00 0.85 1.00 1.00 0.80 0.83 0.90 0.81 1.00 0.79
## 77  1.00 0.00 0.92 0.92 1.00 0.92 1.00 1.00 1.00 1.00 1.00 1.00 0.93 0.67 0.92
## 78  0.65 0.93 0.47 0.56 0.61 0.56 0.61 0.82 0.85 0.53 0.67 0.60 0.39 0.87 0.50
## 79  0.62 0.92 0.68 0.44 0.74 0.53 0.59 0.64 0.71 0.71 0.56 0.57 0.44 0.77 0.63
## 80  0.62 0.92 0.53 0.53 0.74 0.44 0.74 0.81 0.62 0.58 0.65 0.57 0.60 0.86 0.63
## 81  0.69 1.00 0.75 0.75 0.54 0.82 0.81 0.92 0.79 0.78 0.62 0.75 0.79 0.78 0.76
## 82  0.86 1.00 0.73 0.88 0.80 0.88 0.71 0.70 0.55 0.76 0.69 0.92 0.71 1.00 0.67
## 83  0.90 1.00 0.83 0.83 0.92 0.92 0.92 1.00 0.90 0.93 0.80 0.88 1.00 1.00 1.00
## 84  0.60 1.00 0.87 0.79 0.77 0.87 0.67 1.00 0.73 0.73 0.85 0.80 0.82 1.00 0.88
## 85  0.85 1.00 0.71 0.80 0.87 0.71 0.79 0.91 0.75 0.67 0.86 0.82 0.83 1.00 0.73
## 86  0.71 1.00 0.50 0.83 0.82 0.76 0.67 0.93 0.88 0.47 0.88 0.77 0.59 1.00 0.71
## 87  0.73 1.00 0.69 0.79 0.77 0.87 0.77 1.00 0.83 0.81 0.75 0.80 0.89 1.00 0.94
## 88  0.67 0.91 0.79 0.65 0.71 0.65 0.71 0.87 0.75 0.61 0.69 0.71 0.56 0.83 0.50
## 89  0.72 1.00 0.63 0.63 0.53 0.63 0.53 0.82 0.72 0.35 0.59 0.76 0.55 0.87 0.50
## 90  1.00 0.67 0.75 0.75 0.92 0.75 0.92 1.00 0.91 0.94 0.92 0.89 0.88 0.80 0.86
## 91  0.64 1.00 0.71 0.84 0.76 0.71 0.60 0.86 0.73 0.67 0.82 0.69 0.53 0.92 0.56
## 92  0.82 1.00 0.93 0.77 0.93 0.67 0.85 0.75 0.70 0.88 0.83 0.78 0.81 0.83 0.79
## 93  0.65 0.93 0.56 0.56 0.61 0.56 0.61 0.75 0.65 0.67 0.74 0.76 0.47 0.79 0.50
## 94  0.64 0.90 0.62 0.71 0.60 0.71 0.83 0.93 0.81 0.80 0.57 0.79 0.68 0.82 0.56
## 95  0.88 1.00 0.69 0.69 0.57 0.60 0.46 0.85 0.88 0.56 0.81 0.93 0.67 0.91 0.53
## 96  0.82 1.00 1.00 0.93 0.75 0.86 0.85 0.89 0.92 0.71 0.83 0.90 0.73 1.00 0.87
## 97  0.75 0.83 0.80 0.71 0.79 0.71 0.69 0.80 0.50 0.89 0.86 0.92 0.76 0.88 0.73
## 98  0.84 1.00 0.53 0.61 0.67 0.68 0.74 0.73 0.71 0.50 0.47 0.82 0.44 0.93 0.63
## 99  0.50 0.93 0.58 0.58 0.56 0.58 0.38 0.83 0.74 0.55 0.75 0.71 0.42 0.88 0.44
## 100 0.69 1.00 0.67 0.75 0.54 0.75 0.81 0.83 0.69 0.78 0.71 0.75 0.85 0.78 0.76
## 101 0.71 1.00 0.60 0.76 0.75 0.69 0.75 0.85 0.94 0.36 0.73 0.55 0.74 1.00 0.62
## 102 0.64 0.90 0.71 0.43 0.60 0.53 0.60 0.77 0.73 0.59 0.75 0.69 0.61 0.92 0.65
## 103 0.68 0.94 0.67 0.44 0.65 0.44 0.65 0.71 0.53 0.42 0.47 0.72 0.37 0.88 0.62
## 104 0.92 1.00 0.69 0.94 0.86 0.94 0.77 0.78 0.60 0.81 0.85 1.00 0.82 1.00 0.80
## 105 0.92 1.00 0.86 0.93 0.93 1.00 0.93 0.75 0.70 0.80 0.73 1.00 0.81 1.00 0.87
## 106 0.79 0.88 0.89 0.57 0.73 0.67 0.64 0.83 0.69 0.71 0.71 0.85 0.65 0.78 0.60
## 107 0.82 0.91 0.47 0.72 0.62 0.65 0.71 0.87 0.89 0.44 0.76 0.80 0.56 0.92 0.50
## 108 0.90 0.50 0.92 0.83 0.92 0.83 0.92 1.00 0.90 0.93 1.00 1.00 0.94 0.75 0.85
## 109 0.62 0.92 0.75 0.53 0.67 0.61 0.59 0.73 0.71 0.50 0.47 0.67 0.53 0.86 0.63
## 110 0.80 1.00 0.76 0.69 0.75 0.76 0.75 0.64 0.71 0.56 0.54 0.77 0.74 0.80 0.71
## 111 0.81 1.00 0.71 0.71 0.60 0.62 0.69 0.77 0.73 0.67 0.46 0.87 0.68 0.92 0.56
## 112 0.88 0.90 0.62 0.62 0.69 0.53 0.76 0.86 0.88 0.67 0.75 0.79 0.44 0.82 0.65
## 113 0.79 0.88 0.75 0.75 0.88 0.67 0.81 0.73 0.79 0.71 0.71 0.64 0.65 0.78 0.69
## 114 0.73 1.00 0.79 0.69 0.77 0.79 0.67 0.90 0.73 0.81 0.75 0.80 0.82 1.00 0.94
## 115 0.78 0.92 0.61 0.61 0.67 0.44 0.59 0.81 0.71 0.41 0.72 0.82 0.44 0.93 0.47
## 116 0.82 0.75 0.93 0.77 0.85 0.77 0.85 0.89 0.82 1.00 0.73 0.90 0.81 0.60 0.79
## 117 0.82 1.00 0.93 0.93 0.75 0.93 0.75 0.89 0.70 0.80 0.92 1.00 0.81 1.00 0.79
## 118 0.79 1.00 0.75 0.75 0.73 0.75 0.54 0.83 0.87 0.53 0.80 0.85 0.65 1.00 0.69
## 119 0.65 1.00 0.47 0.63 0.61 0.70 0.68 0.82 0.65 0.53 0.59 0.69 0.62 0.87 0.65
## 120 0.92 0.75 0.93 0.86 0.85 0.93 1.00 0.89 0.82 0.88 0.73 1.00 0.73 0.83 0.87
## 121 0.75 1.00 0.88 0.62 0.87 0.80 0.58 0.80 0.75 0.75 0.67 0.70 0.76 0.88 0.81
## 122 0.62 0.92 0.61 0.68 0.74 0.53 0.67 0.73 0.62 0.65 0.72 0.57 0.53 0.77 0.56
## 123 0.78 1.00 0.68 0.61 0.59 0.61 0.67 0.73 0.71 0.58 0.56 0.67 0.53 0.86 0.63
## 124 0.77 1.00 0.73 0.73 0.71 0.81 0.71 0.82 0.55 0.83 0.69 0.83 0.71 0.89 0.95
## 125 0.67 0.86 0.73 0.73 0.71 0.81 0.88 0.82 0.67 0.83 0.79 0.83 0.71 0.89 0.75
## 126 0.82 1.00 0.47 0.72 0.62 0.65 0.53 0.79 0.67 0.53 0.83 0.94 0.56 1.00 0.50
## 127 0.69 0.92 0.59 0.59 0.79 0.74 0.65 0.71 0.69 0.63 0.71 0.64 0.50 0.85 0.44
## 128 0.82 0.91 0.56 0.56 0.62 0.47 0.53 0.87 0.82 0.68 0.76 0.80 0.56 0.83 0.67
## 129 0.76 0.92 0.59 0.50 0.56 0.59 0.65 0.88 0.76 0.56 0.62 0.73 0.58 0.85 0.61
## 130 0.73 0.90 0.62 0.43 0.69 0.62 0.69 0.86 0.73 0.67 0.67 0.79 0.61 0.92 0.65
## 131 0.79 0.93 0.63 0.63 0.61 0.56 0.61 0.75 0.65 0.53 0.67 0.76 0.55 0.79 0.41
## 132 0.69 0.92 0.59 0.50 0.23 0.50 0.56 0.94 0.83 0.56 0.78 0.81 0.65 0.85 0.53
## 133 0.93 1.00 0.73 0.64 0.80 0.81 0.71 0.82 0.86 0.60 0.58 0.83 0.78 0.89 0.75
## 134 0.71 0.89 0.69 0.60 0.75 0.76 0.82 0.64 0.71 0.65 0.54 0.67 0.74 0.80 0.78
## 135 0.92 1.00 0.87 0.79 0.86 0.79 1.00 0.78 0.60 0.88 0.64 0.91 0.75 0.86 0.94
## 136 0.53 0.94 0.35 0.60 0.58 0.53 0.50 0.78 0.68 0.42 0.76 0.72 0.52 0.94 0.47
## 137 0.79 1.00 0.67 0.67 0.54 0.57 0.73 0.92 0.94 0.71 0.80 0.75 0.72 0.90 0.69
## 138 0.80 1.00 0.69 0.69 0.57 0.69 0.82 0.75 0.71 0.65 0.64 0.77 0.74 0.91 0.53
## 139 0.69 0.92 0.74 0.59 0.56 0.59 0.72 0.88 0.60 0.70 0.62 0.88 0.50 0.85 0.53
## 140 0.83 0.92 0.59 0.50 0.79 0.59 0.72 0.62 0.60 0.70 0.43 0.73 0.65 0.75 0.61
## 141 0.67 1.00 0.50 0.65 0.47 0.71 0.47 0.76 0.74 0.29 0.68 0.84 0.57 0.94 0.44
## 142 0.64 1.00 0.62 0.88 0.69 0.88 0.79 1.00 0.93 0.75 0.93 0.70 0.76 1.00 0.73
## 143 0.85 1.00 0.62 0.88 0.79 0.88 0.79 0.80 0.85 0.82 0.93 0.82 0.69 0.88 0.73
## 144 0.69 1.00 0.74 0.67 0.65 0.59 0.79 0.80 0.60 0.56 0.62 0.64 0.41 0.93 0.75
## 145 0.60 1.00 0.67 0.67 0.47 0.74 0.72 0.71 0.60 0.56 0.53 0.81 0.65 1.00 0.53
## 146 0.89 1.00 1.00 1.00 1.00 0.92 1.00 1.00 1.00 0.93 1.00 0.86 0.93 1.00 1.00
## 147 0.92 1.00 0.69 0.94 0.86 0.94 0.77 0.90 0.92 0.81 0.93 0.91 0.67 1.00 0.62
## 148 0.90 1.00 0.92 0.92 1.00 0.83 0.92 0.86 0.90 0.93 0.91 0.88 0.87 1.00 0.85
## 149 0.62 1.00 0.68 0.53 0.50 0.68 0.50 0.73 0.53 0.58 0.56 0.82 0.44 1.00 0.63
## 150 0.89 1.00 0.92 1.00 0.91 1.00 1.00 1.00 1.00 0.93 1.00 0.86 1.00 1.00 0.92
## 151 0.67 0.86 0.73 0.81 0.80 0.81 0.80 1.00 0.93 0.76 0.79 0.73 0.78 0.75 0.75
## 152 0.70 1.00 0.86 0.77 0.75 0.77 0.75 0.75 0.92 0.88 0.83 0.78 0.81 1.00 0.79
## 153 0.92 0.75 0.67 0.86 0.85 0.86 0.93 0.89 0.82 1.00 0.92 1.00 0.81 0.83 0.79
## 154 0.91 0.67 0.85 0.93 1.00 0.75 1.00 1.00 1.00 0.87 1.00 0.89 0.80 0.80 0.86
## 155 0.67 0.91 0.72 0.65 0.78 0.47 0.62 0.69 0.67 0.61 0.83 0.62 0.47 0.83 0.50
## 156 0.92 1.00 0.94 0.87 0.86 0.79 0.86 0.78 0.92 0.73 0.75 0.80 0.67 0.86 0.80
## 157 1.00 1.00 0.92 0.92 0.91 0.92 1.00 1.00 0.89 1.00 0.90 1.00 1.00 1.00 1.00
## 158 0.62 1.00 0.60 0.76 0.82 0.76 0.57 0.85 0.80 0.56 0.88 0.40 0.67 0.91 0.78
## 159 0.65 0.93 0.63 0.56 0.68 0.56 0.61 0.75 0.72 0.53 0.67 0.60 0.47 0.79 0.65
## 160 0.87 1.00 0.75 0.82 0.81 0.82 0.73 0.60 0.69 0.62 0.80 0.85 0.56 0.90 0.69
## 161 0.73 1.00 0.62 0.71 0.69 0.71 0.69 0.77 0.64 0.74 0.75 0.79 0.61 0.92 0.56
## 162 0.83 1.00 0.79 0.79 0.77 0.69 0.67 1.00 0.92 0.73 0.93 0.80 0.82 0.86 0.80
## 163 0.79 1.00 0.75 0.82 0.81 0.67 0.73 0.73 0.79 0.62 0.71 0.85 0.56 1.00 0.69
## 164 0.79 0.88 0.57 0.75 0.64 0.67 0.81 1.00 0.94 0.71 0.88 0.85 0.56 0.90 0.69
## 165 0.82 0.91 0.56 0.79 0.71 0.72 0.71 0.79 0.82 0.53 0.76 0.80 0.47 0.92 0.50
## 166 0.75 1.00 0.65 0.56 0.78 0.47 0.53 0.69 0.82 0.61 0.69 0.50 0.56 0.83 0.59
## 167 0.50 0.93 0.41 0.65 0.63 0.58 0.63 0.83 0.74 0.47 0.68 0.62 0.50 0.94 0.53
## 168 0.83 0.80 0.69 0.79 0.86 0.87 0.86 0.78 0.92 0.81 0.75 0.91 0.82 0.86 0.71
## 169 0.38 0.92 0.74 0.59 0.65 0.67 0.79 0.80 0.50 0.70 0.62 0.64 0.58 0.85 0.75
## 170 0.72 0.93 0.56 0.63 0.61 0.56 0.81 0.75 0.79 0.44 0.67 0.69 0.39 0.87 0.58
## 171 0.56 1.00 0.86 0.86 0.75 0.86 0.75 0.89 0.82 0.80 0.92 0.62 0.88 1.00 0.87
## 172 0.75 1.00 0.56 0.72 0.62 0.85 0.62 0.79 0.75 0.53 0.60 0.80 0.70 0.92 0.67
## 173 1.00 1.00 1.00 1.00 0.91 1.00 1.00 1.00 1.00 0.93 0.90 1.00 0.93 1.00 0.92
## 174 0.92 0.75 0.67 0.86 0.85 0.77 1.00 1.00 0.92 0.94 0.92 1.00 0.81 0.83 0.79
## 175 0.92 1.00 0.87 0.58 0.86 0.58 0.67 0.78 0.83 0.88 0.75 0.67 0.75 0.67 0.80
## 176 0.67 0.91 0.56 0.72 0.71 0.65 0.78 0.79 0.57 0.61 0.83 0.88 0.63 0.92 0.67
## 177 0.55 0.86 0.73 0.64 0.80 0.54 0.71 0.92 0.86 0.76 0.94 0.60 0.71 0.89 0.67
## 178 0.84 0.92 0.53 0.61 0.74 0.68 0.67 0.73 0.78 0.58 0.65 0.82 0.25 0.86 0.56
## 179 0.62 0.92 0.61 0.44 0.59 0.53 0.29 0.73 0.71 0.65 0.72 0.75 0.53 0.77 0.56
## 180 0.64 0.90 0.84 0.71 0.69 0.71 0.76 0.77 0.64 0.67 0.75 0.87 0.44 0.82 0.72
## 181 0.83 1.00 0.79 0.58 0.77 0.69 0.77 0.78 0.73 0.81 0.75 0.80 0.82 1.00 0.94
## 182 0.67 0.93 0.65 0.50 0.56 0.41 0.70 0.83 0.67 0.55 0.68 0.71 0.42 0.80 0.53
## 183 0.83 1.00 0.69 0.79 0.86 0.87 0.93 0.90 0.83 0.81 0.75 0.91 0.82 1.00 0.88
## 184 0.73 0.80 0.69 0.87 0.77 0.87 0.93 0.90 0.83 0.81 0.85 0.80 0.89 0.86 0.80
## 185 0.71 1.00 0.68 0.53 0.59 0.61 0.50 0.73 0.53 0.50 0.47 0.75 0.53 0.93 0.63
## 186 0.47 0.93 0.63 0.56 0.68 0.56 0.61 0.75 0.65 0.44 0.67 0.69 0.47 0.94 0.58
## 187 1.00 1.00 1.00 0.92 1.00 0.92 1.00 0.83 0.89 1.00 0.90 0.86 0.93 0.67 1.00
## 188 0.82 0.91 0.72 0.56 0.62 0.65 0.71 0.69 0.75 0.61 0.50 0.80 0.56 0.83 0.50
## 189 0.73 0.90 0.53 0.78 0.76 0.71 0.83 0.86 0.73 0.67 0.82 0.79 0.61 0.82 0.47
## 190 0.79 0.88 0.67 0.75 0.94 0.82 0.73 0.73 0.69 0.62 0.80 0.75 0.65 0.90 0.76
## 191 0.76 0.92 0.67 0.80 0.65 0.80 0.72 0.80 0.60 0.56 0.71 0.94 0.58 0.85 0.44
## 192 1.00 1.00 0.92 0.83 0.92 0.83 0.82 0.86 1.00 0.86 0.91 0.88 0.87 1.00 0.85
## 193 0.92 1.00 0.87 0.79 0.77 0.79 0.77 0.90 0.83 0.88 0.64 0.91 0.82 0.86 0.71
## 194 0.83 1.00 0.59 0.74 0.72 0.74 0.65 0.71 0.50 0.56 0.62 0.88 0.41 1.00 0.61
## 195 0.87 0.88 0.57 0.75 0.73 0.75 0.73 0.83 0.79 0.71 0.80 0.93 0.65 0.90 0.60
## 196 0.75 1.00 0.88 0.80 0.69 0.88 0.79 0.91 0.75 0.82 0.77 1.00 0.76 0.88 0.73
## 197 0.71 1.00 0.76 0.69 0.75 0.76 0.57 0.75 0.62 0.72 0.64 0.86 0.59 0.91 0.78
## 198 0.77 1.00 0.88 0.73 0.71 0.73 0.80 0.82 0.86 0.69 0.69 0.73 0.71 0.89 0.75
## 199 0.58 0.88 0.75 0.75 0.73 0.82 0.64 0.92 0.79 0.71 0.71 0.75 0.65 0.90 0.76
## 200 0.83 1.00 0.69 0.79 0.93 0.87 0.77 0.78 0.83 0.81 0.85 0.50 0.82 0.86 0.80
## 201 0.71 1.00 0.76 0.60 0.57 0.60 0.67 0.75 0.71 0.79 0.64 0.77 0.74 0.80 0.53
## 202 0.76 1.00 0.59 0.67 0.72 0.74 0.56 0.62 0.60 0.38 0.71 0.81 0.58 0.93 0.61
## 203 0.67 1.00 0.65 0.65 0.71 0.47 0.53 0.69 0.75 0.61 0.83 0.71 0.47 0.92 0.59
## 204 0.58 0.88 0.75 0.67 0.81 0.75 0.64 0.83 0.69 0.78 0.71 0.64 0.65 0.78 0.83
## 205 1.00 0.00 0.92 0.92 1.00 0.92 1.00 1.00 1.00 1.00 1.00 1.00 0.93 0.67 0.92
## 206 0.82 0.75 0.77 0.86 0.85 0.77 1.00 1.00 0.92 0.94 0.92 0.90 0.81 0.83 0.87
## 207 0.83 1.00 0.87 0.79 0.86 0.87 0.77 0.62 0.60 0.88 0.75 0.91 0.67 1.00 0.88
## 208 0.62 1.00 0.61 0.44 0.67 0.44 0.59 0.73 0.71 0.41 0.56 0.57 0.73 0.93 0.56
## 209 0.71 0.89 0.76 0.83 0.57 0.83 0.67 0.93 0.71 0.72 0.81 0.93 0.67 0.80 0.53
## 210 0.62 0.89 0.69 0.69 0.75 0.83 0.75 0.75 0.50 0.85 0.64 0.86 0.59 0.91 0.78
## 211 0.73 1.00 0.62 0.62 0.76 0.71 0.60 0.55 0.64 0.50 0.67 0.79 0.68 1.00 0.56
## 212 0.80 0.89 0.69 0.76 0.67 0.60 0.75 0.93 0.94 0.56 0.88 0.93 0.50 0.91 0.53
## 213 0.69 1.00 0.40 0.74 0.47 0.74 0.65 0.88 0.83 0.56 0.71 0.81 0.58 1.00 0.61
## 214 0.50 0.93 0.58 0.58 0.56 0.50 0.47 0.95 0.80 0.47 0.75 0.71 0.42 0.88 0.53
## 215 0.81 0.90 0.78 0.53 0.60 0.62 0.60 0.67 0.64 0.59 0.75 0.87 0.53 0.82 0.72
## 216 1.00 1.00 0.93 0.85 0.92 0.85 0.92 0.50 0.80 0.87 0.70 0.89 0.88 0.80 0.86
##       61   62   63   64   65   66   67   68   69   70   71   72   73   74   75
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62  0.54                                                                      
## 63  0.85 0.86                                                                 
## 64  0.60 0.71 0.80                                                            
## 65  0.67 0.61 0.76 0.58                                                       
## 66  0.62 0.72 0.81 0.53 0.44                                                  
## 67  0.69 0.62 0.71 0.67 0.58 0.61                                             
## 68  0.73 0.67 0.86 0.71 0.61 0.79 0.84                                        
## 69  0.83 0.84 0.62 0.59 0.50 0.44 0.50 0.78                                   
## 70  0.65 0.74 0.75 0.56 0.55 0.58 0.56 0.67 0.47                              
## 71  0.71 0.79 0.73 0.61 0.53 0.38 0.68 0.72 0.33 0.50                         
## 72  0.79 0.62 0.83 0.82 0.65 0.76 0.75 0.62 0.75 0.62 0.76                    
## 73  0.57 0.38 0.79 0.65 0.47 0.67 0.65 0.50 0.72 0.75 0.80 0.73               
## 74  0.75 0.60 0.94 0.56 0.47 0.59 0.72 0.60 0.65 0.81 0.67 0.73 0.53          
## 75  1.00 0.93 0.80 0.71 0.83 0.81 0.62 0.86 0.62 0.57 0.81 0.83 0.87 0.87     
## 76  0.92 0.92 0.89 0.77 0.81 0.79 0.77 1.00 0.67 0.71 0.79 1.00 0.93 0.85 0.75
## 77  0.89 1.00 1.00 0.92 0.93 0.92 1.00 1.00 1.00 1.00 1.00 1.00 0.91 0.91 1.00
## 78  0.65 0.67 0.67 0.38 0.47 0.65 0.56 0.67 0.56 0.53 0.58 0.78 0.61 0.61 0.75
## 79  0.62 0.72 0.54 0.61 0.44 0.56 0.53 0.72 0.53 0.50 0.63 0.76 0.50 0.80 0.73
## 80  0.62 0.56 0.73 0.61 0.44 0.70 0.75 0.47 0.68 0.65 0.63 0.60 0.50 0.50 0.88
## 81  0.87 0.80 0.73 0.67 0.79 0.76 0.67 0.80 0.57 0.53 0.69 0.86 0.81 0.81 0.44
## 82  0.67 0.79 0.92 0.73 0.84 0.67 0.64 0.87 0.73 0.69 0.67 0.93 0.88 0.71 0.82
## 83  0.90 0.91 0.86 1.00 0.94 1.00 0.92 0.91 0.92 0.93 0.93 1.00 0.92 0.92 1.00
## 84  0.73 0.75 0.78 0.79 0.82 0.80 1.00 0.75 0.94 0.73 0.80 0.82 0.86 0.93 1.00
## 85  0.64 0.77 1.00 0.88 0.69 0.64 0.80 0.67 0.80 0.75 0.73 0.73 0.79 0.69 1.00
## 86  0.71 0.64 0.93 0.69 0.50 0.62 0.76 0.81 0.69 0.56 0.53 0.79 0.82 0.67 0.93
## 87  0.60 0.75 0.78 0.87 0.82 0.94 0.79 0.75 0.87 0.73 0.88 0.82 0.77 0.86 1.00
## 88  0.57 0.76 0.79 0.47 0.56 0.40 0.72 0.69 0.56 0.61 0.50 0.64 0.62 0.62 0.79
## 89  0.79 0.74 0.67 0.56 0.55 0.58 0.70 0.59 0.56 0.44 0.41 0.62 0.81 0.68 0.75
## 90  0.67 0.92 1.00 0.85 0.88 0.86 0.93 0.82 1.00 0.94 0.93 1.00 0.83 0.83 1.00
## 91  0.54 0.67 0.77 0.53 0.68 0.65 0.62 0.82 0.71 0.50 0.56 0.62 0.83 0.76 0.77
## 92  0.92 0.73 0.75 0.77 0.73 0.87 0.77 0.83 0.86 0.94 0.94 0.80 0.75 0.75 0.89
## 93  0.72 0.59 0.75 0.47 0.39 0.65 0.56 0.59 0.63 0.60 0.71 0.62 0.44 0.44 0.67
## 94  0.73 0.67 0.67 0.53 0.68 0.72 0.62 0.82 0.62 0.67 0.72 0.71 0.69 0.60 0.67
## 95  0.88 0.73 0.85 0.83 0.67 0.71 0.50 0.81 0.76 0.72 0.71 0.69 0.82 0.75 0.75
## 96  0.82 0.83 0.89 0.86 0.94 0.69 0.77 1.00 0.77 0.80 0.69 0.91 0.93 1.00 0.89
## 97  0.64 0.67 0.91 0.80 0.83 0.73 0.80 0.86 0.94 0.89 0.88 0.92 0.69 0.69 0.91
## 98  0.78 0.72 0.73 0.53 0.53 0.63 0.61 0.56 0.53 0.58 0.56 0.83 0.67 0.59 0.81
## 99  0.59 0.61 0.69 0.58 0.50 0.44 0.65 0.75 0.58 0.47 0.44 0.72 0.63 0.63 0.76
## 100 0.79 0.71 0.83 0.75 0.72 0.76 0.67 0.62 0.67 0.53 0.76 0.67 0.73 0.73 0.60
## 101 0.80 0.81 0.85 0.76 0.67 0.71 0.69 0.73 0.60 0.56 0.53 0.58 0.89 0.82 0.85
## 102 0.64 0.67 0.77 0.62 0.61 0.65 0.84 0.46 0.78 0.80 0.65 0.71 0.50 0.60 0.93
## 103 0.61 0.56 0.71 0.53 0.45 0.47 0.67 0.56 0.60 0.64 0.47 0.74 0.50 0.58 0.90
## 104 0.73 0.85 1.00 0.87 0.89 0.80 0.79 0.85 0.87 0.73 0.80 0.92 0.93 0.77 0.90
## 105 0.82 0.92 0.89 0.77 0.81 0.79 0.93 0.73 0.77 0.80 0.79 0.80 0.85 0.75 1.00
## 106 0.69 0.80 0.83 0.57 0.65 0.38 0.82 0.80 0.75 0.78 0.60 0.86 0.73 0.73 0.83
## 107 0.67 0.76 0.87 0.56 0.63 0.67 0.72 0.60 0.72 0.61 0.59 0.64 0.78 0.62 0.87
## 108 0.90 0.91 1.00 0.92 0.87 0.85 1.00 0.91 1.00 1.00 1.00 0.89 0.82 0.82 1.00
## 109 0.53 0.72 0.64 0.61 0.53 0.38 0.68 0.72 0.53 0.50 0.38 0.69 0.67 0.80 0.88
## 110 0.94 0.88 0.64 0.69 0.67 0.71 0.76 0.73 0.50 0.65 0.53 0.69 0.89 0.75 0.75
## 111 0.64 0.67 0.67 0.71 0.68 0.65 0.43 0.75 0.62 0.67 0.65 0.62 0.76 0.69 0.86
## 112 0.64 0.75 0.86 0.62 0.61 0.56 0.53 0.75 0.62 0.67 0.65 0.94 0.60 0.69 0.77
## 113 0.58 0.80 0.83 0.67 0.56 0.60 0.57 0.80 0.57 0.62 0.69 0.77 0.64 0.73 0.83
## 114 0.73 0.64 0.78 0.87 0.82 0.88 0.87 0.85 0.87 0.88 0.71 1.00 0.77 0.77 1.00
## 115 0.53 0.56 0.88 0.61 0.53 0.38 0.61 0.72 0.68 0.71 0.47 0.76 0.67 0.50 0.94
## 116 0.70 0.83 0.57 0.77 0.81 0.79 0.86 0.92 0.86 0.88 0.87 0.80 0.75 0.85 0.89
## 117 0.92 0.83 1.00 0.86 0.94 0.79 0.86 0.92 0.93 0.80 0.87 0.91 0.93 0.93 0.75
## 118 0.87 0.80 0.83 0.89 0.72 0.69 0.67 0.88 0.67 0.71 0.60 0.86 0.81 0.81 0.83
## 119 0.65 0.67 0.75 0.47 0.47 0.65 0.63 0.50 0.56 0.35 0.58 0.62 0.68 0.61 0.75
## 120 0.82 0.92 0.89 0.67 0.88 0.79 0.93 0.83 0.86 0.88 0.87 0.91 0.75 0.85 0.89
## 121 0.75 0.86 0.67 0.71 0.69 0.64 0.88 0.86 0.71 0.75 0.54 0.92 0.87 0.87 0.91
## 122 0.53 0.65 0.73 0.53 0.53 0.63 0.61 0.65 0.68 0.41 0.63 0.50 0.67 0.74 0.73
## 123 0.62 0.79 0.73 0.61 0.67 0.63 0.44 0.56 0.53 0.41 0.56 0.69 0.67 0.80 0.64
## 124 0.77 0.69 0.70 0.81 0.84 0.95 0.81 0.69 0.88 0.69 0.82 0.93 0.71 0.88 0.82
## 125 0.67 0.69 0.92 0.54 0.78 0.67 0.81 0.79 0.73 0.83 0.75 0.93 0.62 0.50 0.82
## 126 0.75 0.60 0.94 0.72 0.63 0.59 0.65 0.69 0.79 0.68 0.67 0.81 0.78 0.53 0.87
## 127 0.76 0.84 0.80 0.40 0.50 0.53 0.67 0.71 0.50 0.56 0.61 0.89 0.65 0.56 0.62
## 128 0.46 0.69 0.79 0.79 0.63 0.67 0.56 0.69 0.79 0.61 0.67 0.73 0.62 0.78 0.87
## 129 0.69 0.78 0.71 0.59 0.65 0.68 0.74 0.53 0.67 0.63 0.61 0.82 0.65 0.65 0.80
## 130 0.73 0.67 0.86 0.62 0.53 0.56 0.78 0.67 0.71 0.80 0.65 0.94 0.50 0.50 0.86
## 131 0.65 0.80 0.82 0.63 0.62 0.41 0.56 0.67 0.56 0.44 0.50 0.71 0.75 0.68 0.67
## 132 0.69 0.62 0.88 0.67 0.65 0.53 0.67 0.62 0.74 0.63 0.61 0.75 0.65 0.65 0.71
## 133 0.93 0.94 0.82 0.81 0.62 0.67 0.88 0.69 0.64 0.69 0.46 0.85 0.88 0.80 0.82
## 134 0.80 0.88 0.64 0.69 0.67 0.78 0.83 0.54 0.60 0.65 0.71 0.69 0.67 0.75 0.85
## 135 0.83 0.75 0.78 0.69 0.82 0.94 0.79 0.64 0.87 0.88 0.94 0.82 0.67 0.77 0.90
## 136 0.61 0.47 0.84 0.67 0.45 0.55 0.53 0.70 0.60 0.57 0.55 0.67 0.58 0.41 0.84
## 137 0.79 0.71 0.83 0.82 0.72 0.69 0.67 0.71 0.67 0.71 0.60 0.77 0.73 0.73 0.73
## 138 0.88 0.81 0.85 0.69 0.74 0.62 0.69 0.54 0.60 0.65 0.71 0.79 0.75 0.67 0.64
## 139 0.60 0.53 0.80 0.40 0.58 0.44 0.67 0.71 0.74 0.70 0.68 0.75 0.56 0.56 0.80
## 140 0.76 0.78 0.71 0.67 0.50 0.68 0.50 0.71 0.59 0.63 0.68 0.75 0.65 0.65 0.71
## 141 0.86 0.68 0.83 0.65 0.50 0.53 0.58 0.68 0.50 0.47 0.44 0.65 0.76 0.56 0.69
## 142 0.64 0.77 0.91 0.62 0.76 0.81 0.80 0.67 0.80 0.57 0.81 0.73 0.79 0.79 0.80
## 143 0.93 0.86 0.91 0.71 0.76 0.88 0.71 0.77 0.71 0.67 0.81 0.92 0.79 0.69 0.50
## 144 0.60 0.53 0.80 0.40 0.65 0.68 0.67 0.53 0.67 0.63 0.53 0.75 0.56 0.65 0.80
## 145 0.69 0.62 0.80 0.59 0.65 0.53 0.59 0.53 0.50 0.63 0.61 0.67 0.56 0.47 0.80
## 146 0.89 0.90 1.00 1.00 0.93 0.92 0.92 1.00 0.92 0.93 0.92 0.88 0.91 1.00 1.00
## 147 0.83 0.93 1.00 0.69 0.82 0.71 0.69 0.93 0.79 0.64 0.80 1.00 0.93 0.86 0.62
## 148 0.90 0.80 0.86 0.83 0.87 0.93 0.83 1.00 0.92 1.00 0.93 0.89 0.92 0.82 1.00
## 149 0.71 0.56 0.73 0.61 0.67 0.56 0.68 0.65 0.68 0.65 0.56 0.89 0.59 0.67 0.81
## 150 1.00 1.00 1.00 0.92 1.00 1.00 1.00 0.90 0.92 0.93 0.92 0.88 1.00 0.91 0.83
## 151 0.67 0.87 0.70 0.73 0.71 0.75 0.81 0.87 0.64 0.60 0.67 0.64 0.80 0.80 0.82
## 152 0.82 0.73 0.75 0.86 0.81 0.79 0.67 0.92 0.77 0.88 0.87 0.91 0.75 0.85 0.89
## 153 0.82 0.83 1.00 0.86 0.88 0.87 0.77 0.92 0.93 0.88 1.00 1.00 0.75 0.75 0.75
## 154 0.80 0.82 1.00 0.85 0.80 0.86 0.85 1.00 0.93 0.94 0.93 0.78 0.83 0.83 1.00
## 155 0.67 0.69 0.79 0.56 0.63 0.59 0.65 0.76 0.72 0.68 0.67 0.73 0.71 0.71 0.79
## 156 0.83 0.93 0.78 0.79 0.82 0.71 0.58 0.93 0.58 0.73 0.71 0.92 0.86 0.93 0.78
## 157 0.89 0.90 1.00 1.00 1.00 1.00 0.92 0.90 1.00 1.00 1.00 1.00 0.91 0.91 1.00
## 158 0.62 0.81 0.85 0.69 0.67 0.78 0.69 0.73 0.69 0.36 0.62 0.79 0.82 0.89 0.75
## 159 0.65 0.74 0.67 0.56 0.55 0.65 0.63 0.67 0.63 0.44 0.58 0.62 0.68 0.81 0.75
## 160 0.87 0.88 0.83 0.57 0.79 0.76 0.67 0.80 0.67 0.71 0.69 0.86 0.88 0.73 0.73
## 161 0.73 0.67 0.86 0.53 0.68 0.65 0.62 0.75 0.71 0.67 0.65 0.80 0.76 0.60 0.67
## 162 0.73 0.75 0.90 0.79 0.75 0.80 0.79 0.85 0.94 0.73 0.80 0.70 0.93 0.93 0.90
## 163 0.69 0.62 0.73 0.75 0.65 0.69 0.67 0.80 0.67 0.78 0.60 0.67 0.73 0.64 1.00
## 164 0.69 0.62 0.92 0.57 0.65 0.76 0.75 0.71 0.89 0.71 0.83 0.77 0.64 0.73 0.83
## 165 0.67 0.83 0.87 0.65 0.70 0.59 0.72 0.69 0.65 0.53 0.50 0.73 0.78 0.71 0.79
## 166 0.82 0.76 0.58 0.72 0.56 0.74 0.56 0.76 0.56 0.61 0.50 0.73 0.78 0.78 0.69
## 167 0.40 0.53 0.76 0.50 0.50 0.53 0.58 0.68 0.58 0.47 0.53 0.65 0.63 0.56 0.89
## 168 0.92 0.93 0.78 0.87 0.75 0.71 0.87 0.93 0.69 0.81 0.80 0.92 0.86 0.77 0.90
## 169 0.60 0.53 0.71 0.50 0.58 0.61 0.74 0.62 0.59 0.63 0.68 0.75 0.36 0.56 0.80
## 170 0.72 0.67 0.82 0.47 0.47 0.58 0.63 0.50 0.56 0.53 0.58 0.62 0.53 0.61 0.75
## 171 0.70 0.73 0.89 0.77 0.88 0.87 0.86 0.83 0.86 0.80 0.79 0.80 0.85 0.85 0.89
## 172 0.82 0.83 0.79 0.72 0.63 0.74 0.72 0.60 0.56 0.44 0.50 0.64 0.78 0.71 0.69
## 173 1.00 1.00 1.00 0.92 1.00 0.92 0.92 1.00 0.92 0.93 0.92 1.00 1.00 1.00 0.83
## 174 0.82 0.73 1.00 0.77 0.81 0.87 0.77 0.92 0.93 0.94 1.00 0.91 0.75 0.64 0.89
## 175 0.83 0.85 0.62 0.79 0.67 0.80 0.79 0.75 0.79 0.81 0.71 0.92 0.77 0.86 0.78
## 176 0.67 0.50 1.00 0.72 0.56 0.59 0.65 0.69 0.79 0.68 0.80 0.64 0.53 0.53 0.87
## 177 0.55 0.58 0.92 0.73 0.53 0.57 0.73 0.79 0.81 0.76 0.82 0.75 0.50 0.71 0.92
## 178 0.78 0.79 0.73 0.44 0.53 0.63 0.61 0.72 0.61 0.58 0.63 0.89 0.67 0.67 0.73
## 179 0.71 0.65 0.64 0.68 0.44 0.56 0.53 0.79 0.61 0.58 0.63 0.83 0.59 0.67 0.73
## 180 0.64 0.67 0.77 0.53 0.61 0.47 0.71 0.75 0.62 0.67 0.72 0.80 0.50 0.69 0.86
## 181 0.73 0.64 0.90 0.87 0.75 0.88 0.79 0.64 0.87 0.94 0.80 0.92 0.55 0.67 1.00
## 182 0.67 0.53 0.83 0.41 0.42 0.44 0.58 0.61 0.58 0.62 0.53 0.72 0.47 0.47 0.69
## 183 0.92 0.75 0.90 0.79 0.75 0.88 0.79 0.85 0.79 0.88 0.88 0.92 0.77 0.67 0.90
## 184 0.73 0.85 0.90 0.79 0.82 0.88 0.94 0.64 0.87 0.73 0.88 0.56 0.77 0.77 0.90
## 185 0.62 0.65 0.64 0.61 0.60 0.56 0.68 0.56 0.61 0.58 0.47 0.83 0.67 0.67 0.88
## 186 0.56 0.50 0.75 0.56 0.39 0.41 0.70 0.67 0.63 0.60 0.58 0.62 0.53 0.61 0.95
## 187 1.00 1.00 0.83 0.92 0.93 1.00 0.92 0.90 0.92 0.93 1.00 1.00 0.91 1.00 0.83
## 188 0.75 0.83 0.69 0.56 0.63 0.50 0.79 0.60 0.56 0.68 0.40 0.73 0.71 0.62 0.79
## 189 0.73 0.75 0.86 0.43 0.53 0.65 0.78 0.57 0.71 0.59 0.79 0.62 0.69 0.50 0.77
## 190 0.69 0.88 0.92 0.75 0.65 0.60 0.89 0.80 0.75 0.62 0.60 0.86 0.81 0.81 0.92
## 191 0.76 0.78 0.88 0.50 0.65 0.53 0.74 0.71 0.67 0.56 0.61 0.57 0.79 0.56 0.71
## 192 0.90 1.00 0.86 0.92 0.94 0.85 0.92 0.91 0.92 0.93 0.85 1.00 1.00 1.00 1.00
## 193 0.73 0.85 0.78 0.79 0.82 0.71 0.58 0.93 0.69 0.81 0.71 0.92 0.86 0.77 0.78
## 194 0.60 0.62 0.88 0.50 0.65 0.61 0.67 0.62 0.74 0.63 0.53 0.82 0.72 0.56 0.88
## 195 0.58 0.80 0.92 0.67 0.72 0.50 0.75 0.80 0.75 0.71 0.69 0.93 0.81 0.64 0.92
## 196 0.85 0.77 0.80 0.71 0.69 0.64 0.80 0.77 0.71 0.75 0.81 0.73 0.69 0.69 0.80
## 197 0.80 0.64 0.64 0.69 0.67 0.78 0.76 0.81 0.76 0.72 0.62 0.79 0.75 0.75 0.85
## 198 0.77 0.87 0.70 0.73 0.78 0.67 0.81 0.69 0.64 0.69 0.57 0.64 0.80 0.88 0.82
## 199 0.45 0.71 0.73 0.57 0.72 0.69 0.75 0.88 0.75 0.62 0.69 0.86 0.73 0.81 0.92
## 200 0.92 1.00 0.78 0.79 0.82 0.94 0.87 0.75 0.79 0.64 0.80 0.92 0.93 0.93 0.62
## 201 0.80 0.73 0.64 0.69 0.67 0.62 0.50 0.73 0.50 0.72 0.71 0.79 0.67 0.57 0.64
## 202 0.89 0.78 0.80 0.67 0.58 0.68 0.74 0.62 0.59 0.63 0.53 0.75 0.79 0.56 0.80
## 203 0.75 0.50 0.79 0.72 0.47 0.67 0.36 0.76 0.65 0.68 0.74 0.73 0.53 0.62 0.79
## 204 0.45 0.71 0.60 0.57 0.65 0.76 0.75 0.80 0.75 0.62 0.76 0.86 0.64 0.81 0.92
## 205 0.89 1.00 1.00 0.92 0.93 0.92 1.00 1.00 1.00 1.00 1.00 1.00 0.91 0.91 1.00
## 206 0.70 0.73 1.00 0.86 0.81 0.79 0.77 0.92 0.86 0.88 0.94 0.91 0.64 0.75 0.89
## 207 0.83 0.75 0.78 0.79 0.82 0.88 0.87 0.75 0.87 0.88 0.80 0.92 0.67 0.77 0.90
## 208 0.71 0.65 0.73 0.75 0.44 0.56 0.61 0.56 0.53 0.65 0.47 0.50 0.67 0.59 0.88
## 209 0.71 0.81 0.85 0.60 0.80 0.62 0.76 0.81 0.76 0.56 0.71 0.69 0.82 0.75 0.64
## 210 0.62 0.64 0.75 0.60 0.74 0.71 0.76 0.81 0.76 0.72 0.78 0.94 0.57 0.67 0.85
## 211 0.94 0.75 0.77 0.78 0.61 0.72 0.78 0.67 0.62 0.80 0.56 0.71 0.76 0.50 0.86
## 212 0.80 0.64 0.93 0.69 0.59 0.53 0.60 0.88 0.69 0.79 0.71 0.79 0.67 0.57 0.85
## 213 0.76 0.62 0.80 0.67 0.71 0.81 0.50 0.71 0.67 0.56 0.68 0.75 0.72 0.65 0.71
## 214 0.50 0.44 0.76 0.50 0.33 0.44 0.58 0.75 0.65 0.47 0.53 0.65 0.56 0.63 0.83
## 215 0.81 0.75 0.86 0.71 0.68 0.65 0.71 0.67 0.78 0.74 0.72 0.88 0.60 0.76 0.77
## 216 1.00 1.00 0.71 0.93 0.88 0.86 0.85 0.82 0.75 0.87 0.86 0.90 0.92 0.92 0.88
##       76   77   78   79   80   81   82   83   84   85   86   87   88   89   90
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77  1.00                                                                      
## 78  0.71 0.93                                                                 
## 79  0.87 0.92 0.50                                                            
## 80  0.94 0.92 0.50 0.63                                                       
## 81  0.67 1.00 0.71 0.76 0.76                                                  
## 82  0.78 1.00 0.83 0.89 0.82 0.75                                             
## 83  0.80 1.00 0.93 0.93 0.85 0.75 0.88                                        
## 84  0.88 1.00 0.81 0.80 0.71 0.82 0.91 0.83                                   
## 85  0.89 1.00 0.89 0.88 0.64 0.92 0.70 0.86 0.78                              
## 86  0.70 1.00 0.65 0.78 0.62 0.79 0.77 0.90 0.73 0.64                         
## 87  0.71 1.00 0.73 0.80 0.80 0.82 0.80 0.60 0.75 0.78 0.83                    
## 88  0.85 0.91 0.61 0.59 0.59 0.81 0.80 1.00 0.77 0.69 0.82 0.86               
## 89  0.80 1.00 0.44 0.71 0.50 0.62 0.76 0.93 0.64 0.75 0.56 0.81 0.61          
## 90  1.00 0.67 0.87 0.86 0.77 0.90 0.89 0.75 0.86 0.71 0.91 0.86 0.83 0.94     
## 91  0.92 1.00 0.67 0.65 0.65 0.80 0.69 1.00 0.75 0.77 0.64 0.85 0.50 0.59 0.92
## 92  1.00 1.00 0.80 0.87 0.69 0.91 0.90 1.00 0.88 0.89 0.92 1.00 0.85 0.80 1.00
## 93  0.88 0.93 0.44 0.50 0.58 0.78 0.83 1.00 0.88 0.89 0.79 0.81 0.53 0.60 0.94
## 94  0.73 0.90 0.50 0.65 0.56 0.50 0.79 0.80 0.85 0.93 0.81 0.75 0.60 0.67 0.82
## 95  0.82 1.00 0.65 0.78 0.84 0.87 0.77 1.00 0.92 0.85 0.80 0.83 0.75 0.56 1.00
## 96  0.86 1.00 0.88 0.87 0.94 0.80 0.78 1.00 0.88 0.89 0.82 1.00 0.85 0.80 1.00
## 97  1.00 0.83 0.89 0.81 0.73 0.83 0.56 0.86 0.78 0.80 0.93 0.90 0.79 0.89 0.71
## 98  0.69 1.00 0.41 0.63 0.56 0.69 0.75 0.85 0.80 0.73 0.53 0.71 0.74 0.41 0.86
## 99  0.81 0.93 0.47 0.44 0.53 0.72 0.78 0.94 0.67 0.76 0.59 0.82 0.47 0.47 0.88
## 100 0.91 1.00 0.78 0.76 0.76 0.40 0.75 0.89 0.92 0.83 0.79 0.82 0.88 0.71 0.90
## 101 0.82 1.00 0.56 0.71 0.62 0.79 0.86 0.90 0.83 0.75 0.62 0.83 0.75 0.56 0.91
## 102 1.00 0.90 0.50 0.56 0.56 0.94 0.94 1.00 0.75 0.86 0.88 0.85 0.50 0.67 0.82
## 103 0.89 0.94 0.50 0.55 0.29 0.74 0.72 0.88 0.69 0.71 0.61 0.83 0.58 0.42 0.81
## 104 0.88 1.00 0.94 0.94 0.88 0.82 0.29 0.83 0.89 0.62 0.73 0.75 0.93 0.81 0.86
## 105 0.86 1.00 0.88 0.87 0.87 1.00 0.78 1.00 0.88 0.75 0.82 0.71 0.75 0.80 1.00
## 106 0.91 0.88 0.78 0.69 0.76 0.77 0.75 1.00 0.70 0.83 0.87 1.00 0.42 0.71 0.78
## 107 0.85 0.91 0.33 0.74 0.59 0.88 0.80 1.00 0.86 0.79 0.67 0.77 0.62 0.44 0.83
## 108 1.00 0.50 0.93 0.93 0.85 1.00 1.00 1.00 0.83 0.86 1.00 1.00 0.82 0.93 0.75
## 109 0.87 0.92 0.58 0.38 0.63 0.76 0.75 0.93 0.71 0.81 0.71 0.80 0.50 0.58 0.86
## 110 0.92 1.00 0.72 0.71 0.71 0.58 0.86 0.90 0.83 0.93 0.71 0.92 0.82 0.47 1.00
## 111 0.83 1.00 0.59 0.72 0.72 0.80 0.58 0.91 0.93 0.77 0.81 0.64 0.69 0.59 0.92
## 112 0.73 0.90 0.50 0.65 0.65 0.71 0.79 0.91 0.93 0.67 0.64 0.85 0.69 0.67 0.70
## 113 0.80 0.88 0.62 0.69 0.69 0.86 0.64 1.00 1.00 0.73 0.79 0.82 0.64 0.78 0.90
## 114 0.88 1.00 0.81 0.88 0.71 0.70 0.67 0.60 0.75 0.90 0.73 0.75 0.93 0.81 0.86
## 115 0.87 0.92 0.58 0.76 0.47 0.83 0.57 0.93 0.80 0.54 0.53 0.88 0.59 0.50 0.77
## 116 1.00 0.75 0.80 0.69 0.79 0.91 0.90 1.00 0.88 1.00 1.00 0.88 0.64 0.88 0.83
## 117 0.86 1.00 0.94 0.94 0.94 0.80 0.62 1.00 0.71 0.89 0.92 1.00 0.85 0.80 1.00
## 118 0.67 1.00 0.71 0.76 0.76 0.86 0.75 0.89 0.82 0.73 0.69 0.82 0.73 0.62 1.00
## 119 0.80 1.00 0.53 0.58 0.58 0.53 0.76 0.86 0.73 0.75 0.56 0.64 0.68 0.44 0.87
## 120 0.86 0.75 0.80 0.79 0.87 0.91 0.90 1.00 0.88 1.00 1.00 0.88 0.64 0.88 0.83
## 121 0.89 1.00 0.82 0.64 0.81 0.73 0.82 0.86 0.62 0.91 0.75 0.90 0.69 0.75 0.88
## 122 1.00 0.92 0.58 0.47 0.47 0.76 0.75 1.00 0.80 0.81 0.71 0.88 0.59 0.58 0.86
## 123 0.87 1.00 0.58 0.47 0.70 0.69 0.75 0.93 0.88 0.73 0.84 0.71 0.50 0.58 0.86
## 124 0.90 1.00 0.76 0.75 0.67 0.64 0.73 0.71 0.67 0.92 0.77 0.67 0.94 0.69 0.89
## 125 0.90 0.86 0.76 0.75 0.75 0.64 0.73 0.88 0.91 0.92 0.86 0.91 0.71 0.89 0.75
## 126 0.85 1.00 0.68 0.80 0.67 0.81 0.62 0.92 0.77 0.58 0.46 0.86 0.84 0.53 0.83
## 127 0.67 0.92 0.47 0.53 0.61 0.67 0.73 0.92 0.79 0.80 0.76 0.87 0.47 0.63 0.85
## 128 0.93 0.91 0.61 0.50 0.67 0.88 0.80 0.92 0.86 0.69 0.75 0.67 0.62 0.68 0.73
## 129 0.77 0.92 0.38 0.68 0.44 0.67 0.81 0.83 0.69 0.71 0.76 0.69 0.56 0.38 0.75
## 130 0.73 0.90 0.59 0.65 0.56 0.71 0.79 0.80 0.75 0.77 0.73 0.85 0.60 0.74 0.70
## 131 0.88 0.93 0.67 0.65 0.58 0.62 0.60 0.93 0.81 0.57 0.72 0.88 0.53 0.44 0.79
## 132 0.86 0.92 0.56 0.68 0.68 0.57 0.81 0.92 0.79 0.80 0.76 0.87 0.65 0.56 0.75
## 133 0.78 1.00 0.76 0.75 0.75 0.75 0.83 0.88 0.80 0.82 0.67 0.91 0.71 0.60 0.89
## 134 0.92 0.89 0.56 0.53 0.62 0.79 0.93 0.90 0.83 0.93 0.88 0.73 0.75 0.65 0.91
## 135 1.00 1.00 0.81 0.80 0.71 0.82 0.91 0.83 0.89 0.90 0.92 0.75 0.86 0.81 0.86
## 136 0.82 0.94 0.50 0.62 0.47 0.74 0.65 0.88 0.83 0.71 0.53 0.76 0.71 0.57 0.88
## 137 0.91 1.00 0.71 0.69 0.69 0.67 0.93 0.89 0.92 0.73 0.69 0.92 0.73 0.71 0.78
## 138 0.82 1.00 0.65 0.78 0.62 0.58 0.77 0.90 0.83 0.64 0.80 0.92 0.75 0.56 0.80
## 139 0.86 0.92 0.63 0.61 0.61 0.67 0.73 0.92 0.69 0.80 0.76 0.87 0.47 0.63 0.75
## 140 0.86 0.92 0.63 0.53 0.61 0.67 0.64 0.83 0.94 0.88 0.83 0.79 0.72 0.70 0.85
## 141 0.73 1.00 0.55 0.67 0.73 0.65 0.71 0.94 0.82 0.83 0.59 0.82 0.70 0.39 1.00
## 142 0.75 1.00 0.57 0.73 0.81 0.83 0.92 1.00 0.78 0.80 0.75 0.62 0.69 0.75 0.88
## 143 0.75 1.00 0.67 0.81 0.81 0.73 0.82 1.00 1.00 0.91 0.75 0.90 0.87 0.75 1.00
## 144 0.93 1.00 0.56 0.68 0.44 0.67 0.73 0.92 0.79 0.80 0.69 0.87 0.56 0.56 0.85
## 145 0.77 1.00 0.56 0.68 0.68 0.75 0.64 0.92 0.87 0.71 0.83 0.69 0.56 0.63 0.93
## 146 1.00 1.00 1.00 0.92 0.92 1.00 1.00 1.00 1.00 0.83 0.89 1.00 0.91 1.00 1.00
## 147 0.50 1.00 0.73 0.80 0.94 0.82 0.67 1.00 0.89 0.78 0.73 0.89 0.77 0.81 0.86
## 148 1.00 1.00 0.86 0.93 0.85 1.00 0.88 1.00 1.00 1.00 0.90 1.00 0.92 0.93 1.00
## 149 0.79 1.00 0.58 0.56 0.63 0.69 0.67 0.85 0.62 0.81 0.71 0.80 0.67 0.58 0.86
## 150 1.00 1.00 0.93 1.00 0.92 0.88 1.00 1.00 1.00 1.00 1.00 1.00 0.91 0.93 1.00
## 151 0.78 0.86 0.69 0.67 0.67 0.75 0.92 0.88 0.80 0.82 0.77 0.67 0.50 0.69 0.89
## 152 0.86 1.00 0.71 0.69 0.94 0.91 0.90 1.00 1.00 1.00 0.92 0.88 0.93 0.94 1.00
## 153 0.86 0.75 0.88 0.79 0.87 0.80 0.78 0.80 1.00 0.89 0.92 0.88 0.93 1.00 0.60
## 154 1.00 0.67 0.87 0.86 0.77 1.00 1.00 1.00 1.00 0.88 0.80 1.00 0.83 0.94 0.80
## 155 1.00 0.91 0.61 0.59 0.50 0.81 0.80 1.00 0.77 0.79 0.75 1.00 0.62 0.61 0.83
## 156 0.71 1.00 0.73 0.80 0.88 0.82 0.80 1.00 1.00 0.78 0.83 0.89 0.77 0.73 1.00
## 157 1.00 1.00 1.00 1.00 0.92 0.88 0.86 0.50 1.00 0.83 1.00 0.80 1.00 1.00 0.67
## 158 0.82 1.00 0.65 0.62 0.71 0.69 0.77 0.90 0.73 0.75 0.62 0.73 0.75 0.65 0.91
## 159 0.94 0.93 0.53 0.31 0.58 0.71 0.89 0.93 0.73 0.89 0.72 0.81 0.61 0.53 0.87
## 160 0.91 1.00 0.71 0.76 0.83 0.77 0.75 1.00 0.92 0.92 0.79 0.92 0.81 0.62 1.00
## 161 0.92 1.00 0.74 0.65 0.72 0.62 0.69 0.91 0.85 0.86 0.73 0.93 0.69 0.74 0.82
## 162 1.00 1.00 0.81 0.80 0.88 0.82 0.91 1.00 0.75 0.90 0.73 0.89 0.86 0.73 0.86
## 163 0.91 1.00 0.62 0.76 0.60 1.00 0.75 1.00 0.92 0.73 0.58 0.82 0.73 0.62 1.00
## 164 0.80 0.88 0.43 0.69 0.69 0.86 0.93 1.00 0.82 0.92 0.69 0.82 0.73 0.71 0.78
## 165 0.85 0.91 0.53 0.67 0.59 0.88 0.71 1.00 0.86 0.69 0.67 0.86 0.53 0.53 0.83
## 166 0.93 1.00 0.53 0.50 0.50 0.73 0.88 0.92 0.86 0.87 0.67 0.93 0.71 0.53 0.92
## 167 0.81 0.93 0.39 0.53 0.44 0.72 0.71 0.87 0.75 0.69 0.50 0.67 0.63 0.55 0.80
## 168 0.71 0.80 0.73 0.71 0.80 0.82 0.91 0.83 0.89 0.90 0.73 0.89 0.93 0.81 0.86
## 169 0.86 0.92 0.63 0.53 0.44 0.57 0.81 0.83 0.69 0.80 0.76 0.79 0.56 0.70 0.85
## 170 0.88 0.93 0.35 0.50 0.50 0.78 0.89 1.00 0.88 0.82 0.65 0.88 0.61 0.53 0.87
## 171 1.00 1.00 0.80 0.87 0.87 0.80 0.78 1.00 0.88 1.00 0.92 0.88 0.85 0.88 1.00
## 172 0.75 1.00 0.61 0.67 0.74 0.73 0.71 0.92 0.86 0.87 0.75 0.67 0.62 0.53 1.00
## 173 0.75 1.00 0.93 1.00 1.00 0.88 0.86 1.00 1.00 1.00 1.00 1.00 0.91 0.93 1.00
## 174 0.86 0.75 0.80 0.87 0.79 0.80 0.90 0.80 1.00 0.89 0.82 0.88 0.93 0.94 0.60
## 175 1.00 1.00 0.73 0.71 0.71 0.82 0.91 1.00 0.89 0.90 0.83 1.00 0.77 0.73 0.86
## 176 0.93 0.91 0.81 0.67 0.67 0.81 0.71 0.92 0.86 0.69 0.67 0.86 0.78 0.81 0.83
## 177 0.90 0.86 0.69 0.57 0.67 0.93 0.92 1.00 0.80 0.70 0.77 0.91 0.62 0.89 0.75
## 178 0.69 0.92 0.31 0.47 0.63 0.76 0.82 0.93 0.80 0.88 0.62 0.80 0.67 0.50 0.86
## 179 0.79 0.92 0.50 0.47 0.70 0.69 0.75 0.93 0.80 0.88 0.71 0.80 0.74 0.58 0.93
## 180 0.83 0.90 0.67 0.56 0.72 0.80 0.87 1.00 0.75 0.77 0.73 0.85 0.60 0.67 0.92
## 181 1.00 1.00 0.81 0.80 0.80 0.92 0.80 0.83 1.00 0.90 0.92 0.75 0.86 0.94 0.86
## 182 0.88 0.93 0.55 0.60 0.44 0.56 0.78 0.94 0.82 0.76 0.67 0.95 0.47 0.55 0.80
## 183 0.71 1.00 0.81 0.80 0.80 0.70 0.91 0.60 0.89 0.90 0.73 0.75 0.93 0.88 0.86
## 184 1.00 0.80 0.73 0.80 0.71 0.92 0.91 1.00 0.89 0.90 0.92 0.75 0.77 0.81 0.86
## 185 0.79 1.00 0.50 0.70 0.47 0.69 0.57 0.85 0.62 0.64 0.62 0.71 0.67 0.31 0.86
## 186 0.88 0.93 0.53 0.41 0.50 0.84 0.83 0.93 0.64 0.75 0.56 0.81 0.61 0.60 0.87
## 187 1.00 1.00 0.93 0.92 0.92 0.88 1.00 1.00 1.00 1.00 1.00 1.00 1.00 0.93 1.00
## 188 0.93 0.91 0.53 0.59 0.59 0.81 0.80 1.00 0.86 0.87 0.82 0.93 0.43 0.53 0.83
## 189 0.83 0.90 0.50 0.72 0.47 0.80 0.87 1.00 0.75 0.67 0.64 0.85 0.60 0.50 0.82
## 190 0.91 0.88 0.84 0.60 0.69 0.86 0.75 0.89 0.70 0.73 0.58 0.92 0.73 0.78 0.78
## 191 0.86 0.92 0.70 0.75 0.68 0.75 0.64 1.00 0.79 0.80 0.76 0.87 0.47 0.47 0.93
## 192 1.00 1.00 0.86 0.85 0.93 1.00 1.00 1.00 0.83 0.86 0.90 1.00 0.92 0.86 0.75
## 193 0.71 1.00 0.81 0.88 0.88 0.70 0.50 0.83 1.00 0.78 0.92 0.75 0.67 0.81 0.86
## 194 0.86 1.00 0.63 0.75 0.61 0.82 0.42 0.92 0.79 0.71 0.60 0.79 0.65 0.56 0.85
## 195 0.80 0.88 0.71 0.76 0.76 0.77 0.64 0.89 0.82 0.60 0.58 0.82 0.81 0.71 0.62
## 196 0.75 1.00 0.82 0.73 0.88 0.83 0.92 1.00 0.78 0.80 0.85 0.78 0.58 0.75 1.00
## 197 0.92 1.00 0.72 0.62 0.71 0.79 0.77 0.90 0.73 1.00 0.71 0.83 0.75 0.65 1.00
## 198 1.00 1.00 0.76 0.57 0.75 0.85 1.00 1.00 0.80 0.82 0.86 0.91 0.50 0.69 0.89
## 199 0.67 0.88 0.53 0.69 0.76 0.77 0.64 0.89 0.70 0.92 0.79 0.56 0.64 0.71 0.90
## 200 0.88 1.00 0.73 0.71 0.71 0.70 0.91 0.83 0.75 0.90 0.83 0.89 0.86 0.73 0.86
## 201 0.82 1.00 0.65 0.71 0.71 0.58 0.77 0.90 0.92 0.75 0.88 0.83 0.67 0.65 0.91
## 202 0.86 1.00 0.63 0.75 0.61 0.75 0.73 0.92 0.79 0.80 0.60 0.87 0.79 0.38 1.00
## 203 0.85 1.00 0.53 0.59 0.67 0.88 0.80 1.00 0.93 0.79 0.67 0.86 0.78 0.68 1.00
## 204 0.80 0.88 0.53 0.60 0.69 0.77 0.75 0.89 0.70 0.92 0.79 0.56 0.73 0.71 0.90
## 205 1.00 0.00 0.93 0.92 0.92 1.00 1.00 1.00 1.00 1.00 1.00 1.00 0.91 1.00 0.67
## 206 0.86 0.75 0.88 0.79 0.79 0.80 0.90 0.80 1.00 0.75 0.82 0.88 0.85 1.00 0.60
## 207 1.00 1.00 0.81 0.71 0.80 1.00 0.80 1.00 0.89 1.00 0.92 0.89 0.77 0.88 1.00
## 208 0.94 1.00 0.65 0.56 0.47 0.76 0.82 0.85 0.80 0.64 0.71 0.80 0.59 0.58 0.86
## 209 0.82 0.89 0.72 0.78 0.78 0.69 0.67 1.00 0.73 0.85 0.88 0.83 0.46 0.56 0.91
## 210 0.82 0.89 0.72 0.53 0.71 0.69 0.67 0.78 0.73 0.93 0.80 0.73 0.75 0.85 0.80
## 211 0.92 1.00 0.67 0.72 0.56 0.88 0.79 0.91 0.85 0.86 0.73 0.93 0.76 0.59 1.00
## 212 0.70 0.89 0.56 0.78 0.71 0.87 0.86 1.00 0.92 0.75 0.62 0.92 0.67 0.65 0.91
## 213 0.67 1.00 0.38 0.68 0.68 0.67 0.73 0.83 0.87 0.88 0.69 0.58 0.79 0.56 0.93
## 214 0.73 0.93 0.39 0.53 0.53 0.72 0.78 0.94 0.67 0.76 0.50 0.75 0.47 0.47 0.88
## 215 0.92 0.90 0.67 0.65 0.79 0.80 0.79 1.00 0.85 0.93 0.88 0.93 0.76 0.67 0.92
## 216 1.00 1.00 0.87 0.86 0.86 0.90 0.89 1.00 1.00 0.88 0.91 1.00 1.00 0.79 1.00
##       91   92   93   94   95   96   97   98   99  100  101  102  103  104  105
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92  0.83                                                                      
## 93  0.59 0.71                                                                 
## 94  0.67 0.83 0.59                                                            
## 95  0.73 0.82 0.56 0.81                                                       
## 96  0.83 1.00 1.00 0.92 0.82                                                  
## 97  0.77 0.75 0.75 0.77 0.85 0.89                                             
## 98  0.79 0.87 0.65 0.65 0.71 0.87 0.94                                        
## 99  0.44 0.88 0.47 0.61 0.67 0.81 0.69 0.67                                   
## 100 0.80 0.91 0.71 0.71 0.87 0.91 0.83 0.76 0.79                              
## 101 0.73 0.92 0.85 0.73 0.71 0.70 1.00 0.62 0.74 0.79                         
## 102 0.75 0.83 0.50 0.75 0.73 0.92 0.77 0.72 0.53 0.88 0.73                    
## 103 0.70 0.75 0.64 0.63 0.75 0.75 0.71 0.39 0.52 0.80 0.61 0.56               
## 104 0.75 1.00 0.88 0.93 0.83 0.88 0.62 0.80 0.82 0.70 0.92 1.00 0.83          
## 105 0.83 1.00 0.80 0.92 0.92 1.00 1.00 0.69 0.88 0.91 0.92 0.83 0.82 0.71     
## 106 0.71 0.80 0.71 0.71 0.79 0.80 0.60 0.83 0.65 0.86 0.87 0.62 0.59 0.92 0.91
## 107 0.69 0.93 0.61 0.69 0.57 0.85 0.94 0.50 0.63 0.81 0.46 0.50 0.58 0.86 0.75
## 108 1.00 0.80 0.86 0.91 0.90 1.00 0.67 1.00 0.87 1.00 1.00 0.80 0.88 1.00 1.00
## 109 0.65 0.94 0.71 0.65 0.78 0.69 0.81 0.63 0.53 0.76 0.53 0.56 0.39 0.88 0.79
## 110 0.73 0.82 0.72 0.73 0.80 0.82 0.93 0.62 0.74 0.58 0.62 0.81 0.61 0.83 0.82
## 111 0.67 0.83 0.67 0.57 0.54 0.83 0.86 0.56 0.75 0.71 0.64 0.75 0.63 0.75 0.73
## 112 0.82 0.92 0.74 0.75 0.73 0.73 0.86 0.47 0.61 0.80 0.73 0.75 0.56 0.85 0.92
## 113 0.80 0.80 0.71 0.80 0.79 0.80 0.83 0.76 0.79 0.77 0.69 0.80 0.67 0.82 0.80
## 114 0.85 0.88 0.88 0.75 0.92 0.88 0.62 0.80 0.75 0.82 0.92 0.85 0.69 0.75 1.00
## 115 0.65 0.79 0.71 0.72 0.62 0.69 0.64 0.56 0.53 0.83 0.62 0.65 0.29 0.71 0.87
## 116 0.73 0.86 0.71 0.60 0.92 1.00 0.75 0.94 0.73 0.91 1.00 0.73 0.82 1.00 0.86
## 117 0.83 0.86 0.88 0.92 0.70 0.67 0.57 0.94 0.81 0.91 0.92 0.92 0.82 0.71 1.00
## 118 0.80 0.91 0.78 0.88 0.45 0.67 0.83 0.69 0.56 1.00 0.69 0.80 0.67 0.82 0.91
## 119 0.59 0.88 0.53 0.59 0.79 0.94 0.89 0.41 0.62 0.43 0.65 0.74 0.57 0.73 0.71
## 120 0.92 1.00 0.80 0.73 0.92 0.86 0.89 0.79 0.88 1.00 0.92 0.73 0.75 1.00 0.67
## 121 0.67 0.89 0.82 0.77 0.93 0.89 0.80 0.81 0.69 0.83 0.85 0.77 0.71 0.90 0.89
## 122 0.36 0.79 0.50 0.65 0.78 0.87 0.73 0.76 0.53 0.60 0.62 0.65 0.55 0.80 0.87
## 123 0.56 0.94 0.58 0.72 0.62 0.79 0.88 0.56 0.60 0.69 0.62 0.65 0.62 0.80 0.79
## 124 0.79 0.90 0.76 0.79 0.86 0.90 0.70 0.67 0.71 0.75 0.93 0.87 0.65 0.67 0.90
## 125 0.79 0.90 0.69 0.58 1.00 0.90 0.56 0.82 0.71 0.64 0.93 0.69 0.72 0.80 0.90
## 126 0.69 0.85 0.68 0.83 0.57 0.85 0.69 0.50 0.56 0.73 0.75 0.76 0.58 0.55 0.85
## 127 0.71 0.77 0.47 0.62 0.76 0.93 0.71 0.61 0.50 0.82 0.76 0.62 0.60 0.87 0.86
## 128 0.60 1.00 0.61 0.76 0.57 0.85 0.79 0.67 0.47 0.81 0.75 0.60 0.65 0.77 0.85
## 129 0.78 0.86 0.63 0.62 0.69 0.86 0.80 0.44 0.50 0.82 0.69 0.53 0.44 0.87 0.86
## 130 0.89 0.83 0.67 0.57 0.81 0.92 0.67 0.56 0.61 0.88 0.81 0.57 0.47 0.93 0.92
## 131 0.59 0.88 0.67 0.74 0.65 0.71 0.67 0.65 0.47 0.62 0.65 0.74 0.50 0.64 0.88
## 132 0.78 0.93 0.63 0.62 0.60 0.77 0.71 0.68 0.50 0.57 0.69 0.53 0.60 0.87 1.00
## 133 0.87 1.00 0.83 0.79 0.77 0.90 1.00 0.57 0.78 0.85 0.67 0.79 0.65 0.91 0.78
## 134 0.88 0.92 0.65 0.73 0.88 0.92 0.93 0.62 0.74 0.69 0.62 0.54 0.61 0.92 0.70
## 135 0.85 0.71 0.73 0.75 0.92 1.00 0.90 0.62 0.95 0.82 0.92 0.85 0.69 0.89 0.71
## 136 0.63 0.82 0.50 0.63 0.61 0.82 0.62 0.62 0.37 0.67 0.61 0.63 0.48 0.69 0.89
## 137 0.71 1.00 0.78 0.71 0.79 0.80 0.92 0.69 0.56 0.67 0.69 0.71 0.74 0.92 1.00
## 138 0.88 0.82 0.79 0.73 0.80 0.82 0.85 0.53 0.74 0.58 0.62 0.73 0.61 0.83 0.92
## 139 0.62 0.77 0.56 0.43 0.76 0.86 0.62 0.61 0.58 0.75 0.83 0.62 0.44 0.87 0.86
## 140 0.78 0.77 0.56 0.53 0.69 0.93 0.71 0.61 0.77 0.67 0.69 0.78 0.53 0.79 0.86
## 141 0.68 0.88 0.47 0.68 0.40 0.81 0.83 0.53 0.50 0.65 0.59 0.68 0.59 0.75 0.81
## 142 0.67 1.00 0.67 0.77 0.85 1.00 1.00 0.73 0.69 0.73 0.75 0.67 0.90 0.90 0.75
## 143 0.77 0.89 0.57 0.86 0.75 1.00 0.91 0.73 0.69 0.73 0.93 0.86 0.90 0.78 0.89
## 144 0.53 0.77 0.63 0.62 0.83 0.77 0.80 0.53 0.65 0.75 0.69 0.62 0.35 0.87 0.86
## 145 0.78 0.86 0.56 0.62 0.69 0.86 0.80 0.53 0.65 0.67 0.69 0.53 0.60 0.79 0.67
## 146 0.90 1.00 1.00 1.00 1.00 0.75 1.00 1.00 0.93 1.00 0.89 1.00 0.94 1.00 1.00
## 147 0.75 1.00 0.81 0.85 0.73 0.88 0.90 0.71 0.75 0.92 0.83 0.93 0.89 0.75 0.88
## 148 0.80 0.50 0.86 0.80 0.90 1.00 0.86 0.93 0.94 1.00 0.90 0.91 0.88 1.00 1.00
## 149 0.72 0.87 0.65 0.65 0.71 0.79 0.64 0.47 0.44 0.83 0.78 0.56 0.39 0.80 0.87
## 150 0.90 1.00 0.93 0.90 1.00 1.00 1.00 1.00 0.93 0.88 0.89 0.90 1.00 1.00 1.00
## 151 0.58 1.00 0.69 0.58 0.86 0.90 0.92 0.82 0.53 0.85 0.77 0.79 0.79 0.91 0.78
## 152 0.92 0.86 0.80 0.83 0.82 0.86 0.89 0.87 0.81 0.80 0.82 0.73 0.89 1.00 1.00
## 153 0.92 1.00 0.80 0.73 0.92 1.00 0.57 0.87 0.81 0.80 1.00 0.92 0.89 0.71 1.00
## 154 0.82 0.83 0.87 0.82 0.91 0.83 0.88 0.93 0.88 1.00 0.80 0.92 0.81 1.00 1.00
## 155 0.50 0.64 0.61 0.76 0.75 0.75 0.58 0.80 0.47 0.81 0.67 0.60 0.50 0.86 1.00
## 156 0.85 0.88 0.88 0.93 0.73 0.50 1.00 0.71 0.82 0.92 0.73 0.93 0.76 0.89 0.88
## 157 1.00 1.00 1.00 0.90 1.00 1.00 0.83 0.92 1.00 0.88 1.00 1.00 0.94 0.80 1.00
## 158 0.54 0.92 0.72 0.88 0.80 0.82 0.85 0.78 0.59 0.69 0.62 0.81 0.75 0.73 0.92
## 159 0.50 0.88 0.53 0.67 0.72 0.80 0.82 0.65 0.47 0.71 0.56 0.59 0.50 0.88 0.88
## 160 0.62 0.80 0.62 0.88 0.69 0.80 0.83 0.69 0.72 0.77 0.79 0.80 0.74 0.70 0.80
## 161 0.46 0.83 0.59 0.57 0.81 0.92 0.67 0.72 0.61 0.62 0.81 0.75 0.70 0.75 0.92
## 162 0.64 0.88 0.81 0.85 0.73 0.88 0.90 0.88 0.82 0.70 0.73 0.85 0.83 0.89 1.00
## 163 0.62 0.80 0.71 0.80 0.69 0.80 0.92 0.60 0.65 0.93 0.69 0.71 0.59 0.82 0.67
## 164 0.80 0.91 0.62 0.62 0.69 0.91 0.92 0.60 0.72 0.86 0.69 0.62 0.67 1.00 0.91
## 165 0.60 1.00 0.68 0.76 0.67 0.75 0.87 0.59 0.47 0.88 0.57 0.60 0.58 0.77 0.75
## 166 0.50 0.75 0.61 0.69 0.67 0.85 0.87 0.67 0.47 0.81 0.57 0.69 0.58 0.93 1.00
## 167 0.53 0.88 0.62 0.53 0.80 0.81 0.76 0.53 0.42 0.65 0.50 0.61 0.45 0.75 0.81
## 168 1.00 1.00 0.88 0.75 0.92 0.88 0.90 0.71 0.75 0.82 0.73 0.85 0.76 0.89 0.88
## 169 0.71 0.77 0.56 0.53 0.95 0.86 0.62 0.68 0.50 0.67 0.83 0.62 0.44 0.87 0.86
## 170 0.74 0.88 0.53 0.67 0.72 0.80 0.95 0.41 0.62 0.71 0.47 0.50 0.42 0.94 0.80
## 171 0.73 0.86 0.80 0.83 0.92 0.86 0.75 1.00 0.81 0.67 0.82 0.73 0.89 0.88 1.00
## 172 0.69 1.00 0.53 0.69 0.57 0.93 0.94 0.59 0.63 0.73 0.67 0.69 0.71 0.77 0.64
## 173 1.00 1.00 1.00 0.90 0.89 0.75 1.00 0.92 1.00 1.00 0.89 1.00 0.94 1.00 1.00
## 174 0.92 0.86 0.80 0.60 0.92 1.00 0.75 0.79 0.88 0.80 0.92 0.92 0.82 0.88 1.00
## 175 0.75 0.71 0.73 0.85 0.83 1.00 0.90 0.80 0.75 0.82 0.92 0.75 0.76 1.00 1.00
## 176 0.76 0.85 0.61 0.76 0.75 0.85 0.58 0.74 0.70 0.64 0.75 0.76 0.58 0.67 0.85
## 177 0.79 0.78 0.69 0.79 0.86 0.90 0.70 0.89 0.62 0.85 0.77 0.58 0.72 1.00 1.00
## 178 0.72 0.87 0.50 0.65 0.62 0.87 0.88 0.27 0.53 0.89 0.71 0.65 0.47 0.88 0.79
## 179 0.72 0.79 0.41 0.72 0.53 0.87 0.64 0.70 0.35 0.69 0.84 0.65 0.62 0.80 0.94
## 180 0.75 0.83 0.59 0.82 0.81 0.73 0.77 0.65 0.53 0.80 0.88 0.67 0.56 0.85 0.73
## 181 0.93 0.88 0.73 0.85 0.83 1.00 0.78 0.80 0.89 0.82 0.92 0.64 0.76 0.89 0.88
## 182 0.61 0.73 0.47 0.53 0.74 0.81 0.69 0.60 0.50 0.65 0.74 0.61 0.37 0.89 0.94
## 183 0.93 0.88 0.81 0.64 0.92 1.00 0.90 0.62 0.89 0.82 0.83 0.93 0.76 0.89 0.88
## 184 0.85 1.00 0.73 0.75 0.92 1.00 0.90 0.88 0.82 0.70 0.73 0.64 0.83 0.89 0.71
## 185 0.72 0.79 0.71 0.72 0.71 0.79 0.73 0.38 0.53 0.76 0.71 0.65 0.29 0.71 0.79
## 186 0.67 0.80 0.60 0.67 0.79 0.80 0.75 0.58 0.47 0.78 0.56 0.50 0.33 0.88 0.80
## 187 1.00 0.75 0.93 1.00 1.00 1.00 1.00 0.92 1.00 0.88 1.00 1.00 0.94 1.00 1.00
## 188 0.69 0.93 0.61 0.60 0.75 0.85 0.87 0.59 0.56 0.81 0.67 0.38 0.50 0.93 0.75
## 189 0.67 0.73 0.50 0.67 0.81 1.00 0.86 0.56 0.61 0.71 0.73 0.67 0.63 0.85 0.73
## 190 0.71 1.00 0.84 0.88 0.94 0.80 0.73 0.76 0.65 0.86 0.69 0.80 0.59 0.70 0.80
## 191 0.53 0.86 0.47 0.62 0.60 0.86 0.71 0.68 0.58 0.75 0.76 0.71 0.60 0.69 0.67
## 192 0.91 1.00 1.00 1.00 0.90 0.80 1.00 0.85 0.87 1.00 0.78 0.80 0.88 1.00 1.00
## 193 0.75 0.88 0.81 0.64 0.73 0.88 0.78 0.80 0.82 0.82 0.92 0.93 0.83 0.75 0.88
## 194 0.53 0.86 0.63 0.71 0.69 0.86 0.71 0.44 0.65 0.82 0.76 0.71 0.44 0.58 0.67
## 195 0.80 1.00 0.84 0.80 0.87 0.80 0.73 0.60 0.65 0.67 0.79 0.80 0.67 0.56 0.80
## 196 0.77 0.89 0.57 0.77 0.75 1.00 0.91 0.73 0.69 0.83 1.00 0.77 0.84 0.90 0.57
## 197 0.54 0.82 0.56 0.64 0.71 0.92 0.75 0.71 0.59 0.87 0.88 0.73 0.61 0.83 0.82
## 198 0.58 1.00 0.76 0.79 0.86 0.78 1.00 0.75 0.62 0.85 0.67 0.58 0.72 1.00 0.78
## 199 0.71 0.91 0.71 0.62 0.79 0.80 0.73 0.76 0.65 0.86 0.79 0.71 0.67 0.82 0.80
## 200 0.75 0.88 0.81 0.85 0.92 1.00 0.90 0.80 0.75 0.82 0.73 0.85 0.83 0.89 1.00
## 201 0.73 0.70 0.56 0.64 0.71 0.92 0.75 0.71 0.59 0.58 0.88 0.73 0.75 0.83 0.92
## 202 0.71 0.77 0.56 0.84 0.60 0.86 0.80 0.53 0.58 0.75 0.69 0.71 0.53 0.69 0.77
## 203 0.69 0.64 0.44 0.83 0.46 0.85 0.79 0.67 0.56 0.81 0.75 0.69 0.65 0.86 0.93
## 204 0.71 0.80 0.62 0.71 0.87 0.91 0.73 0.76 0.65 0.77 0.87 0.71 0.67 0.82 0.80
## 205 1.00 1.00 0.93 0.90 1.00 1.00 0.83 1.00 0.93 1.00 1.00 0.90 0.94 1.00 1.00
## 206 0.92 1.00 0.88 0.73 1.00 0.86 0.75 0.87 0.81 0.80 0.92 0.92 0.82 0.88 1.00
## 207 0.75 0.88 0.64 0.85 0.83 1.00 0.78 0.80 0.75 1.00 1.00 0.64 0.76 0.89 0.71
## 208 0.65 0.79 0.65 0.65 0.71 0.87 0.81 0.63 0.60 0.69 0.43 0.56 0.47 0.88 0.87
## 209 0.54 0.92 0.56 0.64 0.62 0.82 0.64 0.84 0.50 0.79 0.88 0.73 0.75 0.73 0.82
## 210 0.73 0.92 0.65 0.54 0.94 0.92 0.50 0.71 0.59 0.79 0.94 0.73 0.61 0.73 0.82
## 211 0.75 0.73 0.59 0.75 0.64 0.92 0.77 0.65 0.61 0.88 0.64 0.57 0.56 0.85 0.83
## 212 0.81 0.82 0.65 0.73 0.50 0.70 0.85 0.62 0.59 0.94 0.71 0.73 0.61 0.92 0.92
## 213 0.71 0.93 0.56 0.53 0.50 0.86 0.88 0.44 0.58 0.75 0.60 0.71 0.67 0.79 0.86
## 214 0.53 0.81 0.47 0.53 0.59 0.81 0.76 0.60 0.33 0.79 0.67 0.61 0.45 0.89 0.88
## 215 0.89 0.83 0.59 0.89 0.54 0.73 0.67 0.72 0.68 0.80 0.81 0.57 0.56 0.85 0.92
## 216 1.00 0.83 0.94 1.00 0.91 0.83 1.00 0.77 0.94 0.78 0.80 0.92 0.81 0.86 0.83
##      106  107  108  109  110  111  112  113  114  115  116  117  118  119  120
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107 0.81                                                                      
## 108 0.75 0.92                                                                 
## 109 0.50 0.59 0.93                                                            
## 110 0.79 0.75 1.00 0.62                                                       
## 111 0.80 0.50 1.00 0.56 0.73                                                  
## 112 0.80 0.60 0.91 0.72 0.88 0.75                                             
## 113 0.77 0.64 0.89 0.60 0.87 0.62 0.62                                        
## 114 0.82 0.93 1.00 0.80 0.83 0.85 0.85 0.92                                   
## 115 0.60 0.50 0.85 0.56 0.78 0.56 0.47 0.60 0.71                              
## 116 0.67 0.85 0.80 0.69 0.92 0.73 0.92 0.80 0.88 0.87                         
## 117 0.67 0.93 0.80 0.87 0.92 0.92 0.92 0.91 0.88 0.79 1.00                    
## 118 0.86 0.73 0.89 0.76 0.87 0.80 0.62 0.77 0.82 0.60 1.00 0.67               
## 119 0.78 0.61 1.00 0.58 0.47 0.59 0.74 0.78 0.81 0.71 0.88 0.94 0.90          
## 120 0.67 0.75 0.80 0.69 0.92 0.83 0.83 0.80 1.00 0.87 0.67 0.86 0.91 0.88     
## 121 0.44 0.94 1.00 0.54 0.64 0.86 0.93 0.92 0.62 0.81 0.75 0.89 0.92 0.67 0.89
## 122 0.69 0.59 0.93 0.47 0.62 0.65 0.79 0.60 0.88 0.63 0.69 0.87 0.89 0.50 0.87
## 123 0.76 0.59 1.00 0.56 0.71 0.56 0.56 0.69 0.94 0.70 0.87 0.87 0.69 0.50 0.79
## 124 0.93 0.88 1.00 0.82 0.77 0.87 0.79 0.93 0.50 0.82 0.90 0.78 0.75 0.69 0.90
## 125 0.64 0.88 0.88 0.75 0.77 0.87 0.79 0.85 0.67 0.75 0.78 0.90 1.00 0.69 0.78
## 126 0.81 0.62 0.92 0.80 0.75 0.69 0.60 0.88 0.77 0.40 1.00 0.75 0.64 0.61 1.00
## 127 0.57 0.72 0.83 0.68 0.76 0.84 0.62 0.67 0.87 0.68 0.86 0.77 0.67 0.63 0.77
## 128 0.81 0.53 0.92 0.59 0.89 0.60 0.50 0.73 0.86 0.59 0.75 0.93 0.64 0.68 0.85
## 129 0.75 0.47 0.83 0.68 0.76 0.71 0.43 0.75 0.79 0.53 0.86 0.86 0.57 0.63 0.77
## 130 0.50 0.76 0.80 0.65 0.88 0.82 0.57 0.80 0.64 0.56 0.83 0.83 0.71 0.74 0.73
## 131 0.62 0.61 0.86 0.58 0.65 0.67 0.50 0.62 0.88 0.41 0.88 0.71 0.62 0.60 0.88
## 132 0.57 0.56 0.83 0.61 0.76 0.71 0.53 0.82 0.79 0.53 0.86 0.77 0.75 0.63 0.86
## 133 0.64 0.71 1.00 0.57 0.67 0.79 0.79 0.85 0.80 0.75 0.90 0.90 0.75 0.69 0.78
## 134 0.87 0.57 0.90 0.53 0.50 0.73 0.81 0.69 0.92 0.84 0.82 1.00 0.87 0.56 0.70
## 135 0.92 0.86 1.00 0.88 0.73 0.75 0.85 0.92 0.89 0.88 0.88 1.00 1.00 0.64 0.71
## 136 0.80 0.58 0.88 0.62 0.68 0.63 0.63 0.67 0.69 0.39 0.89 0.82 0.59 0.57 0.95
## 137 0.86 0.73 1.00 0.76 0.79 0.80 0.50 0.93 0.82 0.69 0.91 1.00 0.77 0.71 1.00
## 138 0.79 0.67 0.90 0.78 0.71 0.73 0.54 0.79 0.92 0.62 1.00 0.82 0.79 0.65 0.92
## 139 0.33 0.72 0.83 0.53 0.76 0.62 0.71 0.82 0.79 0.53 0.67 0.77 0.89 0.56 0.67
## 140 0.67 0.72 0.92 0.53 0.60 0.53 0.78 0.57 0.79 0.68 0.77 0.86 0.82 0.56 0.77
## 141 0.72 0.56 0.94 0.60 0.50 0.61 0.75 0.79 0.82 0.60 0.94 0.73 0.56 0.47 0.88
## 142 0.92 0.58 1.00 0.81 0.93 0.77 0.77 0.83 1.00 0.88 0.89 1.00 0.92 0.57 0.89
## 143 1.00 0.79 1.00 1.00 0.85 0.93 0.67 0.83 0.90 0.88 1.00 0.89 0.73 0.75 1.00
## 144 0.67 0.65 1.00 0.61 0.69 0.71 0.62 0.75 0.69 0.53 0.86 0.86 0.82 0.56 0.77
## 145 0.75 0.56 0.92 0.61 0.76 0.43 0.71 0.67 0.87 0.61 0.86 0.86 0.75 0.56 0.77
## 146 1.00 1.00 1.00 0.92 1.00 1.00 0.90 0.88 1.00 0.92 1.00 1.00 0.88 1.00 1.00
## 147 0.82 0.77 1.00 0.88 1.00 0.85 0.64 0.82 1.00 0.80 1.00 0.71 0.70 0.81 0.88
## 148 0.89 0.92 1.00 0.93 0.90 0.80 1.00 0.89 0.83 0.85 0.80 1.00 1.00 0.93 1.00
## 149 0.60 0.74 0.93 0.56 0.78 0.72 0.65 0.89 0.62 0.56 0.87 0.69 0.60 0.65 0.79
## 150 1.00 0.91 1.00 1.00 0.89 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 0.93 1.00
## 151 0.85 0.71 0.88 0.67 0.77 0.79 0.79 0.75 0.91 0.82 0.62 1.00 0.75 0.69 0.78
## 152 0.91 0.85 1.00 0.79 0.92 0.73 0.83 0.80 0.88 0.87 0.86 1.00 0.91 0.88 1.00
## 153 0.91 0.93 0.80 0.94 1.00 0.92 0.73 0.91 0.88 0.87 0.86 0.86 0.91 0.88 0.86
## 154 0.90 0.83 0.75 0.86 0.91 0.92 0.82 0.78 1.00 0.77 0.83 1.00 0.90 0.94 0.83
## 155 0.64 0.71 0.82 0.67 0.67 0.83 0.69 0.73 0.86 0.50 0.85 0.75 0.73 0.75 0.93
## 156 0.92 0.77 1.00 0.80 0.83 0.75 0.50 0.56 1.00 0.71 1.00 0.88 0.56 0.88 0.88
## 157 1.00 1.00 1.00 1.00 1.00 0.90 0.90 1.00 0.80 0.92 1.00 1.00 1.00 0.93 1.00
## 158 0.87 0.75 1.00 0.71 0.71 0.88 0.73 0.69 0.83 0.78 1.00 0.82 0.69 0.56 1.00
## 159 0.71 0.61 0.93 0.41 0.47 0.74 0.74 0.78 0.88 0.71 0.80 0.88 0.78 0.44 0.80
## 160 0.86 0.73 1.00 0.83 0.45 0.80 0.80 0.86 0.92 0.76 1.00 0.80 0.77 0.62 0.91
## 161 0.62 0.83 1.00 0.72 0.64 0.75 0.82 0.94 0.75 0.72 0.83 0.83 0.94 0.50 0.92
## 162 0.70 0.77 1.00 0.71 0.73 0.75 0.93 0.92 0.89 0.80 0.88 0.88 1.00 0.64 1.00
## 163 0.93 0.54 1.00 0.69 0.79 0.50 0.71 0.67 0.82 0.50 0.80 1.00 0.67 0.78 0.91
## 164 0.77 0.42 0.89 0.69 0.94 0.71 0.62 0.77 0.92 0.69 0.80 0.91 0.86 0.71 0.67
## 165 0.81 0.31 0.92 0.59 0.82 0.69 0.50 0.64 0.93 0.50 0.85 0.85 0.54 0.75 0.75
## 166 0.81 0.71 1.00 0.67 0.57 0.76 0.69 0.81 0.77 0.67 0.85 0.93 0.64 0.68 1.00
## 167 0.79 0.47 0.94 0.44 0.67 0.53 0.61 0.65 0.75 0.44 0.81 0.94 0.79 0.39 0.88
## 168 0.92 0.77 0.83 0.71 0.73 0.85 0.75 0.82 0.89 0.80 0.88 1.00 0.82 0.81 0.88
## 169 0.67 0.85 0.83 0.61 0.69 0.84 0.71 0.75 0.69 0.68 0.77 0.86 0.82 0.56 0.77
## 170 0.78 0.33 0.93 0.50 0.65 0.67 0.50 0.62 0.94 0.58 0.88 0.94 0.78 0.53 0.71
## 171 0.80 0.85 1.00 0.79 0.82 0.83 1.00 0.80 0.71 0.87 0.86 0.86 1.00 0.80 1.00
## 172 0.81 0.53 1.00 0.59 0.67 0.60 0.83 0.73 0.86 0.80 0.85 0.85 0.64 0.53 0.75
## 173 0.88 0.91 1.00 0.92 1.00 0.90 0.90 0.88 1.00 0.92 1.00 0.75 0.88 1.00 0.75
## 174 0.91 0.85 0.80 0.94 0.92 0.83 0.73 0.91 0.88 0.79 0.86 1.00 1.00 0.80 0.86
## 175 0.70 0.86 1.00 0.80 0.83 0.85 0.75 0.82 0.75 0.80 0.71 1.00 0.92 0.81 1.00
## 176 0.73 0.78 0.82 0.67 0.75 0.76 0.76 0.73 0.86 0.59 0.93 0.75 0.81 0.61 0.85
## 177 0.64 0.80 0.71 0.67 1.00 0.87 0.69 0.64 0.91 0.67 0.78 0.90 0.85 0.83 0.90
## 178 0.76 0.50 0.93 0.63 0.71 0.72 0.47 0.76 0.88 0.63 0.87 0.87 0.60 0.58 0.69
## 179 0.69 0.74 0.85 0.63 0.71 0.72 0.65 0.69 0.71 0.63 0.79 0.79 0.60 0.65 0.94
## 180 0.71 0.76 0.80 0.65 0.73 0.82 0.57 0.71 0.93 0.65 0.83 0.83 0.71 0.67 0.73
## 181 0.82 0.86 1.00 0.80 0.92 0.75 0.85 0.82 0.57 0.80 0.88 1.00 0.92 0.81 0.88
## 182 0.47 0.70 0.87 0.60 0.67 0.75 0.53 0.72 0.75 0.44 0.81 0.81 0.79 0.55 0.81
## 183 0.92 0.93 1.00 0.88 0.73 0.85 0.85 1.00 0.75 0.88 1.00 1.00 0.92 0.64 0.88
## 184 0.92 0.55 0.83 0.71 0.83 0.75 0.93 0.70 1.00 0.88 0.71 1.00 1.00 0.73 0.71
## 185 0.69 0.59 0.93 0.56 0.71 0.56 0.56 0.69 0.62 0.38 0.87 0.79 0.60 0.58 0.87
## 186 0.62 0.61 0.86 0.31 0.65 0.67 0.74 0.71 0.81 0.50 0.80 0.88 0.78 0.53 0.80
## 187 1.00 1.00 1.00 1.00 0.89 1.00 0.90 0.88 1.00 1.00 1.00 1.00 1.00 0.93 1.00
## 188 0.54 0.43 0.92 0.40 0.67 0.60 0.69 0.73 0.86 0.59 0.64 0.93 0.81 0.68 0.64
## 189 0.80 0.50 0.80 0.79 0.73 0.75 0.67 0.71 1.00 0.65 0.83 0.92 0.88 0.50 0.83
## 190 0.67 0.81 0.89 0.50 0.69 0.94 0.80 0.77 0.82 0.69 0.91 0.80 0.77 0.71 0.80
## 191 0.57 0.56 0.83 0.61 0.60 0.62 0.84 0.75 0.94 0.61 0.77 0.67 0.75 0.56 0.67
## 192 0.89 0.82 1.00 0.85 0.90 0.91 0.80 1.00 1.00 0.85 1.00 1.00 0.89 0.93 1.00
## 193 0.70 0.86 1.00 0.80 0.92 0.50 0.75 0.70 0.75 0.71 0.71 0.88 0.82 0.81 0.88
## 194 0.67 0.56 1.00 0.61 0.76 0.53 0.71 0.75 0.69 0.44 0.86 0.77 0.75 0.56 0.77
## 195 0.77 0.64 0.89 0.69 0.79 0.71 0.50 0.77 0.82 0.50 0.91 0.91 0.86 0.62 0.91
## 196 0.73 0.87 0.86 0.81 0.85 0.77 0.86 0.92 1.00 0.88 0.75 0.89 0.83 0.67 0.75
## 197 0.69 0.82 1.00 0.62 0.62 0.73 0.94 0.94 0.60 0.78 0.70 0.82 0.79 0.65 0.82
## 198 0.75 0.71 1.00 0.57 0.67 0.79 0.79 0.93 1.00 0.82 0.78 1.00 0.85 0.69 0.78
## 199 0.67 0.64 0.89 0.50 0.87 0.62 0.80 0.55 0.70 0.69 0.67 0.80 0.77 0.71 0.67
## 200 0.92 0.86 1.00 0.88 0.73 1.00 0.85 0.92 0.89 0.94 1.00 0.88 0.82 0.73 1.00
## 201 0.79 0.82 0.90 0.84 0.71 0.64 0.64 0.79 0.83 0.71 0.82 0.92 0.79 0.65 1.00
## 202 0.82 0.65 0.92 0.75 0.38 0.78 0.78 0.82 0.79 0.61 1.00 0.77 0.57 0.56 0.93
## 203 0.88 0.71 0.92 0.80 0.82 0.69 0.60 0.64 0.86 0.59 0.93 0.85 0.54 0.75 1.00
## 204 0.77 0.73 0.89 0.60 0.79 0.71 0.80 0.55 0.70 0.76 0.67 0.91 0.86 0.62 0.80
## 205 0.88 0.91 0.50 0.92 1.00 1.00 0.90 0.88 1.00 0.92 0.75 1.00 1.00 1.00 0.75
## 206 0.91 0.93 0.80 0.87 1.00 0.92 0.60 0.80 0.88 0.79 0.86 1.00 0.91 0.88 0.86
## 207 0.82 0.86 1.00 0.80 0.92 0.85 0.93 0.92 0.75 0.88 0.71 0.88 0.82 0.88 0.71
## 208 0.69 0.67 0.93 0.47 0.53 0.56 0.79 0.76 0.80 0.56 0.87 0.94 0.76 0.50 0.94
## 209 0.58 0.67 0.78 0.71 0.80 0.73 0.81 0.79 0.92 0.71 0.70 0.56 0.69 0.72 0.70
## 210 0.69 0.89 0.90 0.62 0.80 0.81 0.81 0.87 0.60 0.78 0.70 0.82 0.87 0.65 0.70
## 211 0.80 0.69 0.91 0.72 0.54 0.75 0.89 0.88 0.75 0.65 0.92 0.83 0.62 0.74 0.92
## 212 0.79 0.57 0.78 0.78 0.88 0.73 0.42 0.69 0.92 0.43 0.92 0.82 0.45 0.85 0.82
## 213 0.95 0.47 1.00 0.75 0.76 0.53 0.62 0.82 0.79 0.68 0.93 0.86 0.57 0.56 0.86
## 214 0.56 0.56 0.87 0.44 0.80 0.61 0.61 0.65 0.75 0.44 0.73 0.81 0.65 0.55 0.81
## 215 0.62 0.69 0.80 0.65 0.73 0.82 0.67 0.71 0.85 0.65 0.92 0.60 0.62 0.80 0.73
## 216 1.00 0.83 1.00 0.86 0.67 0.82 0.82 0.78 1.00 0.86 1.00 1.00 0.90 0.87 1.00
##      121  122  123  124  125  126  127  128  129  130  131  132  133  134  135
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122 0.73                                                                      
## 123 0.81 0.56                                                                 
## 124 0.82 0.75 0.75                                                            
## 125 0.70 0.75 0.82 0.83                                                       
## 126 0.87 0.74 0.74 0.71 0.80                                                  
## 127 0.71 0.68 0.61 0.81 0.64 0.72                                             
## 128 0.87 0.59 0.40 0.71 0.88 0.62 0.79                                        
## 129 0.88 0.75 0.53 0.64 0.81 0.65 0.50 0.56                                   
## 130 0.67 0.85 0.79 0.79 0.58 0.69 0.43 0.76 0.53                              
## 131 0.82 0.50 0.41 0.76 0.76 0.53 0.56 0.53 0.47 0.74                         
## 132 0.80 0.68 0.61 0.81 0.64 0.56 0.67 0.56 0.50 0.53 0.47                    
## 133 0.56 0.82 0.75 0.83 0.92 0.80 0.73 0.80 0.73 0.58 0.76 0.73               
## 134 0.85 0.62 0.62 0.77 0.77 0.89 0.69 0.75 0.60 0.81 0.72 0.76 0.77          
## 135 0.90 0.80 0.71 0.67 0.80 0.86 0.87 0.86 0.79 0.85 0.88 0.94 0.91 0.73     
## 136 0.84 0.55 0.68 0.72 0.65 0.41 0.60 0.58 0.60 0.63 0.50 0.53 0.85 0.68 0.89
## 137 0.83 0.76 0.60 0.85 0.75 0.64 0.82 0.54 0.67 0.71 0.62 0.46 0.75 0.87 0.92
## 138 0.93 0.78 0.62 0.86 0.77 0.57 0.60 0.82 0.50 0.64 0.47 0.50 0.77 0.71 0.83
## 139 0.62 0.61 0.68 0.81 0.54 0.65 0.59 0.72 0.67 0.43 0.63 0.50 0.73 0.83 0.69
## 140 0.71 0.53 0.61 0.73 0.73 0.79 0.59 0.72 0.74 0.62 0.63 0.74 0.64 0.60 0.69
## 141 0.76 0.67 0.60 0.78 0.78 0.47 0.58 0.70 0.65 0.68 0.55 0.50 0.62 0.67 0.89
## 142 0.91 0.73 0.64 0.92 0.82 0.79 0.71 0.69 0.71 0.86 0.82 0.71 0.92 0.75 0.90
## 143 1.00 0.81 0.73 0.70 0.82 0.69 0.62 0.79 0.71 0.86 0.75 0.80 0.92 0.85 0.90
## 144 0.71 0.53 0.53 0.64 0.64 0.72 0.67 0.72 0.59 0.62 0.63 0.67 0.73 0.76 0.58
## 145 0.88 0.75 0.53 0.88 0.64 0.65 0.59 0.72 0.59 0.62 0.63 0.59 0.81 0.60 0.79
## 146 1.00 0.92 0.92 1.00 1.00 1.00 1.00 0.91 1.00 1.00 0.93 1.00 1.00 1.00 1.00
## 147 0.90 0.88 0.71 0.91 0.91 0.67 0.58 0.77 0.79 0.75 0.73 0.79 0.80 1.00 1.00
## 148 0.86 0.85 1.00 1.00 0.88 0.92 0.92 1.00 1.00 0.91 1.00 1.00 1.00 1.00 0.83
## 149 0.64 0.76 0.63 0.57 0.67 0.50 0.53 0.67 0.53 0.36 0.65 0.53 0.67 0.78 0.80
## 150 1.00 0.92 0.92 1.00 0.86 1.00 0.92 1.00 0.92 1.00 0.93 0.92 1.00 0.89 1.00
## 151 0.82 0.67 0.67 0.83 0.83 0.94 0.73 0.62 0.64 0.87 0.69 0.81 0.83 0.67 0.91
## 152 0.89 0.87 0.87 1.00 0.78 0.85 0.86 0.85 0.93 0.83 0.94 0.77 1.00 0.82 1.00
## 153 1.00 0.87 0.87 0.78 0.62 0.75 0.77 0.75 0.86 0.73 0.80 0.77 1.00 0.92 0.88
## 154 1.00 0.77 0.93 1.00 0.89 0.92 0.93 0.83 0.93 0.92 0.87 0.93 1.00 0.91 0.86
## 155 0.79 0.40 0.67 0.80 0.71 0.62 0.56 0.71 0.65 0.76 0.44 0.65 0.94 0.75 0.86
## 156 1.00 0.88 0.62 0.91 1.00 0.86 0.79 0.77 0.69 0.93 0.64 0.87 0.91 0.83 0.89
## 157 1.00 1.00 0.92 0.86 0.86 0.91 1.00 0.91 0.92 0.90 0.93 0.92 1.00 1.00 0.80
## 158 0.75 0.53 0.53 0.67 0.86 0.75 0.60 0.67 0.69 0.88 0.56 0.76 0.86 0.71 0.92
## 159 0.67 0.31 0.41 0.69 0.76 0.75 0.63 0.53 0.63 0.80 0.53 0.63 0.76 0.47 0.73
## 160 0.83 0.69 0.60 0.75 0.75 0.64 0.67 0.81 0.75 0.94 0.62 0.82 0.93 0.69 0.70
## 161 0.55 0.56 0.65 0.79 0.45 0.60 0.62 0.76 0.84 0.67 0.67 0.62 0.79 0.88 0.75
## 162 0.62 0.62 0.80 0.91 0.91 0.77 0.94 0.77 0.94 0.93 0.81 0.69 0.80 0.92 0.89
## 163 0.92 0.69 0.76 0.85 0.93 0.64 0.89 0.64 0.75 0.88 0.78 0.89 0.85 0.79 0.82
## 164 0.92 0.69 0.76 0.85 0.85 0.73 0.75 0.64 0.67 0.62 0.84 0.57 0.75 0.79 0.82
## 165 0.94 0.59 0.50 0.80 0.88 0.62 0.65 0.43 0.47 0.76 0.44 0.65 0.71 0.67 0.93
## 166 0.69 0.50 0.59 0.71 0.88 0.71 0.65 0.62 0.65 0.76 0.61 0.72 0.71 0.75 0.86
## 167 0.76 0.44 0.60 0.78 0.62 0.56 0.65 0.56 0.58 0.68 0.55 0.58 0.84 0.59 0.82
## 168 0.90 0.88 0.94 0.91 0.80 0.77 0.79 0.86 0.79 0.75 0.81 0.79 0.80 0.60 1.00
## 169 0.71 0.61 0.68 0.64 0.42 0.79 0.50 0.79 0.59 0.53 0.63 0.67 0.88 0.60 0.69
## 170 0.89 0.50 0.50 0.83 0.76 0.68 0.63 0.61 0.56 0.67 0.60 0.56 0.69 0.47 0.73
## 171 0.75 0.69 0.87 0.90 0.62 0.93 0.86 0.93 0.93 0.92 0.88 0.77 1.00 0.82 1.00
## 172 0.79 0.67 0.50 0.71 0.88 0.78 0.65 0.62 0.65 0.76 0.68 0.72 0.50 0.57 0.86
## 173 1.00 1.00 0.92 1.00 1.00 1.00 0.92 1.00 0.92 0.90 0.93 0.92 0.86 1.00 1.00
## 174 1.00 0.87 0.94 0.90 0.62 0.75 0.86 0.85 0.86 0.73 0.88 0.77 1.00 0.92 0.71
## 175 0.62 0.71 0.80 0.80 0.91 0.86 0.79 0.77 0.79 0.75 0.81 0.79 0.67 0.92 0.89
## 176 0.87 0.59 0.74 0.80 0.62 0.53 0.72 0.71 0.85 0.69 0.61 0.65 0.88 0.75 0.77
## 177 0.82 0.67 0.82 1.00 0.73 0.80 0.64 0.71 0.81 0.58 0.76 0.64 0.92 0.86 1.00
## 178 0.81 0.70 0.56 0.67 0.82 0.59 0.44 0.59 0.44 0.56 0.65 0.68 0.67 0.62 0.71
## 179 0.73 0.63 0.70 0.67 0.75 0.59 0.53 0.59 0.61 0.65 0.58 0.53 0.82 0.71 0.94
## 180 0.86 0.72 0.65 0.79 0.69 0.69 0.62 0.69 0.62 0.75 0.59 0.71 0.94 0.64 0.75
## 181 0.78 0.88 0.80 0.80 0.67 0.86 0.87 0.77 0.87 0.64 0.94 0.79 0.80 0.83 0.75
## 182 0.69 0.53 0.60 0.78 0.53 0.63 0.50 0.70 0.58 0.44 0.47 0.41 0.71 0.80 0.75
## 183 0.78 0.94 0.88 0.80 0.67 0.77 0.79 0.93 0.87 0.64 0.94 0.87 0.80 0.83 0.57
## 184 1.00 0.62 0.80 0.91 0.80 0.93 0.87 0.77 0.79 0.93 0.81 0.79 0.91 0.44 0.89
## 185 0.73 0.70 0.63 0.57 0.82 0.50 0.61 0.67 0.33 0.56 0.50 0.61 0.67 0.71 0.80
## 186 0.67 0.50 0.71 0.83 0.69 0.61 0.63 0.68 0.70 0.59 0.67 0.63 0.76 0.56 0.81
## 187 1.00 0.92 0.92 0.86 1.00 1.00 0.92 1.00 0.92 1.00 0.93 1.00 1.00 0.89 0.80
## 188 0.69 0.59 0.59 0.88 0.71 0.78 0.65 0.62 0.56 0.60 0.61 0.56 0.50 0.57 0.86
## 189 0.93 0.56 0.72 0.87 0.79 0.60 0.53 0.76 0.53 0.75 0.59 0.71 0.87 0.64 0.75
## 190 0.60 0.60 0.76 0.75 0.75 0.73 0.67 0.73 0.82 0.71 0.62 0.82 0.64 0.69 0.92
## 191 0.80 0.53 0.61 0.81 0.73 0.65 0.59 0.72 0.67 0.78 0.47 0.67 0.73 0.69 0.79
## 192 0.86 0.93 0.85 1.00 1.00 0.82 0.92 0.82 0.83 0.91 0.86 0.83 0.88 0.90 1.00
## 193 0.78 0.88 0.71 0.91 0.80 0.86 0.79 0.77 0.79 0.75 0.73 0.79 0.80 1.00 0.89
## 194 0.71 0.61 0.61 0.64 0.73 0.47 0.67 0.65 0.67 0.62 0.63 0.74 0.64 0.83 0.69
## 195 0.83 0.76 0.76 0.85 0.64 0.42 0.75 0.64 0.67 0.71 0.53 0.57 0.85 0.79 0.92
## 196 0.80 0.88 0.73 0.92 0.82 0.79 0.71 0.79 0.80 0.77 0.82 0.80 0.82 0.85 0.78
## 197 0.50 0.62 0.78 0.55 0.77 0.75 0.76 0.75 0.83 0.73 0.85 0.83 0.67 0.80 0.73
## 198 0.70 0.67 0.46 0.92 0.83 0.88 0.81 0.62 0.73 0.87 0.69 0.73 0.73 0.67 0.80
## 199 0.73 0.69 0.76 0.75 0.75 0.88 0.67 0.73 0.67 0.71 0.78 0.75 0.85 0.69 0.92
## 200 0.78 0.71 0.71 0.67 0.91 0.86 0.58 0.86 0.69 0.85 0.73 0.87 0.80 0.73 0.89
## 201 0.85 0.78 0.62 0.86 0.67 0.67 0.60 0.75 0.60 0.73 0.56 0.60 0.93 0.80 0.83
## 202 0.80 0.68 0.68 0.64 0.81 0.47 0.59 0.79 0.59 0.78 0.56 0.74 0.73 0.60 0.79
## 203 0.94 0.67 0.67 0.80 0.88 0.53 0.65 0.62 0.72 0.76 0.68 0.72 0.94 0.82 0.86
## 204 0.73 0.60 0.76 0.64 0.75 0.88 0.67 0.73 0.67 0.80 0.78 0.82 0.93 0.58 0.82
## 205 1.00 0.92 1.00 1.00 0.86 1.00 0.92 0.91 0.92 0.90 0.93 0.92 1.00 0.89 1.00
## 206 1.00 0.87 0.87 0.90 0.62 0.85 0.86 0.75 0.86 0.73 0.80 0.77 1.00 0.92 0.88
## 207 0.78 0.80 0.80 0.67 0.80 0.86 0.79 0.77 0.87 0.75 0.94 0.94 0.80 0.83 0.75
## 208 0.64 0.56 0.56 0.89 0.75 0.67 0.68 0.67 0.68 0.65 0.58 0.61 0.67 0.62 0.80
## 209 0.85 0.62 0.62 0.77 0.77 0.75 0.60 0.67 0.60 0.81 0.47 0.60 0.86 0.80 0.92
## 210 0.64 0.71 0.78 0.55 0.40 0.75 0.60 0.75 0.76 0.54 0.79 0.76 0.86 0.71 0.73
## 211 0.77 0.72 0.79 0.79 0.79 0.60 0.62 0.83 0.71 0.67 0.74 0.78 0.69 0.64 0.85
## 212 1.00 0.84 0.78 0.93 0.86 0.57 0.69 0.67 0.60 0.64 0.65 0.60 0.86 0.88 0.92
## 213 0.94 0.75 0.53 0.64 0.81 0.56 0.67 0.56 0.50 0.71 0.70 0.59 0.81 0.69 0.79
## 214 0.69 0.53 0.67 0.78 0.78 0.63 0.58 0.56 0.58 0.53 0.62 0.50 0.71 0.80 0.89
## 215 0.86 0.72 0.65 0.69 0.79 0.69 0.62 0.69 0.62 0.67 0.59 0.53 0.79 0.64 0.85
## 216 1.00 0.86 0.86 0.89 1.00 0.83 0.93 0.92 0.85 1.00 0.79 0.93 0.89 0.67 0.86
##      136  137  138  139  140  141  142  143  144  145  146  147  148  149  150
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137 0.67                                                                      
## 138 0.68 0.58                                                                 
## 139 0.67 0.75 0.69                                                            
## 140 0.60 0.89 0.76 0.59                                                       
## 141 0.37 0.72 0.67 0.65 0.58                                                  
## 142 0.78 0.73 0.75 0.80 0.94 0.76                                             
## 143 0.71 0.73 0.75 0.94 0.88 0.69 0.67                                        
## 144 0.67 0.67 0.69 0.50 0.67 0.71 0.80 0.80                                   
## 145 0.53 0.75 0.50 0.59 0.67 0.50 0.62 0.80 0.67                              
## 146 0.94 0.88 1.00 1.00 1.00 1.00 1.00 1.00 0.92 1.00                         
## 147 0.83 0.82 0.73 0.79 0.87 0.75 0.62 0.62 0.87 0.79 1.00                    
## 148 0.88 1.00 1.00 0.83 0.83 0.94 1.00 1.00 0.83 0.92 1.00 1.00               
## 149 0.55 0.69 0.62 0.44 0.68 0.53 0.81 0.81 0.53 0.53 1.00 0.71 0.93          
## 150 0.94 0.88 0.89 1.00 1.00 0.93 0.83 0.83 0.92 0.92 1.00 1.00 1.00 1.00     
## 151 0.72 0.75 0.93 0.81 0.81 0.78 0.70 0.82 0.81 0.81 0.86 0.91 1.00 0.89 0.86
## 152 0.75 0.80 0.82 0.86 0.86 0.81 0.75 0.89 0.93 0.67 1.00 0.88 0.80 0.79 1.00
## 153 0.75 0.80 0.82 0.77 0.77 0.88 0.89 0.75 0.93 0.86 1.00 0.71 1.00 0.79 1.00
## 154 0.81 0.90 1.00 0.85 0.85 0.94 1.00 1.00 0.85 1.00 0.67 1.00 0.75 1.00 1.00
## 155 0.50 0.73 0.67 0.65 0.72 0.70 0.87 0.79 0.56 0.79 0.91 0.86 0.82 0.67 0.91
## 156 0.83 0.82 0.73 0.94 0.87 0.82 0.90 0.78 0.79 0.79 0.80 0.75 1.00 0.88 1.00
## 157 0.94 0.88 0.89 0.92 0.92 1.00 1.00 1.00 0.92 0.92 1.00 1.00 1.00 0.92 1.00
## 158 0.61 0.79 0.80 0.89 0.76 0.67 0.64 0.64 0.69 0.83 0.89 0.73 1.00 0.78 0.89
## 159 0.57 0.71 0.79 0.63 0.56 0.55 0.75 0.82 0.56 0.76 0.93 0.88 0.93 0.65 0.93
## 160 0.67 0.86 0.79 0.82 0.75 0.56 0.83 0.60 0.67 0.75 1.00 0.82 0.89 0.76 0.88
## 161 0.63 0.62 0.73 0.43 0.62 0.61 0.77 0.77 0.53 0.71 1.00 0.75 0.80 0.56 0.90
## 162 0.83 0.82 0.92 0.69 0.79 0.75 0.78 1.00 0.79 0.94 1.00 0.89 0.83 0.88 1.00
## 163 0.59 0.77 0.87 0.82 0.82 0.72 0.83 0.83 0.67 0.67 0.88 0.92 0.75 0.76 1.00
## 164 0.74 0.77 0.79 0.57 0.75 0.72 0.60 0.83 0.67 0.75 1.00 0.70 0.89 0.69 1.00
## 165 0.58 0.64 0.67 0.79 0.79 0.63 0.69 0.69 0.65 0.65 0.91 0.67 1.00 0.67 0.91
## 166 0.58 0.54 0.75 0.79 0.65 0.63 0.87 0.69 0.56 0.85 0.91 0.86 0.82 0.67 0.91
## 167 0.28 0.65 0.67 0.58 0.65 0.57 0.60 0.83 0.58 0.50 0.93 0.82 0.87 0.60 0.93
## 168 0.69 0.82 0.73 0.87 0.79 0.75 0.90 0.90 1.00 0.79 1.00 0.89 1.00 0.80 1.00
## 169 0.53 0.75 0.69 0.50 0.67 0.71 0.80 0.80 0.50 0.59 0.92 0.94 0.92 0.53 0.92
## 170 0.57 0.62 0.56 0.63 0.63 0.55 0.67 0.75 0.47 0.56 0.93 0.81 0.93 0.65 0.93
## 171 0.75 0.91 0.92 0.86 0.86 0.81 0.75 0.89 0.77 0.77 1.00 1.00 0.80 0.87 0.75
## 172 0.65 0.81 0.82 0.79 0.56 0.38 0.69 0.69 0.72 0.56 1.00 0.77 1.00 0.67 0.91
## 173 1.00 1.00 0.89 0.92 0.92 0.93 1.00 1.00 0.92 0.92 1.00 0.80 1.00 0.92 1.00
## 174 0.75 0.80 0.82 0.67 0.77 0.88 0.89 0.89 0.86 0.86 1.00 0.88 0.80 0.87 1.00
## 175 0.89 0.70 0.83 0.79 0.79 0.89 0.90 0.78 0.69 0.94 1.00 0.89 0.83 0.80 1.00
## 176 0.41 0.81 0.75 0.56 0.56 0.56 0.87 0.87 0.72 0.65 0.91 0.86 0.92 0.67 1.00
## 177 0.65 0.75 0.77 0.64 0.81 0.84 0.70 0.92 0.81 0.73 0.86 0.80 0.88 0.75 1.00
## 178 0.62 0.76 0.71 0.61 0.61 0.53 0.73 0.64 0.61 0.68 1.00 0.62 0.93 0.47 1.00
## 179 0.39 0.76 0.78 0.68 0.61 0.44 0.81 0.64 0.81 0.68 1.00 0.80 0.93 0.56 1.00
## 180 0.63 0.80 0.73 0.62 0.84 0.68 0.77 0.77 0.71 0.62 0.90 0.85 1.00 0.65 1.00
## 181 0.76 0.82 0.92 0.79 0.69 0.82 0.90 0.90 0.69 0.69 1.00 1.00 0.83 0.71 1.00
## 182 0.52 0.56 0.59 0.31 0.58 0.57 0.83 0.76 0.31 0.65 0.93 0.82 0.87 0.53 0.93
## 183 0.76 0.82 0.83 0.69 0.69 0.75 0.90 0.90 0.79 0.79 1.00 0.89 0.83 0.71 1.00
## 184 0.76 0.92 0.83 0.87 0.79 0.82 0.62 0.90 0.87 0.69 1.00 1.00 1.00 0.94 0.80
## 185 0.55 0.76 0.53 0.61 0.68 0.60 0.81 0.81 0.53 0.53 1.00 0.80 0.93 0.38 1.00
## 186 0.42 0.78 0.72 0.47 0.63 0.55 0.75 0.95 0.63 0.56 0.93 0.88 0.86 0.50 1.00
## 187 1.00 1.00 0.89 1.00 0.92 1.00 1.00 0.83 0.92 1.00 1.00 1.00 1.00 1.00 1.00
## 188 0.71 0.64 0.67 0.56 0.65 0.63 0.79 0.87 0.56 0.56 1.00 0.86 0.92 0.59 0.91
## 189 0.63 0.80 0.54 0.62 0.78 0.68 0.55 0.67 0.71 0.62 1.00 0.75 0.91 0.79 0.90
## 190 0.67 0.86 0.87 0.75 0.67 0.72 0.92 0.92 0.75 0.89 0.88 0.82 1.00 0.69 1.00
## 191 0.60 0.89 0.76 0.50 0.59 0.41 0.80 0.80 0.67 0.59 1.00 0.79 0.92 0.68 0.92
## 192 0.94 0.75 0.78 0.92 1.00 0.94 0.86 1.00 0.92 0.92 1.00 0.83 1.00 0.85 1.00
## 193 0.83 0.82 0.83 0.69 0.69 0.82 0.90 0.90 0.79 0.69 1.00 0.75 0.83 0.80 1.00
## 194 0.60 0.82 0.76 0.50 0.59 0.58 0.80 0.80 0.40 0.59 1.00 0.69 0.83 0.44 1.00
## 195 0.59 0.67 0.58 0.67 0.82 0.72 0.73 0.83 0.82 0.67 1.00 0.70 1.00 0.69 1.00
## 196 0.84 0.83 0.85 0.62 0.88 0.69 0.67 0.80 0.88 0.62 1.00 0.78 1.00 0.73 1.00
## 197 0.68 0.87 1.00 0.60 0.60 0.59 0.93 0.85 0.60 0.83 1.00 0.92 0.78 0.53 1.00
## 198 0.85 0.50 0.77 0.73 0.88 0.78 0.70 0.92 0.64 0.73 0.86 0.91 1.00 0.75 0.86
## 199 0.67 1.00 0.94 0.67 0.67 0.72 0.73 0.92 0.75 0.67 1.00 0.82 0.89 0.69 1.00
## 200 0.83 0.82 0.73 0.94 0.79 0.82 0.78 0.62 0.79 0.94 1.00 0.75 1.00 0.80 0.80
## 201 0.61 0.58 0.50 0.69 0.76 0.67 0.75 0.64 0.76 0.50 1.00 0.83 0.90 0.71 0.89
## 202 0.44 0.82 0.69 0.80 0.67 0.31 0.88 0.62 0.67 0.67 1.00 0.87 0.92 0.61 0.92
## 203 0.41 0.73 0.75 0.79 0.72 0.56 0.79 0.58 0.72 0.65 0.91 0.77 0.82 0.67 1.00
## 204 0.67 1.00 0.94 0.75 0.67 0.79 0.73 0.83 0.75 0.75 1.00 0.92 0.89 0.76 1.00
## 205 0.94 1.00 1.00 0.92 0.92 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00 1.00
## 206 0.75 0.67 0.82 0.77 0.86 0.94 0.89 0.89 0.86 0.86 0.75 0.88 1.00 0.87 1.00
## 207 0.83 0.92 1.00 0.79 0.79 0.82 0.90 0.78 0.69 0.79 1.00 0.89 0.83 0.62 1.00
## 208 0.47 0.60 0.62 0.61 0.53 0.53 0.81 0.94 0.61 0.53 0.92 0.94 0.85 0.63 0.92
## 209 0.68 0.87 0.80 0.60 0.76 0.59 0.75 0.75 0.76 0.69 1.00 0.73 1.00 0.71 0.89
## 210 0.61 0.87 0.88 0.50 0.60 0.74 0.85 0.85 0.69 0.69 1.00 0.83 0.90 0.43 1.00
## 211 0.47 0.80 0.73 0.78 0.62 0.44 0.93 0.77 0.71 0.62 1.00 0.93 0.80 0.56 0.90
## 212 0.53 0.69 0.71 0.69 0.83 0.59 0.85 0.75 0.76 0.69 0.89 0.73 0.90 0.71 1.00
## 213 0.44 0.67 0.69 0.74 0.67 0.41 0.62 0.62 0.67 0.50 1.00 0.69 0.92 0.53 0.92
## 214 0.45 0.72 0.80 0.41 0.65 0.50 0.69 0.83 0.58 0.65 0.93 0.75 0.87 0.53 1.00
## 215 0.63 0.88 0.73 0.71 0.62 0.53 0.93 0.77 0.71 0.71 1.00 0.85 1.00 0.56 1.00
## 216 0.88 0.90 0.67 1.00 0.85 0.88 1.00 0.88 0.93 0.85 1.00 1.00 1.00 0.93 1.00
##      151  152  153  154  155  156  157  158  159  160  161  162  163  164  165
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152 1.00                                                                      
## 153 0.90 0.86                                                                 
## 154 0.75 1.00 0.83                                                            
## 155 0.80 0.85 0.85 0.73                                                       
## 156 0.80 0.88 1.00 0.86 0.77                                                  
## 157 1.00 1.00 0.75 1.00 1.00 1.00                                             
## 158 0.67 0.92 0.92 0.91 0.57 0.73 1.00                                        
## 159 0.60 0.88 0.88 0.79 0.44 0.81 1.00 0.47                                   
## 160 0.85 0.91 0.91 0.90 0.54 0.70 1.00 0.58 0.53                              
## 161 0.87 0.83 0.73 0.92 0.60 1.00 0.90 0.73 0.59 0.62                         
## 162 0.91 0.88 1.00 0.86 0.77 1.00 1.00 0.73 0.64 0.82 0.64                    
## 163 0.75 0.80 1.00 0.78 0.73 0.70 1.00 0.87 0.78 0.77 0.88 0.92               
## 164 0.85 0.80 0.80 0.78 0.81 0.92 1.00 0.87 0.71 0.93 0.80 0.70 0.77          
## 165 0.62 0.93 0.85 0.83 0.62 0.67 1.00 0.67 0.61 0.73 0.83 0.93 0.54 0.64     
## 166 0.71 0.85 0.93 0.83 0.43 0.77 1.00 0.57 0.44 0.64 0.60 0.77 0.64 0.81 0.62
## 167 0.62 0.73 0.81 0.80 0.56 0.82 0.93 0.59 0.47 0.72 0.61 0.75 0.56 0.65 0.56
## 168 0.80 0.71 0.71 0.86 0.86 0.89 1.00 0.92 0.81 0.92 0.93 1.00 0.82 0.82 0.77
## 169 0.64 0.86 0.77 0.85 0.56 0.87 0.92 0.69 0.56 0.75 0.62 0.94 0.82 0.82 0.79
## 170 0.76 0.80 0.88 0.79 0.61 0.73 1.00 0.72 0.44 0.71 0.74 0.81 0.62 0.43 0.44
## 171 0.90 0.67 1.00 1.00 0.75 1.00 1.00 0.70 0.80 0.80 0.73 0.71 0.91 0.91 0.93
## 172 0.62 0.93 0.93 1.00 0.90 0.86 1.00 0.67 0.61 0.73 0.76 0.86 0.73 0.73 0.53
## 173 1.00 1.00 1.00 1.00 1.00 0.80 1.00 1.00 1.00 1.00 1.00 1.00 1.00 0.88 0.91
## 174 0.90 0.86 0.40 0.60 0.85 1.00 0.75 1.00 0.88 0.91 0.73 0.88 0.91 0.67 0.93
## 175 0.91 0.88 1.00 1.00 0.77 0.89 1.00 0.83 0.81 0.92 0.75 0.75 0.82 0.82 0.86
## 176 0.88 0.85 0.64 0.73 0.62 0.93 0.91 0.75 0.61 0.73 0.60 0.77 0.81 0.73 0.78
## 177 0.83 0.62 0.78 0.75 0.62 0.91 1.00 0.77 0.76 1.00 0.79 0.80 0.85 0.64 0.80
## 178 0.75 0.87 0.79 0.86 0.67 0.71 1.00 0.71 0.50 0.60 0.72 0.88 0.69 0.50 0.50
## 179 0.75 0.69 0.79 0.93 0.59 0.80 1.00 0.62 0.58 0.69 0.72 0.80 0.76 0.76 0.74
## 180 0.69 0.83 0.83 0.82 0.60 0.64 1.00 0.73 0.59 0.62 0.82 0.93 0.71 0.80 0.69
## 181 1.00 0.71 0.88 1.00 0.93 1.00 0.80 0.92 0.88 0.92 0.75 0.89 0.82 0.82 0.93
## 182 0.78 0.88 0.81 0.80 0.47 0.82 0.93 0.74 0.55 0.72 0.44 0.75 0.79 0.65 0.70
## 183 0.91 0.88 0.71 0.86 0.93 1.00 0.80 0.92 0.81 0.82 0.64 0.89 0.92 0.82 1.00
## 184 0.67 0.88 0.88 0.86 0.86 1.00 1.00 0.83 0.73 0.92 0.93 0.89 0.82 0.70 0.67
## 185 0.82 0.87 0.94 1.00 0.67 0.71 0.92 0.71 0.71 0.76 0.79 0.88 0.60 0.76 0.59
## 186 0.76 0.71 0.88 0.79 0.53 0.88 1.00 0.72 0.44 0.78 0.67 0.73 0.62 0.62 0.68
## 187 1.00 1.00 1.00 1.00 0.91 0.80 1.00 0.89 0.93 0.88 1.00 1.00 1.00 1.00 1.00
## 188 0.71 0.85 0.93 0.92 0.71 0.86 1.00 0.89 0.61 0.81 0.69 0.86 0.64 0.64 0.43
## 189 0.69 0.92 0.83 0.82 0.60 0.85 1.00 0.73 0.67 0.71 0.75 0.85 0.71 0.62 0.60
## 190 0.75 1.00 0.80 0.78 0.64 0.92 1.00 0.58 0.53 0.77 0.71 0.82 0.86 0.86 0.64
## 191 0.64 1.00 0.86 0.85 0.65 0.87 1.00 0.76 0.56 0.57 0.62 0.79 0.75 0.75 0.56
## 192 1.00 0.80 1.00 1.00 0.82 0.83 1.00 0.90 0.86 0.89 0.91 0.83 0.89 0.89 0.82
## 193 0.80 0.88 0.88 1.00 0.93 0.75 0.80 0.92 0.94 0.92 0.75 0.89 0.82 0.92 0.86
## 194 0.88 0.93 0.86 0.93 0.72 0.87 0.92 0.76 0.70 0.67 0.53 0.79 0.57 0.67 0.56
## 195 0.85 0.80 0.67 0.90 0.73 0.82 0.88 0.79 0.78 0.77 0.71 0.82 0.77 0.77 0.64
## 196 0.70 0.89 0.89 1.00 0.94 0.90 1.00 0.93 0.82 0.83 0.77 0.90 0.83 0.83 0.87
## 197 0.77 0.92 0.92 0.91 0.75 1.00 1.00 0.80 0.56 0.69 0.54 0.73 0.69 0.79 0.82
## 198 0.60 0.90 1.00 0.89 0.71 0.80 1.00 0.77 0.50 0.75 0.69 0.80 0.75 0.85 0.62
## 199 0.64 0.80 0.91 0.90 0.81 0.82 1.00 0.69 0.71 0.86 0.88 0.82 0.77 0.67 0.73
## 200 0.80 1.00 0.88 1.00 0.67 0.89 1.00 0.44 0.64 0.70 0.75 0.89 1.00 0.92 0.77
## 201 0.77 0.70 0.82 1.00 0.67 0.73 0.89 0.80 0.79 0.69 0.64 0.92 0.79 0.94 0.82
## 202 0.81 0.93 0.93 0.93 0.56 0.79 1.00 0.60 0.56 0.33 0.71 0.87 0.67 0.89 0.65
## 203 0.88 0.64 0.85 0.83 0.53 0.67 1.00 0.67 0.68 0.64 0.76 0.86 0.54 0.73 0.71
## 204 0.64 0.80 0.91 0.90 0.73 0.82 1.00 0.58 0.62 0.77 0.88 0.82 0.77 0.77 0.81
## 205 0.86 1.00 0.75 0.67 0.91 1.00 1.00 1.00 0.93 1.00 1.00 1.00 1.00 0.88 0.91
## 206 0.78 0.86 0.40 0.60 0.85 0.88 0.75 0.92 0.88 1.00 0.83 1.00 0.91 0.80 0.85
## 207 0.91 0.88 0.88 1.00 0.86 1.00 1.00 0.92 0.81 0.82 0.75 1.00 0.70 0.82 0.77
## 208 0.75 0.79 0.94 0.86 0.59 0.88 0.92 0.71 0.50 0.76 0.56 0.71 0.69 0.83 0.74
## 209 0.55 1.00 0.82 0.91 0.67 0.83 1.00 0.71 0.65 0.69 0.73 0.83 0.87 0.79 0.57
## 210 0.77 0.82 0.56 0.91 0.75 1.00 0.89 0.80 0.65 0.79 0.54 0.92 0.87 0.79 0.82
## 211 0.87 0.83 0.92 0.92 0.60 0.93 1.00 0.81 0.67 0.62 0.67 0.93 0.62 0.88 0.69
## 212 0.77 0.82 0.82 0.67 0.67 0.60 1.00 0.88 0.79 0.79 0.88 0.92 0.58 0.58 0.57
## 213 0.73 0.77 0.77 0.93 0.79 0.79 0.92 0.69 0.63 0.67 0.71 0.87 0.67 0.57 0.56
## 214 0.62 0.81 0.88 0.80 0.63 0.82 1.00 0.67 0.55 0.85 0.68 0.67 0.65 0.47 0.63
## 215 0.94 0.83 0.83 0.92 0.60 0.75 1.00 0.73 0.59 0.62 0.82 0.85 0.88 0.71 0.69
## 216 1.00 0.83 1.00 1.00 0.83 0.67 1.00 0.91 0.87 0.78 1.00 1.00 0.78 1.00 0.83
##      166  167  168  169  170  171  172  173  174  175  176  177  178  179  180
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167 0.63                                                                      
## 168 0.86 0.67                                                                 
## 169 0.72 0.50 0.79                                                            
## 170 0.61 0.47 0.73 0.63                                                       
## 171 0.85 0.73 1.00 0.77 0.88                                                  
## 172 0.71 0.70 0.86 0.79 0.61 0.85                                             
## 173 1.00 1.00 1.00 1.00 0.93 1.00 0.91                                        
## 174 0.93 0.73 0.71 0.77 0.80 1.00 1.00 1.00                                   
## 175 0.55 0.89 1.00 0.87 0.81 0.88 0.86 1.00 1.00                              
## 176 0.84 0.56 0.77 0.56 0.61 0.85 0.78 1.00 0.64 1.00                         
## 177 0.80 0.62 0.80 0.64 0.69 0.78 0.94 1.00 0.78 0.80 0.62                    
## 178 0.59 0.60 0.71 0.68 0.41 1.00 0.59 0.92 0.79 0.80 0.74 0.82               
## 179 0.59 0.60 0.71 0.61 0.71 0.79 0.67 1.00 0.87 0.71 0.67 0.67 0.56          
## 180 0.83 0.61 0.75 0.43 0.59 0.92 0.83 1.00 0.83 0.93 0.60 0.69 0.56 0.56     
## 181 0.86 0.82 1.00 0.79 0.81 0.71 0.77 1.00 0.88 0.75 0.77 0.80 0.88 0.80 0.93
## 182 0.56 0.57 0.89 0.41 0.47 0.81 0.76 0.93 0.73 0.67 0.56 0.62 0.60 0.60 0.61
## 183 0.86 0.75 0.75 0.69 0.81 1.00 0.86 1.00 0.50 1.00 0.67 0.91 0.71 0.88 0.85
## 184 0.93 0.67 0.75 0.79 0.64 0.71 0.67 1.00 0.88 1.00 0.77 0.80 0.88 0.88 0.85
## 185 0.67 0.53 0.80 0.61 0.65 0.87 0.67 0.92 0.94 0.71 0.80 0.82 0.56 0.56 0.65
## 186 0.68 0.29 0.64 0.47 0.44 0.80 0.75 1.00 0.80 0.88 0.44 0.50 0.58 0.58 0.50
## 187 0.91 1.00 1.00 0.92 0.93 1.00 1.00 1.00 1.00 0.80 1.00 1.00 0.92 0.92 0.90
## 188 0.62 0.63 0.77 0.72 0.44 0.85 0.53 0.91 0.93 0.67 0.84 0.80 0.59 0.74 0.76
## 189 0.76 0.53 0.75 0.62 0.50 0.92 0.76 1.00 0.73 0.85 0.69 0.69 0.56 0.72 0.57
## 190 0.73 0.65 0.70 0.67 0.71 0.91 0.73 1.00 0.91 0.92 0.54 0.75 0.69 0.76 0.71
## 191 0.79 0.65 0.87 0.67 0.63 0.86 0.47 0.92 0.86 0.94 0.56 0.88 0.61 0.68 0.62
## 192 0.82 0.87 0.83 1.00 0.86 1.00 1.00 1.00 1.00 0.83 1.00 0.88 0.85 0.93 0.91
## 193 0.86 0.82 1.00 0.87 0.94 0.88 0.77 0.80 0.88 0.75 0.93 0.91 0.88 0.80 0.93
## 194 0.72 0.58 0.94 0.74 0.63 0.86 0.56 0.92 0.86 0.79 0.65 0.88 0.53 0.75 0.78
## 195 0.88 0.47 0.56 0.75 0.71 0.91 0.88 1.00 0.67 0.92 0.64 0.75 0.69 0.69 0.62
## 196 0.94 0.83 0.90 0.71 0.82 1.00 0.69 1.00 0.89 0.90 0.79 0.82 0.73 0.73 0.55
## 197 0.57 0.74 0.92 0.69 0.79 0.82 0.57 1.00 0.92 0.73 0.75 0.93 0.62 0.62 0.81
## 198 0.62 0.71 0.91 0.73 0.60 0.90 0.71 1.00 1.00 0.80 0.88 0.83 0.75 0.89 0.69
## 199 0.88 0.56 0.82 0.67 0.78 0.67 0.64 0.88 0.91 0.92 0.81 0.75 0.69 0.60 0.71
## 200 0.55 0.82 0.89 0.79 0.81 0.88 0.77 1.00 1.00 0.75 0.93 0.91 0.71 0.80 0.93
## 201 0.67 0.67 0.83 0.60 0.79 0.82 0.82 1.00 0.82 0.73 0.82 0.77 0.78 0.53 0.64
## 202 0.56 0.65 0.79 0.67 0.63 0.86 0.56 1.00 0.93 0.87 0.65 0.94 0.53 0.53 0.62
## 203 0.53 0.63 0.86 0.72 0.61 0.85 0.78 1.00 0.85 0.77 0.62 0.62 0.59 0.40 0.60
## 204 0.81 0.56 0.82 0.57 0.78 0.67 0.73 1.00 0.91 0.82 0.81 0.75 0.69 0.50 0.62
## 205 1.00 0.93 0.80 0.92 0.93 1.00 1.00 1.00 0.75 1.00 0.91 0.86 0.92 0.92 0.90
## 206 0.93 0.73 0.71 0.67 0.80 1.00 1.00 1.00 0.40 1.00 0.64 0.62 0.87 0.87 0.73
## 207 0.77 0.89 1.00 0.79 0.81 0.88 0.67 1.00 1.00 0.75 0.86 0.91 0.71 0.80 0.85
## 208 0.50 0.44 0.80 0.61 0.58 0.79 0.67 1.00 0.87 0.80 0.59 0.67 0.76 0.70 0.79
## 209 0.82 0.74 0.92 0.69 0.79 0.82 0.57 0.89 0.92 0.92 0.75 0.86 0.71 0.62 0.64
## 210 0.82 0.59 0.73 0.38 0.79 0.82 0.75 1.00 0.70 0.92 0.57 0.77 0.62 0.62 0.64
## 211 0.50 0.68 0.75 0.71 0.67 0.83 0.60 1.00 0.92 0.85 0.69 0.87 0.65 0.65 0.82
## 212 0.75 0.67 0.73 0.76 0.56 1.00 0.82 0.89 0.70 0.92 0.67 0.67 0.53 0.62 0.54
## 213 0.65 0.50 0.79 0.74 0.56 0.86 0.47 0.92 0.77 0.94 0.72 0.88 0.44 0.61 0.78
## 214 0.63 0.42 0.82 0.58 0.55 0.81 0.63 0.93 0.81 0.75 0.63 0.53 0.53 0.44 0.61
## 215 0.76 0.81 0.85 0.71 0.59 0.83 0.69 0.90 0.92 0.85 0.60 0.79 0.56 0.47 0.57
## 216 0.83 0.88 0.67 0.93 0.79 1.00 0.92 1.00 1.00 0.86 0.92 1.00 0.86 0.86 0.82
##      181  182  183  184  185  186  187  188  189  190  191  192  193  194  195
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182 0.75                                                                      
## 183 0.75 0.75                                                                 
## 184 0.89 0.89 1.00                                                            
## 185 0.80 0.60 0.88 0.88                                                       
## 186 0.81 0.55 0.73 0.73 0.58                                                  
## 187 1.00 0.93 1.00 1.00 0.92 1.00                                             
## 188 0.77 0.56 0.93 0.67 0.59 0.61 1.00                                        
## 189 1.00 0.61 0.85 0.64 0.65 0.59 0.90 0.69                                   
## 190 0.92 0.72 0.82 0.82 0.76 0.53 1.00 0.73 0.80                              
## 191 0.94 0.58 0.87 0.69 0.68 0.63 1.00 0.56 0.53 0.67                         
## 192 1.00 0.94 1.00 1.00 0.85 0.86 1.00 0.82 0.91 0.89 1.00                    
## 193 0.75 0.75 0.89 1.00 0.71 0.94 1.00 0.77 0.93 1.00 0.79 1.00               
## 194 0.69 0.58 0.79 0.87 0.44 0.63 1.00 0.56 0.71 0.67 0.50 0.92 0.69          
## 195 0.92 0.72 0.82 0.82 0.60 0.62 1.00 0.73 0.62 0.67 0.75 0.75 0.82 0.67     
## 196 0.90 0.76 0.78 0.90 0.81 0.75 1.00 0.79 0.67 0.92 0.62 1.00 0.78 0.80 0.83
## 197 0.73 0.67 0.73 0.92 0.71 0.65 1.00 0.67 0.88 0.69 0.60 1.00 0.83 0.50 0.94
## 198 0.91 0.71 0.91 0.80 0.82 0.69 1.00 0.50 0.79 0.75 0.73 0.71 0.91 0.81 0.85
## 199 0.82 0.79 0.92 0.70 0.60 0.62 1.00 0.73 0.80 0.77 0.67 1.00 0.70 0.67 0.77
## 200 1.00 0.82 0.89 0.89 0.80 0.88 0.80 0.86 0.75 0.70 0.87 0.83 1.00 0.87 0.92
## 201 0.83 0.59 0.83 0.92 0.62 0.79 0.89 0.75 0.64 1.00 0.76 0.90 0.60 0.83 0.69
## 202 0.87 0.65 0.79 0.87 0.53 0.63 0.92 0.72 0.62 0.67 0.50 0.92 0.94 0.59 0.75
## 203 0.77 0.63 0.86 0.93 0.67 0.61 0.91 0.84 0.69 0.88 0.79 0.92 0.86 0.72 0.81
## 204 0.82 0.79 0.92 0.70 0.60 0.62 0.88 0.81 0.71 0.77 0.75 1.00 0.82 0.75 0.77
## 205 1.00 0.93 1.00 0.80 1.00 0.93 1.00 0.91 0.90 0.88 0.92 1.00 1.00 1.00 0.88
## 206 0.88 0.73 0.71 0.88 0.94 0.80 1.00 0.93 0.83 0.80 0.93 1.00 0.88 0.93 0.67
## 207 0.57 0.82 0.89 0.89 0.80 0.81 1.00 0.67 0.93 0.82 0.79 1.00 0.89 0.58 1.00
## 208 0.71 0.53 0.71 0.80 0.63 0.41 1.00 0.59 0.72 0.69 0.68 0.85 0.80 0.68 0.76
## 209 1.00 0.67 1.00 0.73 0.71 0.79 1.00 0.67 0.64 0.79 0.25 1.00 0.73 0.69 0.79
## 210 0.73 0.67 0.60 0.83 0.71 0.56 1.00 0.75 0.81 0.58 0.69 1.00 0.83 0.60 0.69
## 211 0.75 0.68 0.75 0.85 0.65 0.59 1.00 0.60 0.75 0.71 0.62 0.91 0.93 0.62 0.88
## 212 0.92 0.59 0.83 0.92 0.71 0.65 1.00 0.75 0.64 0.87 0.69 0.90 0.83 0.76 0.69
## 213 0.79 0.71 0.69 0.79 0.61 0.70 1.00 0.72 0.71 0.89 0.67 0.92 0.79 0.59 0.75
## 214 0.82 0.42 0.82 0.82 0.53 0.39 1.00 0.63 0.61 0.72 0.58 0.94 0.75 0.58 0.72
## 215 0.75 0.61 0.93 0.85 0.65 0.67 0.90 0.69 0.82 0.71 0.62 0.91 0.93 0.71 0.80
## 216 1.00 0.94 1.00 0.86 0.77 0.87 0.67 0.83 0.82 0.90 0.93 0.75 1.00 0.93 0.78
##      196  197  198  199  200  201  202  203  204  205  206  207  208  209  210
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197 0.75                                                                      
## 198 0.70 0.77                                                                 
## 199 0.83 0.69 0.93                                                            
## 200 1.00 0.83 0.80 0.92                                                       
## 201 0.64 0.88 0.77 0.87 0.83                                                  
## 202 0.80 0.60 0.81 0.82 0.69 0.69                                             
## 203 0.79 0.75 0.88 0.81 0.86 0.57 0.56                                        
## 204 0.83 0.69 0.93 0.22 0.82 0.79 0.75 0.73                                   
## 205 1.00 1.00 1.00 0.88 1.00 1.00 1.00 1.00 0.88                              
## 206 0.89 1.00 0.90 0.91 1.00 0.82 1.00 0.85 0.91 0.75                         
## 207 0.78 0.44 0.80 0.82 0.89 0.92 0.79 0.77 0.82 1.00 1.00                    
## 208 0.81 0.71 0.57 0.83 0.80 0.62 0.61 0.67 0.83 1.00 0.87 0.88               
## 209 0.64 0.71 0.77 0.58 0.83 0.71 0.69 0.82 0.69 0.89 0.92 0.83 0.84          
## 210 0.75 0.50 0.86 0.58 0.83 0.80 0.76 0.82 0.58 0.89 0.70 0.60 0.78 0.71     
## 211 0.86 0.54 0.79 0.88 0.75 0.73 0.31 0.60 0.88 1.00 1.00 0.64 0.47 0.81 0.73
## 212 0.75 0.88 0.86 0.79 1.00 0.71 0.69 0.46 0.87 0.89 0.70 0.92 0.78 0.71 0.88
## 213 0.80 0.69 0.81 0.67 0.79 0.69 0.59 0.56 0.75 1.00 0.86 0.79 0.68 0.69 0.69
## 214 0.69 0.59 0.78 0.47 0.89 0.74 0.71 0.56 0.56 0.93 0.81 0.82 0.60 0.59 0.67
## 215 0.86 0.73 0.87 0.71 0.85 0.81 0.53 0.60 0.71 0.90 0.92 0.75 0.79 0.64 0.73
## 216 1.00 1.00 0.89 1.00 0.86 0.80 0.75 0.83 0.90 1.00 1.00 1.00 0.86 1.00 1.00
##      211  212  213  214  215  216  217  218  219  220  221  222  223  224  225
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212 0.73                                                                      
## 213 0.62 0.60                                                                 
## 214 0.75 0.50 0.58                                                            
## 215 0.67 0.64 0.71 0.68                                                       
## 216 0.82 0.91 0.93 1.00 0.82                                                  
##      226  227  228  229  230  231  232  233  234  235  236  237  238  239  240
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      241  242  243  244  245  246  247  248  249  250  251  252  253  254  255
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      256  257  258  259  260  261  262  263  264  265  266  267  268  269  270
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      271  272  273  274  275  276  277  278  279  280  281  282  283  284  285
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      286  287  288  289  290  291  292  293  294  295  296  297  298  299  300
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      301  302  303  304  305  306  307  308  309  310  311  312  313  314  315
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      316  317  318  319  320  321  322  323  324  325  326  327  328  329  330
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      331  332  333  334  335  336  337  338  339  340  341  342  343  344  345
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      346  347  348  349  350  351  352  353  354  355  356  357  358  359  360
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      361  362  363  364  365  366  367  368  369  370  371  372  373  374  375
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      376  377  378  379  380  381  382  383  384  385  386  387  388  389  390
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      391  392  393  394  395  396  397  398  399  400  401  402  403  404  405
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      406  407  408  409  410  411  412  413  414  415  416  417  418  419  420
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      421  422  423  424  425  426  427  428  429  430  431  432  433  434  435
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      436  437  438  439  440  441  442  443  444  445  446  447  448  449  450
## 2                                                                             
## 3                                                                             
## 4                                                                             
## 5                                                                             
## 6                                                                             
## 7                                                                             
## 8                                                                             
## 9                                                                             
## 10                                                                            
## 11                                                                            
## 12                                                                            
## 13                                                                            
## 14                                                                            
## 15                                                                            
## 16                                                                            
## 17                                                                            
## 18                                                                            
## 19                                                                            
## 20                                                                            
## 21                                                                            
## 22                                                                            
## 23                                                                            
## 24                                                                            
## 25                                                                            
## 26                                                                            
## 27                                                                            
## 28                                                                            
## 29                                                                            
## 30                                                                            
## 31                                                                            
## 32                                                                            
## 33                                                                            
## 34                                                                            
## 35                                                                            
## 36                                                                            
## 37                                                                            
## 38                                                                            
## 39                                                                            
## 40                                                                            
## 41                                                                            
## 42                                                                            
## 43                                                                            
## 44                                                                            
## 45                                                                            
## 46                                                                            
## 47                                                                            
## 48                                                                            
## 49                                                                            
## 50                                                                            
## 51                                                                            
## 52                                                                            
## 53                                                                            
## 54                                                                            
## 55                                                                            
## 56                                                                            
## 57                                                                            
## 58                                                                            
## 59                                                                            
## 60                                                                            
## 61                                                                            
## 62                                                                            
## 63                                                                            
## 64                                                                            
## 65                                                                            
## 66                                                                            
## 67                                                                            
## 68                                                                            
## 69                                                                            
## 70                                                                            
## 71                                                                            
## 72                                                                            
## 73                                                                            
## 74                                                                            
## 75                                                                            
## 76                                                                            
## 77                                                                            
## 78                                                                            
## 79                                                                            
## 80                                                                            
## 81                                                                            
## 82                                                                            
## 83                                                                            
## 84                                                                            
## 85                                                                            
## 86                                                                            
## 87                                                                            
## 88                                                                            
## 89                                                                            
## 90                                                                            
## 91                                                                            
## 92                                                                            
## 93                                                                            
## 94                                                                            
## 95                                                                            
## 96                                                                            
## 97                                                                            
## 98                                                                            
## 99                                                                            
## 100                                                                           
## 101                                                                           
## 102                                                                           
## 103                                                                           
## 104                                                                           
## 105                                                                           
## 106                                                                           
## 107                                                                           
## 108                                                                           
## 109                                                                           
## 110                                                                           
## 111                                                                           
## 112                                                                           
## 113                                                                           
## 114                                                                           
## 115                                                                           
## 116                                                                           
## 117                                                                           
## 118                                                                           
## 119                                                                           
## 120                                                                           
## 121                                                                           
## 122                                                                           
## 123                                                                           
## 124                                                                           
## 125                                                                           
## 126                                                                           
## 127                                                                           
## 128                                                                           
## 129                                                                           
## 130                                                                           
## 131                                                                           
## 132                                                                           
## 133                                                                           
## 134                                                                           
## 135                                                                           
## 136                                                                           
## 137                                                                           
## 138                                                                           
## 139                                                                           
## 140                                                                           
## 141                                                                           
## 142                                                                           
## 143                                                                           
## 144                                                                           
## 145                                                                           
## 146                                                                           
## 147                                                                           
## 148                                                                           
## 149                                                                           
## 150                                                                           
## 151                                                                           
## 152                                                                           
## 153                                                                           
## 154                                                                           
## 155                                                                           
## 156                                                                           
## 157                                                                           
## 158                                                                           
## 159                                                                           
## 160                                                                           
## 161                                                                           
## 162                                                                           
## 163                                                                           
## 164                                                                           
## 165                                                                           
## 166                                                                           
## 167                                                                           
## 168                                                                           
## 169                                                                           
## 170                                                                           
## 171                                                                           
## 172                                                                           
## 173                                                                           
## 174                                                                           
## 175                                                                           
## 176                                                                           
## 177                                                                           
## 178                                                                           
## 179                                                                           
## 180                                                                           
## 181                                                                           
## 182                                                                           
## 183                                                                           
## 184                                                                           
## 185                                                                           
## 186                                                                           
## 187                                                                           
## 188                                                                           
## 189                                                                           
## 190                                                                           
## 191                                                                           
## 192                                                                           
## 193                                                                           
## 194                                                                           
## 195                                                                           
## 196                                                                           
## 197                                                                           
## 198                                                                           
## 199                                                                           
## 200                                                                           
## 201                                                                           
## 202                                                                           
## 203                                                                           
## 204                                                                           
## 205                                                                           
## 206                                                                           
## 207                                                                           
## 208                                                                           
## 209                                                                           
## 210                                                                           
## 211                                                                           
## 212                                                                           
## 213                                                                           
## 214                                                                           
## 215                                                                           
## 216                                                                           
##      451  452  453  454  455  456  457  458  459  460  461  462  463
## 2                                                                   
## 3                                                                   
## 4                                                                   
## 5                                                                   
## 6                                                                   
## 7                                                                   
## 8                                                                   
## 9                                                                   
## 10                                                                  
## 11                                                                  
## 12                                                                  
## 13                                                                  
## 14                                                                  
## 15                                                                  
## 16                                                                  
## 17                                                                  
## 18                                                                  
## 19                                                                  
## 20                                                                  
## 21                                                                  
## 22                                                                  
## 23                                                                  
## 24                                                                  
## 25                                                                  
## 26                                                                  
## 27                                                                  
## 28                                                                  
## 29                                                                  
## 30                                                                  
## 31                                                                  
## 32                                                                  
## 33                                                                  
## 34                                                                  
## 35                                                                  
## 36                                                                  
## 37                                                                  
## 38                                                                  
## 39                                                                  
## 40                                                                  
## 41                                                                  
## 42                                                                  
## 43                                                                  
## 44                                                                  
## 45                                                                  
## 46                                                                  
## 47                                                                  
## 48                                                                  
## 49                                                                  
## 50                                                                  
## 51                                                                  
## 52                                                                  
## 53                                                                  
## 54                                                                  
## 55                                                                  
## 56                                                                  
## 57                                                                  
## 58                                                                  
## 59                                                                  
## 60                                                                  
## 61                                                                  
## 62                                                                  
## 63                                                                  
## 64                                                                  
## 65                                                                  
## 66                                                                  
## 67                                                                  
## 68                                                                  
## 69                                                                  
## 70                                                                  
## 71                                                                  
## 72                                                                  
## 73                                                                  
## 74                                                                  
## 75                                                                  
## 76                                                                  
## 77                                                                  
## 78                                                                  
## 79                                                                  
## 80                                                                  
## 81                                                                  
## 82                                                                  
## 83                                                                  
## 84                                                                  
## 85                                                                  
## 86                                                                  
## 87                                                                  
## 88                                                                  
## 89                                                                  
## 90                                                                  
## 91                                                                  
## 92                                                                  
## 93                                                                  
## 94                                                                  
## 95                                                                  
## 96                                                                  
## 97                                                                  
## 98                                                                  
## 99                                                                  
## 100                                                                 
## 101                                                                 
## 102                                                                 
## 103                                                                 
## 104                                                                 
## 105                                                                 
## 106                                                                 
## 107                                                                 
## 108                                                                 
## 109                                                                 
## 110                                                                 
## 111                                                                 
## 112                                                                 
## 113                                                                 
## 114                                                                 
## 115                                                                 
## 116                                                                 
## 117                                                                 
## 118                                                                 
## 119                                                                 
## 120                                                                 
## 121                                                                 
## 122                                                                 
## 123                                                                 
## 124                                                                 
## 125                                                                 
## 126                                                                 
## 127                                                                 
## 128                                                                 
## 129                                                                 
## 130                                                                 
## 131                                                                 
## 132                                                                 
## 133                                                                 
## 134                                                                 
## 135                                                                 
## 136                                                                 
## 137                                                                 
## 138                                                                 
## 139                                                                 
## 140                                                                 
## 141                                                                 
## 142                                                                 
## 143                                                                 
## 144                                                                 
## 145                                                                 
## 146                                                                 
## 147                                                                 
## 148                                                                 
## 149                                                                 
## 150                                                                 
## 151                                                                 
## 152                                                                 
## 153                                                                 
## 154                                                                 
## 155                                                                 
## 156                                                                 
## 157                                                                 
## 158                                                                 
## 159                                                                 
## 160                                                                 
## 161                                                                 
## 162                                                                 
## 163                                                                 
## 164                                                                 
## 165                                                                 
## 166                                                                 
## 167                                                                 
## 168                                                                 
## 169                                                                 
## 170                                                                 
## 171                                                                 
## 172                                                                 
## 173                                                                 
## 174                                                                 
## 175                                                                 
## 176                                                                 
## 177                                                                 
## 178                                                                 
## 179                                                                 
## 180                                                                 
## 181                                                                 
## 182                                                                 
## 183                                                                 
## 184                                                                 
## 185                                                                 
## 186                                                                 
## 187                                                                 
## 188                                                                 
## 189                                                                 
## 190                                                                 
## 191                                                                 
## 192                                                                 
## 193                                                                 
## 194                                                                 
## 195                                                                 
## 196                                                                 
## 197                                                                 
## 198                                                                 
## 199                                                                 
## 200                                                                 
## 201                                                                 
## 202                                                                 
## 203                                                                 
## 204                                                                 
## 205                                                                 
## 206                                                                 
## 207                                                                 
## 208                                                                 
## 209                                                                 
## 210                                                                 
## 211                                                                 
## 212                                                                 
## 213                                                                 
## 214                                                                 
## 215                                                                 
## 216                                                                 
##  [ osiągnięto getOption("max.print") -- pominięto 248 wierszy]

Hierarchical clustering

At this stage, I wanted to visualize how the selected items are related to each other by creating a dendrogram. The dendrogram provides a hierarchical clustering representation based on the item-based dissimilarity matrix, where items are grouped together step by step according to their similarities. This visualization helps to identify clusters of items that are frequently purchased together or share common transaction patterns, offering deeper insights into their relationships.

plot(hclust(d.jac.i, method="ward.D2"), main="Dendrogram for items")

Some of the branches in the dendrogram align well with expectations, such as butter and cheese or milk and heavy cream, as these items are often associated with similar purchasing patterns. However, some surprising outcomes occurred like pairing of items like carrots and toothpaste, which seems unusual and may indicate an unexpected buying habit or a coincidental pattern in the dataset.

Two additional graphs were created to provide a clearer view of the patterns within the association rules. The first is a grouped matrix plot and the second one is a graph-based visualization that highlights the relationships between items, showcasing how they interact and which items are central to the associations.

library(arulesViz)
## Warning: pakiet 'arulesViz' został zbudowany w wersji R 4.4.2
plot(rules, method="grouped") 

plot(rules, method="graph", control=list(type="items"))
## Warning: Unknown control parameters: type
## Available control parameters (with default values):
## layout    =  stress
## circular  =  FALSE
## ggraphdots    =  NULL
## edges     =  <environment>
## nodes     =  <environment>
## nodetext  =  <environment>
## colors    =  c("#EE0000FF", "#EEEEEEFF")
## engine    =  ggplot2
## max   =  100
## verbose   =  FALSE

Conclusion

Central items like bacon and butter are key products that often co-occur with others, making them influential in the dataset. Peripheral items like carrot and olive are less connected and may appear in fewer association rules or transactions. These findings highlight the potential for using association rules to inform business decisions, such as optimizing product placement or creating targeted promotions.