fork download
  1. #include <algorithm>
  2. #include <cassert>
  3. #include <cmath>
  4. #include <cstring>
  5. #include <functional>
  6. #include <iomanip>
  7. #include <iostream>
  8. #include <iterator>
  9. #include <map>
  10. #include <numeric>
  11. #include <set>
  12. #include <sstream>
  13. #include <string>
  14. #include <type_traits>
  15. #include <vector>
  16.  
  17. template < class BidirectionalIterator >
  18. bool next_combination(BidirectionalIterator first1,
  19. BidirectionalIterator last1,
  20. BidirectionalIterator first2,
  21. BidirectionalIterator last2)
  22. {
  23. if ((first1 == last1) || (first2 == last2)) {
  24. return false;
  25. }
  26. BidirectionalIterator m1 = last1;
  27. BidirectionalIterator m2 = last2; --m2;
  28. while (--m1 != first1 && !(*m1 < *m2)) {
  29. }
  30. bool result = (m1 == first1) && !(*first1 < *m2);
  31. if (!result) {
  32. while (first2 != m2 && !(*m1 < *first2)) {
  33. ++first2;
  34. }
  35. first1 = m1;
  36. std::iter_swap(first1, first2);
  37. ++first1;
  38. ++first2;
  39. }
  40. if ((first1 != last1) && (first2 != last2)) {
  41. m1 = last1; m2 = first2;
  42. while ((m1 != first1) && (m2 != last2)) {
  43. std::iter_swap(--m1, m2);
  44. ++m2;
  45. }
  46. std::reverse(first1, m1);
  47. std::reverse(first1, last1);
  48. std::reverse(m2, last2);
  49. std::reverse(first2, last2);
  50. }
  51. return !result;
  52. }
  53.  
  54. template < class BidirectionalIterator >
  55. bool next_combination(BidirectionalIterator first,
  56. BidirectionalIterator middle,
  57. BidirectionalIterator last)
  58. {
  59. return next_combination(first, middle, middle, last);
  60. }
  61.  
  62. using namespace std;
  63.  
  64. #define CSV
  65. #define COOLDOWN 4
  66. #define QUEST_POOL 3
  67.  
  68. typedef int questValue;
  69. typedef float calculationValue;
  70. typedef map<vector<questValue>, map<questValue, vector<size_t>>, function<bool(const vector<questValue>&, const vector<questValue>&)>> container;
  71. typedef map<vector<questValue>, map<questValue, pair<calculationValue, vector<calculationValue>>>> inOut;
  72.  
  73. #ifndef CSV
  74. #define PRECISION 3
  75.  
  76. string formatOutput(const vector<calculationValue>& toBeFormatted, const streamsize questValueSize, const streamsize calculationValueSize, const size_t keysSize) {
  77. ostringstream result;
  78.  
  79. result.setf(ios_base::fixed, ios_base::floatfield);
  80. result.precision(PRECISION);
  81.  
  82. auto it = toBeFormatted.cbegin();
  83.  
  84. while (it != toBeFormatted.cend()) {
  85. result << '\xBA' << setw(questValueSize) << lround(*it++);
  86.  
  87. for (auto i = 0; i < COOLDOWN - 1; ++i) {
  88. result << '\xB3' << setw(questValueSize) << lround(*it++);
  89. }
  90. result << '\xBA' << setw(questValueSize) << lround(*it++);
  91.  
  92. for (auto i = 0; i < QUEST_POOL - 1; ++i) {
  93. result << '\xB3' << setw(questValueSize) << lround(*it++);
  94. }
  95. result << '\xBA' << setw(questValueSize) << lround(*it++);
  96. result << '\xBA' << setw(calculationValueSize) << *it++;
  97. result << '\xBA' << setw(calculationValueSize) << *it++;
  98.  
  99. result << '\xBA' << setw(calculationValueSize) << *it++;
  100.  
  101. for (auto i = 0; i < keysSize - 1; ++i) {
  102. result << '\xB3' << setw(calculationValueSize) << *it++;
  103. }
  104. result << '\xBA' << setw(calculationValueSize) << *it++;
  105.  
  106. for (auto i = 0; i < keysSize - 1; ++i) {
  107. result << '\xB3' << setw(calculationValueSize) << *it++;
  108. }
  109. result << "\xBA\n";
  110. }
  111. return result.str();
  112. }
  113. #endif
  114.  
  115. string operator*(const string& multiplicand, const size_t multiplier) {
  116. const auto size = multiplicand.size();
  117. string result(size * multiplier, '\0');
  118. size_t i = 0U;
  119.  
  120. generate(result.begin(), result.end(), [&]() {
  121. return multiplicand[i++ % size];
  122. });
  123.  
  124. return result;
  125. }
  126.  
  127. string operator*(const size_t multiplier, const string& multiplicand) {
  128. return operator*(multiplicand, multiplier);
  129. }
  130.  
  131. vector<calculationValue> loopBody(const container::value_type& line, const set<questValue>& keys, const size_t questsSize, inOut& preQuestOuputs) {
  132. // COOLDOWN quests, QUEST_POOL quests, total
  133. vector<questValue> questValues(COOLDOWN + QUEST_POOL);
  134. // QUEST_POOL quests
  135. const auto questPoolIt = next(line.first.cbegin(), COOLDOWN - 1);
  136.  
  137. copy(line.first.cbegin(), questPoolIt, questValues.begin());
  138.  
  139. copy(line.first.crbegin(), make_reverse_iterator(questPoolIt), next(questValues.rbegin()));
  140. questValues.back() = accumulate(questPoolIt, line.first.cend(), calculationValue{});
  141.  
  142. // post-total
  143. calculationValue postQuestTotal = line.first.back();
  144. vector<calculationValue> postQuestTotals(keys.size());
  145. const auto keyedMap = preQuestOuputs.find(inOut::key_type{ line.first.cbegin(), prev(line.first.cend()) });
  146.  
  147. if (keyedMap != preQuestOuputs.cend()) {
  148. const auto value = keyedMap->second.find(postQuestTotal);
  149.  
  150. if (value != keyedMap->second.cend()) {
  151. postQuestTotal += value->second.first;
  152. copy(value->second.second.cbegin(), value->second.second.cend(), postQuestTotals.begin());
  153. }
  154. }
  155.  
  156. // questValues, pre-total, post-total, pre-distribution, post-distribution
  157. vector<calculationValue> result((questValues.size() + 3 + postQuestTotals.size() * 2) * line.second.size());
  158. auto resultIt = result.begin();
  159. calculationValue size = questsSize - COOLDOWN - distance(questPoolIt, line.first.cend());
  160.  
  161. for (const auto& preQuestDistribution : line.second) {
  162. *resultIt = preQuestDistribution.first;
  163.  
  164. auto preQuestTotal = copy(questValues.cbegin(), questValues.cend(), next(resultIt));
  165.  
  166. resultIt = next(preQuestTotal);
  167. *resultIt = postQuestTotal;
  168. // Seeding preQuest with total - worst quest in QUEST_POOL
  169. *preQuestTotal = questValues.back() - *questPoolIt;
  170. auto toIt = ++resultIt;
  171. auto first2 = keys.cbegin();
  172.  
  173. for (auto fromIt = preQuestDistribution.second.cbegin(); fromIt != preQuestDistribution.second.cend(); ++toIt, ++fromIt, ++first2) {
  174. *toIt = *fromIt / size;
  175. *preQuestTotal += *first2 * *toIt;
  176. }
  177. preQuestOuputs[line.first][preQuestDistribution.first] = make_pair(*preQuestTotal, vector<calculationValue>(resultIt, toIt));
  178. resultIt = copy(postQuestTotals.cbegin(), postQuestTotals.cend(), toIt);
  179. }
  180. return result;
  181. }
  182.  
  183. int main() {
  184. vector<questValue> quests{ 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 40, 50, 50, 50, 50, 50, 50, 50, 50, 50, 60, 60, 60, 60, 60, 60, 60, 60, 60, 60, 100, 100 };
  185.  
  186. assert(quests.size() > COOLDOWN + QUEST_POOL);
  187.  
  188. const set<questValue> keys{ quests.cbegin(), quests.cend() };
  189.  
  190. assert(keys.size() >= QUEST_POOL);
  191.  
  192. container lines([](const container::key_type& lhs, const container::key_type& rhs) {
  193. const auto lhsSize = lhs.size();
  194. const auto rhsSize = rhs.size();
  195.  
  196. if (lhsSize == rhsSize) {
  197. auto lhsIt = next(lhs.cbegin(), COOLDOWN - 1);
  198. auto rhsIt = next(rhs.cbegin(), COOLDOWN - 1);
  199.  
  200. return lexicographical_compare(lhsIt, lhs.cend(), rhsIt, rhs.cend()) || (equal(lhsIt, lhs.cend(), rhsIt) && lexicographical_compare(lhs.cbegin(), lhsIt, rhs.cbegin(), rhsIt));
  201. } else {
  202. return lhsSize < rhsSize;
  203. } });
  204. auto postMiddle = next(quests.begin(), COOLDOWN - 1);
  205.  
  206. do {
  207. rotate(postMiddle, next(postMiddle), quests.end());
  208.  
  209. for (auto preQuest = postMiddle, end = prev(quests.end()); preQuest != end; preQuest = upper_bound(preQuest, end, *end), iter_swap(preQuest, end)) {
  210. for (auto handMiddle = next(postMiddle); distance(postMiddle, handMiddle) <= QUEST_POOL; ++handMiddle) {
  211. do {
  212. auto& distribution = lines[decltype(lines)::key_type{ quests.begin(), handMiddle }][*end];
  213.  
  214. distribution.resize(keys.size());
  215. for_each(handMiddle, end, [&](auto i) { distribution[distance(keys.begin(), keys.find(i))]++; });
  216. } while (next_combination(postMiddle, handMiddle, end));
  217. }
  218. }
  219. } while (next_combination(quests.begin(), postMiddle, quests.end()));
  220.  
  221. inOut preQuestOutputs;
  222. vector<string> headerColumns = { "CoolingDown"s, "QuestPool"s, "Sum"s, "PreSum"s, "PostSum"s };
  223.  
  224. headerColumns.resize(headerColumns.size() + keys.size() * 2U);
  225.  
  226. transform(keys.cbegin(), keys.cend(), prev(headerColumns.end(), keys.size() * 2), [](const auto& i) { return "Pre" + to_string(i); });
  227. transform(keys.cbegin(), keys.cend(), prev(headerColumns.end(), keys.size()), [](const auto& i) { return "Post" + to_string(i); });
  228.  
  229. #ifdef CSV
  230. cout << headerColumns[0] << string(COOLDOWN, ',') << headerColumns[1] << string(QUEST_POOL, ',');
  231. copy(next(headerColumns.cbegin(), 2), prev(headerColumns.cend()), ostream_iterator<string>(cout, ","));
  232. cout << headerColumns.back() << endl;
  233.  
  234. for (auto& line : lines) {
  235. auto formatOutput = loopBody(line, keys, quests.size(), preQuestOutputs);
  236. auto it = formatOutput.cbegin();
  237.  
  238. while (it != formatOutput.cend()) {
  239. auto questValuesIt = next(it, COOLDOWN + QUEST_POOL + 1);
  240.  
  241. transform(it, questValuesIt, ostream_iterator<questValue>(cout, ","), [](const auto& i) { return lround(i); });
  242. it = next(questValuesIt, 2 + keys.size() * 2);
  243. copy(questValuesIt, prev(it), ostream_iterator<calculationValue>(cout, ","));
  244. cout << *prev(it) << endl;
  245. }
  246. }
  247. #else
  248. const streamsize questValueSize = log10(quests.back()) + 1LL;
  249. const auto calculationValueSize = questValueSize + PRECISION + 1LL;
  250. const string doubleQuestValue(questValueSize, '\xCD');
  251. const string doubleCalculationValue(calculationValueSize, '\xCD');
  252.  
  253. vector<streamsize> headerSizes(headerColumns.size(), calculationValueSize);
  254.  
  255. headerSizes[0] = questValueSize * COOLDOWN + COOLDOWN - 1LL;
  256. headerSizes[1] = questValueSize * QUEST_POOL + QUEST_POOL - 1LL;
  257. headerSizes[2] = questValueSize;
  258. transform(headerColumns.cbegin(), headerColumns.cend(), headerSizes.cbegin(), headerColumns.begin(), [](const auto& str, const auto& size) {
  259. return str.size() >= size ? str.substr(0U, size) : string(size - str.size(), ' ') + str;
  260. });
  261.  
  262. const auto headerTop = doubleCalculationValue + ('\xD1' + doubleCalculationValue) * (keys.size() - 1);
  263.  
  264. cout << '\xC9' + string(headerSizes[0], '\xCD') + '\xCB' + string(headerSizes[1], '\xCD') + '\xCB' + doubleQuestValue + '\xCB' + doubleCalculationValue + '\xCB' + doubleCalculationValue + '\xCB' + headerTop + '\xCB' + headerTop + "\xBB\n\xBA";
  265.  
  266. const auto headerColumnsIt = prev(headerColumns.cend(), keys.size() * 2);
  267.  
  268. copy(headerColumns.cbegin(), headerColumnsIt, ostream_iterator<string>(cout, "\xBA"));
  269.  
  270. const auto keysIt = prev(headerColumns.cend(), keys.size());
  271.  
  272. copy(headerColumnsIt, prev(keysIt), ostream_iterator<string>(cout, "\xB3"));
  273. cout << *keysIt + '\xBA';
  274. copy(keysIt, prev(headerColumns.cend()), ostream_iterator<string>(cout, "\xB3"));
  275.  
  276. const auto headerBottom = doubleCalculationValue + ('\xD8' + doubleCalculationValue) * (keys.size() - 1);
  277.  
  278. cout << *prev(headerColumns.cend()) + "\xBA\n\xCC" + doubleQuestValue + ('\xD1' + doubleQuestValue) * (COOLDOWN - 1) + '\xCE' + doubleQuestValue + ('\xD1' + doubleQuestValue) * (QUEST_POOL - 1) + '\xCE' + doubleQuestValue + '\xCE' + doubleCalculationValue + '\xCE' + doubleCalculationValue + '\xCE' + headerBottom + '\xCE' + headerBottom + "\xB9\n";
  279.  
  280. const string singleQuestValue(questValueSize, '\xC4');
  281. const string singleCalculataionValue(calculationValueSize, '\xC4');
  282. const auto ruleKeys = singleCalculataionValue + ('\xC5' + singleCalculataionValue) * (keys.size() - 1);
  283. const auto rule = '\xC7' + singleQuestValue + ('\xC5' + singleQuestValue) * (COOLDOWN - 1) + '\xD7' + singleQuestValue + ('\xC5' + singleQuestValue) * (QUEST_POOL - 1) + '\xD7' + singleQuestValue + '\xD7' + singleCalculataionValue + '\xD7' + singleCalculataionValue + '\xD7' + ruleKeys + '\xD7' + ruleKeys + "\xB6\n";
  284.  
  285. cout << formatOutput(loopBody(*lines.cbegin(), keys, quests.size(), preQuestOutputs), questValueSize, calculationValueSize, keys.size());
  286.  
  287. for (auto line = next(lines.cbegin()); line != lines.cend(); ++line) {
  288. cout << rule << formatOutput(loopBody(*line, keys, quests.size(), preQuestOutputs), questValueSize, calculationValueSize, keys.size());
  289. }
  290.  
  291. const auto footer = doubleCalculationValue + ('\xCF' + doubleCalculationValue) * (keys.size() - 1);
  292. cout << '\xC8' + doubleQuestValue + ('\xCF' + doubleQuestValue) * (COOLDOWN - 1) + '\xCA' + doubleQuestValue + ('\xCF' + doubleQuestValue) * (QUEST_POOL - 1) + '\xCA' + doubleQuestValue + '\xCA' + doubleCalculationValue + '\xCA' + doubleCalculationValue + '\xCA' + footer + '\xCA' + footer + "\xBC\n";
  293. #endif
  294. }
  295.  
