016_SupervisedClustering_DecisionTrees_HandWrittenDigitRecognition(Scala)

Supervised Clustering with Decision Trees

Visual Introduction to decision trees and application to hand-written digit recognition

SOURCE: This is just a couple of decorations on a notebook published in databricks community edition in 2016.

Decision Trees for handwritten digit recognition

This notebook demonstrates learning a Decision Tree using Spark's distributed implementation. It gives the reader a better understanding of some critical hyperparameters for the tree learning algorithm, using examples to demonstrate how tuning the hyperparameters can improve accuracy.

Background: To learn more about Decision Trees, check out the resources at the end of this notebook. The visual description of ML and Decision Trees provides nice intuition helpful to understand this notebook, and Wikipedia gives lots of details.

Data: We use the classic MNIST handwritten digit recognition dataset. It is from LeCun et al. (1998) and may be found under "mnist" at the LibSVM dataset page.

Goal: Our goal for our data is to learn how to recognize digits (0 - 9) from images of handwriting. However, we will focus on understanding trees, not on this particular learning problem.

Takeaways: Decision Trees take several hyperparameters which can affect the accuracy of the learned model. There is no one "best" setting for these for all datasets. To get the optimal accuracy, we need to tune these hyperparameters based on our data.

Let's Build Intuition for Learning with Decision Trees

Show code

Load MNIST training and test datasets

Our datasets are vectors of pixels representing images of handwritten digits. For example:

Image of a digit Image of all 10 digits

These datasets are stored in the popular LibSVM dataset format. We will load them using MLlib's LibSVM dataset reader utility.

//-----------------------------------------------------------------------------------------------------------------
// using RDD-based MLlib - ok for Spark 1.x
// MLUtils.loadLibSVMFile returns an RDD.
//import org.apache.spark.mllib.util.MLUtils
//val trainingRDD = MLUtils.loadLibSVMFile(sc, "/databricks-datasets/mnist-digits/data-001/mnist-digits-train.txt")
//val testRDD = MLUtils.loadLibSVMFile(sc, "/databricks-datasets/mnist-digits/data-001/mnist-digits-test.txt")
// We convert the RDDs to DataFrames to use with ML Pipelines.
//val training = trainingRDD.toDF()
//val test = testRDD.toDF()
// Note: In Spark 1.6 and later versions, Spark SQL has a LibSVM data source.  The above lines can be simplified to:
//// val training = sqlContext.read.format("libsvm").load("/mnt/mllib/mnist-digits-csv/mnist-digits-train.txt")
//// val test = sqlContext.read.format("libsvm").load("/mnt/mllib/mnist-digits-csv/mnist-digits-test.txt")
//-----------------------------------------------------------------------------------------------------------------
val training = spark.read.format("libsvm")
                    .option("numFeatures", "780")
                    .load("/databricks-datasets/mnist-digits/data-001/mnist-digits-train.txt")

val test = spark.read.format("libsvm")
                    .option("numFeatures", "780")
                    .load("/databricks-datasets/mnist-digits/data-001/mnist-digits-test.txt")
// Cache data for multiple uses.
training.cache()
test.cache()

println(s"We have ${training.count} training images and ${test.count} test images.")
We have 60000 training images and 10000 test images. training: org.apache.spark.sql.DataFrame = [label: double, features: vector] test: org.apache.spark.sql.DataFrame = [label: double, features: vector]

Display our data. Each image has the true label (the label column) and a vector of features which represent pixel intensities (see below for details of what is in training).

