%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % This is a PROMISE Software Engineering Repository data set made publicly % available in order to encourage repeatable, verifiable, refutable, and/or % improvable predictive models of software engineering. % % If you publish material based on PROMISE data sets then, please % follow the acknowledgment guidelines posted on the PROMISE repository % web page http://promise.site.uottawa.ca/SERepository . %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % 1. Title: Class-level data for KC1 % This one includes a {DEF,NODEF} attribute (DL) to indicate % defectiveness. DL is equal to DEF if the module is in the Top5% in % defect count ranking, NODEF otherwise. % % 2. Sources % (a) Creator: A. Gunes Koru % (b) Date: February 21, 2005 % (c) Contact: gkoru AT umbc DOT edu Phone: +1 (410) 455 8843 % % 3. Donor: A. Gunes Koru % % 4. Past Usage: This data set was used for: % % A. Gunes Koru and Hongfang Liu, "An Investigation of the Effect % of Module Size on Defect Prediction Using Static Measures", PROMISE - % Predictive Models in Software Engineering Workshop, ICSE 2005, % May 15th 2005, Saint Louis, Missouri, US. % % We used several machine learning algorithms to predict the defective % modules in five NASA products, namely, CM1, JM1, KC1, KC2, and PC1. % A set of static measures were used as predictor variables. While doing % so, we observed that a large portion of the modules were small, as % measured by lines of code (LOC). When we experimented on the data % subsets created by partitioning according to module size, we obtained % higher prediction performance for the subsets that include larger % modules. We also performed defect prediction using class-level data % for KC1 rather than method-level data. In this case, the use of class-level % data resulted in improved prediction performance compared to using % method-level data. These findings suggest that quality assurance activities % can be guided even better if defect predictions are made by using % data that belong to larger modules. % % 5. Features: % % The descriptions of the features are taken from % http://mdp.ivv.nasa.gov/mdp_glossary.html % % Feature Used as the Response Variable: % ====================================== % DL: Defect level. DEF if the class is in the Top 5% in defect ranking, NODEF % otherwise. % % Features at Class Level Originally % ================================== % % PERCENT_PUB_DATA: The percentage of data that is public and protected data % in a class. In general, lower values indicate greater encapsulation. It is % measure of encapsulation. % % ACCESS_TO_PUB_DATA: The amount of times that a class's public and protected % data is accessed. In general, lower values indicate greater encapsulation. % It is a measure of encapsulation. % % COUPLING_BETWEEN_OBJECTS: The number of distinct non-inheritance-related % classes on which a class depends. If a class that is heavily dependent on % many classes outside of its hierarchy is introduced into a library, all the % classes upon which it depends need to be introduced as well. This may be % acceptable, especially if the classes which it references are already part % of a class library and are even more fundamental than the specified class. % % DEPTH: The level for a class. For instance, if a parent has one child the % depth for the child is two. Depth indicates at what level a class is located % within its class hierarchy. In general, inheritance increases when depth % increases. % % LACK_OF_COHESION_OF_METHODS: For each data field in a class, the percentage % of the methods in the class using that data field; the percentages are % averaged then subtracted from 100%. The locm metric indicates low or % high percentage of cohesion. If the percentage is low, the class is cohesive. % If it is high, it may indicate that the class could be split into separate % classes that will individually have greater cohesion. % % NUM_OF_CHILDREN: The number of classes derived from a specified class. % % DEP_ON_CHILD: Whether a class is dependent on a descendant. % % FAN_IN: This is a count of calls by higher modules. % % RESPONSE_FOR_CLASS: A count of methods implemented within a class plus the % number of methods accessible to an object class due to inheritance. In % general, lower values indicate greater polymorphism. % % WEIGHTED_METHODS_PER_CLASS: A count of methods implemented within a class % (rather than all methods accessible within the class hierarchy). In general, % lower values indicate greater polymorphism. % Features Transformed to Class Level (Originally at Method Level) % ================================================================ % % Transformation was achieved by obtaining min, max, sum, and avg values % over all the methods in a class. There this data set includes four % features for all of the following features that were originally at the % method level but transformed to the class level. For example, LOC_BLANK % has minLOC_BLANK, maxLOC_BLANK, avgLOC_BLANK, and maxLOC_BLANK. % % LOC_BLANK: Lines with only white space or no text content. % % BRANCH_COUNT: This metric is the number of branches for each module. % Branches are defined as those edges that exit from a decision node. % The greater the number of branches in a program's modules, the more % testing resource's required. % % LOC_CODE_AND_COMMENT: Lines that contain both code and comment. % % LOC_COMMENTS: The number of lines in a module. This particular metric % includes all blank lines, comment lines, and source lines. % % CYCLOMATIC_COMPLEXITY: It is a measure of the complexity of a modules % decision structure. It is the number of linearly independent paths. % % DESIGN_COMPLEXITY: Design complexity is a measure of a module's decision % structure as it relates to calls to other modules. This quantifies the % testing effort related to integration. % % ESSENTIAL_COMPLEXITY: Essential complexity is a measure of the degree to % which a module contains unstructured constructs. % % LOC_EXECUTABLE: Source lines of code that contain only code and white space. % % HALSTEAD_CONTENT: Complexity of a given algorithm independent of the % language used to express the algorithm. % % HALSTEAD_DIFFICULTY: Level of difficulty in the program. % % HALSTEAD_EFFORT: Estimated mental effort required to develop the program. % % HALSTEAD_ERROR_EST: Estimated number of errors in the program. % % HALSTEAD_LENGTH: This is a Halstead metric that includes the total number % of operator occurrences and total number of operand occurrences. % % HALSTEAD_LEVEL: Level at which the program can be understood. % % HALSTEAD_PROG_TIME: Estimated amount of time to implement the algorithm. % % HALSTEAD_VOLUME: This is a Halstead metric that contains the minimum % number of bits required for coding the program. % % NUM_OPERANDS: Variables and identifiers Constants (numeric literal/string) % Function names when used during calls. % % NUM_UNIQUE_OPERANDS: Variables and identifiers Constants % (numeric literal/string) Function names when used during calls % % NUM_UNIQUE_OPERATORS: Number of unique operators. % % LOC_TOTAL: Total Lines of Code. @relation kc1-class-level-top5percentDF @attribute PERCENT_PUB_DATA numeric @attribute ACCESS_TO_PUB_DATA numeric @attribute COUPLING_BETWEEN_OBJECTS numeric @attribute DEPTH numeric @attribute LACK_OF_COHESION_OF_METHODS numeric @attribute NUM_OF_CHILDREN numeric @attribute DEP_ON_CHILD numeric @attribute FAN_IN numeric @attribute RESPONSE_FOR_CLASS numeric @attribute WEIGHTED_METHODS_PER_CLASS numeric @attribute minLOC_BLANK numeric @attribute minBRANCH_COUNT numeric @attribute minLOC_CODE_AND_COMMENT numeric @attribute minLOC_COMMENTS numeric @attribute minCYCLOMATIC_COMPLEXITY numeric @attribute minDESIGN_COMPLEXITY numeric @attribute minESSENTIAL_COMPLEXITY numeric @attribute minLOC_EXECUTABLE numeric @attribute minHALSTEAD_CONTENT numeric @attribute minHALSTEAD_DIFFICULTY numeric @attribute minHALSTEAD_EFFORT numeric @attribute minHALSTEAD_ERROR_EST numeric @attribute minHALSTEAD_LENGTH numeric @attribute minHALSTEAD_LEVEL numeric @attribute minHALSTEAD_PROG_TIME numeric @attribute minHALSTEAD_VOLUME numeric @attribute minNUM_OPERANDS numeric @attribute minNUM_OPERATORS numeric @attribute minNUM_UNIQUE_OPERANDS numeric @attribute minNUM_UNIQUE_OPERATORS numeric @attribute minLOC_TOTAL numeric @attribute maxLOC_BLANK numeric @attribute maxBRANCH_COUNT numeric @attribute maxLOC_CODE_AND_COMMENT numeric @attribute maxLOC_COMMENTS numeric @attribute maxCYCLOMATIC_COMPLEXITY numeric @attribute maxDESIGN_COMPLEXITY numeric @attribute maxESSENTIAL_COMPLEXITY numeric @attribute maxLOC_EXECUTABLE numeric @attribute maxHALSTEAD_CONTENT numeric @attribute maxHALSTEAD_DIFFICULTY numeric @attribute maxHALSTEAD_EFFORT numeric @attribute maxHALSTEAD_ERROR_EST numeric @attribute maxHALSTEAD_LENGTH numeric @attribute maxHALSTEAD_LEVEL numeric @attribute maxHALSTEAD_PROG_TIME numeric @attribute maxHALSTEAD_VOLUME numeric @attribute maxNUM_OPERANDS numeric @attribute maxNUM_OPERATORS numeric @attribute maxNUM_UNIQUE_OPERANDS numeric @attribute maxNUM_UNIQUE_OPERATORS numeric @attribute maxLOC_TOTAL numeric @attribute avgLOC_BLANK numeric @attribute avgBRANCH_COUNT numeric @attribute avgLOC_CODE_AND_COMMENT numeric @attribute avgLOC_COMMENTS numeric @attribute avgCYCLOMATIC_COMPLEXITY numeric @attribute avgDESIGN_COMPLEXITY numeric @attribute avgESSENTIAL_COMPLEXITY numeric @attribute avgLOC_EXECUTABLE numeric @attribute avgHALSTEAD_CONTENT numeric @attribute avgHALSTEAD_DIFFICULTY numeric @attribute avgHALSTEAD_EFFORT numeric @attribute avgHALSTEAD_ERROR_EST numeric @attribute avgHALSTEAD_LENGTH numeric @attribute avgHALSTEAD_LEVEL numeric @attribute avgHALSTEAD_PROG_TIME numeric @attribute avgHALSTEAD_VOLUME numeric @attribute avgNUM_OPERANDS numeric @attribute avgNUM_OPERATORS numeric @attribute avgNUM_UNIQUE_OPERANDS numeric @attribute avgNUM_UNIQUE_OPERATORS numeric @attribute avgLOC_TOTAL numeric @attribute sumLOC_BLANK numeric @attribute sumBRANCH_COUNT numeric @attribute sumLOC_CODE_AND_COMMENT numeric @attribute sumLOC_COMMENTS numeric @attribute sumCYCLOMATIC_COMPLEXITY numeric @attribute sumDESIGN_COMPLEXITY numeric @attribute sumESSENTIAL_COMPLEXITY numeric @attribute sumLOC_EXECUTABLE numeric @attribute sumHALSTEAD_CONTENT numeric @attribute sumHALSTEAD_DIFFICULTY numeric @attribute sumHALSTEAD_EFFORT numeric @attribute sumHALSTEAD_ERROR_EST numeric @attribute sumHALSTEAD_LENGTH numeric @attribute sumHALSTEAD_LEVEL numeric @attribute sumHALSTEAD_PROG_TIME numeric @attribute sumHALSTEAD_VOLUME numeric @attribute sumNUM_OPERANDS numeric @attribute sumNUM_OPERATORS numeric @attribute sumNUM_UNIQUE_OPERANDS numeric @attribute sumNUM_UNIQUE_OPERATORS numeric @attribute sumLOC_TOTAL numeric @attribute DL {DEF,NODEF} @data 0,0,24,4,100,0,0,2,110,73,0,1,0,0,1,1,1,0,5.8,1.5,17.41,0,5,0.02,0.97,11.61,1,3,1,3,2,15,89,0,26,45,45,12,262,116.45,44.9,234743.54,1.74,794,0.67,13041.31,5228.46,285,509,73,23,288,2.797101,10.072464,0,2.028986,5.565217,5.376812,2.246377,33.521739,32.564928,13.673913,13296.29,0.186667,106.898551,0.121594,738.6828,559.431159,37.318841,69.57971,15.449275,12.057971,40.985507,193,695,0,140,384,371,155,2313,2246.98,943.5,917443.78,12.88,7376,8.39,50969.11,38600.75,2575,4801,1066,832,2828,DEF 0,0,19,4,100,0,0,3,78,30,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,17,49,0,11,25,25,11,179,115.99,32.93,125808.33,1.27,606,0.67,6989.35,3820.09,208,398,60,20,210,2.7,11.466667,0,1.7,6.233333,6.1,3.466667,33.6,33.971667,12.593333,13488.54,0.201333,111.666667,0.146667,749.3637,602.709,38.933333,72.733333,16.1,11.2,40.7,81,344,0,51,187,183,104,1008,1019.15,377.8,404656.23,6.04,3350,4.4,22480.91,18081.27,1168,2182,483,336,1221,NODEF 100,0,13,1,88,0,0,0,99,99,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,4,4,12,0,2,7,7,3,78,166.37,39,23269.16,0.63,311,0.67,1292.73,1893.2,104,207,55,13,84,1.463158,2.189474,0,0.294737,1.610526,1.6,1.105263,11.578947,24.408737,5.025053,1386.678,0.054105,35.547368,0.342211,77.038,165.644421,13.452632,22.094737,8.557895,6.4,16.021053,139,208,0,28,153,152,105,1100,2318.83,477.38,131734.45,5.14,3377,32.51,7318.61,15736.22,1278,2099,813,608,1522,NODEF 0,0,21,4,100,0,0,2,68,30,0,1,0,0,1,1,1,0,7.74,1.5,17.41,0,5,0.03,0.97,11.61,2,3,2,3,2,12,35,0,14,18,18,9,110,77.47,28.71,58255.33,0.68,331,0.67,3236.41,2028.79,134,197,49,21,132,3.571429,10.464286,0,3.392857,5.75,5.321429,2.25,40.642857,40.241786,14.275714,14758.77,0.240357,133.75,0.141071,819.9304,718.383571,49.75,84,19.678571,11.892857,50.285714,100,293,0,95,161,149,63,1138,1126.77,399.72,413245.43,6.73,3745,3.95,22958.05,20114.74,1393,2352,551,333,1408,NODEF 5,0,17,2,90,0,0,1,69,36,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,15,35,1,4,18,18,11,71,81.84,29.86,44757.43,0.5,257,0.67,2486.52,1499.05,95,162,35,22,93,1.111111,3.555556,0.027778,0.25,2.333333,2.277778,1.555556,10.833333,20.586667,5.206389,2861.838,0.063889,39.222222,0.418333,158.9925,195.2925,14.138889,25.083333,8.055556,6.361111,14,40,128,1,9,84,82,56,390,741.12,187.43,103026.17,2.3,1412,15.06,5723.73,7030.53,509,903,290,229,504,NODEF 0,0,10,1,88,0,0,0,22,22,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,4,11,0,7,6,6,5,33,73.32,14.63,10369.98,0.28,156,2,576.11,841.2,55,101,29,13,47,0.571429,3.761905,0,0.333333,2.380952,2.380952,1.190476,13.428571,32.521905,7.252857,2431.322,0.08619,55.571429,0.220952,135.0729,260.512857,22.761905,32.809524,13.095238,8.380952,19.238095,12,79,0,7,50,50,25,282,682.96,152.31,51057.77,1.81,1167,4.64,2836.53,5470.77,478,689,275,176,404,NODEF 0,0,19,3,94,0,0,3,53,17,0,1,0,0,1,1,1,0,4.44,1.5,12,0,4,0.03,0.67,8,1,3,1,3,1,5,27,0,3,14,14,7,88,53.32,30.12,48369.03,0.54,273,0.67,2687.17,1605.96,109,164,38,21,97,1.384615,6.076923,0,0.538462,3.615385,3.307692,1.769231,18.307692,22.101539,8.505385,5323.303,0.093077,56.230769,0.263846,295.7392,280.578462,21.692308,34.538462,10.461539,8.538462,22.538462,18,79,0,7,47,43,23,238,287.32,110.57,69202.94,1.21,731,3.43,3844.61,3647.52,282,449,136,111,293,NODEF 0,0,14,2,90,0,0,1,37,25,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,13,1,0,7,7,3,44,46.71,21.67,20870.83,0.32,181,0.67,1159.49,963.27,65,116,24,16,53,1.565217,3,0.043478,0,2,2,1.26087,11.521739,21.993913,6.525652,3009.543,0.06913,43.73913,0.244348,167.1957,207.044348,17.086957,26.652174,9.347826,7.695652,16.565217,36,69,1,0,46,46,29,265,505.86,150.09,69219.5,1.59,1006,5.62,3845.5,4762.02,393,613,215,177,381,NODEF 0,0,18,2,100,1,1,1,38,13,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,10,31,1,0,16,16,9,82,54.5,27.64,41638.64,0.5,254,1,2313.26,1506.41,98,156,39,22,95,1.666667,5.166667,0.083333,0,3.083333,3,1.666667,15.75,19.494167,6.0925,4539.076,0.075,43.833333,0.4075,252.1717,224.245,18.333333,25.5,8.833333,6.5,20.166667,20,62,1,0,37,36,20,189,233.93,73.11,54468.91,0.9,526,4.89,3026.06,2690.94,220,306,106,78,242,NODEF 0,0,18,2,100,1,1,1,38,13,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,10,29,0,0,15,15,9,72,53.35,25.26,34029.33,0.45,230,1,1890.52,1347.34,89,141,37,21,84,1.75,5,0,0,3,2.916667,1.666667,14.916667,19.533333,5.993333,3910.016,0.0725,42.416667,0.395,217.225,213.0525,17.75,24.666667,8.75,6.5,19.333333,21,60,0,0,36,35,20,179,234.4,71.92,46920.19,0.87,509,4.74,2606.7,2556.63,213,296,105,78,232,NODEF 0,0,9,1,0,4,0,0,7,7,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,1,14,0,1,8,7,3,57,60.05,15.52,12497.82,0.27,145,0.1,694.32,805.42,50,95,29,18,63,0.285714,6.857143,0,0.142857,4.285714,4.142857,1.285714,33.285714,37.754286,8.105714,4936.654,0.14,81.571429,0.064286,274.2571,423.521429,28.142857,53.428571,16.571429,9.857143,38.285714,2,48,0,1,30,29,9,233,264.28,56.74,34556.58,0.98,571,0.45,1919.8,2964.65,197,374,116,69,268,NODEF 0,0,6,2,59,0,0,1,33,25,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,0,0,2,2,1,11,28,5.78,747.25,0.04,32,2,41.51,133.44,14,18,10,8,16,0.44,1.16,0,0,1.08,1.08,1,4.88,16.366,2.5752,164.408,0.0168,12.96,0.4528,9.1336,47.7188,5.64,7.32,5.32,4.92,8.72,11,29,0,0,27,27,25,122,409.15,64.38,4110.2,0.42,324,11.32,228.34,1192.97,141,183,133,123,218,NODEF 0,0,5,1,0,0,0,0,7,7,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,3,2,7,0,0,4,4,1,55,63.49,18.98,22882.74,0.4,217,1,1271.26,1205.35,81,136,32,15,61,0.5,3,0,0,2,2,1,18.166667,24.71,6.663333,7173.412,0.128333,71.666667,0.295,398.5217,387.46,26.833333,44.833333,11.333333,6.166667,22,3,18,0,0,12,12,6,109,148.26,39.98,43040.47,0.77,430,1.77,2391.13,2324.76,161,269,68,37,132,NODEF 100,0,4,1,75,2,0,0,8,8,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.67,0.26,4.75,1,2,1,2,4,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,1,0.67,8,1,3,1,3,4,0,1,0,0,1,1,1,0,5.04,1.25,8.375,0,3.5,0.835,0.465,6.375,1,2.5,1,2.5,4,0,2,0,0,2,2,2,0,10.08,2.5,16.75,0,7,1.67,0.93,12.75,2,5,2,5,8,NODEF 0,0,4,1,0,0,0,0,6,6,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,1,0,0,1,1,1,6,16.32,4.67,355.35,0.03,20,0.33,19.74,76.15,7,13,6,8,9,0,1,0,0,1,1,1,3,8.61,2.556667,146.98,0.013333,10,0.18,8.163333,34.893333,3.333333,6.666667,3,5,5.666667,0,6,0,0,6,6,6,18,51.66,15.34,881.88,0.08,60,1.08,48.98,209.36,20,40,18,30,34,NODEF 100,0,24,4,96,0,0,3,140,35,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,22,42,1,35,22,16,12,130,101.78,35.6,90061.35,1.01,463,0.33,5003.41,3027.63,192,271,71,28,162,3.257143,8.057143,0.028571,1.571429,4.542857,3.914286,2.114286,28.314286,37.359143,11.444571,12038,0.182571,99.628571,0.128571,668.7771,549.356571,39.714286,59.914286,19.085714,11.657143,35.857143,114,282,1,55,159,137,74,991,1307.57,400.56,421329.86,6.39,3487,4.5,23407.2,19227.48,1390,2097,668,408,1255,DEF 0,0,23,2,92,0,0,1,53,25,0,1,0,0,1,1,1,0,5.33,1,8,0,4,0.03,0.44,8,1,2,1,2,1,16,23,0,6,12,12,6,97,137.08,28.95,47016.12,0.82,382,1,2612.01,2467.5,140,242,70,22,116,3.32,6.12,0,0.8,3.56,3.48,1.44,19.92,24.9552,9.0896,8833.148,0.1368,73.12,0.3832,490.732,413.574,27.96,45.16,13.64,9.64,25.96,83,153,0,20,89,87,36,498,623.88,227.24,220828.71,3.42,1828,9.58,12268.3,10339.35,699,1129,341,241,649,NODEF 0,0,9,2,28,0,0,1,31,23,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,2,7,0,0,4,4,1,25,51.76,9.53,3989.43,0.14,85,0.5,221.64,421.11,30,55,19,12,32,1.695652,1.956522,0,0,1.478261,1.478261,1,10.391304,33.293044,3.994348,839.8109,0.049565,33.391304,0.274348,46.65739,146.834783,13.73913,19.652174,11.434783,6.565217,16.695652,39,45,0,0,34,34,23,239,765.74,91.87,19315.65,1.14,768,6.31,1073.12,3377.2,316,452,263,151,384,NODEF 0,0,2,2,94,0,0,1,52,17,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,6,0,0,4,4,1,35,132.09,7.78,7990.75,0.34,186,0.67,443.93,1027.38,56,130,36,10,37,0,1.294118,0,0,1.176471,1.176471,1,2.117647,12.472941,1.781177,480.6324,0.02,14.529412,0.598824,26.70471,67.492941,4.176471,10.352941,3,3.294118,3.235294,0,22,0,0,20,20,17,36,212.04,30.28,8170.75,0.34,247,10.18,453.98,1147.38,71,176,51,56,55,NODEF 0,0,6,1,80,0,0,0,15,15,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,1,0,0,1,1,1,13,54.15,5.56,1671.27,0.1,64,2,92.85,300.83,25,39,18,8,18,0,1,0,0,1,1,1,5.066667,19.204,3.532667,431.7767,0.029333,21.2,0.362667,23.986,87.018,8,13.2,6.4,6.133333,8.466667,0,15,0,0,15,15,15,76,288.06,52.99,6476.65,0.44,318,5.44,359.79,1305.27,120,198,96,92,127,NODEF 0,0,5,1,25,0,0,0,9,9,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,3,5,0,0,3,3,1,20,77.55,9.4,5829.1,0.21,115,2,323.84,620.12,47,68,30,12,32,0.333333,1.444444,0,0,1.222222,1.222222,1,12,48.282222,5.146667,2116.256,0.103333,62.777778,0.344444,117.57,309.29,25.555556,37.222222,17.111111,7,17.666667,3,13,0,0,11,11,9,108,434.54,46.32,19046.3,0.93,565,3.1,1058.13,2783.61,230,335,154,63,159,NODEF 0,0,0,1,100,0,0,0,0,0,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,7.74,1.5,17.41,0,5,0.67,0.97,11.61,2,3,2,3,1,0,1,0,0,1,1,1,0,6.133333,1.5,13.80333,0,4.333333,0.67,0.77,9.203333,1.333333,3,1.333333,3,1,0,3,0,0,3,3,3,0,18.4,4.5,41.41,0,13,2.01,2.31,27.61,4,9,4,9,3,NODEF 0,0,0,1,100,0,0,0,0,0,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.5,0.67,8,1,3,1,3,2,0,1,0,0,1,1,1,0,5.8,2,23.22,0,5,0.67,1.29,11.61,1,4,1,4,2,0,1,0,0,1,1,1,0,5.424,1.6,14.244,0,4.2,0.636,0.794,8.722,1,3.2,1,3.2,2,0,5,0,0,5,5,5,0,27.12,8,71.22,0,21,3.18,3.97,43.61,5,16,5,16,10,NODEF 0,0,8,1,58,0,0,0,37,34,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.05,0.67,8,1,3,1,3,1,10,17,2,8,12,9,1,53,37.59,19.71,14609.41,0.25,130,0.67,811.63,741.06,46,84,28,24,73,0.69697,2.757576,0.393939,0.666667,2.090909,1.606061,1,6.424242,13.128182,4.011212,828.5812,0.024848,18,0.356364,46.03242,74.068182,5.575758,12.424242,4.363636,6.636364,10.151515,23,91,13,22,69,53,33,212,433.23,132.37,27343.18,0.82,594,11.76,1519.07,2444.25,184,410,144,219,335,NODEF 0,0,15,1,77,0,0,0,12,12,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,16,51,7,16,26,19,16,171,64.47,49.32,156823.6,1.06,491,0.67,8712.42,3179.59,194,297,59,30,205,2.083333,6.833333,0.583333,2.25,3.916667,3.083333,2.5,22.75,20.646667,8.436667,14902.75,0.125833,65.416667,0.336667,827.9308,384.0075,25.083333,40.333333,11.583333,9.083333,30.166667,25,82,7,27,47,37,30,273,247.76,101.24,178832.95,1.51,785,4.04,9935.17,4608.09,301,484,139,109,362,NODEF 0,0,11,1,76,0,0,0,28,28,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.05,0.67,8,1,3,1,3,1,4,7,0,11,4,4,1,25,34.05,18.2,5757.8,0.11,69,0.67,319.88,316.36,26,43,14,14,40,0.178571,2.214286,0,0.678571,1.571429,1.464286,1,5.928571,14.673929,4.725714,549.7079,0.024643,19.892857,0.291071,30.53964,75.373214,7.5,12.392857,5,6.25,9.142857,5,62,0,19,44,41,28,166,410.87,132.32,15391.82,0.69,557,8.15,855.11,2110.45,210,347,140,175,256,NODEF 0,0,12,1,55,0,0,0,24,20,0,1,0,0,1,1,1,2,6.2,2,38.77,0.01,6,0.05,2.15,15.51,1,4,1,4,4,3,11,5,3,6,6,1,37,27.57,21,9158.6,0.15,90,0.5,508.81,450,37,58,17,18,45,0.65,3.4,0.4,0.35,2.15,1.9,1,9.95,13.492,8.182,1917.686,0.0435,29.9,0.2515,106.5385,129.471,10.35,19.55,5.65,8.85,13.35,13,68,8,7,43,38,20,199,269.84,163.64,38353.73,0.87,598,5.03,2130.77,2589.42,207,391,113,177,267,NODEF 100,0,4,1,100,0,0,0,11,11,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.04,0.67,8,1,3,1,3,1,10,23,1,10,12,10,8,53,54.22,23.42,29746.87,0.42,215,0.67,1652.6,1269.98,87,128,39,21,72,2.833333,7.666667,0.333333,3.166667,3.666667,3.333333,2.166667,18,22.141667,8.525,5608.283,0.096667,56.666667,0.251667,311.5717,295.336667,23,33.666667,11.666667,9.166667,26.166667,17,46,2,19,22,20,13,108,132.85,51.15,33649.7,0.58,340,1.51,1869.43,1772.02,138,202,70,55,157,DEF 17,0,14,4,94,0,0,1,198,24,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.04,0.67,8,1,3,1,3,1,23,54,3,19,28,27,18,173,143.73,26.47,77990.66,1.12,521,0.67,4332.81,3348.08,176,345,68,18,217,5.181818,7.545455,0.136364,3.227273,4.318182,3.318182,1.863636,25.227273,30.285,8.057727,7870.748,0.140909,78.227273,0.319545,437.2641,427.842273,28.954546,49.272727,13.681818,8.545455,36.136364,114,166,3,71,95,73,41,555,666.27,177.27,173156.46,3.1,1721,7.03,9619.81,9412.53,637,1084,301,188,795,NODEF 100,0,2,2,85,0,0,1,11,7,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,35,4,19,18,12,11,80,39.84,31.05,38405.82,0.41,213,2,2133.66,1236.97,77,136,31,25,107,0,9.5,1,4.75,5.25,3.75,3.5,21.5,16.86,8.1375,9606.573,0.105,56,0.7575,533.7,314.9525,20.75,35.25,9.25,7.25,29.75,0,38,4,19,21,15,14,86,67.44,32.55,38426.29,0.42,224,3.03,2134.8,1259.81,83,141,37,29,119,NODEF 0,0,1,1,0,0,0,0,3,3,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,1,0,0,1,1,1,3,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,5,0,1,0,0,1,1,1,1.666667,1.776667,0.5,4,0,2,0.223333,0.223333,2.666667,0.333333,1.666667,0.333333,1.666667,3.666667,0,3,0,0,3,3,3,5,5.33,1.5,12,0,6,0.67,0.67,8,1,5,1,5,11,NODEF 0,0,4,1,90,0,0,0,20,20,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,67,11,6,34,29,26,251,193.06,41.02,324803.51,2.64,1106,0.67,18044.64,7918.82,428,678,120,24,283,2.157895,9.210526,1,0.578947,5.105263,4.684211,3.105263,32.578947,32.496842,11.804211,25755.48,0.266316,128.842105,0.105263,1430.86,801.005789,50.473684,78.368421,19.052632,10.526316,38.473684,41,175,19,11,97,89,59,619,617.44,224.28,489354.19,5.06,2448,2,27186.34,15219.11,959,1489,362,200,731,NODEF 0,0,3,2,90,0,0,1,11,8,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,24,53,0,6,27,18,22,113,60,46.67,130658.97,0.93,438,2,7258.83,2799.84,168,270,54,30,150,3,7.5,0,0.75,4.25,3.125,3.625,15,13.00375,6.45875,16338.95,0.11625,57.875,0.50375,907.72,356.12625,22.625,35.25,8.25,5.25,21.5,24,60,0,6,34,25,29,120,104.03,51.67,130711.59,0.93,463,4.03,7261.76,2849.01,181,282,66,42,172,NODEF 0,0,5,2,0,0,0,1,10,5,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,20,15,0,3,8,8,1,64,66.4,18.15,19426.48,0.36,186,0.07,1079.25,1070.41,79,107,37,17,91,5.6,6.2,0,0.8,3.6,3.6,1,24.8,25.076,6.392,6418.894,0.134,71.2,0.026,356.606,397.51,29.4,41.8,13.8,6.6,34.8,28,31,0,4,18,18,5,124,125.38,31.96,32094.47,0.67,356,0.13,1783.03,1987.55,147,209,69,33,174,NODEF 100,0,5,1,100,1,0,0,8,8,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,3,5,0,1,3,3,1,30,36.87,9.88,3600.62,0.12,75,0.19,200.03,364.35,28,47,17,12,36,1.5,2.75,0,0.125,1.875,1.875,1,12.125,15.67375,4.69875,1160.975,0.04375,29.875,0.09,64.4975,133.5075,10.5,19.375,6.75,7.125,16.875,12,22,0,1,15,15,8,97,125.39,37.59,9287.8,0.35,239,0.72,515.98,1068.06,84,155,54,57,135,NODEF 0,0,0,1,0,1,0,0,3,3,0,1,0,0,1,1,1,3,11.63,2,46.53,0.01,9,0.08,2.58,23.26,4,5,3,3,5,1,3,0,0,2,1,1,9,18.26,12.25,1966.61,0.06,40,0.5,109.26,183.4,17,23,11,14,13,0.333333,2.333333,0,0,1.666667,1,1,6.333333,14.333333,8.1,1285.153,0.04,28.333333,0.226667,71.39667,122.4,11.666667,16.666667,7.333333,10,9,1,7,0,0,5,3,3,19,43,24.3,3855.46,0.12,85,0.68,214.19,367.2,35,50,22,30,27,NODEF 0,0,3,2,100,0,0,1,38,11,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,2,0,1,0,0,1,1,1,0,7.74,1.5,17.41,0,5,0.67,0.97,11.61,2,3,2,3,4,0,1,0,0,1,1,1,0,7.258,1.5,16.328,0,4.8,0.67,0.91,10.888,1.8,3,1.8,3,2.4,0,5,0,0,5,5,5,0,36.29,7.5,81.64,0,24,3.35,4.55,54.44,9,15,9,15,12,NODEF 0,0,0,1,50,0,0,0,2,2,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,2,4,3,1,3,2,1,10,14.51,7,711.05,0.03,26,0.14,39.5,101.58,7,19,5,10,18,1,2.5,1.5,0.5,2,1.5,1,5.5,7.255,3.5,355.525,0.015,13.5,0.07,19.75,50.79,3.5,10,2.5,5.5,10.5,2,5,3,1,4,3,2,11,14.51,7,711.05,0.03,27,0.14,39.5,101.58,7,20,5,11,21,NODEF 50,0,1,2,100,0,0,1,30,20,0,1,0,0,1,1,1,0,6.2,1.5,17.41,0,5,0.4,0.97,11.61,1,3,1,3,2,0,1,0,0,1,1,1,0,7.74,2.5,38.77,0.01,6,0.67,2.15,15.51,2,5,2,5,2,0,1,0,0,1,1,1,0,7.226667,1.833333,24.53,0.003333,5.333333,0.58,1.363333,12.91,1.666667,3.666667,1.666667,3.666667,2,0,3,0,0,3,3,3,0,21.68,5.5,73.59,0.01,16,1.74,4.09,38.73,5,11,5,11,6,NODEF 50,0,16,2,81,0,0,1,28,20,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,12,39,6,20,20,12,7,91,93.92,22.95,49471.62,0.72,340,0.67,2748.42,2155.55,140,200,61,20,131,2.8,7.6,0.75,2.55,4.45,2.8,1.65,21.2,29.3475,8.3645,7435.989,0.1395,75.1,0.21,413.11,418.08,31.15,43.95,15.1,9.35,29.3,56,152,15,51,89,56,33,424,586.95,167.29,148719.77,2.79,1502,4.2,8262.2,8361.6,623,879,302,187,586,NODEF 100,0,3,1,67,0,0,0,17,17,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.09,0.67,8,1,3,1,3,1,3,5,3,2,3,3,1,9,54.91,11,1743.03,0.05,38,0.67,96.83,158.46,16,24,13,11,15,0.266667,1.8,0.4,0.133333,1.4,1.266667,1,4.333333,18.598,3.814667,414.6633,0.022,19.266667,0.424,23.03667,71.73,7.866667,11.4,5.266667,5.133333,6.733333,4,27,6,2,21,19,15,65,278.97,57.22,6219.95,0.33,289,6.36,345.55,1075.95,118,171,79,77,101,NODEF 0,0,9,2,97,0,0,1,38,11,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,9,7,0,5,4,4,1,36,38.05,12.5,5945.41,0.16,92,0.67,330.3,475.63,35,57,21,15,54,0.909091,2.181818,0,0.454545,1.636364,1.454545,1,6.818182,12.302727,3.676364,836.3691,0.027273,19.909091,0.354545,46.46636,87.529091,7.909091,12,5.272727,5.363636,10.545455,10,24,0,5,18,16,11,75,135.33,40.44,9200.06,0.3,219,3.9,511.13,962.82,87,132,58,59,116,NODEF 0,0,3,1,38,0,0,0,7,7,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0,0,2,2,1,7,15.2,6,380,0.03,19,0.24,21.11,76,6,13,6,10,9,0.142857,2.714286,0,0,1.857143,1.857143,1,4.285714,10.735714,4.314286,264.3886,0.02,14.142857,0.172857,14.68857,53.077143,4.714286,9.428571,4.142857,7.285714,6.285714,1,19,0,0,13,13,7,30,75.15,30.2,1850.72,0.14,99,1.21,102.82,371.54,33,66,29,51,44,NODEF 0,0,10,1,82,0,0,0,10,10,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.06,0.26,4.75,1,2,1,2,1,7,9,0,10,5,2,1,39,51.09,16,13079.79,0.27,148,1,726.66,817.49,60,88,30,16,61,1,2.333333,0,1.111111,1.666667,1.222222,1,6.333333,12.891111,3.925556,1520.952,0.035556,23,0.522222,84.49778,109.581111,8.888889,14.111111,5.222222,5.444444,10.777778,9,21,0,10,15,11,9,57,116.02,35.33,13688.57,0.32,207,4.7,760.48,986.23,80,127,47,49,97,NODEF 0,0,11,3,0,0,0,1,41,9,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,6,29,0,1,15,14,9,78,79.66,23.54,34054,0.48,255,2,1891.89,1446.47,103,152,35,16,88,1.142857,9.857143,0,0.428571,5.428571,3.428571,3.285714,21.285714,37.167143,8.038571,7422.62,0.15,84.571429,0.428571,412.3686,451.634286,31,53.571429,15.142857,8.428571,27.285714,8,69,0,3,38,24,23,149,260.17,56.27,51958.34,1.05,592,3,2886.58,3161.44,217,375,106,59,191,NODEF 0,0,4,1,0,0,0,0,5,5,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,2,2,1,0,0,0,0,0,1,0,0,0,0,1,0,1,20,0,2.2,0,0,1.6,1.6,1,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0.2,12.8,0,11,0,0,8,8,5,0,0,0,0,0,1,0,0,0,0,1,0,1,64,NODEF 0,0,4,1,0,0,0,0,5,5,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,15,0,1,0,0,1,1,1,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0.2,9.8,0,5,0,0,5,5,5,0,0,0,0,0,1,0,0,0,0,1,0,1,49,NODEF 0,0,4,1,0,0,0,0,5,5,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,1,1,1,1,13,47.55,6.5,2008.94,0.1,65,0.15,111.61,309.07,26,39,18,9,45,0.4,1,0,0.2,1,1,1,2.6,9.51,1.3,401.788,0.02,13.2,0.03,22.322,61.814,5.2,8,3.6,2,23,2,5,0,1,5,5,5,13,47.55,6.5,2008.94,0.1,66,0.15,111.61,309.07,26,40,18,10,115,NODEF 0,0,14,4,73,0,0,2,92,23,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,12,37,3,12,19,19,15,96,70.4,26.59,49778.18,0.62,312,1,2765.45,1872,117,195,44,21,116,2.913044,10.652174,0.217391,2.173913,5.826087,5.217391,3.26087,30.304348,33.491304,12.424348,9427.804,0.173913,98.695652,0.161739,523.767,523.71087,37.043478,61.652174,17.73913,12.391304,39.043478,67,245,5,50,134,120,75,697,770.3,285.76,216839.49,4,2270,3.72,12046.64,12045.35,852,1418,408,285,898,NODEF 0,0,12,2,89,0,0,1,55,21,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,3,5,0,1,3,3,1,28,124.45,9.64,4983.78,0.26,147,1,276.88,787.56,45,102,32,9,31,0.476191,1.571429,0,0.142857,1.285714,1.238095,1,4.809524,18.555714,2.837619,572.7457,0.029524,21.52381,0.523333,31.82095,95.709524,7.428571,14.095238,5.238095,4.333333,7.761905,10,33,0,3,27,26,21,101,389.67,59.59,12027.66,0.62,452,10.99,668.24,2009.9,156,296,110,91,163,NODEF 0,0,0,1,100,1,0,0,98,98,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,0,3,0,0,2,1,1,2,22.33,3.5,273.48,0.03,20,0.67,15.19,78.14,8,12,8,7,5,0,1.1,0,0,1.05,1,1,0.2,13.4625,2.5,114.1325,0.0115,11.2,0.3925,6.3415,38.244,4.4,6.8,4.4,5.05,2.25,0,22,0,0,21,20,20,4,269.25,50,2282.65,0.23,224,7.85,126.83,764.88,88,136,88,101,45,NODEF 0,0,13,2,75,0,0,1,36,8,0,1,0,0,1,1,1,0,5.33,1,8,0,4,0.07,0.44,8,1,2,1,2,3,12,19,0,4,10,10,3,76,100.98,14.77,22027.25,0.5,245,1,1223.74,1491.43,96,149,52,16,93,2,3.75,0,0.875,2.375,2.375,1.25,14.125,23.4575,4.6575,3123.418,0.07875,44.125,0.50125,173.5238,238.455,17.125,27,10.25,6.375,19.625,16,30,0,7,19,19,10,113,187.66,37.26,24987.34,0.63,353,4.01,1388.19,1907.64,137,216,82,51,157,NODEF 0,0,10,1,96,0,0,0,98,98,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,58,53,0,5,27,18,21,137,104.99,53.75,176429.01,1.16,532,0.67,9801.61,3493.67,215,330,74,31,153,5.204082,10.673469,0,0.316327,5.836735,4.173469,3.520408,21.581633,29.235306,16.227347,20141.5,0.21449,114,0.157653,1118.972,645.315918,45.295918,68.704082,18.571429,14.112245,29.418367,510,1046,0,31,572,409,345,2115,2865.06,1590.28,1973866.93,21.02,11172,15.45,109659.3,63240.96,4439,6733,1820,1383,2883,DEF 67,0,14,3,96,0,0,1,48,18,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,35,53,3,44,27,25,8,198,107.5,27.42,80852.59,0.98,481,1.6,4491.81,2948.19,171,310,53,17,286,4.571429,9.571429,0.214286,3.857143,5.285714,4.642857,1.928571,31.5,33.986429,7.669286,11325.12,0.175,93.642857,0.4,629.1736,528.842857,34.714286,58.928571,14.785714,7.785714,43.785714,64,134,3,54,74,65,27,441,475.81,107.37,158551.66,2.45,1311,5.6,8808.43,7403.8,486,825,207,109,613,NODEF 0,0,10,2,46,0,0,1,23,15,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,3,5,3,0,0,2,2,1,15,45.4,8.16,2726.93,0.12,74,2,151.5,351.86,31,43,18,9,27,1.4,2.466667,0,0,1.733333,1.733333,1,8.666667,20.344,5.353333,1008.942,0.046,32.066667,0.35,56.05133,138.944667,13.333333,18.733333,8.133333,6.666667,15.333333,21,37,0,0,26,26,15,130,305.16,80.3,15134.13,0.69,481,5.25,840.77,2084.17,200,281,122,100,230,NODEF 0,0,5,1,100,0,0,0,18,18,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,1,1,1,2,5.33,1.5,12,0,4,1,0.67,8,1,3,1,3,15,0,1,0,0,1,1,1,0.235294,0.592941,0.147059,0.985294,0,0.411765,0.098235,0.054706,0.75,0.117647,0.294118,0.117647,0.294118,8.647059,0,17,0,0,17,17,17,4,10.08,2.5,16.75,0,7,1.67,0.93,12.75,2,5,2,5,147,NODEF 0,0,5,1,78,0,0,0,14,14,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,3,3,1,2,5.33,1.5,12,0,4,2,0.67,8,1,3,1,3,45,0,1.571429,0,0,1.285714,1.285714,1,0.214286,1.005714,0.214286,1.267857,0,0.714286,0.262143,0.070714,1.053571,0.214286,0.5,0.214286,0.5,24.5,0,22,0,0,18,18,14,3,14.08,3,17.75,0,10,3.67,0.99,14.75,3,7,3,7,343,NODEF 0,0,4,1,0,0,0,0,8,8,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,0,0,2,2,1,0,0,0,0,0,1,0,0,0,0,1,0,1,27,0,2.5,0,0,1.75,1.75,1,0,0,0,0,0,0.125,0,0,0,0,0.125,0,0.125,16,0,20,0,0,14,14,8,0,0,0,0,0,1,0,0,0,0,1,0,1,128,NODEF 0,0,1,2,0,0,0,1,2,2,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,0,2,0,1,0,0,1,1,1,1,6.2,2.5,38.77,0.01,6,0.4,2.15,15.51,1,5,1,5,3,0,1,0,0,1,1,1,0.5,3.1,1.25,19.385,0.005,3.5,0.2,1.075,7.755,1,2.5,1,2.5,2.5,0,2,0,0,2,2,2,1,6.2,2.5,38.77,0.01,7,0.4,2.15,15.51,2,5,2,5,5,NODEF 30,0,14,4,87,5,0,1,61,26,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,3,16,49,8,9,25,25,19,116,84.67,30.36,73847.58,0.81,401,1,4102.64,2432.5,133,268,46,21,149,3.590909,9.909091,0.545455,1.181818,5.454545,5.181818,3.363636,27.181818,29.329546,10.169091,8912.434,0.146818,83.409091,0.188636,495.135,442.703182,28.681818,54.727273,13.181818,10.136364,35.045455,79,218,12,26,120,114,74,598,645.25,223.72,196073.55,3.23,1835,4.15,10892.97,9739.47,631,1204,290,223,771,NODEF 0,0,14,5,96,0,0,1,54,8,0,1,0,0,1,1,1,2,7.75,2,31.02,0.01,6,0.06,1.72,15.51,2,4,2,4,4,8,27,0,1,14,14,8,69,57.94,18.07,18928.42,0.35,193,0.5,1051.58,1047.27,61,132,27,16,76,2.875,11,0,0.125,6,6,1.875,32.375,34.03625,10.0525,6338.664,0.1475,86.625,0.1775,352.1463,439.75125,28.375,58.25,14.75,11,37.75,23,88,0,1,48,48,15,259,272.29,80.42,50709.31,1.18,693,1.42,2817.17,3518.01,227,466,118,88,302,NODEF 0,0,18,5,83,0,0,1,58,10,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.03,0.26,4.75,1,2,1,2,2,8,41,1,5,21,21,13,107,65.48,35.32,81676.45,0.77,384,1,4537.58,2312.59,148,236,44,21,123,2.1,7.9,0.4,1.5,4.5,4.5,2.4,27.5,26.877,10.133,11956.85,0.159,87.5,0.308,664.269,477.229,31.8,55.7,13.3,9.6,33.8,21,79,4,15,45,45,24,275,268.77,101.33,119568.55,1.59,875,3.08,6642.69,4772.29,318,557,133,96,338,NODEF 0,0,14,5,91,0,0,1,54,8,0,1,0,0,1,1,1,2,13.21,2,72,0.01,10,0.05,4,31.7,4,4,4,4,10,5,25,2,8,13,13,8,68,54.82,19.52,20885.76,0.36,196,0.5,1160.32,1070.05,62,134,27,17,77,2,10,0.375,3,5.5,5.5,1.875,30.125,33.0825,10.1325,6452.371,0.14,82.5,0.1825,358.4663,419.97875,27.375,55.125,14.75,11.375,38.125,16,80,3,24,44,44,15,241,264.66,81.06,51618.97,1.12,660,1.46,2867.73,3359.83,219,441,118,91,305,NODEF 0,0,17,5,93,0,0,1,54,6,0,1,0,0,1,1,1,4,13.21,2.4,76.08,0.01,10,0.05,4.23,31.7,6,4,5,4,7,7,33,1,2,17,17,10,79,56.75,19.38,21323.71,0.37,204,0.42,1184.65,1100.03,63,141,26,18,91,2.666667,13,0.333333,1,7,7,3.333333,35.666667,34.563333,11.111667,8033.59,0.165,95.333333,0.153333,446.3117,491.1,30.666667,64.666667,15.333333,11.5,42.333333,16,78,2,6,42,42,20,214,207.38,66.67,48201.54,0.99,572,0.92,2677.87,2946.6,184,388,92,69,254,NODEF 0,0,17,5,93,0,0,1,54,6,0,1,0,0,1,1,1,4,13.21,2.4,76.08,0.01,10,0.06,4.23,31.7,6,4,5,4,7,6,21,1,2,11,11,8,52,43.32,18,13794.44,0.26,144,0.42,766.36,766.36,44,100,22,18,63,2.5,9.666667,0.166667,0.833333,5.333333,5.333333,3,28.666667,30.103333,10.48,5801.14,0.13,77.166667,0.155,322.2867,388.661667,25.5,51.666667,14,11.666667,34.833333,15,58,1,5,32,32,18,172,180.62,62.88,34806.84,0.78,463,0.93,1933.72,2331.97,153,310,84,70,209,NODEF 0,0,14,3,81,0,0,1,46,11,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,6,15,1,3,8,8,3,45,42.9,27.06,17479.25,0.22,124,1,971.07,645.97,46,78,19,20,57,1.8,4.5,0.1,0.5,2.8,2.7,1.4,14.7,18.007,7.693,3281.062,0.068,43,0.306,182.282,206.055,15.9,27.1,8.5,8.4,20,18,45,1,5,28,27,14,147,180.07,76.93,32810.62,0.68,430,3.06,1822.82,2060.55,159,271,85,84,200,NODEF 0,0,12,2,80,0,0,1,37,10,0,1,0,0,1,1,1,0,5.33,1,8,0,4,0.04,0.44,8,1,2,1,2,2,7,13,0,1,7,7,3,46,49.31,26.13,15946.3,0.2,119,1,885.91,610.38,44,75,21,19,52,2,4.888889,0,0.222222,3,2.888889,1.444444,17.555556,21.524444,8.541111,3632.836,0.077778,49.888889,0.375556,201.8244,238.708889,18.333333,31.555556,9.777778,9,23,18,44,0,2,27,26,13,158,193.72,76.87,32695.52,0.7,449,3.38,1816.42,2148.38,165,284,88,81,207,NODEF 0,0,6,2,95,0,0,1,59,24,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,2,5,0,1,3,3,1,25,119.9,9.75,5824.19,0.28,154,0.67,323.57,835.64,46,108,33,10,32,0.375,1.333333,0,0.125,1.166667,1.166667,1,3.208333,14.217083,2.621667,440.5667,0.0225,16.75,0.517083,24.47833,71.729583,5.208333,11.541667,3.958333,4.333333,5.625,9,32,0,3,28,28,24,77,341.21,62.92,10573.6,0.54,402,12.41,587.48,1721.51,125,277,95,104,135,NODEF 0,0,15,3,94,0,0,1,44,9,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,7,9,1,3,5,5,3,33,41.08,14.74,7570.25,0.17,101,1,420.57,516.99,41,62,21,15,49,1.888889,4.222222,0.111111,0.888889,2.666667,2.555556,1.666667,15.333333,21.018889,7.366667,2872.083,0.075556,48.222222,0.27,159.56,230.58,18.111111,30.111111,9.777778,8.333333,21,17,38,1,8,24,23,15,138,189.17,66.3,25848.75,0.68,434,2.43,1436.04,2075.22,163,271,88,75,189,NODEF 0,0,14,2,86,0,0,1,37,10,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,6,9,0,1,5,5,3,32,44.35,16.18,8233.66,0.17,100,1,457.43,508.75,41,59,19,15,48,1.444444,3.222222,0,0.333333,2.111111,2.111111,1.444444,11.333333,17.475556,5.658889,1830.057,0.052222,34.555556,0.335556,101.67,160.004444,12.777778,21.777778,7.555556,7.111111,16.111111,13,29,0,3,19,19,13,102,157.28,50.93,16470.51,0.47,311,3.02,915.03,1440.04,115,196,68,64,145,NODEF 0,0,10,2,85,0,0,1,37,9,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,7,9,0,1,5,4,3,27,44.35,10.13,4365.26,0.15,88,1,242.51,440,29,59,19,13,33,1.5,3.25,0,0.25,2.125,2,1.5,9.875,17.47,4.6375,1316.824,0.04625,30.75,0.36625,73.15625,140.10125,10.875,19.875,7,6.375,14,12,26,0,2,17,16,12,79,139.76,37.1,10534.59,0.37,246,2.93,585.25,1120.81,87,159,56,51,112,NODEF 0,0,1,4,100,0,0,1,53,22,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.4,0.26,4.75,1,2,1,2,2,0,1,0,0,1,1,1,1,12.68,2.5,79.25,0.01,10,1,4.4,31.7,4,6,4,5,6,0,1,0,0,1,1,1,0.333333,8.486667,1.75,35.01167,0.003333,6.166667,0.635,1.945,16.561667,2.333333,3.833333,2.333333,3.5,4.333333,0,6,0,0,6,6,6,2,50.92,10.5,210.07,0.02,37,3.81,11.67,99.37,14,23,14,21,26,NODEF 0,0,1,2,100,0,0,1,20,16,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.28,0.26,4.75,1,2,1,2,2,0,1,0,0,1,1,1,6,16.34,3.6,211.72,0.02,17,1,11.76,58.81,6,11,5,6,8,0,1,0,0,1,1,1,1.5,8.57,2.15,69.4,0.0075,7.75,0.5875,3.855,22.8025,2.5,5.25,2.25,4,3.5,0,4,0,0,4,4,4,6,34.28,8.6,277.6,0.03,31,2.35,15.42,91.21,10,21,9,16,14,NODEF 0,0,1,3,100,0,0,1,33,14,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.67,0.26,4.75,1,2,1,2,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,1,0.67,8,1,3,1,3,2,0,1,0,0,1,1,1,0,5.136667,1.333333,9.583333,0,3.666667,0.78,0.533333,6.916667,1,2.666667,1,2.666667,1.666667,0,3,0,0,3,3,3,0,15.41,4,28.75,0,11,2.34,1.6,20.75,3,8,3,8,5,NODEF 0,0,0,1,0,2,0,0,9,9,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.67,0.26,4.75,1,2,1,2,2,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,1,0.67,8,1,3,1,3,2,0,1,0,0,1,1,1,0,5.04,1.25,8.375,0,3.5,0.835,0.465,6.375,1,2.5,1,2.5,2,0,2,0,0,2,2,2,0,10.08,2.5,16.75,0,7,1.67,0.93,12.75,2,5,2,5,4,NODEF 0,0,14,4,97,0,0,1,53,22,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,6,57,1,11,29,29,13,126,85.01,36.77,114916,1.04,519,1,6384.22,3125.61,192,327,47,18,135,1.047619,6.52381,0.142857,1.47619,3.761905,3.52381,1.952381,18.285714,25.40381,9.11,8525.145,0.125714,72.857143,0.253333,473.6186,378.847143,28,44.857143,11.809524,8.666667,25.142857,22,137,3,31,79,74,41,384,533.48,191.31,179028.05,2.64,1530,5.32,9945.99,7955.79,588,942,248,182,528,NODEF 33,0,10,2,95,0,0,1,42,15,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,4,17,0,6,9,6,3,50,53.98,14.76,8849.14,0.2,121,1,491.62,599.46,62,72,21,14,57,1.066667,3.266667,0,0.666667,2.2,2,1.266667,10.066667,15.348,4.378,1488.366,0.042667,28.666667,0.443333,82.68733,130.548,11.333333,17.333333,5.933333,5.4,14.6,16,49,0,10,33,30,19,151,230.22,65.67,22325.49,0.64,430,6.65,1240.31,1958.22,170,260,89,81,219,NODEF 0,0,9,6,86,0,0,1,222,100,0,1,0,0,1,1,1,2,5.8,1.5,17.41,0,5,0.02,0.97,11.61,1,3,1,3,4,7,55,7,17,28,16,16,144,56.22,51.24,147636.19,0.96,482,0.67,8202.01,2881.05,191,291,41,22,162,0.714286,3.207792,0.74026,1.220779,2.103896,1.935065,1.272727,9.545455,13.480649,5.887143,2981.452,0.042987,28.012987,0.301299,165.6355,129.700649,9.831169,18.181818,5.441558,8.142857,14.38961,55,247,57,94,162,149,98,735,1038.01,453.31,229571.79,3.31,2157,23.2,12753.93,9986.95,757,1400,419,627,1108,NODEF 100,0,20,4,95,0,0,2,85,28,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,32,31,0,44,16,14,12,142,140.96,33.6,98179.22,1.01,453,0.5,5454.4,3028.98,190,263,84,28,220,9.954546,11.909091,0,11.545455,6.454545,5.681818,3.772727,55.954546,56.528636,15.260455,22530.42,0.348182,174.318182,0.099091,1251.689,1045.1,71.590909,102.727273,32.772727,14.363636,79.818182,219,262,0,254,142,125,83,1231,1243.63,335.73,495669.16,7.66,3835,2.18,27537.15,22992.2,1575,2260,721,316,1756,DEF 0,0,12,2,83,0,0,1,52,39,0,1,0,0,1,1,1,0,5.33,1.1,12,0,4,0.04,0.67,8,1,3,1,2,2,12,15,1,21,8,8,4,75,78.07,23.74,24784.89,0.39,212,0.91,1376.94,1184.01,91,121,36,17,92,1.885714,5.342857,0.028571,1.285714,3.171429,2.914286,1.485714,25,31.580857,8.654,4693.968,0.115714,69.114286,0.248571,260.7771,347.857714,28.142857,40.971429,14.285714,9.257143,32.428571,66,187,1,45,111,102,52,875,1105.33,302.89,164288.87,4.05,2419,8.7,9127.2,12175.02,985,1434,500,324,1135,DEF 0,0,13,2,80,0,0,1,45,37,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,3,13,0,5,7,5,4,35,46.64,17.45,9110.4,0.22,124,1.33,506.13,650.74,48,76,24,16,44,0.722222,2.888889,0,0.25,1.944444,1.722222,1.388889,9.083333,18.347778,4.996389,979.6533,0.037222,25.333333,0.328611,54.425,107.36,10.027778,15.305556,7,6.722222,13.055556,26,104,0,9,70,62,50,327,660.52,179.87,35267.52,1.34,912,11.83,1959.3,3864.96,361,551,252,242,470,NODEF 0,0,16,2,87,0,0,1,40,12,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,9,25,0,8,13,12,6,86,71.07,23.33,24551.51,0.42,214,0.67,1363.97,1264.07,83,131,42,22,101,1.75,6.333333,0,1.083333,3.666667,3.416667,2.083333,19,21.494167,7.961667,5696.767,0.105833,59.416667,0.3325,316.4883,320.158333,21.75,37.666667,11.25,8.916667,23.5,21,76,0,13,44,41,25,228,257.93,95.54,68361.2,1.27,713,3.99,3797.86,3841.9,261,452,135,107,282,NODEF 0,0,9,1,0,0,0,0,18,18,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,6,25,5,18,13,11,10,85,65.81,28.86,54815.82,0.63,304,0.21,3045.32,1899.37,111,193,50,26,102,0.333333,2.333333,0.277778,1.166667,1.666667,1.555556,1.5,10.5,19.747222,5.668889,3436.059,0.061111,36.888889,0.170556,190.8928,184.733889,13.888889,23,9.055556,8.222222,16.555556,6,42,5,21,30,28,27,189,355.45,102.04,61849.06,1.1,664,3.07,3436.07,3325.21,250,414,163,148,298,NODEF 0,0,7,1,0,0,0,0,15,15,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,3,7,0,11,4,3,3,25,61.35,10.82,5688.55,0.2,111,0.67,316.03,590.73,40,71,27,14,43,0.866667,2.333333,0,1.133333,1.666667,1.4,1.266667,7.066667,17.852,5.023333,941.586,0.041333,27.733333,0.195333,52.31,120.742667,9.666667,18.066667,6.733333,7.266667,12.666667,13,35,0,17,25,21,19,106,267.78,75.35,14123.79,0.62,416,2.93,784.65,1811.14,145,271,101,109,190,NODEF 0,0,9,2,93,0,0,1,49,14,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,9,12,0,2,7,6,3,86,85.07,26.82,61212.81,0.76,362,0.67,3400.71,2281.97,139,223,57,22,100,0.642857,1.785714,0,0.142857,1.428571,1.357143,1.142857,6.214286,10.264286,3.094286,4381.772,0.054286,29.071429,0.529286,243.4343,169.283571,10.714286,18.357143,4.857143,4,8.214286,9,25,0,2,20,19,16,87,143.7,43.32,61344.81,0.76,407,7.41,3408.08,2369.97,150,257,68,56,115,NODEF 0,0,4,1,0,0,0,0,16,16,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,1,0,0,1,1,1,14,66.16,5.64,2101.93,0.12,76,0.19,116.77,372.92,31,45,22,8,24,0,1,0,0,1,1,1,10.5625,45.705625,4.84,1410.484,0.085,53.9375,0.15875,78.36188,253.870625,21.6875,32.25,15.625,7.125,18.125,0,16,0,0,16,16,16,169,731.29,77.44,22567.75,1.36,863,2.54,1253.79,4061.93,347,516,250,114,290,NODEF 0,0,3,1,0,0,0,0,8,8,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,1,3,0,0,2,2,1,21,64.5,7.14,3291,0.15,93,0.67,182.83,460.74,30,63,21,11,30,0.125,2.25,0,0,1.625,1.625,1,10.625,24.915,4.21875,1059.696,0.05125,35.125,0.1825,58.87125,160.8125,11.25,23.875,8.75,7,14.5,1,18,0,0,13,13,8,85,199.32,33.75,8477.57,0.41,281,1.46,470.97,1286.5,90,191,70,56,116,NODEF 0,0,6,1,62,0,0,0,8,8,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,11,0,12,6,2,1,19,17.43,22.4,6738.55,0.1,64,0.5,374.36,300.83,28,36,10,16,27,0,3.8,0,3.4,2.4,1.4,1,8.6,10.282,8.68,1855.82,0.034,24.8,0.172,103.1,106.128,10.4,14.4,5,8.2,14.2,0,19,0,17,12,7,5,43,51.41,43.4,9279.1,0.17,124,0.86,515.5,530.64,52,72,25,41,71,NODEF 0,0,1,1,75,0,0,0,6,6,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,1,0,0,1,1,1,3,9.51,3.5,99.85,0.01,9,2,5.55,28.53,2,7,2,7,6,0,1,0,0,1,1,1,2.166667,6.305,1.25,21.435,0.001667,4,0.938333,1.191667,9.005,1.333333,2.666667,1.333333,2.666667,4.333333,0,6,0,0,6,6,6,13,37.83,7.5,128.61,0.01,24,5.63,7.15,54.03,8,16,8,16,26,NODEF 100,0,22,1,94,0,0,0,31,31,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.03,0.26,4.75,1,2,1,2,2,13,31,2,10,16,16,13,75,81.45,30.44,38352.97,0.42,216,1,2130.72,1259.9,90,126,35,23,97,1.387097,4.16129,0.064516,0.580645,2.580645,2.451613,1.806452,12.129032,18.247419,5.357742,3450.514,0.065806,39.580645,0.45871,191.6968,201.119032,14.806452,24.774194,7.83871,6.548387,16.903226,43,129,2,18,80,76,56,376,565.67,166.09,106965.92,2.04,1227,14.22,5942.6,6234.69,459,768,243,203,524,DEF 11,0,16,3,93,0,0,1,38,32,0,1,0,0,1,1,1,0,3.62,1,8,0,4,0.04,0.44,8,1,2,1,2,2,5,17,1,4,9,6,7,35,39.53,23.4,8324.42,0.15,90,1,462.47,445.88,36,54,18,18,48,0.65625,2.9375,0.0625,0.28125,1.96875,1.78125,1.28125,6.34375,14.557188,5.39,910.2791,0.030625,22.78125,0.337188,50.57125,92.836563,8,14.78125,5.21875,6.84375,10.28125,21,94,2,9,63,57,41,203,465.83,172.48,29128.93,0.98,729,10.79,1618.28,2970.77,256,473,167,219,329,NODEF 100,0,19,1,90,0,0,0,35,35,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.06,0.26,4.75,1,2,1,2,1,12,13,0,10,7,7,3,48,73.18,15.47,17523.69,0.38,195,1,973.54,1132.43,71,124,39,17,72,0.971429,2.485714,0,0.571429,1.771429,1.714286,1.114286,7.714286,18.374571,4.183429,1400.306,0.043143,28.6,0.45,77.796,132.596,10.742857,17.857143,6.971429,5.914286,11.828571,34,87,0,20,62,60,39,270,643.11,146.42,49010.7,1.51,1001,15.75,2722.86,4640.86,376,625,244,207,414,NODEF 0,0,6,3,74,0,0,2,48,21,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,3,9,0,0,5,5,1,27,26.16,18.75,9196.23,0.16,99,2,510.9,490.47,40,59,16,16,34,0.428571,2.619048,0,0,1.809524,1.666667,1,6.761905,10.975238,5.604762,1109.126,0.029524,22.047619,0.297619,61.61857,90.439048,8.52381,13.52381,4.619048,6.666667,10,9,55,0,0,38,35,21,142,230.48,117.7,23291.64,0.62,463,6.25,1293.99,1899.22,179,284,97,140,210,NODEF 0,0,9,1,83,0,0,0,14,14,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.05,0.26,4.75,1,2,1,2,2,5,11,1,2,6,5,5,41,40.21,20,16084.69,0.27,144,1,893.59,804.23,56,88,28,20,50,0.714286,3,0.071429,0.214286,2,1.857143,1.285714,8.071429,14.045714,4.862857,1814.401,0.041429,26.571429,0.476429,100.8,127.522143,10.285714,16.285714,6.642857,6.928571,11.571429,10,42,1,3,28,26,18,113,196.64,68.08,25401.61,0.58,372,6.67,1411.2,1785.31,144,228,93,97,162,NODEF 0,0,4,2,84,1,0,2,33,13,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,2,9,0,0,5,3,1,17,20.02,11.33,1921.01,0.06,39,0.67,106.72,176.42,17,25,9,14,20,0.461539,3.153846,0,0,2.076923,1.769231,1,6.153846,9.56,4.333846,549.1808,0.023077,17.384615,0.238462,30.51,68.064615,7,10.384615,4.153846,6.384615,8.307692,6,41,0,0,27,23,13,80,124.28,56.34,7139.35,0.3,226,3.1,396.63,884.84,91,135,54,83,108,NODEF 0,0,16,1,0,0,0,0,10,10,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,3,5,21,1,2,11,9,7,60,32.56,26.13,22222.67,0.28,154,1,1234.59,850.63,57,97,24,22,72,1,3.6,0.1,0.2,2.3,2.1,1.6,9.1,11.898,5.231,2485.017,0.043,27.1,0.31,138.055,128.181,9.6,17.5,5.3,6.4,13.7,10,36,1,2,23,21,16,91,118.98,52.31,24850.17,0.43,271,3.1,1380.55,1281.81,96,175,53,64,137,NODEF 0,0,8,1,68,0,0,0,7,7,0,1,0,0,1,1,1,0,5.33,1,8,0,4,0.05,0.44,8,1,2,1,2,3,3,13,2,4,7,6,3,41,52.11,20.7,14339.44,0.23,132,1,796.64,692.73,46,86,27,18,50,1.571429,5.285714,0.285714,1.142857,3.142857,3,1.285714,20.428571,25.22,8.905714,4802.074,0.105714,62.857143,0.421429,266.7814,320.821429,24.285714,38.571429,12.857143,9.428571,25.714286,11,37,2,8,22,21,9,143,176.54,62.34,33614.52,0.74,440,2.95,1867.47,2245.75,170,270,90,66,180,NODEF 0,0,9,1,0,0,0,0,10,10,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.05,0.26,4.75,1,2,1,2,2,3,11,1,3,6,5,5,39,46.6,21.25,11417.66,0.24,139,1,634.31,729.46,48,91,23,15,52,1.222222,3.666667,0.111111,0.333333,2.333333,2.222222,1.888889,11.777778,16.07,6.958889,2638.781,0.057778,37.888889,0.435556,146.5978,178.367778,14.333333,23.555556,7.444444,7.444444,17.222222,11,33,1,3,21,20,17,106,144.63,62.63,23749.03,0.52,341,3.92,1319.38,1605.31,129,212,67,67,155,NODEF 0,0,7,1,75,0,0,0,6,6,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,7,11,0,0,6,6,1,45,46.32,15.83,11604.88,0.24,132,0.67,644.72,733.21,51,81,29,18,54,2,3.666667,0,0,2.333333,2.333333,1,12,17.17,5.916667,2230.385,0.058333,34.5,0.208333,123.9117,171.641667,13.666667,20.833333,8.666667,7.5,15.833333,12,22,0,0,14,14,6,72,103.02,35.5,13382.31,0.35,207,1.25,743.47,1029.85,82,125,52,45,95,NODEF 0,0,5,3,0,0,0,2,60,5,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,1,3,3,1,21,24.17,17.5,7403.33,0.14,88,0.33,411.3,423.05,35,53,14,14,26,0.2,2.6,0,0.2,1.8,1.8,1,7.8,10.77,5.872,1814.772,0.042,27.4,0.1,100.82,126.078,10.6,16.8,5.6,6.8,10.4,1,13,0,1,9,9,5,39,53.85,29.36,9073.86,0.21,137,0.5,504.1,630.39,53,84,28,34,52,NODEF 0,0,5,2,0,0,0,1,24,5,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,3,0,0,2,2,1,7,8.3,6.67,369.01,0.02,16,2,20.5,55.35,5,11,3,8,9,0,1.4,0,0,1.2,1.2,1,3,3.26,1.534,74.202,0.004,4.4,0.83,4.124,11.87,1.4,3,1,2.4,4.6,0,7,0,0,6,6,5,15,16.3,7.67,371.01,0.02,22,4.15,20.62,59.35,7,15,5,12,23,NODEF 0,0,1,3,100,0,0,1,12,5,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,0,1,0,0,1,1,1,3,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,6,0,1,0,0,1,1,1,2,3.198,0.9,7.2,0,2.8,0.402,0.402,4.8,0.6,2.2,0.6,2.2,4.6,0,5,0,0,5,5,5,10,15.99,4.5,36,0,14,2.01,2.01,24,3,11,3,11,23,NODEF 0,0,15,4,90,0,0,1,34,19,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,34,37,9,13,19,16,11,93,85.04,35.08,66460.03,0.63,317,2,3692.22,1894.8,122,195,46,23,150,13.105263,13.526316,1.578947,5.736842,7.263158,6.105263,4.578947,50.31579,43.613684,15.339474,19934.23,0.291053,151.31579,0.204211,1107.457,873.028421,58.31579,93,26.105263,14.210526,73.789474,249,257,30,109,138,116,87,956,828.66,291.45,378750.37,5.53,2875,3.88,21041.68,16587.54,1108,1767,496,270,1402,NODEF 0,0,14,4,72,0,0,1,27,12,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,19,47,0,11,24,18,19,134,81.73,37.49,95656.09,0.85,407,2,5314.23,2551.41,162,245,59,28,155,7.416667,21.166667,0,2.166667,11.083333,8.583333,7.583333,61,42.7525,19.181667,32843.28,0.3775,187.833333,0.2225,1824.627,1128.075,72.5,115.333333,28.75,16.083333,72.833333,89,254,0,26,133,103,91,732,513.03,230.18,394119.38,4.53,2254,2.67,21895.53,13536.9,870,1384,345,193,874,NODEF 95,0,14,2,84,0,0,1,33,20,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,13,17,1,8,9,8,4,70,80.38,17.25,18960.71,0.37,199,0.67,1053.37,1117.33,70,129,34,18,91,4.055556,6,0.055556,1.611111,3.333333,3,1.444444,25.166667,32.1,8.123889,5209.669,0.128889,74.333333,0.252778,289.4272,388.273889,26.111111,48.222222,14.166667,9.222222,32.888889,73,108,1,29,60,54,26,453,577.8,146.23,93774.04,2.32,1338,4.55,5209.69,6988.93,470,868,255,166,592,NODEF 0,0,12,3,67,0,0,1,33,14,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.05,0.26,4.75,1,2,1,2,1,8,18,1,6,10,10,8,61,54.12,21.95,22309.61,0.34,182,1,1239.42,1016.46,67,115,29,19,71,2.142857,5.571429,0.071429,1.285714,3.357143,3.214286,2.642857,18.785714,20.618571,8.407857,4530.644,0.090714,54.857143,0.285,251.7014,273.578571,19.928571,34.928571,9.571429,8.642857,24.357143,30,78,1,18,47,45,37,263,288.66,117.71,63429.02,1.27,768,3.99,3523.82,3830.1,279,489,134,121,341,NODEF 0,0,11,2,80,1,0,1,28,15,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,13,13,0,4,7,6,5,55,48.24,18.94,17312.29,0.3,156,1,961.79,913.85,62,94,36,22,72,2.8,4.733333,0,1.2,2.866667,2.8,1.866667,16.8,20.938,6.732,2923.974,0.072667,46,0.343333,162.4427,222.396667,16.333333,29.666667,9.333333,7.933333,22.666667,42,71,0,18,43,42,28,252,314.07,100.98,43859.61,1.09,690,5.15,2436.64,3335.95,245,445,140,119,340,NODEF 0,0,10,1,88,2,0,0,23,23,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,9,13,1,10,7,6,7,48,44.1,19.44,16666.88,0.29,158,1,925.94,857.35,54,104,25,18,65,1.608696,2.391304,0.043478,2,1.695652,1.608696,1.521739,8.217391,14.908261,4.169565,1673.935,0.040435,26.608696,0.393043,92.99696,121.264348,9.478261,17.130435,5.608696,5.478261,13.695652,37,55,1,46,39,37,35,189,342.89,95.9,38500.5,0.93,612,9.04,2138.93,2789.08,218,394,129,126,315,NODEF 0,0,13,4,86,0,0,1,27,11,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,19,27,1,14,14,11,11,94,78.1,26.55,55057.45,0.69,328,2,3058.75,2073.59,140,188,58,22,118,3,5.363636,0.090909,1.636364,3.181818,2.727273,2.454545,17.727273,23.786364,6.059091,6954.233,0.115455,60.363636,0.457273,386.3482,346.876364,24.909091,35.454546,12.818182,7.363636,24.727273,33,59,1,18,35,30,27,195,261.65,66.65,76496.56,1.27,664,5.03,4249.83,3815.64,274,390,141,81,272,NODEF 67,0,13,3,100,3,0,1,25,19,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.4,0.67,8,1,3,1,3,2,0,1,0,0,1,1,1,0,12.68,2.5,79.25,0.01,10,0.67,4.4,31.7,4,6,4,5,7,0,1,0,0,1,1,1,0,7.789167,1.625,22.59667,0.000833,5.333333,0.633333,1.2575,12.983333,2,3.333333,2,3.25,3.333333,0,12,0,0,12,12,12,0,93.47,19.5,271.16,0.01,64,7.6,15.09,155.8,24,40,24,39,40,NODEF 100,0,0,1,100,0,0,0,4,3,0,1,0,0,1,1,1,0,0,0,0,0,2,0,0,0,2,0,1,0,1,0,3,0,0,2,1,1,3,10.34,3.75,84.22,0.01,8,0.67,4.68,22.46,3,5,3,5,5,0,1.666667,0,0,1.333333,1,1,2,5.443333,1.75,35.82667,0.006667,5.333333,0.313333,1.99,12.656667,2.666667,2.666667,2,2.666667,3.333333,0,5,0,0,4,3,3,6,16.33,5.25,107.48,0.02,16,0.94,5.97,37.97,8,8,6,8,10,NODEF 0,0,5,1,86,0,0,0,24,24,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.05,0.26,4.75,1,2,1,2,1,7,13,12,17,7,6,7,56,101.6,19.98,18860.9,0.35,187,1,1047.82,1060.74,75,112,35,20,85,2.25,4.75,1.916667,3.083333,2.875,2.458333,2.083333,17.916667,28.918333,8.45,4576.792,0.10375,61.166667,0.28625,254.2658,314.005,23.375,37.791667,13.583333,9.958333,27.208333,54,114,46,74,69,59,50,430,694.04,202.8,109843.01,2.49,1468,6.87,6102.38,7536.12,561,907,326,239,653,NODEF 0,0,10,2,75,0,0,1,20,16,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.05,0.26,4.75,1,2,1,2,2,6,19,1,6,10,10,5,57,49.46,18.78,14289.29,0.27,168,1,793.85,816.14,54,114,23,18,78,1.25,4.333333,0.083333,1,2.666667,2.666667,1.333333,13.25,17.8975,6.263333,2561.142,0.059167,38.75,0.345,142.285,176.544167,13,25.75,6.583333,6.916667,18.333333,15,52,1,12,32,32,16,159,214.77,75.16,30733.7,0.71,465,4.14,1707.42,2118.53,156,309,79,83,220,NODEF 0,0,10,1,88,0,0,0,25,25,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,3,2,5,0,1,2,2,1,24,35.65,8.57,2618.82,0.1,65,2,145.49,305.53,20,45,14,12,28,0.375,1.833333,0,0.083333,1.333333,1.333333,1,7.791667,17.8375,4.974167,850.6883,0.039167,28.041667,0.249583,47.26042,118.215,9.708333,18.333333,6.791667,7.291667,11,9,44,0,2,32,32,24,187,428.1,119.38,20416.52,0.94,673,5.99,1134.25,2837.16,233,440,163,175,264,NODEF 83,0,12,2,77,0,0,1,13,9,0,1,0,0,1,1,1,4,10.8,2.5,67.5,0.01,9,0.07,3.75,27,3,6,3,5,7,9,9,0,3,5,5,1,58,60.41,15.29,11840.44,0.28,154,0.4,657.8,845.75,56,98,30,15,75,2.666667,4.666667,0,1.166667,2.833333,2.833333,1,24.333333,27.711667,8.131667,4205.043,0.106667,62.166667,0.181667,233.6117,317.066667,23,39.166667,13,10,32.333333,16,28,0,7,17,17,6,146,166.27,48.79,25230.26,0.64,373,1.09,1401.67,1902.4,138,235,78,60,194,NODEF 0,0,4,1,0,0,0,0,6,6,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,7,7,0,3,4,3,3,37,57.62,16.14,14440.71,0.3,152,0.5,802.26,894.16,68,84,40,19,55,3.166667,4,0,1,2.5,2,2,18.5,29.336667,7.72,6147.613,0.14,72.833333,0.116667,341.5333,416.67,31.833333,41,19.166667,9.833333,27,19,24,0,6,15,12,12,111,176.02,46.32,36885.68,0.84,437,0.7,2049.2,2500.02,191,246,115,59,162,NODEF 0,0,2,1,0,2,0,0,9,9,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,2,0,1,0,4,1,1,1,6,15.22,3.75,213.97,0.02,18,1,11.89,57.06,6,12,4,5,19,0,1,0,1.888889,1,1,1,3.555556,9.575556,2.361111,120.7333,0.011111,11,0.335556,6.708889,33.116667,3.555556,7.444444,2.444444,3.555556,8.555556,0,9,0,17,9,9,9,32,86.18,21.25,1086.6,0.1,99,3.02,60.38,298.05,32,67,22,32,77,NODEF 0,0,0,1,100,0,0,0,0,0,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,7.74,1.5,17.41,0,5,0.67,0.97,11.61,2,3,2,3,1,0,1,0,0,1,1,1,0,6.133333,1.5,13.80333,0,4.333333,0.67,0.77,9.203333,1.333333,3,1.333333,3,1,0,3,0,0,3,3,3,0,18.4,4.5,41.41,0,13,2.01,2.31,27.61,4,9,4,9,3,NODEF 0,0,0,1,100,0,0,0,0,0,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.5,0.67,8,1,3,1,3,2,0,1,0,0,1,1,1,0,5.8,2,23.22,0,5,0.67,1.29,11.61,1,4,1,4,2,0,1,0,0,1,1,1,0,5.424,1.6,14.244,0,4.2,0.636,0.794,8.722,1,3.2,1,3.2,2,0,5,0,0,5,5,5,0,27.12,8,71.22,0,21,3.18,3.97,43.61,5,16,5,16,10,NODEF 19,0,10,2,96,0,0,1,84,50,0,1,0,0,1,1,1,0,4.21,1.5,12,0,4,0.05,0.67,8,1,3,1,3,2,5,11,0,3,6,5,3,32,55.71,21.37,13473.84,0.21,125,0.67,748.55,630.55,58,75,26,20,35,0.454546,2.145455,0,0.127273,1.581818,1.236364,1.145455,4.509091,13.364727,4.210727,872.0176,0.026364,19.818182,0.378545,48.446,83.520364,7.654546,12.163636,5.090909,6.290909,7.309091,25,118,0,7,87,68,63,248,735.06,231.59,47960.97,1.45,1090,20.82,2664.53,4593.62,421,669,280,346,402,DEF 0,0,15,1,78,0,0,0,11,11,0,1,0,0,1,1,1,0,0,0,0,0,3,0,0,4.75,0,2,0,2,2,5,36,1,2,14,12,6,56,71.91,41.88,126141.8,1,445,1,7007.88,3011.84,163,282,72,37,70,1.272727,8.545455,0.090909,0.272727,4.090909,3.454545,1.727273,14.818182,20.676364,9.96,17873.44,0.17,84.090909,0.405455,992.97,513.416364,30.818182,53.272727,14.181818,10.181818,20.636364,14,94,1,3,45,38,19,163,227.44,109.56,196607.85,1.87,925,4.46,10922.67,5647.58,339,586,156,112,227,NODEF 0,0,14,1,73,0,0,0,8,8,0,1,0,0,1,1,1,0,5.33,1,8,0,4,0.03,0.44,8,1,2,1,2,3,24,34,2,3,18,16,4,120,103.45,38.54,107551.84,0.93,439,1,5975.1,2790.97,166,273,56,26,151,4.5,5.125,0.25,0.625,3.125,2.875,1.375,22.25,31.49125,6.85,14039.51,0.15,76.625,0.5475,779.9725,451.97375,30.375,46.25,14,6.5,29.875,36,41,2,5,25,23,11,178,251.93,54.8,112316.06,1.2,613,4.38,6239.78,3615.79,243,370,112,52,239,NODEF 11,0,1,3,100,1,0,1,38,32,0,1,0,0,1,1,1,0,3.62,1,8,0,4,0.14,0.44,8,1,2,1,2,2,0,5,0,0,3,2,1,1,14.4,7,344.16,0.02,16,1,19.12,57.36,4,12,4,9,6,0,1.888889,0,0,1.444444,1.277778,1,0.333333,7.822778,3.055556,90.43111,0.006667,7.722222,0.474444,5.023889,22.596111,2.388889,5.333333,2.111111,4.722222,2.944444,0,34,0,0,26,23,18,6,140.81,55,1627.76,0.12,139,8.54,90.43,406.73,43,96,38,85,53,NODEF 0,0,14,4,0,0,0,1,41,10,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,0,1,0,1,3,7,9,0,11,5,5,4,34,33.08,14.7,5682.93,0.14,88,1,315.72,423.05,31,57,16,14,45,1.6,3.4,0,1.7,2.2,2.2,1.3,11.7,16.46,6.893,1954.004,0.054,36.7,0.3,108.557,164.812,12.8,23.9,7,7.8,17.9,16,34,0,17,22,22,13,117,164.6,68.93,19540.04,0.54,367,3,1085.57,1648.12,128,239,70,78,179,NODEF 100,0,0,1,100,1,0,0,35,35,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.22,0.26,4.75,1,2,1,2,1,0,5,0,0,3,2,3,1,11.85,4.5,239.86,0.02,14,1,13.33,53.3,5,9,5,9,4,0,1.2,0,0,1.1,1.05,1.1,0.1,6.7855,1.65,26.6505,0.0015,5.05,0.6555,1.483,12.129,1.7,3.35,1.65,3.25,2.15,0,24,0,0,22,21,22,2,135.71,33,533.01,0.03,101,13.11,29.66,242.58,34,67,33,65,43,NODEF 0,0,15,7,78,0,0,2,119,7,0,1,0,0,1,1,1,1,0,0,0,0,1,0,0,0,0,1,0,1,4,23,25,0,22,13,12,11,112,53.73,43.27,95460.74,0.74,365,0.15,5303.37,2206.2,125,240,39,27,165,7.25,9.5,0,6.5,5.25,4.25,3.5,40.5,28.51,16.0675,26699.18,0.255,131.25,0.06,1483.287,758.705,47,84.25,17.75,12.75,58,29,38,0,26,21,17,14,162,114.04,64.27,106796.72,1.02,525,0.24,5933.15,3034.82,188,337,71,51,232,NODEF 0,0,15,1,82,0,0,0,7,7,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.03,0.67,8,1,2,1,2,2,13,27,0,23,14,13,12,81,41.82,31.2,40708.58,0.43,220,0.67,2261.59,1304.76,84,136,35,26,119,2.285714,5,0,3.571429,3,2.857143,2.571429,14.857143,15.515714,6.27,5952.183,0.07,40.285714,0.51,330.6771,217.92,15.714286,24.571429,8.142857,6.857143,23,16,35,0,25,21,20,18,104,108.61,43.89,41665.28,0.49,282,3.57,2314.74,1525.44,110,172,57,48,161,NODEF 0,0,9,1,83,0,0,0,15,15,0,1,0,0,1,1,1,0,0,0,0,0,3,0,0,4.75,0,2,0,2,2,3,5,1,2,3,3,1,29,44.93,10.05,4534.29,0.15,88,1,251.9,451.38,34,54,22,13,40,0.466667,1.8,0.066667,0.133333,1.4,1.4,1,5.866667,12.09,4.053333,643.3547,0.025333,18.933333,0.407333,35.742,79.564667,7.133333,11.8,4.933333,6,10.533333,7,27,1,2,21,21,15,88,181.35,60.8,9650.32,0.38,284,6.11,536.13,1193.47,107,177,74,90,158,NODEF 100,0,3,1,100,1,0,0,32,32,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.5,0.26,4.75,1,2,1,2,2,0,1,0,0,1,1,1,0,11.23,2,44.92,0.01,8,1,2.5,22.46,3,5,3,4,4,0,1,0,0,1,1,1,0,5.887222,1.5,14.24778,0.000556,4.277778,0.687778,0.793889,9.043889,1.222222,3.055556,1.222222,3,2.444444,0,18,0,0,18,18,18,0,105.97,27,256.46,0.01,77,12.38,14.29,162.79,22,55,22,54,44,NODEF 0,0,8,2,72,0,0,1,36,11,0,1,0,0,1,1,1,0,5.33,1,8,0,4,0.14,0.44,8,1,2,1,2,2,5,5,0,5,3,3,1,13,34.29,7.2,852.58,0.05,37,1,47.37,154.29,18,23,12,8,27,1.454546,1.545455,0,0.818182,1.272727,1.272727,1,5.909091,16.736364,3.302727,269.3245,0.02,17.181818,0.402727,14.96182,61.701818,6,11.181818,4.727273,5.272727,11.181818,16,17,0,9,14,14,11,65,184.1,36.33,2962.57,0.22,189,4.43,164.58,678.72,66,123,52,58,123,NODEF 0,0,8,2,22,0,0,1,11,11,0,1,0,0,1,1,1,2,5.8,2,23.22,0,5,0.11,1.29,11.61,1,4,1,4,4,0,3,1,1,2,2,1,13,20.46,9.5,1736.95,0.06,41,0.5,96.5,182.84,19,25,11,11,15,0,1.545455,0.090909,0.090909,1.272727,1.272727,1,5.636364,12.011818,4.825455,454.2118,0.021818,17.454546,0.271818,25.23364,66.471818,6.545455,10.909091,4.636364,7.090909,7.727273,0,17,1,1,14,14,11,62,132.13,53.08,4996.33,0.24,192,2.99,277.57,731.19,72,120,51,78,85,NODEF 0,0,4,1,50,0,0,0,11,6,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,3,0,1,2,1,1,7,11.72,7,574.31,0.03,21,0.5,31.91,82.04,7,14,5,10,13,1,1.333333,0,0.166667,1.166667,1,1,2,4.505,2,113.8533,0.006667,6.166667,0.161667,6.325,20.363333,1.833333,4.333333,1.5,3.666667,4.833333,6,8,0,1,7,6,6,12,27.03,12,683.12,0.04,37,0.97,37.95,122.18,11,26,9,22,29,NODEF 0,0,0,1,100,0,0,0,7,7,0,1,0,0,1,1,1,1,5.33,1,12,0,4,0.67,0.67,8,1,3,1,2,2,0,1,0,0,1,1,1,7,91.38,1.5,91.38,0.03,24,1,5.08,91.38,12,12,12,3,14,0,1,0,0,1,1,1,1.857143,17.622857,1.428571,23.34,0.004286,6.857143,0.717143,1.3,19.911429,2.571429,4.285714,2.571429,2.857143,3.714286,0,7,0,0,7,7,7,13,123.36,10,163.38,0.03,48,5.02,9.1,139.38,18,30,18,20,26,NODEF 83,0,3,2,100,0,0,1,38,11,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,2,0,1,0,0,1,1,1,0,7.74,1.5,17.41,0,5,0.67,0.97,11.61,2,3,2,3,4,0,1,0,0,1,1,1,0,7.258,1.5,16.328,0,4.8,0.67,0.91,10.888,1.8,3,1.8,3,2.4,0,5,0,0,5,5,5,0,36.29,7.5,81.64,0,24,3.35,4.55,54.44,9,15,9,15,12,NODEF 0,0,0,1,100,0,0,0,10,10,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.67,0.26,4.75,1,2,1,2,1,0,1,0,0,1,1,1,0,16.84,1.5,37.9,0.01,9,1,2.11,25.27,4,5,4,3,4,0,1,0,0,1,1,1,0,7.4,1.3,14.28,0.002,4.6,0.802,0.794,10.154,1.6,3,1.6,2.6,2.4,0,5,0,0,5,5,5,0,37,6.5,71.4,0.01,23,4.01,3.97,50.77,8,15,8,13,12,NODEF 100,0,1,1,70,0,0,0,5,5,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,20.68,3,72,0.01,8,1,4,24,4,6,4,6,2,0,1,0,0,1,1,1,0,5.736,0.8,18.536,0.004,3.6,0.266,1.03,8.936,1.2,2.4,1.2,2,1.4,0,5,0,0,5,5,5,0,28.68,4,92.68,0.02,18,1.33,5.15,44.68,6,12,6,10,7,NODEF 50,0,1,2,100,0,0,1,30,20,0,1,0,0,1,1,1,0,6.2,1.5,17.41,0,5,0.4,0.97,11.61,1,3,1,3,2,0,1,0,0,1,1,1,0,7.74,2.5,38.77,0.01,6,0.67,2.15,15.51,2,5,2,5,2,0,1,0,0,1,1,1,0,7.226667,1.833333,24.53,0.003333,5.333333,0.58,1.363333,12.91,1.666667,3.666667,1.666667,3.666667,2,0,3,0,0,3,3,3,0,21.68,5.5,73.59,0.01,16,1.74,4.09,38.73,5,11,5,11,6,NODEF 0,0,0,1,0,0,0,0,10,10,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.5,0.26,4.75,1,2,1,2,4,0,1,0,0,1,1,1,0,7.75,2,31.02,0.01,6,1,1.72,15.51,2,4,2,4,4,0,1,0,0,1,1,1,0,5.943333,1.5,15.92333,0.003333,4.333333,0.723333,0.883333,9.42,1.333333,3,1.333333,3,4,0,3,0,0,3,3,3,0,17.83,4.5,47.77,0.01,13,2.17,2.65,28.26,4,9,4,9,12,NODEF 0,0,0,1,0,0,0,0,10,10,0,1,0,0,1,1,1,0,4.75,1,4.75,0,3,0.67,0.26,4.75,1,2,1,2,2,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,1,0.67,8,1,3,1,3,4,0,1,0,0,1,1,1,0,4.943333,1.166667,7.166667,0,3.333333,0.89,0.396667,5.833333,1,2.333333,1,2.333333,3.333333,0,3,0,0,3,3,3,0,14.83,3.5,21.5,0,10,2.67,1.19,17.5,3,7,3,7,10,NODEF 0,0,0,1,100,1,0,0,28,28,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,NODEF 0,0,1,2,0,0,0,1,2,2,0,1,0,0,1,1,1,0,0,0,0,0,1,0,0,0,1,0,1,0,2,0,1,0,0,1,1,1,1,6.2,2.5,38.77,0.01,6,0.4,2.15,15.51,1,5,1,5,3,0,1,0,0,1,1,1,0.5,3.1,1.25,19.385,0.005,3.5,0.2,1.075,7.755,1,2.5,1,2.5,2.5,0,2,0,0,2,2,2,1,6.2,2.5,38.77,0.01,7,0.4,2.15,15.51,2,5,2,5,5,NODEF 17,0,1,4,100,0,0,1,198,24,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,NODEF 0,0,0,3,0,0,0,2,60,5,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,NODEF 0,0,0,1,98,0,0,0,37,34,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,0,1,0,0,1,1,1,0,5.33,1.5,12,0,4,0.67,0.67,8,1,3,1,3,1,NODEF 0,0,0,1,100,0,0,0,7,7,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,NODEF