Runtime error #stdin #stdout 0.01s 3564KB
stdin
Standard input is empty
stdout
CoolingDown,,,,QuestPool,,,Sum,PreSum,PostSum,Pre40,Pre50,Pre60,Pre100,Post40,Post50,Post60,Post100
40,40,40,40,0,0,40,40,53.2258,40,0.322581,0.290323,0.322581,0.0645161,0,0,0,0
50,40,40,40,0,0,40,40,52.9032,40,0.354839,0.258065,0.322581,0.0645161,0,0,0,0
60,40,40,40,0,0,40,40,52.5806,40,0.354839,0.290323,0.290323,0.0645161,0,0,0,0
100,40,40,40,0,0,40,40,51.2903,40,0.354839,0.290323,0.322581,0.0322581,0,0,0,0
40,40,40,50,0,0,40,40,52.9032,40,0.354839,0.258065,0.322581,0.0645161,0,0,0,0
50,40,40,50,0,0,40,40,52.5806,40,0.387097,0.225806,0.322581,0.0645161,0,0,0,0
60,40,40,50,0,0,40,40,52.2581,40,0.387097,0.258065,0.290323,0.0645161,0,0,0,0
100,40,40,50,0,0,40,40,50.9677,40,0.387097,0.258065,0.322581,0.0322581,0,0,0,0
40,40,40,60,0,0,40,40,52.5806,40,0.354839,0.290323,0.290323,0.0645161,0,0,0,0
50,40,40,60,0,0,40,40,52.2581,40,0.387097,0.258065,0.290323,0.0645161,0,0,0,0
60,40,40,60,0,0,40,40,51.9355,40,0.387097,0.290323,0.258065,0.0645161,0,0,0,0
100,40,40,60,0,0,40,40,50.6452,40,0.387097,0.290323,0.290323,0.0322581,0,0,0,0
40,40,40,100,0,0,40,40,51.2903,40,0.354839,0.290323,0.322581,0.0322581,0,0,0,0
50,40,40,100,0,0,40,40,50.9677,40,0.387097,0.258065,0.322581,0.0322581,0,0,0,0
60,40,40,100,0,0,40,40,50.6452,40,0.387097,0.290323,0.290323,0.0322581,0,0,0,0
100,40,40,100,0,0,40,40,49.3548,40,0.387097,0.290323,0.322581,0,0,0,0,0
40,40,50,50,0,0,40,40,52.5806,40,0.387097,0.225806,0.322581,0.0645161,0,0,0,0
50,40,50,50,0,0,40,40,52.2581,40,0.419355,0.193548,0.322581,0.0645161,0,0,0,0
60,40,50,50,0,0,40,40,51.9355,40,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
100,40,50,50,0,0,40,40,50.6452,40,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
40,40,50,60,0,0,40,40,52.2581,40,0.387097,0.258065,0.290323,0.0645161,0,0,0,0
50,40,50,60,0,0,40,40,51.9355,40,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
60,40,50,60,0,0,40,40,51.6129,40,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
100,40,50,60,0,0,40,40,50.3226,40,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
40,40,50,100,0,0,40,40,50.9677,40,0.387097,0.258065,0.322581,0.0322581,0,0,0,0
50,40,50,100,0,0,40,40,50.6452,40,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
60,40,50,100,0,0,40,40,50.3226,40,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
100,40,50,100,0,0,40,40,49.0323,40,0.419355,0.258065,0.322581,0,0,0,0,0
40,40,60,60,0,0,40,40,51.9355,40,0.387097,0.290323,0.258065,0.0645161,0,0,0,0
50,40,60,60,0,0,40,40,51.6129,40,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
60,40,60,60,0,0,40,40,51.2903,40,0.419355,0.290323,0.225806,0.0645161,0,0,0,0
100,40,60,60,0,0,40,40,50,40,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
40,40,60,100,0,0,40,40,50.6452,40,0.387097,0.290323,0.290323,0.0322581,0,0,0,0
50,40,60,100,0,0,40,40,50.3226,40,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
60,40,60,100,0,0,40,40,50,40,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
100,40,60,100,0,0,40,40,48.7097,40,0.419355,0.290323,0.290323,0,0,0,0,0
40,40,100,100,0,0,40,40,49.3548,40,0.387097,0.290323,0.322581,0,0,0,0,0
50,40,100,100,0,0,40,40,49.0323,40,0.419355,0.258065,0.322581,0,0,0,0,0
60,40,100,100,0,0,40,40,48.7097,40,0.419355,0.290323,0.290323,0,0,0,0,0
40,50,50,50,0,0,40,40,52.2581,40,0.419355,0.193548,0.322581,0.0645161,0,0,0,0
50,50,50,50,0,0,40,40,51.9355,40,0.451613,0.16129,0.322581,0.0645161,0,0,0,0
60,50,50,50,0,0,40,40,51.6129,40,0.451613,0.193548,0.290323,0.0645161,0,0,0,0
100,50,50,50,0,0,40,40,50.3226,40,0.451613,0.193548,0.322581,0.0322581,0,0,0,0
40,50,50,60,0,0,40,40,51.9355,40,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
50,50,50,60,0,0,40,40,51.6129,40,0.451613,0.193548,0.290323,0.0645161,0,0,0,0
60,50,50,60,0,0,40,40,51.2903,40,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
100,50,50,60,0,0,40,40,50,40,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
40,50,50,100,0,0,40,40,50.6452,40,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
50,50,50,100,0,0,40,40,50.3226,40,0.451613,0.193548,0.322581,0.0322581,0,0,0,0
60,50,50,100,0,0,40,40,50,40,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
100,50,50,100,0,0,40,40,48.7097,40,0.451613,0.225806,0.322581,0,0,0,0,0
40,50,60,60,0,0,40,40,51.6129,40,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
50,50,60,60,0,0,40,40,51.2903,40,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
60,50,60,60,0,0,40,40,50.9677,40,0.451613,0.258065,0.225806,0.0645161,0,0,0,0
100,50,60,60,0,0,40,40,49.6774,40,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
40,50,60,100,0,0,40,40,50.3226,40,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
50,50,60,100,0,0,40,40,50,40,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
60,50,60,100,0,0,40,40,49.6774,40,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
100,50,60,100,0,0,40,40,48.3871,40,0.451613,0.258065,0.290323,0,0,0,0,0
40,50,100,100,0,0,40,40,49.0323,40,0.419355,0.258065,0.322581,0,0,0,0,0
50,50,100,100,0,0,40,40,48.7097,40,0.451613,0.225806,0.322581,0,0,0,0,0
60,50,100,100,0,0,40,40,48.3871,40,0.451613,0.258065,0.290323,0,0,0,0,0
40,60,60,60,0,0,40,40,51.2903,40,0.419355,0.290323,0.225806,0.0645161,0,0,0,0
50,60,60,60,0,0,40,40,50.9677,40,0.451613,0.258065,0.225806,0.0645161,0,0,0,0
60,60,60,60,0,0,40,40,50.6452,40,0.451613,0.290323,0.193548,0.0645161,0,0,0,0
100,60,60,60,0,0,40,40,49.3548,40,0.451613,0.290323,0.225806,0.0322581,0,0,0,0
40,60,60,100,0,0,40,40,50,40,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
50,60,60,100,0,0,40,40,49.6774,40,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
60,60,60,100,0,0,40,40,49.3548,40,0.451613,0.290323,0.225806,0.0322581,0,0,0,0
100,60,60,100,0,0,40,40,48.0645,40,0.451613,0.290323,0.258065,0,0,0,0,0
40,60,100,100,0,0,40,40,48.7097,40,0.419355,0.290323,0.290323,0,0,0,0,0
50,60,100,100,0,0,40,40,48.3871,40,0.451613,0.258065,0.290323,0,0,0,0,0
60,60,100,100,0,0,40,40,48.0645,40,0.451613,0.290323,0.258065,0,0,0,0,0
40,40,40,40,0,0,50,50,52.9032,50,0.354839,0.258065,0.322581,0.0645161,0,0,0,0
50,40,40,40,0,0,50,50,52.5806,50,0.387097,0.225806,0.322581,0.0645161,0,0,0,0
60,40,40,40,0,0,50,50,52.2581,50,0.387097,0.258065,0.290323,0.0645161,0,0,0,0
100,40,40,40,0,0,50,50,50.9677,50,0.387097,0.258065,0.322581,0.0322581,0,0,0,0
40,40,40,50,0,0,50,50,52.5806,50,0.387097,0.225806,0.322581,0.0645161,0,0,0,0
50,40,40,50,0,0,50,50,52.2581,50,0.419355,0.193548,0.322581,0.0645161,0,0,0,0
60,40,40,50,0,0,50,50,51.9355,50,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
100,40,40,50,0,0,50,50,50.6452,50,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
40,40,40,60,0,0,50,50,52.2581,50,0.387097,0.258065,0.290323,0.0645161,0,0,0,0
50,40,40,60,0,0,50,50,51.9355,50,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
60,40,40,60,0,0,50,50,51.6129,50,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
100,40,40,60,0,0,50,50,50.3226,50,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
40,40,40,100,0,0,50,50,50.9677,50,0.387097,0.258065,0.322581,0.0322581,0,0,0,0
50,40,40,100,0,0,50,50,50.6452,50,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
60,40,40,100,0,0,50,50,50.3226,50,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
100,40,40,100,0,0,50,50,49.0323,50,0.419355,0.258065,0.322581,0,0,0,0,0
40,40,50,50,0,0,50,50,52.2581,50,0.419355,0.193548,0.322581,0.0645161,0,0,0,0
50,40,50,50,0,0,50,50,51.9355,50,0.451613,0.16129,0.322581,0.0645161,0,0,0,0
60,40,50,50,0,0,50,50,51.6129,50,0.451613,0.193548,0.290323,0.0645161,0,0,0,0
100,40,50,50,0,0,50,50,50.3226,50,0.451613,0.193548,0.322581,0.0322581,0,0,0,0
40,40,50,60,0,0,50,50,51.9355,50,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
50,40,50,60,0,0,50,50,51.6129,50,0.451613,0.193548,0.290323,0.0645161,0,0,0,0
60,40,50,60,0,0,50,50,51.2903,50,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
100,40,50,60,0,0,50,50,50,50,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
40,40,50,100,0,0,50,50,50.6452,50,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
50,40,50,100,0,0,50,50,50.3226,50,0.451613,0.193548,0.322581,0.0322581,0,0,0,0
60,40,50,100,0,0,50,50,50,50,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
100,40,50,100,0,0,50,50,48.7097,50,0.451613,0.225806,0.322581,0,0,0,0,0
40,40,60,60,0,0,50,50,51.6129,50,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
50,40,60,60,0,0,50,50,51.2903,50,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
60,40,60,60,0,0,50,50,50.9677,50,0.451613,0.258065,0.225806,0.0645161,0,0,0,0
100,40,60,60,0,0,50,50,49.6774,50,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
40,40,60,100,0,0,50,50,50.3226,50,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
50,40,60,100,0,0,50,50,50,50,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
60,40,60,100,0,0,50,50,49.6774,50,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
100,40,60,100,0,0,50,50,48.3871,50,0.451613,0.258065,0.290323,0,0,0,0,0
40,40,100,100,0,0,50,50,49.0323,50,0.419355,0.258065,0.322581,0,0,0,0,0
50,40,100,100,0,0,50,50,48.7097,50,0.451613,0.225806,0.322581,0,0,0,0,0
60,40,100,100,0,0,50,50,48.3871,50,0.451613,0.258065,0.290323,0,0,0,0,0
40,50,50,50,0,0,50,50,51.9355,50,0.451613,0.16129,0.322581,0.0645161,0,0,0,0
50,50,50,50,0,0,50,50,51.6129,50,0.483871,0.129032,0.322581,0.0645161,0,0,0,0
60,50,50,50,0,0,50,50,51.2903,50,0.483871,0.16129,0.290323,0.0645161,0,0,0,0
100,50,50,50,0,0,50,50,50,50,0.483871,0.16129,0.322581,0.0322581,0,0,0,0
40,50,50,60,0,0,50,50,51.6129,50,0.451613,0.193548,0.290323,0.0645161,0,0,0,0
50,50,50,60,0,0,50,50,51.2903,50,0.483871,0.16129,0.290323,0.0645161,0,0,0,0
60,50,50,60,0,0,50,50,50.9677,50,0.483871,0.193548,0.258065,0.0645161,0,0,0,0
100,50,50,60,0,0,50,50,49.6774,50,0.483871,0.193548,0.290323,0.0322581,0,0,0,0
40,50,50,100,0,0,50,50,50.3226,50,0.451613,0.193548,0.322581,0.0322581,0,0,0,0
50,50,50,100,0,0,50,50,50,50,0.483871,0.16129,0.322581,0.0322581,0,0,0,0
60,50,50,100,0,0,50,50,49.6774,50,0.483871,0.193548,0.290323,0.0322581,0,0,0,0
100,50,50,100,0,0,50,50,48.3871,50,0.483871,0.193548,0.322581,0,0,0,0,0
40,50,60,60,0,0,50,50,51.2903,50,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
50,50,60,60,0,0,50,50,50.9677,50,0.483871,0.193548,0.258065,0.0645161,0,0,0,0
60,50,60,60,0,0,50,50,50.6452,50,0.483871,0.225806,0.225806,0.0645161,0,0,0,0
100,50,60,60,0,0,50,50,49.3548,50,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
40,50,60,100,0,0,50,50,50,50,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
50,50,60,100,0,0,50,50,49.6774,50,0.483871,0.193548,0.290323,0.0322581,0,0,0,0
60,50,60,100,0,0,50,50,49.3548,50,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
100,50,60,100,0,0,50,50,48.0645,50,0.483871,0.225806,0.290323,0,0,0,0,0
40,50,100,100,0,0,50,50,48.7097,50,0.451613,0.225806,0.322581,0,0,0,0,0
50,50,100,100,0,0,50,50,48.3871,50,0.483871,0.193548,0.322581,0,0,0,0,0
60,50,100,100,0,0,50,50,48.0645,50,0.483871,0.225806,0.290323,0,0,0,0,0
40,60,60,60,0,0,50,50,50.9677,50,0.451613,0.258065,0.225806,0.0645161,0,0,0,0
50,60,60,60,0,0,50,50,50.6452,50,0.483871,0.225806,0.225806,0.0645161,0,0,0,0
60,60,60,60,0,0,50,50,50.3226,50,0.483871,0.258065,0.193548,0.0645161,0,0,0,0
100,60,60,60,0,0,50,50,49.0323,50,0.483871,0.258065,0.225806,0.0322581,0,0,0,0
40,60,60,100,0,0,50,50,49.6774,50,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
50,60,60,100,0,0,50,50,49.3548,50,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
60,60,60,100,0,0,50,50,49.0323,50,0.483871,0.258065,0.225806,0.0322581,0,0,0,0
100,60,60,100,0,0,50,50,47.7419,50,0.483871,0.258065,0.258065,0,0,0,0,0
40,60,100,100,0,0,50,50,48.3871,50,0.451613,0.258065,0.290323,0,0,0,0,0
50,60,100,100,0,0,50,50,48.0645,50,0.483871,0.225806,0.290323,0,0,0,0,0
60,60,100,100,0,0,50,50,47.7419,50,0.483871,0.258065,0.258065,0,0,0,0,0
40,40,40,40,0,0,60,60,52.5806,60,0.354839,0.290323,0.290323,0.0645161,0,0,0,0
50,40,40,40,0,0,60,60,52.2581,60,0.387097,0.258065,0.290323,0.0645161,0,0,0,0
60,40,40,40,0,0,60,60,51.9355,60,0.387097,0.290323,0.258065,0.0645161,0,0,0,0
100,40,40,40,0,0,60,60,50.6452,60,0.387097,0.290323,0.290323,0.0322581,0,0,0,0
40,40,40,50,0,0,60,60,52.2581,60,0.387097,0.258065,0.290323,0.0645161,0,0,0,0
50,40,40,50,0,0,60,60,51.9355,60,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
60,40,40,50,0,0,60,60,51.6129,60,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
100,40,40,50,0,0,60,60,50.3226,60,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
40,40,40,60,0,0,60,60,51.9355,60,0.387097,0.290323,0.258065,0.0645161,0,0,0,0
50,40,40,60,0,0,60,60,51.6129,60,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
60,40,40,60,0,0,60,60,51.2903,60,0.419355,0.290323,0.225806,0.0645161,0,0,0,0
100,40,40,60,0,0,60,60,50,60,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
40,40,40,100,0,0,60,60,50.6452,60,0.387097,0.290323,0.290323,0.0322581,0,0,0,0
50,40,40,100,0,0,60,60,50.3226,60,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
60,40,40,100,0,0,60,60,50,60,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
100,40,40,100,0,0,60,60,48.7097,60,0.419355,0.290323,0.290323,0,0,0,0,0
40,40,50,50,0,0,60,60,51.9355,60,0.419355,0.225806,0.290323,0.0645161,0,0,0,0
50,40,50,50,0,0,60,60,51.6129,60,0.451613,0.193548,0.290323,0.0645161,0,0,0,0
60,40,50,50,0,0,60,60,51.2903,60,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
100,40,50,50,0,0,60,60,50,60,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
40,40,50,60,0,0,60,60,51.6129,60,0.419355,0.258065,0.258065,0.0645161,0,0,0,0
50,40,50,60,0,0,60,60,51.2903,60,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
60,40,50,60,0,0,60,60,50.9677,60,0.451613,0.258065,0.225806,0.0645161,0,0,0,0
100,40,50,60,0,0,60,60,49.6774,60,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
40,40,50,100,0,0,60,60,50.3226,60,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
50,40,50,100,0,0,60,60,50,60,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
60,40,50,100,0,0,60,60,49.6774,60,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
100,40,50,100,0,0,60,60,48.3871,60,0.451613,0.258065,0.290323,0,0,0,0,0
40,40,60,60,0,0,60,60,51.2903,60,0.419355,0.290323,0.225806,0.0645161,0,0,0,0
50,40,60,60,0,0,60,60,50.9677,60,0.451613,0.258065,0.225806,0.0645161,0,0,0,0
60,40,60,60,0,0,60,60,50.6452,60,0.451613,0.290323,0.193548,0.0645161,0,0,0,0
100,40,60,60,0,0,60,60,49.3548,60,0.451613,0.290323,0.225806,0.0322581,0,0,0,0
40,40,60,100,0,0,60,60,50,60,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
50,40,60,100,0,0,60,60,49.6774,60,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
60,40,60,100,0,0,60,60,49.3548,60,0.451613,0.290323,0.225806,0.0322581,0,0,0,0
100,40,60,100,0,0,60,60,48.0645,60,0.451613,0.290323,0.258065,0,0,0,0,0
40,40,100,100,0,0,60,60,48.7097,60,0.419355,0.290323,0.290323,0,0,0,0,0
50,40,100,100,0,0,60,60,48.3871,60,0.451613,0.258065,0.290323,0,0,0,0,0
60,40,100,100,0,0,60,60,48.0645,60,0.451613,0.290323,0.258065,0,0,0,0,0
40,50,50,50,0,0,60,60,51.6129,60,0.451613,0.193548,0.290323,0.0645161,0,0,0,0
50,50,50,50,0,0,60,60,51.2903,60,0.483871,0.16129,0.290323,0.0645161,0,0,0,0
60,50,50,50,0,0,60,60,50.9677,60,0.483871,0.193548,0.258065,0.0645161,0,0,0,0
100,50,50,50,0,0,60,60,49.6774,60,0.483871,0.193548,0.290323,0.0322581,0,0,0,0
40,50,50,60,0,0,60,60,51.2903,60,0.451613,0.225806,0.258065,0.0645161,0,0,0,0
50,50,50,60,0,0,60,60,50.9677,60,0.483871,0.193548,0.258065,0.0645161,0,0,0,0
60,50,50,60,0,0,60,60,50.6452,60,0.483871,0.225806,0.225806,0.0645161,0,0,0,0
100,50,50,60,0,0,60,60,49.3548,60,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
40,50,50,100,0,0,60,60,50,60,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
50,50,50,100,0,0,60,60,49.6774,60,0.483871,0.193548,0.290323,0.0322581,0,0,0,0
60,50,50,100,0,0,60,60,49.3548,60,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
100,50,50,100,0,0,60,60,48.0645,60,0.483871,0.225806,0.290323,0,0,0,0,0
40,50,60,60,0,0,60,60,50.9677,60,0.451613,0.258065,0.225806,0.0645161,0,0,0,0
50,50,60,60,0,0,60,60,50.6452,60,0.483871,0.225806,0.225806,0.0645161,0,0,0,0
60,50,60,60,0,0,60,60,50.3226,60,0.483871,0.258065,0.193548,0.0645161,0,0,0,0
100,50,60,60,0,0,60,60,49.0323,60,0.483871,0.258065,0.225806,0.0322581,0,0,0,0
40,50,60,100,0,0,60,60,49.6774,60,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
50,50,60,100,0,0,60,60,49.3548,60,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
60,50,60,100,0,0,60,60,49.0323,60,0.483871,0.258065,0.225806,0.0322581,0,0,0,0
100,50,60,100,0,0,60,60,47.7419,60,0.483871,0.258065,0.258065,0,0,0,0,0
40,50,100,100,0,0,60,60,48.3871,60,0.451613,0.258065,0.290323,0,0,0,0,0
50,50,100,100,0,0,60,60,48.0645,60,0.483871,0.225806,0.290323,0,0,0,0,0
60,50,100,100,0,0,60,60,47.7419,60,0.483871,0.258065,0.258065,0,0,0,0,0
40,60,60,60,0,0,60,60,50.6452,60,0.451613,0.290323,0.193548,0.0645161,0,0,0,0
50,60,60,60,0,0,60,60,50.3226,60,0.483871,0.258065,0.193548,0.0645161,0,0,0,0
60,60,60,60,0,0,60,60,50,60,0.483871,0.290323,0.16129,0.0645161,0,0,0,0
100,60,60,60,0,0,60,60,48.7097,60,0.483871,0.290323,0.193548,0.0322581,0,0,0,0
40,60,60,100,0,0,60,60,49.3548,60,0.451613,0.290323,0.225806,0.0322581,0,0,0,0
50,60,60,100,0,0,60,60,49.0323,60,0.483871,0.258065,0.225806,0.0322581,0,0,0,0
60,60,60,100,0,0,60,60,48.7097,60,0.483871,0.290323,0.193548,0.0322581,0,0,0,0
100,60,60,100,0,0,60,60,47.4194,60,0.483871,0.290323,0.225806,0,0,0,0,0
40,60,100,100,0,0,60,60,48.0645,60,0.451613,0.290323,0.258065,0,0,0,0,0
50,60,100,100,0,0,60,60,47.7419,60,0.483871,0.258065,0.258065,0,0,0,0,0
60,60,100,100,0,0,60,60,47.4194,60,0.483871,0.290323,0.225806,0,0,0,0,0
40,40,40,40,0,0,100,100,51.2903,100,0.354839,0.290323,0.322581,0.0322581,0,0,0,0
50,40,40,40,0,0,100,100,50.9677,100,0.387097,0.258065,0.322581,0.0322581,0,0,0,0
60,40,40,40,0,0,100,100,50.6452,100,0.387097,0.290323,0.290323,0.0322581,0,0,0,0
100,40,40,40,0,0,100,100,49.3548,100,0.387097,0.290323,0.322581,0,0,0,0,0
40,40,40,50,0,0,100,100,50.9677,100,0.387097,0.258065,0.322581,0.0322581,0,0,0,0
50,40,40,50,0,0,100,100,50.6452,100,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
60,40,40,50,0,0,100,100,50.3226,100,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
100,40,40,50,0,0,100,100,49.0323,100,0.419355,0.258065,0.322581,0,0,0,0,0
40,40,40,60,0,0,100,100,50.6452,100,0.387097,0.290323,0.290323,0.0322581,0,0,0,0
50,40,40,60,0,0,100,100,50.3226,100,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
60,40,40,60,0,0,100,100,50,100,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
100,40,40,60,0,0,100,100,48.7097,100,0.419355,0.290323,0.290323,0,0,0,0,0
40,40,40,100,0,0,100,100,49.3548,100,0.387097,0.290323,0.322581,0,0,0,0,0
50,40,40,100,0,0,100,100,49.0323,100,0.419355,0.258065,0.322581,0,0,0,0,0
60,40,40,100,0,0,100,100,48.7097,100,0.419355,0.290323,0.290323,0,0,0,0,0
40,40,50,50,0,0,100,100,50.6452,100,0.419355,0.225806,0.322581,0.0322581,0,0,0,0
50,40,50,50,0,0,100,100,50.3226,100,0.451613,0.193548,0.322581,0.0322581,0,0,0,0
60,40,50,50,0,0,100,100,50,100,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
100,40,50,50,0,0,100,100,48.7097,100,0.451613,0.225806,0.322581,0,0,0,0,0
40,40,50,60,0,0,100,100,50.3226,100,0.419355,0.258065,0.290323,0.0322581,0,0,0,0
50,40,50,60,0,0,100,100,50,100,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
60,40,50,60,0,0,100,100,49.6774,100,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
100,40,50,60,0,0,100,100,48.3871,100,0.451613,0.258065,0.290323,0,0,0,0,0
40,40,50,100,0,0,100,100,49.0323,100,0.419355,0.258065,0.322581,0,0,0,0,0
50,40,50,100,0,0,100,100,48.7097,100,0.451613,0.225806,0.322581,0,0,0,0,0
60,40,50,100,0,0,100,100,48.3871,100,0.451613,0.258065,0.290323,0,0,0,0,0
40,40,60,60,0,0,100,100,50,100,0.419355,0.290323,0.258065,0.0322581,0,0,0,0
50,40,60,60,0,0,100,100,49.6774,100,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
60,40,60,60,0,0,100,100,49.3548,100,0.451613,0.290323,0.225806,0.0322581,0,0,0,0
100,40,60,60,0,0,100,100,48.0645,100,0.451613,0.290323,0.258065,0,0,0,0,0
40,40,60,100,0,0,100,100,48.7097,100,0.419355,0.290323,0.290323,0,0,0,0,0
50,40,60,100,0,0,100,100,48.3871,100,0.451613,0.258065,0.290323,0,0,0,0,0
60,40,60,100,0,0,100,100,48.0645,100,0.451613,0.290323,0.258065,0,0,0,0,0
40,50,50,50,0,0,100,100,50.3226,100,0.451613,0.193548,0.322581,0.0322581,0,0,0,0
50,50,50,50,0,0,100,100,50,100,0.483871,0.16129,0.322581,0.0322581,0,0,0,0
60,50,50,50,0,0,100,100,49.6774,100,0.483871,0.193548,0.290323,0.0322581,0,0,0,0
100,50,50,50,0,0,100,100,48.3871,100,0.483871,0.193548,0.322581,0,0,0,0,0
40,50,50,60,0,0,100,100,50,100,0.451613,0.225806,0.290323,0.0322581,0,0,0,0
50,50,50,60,0,0,100,100,49.6774,100,0.483871,0.193548,0.290323,0.0322581,0,0,0,0
60,50,50,60,0,0,100,100,49.3548,100,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
100,50,50,60,0,0,100,100,48.0645,100,0.483871,0.225806,0.290323,0,0,0,0,0
40,50,50,100,0,0,100,100,48.7097,100,0.451613,0.225806,0.322581,0,0,0,0,0
50,50,50,100,0,0,100,100,48.3871,100,0.483871,0.193548,0.322581,0,0,0,0,0
60,50,50,100,0,0,100,100,48.0645,100,0.483871,0.225806,0.290323,0,0,0,0,0
40,50,60,60,0,0,100,100,49.6774,100,0.451613,0.258065,0.258065,0.0322581,0,0,0,0
50,50,60,60,0,0,100,100,49.3548,100,0.483871,0.225806,0.258065,0.0322581,0,0,0,0
60,50,60,60,0,0,100,100,49.0323,100,0.483871,0.258065,0.225806,0.0322581,0,0,0,0
100,50,60,60,0,0,100,100,47.7419,100,0.483871,0.258065,0.258065,0,0,0,0,0
40,50,60,100,0,0,100,100,48.3871,100,0.451613,0.258065,0.290323,0,0,0,0,0
50,50,60,100,0,0,100,100,48.0645,100,0.483871,0.225806,0.290323,0,0,0,0,0
60,50,60,100,0,0,100,100,47.7419,100,0.483871,0.258065,0.258065,0,0,0,0,0
40,60,60,60,0,0,100,100,49.3548,100,0.451613,0.290323,0.225806,0.0322581,0,0,0,0
50,60,60,60,0,0,100,100,49.0323,100,0.483871,0.258065,0.225806,0.0322581,0,0,0,0
60,60,60,60,0,0,100,100,48.7097,100,0.483871,0.290323,0.193548,0.0322581,0,0,0,0
100,60,60,60,0,0,100,100,47.4194,100,0.483871,0.290323,0.225806,0,0,0,0,0
40,60,60,100,0,0,100,100,48.0645,100,0.451613,0.290323,0.258065,0,0,0,0,0
50,60,60,100,0,0,100,100,47.7419,100,0.483871,0.258065,0.258065,0,0,0,0,0
60,60,60,100,0,0,100,100,47.4194,100,0.483871,0.290323,0.225806,0,0,0,0,0
40,40,40,40,0,40,40,80,93.6667,93.2258,0.3,0.3,0.333333,0.0666667,0.322581,0.290323,0.322581,0.0645161
50,40,40,40,0,40,40,80,93.3333,93.2258,0.333333,0.266667,0.333333,0.0666667,0.322581,0.290323,0.322581,0.0645161
60,40,40,40,0,40,40,80,93,93.2258,0.333333,0.3,0.3,0.0666667,0.322581,0.290323,0.322581,0.0645161
100,40,40,40,0,40,40,80,91.6667,93.2258,0.333333,0.3,0.333333,0.0333333,0.322581,0.290323,0.322581,0.0645161
40,40,40,50,0,40,40,80,93.3333,92.9032,0.333333,0.266667,0.333333,0.0666667,0.354839,0.258065,0.322581,0.0645161
50,40,40,50,0,40,40,80,93,92.9032,0.366667,0.233333,0.333333,0.0666667,0.354839,0.258065,0.322581,0.0645161
60,40,40,50,0,40,40,80,92.6667,92.9032,0.366667,0.266667,0.3,0.0666667,0.354839,0.258065,0.322581,0.0645161
100,40,40,50,0,40,40,80,91.3333,92.9032,0.366667,0.266667,0.333333,0.0333333,0.354839,0.258065,0.322581,0.0645161
40,40,40,60,0,40,40,80,93,92.5806,0.333333,0.3,0.3,0.0666667,0.354839,0.290323,0.290323,0.0645161
50,40,40,60,0,40,40,80,92.6667,92.5806,0.366667,0.266667,0.3,0.0666667,0.354839,0.290323,0.290323,0.0645161
60,40,40,60,0,40,40,80,92.3333,92.5806,0.366667,0.3,0.266667,0.0666667,0.354839,0.290323,0.290323,0.0645161
100,40,40,60,0,40,40,80,91,92.5806,0.366667,0.3,0.3,0.0333333,0.354839,0.290323,0.290323,0.0645161
40,40,40,100,0,40,40,80,91.6667,91.2903,0.333333,0.3,0.333333,0.0333333,0.354839,0.290323,0.322581,0.0322581
50,40,40,100,0,40,40,80,91.3333,91.2903,0.366667,0.266667,0.333333,0.0333333,0.354839,0.290323,0.322581,0.0322581
60,40,40,100,0,40,40,80,91,91.2903,0.366667,0.3,0.3,0.0333333,0.354839,0.290323,0.322581,0.0322581
100,40,40,100,0,40,40,80,89.6667,91.2903,0.366667,0.3,0.333333,0,0.354839,0.290323,0.322581,0.0322581
40,40,50,50,0,40,40,80,93,92.5806,0.366667,0.233333,0.333333,0.0666667,0.387097,0.225806,0.322581,0.0645161
50,40,50,50,0,40,40,80,92.6667,92.5806,0.4,0.2,0.333333,0.0666667,0.387097,0.225806,0.322581,0.0645161
60,40,50,50,0,40,40,80,92.3333,92.5806,0.4,0.233333,0.3,0.0666667,0.387097,0.225806,0.322581,0.0645161
100,40,50,50,0,40,40,80,91,92.5806,0.4,0.233333,0.333333,0.0333333,0.387097,0.225806,0.322581,0.0645161
40,40,50,60,0,40,40,80,92.6667,92.2581,0.366667,0.266667,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
50,40,50,60,0,40,40,80,92.3333,92.2581,0.4,0.233333,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
60,40,50,60,0,40,40,80,92,92.2581,0.4,0.266667,0.266667,0.0666667,0.387097,0.258065,0.290323,0.0645161
100,40,50,60,0,40,40,80,90.6667,92.2581,0.4,0.266667,0.3,0.0333333,0.387097,0.258065,0.290323,0.0645161
40,40,50,100,0,40,40,80,91.3333,90.9677,0.366667,0.266667,0.333333,0.0333333,0.387097,0.258065,0.322581,0.0322581
50,40,50,100,0,40,40,80,91,90.9677,0.4,0.233333,0.333333,0.0333333,0.387097,0.258065,0.322581,0.0322581
60,40,50,100,0,40,40,80,90.6667,90.9677,0.4,0.266667,0.3,0.0333333,0.387097,0.258065,0.322581,0.0322581
100,40,50,100,0,40,40,80,89.3333,90.9677,0.4,0.266667,0.333333,0,0.387097,0.258065,0.322581,0.0322581
40,40,60,60,0,40,40,80,92.3333,91.9355,0.366667,0.3,0.266667,0.0666667,0.387097,0.290323,0.258065,0.0645161
50,40,60,60,0,40,40,80,92,91.9355,0.4,0.266667,0.266667,0.0666667,0.387097,0.290323,0.258065,0.0645161
60,40,60,60,0,40,40,80,91.6667,91.9355,0.4,0.3,0.233333,0.0666667,0.387097,0.290323,0.258065,0.0645161
100,40,60,60,0,40,40,80,90.3333,91.9355,0.4,0.3,0.266667,0.0333333,0.387097,0.290323,0.258065,0.0645161
40,40,60,100,0,40,40,80,91,90.6452,0.366667,0.3,0.3,0.0333333,0.387097,0.290323,0.290323,0.0322581
50,40,60,100,0,40,40,80,90.6667,90.6452,0.4,0.266667,0.3,0.0333333,0.387097,0.290323,0.290323,0.0322581
60,40,60,100,0,40,40,80,90.3333,90.6452,0.4,0.3,0.266667,0.0333333,0.387097,0.290323,0.290323,0.0322581
100,40,60,100,0,40,40,80,89,90.6452,0.4,0.3,0.3,0,0.387097,0.290323,0.290323,0.0322581
40,40,100,100,0,40,40,80,89.6667,89.3548,0.366667,0.3,0.333333,0,0.387097,0.290323,0.322581,0
50,40,100,100,0,40,40,80,89.3333,89.3548,0.4,0.266667,0.333333,0,0.387097,0.290323,0.322581,0
60,40,100,100,0,40,40,80,89,89.3548,0.4,0.3,0.3,0,0.387097,0.290323,0.322581,0
40,50,50,50,0,40,40,80,92.6667,92.2581,0.4,0.2,0.333333,0.0666667,0.419355,0.193548,0.322581,0.0645161
50,50,50,50,0,40,40,80,92.3333,92.2581,0.433333,0.166667,0.333333,0.0666667,0.419355,0.193548,0.322581,0.0645161
60,50,50,50,0,40,40,80,92,92.2581,0.433333,0.2,0.3,0.0666667,0.419355,0.193548,0.322581,0.0645161
100,50,50,50,0,40,40,80,90.6667,92.2581,0.433333,0.2,0.333333,0.0333333,0.419355,0.193548,0.322581,0.0645161
40,50,50,60,0,40,40,80,92.3333,91.9355,0.4,0.233333,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
50,50,50,60,0,40,40,80,92,91.9355,0.433333,0.2,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
60,50,50,60,0,40,40,80,91.6667,91.9355,0.433333,0.233333,0.266667,0.0666667,0.419355,0.225806,0.290323,0.0645161
100,50,50,60,0,40,40,80,90.3333,91.9355,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.290323,0.0645161
40,50,50,100,0,40,40,80,91,90.6452,0.4,0.233333,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
50,50,50,100,0,40,40,80,90.6667,90.6452,0.433333,0.2,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
60,50,50,100,0,40,40,80,90.3333,90.6452,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.322581,0.0322581
100,50,50,100,0,40,40,80,89,90.6452,0.433333,0.233333,0.333333,0,0.419355,0.225806,0.322581,0.0322581
40,50,60,60,0,40,40,80,92,91.6129,0.4,0.266667,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
50,50,60,60,0,40,40,80,91.6667,91.6129,0.433333,0.233333,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
60,50,60,60,0,40,40,80,91.3333,91.6129,0.433333,0.266667,0.233333,0.0666667,0.419355,0.258065,0.258065,0.0645161
100,50,60,60,0,40,40,80,90,91.6129,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.258065,0.0645161
40,50,60,100,0,40,40,80,90.6667,90.3226,0.4,0.266667,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
50,50,60,100,0,40,40,80,90.3333,90.3226,0.433333,0.233333,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
60,50,60,100,0,40,40,80,90,90.3226,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.290323,0.0322581
100,50,60,100,0,40,40,80,88.6667,90.3226,0.433333,0.266667,0.3,0,0.419355,0.258065,0.290323,0.0322581
40,50,100,100,0,40,40,80,89.3333,89.0323,0.4,0.266667,0.333333,0,0.419355,0.258065,0.322581,0
50,50,100,100,0,40,40,80,89,89.0323,0.433333,0.233333,0.333333,0,0.419355,0.258065,0.322581,0
60,50,100,100,0,40,40,80,88.6667,89.0323,0.433333,0.266667,0.3,0,0.419355,0.258065,0.322581,0
40,60,60,60,0,40,40,80,91.6667,91.2903,0.4,0.3,0.233333,0.0666667,0.419355,0.290323,0.225806,0.0645161
50,60,60,60,0,40,40,80,91.3333,91.2903,0.433333,0.266667,0.233333,0.0666667,0.419355,0.290323,0.225806,0.0645161
60,60,60,60,0,40,40,80,91,91.2903,0.433333,0.3,0.2,0.0666667,0.419355,0.290323,0.225806,0.0645161
100,60,60,60,0,40,40,80,89.6667,91.2903,0.433333,0.3,0.233333,0.0333333,0.419355,0.290323,0.225806,0.0645161
40,60,60,100,0,40,40,80,90.3333,90,0.4,0.3,0.266667,0.0333333,0.419355,0.290323,0.258065,0.0322581
50,60,60,100,0,40,40,80,90,90,0.433333,0.266667,0.266667,0.0333333,0.419355,0.290323,0.258065,0.0322581
60,60,60,100,0,40,40,80,89.6667,90,0.433333,0.3,0.233333,0.0333333,0.419355,0.290323,0.258065,0.0322581
100,60,60,100,0,40,40,80,88.3333,90,0.433333,0.3,0.266667,0,0.419355,0.290323,0.258065,0.0322581
40,60,100,100,0,40,40,80,89,88.7097,0.4,0.3,0.3,0,0.419355,0.290323,0.290323,0
50,60,100,100,0,40,40,80,88.6667,88.7097,0.433333,0.266667,0.3,0,0.419355,0.290323,0.290323,0
60,60,100,100,0,40,40,80,88.3333,88.7097,0.433333,0.3,0.266667,0,0.419355,0.290323,0.290323,0
40,40,40,40,0,40,50,90,103.333,102.903,0.333333,0.266667,0.333333,0.0666667,0.354839,0.258065,0.322581,0.0645161
50,40,40,40,0,40,50,90,103,102.903,0.366667,0.233333,0.333333,0.0666667,0.354839,0.258065,0.322581,0.0645161
60,40,40,40,0,40,50,90,102.667,102.903,0.366667,0.266667,0.3,0.0666667,0.354839,0.258065,0.322581,0.0645161
100,40,40,40,0,40,50,90,101.333,102.903,0.366667,0.266667,0.333333,0.0333333,0.354839,0.258065,0.322581,0.0645161
40,40,40,50,0,40,50,90,103,102.581,0.366667,0.233333,0.333333,0.0666667,0.387097,0.225806,0.322581,0.0645161
50,40,40,50,0,40,50,90,102.667,102.581,0.4,0.2,0.333333,0.0666667,0.387097,0.225806,0.322581,0.0645161
60,40,40,50,0,40,50,90,102.333,102.581,0.4,0.233333,0.3,0.0666667,0.387097,0.225806,0.322581,0.0645161
100,40,40,50,0,40,50,90,101,102.581,0.4,0.233333,0.333333,0.0333333,0.387097,0.225806,0.322581,0.0645161
40,40,40,60,0,40,50,90,102.667,102.258,0.366667,0.266667,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
50,40,40,60,0,40,50,90,102.333,102.258,0.4,0.233333,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
60,40,40,60,0,40,50,90,102,102.258,0.4,0.266667,0.266667,0.0666667,0.387097,0.258065,0.290323,0.0645161
100,40,40,60,0,40,50,90,100.667,102.258,0.4,0.266667,0.3,0.0333333,0.387097,0.258065,0.290323,0.0645161
40,40,40,100,0,40,50,90,101.333,100.968,0.366667,0.266667,0.333333,0.0333333,0.387097,0.258065,0.322581,0.0322581
50,40,40,100,0,40,50,90,101,100.968,0.4,0.233333,0.333333,0.0333333,0.387097,0.258065,0.322581,0.0322581
60,40,40,100,0,40,50,90,100.667,100.968,0.4,0.266667,0.3,0.0333333,0.387097,0.258065,0.322581,0.0322581
100,40,40,100,0,40,50,90,99.3333,100.968,0.4,0.266667,0.333333,0,0.387097,0.258065,0.322581,0.0322581
40,40,50,50,0,40,50,90,102.667,102.258,0.4,0.2,0.333333,0.0666667,0.419355,0.193548,0.322581,0.0645161
50,40,50,50,0,40,50,90,102.333,102.258,0.433333,0.166667,0.333333,0.0666667,0.419355,0.193548,0.322581,0.0645161
60,40,50,50,0,40,50,90,102,102.258,0.433333,0.2,0.3,0.0666667,0.419355,0.193548,0.322581,0.0645161
100,40,50,50,0,40,50,90,100.667,102.258,0.433333,0.2,0.333333,0.0333333,0.419355,0.193548,0.322581,0.0645161
40,40,50,60,0,40,50,90,102.333,101.935,0.4,0.233333,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
50,40,50,60,0,40,50,90,102,101.935,0.433333,0.2,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
60,40,50,60,0,40,50,90,101.667,101.935,0.433333,0.233333,0.266667,0.0666667,0.419355,0.225806,0.290323,0.0645161
100,40,50,60,0,40,50,90,100.333,101.935,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.290323,0.0645161
40,40,50,100,0,40,50,90,101,100.645,0.4,0.233333,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
50,40,50,100,0,40,50,90,100.667,100.645,0.433333,0.2,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
60,40,50,100,0,40,50,90,100.333,100.645,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.322581,0.0322581
100,40,50,100,0,40,50,90,99,100.645,0.433333,0.233333,0.333333,0,0.419355,0.225806,0.322581,0.0322581
40,40,60,60,0,40,50,90,102,101.613,0.4,0.266667,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
50,40,60,60,0,40,50,90,101.667,101.613,0.433333,0.233333,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
60,40,60,60,0,40,50,90,101.333,101.613,0.433333,0.266667,0.233333,0.0666667,0.419355,0.258065,0.258065,0.0645161
100,40,60,60,0,40,50,90,100,101.613,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.258065,0.0645161
40,40,60,100,0,40,50,90,100.667,100.323,0.4,0.266667,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
50,40,60,100,0,40,50,90,100.333,100.323,0.433333,0.233333,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
60,40,60,100,0,40,50,90,100,100.323,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.290323,0.0322581
100,40,60,100,0,40,50,90,98.6667,100.323,0.433333,0.266667,0.3,0,0.419355,0.258065,0.290323,0.0322581
40,40,100,100,0,40,50,90,99.3333,99.0323,0.4,0.266667,0.333333,0,0.419355,0.258065,0.322581,0
50,40,100,100,0,40,50,90,99,99.0323,0.433333,0.233333,0.333333,0,0.419355,0.258065,0.322581,0
60,40,100,100,0,40,50,90,98.6667,99.0323,0.433333,0.266667,0.3,0,0.419355,0.258065,0.322581,0
40,50,50,50,0,40,50,90,102.333,101.935,0.433333,0.166667,0.333333,0.0666667,0.451613,0.16129,0.322581,0.0645161
50,50,50,50,0,40,50,90,102,101.935,0.466667,0.133333,0.333333,0.0666667,0.451613,0.16129,0.322581,0.0645161
60,50,50,50,0,40,50,90,101.667,101.935,0.466667,0.166667,0.3,0.0666667,0.451613,0.16129,0.322581,0.0645161
100,50,50,50,0,40,50,90,100.333,101.935,0.466667,0.166667,0.333333,0.0333333,0.451613,0.16129,0.322581,0.0645161
40,50,50,60,0,40,50,90,102,101.613,0.433333,0.2,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
50,50,50,60,0,40,50,90,101.667,101.613,0.466667,0.166667,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
60,50,50,60,0,40,50,90,101.333,101.613,0.466667,0.2,0.266667,0.0666667,0.451613,0.193548,0.290323,0.0645161
100,50,50,60,0,40,50,90,100,101.613,0.466667,0.2,0.3,0.0333333,0.451613,0.193548,0.290323,0.0645161
40,50,50,100,0,40,50,90,100.667,100.323,0.433333,0.2,0.333333,0.0333333,0.451613,0.193548,0.322581,0.0322581
50,50,50,100,0,40,50,90,100.333,100.323,0.466667,0.166667,0.333333,0.0333333,0.451613,0.193548,0.322581,0.0322581
60,50,50,100,0,40,50,90,100,100.323,0.466667,0.2,0.3,0.0333333,0.451613,0.193548,0.322581,0.0322581
100,50,50,100,0,40,50,90,98.6667,100.323,0.466667,0.2,0.333333,0,0.451613,0.193548,0.322581,0.0322581
40,50,60,60,0,40,50,90,101.667,101.29,0.433333,0.233333,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
50,50,60,60,0,40,50,90,101.333,101.29,0.466667,0.2,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
60,50,60,60,0,40,50,90,101,101.29,0.466667,0.233333,0.233333,0.0666667,0.451613,0.225806,0.258065,0.0645161
100,50,60,60,0,40,50,90,99.6667,101.29,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.258065,0.0645161
40,50,60,100,0,40,50,90,100.333,100,0.433333,0.233333,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
50,50,60,100,0,40,50,90,100,100,0.466667,0.2,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
60,50,60,100,0,40,50,90,99.6667,100,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.290323,0.0322581
100,50,60,100,0,40,50,90,98.3333,100,0.466667,0.233333,0.3,0,0.451613,0.225806,0.290323,0.0322581
40,50,100,100,0,40,50,90,99,98.7097,0.433333,0.233333,0.333333,0,0.451613,0.225806,0.322581,0
50,50,100,100,0,40,50,90,98.6667,98.7097,0.466667,0.2,0.333333,0,0.451613,0.225806,0.322581,0
60,50,100,100,0,40,50,90,98.3333,98.7097,0.466667,0.233333,0.3,0,0.451613,0.225806,0.322581,0
40,60,60,60,0,40,50,90,101.333,100.968,0.433333,0.266667,0.233333,0.0666667,0.451613,0.258065,0.225806,0.0645161
50,60,60,60,0,40,50,90,101,100.968,0.466667,0.233333,0.233333,0.0666667,0.451613,0.258065,0.225806,0.0645161
60,60,60,60,0,40,50,90,100.667,100.968,0.466667,0.266667,0.2,0.0666667,0.451613,0.258065,0.225806,0.0645161
100,60,60,60,0,40,50,90,99.3333,100.968,0.466667,0.266667,0.233333,0.0333333,0.451613,0.258065,0.225806,0.0645161
40,60,60,100,0,40,50,90,100,99.6774,0.433333,0.266667,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
50,60,60,100,0,40,50,90,99.6667,99.6774,0.466667,0.233333,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
60,60,60,100,0,40,50,90,99.3333,99.6774,0.466667,0.266667,0.233333,0.0333333,0.451613,0.258065,0.258065,0.0322581
100,60,60,100,0,40,50,90,98,99.6774,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.258065,0.0322581
40,60,100,100,0,40,50,90,98.6667,98.3871,0.433333,0.266667,0.3,0,0.451613,0.258065,0.290323,0
50,60,100,100,0,40,50,90,98.3333,98.3871,0.466667,0.233333,0.3,0,0.451613,0.258065,0.290323,0
60,60,100,100,0,40,50,90,98,98.3871,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.290323,0
40,40,40,40,0,40,60,100,113,112.581,0.333333,0.3,0.3,0.0666667,0.354839,0.290323,0.290323,0.0645161
50,40,40,40,0,40,60,100,112.667,112.581,0.366667,0.266667,0.3,0.0666667,0.354839,0.290323,0.290323,0.0645161
60,40,40,40,0,40,60,100,112.333,112.581,0.366667,0.3,0.266667,0.0666667,0.354839,0.290323,0.290323,0.0645161
100,40,40,40,0,40,60,100,111,112.581,0.366667,0.3,0.3,0.0333333,0.354839,0.290323,0.290323,0.0645161
40,40,40,50,0,40,60,100,112.667,112.258,0.366667,0.266667,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
50,40,40,50,0,40,60,100,112.333,112.258,0.4,0.233333,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
60,40,40,50,0,40,60,100,112,112.258,0.4,0.266667,0.266667,0.0666667,0.387097,0.258065,0.290323,0.0645161
100,40,40,50,0,40,60,100,110.667,112.258,0.4,0.266667,0.3,0.0333333,0.387097,0.258065,0.290323,0.0645161
40,40,40,60,0,40,60,100,112.333,111.935,0.366667,0.3,0.266667,0.0666667,0.387097,0.290323,0.258065,0.0645161
50,40,40,60,0,40,60,100,112,111.935,0.4,0.266667,0.266667,0.0666667,0.387097,0.290323,0.258065,0.0645161
60,40,40,60,0,40,60,100,111.667,111.935,0.4,0.3,0.233333,0.0666667,0.387097,0.290323,0.258065,0.0645161
100,40,40,60,0,40,60,100,110.333,111.935,0.4,0.3,0.266667,0.0333333,0.387097,0.290323,0.258065,0.0645161
40,40,40,100,0,40,60,100,111,110.645,0.366667,0.3,0.3,0.0333333,0.387097,0.290323,0.290323,0.0322581
50,40,40,100,0,40,60,100,110.667,110.645,0.4,0.266667,0.3,0.0333333,0.387097,0.290323,0.290323,0.0322581
60,40,40,100,0,40,60,100,110.333,110.645,0.4,0.3,0.266667,0.0333333,0.387097,0.290323,0.290323,0.0322581
100,40,40,100,0,40,60,100,109,110.645,0.4,0.3,0.3,0,0.387097,0.290323,0.290323,0.0322581
40,40,50,50,0,40,60,100,112.333,111.935,0.4,0.233333,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
50,40,50,50,0,40,60,100,112,111.935,0.433333,0.2,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
60,40,50,50,0,40,60,100,111.667,111.935,0.433333,0.233333,0.266667,0.0666667,0.419355,0.225806,0.290323,0.0645161
100,40,50,50,0,40,60,100,110.333,111.935,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.290323,0.0645161
40,40,50,60,0,40,60,100,112,111.613,0.4,0.266667,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
50,40,50,60,0,40,60,100,111.667,111.613,0.433333,0.233333,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
60,40,50,60,0,40,60,100,111.333,111.613,0.433333,0.266667,0.233333,0.0666667,0.419355,0.258065,0.258065,0.0645161
100,40,50,60,0,40,60,100,110,111.613,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.258065,0.0645161
40,40,50,100,0,40,60,100,110.667,110.323,0.4,0.266667,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
50,40,50,100,0,40,60,100,110.333,110.323,0.433333,0.233333,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
60,40,50,100,0,40,60,100,110,110.323,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.290323,0.0322581
100,40,50,100,0,40,60,100,108.667,110.323,0.433333,0.266667,0.3,0,0.419355,0.258065,0.290323,0.0322581
40,40,60,60,0,40,60,100,111.667,111.29,0.4,0.3,0.233333,0.0666667,0.419355,0.290323,0.225806,0.0645161
50,40,60,60,0,40,60,100,111.333,111.29,0.433333,0.266667,0.233333,0.0666667,0.419355,0.290323,0.225806,0.0645161
60,40,60,60,0,40,60,100,111,111.29,0.433333,0.3,0.2,0.0666667,0.419355,0.290323,0.225806,0.0645161
100,40,60,60,0,40,60,100,109.667,111.29,0.433333,0.3,0.233333,0.0333333,0.419355,0.290323,0.225806,0.0645161
40,40,60,100,0,40,60,100,110.333,110,0.4,0.3,0.266667,0.0333333,0.419355,0.290323,0.258065,0.0322581
50,40,60,100,0,40,60,100,110,110,0.433333,0.266667,0.266667,0.0333333,0.419355,0.290323,0.258065,0.0322581
60,40,60,100,0,40,60,100,109.667,110,0.433333,0.3,0.233333,0.0333333,0.419355,0.290323,0.258065,0.0322581
100,40,60,100,0,40,60,100,108.333,110,0.433333,0.3,0.266667,0,0.419355,0.290323,0.258065,0.0322581
40,40,100,100,0,40,60,100,109,108.71,0.4,0.3,0.3,0,0.419355,0.290323,0.290323,0
50,40,100,100,0,40,60,100,108.667,108.71,0.433333,0.266667,0.3,0,0.419355,0.290323,0.290323,0
60,40,100,100,0,40,60,100,108.333,108.71,0.433333,0.3,0.266667,0,0.419355,0.290323,0.290323,0
40,50,50,50,0,40,60,100,112,111.613,0.433333,0.2,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
50,50,50,50,0,40,60,100,111.667,111.613,0.466667,0.166667,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
60,50,50,50,0,40,60,100,111.333,111.613,0.466667,0.2,0.266667,0.0666667,0.451613,0.193548,0.290323,0.0645161
100,50,50,50,0,40,60,100,110,111.613,0.466667,0.2,0.3,0.0333333,0.451613,0.193548,0.290323,0.0645161
40,50,50,60,0,40,60,100,111.667,111.29,0.433333,0.233333,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
50,50,50,60,0,40,60,100,111.333,111.29,0.466667,0.2,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
60,50,50,60,0,40,60,100,111,111.29,0.466667,0.233333,0.233333,0.0666667,0.451613,0.225806,0.258065,0.0645161
100,50,50,60,0,40,60,100,109.667,111.29,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.258065,0.0645161
40,50,50,100,0,40,60,100,110.333,110,0.433333,0.233333,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
50,50,50,100,0,40,60,100,110,110,0.466667,0.2,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
60,50,50,100,0,40,60,100,109.667,110,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.290323,0.0322581
100,50,50,100,0,40,60,100,108.333,110,0.466667,0.233333,0.3,0,0.451613,0.225806,0.290323,0.0322581
40,50,60,60,0,40,60,100,111.333,110.968,0.433333,0.266667,0.233333,0.0666667,0.451613,0.258065,0.225806,0.0645161
50,50,60,60,0,40,60,100,111,110.968,0.466667,0.233333,0.233333,0.0666667,0.451613,0.258065,0.225806,0.0645161
60,50,60,60,0,40,60,100,110.667,110.968,0.466667,0.266667,0.2,0.0666667,0.451613,0.258065,0.225806,0.0645161
100,50,60,60,0,40,60,100,109.333,110.968,0.466667,0.266667,0.233333,0.0333333,0.451613,0.258065,0.225806,0.0645161
40,50,60,100,0,40,60,100,110,109.677,0.433333,0.266667,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
50,50,60,100,0,40,60,100,109.667,109.677,0.466667,0.233333,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
60,50,60,100,0,40,60,100,109.333,109.677,0.466667,0.266667,0.233333,0.0333333,0.451613,0.258065,0.258065,0.0322581
100,50,60,100,0,40,60,100,108,109.677,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.258065,0.0322581
40,50,100,100,0,40,60,100,108.667,108.387,0.433333,0.266667,0.3,0,0.451613,0.258065,0.290323,0
50,50,100,100,0,40,60,100,108.333,108.387,0.466667,0.233333,0.3,0,0.451613,0.258065,0.290323,0
60,50,100,100,0,40,60,100,108,108.387,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.290323,0
40,60,60,60,0,40,60,100,111,110.645,0.433333,0.3,0.2,0.0666667,0.451613,0.290323,0.193548,0.0645161
50,60,60,60,0,40,60,100,110.667,110.645,0.466667,0.266667,0.2,0.0666667,0.451613,0.290323,0.193548,0.0645161
60,60,60,60,0,40,60,100,110.333,110.645,0.466667,0.3,0.166667,0.0666667,0.451613,0.290323,0.193548,0.0645161
100,60,60,60,0,40,60,100,109,110.645,0.466667,0.3,0.2,0.0333333,0.451613,0.290323,0.193548,0.0645161
40,60,60,100,0,40,60,100,109.667,109.355,0.433333,0.3,0.233333,0.0333333,0.451613,0.290323,0.225806,0.0322581
50,60,60,100,0,40,60,100,109.333,109.355,0.466667,0.266667,0.233333,0.0333333,0.451613,0.290323,0.225806,0.0322581
60,60,60,100,0,40,60,100,109,109.355,0.466667,0.3,0.2,0.0333333,0.451613,0.290323,0.225806,0.0322581
100,60,60,100,0,40,60,100,107.667,109.355,0.466667,0.3,0.233333,0,0.451613,0.290323,0.225806,0.0322581
40,60,100,100,0,40,60,100,108.333,108.065,0.433333,0.3,0.266667,0,0.451613,0.290323,0.258065,0
50,60,100,100,0,40,60,100,108,108.065,0.466667,0.266667,0.266667,0,0.451613,0.290323,0.258065,0
60,60,100,100,0,40,60,100,107.667,108.065,0.466667,0.3,0.233333,0,0.451613,0.290323,0.258065,0
40,40,40,40,0,40,100,140,151.667,151.29,0.333333,0.3,0.333333,0.0333333,0.354839,0.290323,0.322581,0.0322581
50,40,40,40,0,40,100,140,151.333,151.29,0.366667,0.266667,0.333333,0.0333333,0.354839,0.290323,0.322581,0.0322581
60,40,40,40,0,40,100,140,151,151.29,0.366667,0.3,0.3,0.0333333,0.354839,0.290323,0.322581,0.0322581
100,40,40,40,0,40,100,140,149.667,151.29,0.366667,0.3,0.333333,0,0.354839,0.290323,0.322581,0.0322581
40,40,40,50,0,40,100,140,151.333,150.968,0.366667,0.266667,0.333333,0.0333333,0.387097,0.258065,0.322581,0.0322581
50,40,40,50,0,40,100,140,151,150.968,0.4,0.233333,0.333333,0.0333333,0.387097,0.258065,0.322581,0.0322581
60,40,40,50,0,40,100,140,150.667,150.968,0.4,0.266667,0.3,0.0333333,0.387097,0.258065,0.322581,0.0322581
100,40,40,50,0,40,100,140,149.333,150.968,0.4,0.266667,0.333333,0,0.387097,0.258065,0.322581,0.0322581
40,40,40,60,0,40,100,140,151,150.645,0.366667,0.3,0.3,0.0333333,0.387097,0.290323,0.290323,0.0322581
50,40,40,60,0,40,100,140,150.667,150.645,0.4,0.266667,0.3,0.0333333,0.387097,0.290323,0.290323,0.0322581
60,40,40,60,0,40,100,140,150.333,150.645,0.4,0.3,0.266667,0.0333333,0.387097,0.290323,0.290323,0.0322581
100,40,40,60,0,40,100,140,149,150.645,0.4,0.3,0.3,0,0.387097,0.290323,0.290323,0.0322581
40,40,40,100,0,40,100,140,149.667,149.355,0.366667,0.3,0.333333,0,0.387097,0.290323,0.322581,0
50,40,40,100,0,40,100,140,149.333,149.355,0.4,0.266667,0.333333,0,0.387097,0.290323,0.322581,0
60,40,40,100,0,40,100,140,149,149.355,0.4,0.3,0.3,0,0.387097,0.290323,0.322581,0
40,40,50,50,0,40,100,140,151,150.645,0.4,0.233333,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
50,40,50,50,0,40,100,140,150.667,150.645,0.433333,0.2,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
60,40,50,50,0,40,100,140,150.333,150.645,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.322581,0.0322581
100,40,50,50,0,40,100,140,149,150.645,0.433333,0.233333,0.333333,0,0.419355,0.225806,0.322581,0.0322581
40,40,50,60,0,40,100,140,150.667,150.323,0.4,0.266667,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
50,40,50,60,0,40,100,140,150.333,150.323,0.433333,0.233333,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
60,40,50,60,0,40,100,140,150,150.323,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.290323,0.0322581
100,40,50,60,0,40,100,140,148.667,150.323,0.433333,0.266667,0.3,0,0.419355,0.258065,0.290323,0.0322581
40,40,50,100,0,40,100,140,149.333,149.032,0.4,0.266667,0.333333,0,0.419355,0.258065,0.322581,0
50,40,50,100,0,40,100,140,149,149.032,0.433333,0.233333,0.333333,0,0.419355,0.258065,0.322581,0
60,40,50,100,0,40,100,140,148.667,149.032,0.433333,0.266667,0.3,0,0.419355,0.258065,0.322581,0
40,40,60,60,0,40,100,140,150.333,150,0.4,0.3,0.266667,0.0333333,0.419355,0.290323,0.258065,0.0322581
50,40,60,60,0,40,100,140,150,150,0.433333,0.266667,0.266667,0.0333333,0.419355,0.290323,0.258065,0.0322581
60,40,60,60,0,40,100,140,149.667,150,0.433333,0.3,0.233333,0.0333333,0.419355,0.290323,0.258065,0.0322581
100,40,60,60,0,40,100,140,148.333,150,0.433333,0.3,0.266667,0,0.419355,0.290323,0.258065,0.0322581
40,40,60,100,0,40,100,140,149,148.71,0.4,0.3,0.3,0,0.419355,0.290323,0.290323,0
50,40,60,100,0,40,100,140,148.667,148.71,0.433333,0.266667,0.3,0,0.419355,0.290323,0.290323,0
60,40,60,100,0,40,100,140,148.333,148.71,0.433333,0.3,0.266667,0,0.419355,0.290323,0.290323,0
40,50,50,50,0,40,100,140,150.667,150.323,0.433333,0.2,0.333333,0.0333333,0.451613,0.193548,0.322581,0.0322581
50,50,50,50,0,40,100,140,150.333,150.323,0.466667,0.166667,0.333333,0.0333333,0.451613,0.193548,0.322581,0.0322581
60,50,50,50,0,40,100,140,150,150.323,0.466667,0.2,0.3,0.0333333,0.451613,0.193548,0.322581,0.0322581
100,50,50,50,0,40,100,140,148.667,150.323,0.466667,0.2,0.333333,0,0.451613,0.193548,0.322581,0.0322581
40,50,50,60,0,40,100,140,150.333,150,0.433333,0.233333,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
50,50,50,60,0,40,100,140,150,150,0.466667,0.2,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
60,50,50,60,0,40,100,140,149.667,150,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.290323,0.0322581
100,50,50,60,0,40,100,140,148.333,150,0.466667,0.233333,0.3,0,0.451613,0.225806,0.290323,0.0322581
40,50,50,100,0,40,100,140,149,148.71,0.433333,0.233333,0.333333,0,0.451613,0.225806,0.322581,0
50,50,50,100,0,40,100,140,148.667,148.71,0.466667,0.2,0.333333,0,0.451613,0.225806,0.322581,0
60,50,50,100,0,40,100,140,148.333,148.71,0.466667,0.233333,0.3,0,0.451613,0.225806,0.322581,0
40,50,60,60,0,40,100,140,150,149.677,0.433333,0.266667,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
50,50,60,60,0,40,100,140,149.667,149.677,0.466667,0.233333,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
60,50,60,60,0,40,100,140,149.333,149.677,0.466667,0.266667,0.233333,0.0333333,0.451613,0.258065,0.258065,0.0322581
100,50,60,60,0,40,100,140,148,149.677,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.258065,0.0322581
40,50,60,100,0,40,100,140,148.667,148.387,0.433333,0.266667,0.3,0,0.451613,0.258065,0.290323,0
50,50,60,100,0,40,100,140,148.333,148.387,0.466667,0.233333,0.3,0,0.451613,0.258065,0.290323,0
60,50,60,100,0,40,100,140,148,148.387,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.290323,0
40,60,60,60,0,40,100,140,149.667,149.355,0.433333,0.3,0.233333,0.0333333,0.451613,0.290323,0.225806,0.0322581
50,60,60,60,0,40,100,140,149.333,149.355,0.466667,0.266667,0.233333,0.0333333,0.451613,0.290323,0.225806,0.0322581
60,60,60,60,0,40,100,140,149,149.355,0.466667,0.3,0.2,0.0333333,0.451613,0.290323,0.225806,0.0322581
100,60,60,60,0,40,100,140,147.667,149.355,0.466667,0.3,0.233333,0,0.451613,0.290323,0.225806,0.0322581
40,60,60,100,0,40,100,140,148.333,148.065,0.433333,0.3,0.266667,0,0.451613,0.290323,0.258065,0
50,60,60,100,0,40,100,140,148,148.065,0.466667,0.266667,0.266667,0,0.451613,0.290323,0.258065,0
60,60,60,100,0,40,100,140,147.667,148.065,0.466667,0.3,0.233333,0,0.451613,0.290323,0.258065,0
40,40,40,40,0,50,50,100,103,102.581,0.366667,0.233333,0.333333,0.0666667,0.387097,0.225806,0.322581,0.0645161
50,40,40,40,0,50,50,100,102.667,102.581,0.4,0.2,0.333333,0.0666667,0.387097,0.225806,0.322581,0.0645161
60,40,40,40,0,50,50,100,102.333,102.581,0.4,0.233333,0.3,0.0666667,0.387097,0.225806,0.322581,0.0645161
100,40,40,40,0,50,50,100,101,102.581,0.4,0.233333,0.333333,0.0333333,0.387097,0.225806,0.322581,0.0645161
40,40,40,50,0,50,50,100,102.667,102.258,0.4,0.2,0.333333,0.0666667,0.419355,0.193548,0.322581,0.0645161
50,40,40,50,0,50,50,100,102.333,102.258,0.433333,0.166667,0.333333,0.0666667,0.419355,0.193548,0.322581,0.0645161
60,40,40,50,0,50,50,100,102,102.258,0.433333,0.2,0.3,0.0666667,0.419355,0.193548,0.322581,0.0645161
100,40,40,50,0,50,50,100,100.667,102.258,0.433333,0.2,0.333333,0.0333333,0.419355,0.193548,0.322581,0.0645161
40,40,40,60,0,50,50,100,102.333,101.935,0.4,0.233333,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
50,40,40,60,0,50,50,100,102,101.935,0.433333,0.2,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
60,40,40,60,0,50,50,100,101.667,101.935,0.433333,0.233333,0.266667,0.0666667,0.419355,0.225806,0.290323,0.0645161
100,40,40,60,0,50,50,100,100.333,101.935,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.290323,0.0645161
40,40,40,100,0,50,50,100,101,100.645,0.4,0.233333,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
50,40,40,100,0,50,50,100,100.667,100.645,0.433333,0.2,0.333333,0.0333333,0.419355,0.225806,0.322581,0.0322581
60,40,40,100,0,50,50,100,100.333,100.645,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.322581,0.0322581
100,40,40,100,0,50,50,100,99,100.645,0.433333,0.233333,0.333333,0,0.419355,0.225806,0.322581,0.0322581
40,40,50,50,0,50,50,100,102.333,101.935,0.433333,0.166667,0.333333,0.0666667,0.451613,0.16129,0.322581,0.0645161
50,40,50,50,0,50,50,100,102,101.935,0.466667,0.133333,0.333333,0.0666667,0.451613,0.16129,0.322581,0.0645161
60,40,50,50,0,50,50,100,101.667,101.935,0.466667,0.166667,0.3,0.0666667,0.451613,0.16129,0.322581,0.0645161
100,40,50,50,0,50,50,100,100.333,101.935,0.466667,0.166667,0.333333,0.0333333,0.451613,0.16129,0.322581,0.0645161
40,40,50,60,0,50,50,100,102,101.613,0.433333,0.2,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
50,40,50,60,0,50,50,100,101.667,101.613,0.466667,0.166667,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
60,40,50,60,0,50,50,100,101.333,101.613,0.466667,0.2,0.266667,0.0666667,0.451613,0.193548,0.290323,0.0645161
100,40,50,60,0,50,50,100,100,101.613,0.466667,0.2,0.3,0.0333333,0.451613,0.193548,0.290323,0.0645161
40,40,50,100,0,50,50,100,100.667,100.323,0.433333,0.2,0.333333,0.0333333,0.451613,0.193548,0.322581,0.0322581
50,40,50,100,0,50,50,100,100.333,100.323,0.466667,0.166667,0.333333,0.0333333,0.451613,0.193548,0.322581,0.0322581
60,40,50,100,0,50,50,100,100,100.323,0.466667,0.2,0.3,0.0333333,0.451613,0.193548,0.322581,0.0322581
100,40,50,100,0,50,50,100,98.6667,100.323,0.466667,0.2,0.333333,0,0.451613,0.193548,0.322581,0.0322581
40,40,60,60,0,50,50,100,101.667,101.29,0.433333,0.233333,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
50,40,60,60,0,50,50,100,101.333,101.29,0.466667,0.2,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
60,40,60,60,0,50,50,100,101,101.29,0.466667,0.233333,0.233333,0.0666667,0.451613,0.225806,0.258065,0.0645161
100,40,60,60,0,50,50,100,99.6667,101.29,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.258065,0.0645161
40,40,60,100,0,50,50,100,100.333,100,0.433333,0.233333,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
50,40,60,100,0,50,50,100,100,100,0.466667,0.2,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
60,40,60,100,0,50,50,100,99.6667,100,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.290323,0.0322581
100,40,60,100,0,50,50,100,98.3333,100,0.466667,0.233333,0.3,0,0.451613,0.225806,0.290323,0.0322581
40,40,100,100,0,50,50,100,99,98.7097,0.433333,0.233333,0.333333,0,0.451613,0.225806,0.322581,0
50,40,100,100,0,50,50,100,98.6667,98.7097,0.466667,0.2,0.333333,0,0.451613,0.225806,0.322581,0
60,40,100,100,0,50,50,100,98.3333,98.7097,0.466667,0.233333,0.3,0,0.451613,0.225806,0.322581,0
40,50,50,50,0,50,50,100,102,101.613,0.466667,0.133333,0.333333,0.0666667,0.483871,0.129032,0.322581,0.0645161
50,50,50,50,0,50,50,100,101.667,101.613,0.5,0.1,0.333333,0.0666667,0.483871,0.129032,0.322581,0.0645161
60,50,50,50,0,50,50,100,101.333,101.613,0.5,0.133333,0.3,0.0666667,0.483871,0.129032,0.322581,0.0645161
100,50,50,50,0,50,50,100,100,101.613,0.5,0.133333,0.333333,0.0333333,0.483871,0.129032,0.322581,0.0645161
40,50,50,60,0,50,50,100,101.667,101.29,0.466667,0.166667,0.3,0.0666667,0.483871,0.16129,0.290323,0.0645161
50,50,50,60,0,50,50,100,101.333,101.29,0.5,0.133333,0.3,0.0666667,0.483871,0.16129,0.290323,0.0645161
60,50,50,60,0,50,50,100,101,101.29,0.5,0.166667,0.266667,0.0666667,0.483871,0.16129,0.290323,0.0645161
100,50,50,60,0,50,50,100,99.6667,101.29,0.5,0.166667,0.3,0.0333333,0.483871,0.16129,0.290323,0.0645161
40,50,50,100,0,50,50,100,100.333,100,0.466667,0.166667,0.333333,0.0333333,0.483871,0.16129,0.322581,0.0322581
50,50,50,100,0,50,50,100,100,100,0.5,0.133333,0.333333,0.0333333,0.483871,0.16129,0.322581,0.0322581
60,50,50,100,0,50,50,100,99.6667,100,0.5,0.166667,0.3,0.0333333,0.483871,0.16129,0.322581,0.0322581
100,50,50,100,0,50,50,100,98.3333,100,0.5,0.166667,0.333333,0,0.483871,0.16129,0.322581,0.0322581
40,50,60,60,0,50,50,100,101.333,100.968,0.466667,0.2,0.266667,0.0666667,0.483871,0.193548,0.258065,0.0645161
50,50,60,60,0,50,50,100,101,100.968,0.5,0.166667,0.266667,0.0666667,0.483871,0.193548,0.258065,0.0645161
60,50,60,60,0,50,50,100,100.667,100.968,0.5,0.2,0.233333,0.0666667,0.483871,0.193548,0.258065,0.0645161
100,50,60,60,0,50,50,100,99.3333,100.968,0.5,0.2,0.266667,0.0333333,0.483871,0.193548,0.258065,0.0645161
40,50,60,100,0,50,50,100,100,99.6774,0.466667,0.2,0.3,0.0333333,0.483871,0.193548,0.290323,0.0322581
50,50,60,100,0,50,50,100,99.6667,99.6774,0.5,0.166667,0.3,0.0333333,0.483871,0.193548,0.290323,0.0322581
60,50,60,100,0,50,50,100,99.3333,99.6774,0.5,0.2,0.266667,0.0333333,0.483871,0.193548,0.290323,0.0322581
100,50,60,100,0,50,50,100,98,99.6774,0.5,0.2,0.3,0,0.483871,0.193548,0.290323,0.0322581
40,50,100,100,0,50,50,100,98.6667,98.3871,0.466667,0.2,0.333333,0,0.483871,0.193548,0.322581,0
50,50,100,100,0,50,50,100,98.3333,98.3871,0.5,0.166667,0.333333,0,0.483871,0.193548,0.322581,0
60,50,100,100,0,50,50,100,98,98.3871,0.5,0.2,0.3,0,0.483871,0.193548,0.322581,0
40,60,60,60,0,50,50,100,101,100.645,0.466667,0.233333,0.233333,0.0666667,0.483871,0.225806,0.225806,0.0645161
50,60,60,60,0,50,50,100,100.667,100.645,0.5,0.2,0.233333,0.0666667,0.483871,0.225806,0.225806,0.0645161
60,60,60,60,0,50,50,100,100.333,100.645,0.5,0.233333,0.2,0.0666667,0.483871,0.225806,0.225806,0.0645161
100,60,60,60,0,50,50,100,99,100.645,0.5,0.233333,0.233333,0.0333333,0.483871,0.225806,0.225806,0.0645161
40,60,60,100,0,50,50,100,99.6667,99.3548,0.466667,0.233333,0.266667,0.0333333,0.483871,0.225806,0.258065,0.0322581
50,60,60,100,0,50,50,100,99.3333,99.3548,0.5,0.2,0.266667,0.0333333,0.483871,0.225806,0.258065,0.0322581
60,60,60,100,0,50,50,100,99,99.3548,0.5,0.233333,0.233333,0.0333333,0.483871,0.225806,0.258065,0.0322581
100,60,60,100,0,50,50,100,97.6667,99.3548,0.5,0.233333,0.266667,0,0.483871,0.225806,0.258065,0.0322581
40,60,100,100,0,50,50,100,98.3333,98.0645,0.466667,0.233333,0.3,0,0.483871,0.225806,0.290323,0
50,60,100,100,0,50,50,100,98,98.0645,0.5,0.2,0.3,0,0.483871,0.225806,0.290323,0
60,60,100,100,0,50,50,100,97.6667,98.0645,0.5,0.233333,0.266667,0,0.483871,0.225806,0.290323,0
40,40,40,40,0,50,60,110,112.667,112.258,0.366667,0.266667,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
50,40,40,40,0,50,60,110,112.333,112.258,0.4,0.233333,0.3,0.0666667,0.387097,0.258065,0.290323,0.0645161
60,40,40,40,0,50,60,110,112,112.258,0.4,0.266667,0.266667,0.0666667,0.387097,0.258065,0.290323,0.0645161
100,40,40,40,0,50,60,110,110.667,112.258,0.4,0.266667,0.3,0.0333333,0.387097,0.258065,0.290323,0.0645161
40,40,40,50,0,50,60,110,112.333,111.935,0.4,0.233333,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
50,40,40,50,0,50,60,110,112,111.935,0.433333,0.2,0.3,0.0666667,0.419355,0.225806,0.290323,0.0645161
60,40,40,50,0,50,60,110,111.667,111.935,0.433333,0.233333,0.266667,0.0666667,0.419355,0.225806,0.290323,0.0645161
100,40,40,50,0,50,60,110,110.333,111.935,0.433333,0.233333,0.3,0.0333333,0.419355,0.225806,0.290323,0.0645161
40,40,40,60,0,50,60,110,112,111.613,0.4,0.266667,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
50,40,40,60,0,50,60,110,111.667,111.613,0.433333,0.233333,0.266667,0.0666667,0.419355,0.258065,0.258065,0.0645161
60,40,40,60,0,50,60,110,111.333,111.613,0.433333,0.266667,0.233333,0.0666667,0.419355,0.258065,0.258065,0.0645161
100,40,40,60,0,50,60,110,110,111.613,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.258065,0.0645161
40,40,40,100,0,50,60,110,110.667,110.323,0.4,0.266667,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
50,40,40,100,0,50,60,110,110.333,110.323,0.433333,0.233333,0.3,0.0333333,0.419355,0.258065,0.290323,0.0322581
60,40,40,100,0,50,60,110,110,110.323,0.433333,0.266667,0.266667,0.0333333,0.419355,0.258065,0.290323,0.0322581
100,40,40,100,0,50,60,110,108.667,110.323,0.433333,0.266667,0.3,0,0.419355,0.258065,0.290323,0.0322581
40,40,50,50,0,50,60,110,112,111.613,0.433333,0.2,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
50,40,50,50,0,50,60,110,111.667,111.613,0.466667,0.166667,0.3,0.0666667,0.451613,0.193548,0.290323,0.0645161
60,40,50,50,0,50,60,110,111.333,111.613,0.466667,0.2,0.266667,0.0666667,0.451613,0.193548,0.290323,0.0645161
100,40,50,50,0,50,60,110,110,111.613,0.466667,0.2,0.3,0.0333333,0.451613,0.193548,0.290323,0.0645161
40,40,50,60,0,50,60,110,111.667,111.29,0.433333,0.233333,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
50,40,50,60,0,50,60,110,111.333,111.29,0.466667,0.2,0.266667,0.0666667,0.451613,0.225806,0.258065,0.0645161
60,40,50,60,0,50,60,110,111,111.29,0.466667,0.233333,0.233333,0.0666667,0.451613,0.225806,0.258065,0.0645161
100,40,50,60,0,50,60,110,109.667,111.29,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.258065,0.0645161
40,40,50,100,0,50,60,110,110.333,110,0.433333,0.233333,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
50,40,50,100,0,50,60,110,110,110,0.466667,0.2,0.3,0.0333333,0.451613,0.225806,0.290323,0.0322581
60,40,50,100,0,50,60,110,109.667,110,0.466667,0.233333,0.266667,0.0333333,0.451613,0.225806,0.290323,0.0322581
100,40,50,100,0,50,60,110,108.333,110,0.466667,0.233333,0.3,0,0.451613,0.225806,0.290323,0.0322581
40,40,60,60,0,50,60,110,111.333,110.968,0.433333,0.266667,0.233333,0.0666667,0.451613,0.258065,0.225806,0.0645161
50,40,60,60,0,50,60,110,111,110.968,0.466667,0.233333,0.233333,0.0666667,0.451613,0.258065,0.225806,0.0645161
60,40,60,60,0,50,60,110,110.667,110.968,0.466667,0.266667,0.2,0.0666667,0.451613,0.258065,0.225806,0.0645161
100,40,60,60,0,50,60,110,109.333,110.968,0.466667,0.266667,0.233333,0.0333333,0.451613,0.258065,0.225806,0.0645161
40,40,60,100,0,50,60,110,110,109.677,0.433333,0.266667,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
50,40,60,100,0,50,60,110,109.667,109.677,0.466667,0.233333,0.266667,0.0333333,0.451613,0.258065,0.258065,0.0322581
60,40,60,100,0,50,60,110,109.333,109.677,0.466667,0.266667,0.233333,0.0333333,0.451613,0.258065,0.258065,0.0322581
100,40,60,100,0,50,60,110,108,109.677,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.258065,0.0322581
40,40,100,100,0,50,60,110,108.667,108.387,0.433333,0.266667,0.3,0,0.451613,0.258065,0.290323,0
50,40,100,100,0,50,60,110,108.333,108.387,0.466667,0.233333,0.3,0,0.451613,0.258065,0.290323,0
60,40,100,100,0,50,60,110,108,108.387,0.466667,0.266667,0.266667,0,0.451613,0.258065,0.290323,0
40,50,50,50,0,50,60,110,111.667,111.29,0.466667,0.166667,0.3,0.0666667,0.483871,0.16129,0.290323,0.0645161
50,50,50,50,0,50,60,110,111.333,111.29,0.5,0.133333,0.3,0.0666667,0.483871,0.16129,0.290323,0.0645161
60,50,50,50,0,50,60,110,111,111.29,0.5,0.166667,0.266667,0.0666667,0.483871,0.16129,0.290323,0.0645161
100,50,50,50,0,50,60,110,109.667,111.29,0.5,0.166667,0.3,0.0333333,0.483871,0.16129,0.290323,0.0645161
40,50,50,60,0,50,60,110,111.333,110.968,0.466667,0.2,0.266667,0.0666667,0.483871,0.193548,0.258065,0.0645161
50,50,50,60,0,50,60,110,111,110.968,0.5,0.166667,0.266667,0.0666667,0.483871,0.193548,0.258065,0.0645161
60,50,50,60,0,50,60,110,110.667,110.968,0.5,0.2,0.233333,0.0666667,0.483871,0.193548,0.258065,0.0645161
100,50,50,60,0,50,60,110,109.333,110.968,0.5,0.2,0.266667,0.0333333,0.483871,0.193548,0.258065,0.0645161
40,50,50,100,0,50,60,110,110,109.677,0.466667,0.2,0.3,0.0333333,0.483871,0.193548,0.290323,0.0322581
50,50,50,100,0,50,60,110,109.667,109.677,0.5,0.166667,0.3,0.0333333,0.483871,0.193548,0.290323,0.0322581
60,50,50,100,0,50,60,110,109.333,109.677,0.5,0.2,0.266667,0.0333333,0.483871,0.193548,0.290323,0.0322581
100,50,50,100,0,50,60,110,108,109.677,0.5,0.2,0.3,0,0.483871,0.193548,0.290323,0.0322581
40,50,60,60,0,50,60,110,111,110.645,0.466667,0.233333,0.233333,0.0666667,0.483871,0.225806,0.225806,0.0645161
50,50,60,60,0,50,60,110,110.667,110.645,0.5,0.2,0.233333,0.0666667,0.483871,0.225806,0.225806,0.0645161
60,50,60,60,0,50,60,110,110.333,110.645,0.5,0.233333,0.2,0.0666667,0.483871,0.225806,0.225806,0.0645161
100,50,60,60,0,50,60,110,109,110.645,0.5,0.233333,0.233333,0.0333333,0.483871,0.225806,0.225806,0.0645161
40,50,60,100,0,50,60,110,109.667,109.355,0.466667,0.233333,0.266667,0.0333333,0.483871,0.225806,0.258065,0.0322581
50,50,60,100,0,50,60,110,109.333,109.355,0.5,0.2,0.266667,0.0333333,0.483871,0.225806,0.258065,0.0322581
60,50,60,100,0,50,60,110,109,109.355,0.5,0.233333,0.233333,0.0333333,0.483871,0.225806,0.258065,0.0322581
100,50,60,100,0,50,60,110,107.667,109.355,0.5,0.233333,0.266667,0,0.483871,0.225806,0.258065,0.0322581
40,50,100,100,0,50,60,110,108.333,108.065,0.466667,0.233333,0.3,0,0.483871,0.225806,0.290323,0
50,50,100,100,0,50,60,110,108,108.065,0.5,0.2,0.3,0,0.483871,0.225806,0.290323,0
60,50,100,100,0,50,60,110,107.667,108.065,0.5,0.233333,0.266667,0,0.483871,0.225806,0.290323,0
40,60,60,60,0,50,60,110,110.667,110.323,0.466667,0.266667,0.2,0.0666667,0.483871,0.258065,0.193548,0.0645161
50,60,60,60,0,50,60,110,110.333,110.323,0.5,0.233333,0.2,0.0666667,0.483871,0.258065,0.193548,0.0645161
60,60,60,60,0,50,60,110,110,110.323,0.5,0.266667,0.166667,0.0666667,0.483871,0.258065,0.193548,0.0645161
100,60,60,60,0,50,60,110,108.667,110.323,0.5,0.266667,0.2,0.0333333,0.483871,0.258065,0.193548,0.0645161
40,60,60,100,0,50,60,110,109.333,109.032,0.466667,0.266667,0.233333,0.0333333,0.483871,0.258065,0.225806,0.0322581
50,60,60,100,0,50,60,110,109,109.032,0.5,0.233333,0.233333,0.0333333,0.483871,0.258065,0.225806,0.0322581
60,60,60,100,0,50,60,110,108.667,109.032,0.5,0.266667,0.2,0.0333333,0.483871,0.258065,0.225806,0.0322581
100,60,60,100,0,50,60,110,107.333,109.032,0.5,0.266667,0.233333,0,0.483871,0.258065,0.225806,0.0322581
40,60,100,100,0,50,60,110,108,107.742,0.466667,0.266667,0.266667,0,0.483871,0.258065,0.258065,0
50,60,100,100,0,50,60,110,107.667,107.742,0.5,0.233333,0.266667,0,0.483871,0.258065,0.258065,0
60,60,100,100,0,50,60,110,107.333,107.742,0.5,0.266667,0.233333,0,0.483871,0.258065,0.258065,0
40,40,40,40,0,50,100,150,151.333,150.968,0.366667,0.2