training.printSchema()
root |-- label: double (nullable = true) |-- features: vector (nullable = true)
training.show(3) // replace 'true' by 'false' to see the whole row hidden by '...'
+-----+--------------------+ |label| features| +-----+--------------------+ | 5.0|(780,[152,153,154...| | 0.0|(780,[127,128,129...| | 4.0|(780,[160,161,162...| +-----+--------------------+ only showing top 3 rows
display(training) // this is databricks-specific for interactive visual convenience
5[0,780,[152,153,154,155,156,157,158,159,160,161,162,163,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,231,232,233,234,235,236,237,238,239,240,241,260,261,262,263,264,265,266,268,269,289,290,291,292,293,319,320,321,322,347,348,349,350,376,377,378,379,380,381,405,406,407,408,409,410,434,435,436,437,438,439,463,464,465,466,467,493,494,495,496,518,519,520,521,522,523,524,544,545,546,547,548,549,550,551,570,571,572,573,574,575,576,577,578,596,597,598,599,600,601,602,603,604,605,622,623,624,625,626,627,628,629,630,631,648,649,650,651,652,653,654,655,656,657,676,677,678,679,680,681,682,683],[3,18,18,18,126,136,175,26,166,255,247,127,30,36,94,154,170,253,253,253,253,253,225,172,253,242,195,64,49,238,253,253,253,253,253,253,253,253,251,93,82,82,56,39,18,219,253,253,253,253,253,198,182,247,241,80,156,107,253,253,205,11,43,154,14,1,154,253,90,139,253,190,2,11,190,253,70,35,241,225,160,108,1,81,240,253,253,119,25,45,186,253,253,150,27,16,93,252,253,187,249,253,249,64,46,130,183,253,253,207,2,39,148,229,253,253,253,250,182,24,114,221,253,253,253,253,201,78,23,66,213,253,253,253,253,198,81,2,18,171,219,253,253,253,253,195,80,9,55,172,226,253,253,253,253,244,133,11,136,253,253,253,212,135,132,16]]
0[0,780,[127,128,129,130,131,154,155,156,157,158,159,181,182,183,184,185,186,187,188,189,207,208,209,210,211,212,213,214,215,216,217,235,236,237,238,239,240,241,242,243,244,245,262,263,264,265,266,267,268,269,270,271,272,273,289,290,291,292,293,294,295,296,297,300,301,302,316,317,318,319,320,321,328,329,330,343,344,345,346,347,348,349,356,357,358,371,372,373,374,384,385,386,399,400,401,412,413,414,426,427,428,429,440,441,442,454,455,456,457,466,467,468,469,470,482,483,484,493,494,495,496,497,510,511,512,520,521,522,523,538,539,540,547,548,549,550,566,567,568,569,570,571,572,573,574,575,576,577,578,594,595,596,597,598,599,600,601,602,603,604,622,623,624,625,626,627,628,629,630,651,652,653,654,655,656,657],[51,159,253,159,50,48,238,252,252,252,237,54,227,253,252,239,233,252,57,6,10,60,224,252,253,252,202,84,252,253,122,163,252,252,252,253,252,252,96,189,253,167,51,238,253,253,190,114,253,228,47,79,255,168,48,238,252,252,179,12,75,121,21,253,243,50,38,165,253,233,208,84,253,252,165,7,178,252,240,71,19,28,253,252,195,57,252,252,63,253,252,195,198,253,190,255,253,196,76,246,252,112,253,252,148,85,252,230,25,7,135,253,186,12,85,252,223,7,131,252,225,71,85,252,145,48,165,252,173,86,253,225,114,238,253,162,85,252,249,146,48,29,85,178,225,253,223,167,56,85,252,252,252,229,215,252,252,252,196,130,28,199,252,252,253,252,252,233,145,25,128,252,253,252,141,37]]
4[0,780,[160,161,162,172,173,188,189,190,200,201,215,216,217,218,228,229,243,244,245,256,257,271,272,273,283,284,285,299,300,301,311,312,313,326,327,328,329,339,340,341,354,355,356,357,367,368,369,379,380,381,382,383,384,395,396,397,401,402,403,404,405,406,407,408,409,410,411,412,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,452,453,454,455,456,457,458,459,465,466,467,493,494,495,521,522,523,549,550,551,577,578,579,605,606,607,633,634,635,661,662,663,689,690,691],[67,232,39,62,81,120,180,39,126,163,2,153,210,40,220,163,27,254,162,222,163,183,254,125,46,245,163,198,254,56,120,254,163,23,231,254,29,159,254,120,163,254,216,16,159,254,67,14,86,178,248,254,91,159,254,85,47,49,116,144,150,241,243,234,179,241,252,40,150,253,237,207,207,207,253,254,250,240,198,143,91,28,5,233,250,119,177,177,177,177,177,98,56,102,254,220,169,254,137,169,254,57,169,254,57,169,255,94,169,254,96,169,254,153,169,255,153,96,254,153]]
1[0,780,[158,159,160,161,185,186,187,188,189,213,214,215,216,217,240,241,242,243,244,245,267,268,269,270,271,295,296,297,298,322,323,324,325,326,349,350,351,352,353,377,378,379,380,381,404,405,406,407,408,431,432,433,434,435,459,460,461,462,463,486,487,488,489,490,514,515,516,517,518,542,543,544,545,569,570,571,572,573,596,597,598,599,600,601,624,625,626,627,652,653,654,655,680,681,682,683],[124,253,255,63,96,244,251,253,62,127,251,251,253,62,68,236,251,211,31,8,60,228,251,251,94,155,253,253,189,20,253,251,235,66,32,205,253,251,126,104,251,253,184,15,80,240,251,193,23,32,253,253,253,159,151,251,251,251,39,48,221,251,251,172,234,251,251,196,12,253,251,251,89,159,255,253,253,31,48,228,253,247,140,8,64,251,253,220,64,251,253,220,24,193,253,220]]
9[0,780,[208,209,210,211,212,213,214,215,216,235,236,237,238,239,240,241,242,243,244,261,262,263,264,265,266,267,268,269,270,271,272,289,290,291,292,293,296,297,298,299,300,316,317,318,319,320,324,325,326,327,343,344,345,346,347,350,351,352,353,354,370,371,372,373,377,378,379,380,381,382,398,399,400,401,402,403,404,405,406,407,408,409,426,427,428,429,430,431,432,433,434,435,436,455,456,457,458,459,460,461,462,463,464,489,490,491,492,517,518,519,520,546,547,548,573,574,575,576,601,602,603,604,629,630,631,632,658,659,660,686,687,688,689,714,715,716,717,718,743,744,745,746],[55,148,210,253,253,113,87,148,55,87,232,252,253,189,210,252,252,253,168,4,57,242,252,190,65,5,12,182,252,253,116,96,252,252,183,14,92,252,252,225,21,132,253,252,146,14,215,252,252,79,126,253,247,176,9,8,78,245,253,129,16,232,252,176,36,201,252,252,169,11,22,252,252,30,22,119,197,241,253,252,251,77,16,231,252,253,252,252,252,226,227,252,231,55,235,253,217,138,42,24,192,252,143,62,255,253,109,71,253,252,21,253,252,21,71,253,252,21,106,253,252,21,45,255,253,21,218,252,56,96,252,189,42,14,184,252,170,11,14,147,252,42]]
2[0,780,[155,156,157,158,159,181,182,183,184,185,186,187,207,208,209,210,211,212,213,214,215,216,233,234,235,236,237,238,239,240,241,242,243,244,261,262,263,264,265,266,267,269,270,271,272,289,290,291,292,293,294,297,298,299,300,317,318,319,320,325,326,327,328,353,354,355,356,377,378,379,380,381,382,383,384,402,403,404,405,406,407,408,409,410,411,428,429,430,431,432,433,434,435,436,437,438,439,440,455,456,457,458,459,460,462,463,464,465,466,467,468,469,482,483,484,485,486,487,489,490,491,492,493,494,495,496,497,498,499,500,509,510,511,512,513,514,516,517,518,519,520,522,523,524,525,526,527,528,537,538,539,540,541,542,543,544,545,546,547,553,554,555,556,565,566,567,568,569,570,571,572,573,574,593,594,595,596,597,598,599,600,601,621,622,623,624,625,626],[13,25,100,122,7,33,151,208,252,252,252,146,40,152,244,252,253,224,211,252,232,40,15,152,239,252,252,252,216,31,37,252,252,60,96,252,252,252,252,217,29,37,252,252,60,181,252,252,220,167,30,77,252,252,60,26,128,58,22,100,252,252,60,157,252,252,60,110,121,122,121,202,252,194,3,10,53,179,253,253,255,253,253,228,35,5,54,227,252,243,228,170,242,252,252,231,117,6,6,78,252,252,125,59,18,208,252,252,252,252,87,7,5,135,252,252,180,16,21,203,253,247,129,173,252,252,184,66,49,49,3,136,252,241,106,17,53,200,252,216,65,14,72,163,241,252,252,223,105,252,242,88,18,73,170,244,252,126,29,89,180,180,37,231,252,245,205,216,252,252,252,124,3,207,252,252,252,252,178,116,36,4,13,93,143,121,23,6]]
1[0,780,[124,125,126,127,151,152,153,154,155,179,180,181,182,183,208,209,210,211,235,236,237,238,239,263,264,265,266,267,268,292,293,294,295,296,321,322,323,324,349,350,351,352,377,378,379,380,405,406,407,408,433,434,435,436,461,462,463,464,489,490,491,492,493,517,518,519,520,521,545,546,547,548,549,574,575,576,577,578,602,603,604,605,606,630,631,632,633,634,658,659,660,661,662],[145,255,211,31,32,237,253,252,71,11,175,253,252,71,144,253,252,71,16,191,253,252,71,26,221,253,252,124,31,125,253,252,252,108,253,252,252,108,255,253,253,108,253,252,252,108,253,252,252,108,253,252,252,108,255,253,253,170,253,252,252,252,42,149,252,252,252,144,109,252,252,252,144,218,253,253,255,35,175,252,252,253,35,73,252,252,253,35,31,211,252,253,35]]
3[0,780,[151,152,153,154,155,156,157,158,159,160,161,177,178,179,180,181,182,183,184,185,186,187,188,189,190,205,206,207,208,209,210,211,212,213,214,215,216,217,218,233,234,235,236,237,238,239,240,241,242,243,244,245,246,261,262,263,264,269,270,271,272,273,274,297,298,299,300,301,324,325,326,327,328,329,350,351,352,353,354,355,356,357,373,374,375,376,377,378,379,380,381,382,383,384,400,401,402,403,404,405,406,407,408,409,410,428,429,430,431,432,433,434,435,436,437,438,439,457,458,459,460,461,462,463,464,465,466,467,492,493,494,495,520,521,522,523,538,539,540,547,548,549,550,551,565,566,567,568,573,574,575,576,577,578,579,593,594,595,596,597,598,599,600,601,602,603,604,605,606,621,622,623,624,625,626,627,628,629,630,631,632,633,649,650,651,652,653,654,655,656,657,658,659,678,679,680,681,682,683,684],[38,43,105,255,253,253,253,253,253,174,6,43,139,224,226,252,253,252,252,252,252,252,252,158,14,178,252,252,252,252,253,252,252,252,252,252,252,252,59,109,252,252,230,132,133,132,132,189,252,252,252,252,59,4,29,29,24,14,226,252,252,172,7,85,243,252,252,144,88,189,252,252,252,14,91,212,247,252,252,252,204,9,32,125,193,193,193,253,252,252,252,238,102,28,45,222,252,252,252,252,253,252,252,252,177,45,223,253,253,253,253,255,253,253,253,253,74,31,123,52,44,44,44,44,143,252,252,74,15,252,252,74,86,252,252,74,5,75,9,98,242,252,252,74,61,183,252,29,18,92,239,252,252,243,65,208,252,252,147,134,134,134,134,203,253,252,252,188,83,208,252,252,252,252,252,252,252,252,253,230,153,8,49,157,252,252,252,252,252,217,207,146,45,7,103,235,252,172,103,24]]
1[0,780,[152,153,154,180,181,182,183,208,209,210,211,236,237,238,239,264,265,266,267,292,293,294,295,320,321,322,323,349,350,351,377,378,379,405,406,407,433,434,435,461,462,463,489,490,491,492,517,518,519,520,546,547,548,574,575,576,602,603,604,630,631,632,658,659,660,686,687,688],[5,63,197,20,254,230,24,20,254,254,48,20,254,255,48,20,254,254,57,20,254,254,108,16,239,254,143,178,254,143,178,254,143,178,254,162,178,254,240,113,254,240,83,254,245,31,79,254,246,38,214,254,150,144,241,8,144,240,2,144,254,82,230,247,40,168,209,31]]
4[0,780,[134,135,161,162,163,188,189,190,191,216,217,218,236,237,238,243,244,245,246,264,265,266,271,272,273,292,293,294,298,299,300,301,319,320,321,322,325,326,327,328,329,346,347,348,349,353,354,355,373,374,375,376,380,381,382,383,399,400,401,402,403,404,405,406,407,408,409,410,427,428,429,430,431,432,433,434,435,436,437,454,455,456,457,458,459,460,461,462,463,464,465,466,467,482,483,484,488,489,490,491,492,493,494,510,511,516,517,518,519,520,521,522,543,544,545,546,571,572,573,574,598,599,600,601,626,627,628,654,655,656],[189,190,143,247,153,136,247,242,86,192,252,187,62,185,18,89,236,217,47,216,253,60,212,255,81,206,252,68,48,242,253,89,131,251,212,21,11,167,252,197,5,29,232,247,63,153,252,226,45,219,252,143,116,249,252,103,4,96,253,255,253,200,122,7,25,201,250,158,92,252,252,253,217,252,252,200,227,252,231,87,251,247,231,65,48,189,252,252,253,252,251,227,35,190,221,98,42,196,252,253,252,252,162,111,29,62,239,252,86,42,42,14,15,148,253,218,121,252,231,28,31,221,251,129,218,252,160,122,252,82]]
3[0,780,[123,124,125,126,127,128,129,150,151,152,153,154,155,156,157,178,179,180,181,182,183,184,185,186,207,208,209,210,211,212,213,214,236,237,238,239,240,241,242,264,265,266,267,268,269,270,293,294,295,296,297,298,320,321,322,323,324,325,326,346,347,348,349,350,351,352,353,354,374,375,376,377,378,379,380,381,382,403,404,405,406,407,408,409,410,432,433,434,435,436,437,438,463,464,465,466,467,491,492,493,494,495,519,520,521,522,538,539,540,546,547,548,549,550,566,567,568,569,570,572,573,574,575,576,577,578,594,595,596,597,598,599,600,601,602,603,604,605,623,624,625,626,627,628,629,630,631,652,653,654,655,656,657,658,659],[42,118,219,166,118,118,6,103,242,254,254,254,254,254,66,18,232,254,254,254,254,254,238,70,104,244,254,224,254,254,254,141,207,254,210,254,254,254,34,84,206,254,254,254,254,41,24,209,254,254,254,171,91,137,253,254,254,254,112,40,214,250,254,254,254,254,254,34,81,247,254,254,254,254,254,254,146,110,246,254,254,254,254,254,171,73,89,89,93,240,254,171,1,128,254,219,31,7,254,254,214,28,138,254,254,116,19,177,90,25,240,254,254,34,164,254,215,63,36,51,89,206,254,254,139,8,57,197,254,254,222,180,241,254,254,253,213,11,140,105,254,254,254,254,254,254,236,7,117,117,165,254,254,239,50]]
5[0,780,[216,217,218,219,220,221,242,243,244,245,246,247,248,249,268,269,270,271,272,273,274,275,276,294,295,296,297,298,299,300,301,322,323,324,325,347,348,349,350,351,352,375,376,377,378,403,404,405,431,432,433,434,456,457,459,460,461,462,463,482,483,484,485,488,489,490,491,510,511,512,516,517,518,519,538,539,540,541,542,543,544,545,546,567,568,569,570,571,572,573,574],[31,40,129,234,234,159,68,150,239,254,253,253,253,215,156,201,254,254,254,241,150,98,8,19,154,254,236,203,83,39,30,144,253,145,12,10,129,222,78,79,8,134,253,167,8,255,254,78,201,253,226,69,55,6,18,128,253,241,41,25,205,235,92,20,253,253,58,231,245,108,132,253,185,14,121,245,254,254,254,217,254,223,50,116,165,233,233,234,180,39,3]]
3[0,780,[143,144,145,146,147,148,149,150,151,152,153,154,155,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,227,228,229,230,231,238,239,240,241,242,266,267,268,269,270,292,293,294,295,296,297,319,320,321,322,323,324,325,346,347,348,349,350,351,352,353,374,375,376,377,378,379,380,381,382,383,402,403,404,405,406,407,408,409,410,411,412,413,432,433,434,435,436,437,438,439,440,441,442,464,465,466,467,468,469,470,493,494,495,496,497,498,522,523,524,525,526,540,541,542,549,550,551,552,553,554,567,568,569,570,576,577,578,579,580,581,595,596,597,598,599,602,603,604,605,606,607,608,609,623,624,625,626,627,628,629,630,631,632,633,634,635,636,651,652,653,654,655,656,657,658,659,660,661,662,663,680,681,682,683,684,685,686,687,688,689],[12,99,91,142,155,246,182,155,155,155,155,131,52,138,254,254,254,254,254,254,254,254,254,254,254,252,210,122,33,220,254,254,254,235,189,189,189,189,150,189,205,254,254,254,75,35,74,35,35,25,13,224,254,254,153,90,254,254,247,53,6,152,246,254,254,49,66,158,254,254,249,103,8,54,251,254,254,254,248,74,5,140,254,254,254,254,254,254,202,125,45,58,181,234,254,254,254,254,254,254,252,140,22,30,50,73,155,253,254,254,254,254,191,2,91,200,254,254,254,254,118,4,192,254,254,254,154,141,254,254,254,116,25,126,86,3,188,254,254,250,61,24,209,254,15,23,137,254,254,254,209,168,254,254,48,9,9,127,241,254,254,255,242,63,101,254,254,254,205,190,190,205,254,254,254,254,242,67,33,166,254,254,254,254,254,254,254,254,250,138,55,7,88,154,116,194,194,154,154,88,49]]
6[0,780,[72,73,74,99,100,101,102,125,126,127,128,129,130,152,153,154,155,156,157,180,181,182,183,184,207,208,209,210,211,235,236,237,238,262,263,264,265,289,290,291,292,293,316,317,318,319,320,325,326,327,344,345,346,347,348,351,352,353,354,355,356,357,372,373,374,375,376,378,379,380,381,382,383,384,385,386,399,400,401,402,403,405,406,407,408,409,410,411,412,413,414,427,428,429,430,432,433,434,435,436,437,438,439,440,441,455,456,457,460,461,462,463,465,466,467,468,483,484,485,487,488,489,490,492,493,494,495,511,512,513,515,516,517,518,519,520,521,522,523,539,540,541,542,543,544,545,546,547,548,549,567,568,569,570,571,572,573,574,575,576,596,597,598,599,600,601,602,603],[38,222,225,147,234,252,176,23,197,253,252,208,19,38,178,252,253,117,65,57,252,252,253,89,38,222,253,253,79,131,252,179,27,198,246,220,37,79,253,252,135,28,16,140,253,252,118,111,140,140,13,191,255,253,56,114,113,222,253,253,255,27,76,252,253,223,37,48,174,252,252,242,214,253,199,31,13,109,252,228,130,38,165,253,233,164,49,63,253,214,31,73,252,252,126,23,178,252,240,148,7,44,215,240,148,119,252,252,197,252,252,63,57,252,252,140,135,253,174,48,229,253,112,38,222,253,112,135,252,173,48,227,252,158,226,234,201,27,12,57,252,252,57,104,240,252,252,253,233,74,51,242,252,253,252,252,252,252,240,148,75,189,253,252,252,157,112,63]]
1[0,780,[151,152,153,154,179,180,181,182,208,209,210,236,237,238,264,265,266,267,292,293,294,295,320,321,322,323,348,349,350,351,376,377,378,379,404,405,406,407,432,433,434,435,460,461,462,463,488,489,490,491,516,517,518,519,544,545,546,547,572,573,574,575,600,601,602,603,629,630,631,657,658,659,685,686,687],[1,168,242,28,10,228,254,100,190,254,122,83,254,162,29,254,248,25,29,255,254,103,29,254,254,109,29,254,254,109,29,254,254,109,29,255,254,109,29,254,254,109,29,254,254,63,29,254,254,28,29,254,254,28,29,254,254,35,29,254,254,109,6,212,254,109,203,254,178,155,254,190,32,199,104]]
7[0,780,[211,212,213,214,215,216,236,237,238,239,240,241,242,243,244,245,260,261,262,263,264,265,266,267,268,269,270,271,272,273,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,315,316,317,318,319,320,321,325,326,327,328,329,342,343,344,345,346,347,353,354,355,356,370,371,372,373,374,379,380,381,382,383,384,398,399,400,401,407,408,409,410,411,434,435,436,437,438,462,463,464,465,489,490,491,492,493,516,517,518,519,520,521,543,544,545,546,547,548,570,571,572,573,574,575,598,599,600,601,625,626,627,628,629,653,654,655,656,680,681,682,683,684,708,709,710,711,736,737,738],[115,121,162,253,253,213,63,107,170,251,252,252,252,252,250,214,25,192,226,226,241,252,253,202,252,252,252,252,252,225,68,223,252,252,252,252,252,39,19,39,65,224,252,252,183,186,252,252,252,245,108,53,150,252,252,220,20,70,242,252,252,222,59,178,252,252,141,185,252,252,194,67,17,90,240,252,194,67,83,205,190,24,121,252,252,209,24,77,247,252,248,106,253,252,252,102,134,255,253,253,39,6,183,253,252,107,2,10,102,252,253,163,16,13,168,252,252,110,2,41,252,252,217,40,155,252,214,31,165,252,252,106,43,179,252,150,39,137,252,221,39,67,252,79]]
2[0,780,[151,152,153,154,155,156,157,177,178,179,180,181,182,183,184,185,205,206,207,208,211,212,213,214,232,233,234,240,241,242,260,261,262,268,269,270,271,288,289,296,297,298,299,324,325,326,327,353,354,355,380,381,382,383,408,409,410,411,414,415,416,417,434,435,436,437,438,439,440,441,442,443,444,445,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,482,483,484,485,486,487,488,489,490,491,492,493,494,495,510,511,512,513,514,515,516,517,519,520,521,522,538,539,540,545,546,547,548,549,566,567,568,572,573,574,575,576,594,595,596,597,598,599,600,601,602,603,623,624,625,626,627,628,629],[93,164,211,250,250,194,15,20,176,253,237,180,180,243,254,214,204,236,135,18,40,242,252,126,69,253,167,130,254,223,74,217,79,46,254,231,14,8,10,39,254,254,104,5,212,254,141,207,254,141,7,215,254,128,39,254,254,56,20,67,124,39,7,35,98,254,254,208,157,207,225,254,241,160,9,31,82,137,203,203,212,254,254,254,254,251,223,223,127,52,33,9,137,214,254,254,254,254,240,228,250,254,254,154,50,185,254,247,179,146,67,60,28,216,254,220,12,255,222,49,4,137,244,232,50,254,206,4,8,179,254,247,64,216,254,158,177,130,96,213,252,199,49,131,247,249,249,249,171,72]]
8[0,780,[159,160,161,162,183,184,185,186,187,188,189,190,207,208,209,210,211,212,213,214,215,216,217,218,235,236,237,238,239,240,241,242,243,244,245,262,263,264,265,266,267,269,270,271,272,273,290,291,292,293,296,297,298,299,300,318,319,320,321,322,323,324,325,326,327,346,347,348,349,350,351,352,353,354,375,376,377,378,379,380,381,382,403,404,405,406,407,408,409,430,431,432,433,434,435,458,459,460,461,462,463,484,485,486,487,488,489,490,491,512,513,514,515,516,517,518,519,539,540,541,542,543,544,545,546,547,567,568,569,571,572,573,574,575,595,596,597,598,599,600,601,602,623,624,625,626,627,628,629,651,652,653,654,655,656,657,679,680,681,682,683],[11,203,229,32,26,47,47,30,95,254,215,13,45,154,185,185,223,253,253,133,175,255,188,19,110,253,253,253,246,161,228,253,253,254,92,128,245,253,158,137,21,48,233,253,233,8,139,254,223,25,36,170,254,244,106,55,212,253,161,11,26,178,253,236,113,7,155,253,228,80,223,253,253,109,141,253,253,253,254,253,154,29,110,253,253,253,254,179,38,3,171,254,254,254,179,171,253,253,253,253,178,26,123,254,253,203,156,253,200,93,253,254,121,13,93,253,158,64,239,253,76,8,32,219,253,126,133,254,191,5,108,234,254,106,132,253,190,5,85,253,236,154,153,253,169,192,253,253,77,112,253,253,254,236,129,9,17,118,243,191,113]]
6[0,780,[100,101,102,103,127,128,129,130,131,154,155,156,157,181,182,183,184,208,209,210,211,236,237,238,263,264,265,291,292,293,319,320,346,347,348,352,353,374,375,376,378,379,380,381,382,402,403,405,406,407,408,409,410,411,429,430,431,433,434,438,439,457,458,459,461,462,466,467,485,486,487,494,495,513,514,515,522,523,541,542,543,549,550,551,569,570,571,576,577,578,579,598,599,600,601,602,603,604,605,606,627,628,629,630,631,632,633],[34,169,250,40,58,242,221,143,17,75,247,143,10,37,245,184,2,8,192,200,14,139,247,28,7,231,183,125,243,50,195,184,61,251,41,64,43,152,210,7,96,237,254,247,107,250,84,6,223,84,13,87,246,72,43,254,80,56,151,147,193,67,254,41,13,19,42,253,67,254,13,14,253,68,255,13,77,240,67,254,13,5,181,147,25,229,105,5,156,213,20,107,246,105,14,49,95,217,209,27,107,246,253,253,240,130,6]]
9[0,780,[209,210,211,212,213,214,236,237,238,239,240,241,242,243,263,264,265,266,267,268,269,270,271,272,291,292,293,297,298,299,300,319,320,321,325,326,327,328,347,348,349,350,351,352,353,354,355,375,376,377,378,379,380,381,403,404,405,406,407,408,409,432,433,434,435,436,461,462,463,464,489,490,491,492,517,518,519,520,544,545,546,547,571,572,573,574,599,600,601,626,627,628,629,653,654,655,656,680,681,682,683,708,709,710,711,735,736,737,738],[18,105,227,253,253,122,57,199,253,252,252,252,252,159,20,211,252,232,152,73,167,252,215,6,197,252,182,37,235,243,47,188,252,103,37,235,229,27,189,253,86,8,43,139,190,211,45,232,252,200,201,252,252,84,213,245,252,253,252,242,42,56,84,253,252,160,45,253,252,38,89,255,253,38,80,253,189,32,41,179,232,84,15,225,252,115,153,252,164,68,245,243,79,32,237,245,82,9,148,252,169,106,253,196,7,54,228,129,28]]
4[0,780,[129,130,131,143,144,145,157,158,159,160,171,172,173,185,186,187,188,199,200,201,202,213,214,215,216,227,228,229,230,231,240,241,242,243,244,255,256,257,258,259,260,268,269,270,271,272,283,284,285,286,287,288,296,297,298,299,300,312,313,314,315,316,317,324,325,326,327,328,341,342,343,344,345,349,350,351,352,353,354,355,356,369,370,371,372,373,375,376,377,378,379,380,381,382,383,384,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,482,483,484,485,486,487,488,492,493,494,495,496,510,511,512,513,514,520,521,522,523,524,525,548,549,550,551,552,553,576,577,578,579,580,581,582,605,606,607,608,609,610,634,635,636,637,638,663,664,665,666],[38,190,25,13,25,10,112,252,125,4,132,252,113,61,252,252,36,132,252,240,79,84,252,252,36,132,252,252,238,52,12,198,252,252,122,99,252,252,252,181,17,49,252,252,252,122,3,125,252,252,252,100,26,218,252,252,36,15,216,252,252,207,19,49,252,252,252,36,157,252,252,252,48,6,109,109,194,252,252,252,36,100,252,252,252,105,58,116,128,252,252,252,252,252,212,19,164,253,253,253,253,253,253,255,253,253,253,253,253,253,99,49,252,252,252,252,252,252,253,252,252,252,252,252,252,155,49,252,252,252,252,252,252,217,216,141,126,252,252,252,155,49,252,252,252,234,204,89,49,252,252,252,155,14,158,192,151,45,49,252,252,252,225,17,49,252,252,252,252,23,33,228,252,252,252,157,4,55,229,252,252,252,11,53,232,252,252,63,90,206,131,11]]
0[0,780,[129,130,131,132,156,157,158,159,160,161,162,183,184,185,186,187,188,189,190,208,209,210,211,212,213,214,215,216,217,218,235,236,237,238,239,240,241,242,243,244,245,246,262,263,264,265,266,267,268,269,270,271,272,273,274,289,290,291,292,293,294,295,296,297,298,299,300,301,302,316,317,318,319,320,322,323,324,325,327,328,329,330,343,344,345,346,347,348,350,351,352,353,355,356,357,358,371,372,373,374,378,379,384,385,386,398,399,400,412,413,414,425,426,427,428,439,440,441,442,453,454,455,456,467,468,469,470,481,482,483,484,494,495,496,497,498,509,510,511,512,521,522,523,524,525,537,538,539,540,547,548,549,550,551,552,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,594,595,596,597,598,599,600,601,602,603,604,605,623,624,625,626,627,628,629,630,631,632,653,654,655,656,657,658],[64,253,255,63,96,205,251,253,205,111,4,96,189,251,251,253,251,251,31,16,64,223,244,251,251,211,213,251,251,31,80,181,251,253,251,251,251,94,96,251,251,31,92,253,253,253,255,253,253,253,95,96,253,253,31,92,236,251,243,220,233,251,251,243,82,96,251,251,31,80,253,251,251,188,96,251,251,109,96,251,251,31,96,240,253,243,188,42,96,204,109,4,12,197,251,31,221,251,253,121,36,23,190,251,31,48,234,253,191,253,31,44,221,251,251,12,197,251,31,190,251,251,251,96,251,251,31,190,251,251,113,40,234,251,219,23,190,251,251,94,40,217,253,231,47,191,253,253,253,12,174,253,253,219,39,67,236,251,251,191,190,111,72,190,191,197,251,243,121,39,63,236,251,253,251,251,251,251,253,251,188,94,27,129,253,251,251,251,251,229,168,15,95,212,251,211,94,59]]
9[0,780,[183,184,185,186,187,210,211,212,213,214,215,216,236,237,238,239,240,242,243,244,264,265,266,270,271,291,292,293,294,297,298,299,318,319,320,321,325,326,327,346,347,348,352,353,354,355,374,375,376,379,380,381,382,402,403,406,407,408,409,410,429,430,431,433,434,435,436,437,457,458,459,460,461,462,463,464,486,487,488,489,490,491,492,516,517,518,519,544,545,546,572,573,574,599,600,601,626,627,628,629,654,655,656,682,683,684,710,711],[31,144,250,254,166,98,241,204,97,126,253,40,6,121,247,133,16,50,253,27,103,253,109,120,231,18,234,169,4,31,220,231,4,215,212,18,195,254,139,88,253,63,90,251,242,23,183,214,5,24,233,253,133,254,124,14,197,253,149,14,67,254,45,71,224,254,218,15,45,246,214,227,248,241,255,111,94,193,167,78,226,189,8,1,145,249,53,64,253,130,230,227,12,52,250,104,8,206,223,11,105,253,45,214,207,4,232,106]]
1[0,780,[158,159,160,185,186,187,188,189,212,213,214,215,216,217,240,241,242,243,244,267,268,269,270,271,272,295,296,297,298,299,323,324,325,326,350,351,352,353,354,377,378,379,380,381,404,405,406,407,408,432,433,434,435,436,459,460,461,462,463,486,487,488,489,490,513,514,515,516,517,541,542,543,544,545,569,570,571,572,573,597,598,599,600,624,625,626,627,628,652,653,654,655,681,682,683],[121,254,136,13,230,253,248,99,4,118,253,253,225,42,61,253,253,253,74,32,206,253,253,186,9,211,253,253,239,69,254,253,253,133,142,255,253,186,8,149,229,254,207,21,54,229,253,254,105,152,254,254,213,26,112,251,253,253,26,29,212,253,250,149,36,214,253,253,137,75,253,253,253,59,93,253,253,189,17,224,253,253,84,43,235,253,126,1,99,248,253,119,225,235,49]]
1[0,780,[99,100,101,127,128,129,130,154,155,156,157,158,182,183,184,185,186,209,210,211,212,213,237,238,239,240,241,264,265,266,267,268,269,291,292,293,294,295,296,297,314,315,316,317,318,319,320,321,322,323,324,325,342,343,344,345,346,347,348,349,350,351,352,353,371,372,373,374,378,379,380,381,406,407,408,409,435,436,437,463,464,465,491,492,493,514,515,516,517,518,519,520,521,522,523,524,525,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,594,595,596,597,598,599,600,622,623,624,625],[166,222,55,197,254,218,5,29,249,254,254,9,45,254,254,174,2,4,164,254,254,85,146,254,254,254,85,101,245,254,254,254,85,97,248,254,204,254,254,85,12,59,98,151,237,254,254,109,35,254,254,85,41,216,254,254,239,153,37,4,32,254,254,85,7,44,44,30,32,254,254,96,19,230,254,174,197,254,110,197,254,85,197,253,63,37,54,54,45,26,84,221,84,21,31,162,78,6,41,141,244,254,254,248,236,254,254,254,233,239,254,138,23,167,254,254,254,254,229,228,185,138,138,138,138,138,138,44,113,254,254,254,179,64,5,32,209,183,97]]
2[0,780,[124,125,126,127,128,129,130,149,150,151,152,153,154,155,156,157,158,159,160,161,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,231,232,233,234,235,236,241,242,243,244,245,246,259,260,261,262,269,270,271,272,273,274,295,296,297,298,299,300,301,322,323,324,325,326,327,328,329,349,350,351,352,353,354,355,356,375,376,377,378,379,380,381,382,383,401,402,403,404,405,406,407,408,409,429,430,431,432,433,434,455,456,457,458,459,460,461,483,484,485,486,487,488,510,511,512,513,514,515,521,522,523,524,525,526,527,528,537,538,539,540,541,542,543,546,547,548,549,550,551,552,553,554,555,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,652,653,654,655,656,657,658,659,660],[83,91,143,255,190,91,50,9,49,180,246,253,253,253,253,253,220,154,17,3,46,107,178,253,253,253,253,253,253,253,253,253,253,253,126,45,107,253,253,253,253,223,220,220,220,220,245,253,253,253,253,106,107,173,253,229,129,12,110,253,253,253,253,106,17,14,40,32,57,253,253,253,242,85,5,139,224,253,253,253,105,65,178,253,253,253,253,219,24,97,250,253,253,253,253,127,47,46,125,250,253,253,253,245,171,33,5,41,217,253,253,250,245,245,115,124,253,253,253,192,105,11,47,220,253,253,188,25,107,253,253,253,189,13,41,225,253,253,186,22,31,42,174,205,205,205,193,58,48,218,253,253,253,150,59,128,131,131,222,253,253,253,253,253,94,12,152,253,253,253,253,236,222,222,252,253,253,253,253,253,253,253,253,122,7,167,253,253,253,253,253,253,253,253,253,253,253,253,253,124,106,7,76,188,253,253,253,253,253,253,253,224,57,15,15,15,2,12,89,121,253,253,151,89,89,55]]
4[0,780,[185,186,187,206,207,213,214,215,233,234,235,240,241,242,261,262,268,269,270,289,290,296,297,298,316,317,318,324,325,326,345,346,347,352,353,354,355,373,374,375,376,380,381,382,383,401,402,403,404,405,406,407,408,409,410,430,431,432,433,434,435,436,437,438,463,464,465,491,492,493,518,519,520,521,546,547,548,574,575,576,602,603,629,630,631,657,658,659,685,686,687,713,714],[30,229,44,38,30,181,223,31,81,242,113,57,249,129,172,162,136,253,46,231,138,162,254,46,26,239,137,245,244,38,222,148,7,254,206,3,7,138,253,169,34,254,240,191,69,17,174,254,255,169,161,195,255,254,113,3,90,173,206,206,223,254,77,4,93,254,23,127,254,23,7,204,210,9,24,253,134,99,253,51,149,253,47,254,195,64,253,143,138,234,13,138,196]]
3[0,780,[150,151,152,153,154,155,156,157,158,159,160,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,258,259,260,261,262,264,265,266,267,268,269,270,271,272,273,274,275,286,295,296,297,298,299,300,301,302,319,320,321,322,323,324,325,326,327,328,329,346,347,348,349,350,351,352,353,354,355,356,374,375,376,377,378,379,380,381,382,383,402,403,404,405,406,407,408,409,410,411,412,431,432,433,434,435,436,437,438,439,440,463,464,465,466,467,468,469,492,493,494,495,496,497,520,521,522,523,524,525,547,548,549,550,551,552,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,648,649,650,651,652,653,654,655,656,657,658,659,660,661,678,679,680,681,682,683,684,685,686,687],[9,80,207,255,254,254,254,97,80,80,44,39,158,158,158,168,253,253,253,253,253,253,253,253,253,210,38,226,253,253,253,253,253,253,253,253,253,253,253,253,253,253,241,146,139,253,253,253,238,113,215,253,253,253,253,253,253,253,253,253,210,43,39,34,34,34,30,31,148,34,204,235,253,253,253,253,253,236,64,91,35,199,253,253,253,253,244,81,11,33,202,202,216,253,253,253,253,241,89,11,167,253,253,253,253,253,253,253,238,82,27,253,253,253,253,253,253,253,253,96,18,201,253,253,253,253,253,253,253,230,49,36,87,87,87,248,253,253,253,253,138,7,152,253,253,253,250,59,62,238,253,253,253,60,32,233,253,253,150,6,37,203,253,253,253,138,66,211,211,211,59,36,36,21,26,36,151,222,253,253,253,253,138,80,253,253,253,253,253,253,195,215,253,253,253,253,253,253,157,77,80,253,253,253,253,253,253,253,253,253,253,253,253,237,235,40,49,156,247,253,253,253,253,253,253,253,253,159,156,16,116,253,253,253,253,253,126,78,78,3]]
2[0,780,[145,146,147,148,149,150,151,152,153,154,155,156,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,293,294,295,296,297,298,299,300,301,302,324,325,326,327,328,329,330,353,354,355,356,357,358,381,382,383,384,385,386,408,409,410,411,412,413,434,435,436,437,438,439,440,462,463,464,465,466,467,488,489,490,491,492,493,494,495,514,515,516,517,518,519,520,521,542,543,544,545,546,547,548,570,571,572,573,574,575,576,597,598,599,600,601,602,603,604,605,606,607,608,609,610,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,654,655,656,657,658,659,660,661,662,663,664,665,666,667,684,685,686,687,688,689,690,691,692,693,694,695],[80,189,254,255,254,254,254,174,101,31,50,12,80,242,253,253,253,253,253,253,253,253,216,226,206,200,200,58,101,253,253,253,253,253,253,253,253,253,253,253,253,253,253,227,53,251,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,249,181,17,122,214,214,158,61,61,113,214,214,250,253,253,253,253,253,253,253,253,45,105,115,115,237,253,253,253,253,253,129,13,24,168,241,253,253,199,2,102,243,253,253,87,16,253,253,253,197,22,22,182,253,253,251,101,3,99,198,253,253,247,129,99,253,253,253,253,191,117,224,244,253,253,239,30,23,58,169,213,253,253,253,197,79,86,253,253,253,242,137,16,216,253,253,253,141,62,8,5,239,253,253,253,253,253,172,162,162,162,64,8,7,80,247,253,253,253,253,253,253,253,253,253,253,253,199,66,95,199,227,253,253,253,253,253,253,253,220,230,201,235,52,99,99,174,253,253,253,122,39,57,22,99]]
7[0,780,[240,241,242,243,244,253,264,265,266,267,268,269,270,271,272,281,289,290,291,292,293,294,295,296,297,298,299,300,317,318,319,320,321,322,323,325,326,327,328,345,346,347,348,349,350,352,353,354,355,356,373,374,379,380,381,382,383,406,407,408,409,410,433,434,435,436,437,460,461,462,463,464,487,488,489,490,491,514,515,516,517,518,541,542,543,544,545,546,568,569,570,571,572,596,597,598,599,624,625,626,653,654],[3,37,37,37,7,78,14,84,182,188,193,254,254,254,124,9,22,91,130,193,254,254,204,125,201,254,254,246,214,254,255,254,255,173,22,98,254,255,152,213,245,198,75,31,2,117,245,254,221,25,72,36,78,246,254,222,33,117,243,254,225,37,77,249,254,220,73,75,242,254,224,37,75,251,254,219,33,77,242,254,254,40,29,209,254,232,83,1,20,226,254,224,63,63,254,250,58,47,244,174,30,14]]
3[0,780,[201,202,203,204,205,206,207,208,209,210,211,212,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,283,284,285,293,294,295,296,297,320,321,322,323,324,325,346,347,348,349,350,351,352,374,375,376,377,378,379,380,381,382,383,384,402,403,404,405,406,407,408,409,410,411,412,413,430,431,432,433,434,435,436,437,438,439,440,441,442,462,463,464,467,468,469,470,489,490,491,496,497,498,517,518,519,524,525,526,545,546,547,548,551,552,553,554,573,574,575,576,577,578,579,580,581,582,601,602,603,604,605,606,607,608,609,610,630,631,632,633,634,635,636,637],[11,19,95,143,143,143,143,143,143,143,143,33,90,149,208,253,253,253,253,253,253,253,253,253,253,217,22,255,253,251,222,222,161,140,99,99,99,99,143,253,253,113,217,210,86,29,161,253,253,82,33,203,253,253,174,13,10,78,232,253,253,253,43,138,253,253,253,253,253,192,180,180,128,32,174,253,253,253,253,253,253,253,253,253,169,3,42,61,61,61,61,83,176,79,110,247,253,195,4,59,192,30,50,203,253,42,56,195,57,112,253,229,172,204,17,58,248,253,192,253,184,62,85,164,253,253,144,253,253,243,223,223,250,253,253,96,7,152,253,253,253,253,253,253,152,3,6,18,122,141,141,141,87,1]]
8[0,780,[153,154,155,156,157,158,159,160,181,182,183,184,185,186,187,188,189,209,210,211,212,213,214,215,216,217,237,238,239,240,243,244,245,246,247,265,266,267,270,271,272,273,274,275,293,294,295,296,297,298,299,300,301,302,303,321,322,323,324,325,326,327,328,329,330,349,350,351,352,353,354,355,356,357,376,377,378,379,380,381,382,383,402,403,404,405,406,407,408,409,429,430,431,432,433,434,435,456,457,458,459,460,461,462,463,483,484,485,486,487,488,489,490,491,511,512,513,514,515,516,517,518,519,538,539,540,541,542,544,545,546,547,565,566,567,568,572,573,574,575,593,594,595,596,598,599,600,601,602,621,622,623,624,625,626,627,628,629,630,649,650,651,652,653,654,655,656,657,678,679,680,681,682,683,684],[42,154,180,255,176,118,118,16,142,253,253,253,253,253,253,236,103,227,253,253,204,177,177,177,243,191,227,253,216,22,23,227,238,96,21,227,253,205,17,124,253,253,253,170,227,253,234,62,18,201,253,253,253,251,90,227,253,253,253,253,253,253,253,221,103,227,253,253,253,253,253,208,24,5,39,236,253,253,253,251,97,16,4,69,224,253,253,240,169,46,33,134,253,253,253,253,105,51,225,253,253,253,253,253,68,48,227,253,253,250,174,253,253,68,213,253,253,179,63,111,253,253,68,92,251,201,13,5,166,253,253,68,39,222,253,198,248,253,231,46,54,243,253,124,38,133,252,253,150,118,253,253,237,179,223,253,253,190,14,44,230,253,253,253,253,253,244,76,45,231,253,253,253,182,66]]
6[0,780,[71,72,73,74,97,98,99,100,101,102,125,126,127,152,153,154,155,180,181,182,207,208,209,235,236,237,263,264,265,290,291,292,318,319,320,346,347,348,373,374,375,376,383,401,402,403,408,409,410,411,412,413,429,430,431,435,436,437,438,439,440,441,457,458,459,462,463,464,465,467,468,469,485,486,487,489,490,491,492,494,495,496,497,513,514,515,516,517,518,519,521,522,523,524,525,542,543,544,547,548,549,550,551,570,571,572,573,574,575,576,577,578,579,599,600,601,602,603,604,605],[132,255,225,12,3,128,246,183,128,46,91,254,134,54,235,204,7,158,252,120,63,251,165,107,254,138,182,229,40,17,232,133,133,254,105,216,254,27,18,227,194,3,30,58,254,115,25,139,155,242,235,128,58,254,75,83,224,251,155,152,254,211,58,254,104,82,249,217,60,37,254,120,58,254,72,18,247,159,14,7,201,254,69,35,239,147,1,5,155,72,4,193,253,122,6,216,254,97,13,73,225,254,121,79,244,248,226,226,231,254,243,115,6,114,177,254,254,235,152,43]]
9[0,780,[210,211,212,213,214,215,216,236,237,238,239,240,241,242,243,244,245,263,264,265,266,267,268,269,270,271,272,273,291,292,293,294,296,297,298,299,300,301,319,320,321,322,323,324,325,326,327,328,347,348,349,350,351,352,353,354,355,356,375,376,377,378,379,380,381,382,383,404,405,406,407,408,409,410,411,434,435,436,437,438,461,462,463,464,465,489,490,491,492,493,516,517,518,519,543,544,545,546,571,572,573,574,597,598,599,600,601,625,626,627,628,652,653,654,655,656,679,680,681,682,683,706,707,708,709,710,733,734,735,736],[45,103,254,254,255,184,73,85,169,245,253,253,253,253,253,230,97,91,233,253,160,89,95,232,253,253,253,125,187,253,117,7,6,136,242,253,251,112,200,253,113,2,76,75,194,253,253,159,177,253,239,228,216,253,253,253,173,10,27,200,253,253,253,253,253,253,102,6,14,15,102,253,253,159,5,41,216,253,190,19,30,153,253,248,51,94,253,252,120,17,47,250,252,148,25,182,253,203,206,253,220,50,3,92,252,244,106,50,226,241,109,40,235,253,137,24,15,208,253,190,29,30,218,240,146,6,4,160,167,70]]
0[0,780,[154,155,156,157,158,159,182,183,184,185,186,187,188,189,208,209,210,211,212,213,214,215,216,217,236,237,238,239,240,241,242,243,244,245,264,265,266,267,268,269,270,271,272,273,290,291,292,293,294,295,298,299,300,301,318,319,320,321,322,326,327,328,329,346,347,348,349,350,353,354,355,356,357,374,375,376,377,378,381,382,383,384,385,402,403,404,405,406,409,410,411,412,413,429,430,431,432,437,438,439,440,456,457,458,459,460,464,465,466,467,468,484,485,486,487,488,491,492,493,494,495,512,513,514,515,516,519,520,521,522,523,540,541,542,543,544,546,547,548,549,550,551,568,569,570,571,572,573,574,575,576,577,596,597,598,599,600,601,602,603,604,605,624,625,626,627,628,629,630,631,632,633,653,654,655,656,657,658,682,683,684,685,686],[53,255,253,253,253,124,180,253,251,251,251,251,145,62,32,217,241,253,251,251,251,251,253,107,37,251,251,253,251,251,251,251,253,107,166,251,251,253,251,96,148,251,253,107,73,253,253,253,253,130,110,253,255,108,73,251,251,251,251,109,251,253,107,202,251,251,251,225,6,129,251,253,107,150,251,251,251,71,115,251,251,253,107,253,251,251,173,20,217,251,251,253,107,182,255,253,216,218,253,253,182,63,221,253,251,215,84,236,251,251,77,109,251,253,251,215,11,160,251,251,96,109,251,253,251,137,150,251,251,251,71,109,251,253,251,35,130,253,251,251,173,20,110,253,255,253,98,150,253,255,253,164,109,251,253,251,251,251,251,253,251,35,93,241,253,251,251,251,251,216,112,5,103,253,251,251,251,251,124,251,225,71,71]]
5[0,780,[188,189,190,191,192,213,214,215,216,217,218,219,220,238,239,240,241,242,243,244,245,246,266,267,268,269,270,271,293,294,295,296,320,321,322,323,348,349,350,351,352,375,376,377,378,379,380,381,401,402,403,404,405,407,408,409,429,430,431,435,436,437,458,463,464,465,490,491,492,509,517,518,519,520,537,538,539,543,544,545,546,547,565,566,567,568,569,570,571,572,573,593,594,595,596,597,598,599],[29,141,198,255,198,86,141,198,255,255,255,255,170,29,141,226,255,255,255,255,198,86,170,255,255,170,86,86,141,226,170,57,86,255,198,29,198,255,141,86,57,170,255,198,114,226,170,29,57,198,255,114,29,141,255,29,114,255,114,141,255,29,29,226,255,29,114,255,141,86,114,226,226,29,255,198,86,141,255,255,170,29,226,255,226,170,226,255,255,198,29,86,198,255,255,170,141,57]]
6[0,780,[98,99,100,101,126,127,128,129,130,153,154,155,156,157,158,180,181,182,183,184,185,186,208,209,210,211,212,213,235,236,237,238,239,263,264,265,266,267,290,291,292,293,294,318,319,320,321,322,346,347,348,349,350,373,374,375,376,377,378,379,380,381,401,402,403,404,405,406,407,408,409,410,411,429,430,431,432,433,434,435,436,437,438,439,440,457,458,459,460,461,462,463,464,465,466,467,468,469,486,487,488,489,490,491,492,493,494,495,496,497,513,514,515,516,517,518,519,520,521,522,523,524,525,541,542,543,544,545,546,547,548,549,550,551,552,553,570,571,572,573,574,575,576,577,578,579,580,599,600,601,602,603,604,605,606,607,608,629,630,631,632,633,634,635],[71,191,122,70,147,253,254,191,11,74,242,253,254,253,26,35,239,253,253,254,162,4,146,253,253,253,187,37,139,233,253,253,253,187,253,253,251,142,43,229,253,253,155,145,253,253,253,107,201,253,253,253,107,39,227,254,254,254,176,121,122,6,81,253,253,253,253,253,253,254,242,191,17,81,253,253,253,253,253,253,254,253,253,119,20,55,237,253,253,253,206,173,254,253,253,253,187,21,201,253,253,253,145,32,53,208,253,253,253,102,60,240,253,253,253,253,218,54,209,253,253,253,199,26,196,253,253,253,253,253,255,253,253,253,243,98,25,197,253,253,253,253,255,253,253,253,172,23,128,241,253,253,255,253,253,199,22,13,120,190,183,196,120,19]]
0[0,780,[127,128,129,130,131,155,156,157,158,159,181,182,183,184,185,186,187,209,210,211,212,213,214,215,216,237,238,239,240,241,242,243,244,245,263,264,265,266,267,268,269,270,271,272,273,291,292,293,294,295,296,297,298,299,300,301,302,317,318,319,320,321,322,323,324,325,326,327,328,329,330,344,345,346,347,348,349,353,354,355,356,357,358,372,373,374,375,376,377,381,382,383,384,385,386,399,400,401,402,403,404,409,410,411,412,413,414,427,428,429,430,431,437,438,439,440,441,455,456,457,458,459,460,465,466,467,468,483,484,485,486,487,488,491,492,493,494,495,496,511,512,513,514,515,519,520,521,522,523,539,540,541,542,543,544,545,546,547,548,549,550,567,568,569,570,571,572,573,574,575,576,577,578,595,596,597,598,599,600,601,602,603,604,605,623,624,625,626,627,628,629,630,631,652,653,654,655,656,657,658],[73,253,227,73,21,73,251,251,251,174,16,166,228,251,251,251,122,62,220,253,251,251,251,251,79,79,231,253,251,251,251,251,232,77,145,253,253,253,255,253,253,253,253,255,108,144,251,251,251,253,168,107,169,251,253,189,20,27,89,236,251,235,215,164,15,6,129,251,253,251,35,47,211,253,251,251,142,37,251,251,253,251,35,109,251,253,251,251,142,11,148,251,253,251,164,11,150,253,255,211,25,11,150,253,255,211,25,140,251,251,253,107,37,251,251,211,46,190,251,251,253,128,5,37,251,251,51,115,251,251,253,188,20,32,109,129,251,173,103,217,251,251,201,30,73,251,251,251,71,166,253,253,255,149,73,150,253,255,253,253,143,140,251,251,253,251,251,251,251,253,251,230,61,190,251,251,253,251,251,251,251,242,215,55,21,189,251,253,251,251,251,173,103,31,200,253,251,96,71,20]]
7[0,780,[201,202,203,204,205,206,207,208,209,210,211,212,213,229,230,231,232,233,234,235,236,237,238,239,240,241,242,257,258,259,260,261,262,263,264,265,266,267,268,269,270,285,286,295,296,297,298,323,324,325,326,351,352,353,354,379,380,381,382,407,408,409,410,412,413,414,415,416,432,433,434,435,436,437,438,439,440,441,442,443,444,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,482,483,484,485,486,487,488,489,490,491,492,493,510,511,512,513,514,515,516,517,518,519,520,521,539,540,541,547,548,549,575,576,577,603,604,605,631,632,633,659,660,661,687,688,689],[8,29,29,88,89,126,126,126,126,126,121,29,3,168,254,254,254,254,254,254,254,254,254,254,254,176,19,175,204,197,197,197,197,197,197,197,197,200,254,254,75,10,5,4,193,254,139,15,254,254,53,15,254,254,53,95,254,254,53,112,254,224,16,75,83,83,83,83,41,49,67,229,254,252,241,241,253,254,242,193,111,11,74,112,180,207,247,254,254,254,254,252,240,213,143,69,35,20,233,254,254,254,254,254,254,225,254,254,80,14,218,254,135,115,22,19,19,30,229,254,19,74,91,8,207,254,19,207,254,19,193,255,19,112,254,19,112,254,19,18,59,3]]
6[0,780,[125,126,127,128,152,153,154,155,156,180,181,182,183,184,207,208,209,210,211,234,235,236,237,238,239,262,263,264,265,266,267,290,291,292,293,294,318,319,320,321,325,326,327,328,345,346,347,348,352,353,354,355,356,357,373,374,375,376,379,380,381,382,383,384,385,401,402,403,407,408,409,410,411,412,413,428,429,430,431,435,436,437,438,439,440,441,456,457,458,459,462,463,464,465,467,468,469,484,485,486,487,489,490,491,492,494,495,496,497,512,513,514,515,516,517,518,519,520,521,522,523,524,541,542,543,544,545,546,547,548,549,550,551,569,570,571,572,573,574,575,576,577,578,579,598,599,600,601,602,603,604,605,606,628,629,630,631,657,658,659],[2,128,255,120,33,162,253,253,179,174,253,253,248,105,38,220,253,253,113,23,220,253,253,253,61,38,253,253,253,195,23,120,253,253,195,23,161,253,219,24,16,153,128,31,23,227,253,116,54,203,253,253,224,17,123,253,243,61,17,179,253,253,253,253,24,155,253,210,162,253,253,196,149,253,24,20,232,253,173,192,253,229,30,94,253,24,25,253,253,86,51,242,229,57,193,253,24,25,253,253,189,20,188,253,136,116,247,219,16,16,217,253,247,69,56,253,253,128,132,247,219,37,155,253,253,233,230,253,253,253,253,253,112,30,215,253,253,253,253,253,253,253,123,4,30,141,218,253,253,168,106,18,3,33,219,253,61,180,192,2]]
1[0,780,[154,155,156,181,182,183,184,185,209,210,211,212,213,237,238,239,240,241,265,266,267,268,293,294,295,296,321,322,323,324,349,350,351,352,377,378,379,380,404,405,406,407,408,432,433,434,435,460,461,462,463,488,489,490,491,516,517,518,519,544,545,546,547,572,573,574,575,600,601,602,603,628,629,630,631,656,657,658,659,684,685,686],[178,255,105,6,188,253,216,14,14,202,253,253,23,12,199,253,128,6,42,253,253,158,42,253,253,158,155,253,253,158,160,253,253,147,160,253,253,41,17,225,253,235,31,24,253,253,176,24,253,253,176,24,253,253,176,24,253,253,176,24,253,253,162,46,253,253,59,142,253,253,59,142,253,253,59,142,253,202,8,87,253,139]]
8[0,780,[131,132,133,154,155,156,157,159,160,161,180,181,182,183,184,185,186,187,188,189,207,208,209,210,211,212,213,214,215,216,217,234,235,236,237,238,239,240,241,242,243,244,262,263,264,265,267,268,269,270,271,272,290,291,292,293,296,297,298,299,318,319,320,321,322,323,324,325,326,327,346,347,348,349,350,351,352,353,354,375,376,377,378,379,380,381,404,405,406,407,408,431,432,433,434,435,436,437,458,459,460,461,462,463,464,465,486,487,488,489,491,492,493,494,513,514,515,516,519,520,521,522,540,541,542,543,547,548,549,568,569,570,571,574,575,576,577,596,597,598,599,600,601,602,603,604,624,625,626,627,628,629,630,631,632,652,653,654,655,656,657,658],[116,244,114,43,47,47,34,116,253,206,19,164,246,253,252,234,33,116,253,174,60,188,252,252,253,252,252,45,210,234,17,74,244,252,252,147,148,210,22,140,250,230,255,253,205,21,64,140,169,233,253,158,253,252,154,9,68,252,252,178,137,252,252,196,48,49,228,252,227,48,5,177,252,252,232,233,252,227,50,15,137,252,252,253,231,48,81,253,253,255,207,51,228,252,231,232,236,44,49,228,252,227,48,138,252,152,233,252,227,50,138,252,208,17,158,253,252,79,138,252,221,25,93,253,255,144,149,253,173,166,252,249,75,43,253,223,25,207,252,237,70,70,112,246,253,174,165,252,253,252,252,252,252,150,17,51,137,253,252,200,210,32]]
7[0,780,[209,210,211,212,213,214,235,236,237,238,239,240,241,242,261,262,263,264,265,266,267,268,269,287,288,289,290,291,292,293,295,296,297,315,316,317,318,319,323,324,325,351,352,353,379,380,381,407,408,409,434,435,436,462,463,464,490,491,492,518,519,546,547,573,574,575,601,602,603,629,630,631,657,658,659,685,686,712,713,714,740,741,742],[1,26,111,195,230,30,28,107,195,254,254,254,244,20,46,167,248,254,222,146,150,254,174,65,223,246,254,153,61,10,48,254,129,85,175,164,80,2,48,254,120,182,254,16,207,254,16,207,202,3,28,248,170,107,254,61,166,252,30,191,206,191,206,14,246,186,91,254,77,175,254,48,175,240,27,215,222,115,255,152,134,255,68]]
9[0,780,[181,182,183,184,185,186,187,208,209,210,211,212,213,214,215,235,236,237,238,239,240,241,242,243,263,264,265,267,268,269,270,271,290,291,292,295,296,297,298,318,319,320,324,325,326,346,347,348,349,350,351,352,353,354,375,376,377,378,379,380,381,404,405,406,407,408,409,435,436,437,462,463,464,489,490,491,492,517,518,519,544,545,546,547,572,573,574,599,600,601,602,627,628,629,654,655,656,657,681,682,683,684,709,710,711,712],[31,193,254,253,254,213,21,41,173,252,253,252,253,252,183,92,233,244,203,102,20,72,253,142,233,212,81,21,102,193,171,20,123,254,151,62,122,254,151,203,253,151,183,253,111,41,254,213,152,71,173,253,224,20,172,252,253,252,253,252,203,82,163,203,214,253,102,253,252,102,82,254,233,41,243,253,70,72,253,203,41,233,252,81,123,254,233,21,223,253,111,173,253,142,82,253,212,20,11,213,255,131,51,252,192,30]]
3[0,780,[174,175,176,177,178,179,180,181,182,183,202,203,204,205,206,207,208,209,210,211,212,213,231,232,233,234,235,236,237,238,239,240,241,267,268,269,295,296,297,322,323,324,349,350,351,352,376,377,378,379,403,404,405,406,431,432,433,434,435,436,437,459,460,461,462,463,464,465,466,467,490,491,492,493,494,495,521,522,523,549,550,551,576,577,578,603,604,605,606,631,632,633,658,659,660,683,684,685,686,687,688,711,712,713,714],[163,132,51,51,51,51,51,51,51,21,203,253,252,253,252,253,252,253,252,223,203,41,103,142,203,203,203,203,203,203,214,253,204,51,252,162,255,253,82,123,253,130,132,253,203,20,123,253,252,20,113,253,224,61,152,252,223,102,102,61,41,62,142,203,243,254,253,254,253,82,40,71,111,172,252,203,72,253,203,152,252,81,102,254,213,21,203,253,130,173,253,163,163,253,171,113,172,132,253,142,20,51,232,151,70]]
9[0,780,[208,209,210,211,212,213,214,215,216,234,235,236,237,238,239,240,241,242,243,244,261,262,263,264,265,266,268,269,270,271,272,288,289,290,291,292,293,296,297,298,299,300,315,316,317,318,319,323,324,325,326,327,343,344,345,346,350,351,352,353,354,355,371,372,373,374,377,378,379,380,381,382,383,399,400,401,402,403,404,405,406,407,408,409,410,427,428,429,430,431,432,433,434,435,436,437,438,455,456,457,458,459,460,461,463,464,465,490,491,492,493,518,519,520,521,546,547,548,573,574,575,576,601,602,603,628,629,630,631,656,657,658,682,683,684,685,686,710,711,712,713,738,739,740,741],[11,185,255,253,253,230,132,132,31,9,71,242,252,252,228,231,252,252,252,167,28,166,252,252,235,92,14,142,252,252,150,12,204,252,234,152,44,48,225,252,180,16,12,164,252,232,61,6,179,252,252,60,49,252,252,76,44,199,252,252,252,60,89,252,228,32,99,231,244,220,252,203,12,169,252,207,97,97,206,234,243,32,157,252,145,60,252,252,252,252,252,200,22,11,198,231,41,26,131,224,252,252,142,11,82,252,204,13,253,253,141,82,252,220,36,208,252,96,24,253,247,78,121,253,199,32,216,244,26,207,252,241,33,200,249,252,92,85,252,252,142,85,252,200,11]]
8[0,780,[152,153,154,155,156,157,158,181,182,183,184,185,186,187,206,207,208,209,210,211,212,213,214,215,232,233,234,235,236,237,238,239,240,241,242,243,244,260,261,262,263,264,265,266,267,268,269,270,271,287,288,289,295,296,297,298,299,315,316,317,318,323,324,325,326,344,345,346,347,348,351,352,353,372,373,374,375,376,377,378,379,380,403,404,405,406,407,432,433,434,435,458,459,460,461,462,463,464,486,487,488,490,491,492,493,513,514,515,516,519,520,521,522,541,542,543,544,548,549,550,569,570,571,576,577,578,597,598,599,604,605,606,625,626,627,631,632,633,634,653,654,655,656,657,658,659,660,661,682,683,684,685,686,687,688],[2,152,203,181,141,58,17,40,172,247,188,232,234,35,17,82,101,143,252,245,67,35,225,214,5,132,237,254,254,254,254,254,243,80,210,248,35,163,251,211,107,23,36,120,240,246,98,218,143,47,251,166,16,43,189,212,25,40,250,214,14,10,148,250,99,137,254,234,103,6,154,225,85,3,44,195,254,184,24,129,235,35,101,240,254,254,66,172,254,254,108,2,154,253,98,190,254,104,91,254,131,13,212,225,64,20,238,254,29,55,244,195,20,90,254,219,6,100,254,111,127,254,116,23,248,126,127,254,63,49,252,126,124,248,29,38,167,254,101,29,233,211,115,115,135,254,244,130,70,236,254,254,254,173,38]]
5[0,780,[186,187,188,189,190,191,192,193,212,213,214,215,216,217,218,219,220,221,239,240,241,242,243,244,245,246,247,248,249,267,268,269,270,271,272,291,292,295,318,319,320,345,346,347,348,373,374,375,401,402,403,404,405,406,429,430,431,432,433,434,435,459,460,461,462,463,464,489,490,491,492,518,519,520,545,546,547,548,567,568,569,572,573,574,575,576,594,595,596,597,598,599,600,601,602,603,622,623,624,625,626,627,628,629,630,650,651,652,653,654,655],[128,128,255,255,255,255,255,64,128,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,255,255,191,128,128,255,255,191,128,128,64,64,128,64,191,255,255,64,255,255,128,255,255,191,255,255,255,191,128,64,128,255,255,255,255,255,128,128,128,255,255,255,64,64,191,255,255,128,255,191,64,191,255,191,128,191,64,64,255,255,255,128,128,255,255,255,255,255,255,255,255,191,255,255,255,255,255,255,255,255,128,128,255,255,128,191,128]]
9[0,780,[150,151,152,153,154,177,178,179,180,181,182,205,206,207,208,209,210,211,233,234,235,237,238,239,261,262,263,265,266,267,289,290,291,293,294,295,317,318,319,320,321,322,323,324,345,346,347,348,349,350,351,352,374,375,376,377,378,379,380,381,406,407,408,409,435,436,437,464,465,466,492,493,494,520,521,522,548,549,550,576,577,578,598,599,600,601,604,605,606,626,627,628,629,630,631,632,633,634,654,655,656,657,658,659,660,661,662,685,686,687,688,689],[50,209,255,172,15,48,236,254,247,252,74,109,254,237,31,149,240,31,109,254,137,126,254,121,109,254,137,126,254,121,109,254,137,126,254,156,100,254,189,86,210,254,226,15,6,159,254,254,196,169,254,99,6,50,50,25,90,254,191,5,9,182,254,70,83,248,128,205,207,5,137,254,25,137,254,71,137,254,108,137,254,108,69,220,198,102,137,254,108,137,219,214,252,129,36,162,254,108,34,5,44,199,254,250,253,235,20,2,117,242,254,114]]
3[0,780,[152,153,154,155,156,157,158,159,178,179,180,181,182,183,184,185,186,187,188,189,190,199,200,205,206,207,208,209,210,211,212,213,214,215,216,217,218,227,228,233,234,235,236,237,238,239,240,241,242,243,244,245,246,262,263,264,265,266,267,268,269,270,271,272,273,292,293,294,295,296,297,298,299,300,318,319,320,321,322,323,324,325,326,327,346,347,348,349,350,351,352,353,374,375,376,377,378,379,380,402,403,404,405,406,407,408,409,434,435,436,437,438,439,463,464,465,466,467,492,493,494,495,520,521,522,523,548,549,550,551,566,567,568,569,572,573,574,575,576,577,578,579,593,594,595,596,597,598,599,600,601,602,603,604,605,606,621,622,623,624,625,626,627,628,629,630,631,632,633,650,651,652,653,654,655,656,657,658,659,679,680,681,682,683],[63,114,238,253,253,253,255,27,98,225,240,253,252,252,252,252,253,228,225,130,38,26,6,67,240,252,252,253,252,252,252,252,253,252,252,252,112,101,24,28,121,249,239,253,236,204,112,189,253,252,252,217,37,25,99,63,112,50,159,252,252,253,252,220,37,63,114,238,253,253,253,255,152,110,19,101,240,253,252,252,252,204,106,3,166,252,252,253,252,176,55,25,181,252,252,253,252,155,26,25,112,112,174,252,252,239,63,126,229,253,253,114,12,53,177,252,253,27,22,227,253,136,19,215,253,89,107,252,253,167,92,253,255,27,63,114,113,222,253,253,204,15,51,243,252,253,103,85,178,240,253,252,252,252,252,94,13,155,252,253,252,252,252,252,253,252,239,180,55,26,239,253,252,252,249,223,225,99,65,63,174,252,141,99]]
3[0,780,[122,123,124,125,126,127,128,129,148,149,150,151,152,153,154,155,156,157,176,177,178,179,180,181,182,183,184,185,204,212,213,214,239,240,241,242,266,267,268,269,293,294,295,296,319,320,321,322,323,324,325,326,346,347,348,349,350,351,352,353,354,374,375,376,377,378,379,380,381,382,383,410,411,438,439,466,467,468,494,495,522,523,539,540,541,548,549,550,551,567,568,569,570,575,576,577,578,579,595,596,597,598,599,600,601,602,603,604,605,606,624,625,626,627,628,629,630,631,632,633,653,654,655,656,657,658,659,660],[12,56,140,126,175,200,96,2,35,166,238,254,246,242,253,246,254,67,184,182,146,127,70,30,45,36,215,175,30,207,246,14,55,251,169,1,11,215,232,20,20,190,250,61,24,118,206,254,248,142,108,18,63,223,254,254,254,254,254,254,209,52,174,129,95,16,16,16,106,249,125,179,239,80,239,80,244,20,100,239,234,239,4,140,5,3,150,254,129,64,254,181,38,34,188,254,209,20,12,226,255,223,88,68,128,157,242,254,207,23,45,210,254,254,254,254,255,254,187,49,41,129,239,229,179,91,16,3]]
0[0,780,[153,154,155,156,157,158,159,160,161,179,180,181,182,183,184,185,186,187,188,189,190,206,207,208,209,210,211,212,213,214,215,216,217,218,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,315,316,317,318,319,320,321,323,324,325,326,327,328,329,330,342,343,344,345,346,354,355,356,357,358,370,371,372,373,374,382,383,384,385,386,398,399,400,401,402,410,411,412,413,414,425,426,427,428,429,439,440,441,442,453,454,455,456,467,468,469,470,481,482,483,484,495,496,497,498,508,509,510,511,512,521,522,523,524,525,526,537,538,539,540,549,550,551,552,553,565,566,567,568,576,577,578,579,580,581,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,621,622,623,624,625,626,627,628,629,630,631,632,633,634,650,651,652,653,654,655,656,657,658,659,660,661,678,679,680,681,682,683,684,685,686,687,688,689],[46,105,254,254,254,254,255,239,41,37,118,222,254,253,253,253,253,253,253,211,54,14,200,253,253,254,253,253,253,253,253,253,253,116,16,160,236,253,253,253,254,253,253,246,229,253,253,253,116,99,253,253,253,253,253,254,253,253,213,99,253,253,253,116,25,194,253,253,253,253,131,97,169,253,93,99,253,253,253,116,206,253,253,251,233,127,9,18,38,3,15,171,253,253,116,55,240,253,253,233,31,186,253,253,116,176,253,253,253,127,99,253,253,253,116,176,253,253,131,9,99,253,253,253,116,119,254,254,232,75,158,254,254,117,118,253,253,154,156,253,253,116,118,253,253,154,156,253,253,116,46,222,253,253,154,7,116,246,253,180,9,118,253,253,154,116,253,253,253,174,118,253,253,154,110,246,253,253,240,67,118,253,253,238,215,49,20,20,20,66,215,241,253,245,233,64,82,229,253,253,253,253,253,253,253,254,253,253,240,107,176,253,253,253,253,253,253,253,254,253,253,108,40,239,253,253,253,253,253,253,254,161,57,4]]
7[0,780,[203,204,205,206,207,208,209,210,211,212,213,214,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,313,314,315,316,317,318,326,327,328,329,330,342,343,344,345,346,347,354,355,356,357,358,372,373,374,375,382,383,384,385,409,410,411,412,413,437,438,439,440,464,465,466,467,491,492,493,494,495,519,520,521,522,546,547,548,549,550,573,574,575,576,577,601,602,603,604,605,629,630,631,632,656,657,658,659,660,661,684,685,686,687,688,689,712,713,714,715,716,717,740,741,742,743],[1,109,109,109,109,110,109,129,253,110,109,31,21,94,217,252,252,252,252,253,252,252,252,253,252,227,134,42,176,252,252,252,252,252,252,253,252,252,252,253,252,252,252,222,139,11,217,252,252,252,128,108,108,108,108,108,108,108,232,252,252,253,252,71,42,159,252,252,210,31,37,252,253,252,71,5,119,210,252,124,31,37,252,253,231,51,31,195,195,31,140,252,253,158,42,221,252,191,15,218,253,253,84,94,247,252,210,21,212,252,226,31,144,253,252,132,99,253,255,222,41,21,201,252,253,55,94,252,252,175,10,217,252,252,62,171,253,253,170,110,78,253,252,252,252,253,55,253,252,252,252,154,10,253,252,252,168]]
4[0,780,[212,213,214,215,237,238,240,241,242,247,264,265,266,268,269,270,275,291,292,293,294,295,296,297,303,318,319,320,321,322,323,324,325,331,345,346,347,348,349,350,351,352,353,373,374,375,376,377,378,379,380,384,385,386,401,402,403,404,405,406,407,408,409,410,411,412,413,414,430,431,432,433,434,435,436,437,438,439,440,441,442,461,462,463,471,488,489,490,499,516,517,518,543,544,545,546,571,572,573,598,599,600,601,626,627,628,653,654,655,681,682,683,708,709,710,736,737],[42,164,252,63,23,34,244,254,112,85,4,190,225,255,185,13,95,6,170,254,197,64,254,59,95,9,132,254,204,23,112,254,28,77,6,167,254,216,58,24,242,225,16,76,254,254,162,85,138,254,188,48,85,25,3,159,254,254,254,254,254,228,151,151,214,250,254,75,7,79,131,158,254,254,226,225,225,225,190,148,39,127,254,148,71,23,248,201,36,85,254,118,12,189,227,22,114,254,103,44,226,175,8,148,203,59,26,242,140,131,169,22,19,233,65,174,109]]
9[0,780,[205,206,207,208,209,210,216,217,218,219,232,233,234,235,236,237,238,239,243,244,245,246,247,258,259,260,261,262,263,264,265,266,267,271,272,273,274,275,286,287,288,289,290,298,299,300,301,302,314,315,316,324,325,326,327,328,329,342,343,344,345,350,351,352,353,354,355,356,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,399,400,401,402,403,404,405,406,407,408,409,410,411,429,430,431,432,433,435,436,437,438,463,464,465,466,490,491,492,493,518,519,520,521,545,546,547,548,573,574,575,600,601,602,603,628,629,630,631,656,657,658,684,685,686,687,712,713,714,715,740,741,742,743],[49,125,235,255,254,122,13,134,180,57,163,250,253,253,253,253,252,63,16,199,253,253,117,52,168,252,253,213,32,12,49,109,3,157,253,253,183,6,171,253,103,19,12,91,247,253,235,8,248,253,19,21,189,245,253,243,77,201,253,104,9,71,122,228,253,253,253,113,18,199,253,219,215,215,215,215,245,253,253,253,253,182,15,20,165,205,253,253,253,191,175,193,253,253,221,16,20,51,51,51,11,59,253,253,110,93,253,218,19,80,237,253,111,196,253,215,22,13,206,243,98,93,253,194,51,235,253,111,79,253,246,58,155,253,178,135,253,68,4,79,253,253,131,39,159,152,32]]
8[0,780,[181,182,183,184,185,186,187,188,189,190,191,192,207,208,209,210,211,212,213,214,215,216,217,218,219,220,234,235,236,237,238,239,240,241,242,243,244,245,246,247,261,262,263,264,265,266,268,269,270,271,272,273,274,289,290,291,292,296,297,298,299,300,301,317,318,319,320,323,324,325,326,327,328,329,345,346,347,348,349,351,352,353,354,355,356,374,375,376,377,378,379,380,381,382,383,402,403,404,405,406,407,408,409,410,432,433,434,435,436,437,459,460,461,462,463,464,486,487,488,489,490,491,492,514,515,516,517,518,519,520,541,542,543,544,545,547,548,568,569,570,571,572,574,575,576,595,596,597,598,599,602,603,604,623,624,625,626,629,630,631,632,651,652,653,654,655,656,657,658,659,679,680,681,682,683,684,685,686,687,707,708,709,710,711,712,713,714],[29,130,130,225,255,255,109,7,116,243,200,6,8,95,217,253,253,253,253,253,253,253,253,253,248,11,27,213,253,253,240,143,111,152,253,253,253,253,194,62,27,213,253,215,105,31,7,153,253,253,253,244,73,149,253,230,34,69,253,253,253,253,79,149,253,221,13,28,156,253,253,253,176,11,63,236,253,175,14,186,253,253,253,196,13,71,253,253,174,50,199,253,253,237,74,9,92,234,253,253,253,253,237,74,77,253,253,253,236,75,11,161,253,253,253,151,10,101,253,253,237,233,158,131,253,253,173,38,186,185,125,237,253,114,14,186,185,62,238,253,176,13,21,211,185,11,240,253,226,11,165,253,136,126,253,243,69,97,246,227,36,136,253,178,112,112,194,248,253,76,136,253,253,253,253,253,253,142,3,15,253,253,253,235,129,45,2]]
0[0,780,[151,152,153,154,155,177,178,179,180,181,182,183,184,185,186,187,188,205,206,207,208,209,210,211,212,213,214,215,216,217,232,233,234,235,236,237,238,239,240,241,242,243,244,245,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,287,288,289,290,291,292,293,294,296,297,298,299,300,301,302,315,316,317,318,319,320,321,326,327,328,329,330,342,343,344,345,346,347,348,349,356,357,358,359,370,371,372,373,374,375,384,385,386,387,398,399,400,401,412,413,414,415,426,427,428,429,441,442,443,454,455,456,457,469,470,471,482,483,484,485,496,497,498,499,510,511,512,513,514,524,525,526,527,538,539,540,541,542,543,552,553,554,555,566,567,568,569,570,571,572,573,579,580,581,582,583,595,596,597,598,599,600,601,602,606,607,608,609,610,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,653,654,655,656,657,658,659,660,661,662,663,664,684,685,686,687,688,689,690,691],[56,105,220,254,63,18,166,233,253,253,253,236,209,209,209,77,18,84,253,253,253,253,253,254,253,253,253,253,172,8,57,238,253,253,253,253,253,254,253,253,253,253,253,119,14,238,253,253,253,253,253,253,179,196,253,253,253,253,238,12,33,253,253,253,253,253,248,134,18,83,237,253,253,253,14,164,253,253,253,253,253,128,57,119,214,253,94,57,248,253,253,253,126,14,4,179,253,248,56,175,253,253,240,190,28,179,253,253,173,209,253,253,178,92,253,253,208,211,254,254,179,135,255,209,209,253,253,90,134,253,208,209,253,253,178,2,142,253,208,209,253,253,214,35,30,253,253,208,165,253,253,253,215,36,163,253,253,164,18,172,253,253,253,214,127,7,72,232,253,171,17,8,182,253,253,253,253,162,56,64,240,253,253,14,7,173,253,253,253,253,245,241,239,239,246,253,225,14,1,18,59,138,224,253,253,254,253,253,253,240,96,37,104,192,255,253,253,182,73]]
9[0,780,[210,211,212,213,214,215,237,238,239,240,241,242,243,244,262,263,264,265,266,267,268,269,270,271,272,289,290,291,292,293,294,296,297,298,299,300,317,318,319,324,325,326,327,345,346,352,353,354,355,373,374,379,380,381,382,401,402,403,404,405,406,407,408,409,410,429,430,431,432,433,434,435,436,437,438,458,459,460,461,462,463,464,465,490,491,492,518,519,520,545,546,547,572,573,574,575,599,600,601,602,627,628,629,630,654,655,656,681,682,683,684,709,710,711,737,738,739],[41,152,233,254,213,82,123,243,253,252,253,252,243,81,21,132,253,254,213,142,61,31,233,254,131,21,203,253,212,50,10,41,132,252,172,10,153,253,163,102,254,253,102,193,252,142,253,252,20,254,151,132,253,254,233,253,232,183,102,102,183,253,252,253,111,203,243,254,253,254,213,152,253,224,20,40,151,151,91,10,152,252,162,163,254,192,203,253,70,132,253,142,41,253,252,61,72,253,254,91,193,252,91,10,123,255,192,82,243,233,50,153,253,183,152,212,20]]
4[0,780,[156,157,158,159,176,177,183,184,185,186,187,202,203,204,205,206,211,212,213,214,215,230,231,232,233,234,239,240,241,242,243,258,259,260,261,262,267,268,269,270,271,286,287,288,289,290,295,296,297,298,299,314,315,316,317,318,323,324,325,326,327,342,343,344,345,346,347,349,350,351,352,353,354,355,370,371,372,373,374,375,376,377,378,379,380,381,382,383,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,454,455,456,457,458,459,460,461,462,463,464,465,466,467,491,492,493,494,495,519,520,521,522,523,547,548,549,550,551,575,576,577,578,579,602,603,604,605,606,607,630,631,632,633,634,635,658,659,660,661,662,663,687,688,689,690],[125,254,210,89,132,47,7,243,253,253,191,17,95,237,232,5,7,253,253,253,191,56,253,253,253,6,7,253,253,253,191,56,253,253,253,6,7,253,253,253,191,56,253,253,253,6,7,253,253,253,191,56,253,253,253,77,7,253,253,253,191,116,253,253,253,191,12,81,111,189,253,253,253,191,192,253,253,253,253,230,227,246,253,253,253,253,253,68,62,242,253,253,253,253,253,253,253,253,253,253,253,253,54,21,182,253,253,253,253,253,253,253,253,253,253,253,237,70,20,107,226,226,226,226,226,125,104,241,253,253,224,172,144,253,253,253,191,78,253,253,253,191,137,253,253,253,191,144,253,253,253,191,22,230,253,253,253,191,28,253,253,253,253,191,26,244,253,253,201,72,70,253,253,97]]
1[0,780,[129,130,131,132,157,158,159,160,184,185,186,187,188,212,213,214,215,216,240,241,242,243,267,268,269,270,271,295,296,297,298,322,323,324,325,349,350,351,352,353,376,377,378,379,380,404,405,406,407,408,431,432,433,434,435,458,459,460,461,462,486,487,488,489,490,514,515,516,517,541,542,543,544,545,569,570,571,572,596,597,598,599,600,601,624,625,626,627,628,629,653,654,655,656],[7,176,254,224,51,253,253,223,4,170,253,253,214,131,253,253,217,39,209,253,253,134,75,240,253,239,26,184,253,245,63,142,255,253,185,62,229,254,242,73,54,229,253,254,105,152,254,254,213,26,32,243,253,253,115,2,142,253,253,155,30,253,253,232,55,75,253,253,164,72,232,253,189,17,224,253,253,163,43,235,253,253,195,21,28,231,253,253,184,14,225,253,253,75]]
4[0,780,[149,159,160,176,177,178,179,186,187,188,203,204,205,206,207,214,215,216,217,230,231,232,233,234,235,243,244,245,246,258,259,260,261,271,272,273,274,285,286,287,288,289,299,300,301,302,312,313,314,315,316,327,328,329,330,340,341,342,343,344,355,356,357,358,368,369,370,371,384,385,386,387,396,397,398,409,410,411,412,413,414,415,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,509,510,511,512,513,514,515,516,517,518,519,520,521,524,525,526,551,552,553,554,580,581,582,608,609,610,636,637],[53,84,21,71,235,213,5,88,248,169,72,234,253,253,6,81,246,238,161,11,201,253,251,147,2,220,253,217,13,158,253,253,157,220,253,253,96,50,234,253,235,50,220,253,253,96,51,239,253,253,85,160,253,253,229,118,253,253,204,9,9,205,253,232,229,253,233,70,199,253,238,32,254,253,177,24,49,49,210,253,253,216,254,253,227,135,28,28,28,28,77,165,165,165,165,208,253,253,253,253,253,238,173,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,253,241,50,166,253,253,253,253,253,253,253,253,253,253,253,192,129,129,227,253,165,5,13,118,150,150,150,91,62,113,13,13,13,7,199,253,96,45,229,253,96,199,253,96,177,201,28,24,28]]
4[0,780,[187,188,189,213,214,215,216,217,241,242,243,244,264,265,266,268,269,270,271,272,291,292,293,294,296,297,298,299,318,319,320,321,323,324,325,326,346,347,348,349,351,352,353,373,374,375,376,378,379,380,381,400,401,402,403,404,405,406,407,408,410,411,428,429,430,431,432,433,434,435,436,437,438,439,456,457,458,459,460,461,462,463,464,465,466,467,487,488,489,490,514,515,516,517,542,543,544,569,570,571,572,597,598,599,625,626,627,653,654,680,681,682,708,709,710],[115,237,169,2,164,252,230,46,52,254,254,103,102,159,20,12,214,254,159,16,48,243,238,29,178,254,159,15,16,160,254,183,37,238,239,16,144,254,235,53,227,254,119,102,252,235,119,78,254,175,2,83,231,254,178,120,133,244,254,49,48,90,169,254,254,254,254,254,254,255,244,188,232,113,29,95,95,127,228,254,230,189,188,188,160,42,45,239,239,42,1,127,251,113,83,254,197,9,174,238,56,125,254,162,208,247,50,236,143,9,238,151,20,205,164]]
6[0,780,[127,128,129,130,131,154,155,156,157,158,159,181,182,183,184,185,186,187,208,209,210,211,212,213,214,215,236,237,238,239,240,242,243,263,264,265,266,267,290,291,292,293,294,318,319,320,321,322,345,346,347,348,349,373,374,375,376,377,378,379,380,381,382,383,401,402,403,404,405,406,407,408,409,410,411,412,429,430,431,432,433,434,435,436,437,438,439,440,457,458,459,460,461,462,463,465,466,467,468,485,486,487,488,489,493,494,495,496,513,514,515,516,517,520,521,522,523,524,541,542,543,544,547,548,549,550,551,569,570,571,572,573,574,575,576,577,578,579,597,598,599,600,601,602,603,604,605,606,626,627,628,629,630,631,632,633,656,657,658,659,660],[29,218,255,234,45,31,216,253,253,253,218,69,244,253,253,196,253,220,33,214,253,253,205,9,176,220,196,253,253,230,57,17,22,122,248,253,230,58,78,248,253,253,144,92,253,253,194,11,28,204,253,253,144,99,253,253,233,57,100,196,196,196,175,57,195,253,253,193,181,253,253,253,253,253,228,23,228,253,253,253,253,253,184,98,210,253,253,191,228,253,253,253,240,174,20,46,253,253,227,228,253,253,253,181,66,253,253,139,228,253,198,198,91,34,226,253,249,85,228,253,221,28,7,140,253,253,207,151,253,253,168,46,54,174,253,253,220,37,43,229,253,253,253,253,253,253,251,80,42,227,252,253,253,253,252,135,102,159,152,123,98]]
0[0,780,[154,155,156,157,158,181,182,183,184,185,186,187,207,208,209,210,211,212,213,214,215,216,217,234,235,236,237,238,239,240,241,242,243,244,245,262,263,264,265,266,267,268,269,270,271,272,273,289,290,291,292,293,294,295,296,297,298,299,300,301,302,317,318,319,320,321,322,323,324,325,326,327,328,329,330,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,371,372,373,374,375,376,377,378,379,380,383,384,385,386,387,398,399,400,401,402,403,406,407,408,411,412,413,414,415,426,427,428,429,430,431,439,440,441,442,443,453,454,455,456,457,458,459,467,468,469,470,471,480,481,482,483,484,485,486,487,488,489,493,494,495,496,497,498,499,508,509,510,511,512,513,514,515,516,517,521,522,523,524,525,536,537,538,539,540,548,549,550,551,552,553,564,565,566,567,574,575,576,577,578,592,593,594,595,596,602,603,604,605,606,620,621,622,623,624,625,626,627,628,629,630,631,632,633,649,650,651,652,653,654,655,656,657,658,659,678,679,680,681,682,683,684,685,686,687],[21,176,253,253,124,105,176,251,251,251,251,105,58,217,241,253,251,251,251,251,243,113,5,63,231,251,251,253,251,251,251,251,253,251,113,144,251,251,251,253,251,251,251,251,253,251,215,125,253,253,253,253,255,253,253,253,253,255,253,227,42,253,251,251,251,251,253,251,251,251,251,253,251,251,142,27,253,251,251,235,241,253,251,246,137,35,98,251,251,236,61,47,211,253,251,235,82,103,253,251,137,73,251,251,251,71,27,211,251,253,251,86,72,71,10,73,251,251,173,20,89,253,253,255,253,35,73,253,253,253,72,84,236,251,251,253,251,138,73,251,251,251,71,63,236,251,251,251,227,251,246,138,11,16,37,228,251,246,137,10,73,251,251,251,173,42,142,142,142,41,109,251,253,251,137,73,251,251,173,20,27,211,251,253,147,10,73,253,253,143,21,176,253,253,253,73,251,251,205,144,176,251,251,188,107,62,236,251,251,251,218,217,217,217,217,253,230,189,20,83,158,251,251,253,251,251,251,251,253,107,37,251,251,253,251,251,251,122,72,30]]
4[0,780,[152,153,154,161,162,163,179,180,181,182,188,189,190,191,207,208,209,210,216,217,218,219,235,236,237,244,245,246,247,262,263,264,265,272,273,274,289,290,291,292,299,300,301,302,316,317,318,319,320,327,328,329,330,344,345,346,347,354,355,356,357,358,371,372,373,374,375,382,383,384,385,399,400,401,402,410,411,412,426,427,428,429,437,438,439,440,454,455,456,457,461,462,463,464,465,466,467,468,482,483,484,485,486,487,488,489,490,491,492,493,494,495,510,511,512,513,514,515,516,517,518,519,520,521,522,523,538,539,540,541,542,543,544,545,548,549,550,567,568,569,570,571,575,576,577,578,603,604,605,606,631,632,633,659,660,661,687,688,689],[100,237,121,13,48,18,132,235,254,202,8,179,254,94,224,254,237,48,10,209,254,94,224,254,112,16,233,251,63,49,240,222,20,118,254,191,19,231,255,120,23,205,254,111,6,168,255,241,47,85,254,254,36,84,254,254,67,8,200,254,184,13,3,172,254,221,18,120,254,246,48,162,254,238,30,157,254,212,116,253,254,105,112,252,254,129,198,254,172,1,36,107,146,249,253,254,210,13,198,254,134,10,89,96,193,245,254,254,254,254,254,140,198,254,244,241,254,254,254,254,223,140,252,254,169,5,137,252,254,254,254,218,176,88,250,254,120,25,60,119,26,14,9,251,254,25,100,254,194,5,189,254,166,203,254,166,78,253,124]]
5[0,780,[219,220,221,243,244,245,246,247,248,249,269,270,271,272,273,274,275,276,277,293,294,295,296,297,298,299,300,301,302,303,304,319,320,321,322,323,324,325,326,327,345,346,347,348,349,350,351,352,353,373,374,375,376,377,378,401,402,403,404,405,406,430,431,432,433,434,460,461,462,488,489,490,510,511,516,517,518,538,539,540,543,544,545,546,566,567,568,569,570,571,572,573,594,595,596,597,598,599,600,601,624,625,626],[6,37,37,8,51,110,160,207,253,253,53,136,212,253,254,253,253,253,188,63,80,195,255,254,254,222,181,182,181,135,52,16,223,250,253,253,254,182,18,10,3,133,228,253,247,216,151,69,16,58,253,254,253,116,4,38,227,254,253,227,87,33,182,249,254,203,67,253,215,68,253,157,135,92,184,253,125,254,218,46,27,242,253,54,170,254,254,215,228,255,254,133,31,160,206,253,214,140,108,16,6,36,11]]
6[0,780,[74,75,101,102,103,128,129,130,155,156,157,158,182,183,184,185,209,210,211,212,236,237,238,239,240,264,265,266,267,291,292,293,294,318,319,320,321,346,347,348,349,350,351,352,353,354,355,356,373,374,375,376,377,378,379,380,381,382,383,384,385,401,402,403,404,405,406,407,408,409,410,411,412,413,428,429,430,431,432,433,439,440,441,456,457,458,466,467,468,469,484,485,486,493,494,495,496,512,513,514,519,520,521,522,523,540,541,542,543,544,545,546,547,548,549,550,569,570,571,572,573,574,575,576,577,597,598,599,600,601,602,603],[191,128,255,255,191,191,255,255,191,255,255,128,191,255,255,191,64,255,255,255,64,255,255,255,64,191,255,255,64,191,255,255,64,64,255,255,191,191,255,255,128,128,128,128,128,128,128,64,128,255,255,255,255,255,255,255,255,255,255,255,64,255,255,255,255,255,128,128,128,128,191,255,255,128,128,255,255,255,128,64,255,255,128,255,255,255,128,255,255,128,255,255,255,64,255,255,255,255,255,255,64,128,255,255,191,191,255,255,128,128,128,255,255,255,255,191,255,255,255,255,255,255,255,255,64,64,255,255,255,255,128,128]]
1[0,780,[150,151,152,153,154,155,156,157,158,186,187,210,211,212,214,215,238,239,240,241,242,243,266,267,268,269,270,271,293,294,295,296,297,298,299,321,322,323,324,326,327,349,350,351,352,376,377,378,379,380,404,405,406,407,408,432,433,434,435,459,460,461,462,463,467,487,488,489,490,494,495,515,516,517,518,522,523,543,544,545,546,550,551,571,572,573,598,599,600,601,626,627,628,629,654,655,656,682,683],[68,45,131,131,131,101,68,92,44,19,170,29,112,89,40,222,120,254,251,127,40,222,197,254,254,91,40,222,64,247,254,236,50,40,107,184,254,254,91,6,14,203,254,254,71,23,218,254,254,71,113,254,255,239,53,210,254,254,195,62,242,254,241,88,28,86,254,254,189,28,104,106,254,254,168,40,91,216,254,245,51,35,80,216,254,102,55,239,254,52,166,254,210,23,223,252,104,223,169]]
0[0,780,[124,125,126,127,128,150,151,152,153,154,155,156,157,177,178,179,180,181,183,184,185,186,203,204,205,206,207,212,213,214,215,216,230,231,232,233,240,241,242,243,244,245,258,259,260,268,269,272,273,274,285,286,287,301,302,303,313,314,330,331,332,341,342,359,360,369,370,387,388,397,398,415,416,425,426,443,444,453,454,455,471,472,481,482,483,499,500,510,511,512,527,528,538,539,540,541,554,555,556,567,568,569,570,581,582,583,597,598,599,600,601,606,607,608,609,610,611,626,627,628,629,630,631,632,633,634,635,636,637,638,656,657,658,659,660,661,662,663],[29,170,255,255,141,29,198,255,255,255,226,255,86,141,255,255,170,29,86,255,255,141,29,226,255,198,57,226,255,255,226,114,29,255,255,114,141,170,114,255,255,141,226,255,170,29,57,141,255,226,57,255,170,114,255,198,226,255,170,255,57,255,226,255,170,255,170,114,198,255,226,86,255,198,255,86,255,114,255,57,86,255,29,255,226,141,255,170,255,170,226,198,29,226,255,170,29,255,114,29,226,255,141,57,226,226,141,255,255,170,86,29,86,226,255,226,29,86,198,255,255,255,255,255,255,255,255,255,141,29,29,114,170,170,170,170,170,86]]
0[0,780,[152,153,154,155,156,157,158,159,179,180,181,182,183,184,185,186,187,188,206,207,208,209,210,211,212,213,214,215,216,233,234,235,236,237,238,239,240,241,242,243,244,261,262,263,264,265,266,267,268,269,270,271,272,289,290,291,292,293,294,295,296,297,298,299,300,301,317,318,319,320,321,322,323,324,325,326,327,328,329,345,346,347,348,349,350,353,354,355,356,373,374,375,376,381,382,383,384,385,400,401,402,403,404,409,410,411,412,413,427,428,429,430,431,432,437,438,439,440,455,456,457,458,459,460,465,466,467,468,469,483,484,485,486,487,493,494,495,496,497,511,512,513,514,521,522,523,524,539,540,541,542,543,549,550,551,552,568,569,570,571,572,575,576,577,578,579,580,595,596,597,598,599,600,601,602,603,604,605,606,607,624,625,626,627,628,629,630,631,632,633,634,635,653,654,655,656,657,658,659,660,661,662,663,682,683,684,685,686,687,688,689,690],[203,254,252,252,252,214,51,20,62,221,252,250,250,250,252,250,160,20,62,211,250,252,250,250,250,252,250,250,49,41,221,250,250,252,250,250,250,252,250,128,10,254,252,252,252,254,252,252,252,254,252,252,90,150,190,250,250,252,250,250,169,171,250,250,250,82,31,191,250,250,252,189,100,20,172,250,250,250,80,213,250,250,250,212,29,252,250,250,250,92,252,252,252,51,252,252,252,203,82,252,250,250,169,132,250,250,250,121,92,231,252,250,159,20,252,250,250,250,30,211,252,250,221,40,90,250,250,250,163,31,213,254,232,80,92,252,252,212,163,151,250,252,149,252,250,250,49,60,221,252,210,60,252,250,250,49,202,252,250,221,40,123,202,252,250,250,49,123,243,255,252,252,252,254,252,252,252,254,252,100,121,171,250,250,250,252,250,250,250,252,250,100,20,160,250,250,252,250,250,250,252,189,40,20,170,250,252,250,128,49,49,29]]
1[0,780,[97,98,99,124,125,126,127,128,151,152,153,154,155,156,178,179,180,181,182,183,205,206,207,208,209,210,211,233,234,235,236,237,238,239,261,262,263,264,265,266,267,289,290,291,292,293,294,295,321,322,323,349,350,351,377,378,379,405,406,407,432,433,434,460,461,462,467,468,488,489,490,493,494,495,496,516,517,518,519,520,521,522,523,524,543,544,545,546,547,548,549,550,551,552,570,571,572,573,574,575,576,577,578,579,580,598,599,600,601,602,603,604,605,606,626,627,628,629,630,631,632,633],[64,191,70,68,243,253,249,63,30,223,253,253,247,41,73,238,253,253,253,242,73,236,253,253,253,253,242,182,253,253,191,247,253,149,141,253,143,86,249,253,122,9,36,7,14,233,253,122,230,253,122,230,253,122,231,255,123,230,253,52,61,245,253,98,253,253,35,12,98,253,253,9,142,233,146,190,253,253,128,7,99,253,253,180,29,230,253,253,252,210,253,253,253,140,28,207,253,253,253,254,253,253,235,70,9,126,253,253,253,253,254,253,168,19,79,253,253,201,190,132,63,5]]
7[0,780,[237,238,239,240,241,242,243,244,245,263,264,265,266,267,268,269,270,271,272,273,289,290,291,292,293,294,295,296,297,298,299,300,301,315,316,317,318,319,320,321,322,323,325,326,327,328,329,342,343,344,345,346,347,348,349,350,353,354,355,356,357,370,371,372,373,374,375,376,380,381,382,383,384,407,408,409,410,411,434,435,436,437,438,462,463,464,465,489,490,491,492,516,517,518,519,543,544,545,546,570,571,572,573,598,599,600,601,625,626,627,628,652,653,654,655,679,680,681,682,707,708,709,710,734,735,736,737,762,763,764],[6,19,133,133,156,254,254,214,83,10,134,197,254,253,253,253,253,253,253,156,28,78,194,253,253,254,250,217,217,226,253,253,156,10,135,234,253,253,253,253,246,76,10,98,253,253,133,9,155,253,253,253,224,198,134,69,78,253,253,192,10,9,140,180,88,60,32,6,63,234,253,163,40,9,189,253,163,12,11,221,253,211,10,65,253,238,59,59,249,242,56,64,249,249,52,10,232,253,161,53,194,253,178,166,253,232,49,82,240,230,52,18,211,229,54,17,126,253,128,49,253,144,7,16,195,227,34,152,230,43]]
1[0,780,[124,125,126,152,153,154,181,182,183,209,210,211,237,238,239,265,266,267,293,294,295,321,322,323,349,350,351,377,378,379,405,406,407,433,434,435,461,462,463,489,490,491,516,517,518,519,544,545,546,547,572,573,574,600,601,602,628,629,630,656,657,658],[26,240,72,25,238,208,209,226,14,209,254,43,175,254,128,63,254,204,107,254,204,88,254,204,55,254,204,126,254,204,126,254,189,169,254,121,209,254,193,209,254,111,22,235,254,37,137,254,227,16,205,255,185,205,254,125,205,254,125,111,212,43]]
6[0,780,[70,71,72,73,98,99,100,101,127,128,129,154,155,156,157,182,183,184,185,209,210,211,212,236,237,238,239,264,265,266,267,291,292,293,294,298,299,300,318,319,320,321,322,323,324,325,326,327,328,329,346,347,348,349,350,351,352,353,354,355,356,357,373,374,375,376,378,379,380,381,382,383,384,385,401,402,403,404,405,406,407,408,409,411,412,413,428,429,430,431,432,433,434,435,439,440,441,456,457,458,459,460,461,462,463,466,467,468,484,485,486,487,488,489,490,493,494,495,496,512,513,514,515,516,517,518,519,520,521,522,523,524,540,541,542,543,544,545,546,547,548,549,550,551,568,569,570,571,572,573,574,575,576,577,578,597,598,599,600,601,602,603,604],[5,134,255,113,86,214,253,112,138,253,163,19,198,253,49,186,253,208,19,54,229,243,92,33,228,253,164,135,253,186,20,59,230,253,68,20,56,35,10,188,253,182,18,17,63,162,209,253,227,48,71,253,215,18,17,179,253,253,253,253,253,148,25,233,253,107,159,253,253,193,136,101,244,148,71,253,178,16,85,240,231,136,10,76,248,148,9,189,253,86,42,241,253,185,94,219,37,71,253,240,71,185,253,154,27,33,213,109,149,253,216,93,253,231,41,81,213,253,91,149,253,216,117,253,221,106,106,142,249,253,214,18,34,253,251,157,214,253,253,253,253,253,118,12,2,159,253,253,253,253,253,253,219,35,2,34,253,253,253,253,223,96,4]]
3[0,780,[149,150,151,152,153,154,155,176,177,178,179,180,181,182,183,184,203,204,205,206,207,208,209,210,211,212,213,231,232,233,234,235,236,237,238,239,240,241,261,265,266,267,268,269,293,294,295,296,318,319,320,321,322,323,324,325,346,347,348,349,350,351,352,353,373,374,375,376,377,378,379,380,381,382,401,402,403,404,405,406,407,408,409,410,435,436,437,438,463,464,465,466,467,491,492,493,494,495,520,521,522,523,548,549,550,551,569,570,575,576,577,578,597,598,599,600,601,602,603,604,605,606,625,626,627,628,629,630,631,632,633,653,654,655,656,657,658,659,660,661,681,682,683,684,685,686,687,688],[87,159,253,159,243,191,61,74,253,252,252,252,252,253,236,65,26,205,253,252,252,252,252,253,252,202,13,59,160,203,160,160,160,108,253,252,252,45,11,53,253,252,252,45,231,255,253,173,9,47,140,244,253,252,102,9,130,252,252,252,253,252,252,77,62,236,252,252,64,211,252,252,194,9,76,211,221,43,2,86,252,252,252,128,100,253,253,148,47,252,252,252,74,34,234,252,252,199,90,252,252,178,122,252,252,126,87,154,36,222,253,243,138,236,78,9,22,57,219,252,235,60,138,252,252,196,215,253,252,252,128,97,252,252,252,252,253,252,101,9,13,211,252,252,200,137,64,6]]
0[0,780,[154,155,156,157,158,159,160,181,182,183,184,185,186,187,188,189,209,210,211,212,213,214,215,216,217,236,237,238,239,240,241,242,243,244,245,264,265,266,267,268,269,270,271,272,291,292,293,294,295,296,297,298,299,300,319,320,321,322,323,324,325,326,327,328,345,346,347,348,349,350,351,353,354,355,356,357,373,374,375,376,377,382,383,384,385,400,401,402,403,404,410,411,412,413,427,428,429,430,431,438,439,440,441,455,456,457,458,466,467,468,469,482,483,484,485,494,495,496,497,510,511,512,513,521,522,523,524,538,539,540,541,548,549,550,551,552,566,567,568,569,574,575,576,577,578,579,594,595,596,597,598,599,600,601,602,603,604,605,606,623,624,625,626,627,628,629,630,631,632,633,651,652,653,654,655,656,657,658,659,660,681,682,683,684,685,686],[62,91,213,255,228,91,12,70,230,253,253,253,253,253,152,7,246,253,253,253,253,253,253,253,106,21,247,253,253,253,253,253,253,208,24,156,253,253,253,253,253,253,253,195,88,238,253,253,253,221,253,253,253,195,230,253,253,253,198,40,177,253,253,195,56,156,251,253,189,182,15,86,240,253,210,28,213,253,253,156,3,205,253,253,106,121,252,253,135,3,46,253,253,106,28,212,253,248,23,42,253,253,106,197,253,234,70,42,253,253,106,11,202,253,187,58,253,210,27,107,253,253,40,53,227,253,195,107,253,253,40,47,227,253,231,58,107,253,253,40,5,131,222,253,231,59,14,204,253,226,222,73,58,58,170,253,253,227,58,197,253,253,253,253,253,253,253,253,238,58,33,179,241,253,253,253,253,250,116,14,75,179,253,151,89,86]]
2[0,780,[124,125,126,127,128,149,150,151,152,153,154,155,156,157,174,175,176,177,178,179,180,181,182,183,184,185,186,201,202,203,204,205,206,207,208,209,210,211,212,213,214,229,230,231,232,233,234,239,240,241,242,257,258,259,267,268,269,270,294,295,296,297,298,321,322,323,324,325,326,348,349,350,351,352,353,376,377,378,379,380,403,404,405,406,407,408,430,431,432,433,434,458,459,460,461,485,486,487,488,513,514,515,541,542,543,544,569,570,571,572,573,574,576,577,580,581,582,583,584,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,626,627,628,629,630,631,632,633,634,635,636,637,638,656,657,658,659,660,661,662,663,664],[34,80,80,80,58,138,159,159,199,254,254,254,228,66,39,62,160,252,254,254,254,254,233,233,254,245,67,45,212,254,254,254,186,114,114,114,74,75,251,254,201,233,254,244,210,58,18,30,249,254,201,131,131,100,168,254,254,201,71,237,254,254,61,4,157,254,254,192,15,4,140,254,254,203,29,107,254,254,254,123,18,204,254,196,87,3,35,212,254,252,121,124,254,192,101,77,242,249,118,221,254,228,196,254,250,124,45,254,254,196,116,76,112,48,16,116,116,116,116,11,154,254,254,254,234,194,253,219,194,194,203,254,241,237,237,77,157,198,254,254,254,254,254,254,254,173,157,38,33,78,78,78,78,78,78,78,13]]
1[0,780,[156,157,158,159,184,185,186,187,211,212,213,214,215,238,239,240,241,242,266,267,268,269,270,293,294,295,296,297,321,322,323,324,325,348,349,350,351,352,353,376,377,378,379,380,404,405,406,407,408,431,432,433,434,459,460,461,462,486,487,488,489,490,514,515,516,517,518,542,543,544,545,570,571,572,597,598,599,600,625,626,627,628,653,654,655,656,681,682,683,684],[42,228,253,253,144,251,251,251,89,236,251,235,215,79,253,251,251,142,180,253,251,251,142,32,202,255,253,216,109,251,253,251,112,6,129,251,253,127,5,37,251,251,253,107,166,251,251,201,30,42,228,253,253,144,251,251,147,63,236,251,251,71,150,251,251,204,41,253,251,251,142,255,253,164,105,253,251,35,180,253,251,35,180,253,251,35,180,253,251,35]]
1[0,780,[127,128,129,155,156,157,158,159,183,184,185,186,187,211,212,213,214,215,239,240,241,242,243,267,268,269,270,271,294,295,296,297,298,299,322,323,324,325,326,350,351,352,353,354,377,378,379,380,381,382,405,406,407,408,409,432,433,434,435,436,437,460,461,462,463,464,487,488,489,490,491,492,514,515,516,517,518,519,542,543,544,545,546,547,569,570,571,572,573,574,597,598,599,600,601,624,625,626,627,628,629,652,653,654,655],[62,254,213,102,253,252,102,20,102,254,253,254,50,102,253,252,253,50,102,254,253,254,50,142,253,252,253,50,51,253,254,253,224,20,132,252,253,252,162,173,253,254,253,102,82,253,252,253,252,61,203,254,253,254,233,41,243,253,252,253,111,132,253,254,253,203,41,253,252,253,252,40,11,213,254,253,254,151,92,252,253,252,192,50,21,214,253,255,253,41,142,253,252,253,171,113,253,255,253,203,40,30,131,233,111]]
7[0,780,[213,214,215,216,217,237,238,239,240,241,242,243,244,245,262,263,264,265,266,267,268,269,270,271,272,273,289,290,291,292,293,294,295,296,297,298,299,300,301,315,316,317,318,319,320,321,322,323,324,325,326,327,328,342,343,344,345,346,347,348,349,350,352,353,354,355,356,370,371,372,373,374,375,379,380,381,382,383,399,406,407,408,409,410,434,435,436,437,461,462,463,464,488,489,490,491,516,517,518,519,542,543,544,545,546,570,571,572,573,597,598,599,600,601,624,625,626,627,628,651,652,653,654,679,680,681,682,706,707,708,709,734,735,736,737],[32,129,253,192,15,21,94,217,218,227,252,252,253,159,6,37,182,201,252,252,253,252,252,252,253,76,1,120,252,253,252,252,252,253,252,252,252,253,35,63,109,232,252,252,253,252,174,143,47,232,252,252,144,73,237,252,252,252,210,180,138,10,233,252,252,210,20,72,236,215,91,71,31,21,253,252,246,92,62,21,206,253,210,92,182,253,208,20,105,242,252,20,79,242,252,231,191,252,231,46,16,191,255,222,41,78,252,253,138,156,232,252,175,10,63,237,252,252,62,1,253,253,217,125,252,231,71,27,221,252,76,37,252,189,15]]
9[0,780,[123,124,125,126,127,128,129,130,150,151,152,153,154,155,156,157,158,178,179,180,181,182,184,185,186,205,206,207,208,213,214,233,234,235,236,241,242,243,244,261,262,263,264,269,270,271,272,289,290,291,292,293,296,297,298,299,300,318,319,320,321,322,323,324,325,326,327,328,346,347,348,349,350,351,352,353,354,355,356,374,377,378,379,380,381,383,384,400,401,402,411,412,428,429,430,439,440,456,457,458,467,468,469,484,485,486,495,496,497,512,513,514,523,524,525,540,541,542,543,549,550,551,552,568,569,570,571,572,573,576,577,578,579,580,597,598,599,600,601,602,603,604,605,606,607,626,627,628,629,630,631,632,633,634,635,655,656,657,658,659,660,661,662],[15,138,201,253,255,232,107,5,15,219,252,252,210,207,214,252,119,138,252,233,89,6,13,202,128,43,253,252,183,159,29,116,253,252,79,63,43,220,106,116,255,232,38,7,212,253,231,42,253,252,154,30,9,155,252,252,230,222,252,252,227,184,132,197,252,252,252,199,25,119,160,236,252,253,252,227,160,244,116,158,61,85,75,22,16,178,220,9,128,11,231,231,93,252,116,157,230,93,252,116,116,237,25,134,252,63,116,234,17,103,252,116,220,241,42,93,253,244,61,38,233,253,221,34,217,253,236,129,9,30,155,252,231,42,84,253,252,252,196,80,185,228,252,227,131,56,219,252,252,252,253,252,252,119,21,15,54,179,147,190,117,22,4]]
0[0,780,[153,154,155,156,157,158,159,160,161,180,181,182,183,184,185,186,187,188,189,207,208,209,210,211,212,213,214,215,216,217,234,235,236,237,238,239,240,241,243,244,245,261,262,263,264,265,266,267,268,269,270,271,272,273,289,290,291,292,293,294,295,298,299,300,301,317,318,319,320,321,322,323,326,327,328,329,345,346,347,348,349,353,354,355,356,357,373,374,375,376,377,381,382,383,384,385,400,401,402,403,404,409,410,411,412,428,429,430,431,437,438,439,440,455,456,457,458,459,465,466,467,468,483,484,485,486,493,494,495,510,511,512,513,514,520,521,522,523,538,539,540,541,547,548,549,550,551,566,567,568,569,570,571,572,573,574,575,576,577,578,579,594,595,596,597,598,599,600,601,602,603,604,605,623,624,625,626,627,628,629,630,631,632,633,651,652,653,654,655,656,657,658,659,680,681,682,683,684,685,686,687],[28,195,254,254,254,254,254,255,61,6,191,253,253,253,253,253,253,253,60,26,190,253,253,253,253,240,191,242,253,60,15,187,253,253,253,253,253,200,211,253,60,22,66,253,253,253,253,241,209,44,23,218,253,60,124,253,253,253,253,253,182,131,253,253,60,38,217,253,253,244,111,37,131,253,253,60,124,253,253,253,165,22,182,253,253,60,124,253,253,240,45,53,253,253,249,58,16,168,253,216,45,53,253,253,138,159,253,253,147,53,253,253,138,136,252,253,227,5,53,253,243,101,140,253,253,124,156,253,218,13,164,253,142,5,32,233,253,218,62,253,253,130,37,203,253,253,127,62,253,253,147,36,36,36,36,151,222,253,245,127,8,34,202,253,253,253,253,253,253,253,253,253,200,140,253,253,253,253,253,253,253,248,235,65,87,173,253,253,253,253,253,253,182,14,78,96,253,253,253,137,56]]
2[0,780,[94,95,96,97,98,99,100,121,122,123,124,125,126,127,128,129,149,150,151,152,153,154,155,156,157,158,177,178,179,180,181,182,183,184,185,186,187,205,206,207,208,209,210,211,212,213,214,215,233,234,235,236,240,241,242,243,244,261,262,263,269,270,271,272,297,298,299,300,301,326,327,328,329,354,355,356,357,383,384,385,402,403,404,405,406,407,408,411,412,413,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,510,511,512,513,514,515,516,519,520,521,522,523,524,525,526,538,539,540,541,542,543,544,546,547,548,549,550,551,552,553,554,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,594,595,596,597,598,599,600,601,602,603,604,605,606,607,623,624,625,626,627,628,629,630,631,632,633,634],[8,78,156,209,165,43,11,116,157,252,252,252,252,253,205,51,211,253,252,252,252,252,253,252,225,7,211,253,252,252,252,252,227,252,252,196,28,211,253,252,252,226,59,42,182,252,252,129,212,254,222,106,36,224,253,253,62,53,63,16,48,252,252,141,11,210,252,215,6,99,252,253,63,11,218,253,63,212,255,63,15,85,85,85,85,85,57,211,253,107,2,92,127,192,252,252,252,252,253,246,232,232,249,253,63,92,252,252,253,252,252,252,252,253,252,252,252,252,253,133,215,252,252,253,252,252,252,252,253,252,252,252,252,253,203,9,85,253,253,253,194,106,53,62,120,156,253,253,255,253,188,85,252,252,252,129,57,71,71,146,211,252,252,252,160,231,231,85,252,252,252,253,246,249,232,249,253,252,252,252,244,53,51,72,64,247,252,252,253,252,252,252,252,253,252,252,236,66,56,252,252,253,252,252,252,252,253,252,235,31]]
6[0,780,[72,73,99,100,101,126,127,128,129,154,155,156,181,182,183,184,209,210,211,236,237,238,263,264,265,266,290,291,292,293,297,298,299,300,318,319,320,324,325,326,327,328,329,346,347,348,351,352,353,354,355,356,357,358,373,374,375,378,379,380,381,384,385,386,400,401,402,403,406,407,408,412,413,414,428,429,430,433,434,435,440,441,442,456,457,458,461,462,463,468,469,483,484,485,489,490,491,494,495,496,497,511,512,513,518,519,520,521,522,523,524,539,540,541,542,543,544,545,546,547,548,549,550,551,568,569,570,571,572,573,574,575,576,577,596,597,598,599,600,601,602],[255,128,64,255,128,64,255,255,128,128,255,255,64,191,255,64,255,255,191,191,255,191,128,255,255,64,64,255,255,64,64,128,128,64,191,255,191,128,255,255,255,255,255,255,255,64,128,255,255,255,128,255,255,128,128,255,128,128,255,255,191,128,255,128,64,255,255,64,191,255,191,64,255,128,128,255,191,64,255,255,64,255,64,255,255,64,128,255,191,191,255,128,255,255,128,255,64,64,255,255,128,128,255,255,255,255,128,191,255,255,128,64,255,255,128,128,128,128,255,255,255,255,255,64,255,255,255,255,255,255,255,191,128,64,64,255,255,255,255,255,191]]
7[0,780,[199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,257,258,259,260,261,262,270,271,272,298,299,300,326,327,328,353,354,355,356,381,382,383,408,409,410,411,436,437,438,439,463,464,465,466,491,492,493,518,519,520,521,546,547,548,549,574,575,576,601,602,603,604,629,630,631,656,657,658,659,684,685,686,687,688,712,713,714,715,716,740,741,742,743,744],[21,214,253,152,152,152,152,152,152,152,152,254,253,254,172,152,71,61,213,252,253,252,253,252,253,252,253,252,213,252,253,252,253,252,82,41,102,102,102,102,82,52,253,102,132,252,102,255,253,102,41,253,252,20,163,254,131,41,243,253,50,113,253,224,20,41,233,252,81,123,254,233,21,223,253,111,152,253,224,20,233,252,162,102,254,253,41,183,253,171,11,213,254,131,51,252,233,30,41,51,253,254,213,183,31,232,253,212,20]]
8[0,780,[152,153,154,155,156,157,158,159,161,162,163,179,180,181,182,183,184,185,186,187,188,189,190,191,207,208,209,210,211,214,215,216,217,218,235,236,237,242,243,244,245,263,264,265,268,269,270,271,272,273,291,292,293,296,297,298,299,300,301,319,320,321,322,323,324,325,326,327,328,348,349,350,351,352,353,354,376,377,378,379,380,381,403,404,405,406,407,408,431,432,433,434,435,436,437,457,458,459,460,462,463,464,465,485,486,487,491,492,493,512,513,514,515,519,520,521,540,541,542,547,548,549,567,568,569,570,575,576,595,596,597,601,602,603,604,622,623,624,625,627,628,629,630,631,632,650,651,652,653,654,655,656,657,658,659,679,680,681,682,683,684,685],[77,211,254,254,255,254,133,8,36,98,3,1,157,253,253,243,173,100,250,123,7,147,186,14,6,253,225,82,57,249,244,187,240,42,183,236,54,249,253,253,188,243,238,33,34,197,252,253,253,147,193,253,199,200,253,253,253,211,8,11,251,252,160,215,252,253,245,61,9,131,253,253,253,253,243,57,44,253,253,253,218,63,30,168,244,236,253,124,215,199,49,87,253,187,7,34,144,205,70,10,204,253,67,89,253,129,88,253,141,43,229,248,13,78,253,141,189,253,133,91,242,125,10,201,195,10,195,158,84,253,134,11,148,237,128,12,198,253,86,41,84,111,253,153,9,22,221,253,241,219,236,253,237,126,8,37,223,253,253,195,69,14]]
3[0,780,[171,172,173,174,175,176,177,178,179,180,181,182,199,200,201,202,203,204,205,206,207,208,209,210,211,227,228,229,230,233,234,235,236,237,238,239,263,264,265,266,267,290,291,292,293,294,295,318,319,320,321,322,323,324,346,347,348,349,350,351,352,353,354,375,377,378,379,380,381,382,383,407,408,409,410,411,412,437,438,439,440,441,466,467,468,469,470,495,496,497,498,524,525,526,552,553,554,580,581,582,608,609,610,628,629,636,637,638,655,656,657,658,659,660,661,662,663,664,665,666,684,685,686,687,688,689,690,691,692,693,694,713,714,715,716,717,718,719,720],[7,7,77,142,254,254,254,254,254,163,98,5,254,253,253,252,241,241,243,253,253,253,253,219,33,236,229,111,100,19,111,111,141,249,253,172,6,56,228,253,160,7,141,253,253,208,19,129,253,253,253,226,161,46,144,231,210,243,253,253,224,123,6,40,61,117,219,253,253,183,17,24,117,245,253,135,32,104,246,253,169,34,54,235,253,167,2,102,248,253,5,196,253,106,112,253,129,112,253,175,112,253,144,78,26,163,253,78,28,219,206,112,112,112,112,112,224,252,253,5,9,195,253,253,253,253,253,253,201,78,1,4,5,5,5,51,129,17,3]]
9[0,780,[208,209,210,211,212,213,214,215,216,234,235,236,237,238,239,240,241,242,243,244,245,261,262,263,264,265,266,267,268,269,270,271,272,273,289,290,291,292,293,294,295,297,298,299,300,301,316,317,318,319,320,324,325,326,327,328,329,344,345,346,347,348,349,350,351,352,353,354,355,356,357,371,372,373,374,375,376,377,378,379,380,381,382,383,399,400,401,402,407,408,409,410,411,427,428,429,430,431,432,433,434,435,436,437,438,456,457,458,459,460,461,462,463,464,465,466,485,486,487,488,489,490,491,492,493,515,516,517,518,519,520,521,544,545,546,547,548,572,573,574,575,599,600,601,602,626,627,628,629,630,653,654,655,656,657,681,682,683,684,708,709,710,711,736,737,738,739],[39,125,225,254,254,255,254,170,48,43,101,250,253,253,253,253,253,253,253,250,161,94,246,247,253,253,196,227,116,56,253,253,253,234,152,253,253,180,19,9,15,4,55,253,253,166,41,238,253,253,125,21,189,232,253,253,117,219,253,220,165,34,92,21,52,228,253,253,241,82,13,38,241,170,25,20,12,75,39,59,253,253,253,110,112,253,236,67,100,253,253,221,16,23,239,253,235,202,135,99,173,240,253,253,110,54,200,253,253,253,253,253,253,253,241,63,25,112,244,253,237,142,253,253,111,61,71,51,159,253,188,22,15,150,236,212,22,99,253,243,98,72,237,253,105,10,219,253,195,22,8,171,253,207,21,105,253,198,76,60,242,253,38,235,253,206,19]]
0[0,780,[122,123,124,125,126,127,128,129,149,150,151,152,153,154,155,156,157,176,177,178,179,180,181,182,183,184,185,186,204,205,206,207,208,209,210,211,212,213,214,215,231,232,233,234,235,236,237,238,239,240,241,242,243,244,259,260,261,262,263,264,265,266,269,270,271,272,273,286,287,288,289,290,292,293,294,298,299,300,301,302,314,315,316,317,318,327,328,329,330,342,343,344,345,355,356,357,358,359,370,371,372,373,384,385,386,387,398,399,400,401,412,413,414,415,426,427,428,429,440,441,442,443,454,455,456,457,468,469,470,471,482,483,484,485,495,496,497,498,499,510,511,512,513,514,523,524,525,526,539,540,541,542,550,551,552,553,554,567,568,569,570,577,578,579,580,581,595,596,597,598,599,603,604,605,606,607,608,609,623,624,625,626,627,628,629,630,631,632,633,634,635,652,653,654,655,656,657,658,659,660,661,662],[8,76,202,254,255,163,37,2,13,182,253,253,253,253,253,253,23,15,179,253,253,212,91,218,253,253,179,109,105,253,253,160,35,156,253,253,253,253,250,113,19,212,253,253,88,121,253,233,128,91,245,253,248,114,104,253,253,110,2,142,253,90,26,199,253,248,63,1,173,253,253,29,84,228,39,72,251,253,215,29,36,253,253,203,13,82,253,253,170,36,253,253,164,11,198,253,184,6,36,253,253,82,138,253,253,35,128,253,253,47,48,253,253,35,154,253,253,47,48,253,253,35,102,253,253,99,48,253,253,35,36,253,253,164,16,208,253,211,17,32,244,253,175,4,44,253,253,156,171,253,253,29,30,217,253,188,19,171,253,253,59,60,217,253,253,70,78,253,253,231,48,26,128,249,253,244,94,15,8,151,253,253,234,101,121,219,229,253,253,201,80,38,232,253,253,253,253,253,253,253,201,66]]
4[0,780,[189,190,191,192,207,208,209,216,217,218,219,220,235,236,237,238,243,244,245,246,247,257,262,263,264,265,266,271,272,273,274,275,285,289,290,291,292,293,298,299,300,301,302,316,317,318,319,320,321,326,327,328,329,330,343,344,345,346,347,353,354,355,356,357,370,371,372,373,374,381,382,383,384,385,397,398,399,400,401,408,409,410,411,412,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,453,454,455,456,457,458,459,460,461,462,463,464,465,466,481,482,483,484,485,486,487,488,489,490,491,492,493,517,518,519,520,544,545,546,547,571,572,573,574,599,600,601,602,625,626,627,628,629,653,654,655,656,681,682,683,709,710,711],[232,253,253,95,3,86,46,91,246,252,232,57,103,252,187,13,22,219,252,252,175,10,8,181,252,246,30,65,252,237,197,64,87,13,172,252,252,104,5,184,252,67,103,8,172,252,248,145,14,109,252,183,137,64,5,224,252,248,134,53,238,252,245,86,12,174,252,223,88,209,252,252,179,9,11,171,252,246,61,83,241,252,211,14,129,252,252,249,220,220,215,111,192,220,221,243,252,252,149,144,253,253,253,253,253,253,253,253,253,255,253,226,153,44,77,77,77,77,77,77,77,77,153,253,235,32,74,214,240,114,24,221,243,57,8,180,252,119,136,252,153,7,3,136,251,226,34,123,252,246,39,165,252,127,165,175,3]]
6[0,780,[73,74,75,76,99,100,101,102,103,104,127,128,129,130,131,132,153,154,155,156,157,158,180,181,182,183,184,185,207,208,209,210,211,234,235,236,237,238,261,262,263,264,265,266,288,289,290,291,292,293,316,317,318,319,320,344,345,346,347,353,354,355,356,357,371,372,373,374,375,379,380,381,382,383,384,385,386,399,400,401,402,403,406,407,408,409,410,411,412,413,414,427,428,429,430,431,433,434,435,436,438,439,440,441,455,456,457,458,459,460,461,462,463,466,467,468,469,483,484,485,486,487,488,489,490,492,493,494,495,496,497,511,512,513,514,515,516,517,519,520,521,522,523,524,525,540,541,542,543,544,545,546,547,548,549,550,551,552,568,569,570,571,572,573,574,575,576,577,578,598,599,600,601,602,603,604,605],[25,214,225,90,7,145,212,253,253,60,106,253,253,246,188,23,45,164,254,253,223,108,24,236,253,252,124,28,100,217,253,218,116,158,175,225,253,92,24,217,241,248,114,2,21,201,253,253,114,3,107,253,253,213,19,170,254,254,169,2,13,100,133,89,18,210,253,253,100,19,76,116,253,253,253,176,4,41,222,253,208,18,93,209,232,217,224,253,253,241,31,157,253,253,229,32,154,250,246,36,49,253,253,168,128,253,253,253,195,125,247,166,69,37,236,253,168,37,253,253,253,253,253,135,32,7,130,73,202,253,133,7,185,253,253,253,253,64,10,210,253,253,253,153,9,66,253,253,253,253,238,218,221,253,253,235,156,37,5,111,228,253,253,253,253,254,253,168,19,9,110,178,253,253,249,63,5]]
7[0,780,[238,239,240,241,242,243,244,245,262,263,264,265,266,267,268,269,270,271,272,273,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,369,370,371,372,373,374,375,376,381,382,383,384,385,397,398,409,410,411,412,436,437,438,439,462,463,464,465,466,467,490,491,492,493,517,518,519,520,521,544,545,546,547,548,571,572,573,574,575,598,599,600,601,602,625,626,627,628,629,652,653,654,655,656,679,680,681,682,683,706,707,708,709,733,734,735,736,761,762,763],[121,121,240,253,218,121,121,44,17,107,184,240,253,252,252,252,252,252,252,219,75,122,230,252,252,252,253,252,252,252,252,252,252,239,56,77,129,213,244,252,252,252,252,252,253,252,252,209,252,252,252,225,240,252,252,252,252,252,252,213,185,53,53,53,89,252,252,252,120,240,232,198,93,164,108,66,28,81,252,252,222,24,76,50,171,252,243,108,144,238,252,115,7,70,241,248,133,28,121,252,252,172,64,255,253,209,21,13,246,253,207,21,10,172,252,209,92,13,168,252,252,92,43,208,252,241,53,15,166,252,204,62,13,166,243,191,29,10,168,231,177,6,172,241,50,177,202,19]]
4[0,780,[158,159,177,178,185,186,187,205,206,213,214,215,233,234,241,242,243,261,262,269,270,271,289,290,297,298,299,317,318,325,326,327,345,346,353,354,355,372,373,374,381,382,383,400,401,402,405,406,407,408,409,410,428,429,430,431,432,433,434,435,436,437,438,456,457,458,459,460,461,462,463,464,465,466,485,486,487,493,494,520,521,522,548,549,550,576,577,578,604,605,606,633,634,661,662,689,690],[196,99,5,49,34,244,98,89,135,40,253,98,171,150,40,253,98,254,233,77,253,98,255,136,77,254,99,254,135,123,253,98,254,135,136,253,98,16,254,135,136,237,8,98,254,135,38,99,98,98,219,155,196,255,208,186,254,254,255,254,254,254,254,105,254,253,239,180,135,39,39,39,237,170,137,92,24,234,155,13,237,155,79,253,155,31,242,155,61,248,155,234,155,234,155,196,155]]
6[0,780,[99,100,101,102,126,127,128,129,130,153,154,155,156,157,158,180,181,182,183,184,185,208,209,210,211,212,235,236,237,238,239,263,264,265,266,267,290,291,292,293,294,296,297,298,318,319,320,321,323,324,325,326,327,328,345,346,347,348,350,351,352,353,354,355,356,372,373,374,375,376,377,378,379,380,381,382,383,384,385,400,401,402,403,405,406,407,408,409,410,411,412,413,428,429,430,431,432,433,434,435,436,438,439,440,441,456,457,458,459,460,461,462,463,466,467,468,469,484,485,486,487,488,489,490,491,494,495,496,497,512,513,514,516,517,518,519,520,521,522,523,524,540,541,542,543,544,545,546,547,548,549,550,551,568,569,570,571,572,573,574,575,576,577,578,596,597,598,599,600,601,602,603,604,605,624,625,626,627,628,629,630,631,632],[50,236,255,124,53,231,253,253,107,9,193,253,253,230,4,7,156,253,253,149,36,24,253,253,190,8,3,175,253,253,72,123,253,253,138,3,10,244,253,230,34,9,24,23,181,253,249,123,69,195,253,249,146,15,21,231,253,202,70,236,253,253,253,253,170,22,139,253,213,26,13,200,253,253,183,252,253,220,22,72,253,253,129,86,253,253,129,4,105,253,253,70,72,253,253,77,22,245,253,183,4,2,105,253,70,132,253,253,11,24,253,253,116,1,150,253,70,189,253,241,10,24,253,253,59,82,253,212,30,189,253,147,24,253,253,150,30,44,208,212,31,189,253,174,3,7,185,253,253,227,247,184,30,150,253,253,145,95,234,253,253,253,126,1,72,253,253,253,253,253,253,253,169,14,5,114,240,253,253,234,135,44,3]]
8[0,780,[154,155,156,157,158,159,180,181,182,183,184,185,186,187,188,206,207,208,209,210,211,212,213,214,215,216,233,234,235,236,237,238,242,243,244,245,261,262,263,264,265,270,271,272,273,289,290,291,292,293,297,298,299,300,317,318,319,320,321,325,326,327,328,345,346,347,348,349,350,352,353,354,355,374,375,376,377,378,379,380,381,382,383,403,404,405,406,407,408,409,432,433,434,435,436,460,461,462,463,464,487,488,489,490,491,492,514,515,516,517,518,519,520,541,542,543,544,545,546,547,548,569,570,571,572,573,574,575,576,596,597,598,599,601,602,603,624,625,626,627,628,629,630,631,652,653,654,655,656,657,658,680,681,682,683,684,685,686],[11,139,212,253,159,86,34,89,203,253,252,252,252,252,74,49,184,234,252,252,184,110,100,208,252,199,95,233,252,252,176,56,17,234,249,75,220,253,178,54,4,43,240,243,50,221,255,180,55,5,7,160,253,168,116,253,252,252,67,91,252,231,42,32,190,252,252,185,38,119,234,252,54,15,177,252,252,179,155,236,227,119,4,26,221,252,252,253,252,130,32,229,253,255,144,66,236,252,253,92,66,234,252,252,253,92,19,236,252,252,252,253,92,53,181,252,168,43,232,253,92,179,255,218,32,93,253,252,84,81,244,239,33,114,252,209,207,252,237,70,153,240,252,32,207,252,253,252,252,252,210,61,242,253,252,168,96,12]]
0[0,780,[126,127,128,129,130,152,153,154,155,156,157,158,179,180,181,182,183,184,185,186,187,188,207,208,209,210,211,212,213,214,215,216,234,235,236,237,238,239,240,241,242,243,244,261,262,263,264,265,266,267,268,269,270,271,272,289,290,291,292,293,294,296,297,298,299,300,317,318,319,320,321,322,324,325,326,327,328,344,345,346,347,348,349,353,354,355,356,371,372,373,374,375,376,377,381,382,383,384,399,400,401,402,403,410,411,412,427,428,429,430,431,438,439,440,455,456,457,458,459,466,467,468,483,484,485,486,487,493,494,495,496,511,512,513,514,520,521,522,523,524,539,540,541,542,546,547,548,549,550,551,567,568,569,570,571,572,573,574,575,576,577,578,595,596,597,598,599,600,601,602,603,604,605,606,623,624,625,626,627,628,629,630,631,632,633,634,651,652,653,654,655,656,657,658,659,660],[68,254,255,254,107,11,176,230,253,253,253,212,28,197,253,253,253,253,253,229,107,14,194,253,253,253,253,253,253,253,253,53,69,241,253,253,253,253,241,186,253,253,195,10,161,253,253,253,246,40,57,231,253,253,195,140,253,253,253,253,154,25,253,253,253,195,213,253,253,253,135,8,3,128,253,253,195,77,238,253,253,253,7,116,253,253,195,11,165,253,253,231,70,1,78,237,253,195,33,253,253,253,182,200,253,195,98,253,253,253,24,42,253,195,197,253,253,253,24,163,253,195,197,253,253,189,13,53,227,253,121,197,253,253,114,21,227,253,231,27,197,253,253,114,5,131,143,253,231,59,197,253,253,236,73,58,217,223,253,253,253,174,197,253,253,253,253,253,253,253,253,253,253,48,149,253,253,253,253,253,253,253,253,182,15,3,12,168,253,253,253,253,253,248,89,23]]
7[0,780,[209,210,211,212,213,214,215,234,235,236,237,238,239,240,241,242,243,260,261,262,263,264,265,266,267,268,269,270,271,288,289,290,291,292,293,294,295,296,297,298,299,316,317,318,319,324,325,326,327,351,352,353,354,379,380,381,382,407,408,409,434,435,436,437,462,463,464,489,490,491,492,517,518,519,520,544,545,546,547,572,573,574,575,600,601,602,603,628,629,630,631,656,657,658,683,684,685,686,711,712,713,714,715,740,741,742,743],[7,67,141,205,255,255,153,45,57,121,188,253,253,254,253,253,253,111,198,241,253,254,253,253,215,179,253,253,165,242,253,253,253,191,116,28,16,79,253,253,40,64,114,114,13,142,254,207,13,26,217,253,143,151,254,234,37,226,254,197,48,242,252,75,160,253,201,45,241,253,114,57,253,253,114,4,180,254,242,54,253,253,116,141,253,253,28,141,253,177,3,205,254,56,26,254,253,81,25,254,253,235,22,204,228,103,3]]
8[0,780,[152,153,154,155,156,159,160,161,162,179,180,181,182,183,184,185,186,187,188,189,190,207,208,209,210,211,212,213,214,215,216,217,218,234,235,236,237,238,239,240,241,242,243,244,245,246,261,262,263,264,269,270,271,272,273,289,290,291,292,297,298,299,300,318,319,320,321,325,326,327,328,346,347,348,349,350,351,352,353,354,355,356,375,376,377,378,379,380,381,382,403,404,405,406,407,408,431,432,433,434,435,436,458,459,460,461,462,463,464,486,487,488,489,490,491,492,493,513,514,515,516,518,519,520,521,540,541,542,543,545,546,547,548,567,568,569,570,571,573,574,575,576,595,596,597,598,601,602,603,604,623,624,625,626,627,628,629,630,631,651,652,653,654,655,656,657,658,659,679,680,681,682,683,684,685],[13,29,29,66,28,10,179,242,47,19,144,253,252,252,215,170,82,28,209,253,84,123,252,253,252,252,252,253,240,72,210,253,84,151,246,252,178,28,28,28,253,151,91,252,253,84,16,179,253,178,166,91,229,253,201,47,196,252,103,16,215,252,252,131,252,228,38,204,252,252,127,32,228,252,226,38,38,213,253,252,127,3,85,253,255,203,253,253,214,38,28,184,253,252,252,202,29,184,253,252,252,28,26,159,252,253,252,252,178,120,253,253,114,194,253,253,63,170,225,233,96,131,252,252,38,89,253,252,80,13,206,252,202,38,225,253,102,6,13,206,252,102,86,253,251,75,104,253,206,13,110,252,244,144,95,169,253,252,142,110,252,253,252,252,252,244,93,13,10,128,253,252,202,102,25]]
3[0,780,[150,151,152,153,154,155,156,177,178,179,180,181,182,183,184,185,204,205,206,207,208,209,210,211,212,213,232,233,234,235,239,240,241,260,261,262,266,267,268,269,294,295,296,320,321,322,323,324,346,347,348,349,350,351,352,353,374,375,376,377,378,379,380,381,382,402,403,404,405,406,407,408,409,410,436,437,438,439,464,465,466,467,493,494,495,521,522,523,548,549,550,551,575,576,577,578,579,597,598,599,602,603,604,605,606,625,626,627,628,629,630,631,632,633,634,653,654,655,656,657,658,659,660,661,681,682,683,684,685,686,687],[15,108,233,253,255,180,101,36,219,252,252,252,253,252,227,50,85,222,252,233,141,69,79,227,252,160,116,253,235,64,161,252,160,11,128,18,22,244,252,108,97,253,184,38,99,253,244,98,13,153,240,252,253,240,101,13,99,252,252,252,253,252,252,215,19,26,221,210,137,23,96,221,252,128,70,253,253,64,25,223,252,116,207,252,116,207,252,116,64,248,252,116,5,138,253,253,53,5,47,34,5,136,252,252,157,24,252,234,90,70,191,252,252,227,16,24,252,252,252,252,253,235,128,29,13,211,252,252,252,137,60]]
1[0,780,[156,157,158,159,184,185,186,187,212,213,214,215,239,240,241,242,243,267,268,269,270,295,296,297,298,322,323,324,325,350,351,352,353,377,378,379,380,381,405,406,407,408,433,434,435,436,460,461,462,463,464,488,489,490,491,515,516,517,518,519,542,543,544,545,546,570,571,572,573,598,599,600,601,625,626,627,628,652,653,654,655,680,681,682],[85,255,103,1,205,253,253,30,205,253,253,30,44,233,253,244,27,135,253,253,100,153,253,240,76,12,208,253,166,69,253,253,142,14,110,253,235,33,63,223,235,130,186,253,235,37,17,145,253,231,35,69,220,231,123,18,205,253,176,27,17,125,253,185,39,71,214,231,41,167,253,225,33,72,205,207,14,30,249,233,49,32,253,89]]

Showing the first 715 rows.

The pixel intensities are represented in features as a sparse vector, for example the first observation, as seen in row 1 of the output to display(training) or training.show(2,false) above, has label as 5, i.e. the hand-written image is for the number 5. And this hand-written image is the following sparse vector (just click the triangle to the left of the feature in first row to see the following):

type: 0
size: 780
indices: [152,153,155,...,682,683]
values: [3, 18, 18,18,126,...,132,16]

Here,

  • type: 0 says we have a sparse vector that only represents non-zero entries (as opposed to a dense vector where every entry is represented).
  • size: 780 says the vector has 780 indices in total
    • these indices from 0,...,779 are a unidimensional indexing of the two-dimensional array of pixels in the image
  • indices: [152,153,155,...,682,683] are the indices from the [0,1,...,779] possible indices with non-zero values
    • a value is an integer encoding the gray-level at the pixel index
  • values: [3, 18, 18,18,126,...,132,16] are the actual gray level values, for example:
    • at pixed index 152 the gray-level value is 3,
    • at index 153 the gray-level value is 18,
    • ..., and finally at
    • at index 683 the gray-level value is 18

Train a Decision Tree

We begin by training a decision tree using the default settings. Before training, we want to tell the algorithm that the labels are categories 0-9, rather than continuous values. We use the StringIndexer class to do this. We tie this feature preprocessing together with the tree algorithm using a Pipeline. ML Pipelines are tools Spark provides for piecing together Machine Learning algorithms into workflows. To learn more about Pipelines, check out other ML example notebooks in Databricks and the ML Pipelines user guide. Also See mllib-decision-tree.html#basic-algorithm.

// Import the ML algorithms we will use.
import org.apache.spark.ml.classification.{DecisionTreeClassifier, DecisionTreeClassificationModel}
import org.apache.spark.ml.feature.StringIndexer
import org.apache.spark.ml.Pipeline
import org.apache.spark.ml.classification.{DecisionTreeClassifier, DecisionTreeClassificationModel} import org.apache.spark.ml.feature.StringIndexer import org.apache.spark.ml.Pipeline
// StringIndexer: Read input column "label" (digits) and annotate them as categorical values.
val indexer = new StringIndexer().setInputCol("label").setOutputCol("indexedLabel")

// DecisionTreeClassifier: Learn to predict column "indexedLabel" using the "features" column.
val dtc = new DecisionTreeClassifier().setLabelCol("indexedLabel")

// Chain indexer + dtc together into a single ML Pipeline.
val pipeline = new Pipeline().setStages(Array(indexer, dtc))
indexer: org.apache.spark.ml.feature.StringIndexer = strIdx_6eec6187d28c dtc: org.apache.spark.ml.classification.DecisionTreeClassifier = dtc_f88643e1345f pipeline: org.apache.spark.ml.Pipeline = pipeline_5d92a9952398

Now, let's fit a model to our data.

val model = pipeline.fit(training)
model: org.apache.spark.ml.PipelineModel = pipeline_5d92a9952398

We can inspect the learned tree by displaying it using Databricks ML visualization. (Visualization is available for several but not all models.)

// The tree is the last stage of the Pipeline.  Display it!
val tree = model.stages.last.asInstanceOf[DecisionTreeClassificationModel]
display(tree)
70feature: 54336feature: 555feature: 65874feature: 51430feature: 206feature: 347feature: 52174feature: 59869feature: 486feature: 29773feature: 65602feature: 490feature: 486feature: 290feature: 48976feature: 65573feature: 348feature: 34693feature: 32095feature: 380feature: 489feature: 43564feature: 15668feature: 98feature: 21179feature: 51641feature: 485feature: 405feature: 430feature: 568feature: 350<=1.25e+1>1.25e+1<=8.50e+0>8.50e+0<=5.00e-1>5.00e-1<=1.65e+1>1.65e+1<=4.50e+0>4.50e+0<=7.50e+0>7.50e+0<=5.00e-1>5.00e-1<=5.00e-1>5.00e-1<=1.81e+2>1.81e+2<=5.50e+0>5.50e+0<=5.00e-1>5.00e-1<=1.18e+2>1.18e+2<=7.75e+1>7.75e+1<=2.95e+1>2.95e+1<=4.45e+1>4.45e+1<=5.00e-1>5.00e-1<=8.55e+1>8.55e+1<=5.00e-1>5.00e-1<=5.00e-1>5.00e-1<=2.50e+0>2.50e+0<=1.05e+1>1.05e+1<=5.00e-1>5.00e-1<=5.00e-1>5.00e-1<=5.00e-1>5.00e-1<=2.85e+1>2.85e+1<=1.45e+1>1.45e+1<=1.25e+1>1.25e+1<=2.50e+0>2.50e+0<=5.00e-1>5.00e-1<=5.00e-1>5.00e-1<=1.27e+2>1.27e+2

Above, we can see how the tree makes predictions. When classifying a new example, the tree starts at the "root" node (at the top). Each tree node tests a pixel value and goes either left or right. At the bottom "leaf" nodes, the tree predicts a digit as the image's label.

Hyperparameter Tuning

Run the next cell and come back into hyper-parameter tuning for a couple minutes.

Show code

Exploring "maxDepth": training trees of different sizes

In this section, we test tuning a single hyperparameter maxDepth, which determines how deep (and large) the tree can be. We will train trees at varying depths and see how it affects the accuracy on our held-out test set.

Note: The next cell can take about 1 minute to run since it is training several trees which get deeper and deeper.

val variedMaxDepthModels = (0 until 8).map { maxDepth =>
  // For this setting of maxDepth, learn a decision tree.
  dtc.setMaxDepth(maxDepth)
  // Create a Pipeline with our feature processing stage (indexer) plus the tree algorithm
  val pipeline = new Pipeline().setStages(Array(indexer, dtc))
  // Run the ML Pipeline to learn a tree.
  pipeline.fit(training)
}
variedMaxDepthModels: scala.collection.immutable.IndexedSeq[org.apache.spark.ml.PipelineModel] = Vector(pipeline_1d0cb6a89237, pipeline_e1cfeb6a1c9e, pipeline_f9b772ea17dc, pipeline_3ca64f926587, pipeline_50572fd707e6, pipeline_b38b8899bb9f, pipeline_ab36b955d7a6, pipeline_4bb4c02e1f81)

We will use the default metric to evaluate the performance of our classifier:

Show code
// Define an evaluation metric.  In this case, we will use "accuracy".
import org.apache.spark.ml.evaluation.MulticlassClassificationEvaluator
val evaluator = new MulticlassClassificationEvaluator().setLabelCol("indexedLabel").setMetricName("f1") // default MetricName
import org.apache.spark.ml.evaluation.MulticlassClassificationEvaluator evaluator: org.apache.spark.ml.evaluation.MulticlassClassificationEvaluator = mcEval_1d51c94f1db9
// For each maxDepth setting, make predictions on the test data, and compute the classifier's f1 performance metric.
val f1MetricPerformanceMeasures = (0 until 8).map { maxDepth =>
  val model = variedMaxDepthModels(maxDepth)
  // Calling transform() on the test set runs the fitted pipeline.
  // The learned model makes predictions on each test example.
  val predictions = model.transform(test)
  // Calling evaluate() on the predictions DataFrame computes our performance metric.
  (maxDepth, evaluator.evaluate(predictions))
}.toDF("maxDepth", "f1")
f1MetricPerformanceMeasures: org.apache.spark.sql.DataFrame = [maxDepth: int, f1: double]

We can display our accuracy results and see immediately that deeper, larger trees are more powerful classifiers, achieving higher accuracies.

Note: When you run f1MetricPerformanceMeasures.show(), you will get a table with f1 score getting better (i.e., approaching 1) with depth.

f1MetricPerformanceMeasures.show()
+--------+-------------------+ |maxDepth| f1| +--------+-------------------+ | 0| 0.023138302649304| | 1|0.07668173374479163| | 2| 0.2140350229119273| | 3|0.43248361250767764| | 4| 0.592128853359567| | 5| 0.6815401032131663| | 6| 0.7491854893678029| | 7| 0.7907828043434496| +--------+-------------------+

Even though deeper trees are more powerful, they are not always better (recall from the SF/NYC city classification from house features at The visual description of ML and Decision Trees). If we kept increasing the depth on a rich enough dataset, training would take longer and longer. We also might risk overfitting (fitting the training data so well that our predictions get worse on test data); it is important to tune parameters based on held-out data to prevent overfitting. This will ensure that the fitted model generalizes well to yet unseen data, i.e. minimizes generalization error in a mathematical statistical sense.

Exploring "maxBins": discretization for efficient distributed computing

This section explores a more expert-level setting maxBins. For efficient distributed training of Decision Trees, Spark and most other libraries discretize (or "bin") continuous features (such as pixel values) into a finite number of values. This is an important step for the distributed implementation, but it introduces a tradeoff: Larger maxBins mean your data will be more accurately represented, but it will also mean more communication (and slower training).

The default value of maxBins generally works, but it is interesting to explore on our handwritten digit dataset. Remember our digit image from above:

Image of a digit

It is grayscale. But if we set maxBins = 2, then we are effectively making it a black-and-white image, not grayscale. Will that affect the accuracy of our model? Let's see!

Note: The next cell can take about 35 seconds to run since it trains several trees. Read the details on maxBins at mllib-decision-tree.html#split-candidates.

dtc.setMaxDepth(6) // Set maxDepth to a reasonable value.
// now try the maxBins "hyper-parameter" which actually acts as a "coarsener" 
//     mathematical researchers should note that it is a sub-algebra of the finite 
//     algebra of observable pixel images at the finest resolution available to us
// giving a compression of the image to fewer coarsely represented pixels
val f1MetricPerformanceMeasures = Seq(2, 4, 8, 16, 32).map { case maxBins =>
  // For this value of maxBins, learn a tree.
  dtc.setMaxBins(maxBins)
  val pipeline = new Pipeline().setStages(Array(indexer, dtc))
  val model = pipeline.fit(training)
  // Make predictions on test data, and compute accuracy.
  val predictions = model.transform(test)
  (maxBins, evaluator.evaluate(predictions))
}.toDF("maxBins", "f1")
f1MetricPerformanceMeasures: org.apache.spark.sql.DataFrame = [maxBins: int, f1: double]
f1MetricPerformanceMeasures.show()
+-------+------------------+ |maxBins| f1| +-------+------------------+ | 2|0.7410938541483529| | 4|0.7388130887039193| | 8|0.7439574339505297| | 16|0.7409963741202386| | 32|0.7491854893678029| +-------+------------------+

We can see that extreme discretization (black and white) hurts performance as measured by F1-error, but only a bit. Using more bins increases the accuracy (but also makes learning more costly).

What's next?

  • Explore: Try out tuning other parameters of trees---or even ensembles like Random Forests or Gradient-Boosted Trees.
  • Automated tuning: This type of tuning does not have to be done by hand. (We did it by hand here to show the effects of tuning in detail.) MLlib provides automated tuning functionality via CrossValidator. Check out the other Databricks ML Pipeline guides or the Spark ML user guide for details.

Resources

If you are interested in learning more on these topics, these resources can get you started: